Template-engine/template/Extend.php

17 lines
259 B
PHP

<?php
namespace template;
class Extend extends Engine
{
protected $tags = [
'say' => ['attr' => 'what', 'close' => 0]
];
protected function _say_start($tag)
{
return '<?php echo \''. $tag['what'] .'\'; ?>';
}
}