ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
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
46class_alias('Twig_Node_Embed', 'Twig\Node\EmbedNode', false);
An exception for terminatinating execution or to throw for unit testing.
Compiles a node to PHP code.
Definition: Compiler.php:19
write()
Writes a string to the compiled code by adding indentation.
Definition: Compiler.php:124
Represents an embed node.
Definition: Embed.php:18
__construct($name, $index, Twig_Node_Expression $variables=null, $only=false, $ignoreMissing=false, $lineno, $tag=null)
Definition: Embed.php:20
addGetTemplate(Twig_Compiler $compiler)
Definition: Embed.php:30
Abstract class for all nodes that represents an expression.
Definition: Expression.php:19
Represents an include node.
Definition: Include.php:19
getAttribute($name)
Definition: Node.php:152
getTemplateName()
Definition: Node.php:229
$lineno
Definition: Node.php:22
getTemplateLine()
Definition: Node.php:121
setAttribute($name, $value)
Definition: Node.php:165
$index
Definition: metadata.php:60