class Twig_Node_Expression_Parent in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Node/Expression/Parent.php \Twig_Node_Expression_Parent
Represents a parent node.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Twig_Node implements Twig_NodeInterface
- class \Twig_Node_Expression
- class \Twig_Node_Expression_Parent
- class \Twig_Node_Expression
Expanded class hierarchy of Twig_Node_Expression_Parent
File
- vendor/
Twig/ Node/ Expression/ Parent.php, line 18
View source
class Twig_Node_Expression_Parent extends Twig_Node_Expression {
public function __construct($name, $lineno, $tag = null) {
parent::__construct(array(), array(
'output' => false,
'name' => $name,
), $lineno, $tag);
}
/**
* Compiles the node to PHP.
*
* @param Twig_Compiler $compiler A Twig_Compiler instance
*/
public function compile(Twig_Compiler $compiler) {
if ($this
->getAttribute('output')) {
$compiler
->addDebugInfo($this)
->write("\$this->displayParentBlock(")
->string($this
->getAttribute('name'))
->raw(", \$context, \$blocks);\n");
}
else {
$compiler
->raw("\$this->renderParentBlock(")
->string($this
->getAttribute('name'))
->raw(", \$context, \$blocks)");
}
}
}
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. | |
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 identifier exists. | |
Twig_Node:: |
public | function | Removes an attribute. | |
Twig_Node:: |
public | function | Removes a node by name. | |
Twig_Node:: |
public | function | Sets an attribute. | |
Twig_Node:: |
public | function | Sets a node. | |
Twig_Node:: |
public | function | ||
Twig_Node:: |
public | function | ||
Twig_Node_Expression_Parent:: |
public | function |
Compiles the node to PHP. Overrides Twig_Node:: |
|
Twig_Node_Expression_Parent:: |
public | function |
Constructor. Overrides Twig_Node:: |