Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
nepalphd /
vendor /
symfony /
translation /
[ HOME SHELL ]
Name
Size
Permission
Action
Catalogue
[ DIR ]
drwxrwxr-x
Command
[ DIR ]
drwxrwxr-x
DataCollector
[ DIR ]
drwxrwxr-x
DependencyInjection
[ DIR ]
drwxrwxr-x
Dumper
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Extractor
[ DIR ]
drwxrwxr-x
Formatter
[ DIR ]
drwxrwxr-x
Loader
[ DIR ]
drwxrwxr-x
Provider
[ DIR ]
drwxrwxr-x
Reader
[ DIR ]
drwxrwxr-x
Resources
[ DIR ]
drwxrwxr-x
Test
[ DIR ]
drwxrwxr-x
Util
[ DIR ]
drwxrwxr-x
Writer
[ DIR ]
drwxrwxr-x
CHANGELOG.md
7.27
KB
-rwxrwxr-x
CatalogueMetadataAwareInterfac...
1.46
KB
-rwxrwxr-x
DataCollectorTranslator.php
4.42
KB
-rwxrwxr-x
IdentityTranslator.php
661
B
-rwxrwxr-x
LICENSE
1.04
KB
-rwxrwxr-x
LocaleSwitcher.php
1.96
KB
-rwxrwxr-x
LoggingTranslator.php
3.48
KB
-rwxrwxr-x
MessageCatalogue.php
9.81
KB
-rwxrwxr-x
MessageCatalogueInterface.php
3.4
KB
-rwxrwxr-x
MetadataAwareInterface.php
1.38
KB
-rwxrwxr-x
PseudoLocalizationTranslator.p...
10.86
KB
-rwxrwxr-x
README.md
1.01
KB
-rwxrwxr-x
TranslatableMessage.php
1.51
KB
-rwxrwxr-x
Translator.php
14.11
KB
-rwxrwxr-x
TranslatorBag.php
3.05
KB
-rwxrwxr-x
TranslatorBagInterface.php
917
B
-rwxrwxr-x
composer.json
1.89
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TranslatorBagInterface.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Translation; use Symfony\Component\Translation\Exception\InvalidArgumentException; /** * @author Abdellatif Ait boudad <a.aitboudad@gmail.com> */ interface TranslatorBagInterface { /** * Gets the catalogue by locale. * * @param string|null $locale The locale or null to use the default * * @throws InvalidArgumentException If the locale contains invalid characters */ public function getCatalogue(?string $locale = null): MessageCatalogueInterface; /** * Returns all catalogues of the instance. * * @return MessageCatalogueInterface[] */ public function getCatalogues(): array; }
Close