class Twig_Node_Embed in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/twig/twig/lib/Twig/Node/Embed.php \Twig_Node_Embed
Represents an embed node.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Twig_Node implements Twig_NodeInterface
- class \Twig_Node_Include implements Twig_NodeOutputInterface
- class \Twig_Node_Embed
- class \Twig_Node_Include implements Twig_NodeOutputInterface
Expanded class hierarchy of Twig_Node_Embed
File
- vendor/
twig/ twig/ lib/ Twig/ Node/ Embed.php, line 17
View source
class Twig_Node_Embed extends Twig_Node_Include {
// we don't inject the module to avoid node visitors to traverse it twice (as it will be already visited in the main module)
public function __construct($filename, $index, Twig_Node_Expression $variables = null, $only = false, $ignoreMissing = false, $lineno, $tag = null) {
parent::__construct(new Twig_Node_Expression_Constant('not_used', $lineno), $variables, $only, $ignoreMissing, $lineno, $tag);
$this
->setAttribute('filename', $filename);
$this
->setAttribute('index', $index);
}
protected function addGetTemplate(Twig_Compiler $compiler) {
$compiler
->write('$this->loadTemplate(')
->string($this
->getAttribute('filename'))
->raw(', ')
->repr($compiler
->getFilename())
->raw(', ')
->repr($this
->getLine())
->raw(', ')
->string($this
->getAttribute('index'))
->raw(')');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Twig_Node:: |
protected | property | ||
Twig_Node:: |
protected | property | ||
Twig_Node:: |
protected | property | ||
Twig_Node:: |
protected | property | ||
Twig_Node:: |
public | function | ||
Twig_Node:: |
public | function | Gets an attribute value by name. | |
Twig_Node:: |
public | function | ||
Twig_Node:: |
public | function |
Overrides Twig_NodeInterface:: |
|
Twig_Node:: |
public | function | Gets a node by name. | |
Twig_Node:: |
public | function |
Overrides Twig_NodeInterface:: |
|
Twig_Node:: |
public | function | Returns true if the attribute is defined. | |
Twig_Node:: |
public | function | Returns true if the node with the given name exists. | |
Twig_Node:: |
public | function | Removes an attribute by name. | |
Twig_Node:: |
public | function | Removes a node by name. | |
Twig_Node:: |
public | function | Sets an attribute by name to a value. | |
Twig_Node:: |
public | function | Sets a node. | |
Twig_Node:: |
public | function | ||
Twig_Node:: |
public | function | ||
Twig_Node_Embed:: |
protected | function |
Overrides Twig_Node_Include:: |
|
Twig_Node_Embed:: |
public | function |
Constructor. Overrides Twig_Node_Include:: |
|
Twig_Node_Include:: |
protected | function | ||
Twig_Node_Include:: |
public | function |
Compiles the node to PHP. Overrides Twig_Node:: |