PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
audit-log
/
src
/
Providers
<?php namespace Botble\AuditLog\Providers; use Botble\AuditLog\Facades\AuditLogFacade; use Botble\AuditLog\Models\AuditHistory; use Botble\AuditLog\Repositories\Caches\AuditLogCacheDecorator; use Botble\AuditLog\Repositories\Eloquent\AuditLogRepository; use Botble\AuditLog\Repositories\Interfaces\AuditLogInterface; use Botble\Base\Supports\Helper; use Botble\Base\Traits\LoadAndPublishDataTrait; use Illuminate\Support\Facades\Event; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\AliasLoader; use Illuminate\Routing\Events\RouteMatched; use Illuminate\Support\ServiceProvider; /** * @since 02/07/2016 09:05 AM */ class AuditLogServiceProvider extends ServiceProvider { use LoadAndPublishDataTrait; public function register() { $this->app->bind(AuditLogInterface::class, function () { return new AuditLogCacheDecorator(new AuditLogRepository(new AuditHistory)); }); AliasLoader::getInstance()->alias('AuditLog', AuditLogFacade::class); Helper::autoload(__DIR__ . '/../../helpers'); } public function boot() { $this->app->register(EventServiceProvider::class); $this->app->register(CommandServiceProvider::class); $this->setNamespace('plugins/audit-log') ->loadRoutes(['web']) ->loadAndPublishViews() ->loadAndPublishTranslations() ->loadAndPublishConfigurations(['permissions']) ->loadMigrations() ->publishAssets(); Event::listen(RouteMatched::class, function () { dashboard_menu() ->registerItem([ 'id' => 'cms-plugin-audit-log', 'priority' => 8, 'parent_id' => 'cms-core-platform-administration', 'name' => 'plugins/audit-log::history.name', 'icon' => null, 'url' => route('audit-log.index'), 'permissions' => ['audit-log.index'], ]); }); $this->app->booted(function () { $this->app->register(HookServiceProvider::class); $schedule = $this->app->make(Schedule::class); $schedule->command('model:prune', ['--model' => AuditHistory::class])->dailyAt('00:30'); }); } }
[+]
..
[-] HookServiceProvider.php
[edit]
[-] CommandServiceProvider.php
[edit]
[-] AuditLogServiceProvider.php
[edit]
[-] EventServiceProvider.php
[edit]