composer package updates
[openemr.git] / vendor / twig / twig / lib / Twig / Node / AutoEscape.php
blob17e4e3813f08c2b4dda5ab7b0ca2f89cfb7b1a5d
1 <?php
3 /*
4 * This file is part of Twig.
6 * (c) Fabien Potencier
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 /**
13 * Represents an autoescape node.
15 * The value is the escaping strategy (can be html, js, ...)
17 * The true value is equivalent to html.
19 * If autoescaping is disabled, then the value is false.
21 * @author Fabien Potencier <fabien@symfony.com>
23 class Twig_Node_AutoEscape extends Twig_Node
25 public function __construct($value, Twig_NodeInterface $body, $lineno, $tag = 'autoescape')
27 parent::__construct(array('body' => $body), array('value' => $value), $lineno, $tag);
30 public function compile(Twig_Compiler $compiler)
32 $compiler->subcompile($this->getNode('body'));
36 class_alias('Twig_Node_AutoEscape', 'Twig\Node\AutoEscapeNode', false);