summaryrefslogtreecommitdiff
path: root/tests/test_escapes/code.php
blob: d1a64c798945330c62ac48b9e5e88bda9c2acb1c (plain)
1
2
3
4
5
6
7
<?php

function test_func($ste) {
    $ste->register_tag("my_echo", function($ste, $params, $sub) {
        return $params["text"];
    });
}