1 | <?php |
||
14 | class XlsFooterNode extends Twig_Node implements SyntaxAwareNodeInterface |
||
15 | { |
||
16 | /** |
||
17 | * @param Twig_Node_Expression $type |
||
18 | * @param Twig_Node_Expression $properties |
||
19 | * @param Twig_Node $body |
||
20 | * @param int $line |
||
21 | * @param string $tag |
||
22 | */ |
||
23 | public function __construct(Twig_Node_Expression $type, Twig_Node_Expression $properties, Twig_Node $body, $line = 0, $tag = 'xlsfooter') |
||
27 | |||
28 | /** |
||
29 | * @param Twig_Compiler $compiler |
||
30 | */ |
||
31 | public function compile(Twig_Compiler $compiler) |
||
47 | |||
48 | /** |
||
49 | * @return string[] |
||
50 | */ |
||
51 | public function getAllowedParents() |
||
57 | |||
58 | /** |
||
59 | * @return bool |
||
60 | */ |
||
61 | public function canContainText() |
||
65 | } |
||
66 |