Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/Modules/UniversalBundle/Modules/Asset/Providers/AssetServiceProvider.php
Назад
<?php namespace Modules\Asset\Providers; use Illuminate\Support\ServiceProvider; use Modules\Asset\Console\ActivateModuleCommand; class AssetServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = false; /** * Boot the application events. * * @return void */ public function boot() { $this->registerTranslations(); $this->registerConfig(); $this->registerViews(); $this->loadMigrationsFrom(__DIR__.'/../Database/Migrations'); $this->registerCommands(); } /** * Register the service provider. * * @return void */ public function register() { $this->app->register(RouteServiceProvider::class); } /** * Register config. * * @return void */ protected function registerConfig() { $this->publishes([ __DIR__.'/../Config/config.php' => config_path('asset.php'), ]); $this->mergeConfigFrom( __DIR__.'/../Config/config.php', 'asset' ); $this->mergeConfigFrom( module_path('asset', 'Config/xss_ignore.php'), 'asset::xss_ignore' ); } /** * Register views. * * @return void */ public function registerViews() { $viewPath = base_path('resources/views/modules/asset'); $sourcePath = __DIR__.'/../Resources/views'; $this->publishes([ $sourcePath => $viewPath, ], 'views'); $this->loadViewsFrom([$sourcePath], 'asset'); } /** * Register translations. * * @return void */ public function registerTranslations() { $langPath = base_path('resources/lang/modules/asset'); if (is_dir($langPath)) { $this->loadTranslationsFrom($langPath, 'asset'); } else { $this->loadTranslationsFrom(__DIR__.'/../Resources/lang', 'asset'); } } /** * Register an additional directory of factories. * * @return void */ public function registerFactories() { if (! app()->environment('production') && $this->app->runningInConsole()) { app(Factory::class)->load(__DIR__.'/../Database/factories'); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return []; } /** * Register artisan commands */ private function registerCommands() { $this->commands( [ ActivateModuleCommand::class, ] ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка