blob: cd970411b8d3704040b4aa9215a4fa600e3159a4 [file] [log] [blame]
Matthias Andreas Benkard12a57352021-12-28 18:02:04 +01001<?php
2
3/*
4 * This file is part of Twig.
5 *
6 * (c) Fabien Potencier
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Twig\Node;
13
14use Twig\Compiler;
15
16/**
17 * Represents an autoescape node.
18 *
19 * The value is the escaping strategy (can be html, js, ...)
20 *
21 * The true value is equivalent to html.
22 *
23 * If autoescaping is disabled, then the value is false.
24 *
25 * @author Fabien Potencier <fabien@symfony.com>
26 */
27class AutoEscapeNode extends Node
28{
29 public function __construct($value, Node $body, int $lineno, string $tag = 'autoescape')
30 {
31 parent::__construct(['body' => $body], ['value' => $value], $lineno, $tag);
32 }
33
34 public function compile(Compiler $compiler): void
35 {
36 $compiler->subcompile($this->getNode('body'));
37 }
38}