mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 21:46:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers\Admin\Settings;
 | |
| 
 | |
| use App\Models\Setting;
 | |
| use Illuminate\View\View;
 | |
| use Illuminate\Http\RedirectResponse;
 | |
| use Prologue\Alerts\AlertsMessageBag;
 | |
| use Illuminate\Contracts\Console\Kernel;
 | |
| use App\Http\Controllers\Controller;
 | |
| use App\Traits\Helpers\AvailableLanguages;
 | |
| use App\Services\Helpers\SoftwareVersionService;
 | |
| use App\Http\Requests\Admin\Settings\BaseSettingsFormRequest;
 | |
| 
 | |
| class IndexController extends Controller
 | |
| {
 | |
|     use AvailableLanguages;
 | |
| 
 | |
|     /**
 | |
|      * IndexController constructor.
 | |
|      */
 | |
|     public function __construct(
 | |
|         private AlertsMessageBag $alert,
 | |
|         private Kernel $kernel,
 | |
|         private SoftwareVersionService $versionService,
 | |
|     ) {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Render the UI for basic Panel settings.
 | |
|      */
 | |
|     public function index(): View
 | |
|     {
 | |
|         return view('admin.settings.index', [
 | |
|             'version' => $this->versionService,
 | |
|             'languages' => $this->getAvailableLanguages(),
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle settings update.
 | |
|      *
 | |
|      * @throws \App\Exceptions\Model\DataValidationException
 | |
|      */
 | |
|     public function update(BaseSettingsFormRequest $request): RedirectResponse
 | |
|     {
 | |
|         foreach ($request->normalize() as $key => $value) {
 | |
|             Setting::set('settings::' . $key, $value);
 | |
|         }
 | |
| 
 | |
|         $this->kernel->call('queue:restart');
 | |
|         $this->alert->success('Panel settings have been updated successfully and the queue worker was restarted to apply these changes.')->flash();
 | |
| 
 | |
|         return redirect()->route('admin.settings');
 | |
|     }
 | |
| }
 | 
