2a5114cb87aa521d8013160cbe50c735f23cb7b2
[yaffs-website] / vendor / twig / twig / lib / Twig / Node / Include.php
1 <?php
2
3 /*
4  * This file is part of Twig.
5  *
6  * (c) Fabien Potencier
7  * (c) 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  * @author Fabien Potencier <fabien@symfony.com>
17  */
18 class Twig_Node_Include extends Twig_Node implements Twig_NodeOutputInterface
19 {
20     public function __construct(Twig_Node_Expression $expr, Twig_Node_Expression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null)
21     {
22         $nodes = array('expr' => $expr);
23         if (null !== $variables) {
24             $nodes['variables'] = $variables;
25         }
26
27         parent::__construct($nodes, array('only' => (bool) $only, 'ignore_missing' => (bool) $ignoreMissing), $lineno, $tag);
28     }
29
30     public function compile(Twig_Compiler $compiler)
31     {
32         $compiler->addDebugInfo($this);
33
34         if ($this->getAttribute('ignore_missing')) {
35             $compiler
36                 ->write("try {\n")
37                 ->indent()
38             ;
39         }
40
41         $this->addGetTemplate($compiler);
42
43         $compiler->raw('->display(');
44
45         $this->addTemplateArguments($compiler);
46
47         $compiler->raw(");\n");
48
49         if ($this->getAttribute('ignore_missing')) {
50             $compiler
51                 ->outdent()
52                 ->write("} catch (Twig_Error_Loader \$e) {\n")
53                 ->indent()
54                 ->write("// ignore missing template\n")
55                 ->outdent()
56                 ->write("}\n\n")
57             ;
58         }
59     }
60
61     protected function addGetTemplate(Twig_Compiler $compiler)
62     {
63         $compiler
64              ->write('$this->loadTemplate(')
65              ->subcompile($this->getNode('expr'))
66              ->raw(', ')
67              ->repr($this->getTemplateName())
68              ->raw(', ')
69              ->repr($this->getTemplateLine())
70              ->raw(')')
71          ;
72     }
73
74     protected function addTemplateArguments(Twig_Compiler $compiler)
75     {
76         if (!$this->hasNode('variables')) {
77             $compiler->raw(false === $this->getAttribute('only') ? '$context' : 'array()');
78         } elseif (false === $this->getAttribute('only')) {
79             $compiler
80                 ->raw('array_merge($context, ')
81                 ->subcompile($this->getNode('variables'))
82                 ->raw(')')
83             ;
84         } else {
85             $compiler->subcompile($this->getNode('variables'));
86         }
87     }
88 }
89
90 class_alias('Twig_Node_Include', 'Twig\Node\IncludeNode', false);