Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 3.14.131.169
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lionsclub /
core /
vendor /
symfony /
translation /
Loader /
[ HOME SHELL ]
Name
Size
Permission
Action
ArrayLoader.php
1.38
KB
-rw-r--r--
CsvFileLoader.php
1.69
KB
-rw-r--r--
FileLoader.php
1.74
KB
-rw-r--r--
IcuDatFileLoader.php
1.8
KB
-rw-r--r--
IcuResFileLoader.php
2.79
KB
-rw-r--r--
IniFileLoader.php
560
B
-rw-r--r--
JsonFileLoader.php
1.66
KB
-rw-r--r--
LoaderInterface.php
1.1
KB
-rw-r--r--
MoFileLoader.php
4.19
KB
-rw-r--r--
PhpFileLoader.php
1.14
KB
-rw-r--r--
PoFileLoader.php
4.99
KB
-rw-r--r--
QtFileLoader.php
2.78
KB
-rw-r--r--
XliffFileLoader.php
7.7
KB
-rw-r--r--
YamlFileLoader.php
1.6
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : LoaderInterface.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\Loader; use Symfony\Component\Translation\Exception\InvalidResourceException; use Symfony\Component\Translation\Exception\NotFoundResourceException; use Symfony\Component\Translation\MessageCatalogue; /** * LoaderInterface is the interface implemented by all translation loaders. * * @author Fabien Potencier <fabien@symfony.com> */ interface LoaderInterface { /** * Loads a locale. * * @param mixed $resource A resource * @param string $locale A locale * @param string $domain The domain * * @return MessageCatalogue A MessageCatalogue instance * * @throws NotFoundResourceException when the resource cannot be found * @throws InvalidResourceException when the resource cannot be loaded */ public function load($resource, string $locale, string $domain = 'messages'); }
Close