home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Translation
➕ New
📤 Upload
✎ Editing:
TranslationServiceProvider.php
← Back
<?php namespace Illuminate\Translation; use Illuminate\Support\ServiceProvider; class TranslationServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = true; /** * Register the service provider. * * @return void */ public function register() { $this->registerLoader(); $this->app->bindShared('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['config']['app.locale']; $trans = new Translator($loader, $locale); $trans->setFallback($app['config']['app.fallback_locale']); return $trans; }); } /** * Register the translation line loader. * * @return void */ protected function registerLoader() { $this->app->bindShared('translation.loader', function($app) { return new FileLoader($app['files'], $app['path'].'/lang'); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return array('translator', 'translation.loader'); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel