Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
AutoEscapeNode.php
01 <?php
02
03 /*
04 * This file is part of Twig.
05 *
06 * (c) Fabien Potencier
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace Twig\Node;
13
14 use 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 */
27 class 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)
35 {
36 $compiler->subcompile($this->getNode('body'));
37 }
38 }
39
40 class_alias('Twig\Node\AutoEscapeNode', 'Twig_Node_AutoEscape');
41