You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							157 lines
						
					
					
						
							4.3 KiB
						
					
					
				
			
		
		
	
	
							157 lines
						
					
					
						
							4.3 KiB
						
					
					
				| <?php | |
| /** | |
|  * Created by Error202 | |
|  * Date: 04.06.2018 | |
|  */ | |
|  | |
| namespace backend\controllers\settings; | |
|  | |
| use backend\forms\SettingsSearch; | |
| use core\entities\Settings; | |
| use core\forms\SettingsForm; | |
| use core\services\SettingsService; | |
| use yii\filters\AccessControl; | |
| use yii\filters\VerbFilter; | |
| use yii\web\Controller; | |
| use backend\components\ToggleAction; | |
| use Yii; | |
| use yii\web\NotFoundHttpException; | |
|  | |
| class ListController extends Controller | |
| { | |
|     private $_service; | |
|  | |
|     public function __construct(string $id, $module, SettingsService $service, array $config = []) | |
|     { | |
|         parent::__construct($id, $module, $config); | |
|         $this->_service = $service; | |
|     } | |
|  | |
|     public function behaviors() | |
|     { | |
|         return [ | |
|             'verbs'  => [ | |
|                 'class'   => VerbFilter::class, | |
|                 'actions' => [ | |
|                     'delete' => ['POST'], | |
|                 ], | |
|             ], | |
|             'access' => [ | |
|                 'class' => AccessControl::class, | |
|                 'rules' => [ | |
|                     [ | |
|                         'actions' => ['create', 'view', 'index', 'update', 'delete', 'toggle'], | |
|                         'allow'   => true, | |
|                         'roles'   => ['SettingsManagement'], | |
|                     ], | |
|                     [    // all the action are accessible to admin | |
|                         'allow' => true, | |
|                         'roles' => ['admin'], | |
|                     ], | |
|                 ], | |
|             ], | |
|         ]; | |
|     } | |
|  | |
|     public function actions() | |
|     { | |
|         return [ | |
|             'toggle' => [ | |
|                 'class'      => ToggleAction::class, | |
|                 'modelClass' => Settings::class, | |
|                 //'setFlash' => true, | |
|             ] | |
|         ]; | |
|     } | |
|  | |
|     public function actionIndex($section = 'site') | |
|     { | |
|         $searchModel  = new SettingsSearch(); | |
|         $searchModel->section = $section; | |
|         $dataProvider = $searchModel->search(Yii::$app->request->queryParams); | |
|  | |
|         return $this->render( | |
|             'index', | |
|             [ | |
|                 'searchModel'  => $searchModel, | |
|                 'dataProvider' => $dataProvider, | |
|                 'section' => $section, | |
|             ] | |
|         ); | |
|     } | |
|  | |
|     public function actionView($section, $key) | |
|     { | |
|         return $this->render( | |
|             'view', | |
|             [ | |
|                 'model' => $this->findModel($section, $key), | |
|             ] | |
|         ); | |
|     } | |
|  | |
|     public function actionCreate() | |
|     { | |
|         $form = new SettingsForm(); | |
|         if ($form->load(Yii::$app->request->post()) && $form->validate()) { | |
|             try { | |
|                 $settings = $this->_service->create($form); | |
|  | |
|                 return $this->redirect(['view', 'section' => $settings->section, 'key' => $settings->key]); | |
|             } catch (\DomainException $e) { | |
|                 Yii::$app->errorHandler->logException($e); | |
|                 Yii::$app->session->setFlash('error', $e->getMessage()); | |
|             } | |
|         } else { | |
|             $form->active = 1; | |
|         } | |
|  | |
|         return $this->render( | |
|             'create', | |
|             [ | |
|                 'model' => $form, | |
|             ] | |
|         ); | |
|     } | |
|  | |
|     public function actionUpdate($section, $key) | |
|     { | |
|         $settings = $this->findModel($section, $key); | |
|  | |
|         $form = new SettingsForm($settings); | |
|         if ($form->load(Yii::$app->request->post()) && $form->validate()) { | |
|             try { | |
|                 $this->_service->edit($settings->section, $settings->key, $form); | |
|  | |
|                 return $this->redirect(['view', 'section' => $settings->section, 'key' => $settings->key]); | |
|             } catch (\DomainException $e) { | |
|                 Yii::$app->errorHandler->logException($e); | |
|                 Yii::$app->session->setFlash('error', $e->getMessage()); | |
|             } | |
|         } | |
|  | |
|         return $this->render( | |
|             'update', | |
|             [ | |
|                 'model'    => $form, | |
|                 'settings' => $settings, | |
|             ] | |
|         ); | |
|     } | |
|  | |
|     public function actionDelete($section, $key) | |
|     { | |
|         $this->_service->remove($section, $key); | |
|  | |
|         return $this->redirect(['index']); | |
|     } | |
|  | |
|     protected function findModel($section, $key) | |
|     { | |
|         if (($model = Settings::find()->andWhere(['section' => $section])->andWhere(['key' => $key])->one()) !== null) { | |
|             return $model; | |
|         } else { | |
|             throw new NotFoundHttpException('The requested setting does not exist.'); | |
|         } | |
|     } | |
| }
 | |
| 
 |