mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * UpgradeFireflyInstructions.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.
 | |
|  */
 | |
| 
 | |
| declare(strict_types = 1);
 | |
| 
 | |
| namespace FireflyIII\Console\Commands;
 | |
| 
 | |
| use Illuminate\Console\Command;
 | |
| 
 | |
| /**
 | |
|  * Class UpgradeFireflyInstructions
 | |
|  *
 | |
|  * @package FireflyIII\Console\Commands
 | |
|  */
 | |
| class UpgradeFireflyInstructions extends Command
 | |
| {
 | |
|     /**
 | |
|      * The console command description.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $description = 'Command description';
 | |
|     /**
 | |
|      * The name and signature of the console command.
 | |
|      *
 | |
|      * @var string
 | |
|      */
 | |
|     protected $signature = 'firefly:upgrade-instructions';
 | |
| 
 | |
|     /**
 | |
|      * Create a new command instance.
 | |
|      *
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|         parent::__construct();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Execute the console command.
 | |
|      *
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function handle()
 | |
|     {
 | |
|         //
 | |
|         /** @var string $version */
 | |
|         $version = config('firefly.version');
 | |
|         $config  = config('upgrade.text');
 | |
|         $text    = $config[$version] ?? null;
 | |
| 
 | |
|         $this->line('+------------------------------------------------------------------------------+');
 | |
|         $this->line('');
 | |
| 
 | |
|         if (is_null($text)) {
 | |
|             $this->line('Thank you for installing Firefly III, v' . $version);
 | |
|             $this->line('If you are upgrading from a previous version,');
 | |
|             $this->info('there are no extra upgrade instructions.');
 | |
|             $this->line('Firefly III should be ready for use.');
 | |
|         } else {
 | |
|             $this->line('Thank you for installing Firefly III, v' . $version);
 | |
|             $this->line('If you are upgrading from a previous version,');
 | |
|             $this->line('please follow these upgrade instructions carefully:');
 | |
|             $this->info(wordwrap($text));
 | |
|         }
 | |
| 
 | |
|         $this->line('');
 | |
|         $this->line('+------------------------------------------------------------------------------+');
 | |
|     }
 | |
| }
 |