mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-04 05:15:39 +00:00 
			
		
		
		
	
		
			
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
		
		
			
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| 
								 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * CrudServiceProvider.php
							 | 
						||
| 
								 | 
							
								 * Copyright (C) 2016 thegrumpydictator@gmail.com
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * This software may be modified and distributed under the terms
							 | 
						||
| 
								 | 
							
								 * of the MIT license.  See the LICENSE file for details.
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace FireflyIII\Providers;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use FireflyIII\Exceptions\FireflyException;
							 | 
						||
| 
								 | 
							
								use Illuminate\Foundation\Application;
							 | 
						||
| 
								 | 
							
								use Illuminate\Support\ServiceProvider;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * Class CrudServiceProvider
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @package FireflyIII\Providers
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								class CrudServiceProvider extends ServiceProvider
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * Bootstrap the application services.
							 | 
						||
| 
								 | 
							
								     *
							 | 
						||
| 
								 | 
							
								     * @return void
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    public function boot()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        //
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * Register the application services.
							 | 
						||
| 
								 | 
							
								     *
							 | 
						||
| 
								 | 
							
								     * @return void
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    public function register()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        $this->app->bind(
							 | 
						||
| 
								 | 
							
								            'FireflyIII\Crud\Split\JournalInterface',
							 | 
						||
| 
								 | 
							
								            function (Application $app, array $arguments) {
							 | 
						||
| 
								 | 
							
								                if (!isset($arguments[0]) && $app->auth->check()) {
							 | 
						||
| 
								 | 
							
								                    return app('FireflyIII\Crud\Split\Journal', [$app->auth->user()]);
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								                if (!isset($arguments[0]) && !$app->auth->check()) {
							 | 
						||
| 
								 | 
							
								                    throw new FireflyException('There is no user present.');
							 | 
						||
| 
								 | 
							
								                }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                return app('FireflyIII\Crud\Split\Journal', $arguments);
							 | 
						||
| 
								 | 
							
								            }
							 | 
						||
| 
								 | 
							
								        );
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |