1786f36c6f43bf6efefd6d625d293f968f2c8dbe
[yaffs-website] / vendor / twig / twig / lib / Twig / Node / Embed.php
1 <?php
2
3 /*
4  * This file is part of Twig.
5  *
6  * (c) Fabien Potencier
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 /**
13  * Represents an embed node.
14  *
15  * @author Fabien Potencier <fabien@symfony.com>
16  */
17 class Twig_Node_Embed extends Twig_Node_Include
18 {
19     // we don't inject the module to avoid node visitors to traverse it twice (as it will be already visited in the main module)
20     public function __construct($name, $index, Twig_Node_Expression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null)
21     {
22         parent::__construct(new Twig_Node_Expression_Constant('not_used', $lineno), $variables, $only, $ignoreMissing, $lineno, $tag);
23
24         $this->setAttribute('name', $name);
25         // to be removed in 2.0, used name instead
26         $this->setAttribute('filename', $name);
27         $this->setAttribute('index', $index);
28     }
29
30     protected function addGetTemplate(Twig_Compiler $compiler)
31     {
32         $compiler
33             ->write('$this->loadTemplate(')
34             ->string($this->getAttribute('name'))
35             ->raw(', ')
36             ->repr($this->getTemplateName())
37             ->raw(', ')
38             ->repr($this->getTemplateLine())
39             ->raw(', ')
40             ->string($this->getAttribute('index'))
41             ->raw(')')
42         ;
43     }
44 }