Nette Framework - 自定义属性宏

时间:2012-02-26 19:34:31

标签: php nette

Nette Framework中定义新属性宏的最佳方法是什么?

此外,是否可以在配置文件中执行此操作?

1 个答案:

答案 0 :(得分:15)

在Nette Framework中定义自己的宏非常简单, 首先,您必须创建MacroSet:

$latte = new Nette\Latte\Engine;
$set = new Nette\Latte\Macros\MacroSet($latte->compiler);

然后使用args创建新的宏:

$set->addMacro('if', 'if (%node.args):', 'endif');

第二个问题的解决方案:

Class MyMacroSet extends Nette\Latte\Macros\MacroSet
{
    public static function install(Nette\Latte\Compiler $compiler)
    {
        $compiler->addMacro('if', 'if (%node.args):', 'endif');
    }
}

在config.neon中你可以注册你的macroSet:

nette.latte:
                setup:
                        - MyMacroSet::install($service->compiler)