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

Public Member Functions

 __construct (Twig_Node_Expression $expr1, Twig_Node_Expression $expr2, Twig_Node_Expression $expr3, $lineno)
 
 compile (Twig_Compiler $compiler)
 Compiles the node to PHP. More...
 
- 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 Conditional.php.

Constructor & Destructor Documentation

◆ __construct()

Twig_Node_Expression_Conditional::__construct ( Twig_Node_Expression  $expr1,
Twig_Node_Expression  $expr2,
Twig_Node_Expression  $expr3,
  $lineno 
)

Definition at line 14 of file Conditional.php.

References Twig_Node\$lineno.

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

Member Function Documentation

◆ compile()

Twig_Node_Expression_Conditional::compile ( Twig_Compiler  $compiler)

Compiles the node to PHP.

Implements Twig_NodeInterface.

Definition at line 19 of file Conditional.php.

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

20  {
21  $compiler
22  ->raw('((')
23  ->subcompile($this->getNode('expr1'))
24  ->raw(') ? (')
25  ->subcompile($this->getNode('expr2'))
26  ->raw(') : (')
27  ->subcompile($this->getNode('expr3'))
28  ->raw('))')
29  ;
30  }
raw($string)
Adds a raw string to the compiled code.
Definition: Compiler.php:112
getNode($name)
Definition: Node.php:186
+ Here is the call graph for this function:

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