/home/techb158/immovalet.com/platform/core/base/src/Providers
NameSizeModeActions
BaseServiceProvider.php82380644editdlrm
BreadcrumbsServiceProvider.php29000644editdlrm
CommandServiceProvider.php4580644editdlrm
ComposerServiceProvider.php18220644editdlrm
EventServiceProvider.php15300644editdlrm
FormServiceProvider.php45450644editdlrm
MailConfigServiceProvider.php40800644editdlrm
Edit: /home/techb158/immovalet.com/platform/core/base/src/Providers/BaseServiceProvider.php (8238B)
app->bind(ResourceRegistrar::class, function ($app) { return new CustomResourceRegistrar($app['router']); }); Helper::autoload(__DIR__ . '/../../helpers'); $this->setNamespace('core/base') ->loadAndPublishConfigurations(['general']); $this->app->register(SettingServiceProvider::class); $this->app->singleton(ExceptionHandler::class, Handler::class); $this->app->singleton(BreadcrumbsManager::class, BreadcrumbsManager::class); $this->app->bind(MetaBoxInterface::class, function () { return new MetaBoxCacheDecorator(new MetaBoxRepository(new MetaBoxModel)); }); $this->app->make('config')->set([ 'session.cookie' => 'botble_session', 'purifier.settings.default.AutoFormat.AutoParagraph' => false, 'purifier.settings.default.AutoFormat.RemoveEmpty' => false, 'ziggy.except' => ['debugbar.*'], 'app.debug_blacklist' => [ '_ENV' => [ 'APP_KEY', 'ADMIN_DIR', 'DB_DATABASE', 'DB_USERNAME', 'DB_PASSWORD', 'REDIS_PASSWORD', 'MAIL_PASSWORD', 'PUSHER_APP_KEY', 'PUSHER_APP_SECRET', ], '_SERVER' => [ 'APP_KEY', 'ADMIN_DIR', 'DB_DATABASE', 'DB_USERNAME', 'DB_PASSWORD', 'REDIS_PASSWORD', 'MAIL_PASSWORD', 'PUSHER_APP_KEY', 'PUSHER_APP_SECRET', ], '_POST' => [ 'password', ], ], 'datatables-buttons.pdf_generator' => 'excel', 'excel.exports.csv.use_bom' => true, ]); } public function boot() { $this->setNamespace('core/base') ->loadAndPublishConfigurations(['permissions', 'assets']) ->loadAndPublishViews() ->loadAndPublishTranslations() ->loadRoutes(['web']) ->loadMigrations() ->publishAssets(); /** * @var Router $router */ $router = $this->app['router']; $router->pushMiddlewareToGroup('web', LocaleMiddleware::class); $router->pushMiddlewareToGroup('web', HttpsProtocolMiddleware::class); $router->aliasMiddleware('preventDemo', DisableInDemoModeMiddleware::class); $router->middlewareGroup('core', [CoreMiddleware::class]); $this->app->booted(function () { do_action(BASE_ACTION_INIT); add_action(BASE_ACTION_META_BOXES, [MetaBox::class, 'doMetaBoxes'], 8, 2); $config = $this->app->make('config'); $setting = $this->app->make(SettingStore::class); $timezone = $setting->get('time_zone', $config->get('app.timezone')); $locale = $setting->get('locale', $config->get('core.base.general.locale', $config->get('app.locale'))); $config->set([ 'app.locale' => $locale, 'app.timezone' => $timezone, ]); $this->app->setLocale($locale); if (in_array($timezone, DateTimeZone::listIdentifiers())) { date_default_timezone_set($timezone); } }); Event::listen(RouteMatched::class, function () { $this->registerDefaultMenus(); }); AliasLoader::getInstance()->alias('MacroableModels', MacroableModelsFacade::class); Paginator::useBootstrap(); $forceUrl = $this->app->make('config')->get('core.base.general.force_root_url'); if (!empty($forceUrl)) { URL::forceRootUrl($forceUrl); } $forceSchema = $this->app->make('config')->get('core.base.general.force_schema'); if (!empty($forceSchema)) { URL::forceScheme($forceSchema); } $this->configureIni(); } /** * Add default dashboard menu for core */ public function registerDefaultMenus() { dashboard_menu() ->registerItem([ 'id' => 'cms-core-platform-administration', 'priority' => 999, 'parent_id' => null, 'name' => 'core/base::layouts.platform_admin', 'icon' => 'fa fa-user-shield', 'url' => null, 'permissions' => ['users.index'], ]) ->registerItem([ 'id' => 'cms-core-system-information', 'priority' => 5, 'parent_id' => 'cms-core-platform-administration', 'name' => 'core/base::system.info.title', 'icon' => null, 'url' => route('system.info'), 'permissions' => [ACL_ROLE_SUPER_USER], ]) ->registerItem([ 'id' => 'cms-core-system-cache', 'priority' => 6, 'parent_id' => 'cms-core-platform-administration', 'name' => 'core/base::cache.cache_management', 'icon' => null, 'url' => route('system.cache'), 'permissions' => [ACL_ROLE_SUPER_USER], ]); } /** * @throws BindingResolutionException */ protected function configureIni() { $currentLimit = ini_get('memory_limit'); $currentLimitInt = Helper::convertHrToBytes($currentLimit); $memoryLimit = $this->app->make('config')->get('core.base.general.memory_limit'); // Define memory limits. if (!$memoryLimit) { if (false === Helper::isIniValueChangeable('memory_limit')) { $memoryLimit = $currentLimit; } else { $memoryLimit = '32M'; } } // Set memory limits. $limitInt = Helper::convertHrToBytes($memoryLimit); if (-1 !== $currentLimitInt && (-1 === $limitInt || $limitInt > $currentLimitInt)) { ini_set('memory_limit', $memoryLimit); } } /** * @return array|string[] */ public function provides(): array { return [BreadcrumbsManager::class]; } }