ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
Embed.php
Go to the documentation of this file.
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 
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 }
45 
46 class_alias('Twig_Node_Embed', 'Twig\Node\EmbedNode', false);
$lineno
Definition: Node.php:22
getTemplateName()
Definition: Node.php:229
Represents an include node.
Definition: Include.php:18
addGetTemplate(Twig_Compiler $compiler)
Definition: Embed.php:30
$index
Definition: metadata.php:60
Abstract class for all nodes that represents an expression.
Definition: Expression.php:18
__construct($name, $index, Twig_Node_Expression $variables=null, $only=false, $ignoreMissing=false, $lineno, $tag=null)
Definition: Embed.php:20
getAttribute($name)
Definition: Node.php:152
getTemplateLine()
Definition: Node.php:121
setAttribute($name, $value)
Definition: Node.php:165
Represents an embed node.
Definition: Embed.php:17
write()
Writes a string to the compiled code by adding indentation.
Definition: Compiler.php:124