8

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

此外,是否可以在配置文件中这样做?

4

1 回答 1

16

在 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 你可以注册你的宏集:

nette.latte:
                setup:
                        - MyMacroSet::install($service->compiler)
于 2012-02-26T21:19:57.927 回答