mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			722 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			722 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace BookStack\Providers;
 | |
| 
 | |
| use BookStack\Theming\ThemeEvents;
 | |
| use BookStack\Theming\ThemeService;
 | |
| use Illuminate\Support\ServiceProvider;
 | |
| 
 | |
| class ThemeServiceProvider extends ServiceProvider
 | |
| {
 | |
|     /**
 | |
|      * Register services.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function register()
 | |
|     {
 | |
|         $this->app->singleton(ThemeService::class, function ($app) {
 | |
|             return new ThemeService();
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Bootstrap services.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function boot()
 | |
|     {
 | |
|         $themeService = $this->app->make(ThemeService::class);
 | |
|         $themeService->readThemeActions();
 | |
|         $themeService->dispatch(ThemeEvents::APP_BOOT, $this->app);
 | |
|     }
 | |
| }
 |