1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-21 11:56:04 +01:00
vichan/inc/lib/Twig/Node/If.php

69 lines
1.7 KiB
PHP
Raw Normal View History

2011-10-05 06:22:53 +02:00
<?php
/*
* This file is part of Twig.
*
2018-05-10 12:24:53 +02:00
* (c) Fabien Potencier
* (c) Armin Ronacher
2011-10-05 06:22:53 +02:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Represents an if node.
*
2013-08-01 21:20:12 +02:00
* @author Fabien Potencier <fabien@symfony.com>
2011-10-05 06:22:53 +02:00
*/
class Twig_Node_If extends Twig_Node
{
public function __construct(Twig_NodeInterface $tests, Twig_NodeInterface $else = null, $lineno, $tag = null)
{
2018-05-10 12:24:53 +02:00
$nodes = array('tests' => $tests);
if (null !== $else) {
$nodes['else'] = $else;
}
parent::__construct($nodes, array(), $lineno, $tag);
2011-10-05 06:22:53 +02:00
}
public function compile(Twig_Compiler $compiler)
{
$compiler->addDebugInfo($this);
2018-05-10 12:24:53 +02:00
for ($i = 0, $count = count($this->getNode('tests')); $i < $count; $i += 2) {
2011-10-05 06:22:53 +02:00
if ($i > 0) {
$compiler
->outdent()
2018-05-10 12:24:53 +02:00
->write('} elseif (')
2011-10-05 06:22:53 +02:00
;
} else {
$compiler
->write('if (')
;
}
$compiler
->subcompile($this->getNode('tests')->getNode($i))
->raw(") {\n")
->indent()
->subcompile($this->getNode('tests')->getNode($i + 1))
;
}
2018-05-10 12:24:53 +02:00
if ($this->hasNode('else')) {
2011-10-05 06:22:53 +02:00
$compiler
->outdent()
->write("} else {\n")
->indent()
->subcompile($this->getNode('else'))
;
}
$compiler
->outdent()
->write("}\n");
}
}
2018-05-10 12:24:53 +02:00
class_alias('Twig_Node_If', 'Twig\Node\IfNode', false);