Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
36 | public function compile(Twig_Compiler $compiler) |
||
37 | { |
||
38 | $compiler |
||
39 | ->addDebugInfo($this) |
||
40 | ->write("echo \$this->env->getExtension('actions')->renderAction(") |
||
41 | ->subcompile($this->wrapped->getNode('expr')) |
||
42 | ->raw(', ') |
||
43 | ->raw("\$this->env->getExtension('zicht_framework_extra')->embed(") |
||
44 | ->subcompile($this->wrapped->getNode('attributes')) |
||
45 | ->raw(')') |
||
46 | ->raw(', ') |
||
47 | ->subcompile($this->wrapped->getNode('options')) |
||
48 | ->raw(");\n"); |
||
49 | } |
||
51 |