ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Twig_Node_Expression_Unary Class Reference
+ Inheritance diagram for Twig_Node_Expression_Unary:
+ Collaboration diagram for Twig_Node_Expression_Unary:

Public Member Functions

 __construct (Twig_NodeInterface $node, $lineno)
 
 compile (Twig_Compiler $compiler)
 Compiles the node to PHP. More...
 
 operator (Twig_Compiler $compiler)
 
- Public Member Functions inherited from Twig_Node
 __construct (array $nodes=array(), array $attributes=array(), $lineno=0, $tag=null)
 Constructor. More...
 
 __toString ()
 
 toXml ($asDom=false)
 
 compile (Twig_Compiler $compiler)
 Compiles the node to PHP. More...
 
 getTemplateLine ()
 
 getLine ()
 
 getNodeTag ()
 
 hasAttribute ($name)
 
 getAttribute ($name)
 
 setAttribute ($name, $value)
 
 removeAttribute ($name)
 
 hasNode ($name)
 
 getNode ($name)
 
 setNode ($name, $node=null)
 
 removeNode ($name)
 
 count ()
 
 getIterator ()
 
 setTemplateName ($name)
 
 getTemplateName ()
 
 setFilename ($name)
 
 getFilename ()
 

Additional Inherited Members

- Protected Attributes inherited from Twig_Node
 $nodes
 
 $attributes
 
 $lineno
 
 $tag
 

Detailed Description

Definition at line 12 of file Unary.php.

Constructor & Destructor Documentation

◆ __construct()

Twig_Node_Expression_Unary::__construct ( Twig_NodeInterface  $node,
  $lineno 
)

Definition at line 14 of file Unary.php.

References Twig_Node\$lineno.

15  {
16  parent::__construct(array('node' => $node), array(), $lineno);
17  }
$lineno
Definition: Node.php:22

Member Function Documentation

◆ compile()

Twig_Node_Expression_Unary::compile ( Twig_Compiler  $compiler)

Compiles the node to PHP.

Implements Twig_NodeInterface.

Definition at line 19 of file Unary.php.

References Twig_Node\getNode(), operator(), Twig_Compiler\raw(), and Twig_Compiler\subcompile().

20  {
21  $compiler->raw(' ');
22  $this->operator($compiler);
23  $compiler->subcompile($this->getNode('node'));
24  }
raw($string)
Adds a raw string to the compiled code.
Definition: Compiler.php:112
subcompile(Twig_NodeInterface $node, $raw=true)
Definition: Compiler.php:94
operator(Twig_Compiler $compiler)
getNode($name)
Definition: Node.php:186
+ Here is the call graph for this function:

◆ operator()

Twig_Node_Expression_Unary::operator ( Twig_Compiler  $compiler)
abstract

Referenced by compile().

+ Here is the caller graph for this function:

The documentation for this class was generated from the following file: