1 | <?php |
||
14 | class XlsDrawingNode extends Twig_Node implements SyntaxAwareNodeInterface |
||
15 | { |
||
16 | /** |
||
17 | * @param Twig_Node_Expression $path |
||
18 | * @param Twig_Node_Expression $properties |
||
19 | * @param int $line |
||
20 | * @param string $tag |
||
21 | */ |
||
22 | public function __construct(Twig_Node_Expression $path, Twig_Node_Expression $properties, $line = 0, $tag = 'xlsdrawing') |
||
26 | |||
27 | /** |
||
28 | * @param Twig_Compiler $compiler |
||
29 | */ |
||
30 | public function compile(Twig_Compiler $compiler) |
||
43 | |||
44 | /** |
||
45 | * @return string[] |
||
46 | */ |
||
47 | public function getAllowedParents() |
||
56 | |||
57 | /** |
||
58 | * @return bool |
||
59 | */ |
||
60 | public function canContainText() |
||
64 | } |
||
65 |