summaryrefslogtreecommitdiff
path: root/tests/test_escapes/code.php
blob: 05984d19dd467611f698d164e972cb9ad31b5ea8 (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"];
	});
}