1 | <?php |
---|
2 | |
---|
3 | /* |
---|
4 | * This file is part of Twig. |
---|
5 | * |
---|
6 | * (c) 2009 Fabien Potencier |
---|
7 | * (c) 2009 Armin Ronacher |
---|
8 | * |
---|
9 | * For the full copyright and license information, please view the LICENSE |
---|
10 | * file that was distributed with this source code. |
---|
11 | */ |
---|
12 | |
---|
13 | /** |
---|
14 | * Represents an include node. |
---|
15 | * |
---|
16 | * @package twig |
---|
17 | * @author Fabien Potencier <fabien@symfony.com> |
---|
18 | */ |
---|
19 | class Twig_Node_Include extends Twig_Node implements Twig_NodeOutputInterface |
---|
20 | { |
---|
21 | public function __construct(Twig_Node_Expression $expr, Twig_Node_Expression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null) |
---|
22 | { |
---|
23 | parent::__construct(array('expr' => $expr, 'variables' => $variables), array('only' => (Boolean) $only, 'ignore_missing' => (Boolean) $ignoreMissing), $lineno, $tag); |
---|
24 | } |
---|
25 | |
---|
26 | /** |
---|
27 | * Compiles the node to PHP. |
---|
28 | * |
---|
29 | * @param Twig_Compiler A Twig_Compiler instance |
---|
30 | */ |
---|
31 | public function compile(Twig_Compiler $compiler) |
---|
32 | { |
---|
33 | $compiler->addDebugInfo($this); |
---|
34 | |
---|
35 | if ($this->getAttribute('ignore_missing')) { |
---|
36 | $compiler |
---|
37 | ->write("try {\n") |
---|
38 | ->indent() |
---|
39 | ; |
---|
40 | } |
---|
41 | |
---|
42 | $this->addGetTemplate($compiler); |
---|
43 | |
---|
44 | $compiler->raw('->display('); |
---|
45 | |
---|
46 | $this->addTemplateArguments($compiler); |
---|
47 | |
---|
48 | $compiler->raw(");\n"); |
---|
49 | |
---|
50 | if ($this->getAttribute('ignore_missing')) { |
---|
51 | $compiler |
---|
52 | ->outdent() |
---|
53 | ->write("} catch (Twig_Error_Loader \$e) {\n") |
---|
54 | ->indent() |
---|
55 | ->write("// ignore missing template\n") |
---|
56 | ->outdent() |
---|
57 | ->write("}\n\n") |
---|
58 | ; |
---|
59 | } |
---|
60 | } |
---|
61 | |
---|
62 | protected function addGetTemplate(Twig_Compiler $compiler) |
---|
63 | { |
---|
64 | if ($this->getNode('expr') instanceof Twig_Node_Expression_Constant) { |
---|
65 | $compiler |
---|
66 | ->write("\$this->env->loadTemplate(") |
---|
67 | ->subcompile($this->getNode('expr')) |
---|
68 | ->raw(")") |
---|
69 | ; |
---|
70 | } else { |
---|
71 | $compiler |
---|
72 | ->write("\$template = \$this->env->resolveTemplate(") |
---|
73 | ->subcompile($this->getNode('expr')) |
---|
74 | ->raw(");\n") |
---|
75 | ->write('$template') |
---|
76 | ; |
---|
77 | } |
---|
78 | } |
---|
79 | |
---|
80 | protected function addTemplateArguments(Twig_Compiler $compiler) |
---|
81 | { |
---|
82 | if (false === $this->getAttribute('only')) { |
---|
83 | if (null === $this->getNode('variables')) { |
---|
84 | $compiler->raw('$context'); |
---|
85 | } else { |
---|
86 | $compiler |
---|
87 | ->raw('array_merge($context, ') |
---|
88 | ->subcompile($this->getNode('variables')) |
---|
89 | ->raw(')') |
---|
90 | ; |
---|
91 | } |
---|
92 | } else { |
---|
93 | if (null === $this->getNode('variables')) { |
---|
94 | $compiler->raw('array()'); |
---|
95 | } else { |
---|
96 | $compiler->subcompile($this->getNode('variables')); |
---|
97 | } |
---|
98 | } |
---|
99 | } |
---|
100 | } |
---|