mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
31 lines
881 B
PHP
31 lines
881 B
PHP
<?php
|
|
|
|
function myMod($str) {
|
|
return "(myMod)".$str."(/myMod)";
|
|
}
|
|
|
|
function myFunc($params) {
|
|
return "MyFunc:".$params["name"];
|
|
}
|
|
|
|
function myBlockFunc($params, $content) {
|
|
return "Block:".$params["name"].':'.trim($content).':Block';
|
|
}
|
|
|
|
function myCompiler(Aspect\Tokenizer $tokenizer, Aspect\Template $tpl) {
|
|
$p = $tpl->parseParams($tokenizer);
|
|
return 'echo "PHP_VERSION: ".PHP_VERSION." (for ".'.$p["name"].'.")";';
|
|
}
|
|
|
|
function myBlockCompilerOpen(Aspect\Tokenizer $tokenizer, Aspect\Scope $scope) {
|
|
return myCompiler($tokenizer, $scope->tpl);
|
|
}
|
|
|
|
function myBlockCompilerClose(Aspect\Tokenizer $tokenizer, Aspect\Scope $scope) {
|
|
return 'echo "End of compiler";';
|
|
}
|
|
|
|
function myBlockCompilerTag(Aspect\Tokenizer $tokenizer, Aspect\Scope $scope) {
|
|
$p = $scope->tpl->parseParams($tokenizer);
|
|
return 'echo "Tag ".'.$p["name"].'." of compiler";';
|
|
} |