guild/backend/modules/questionnaire/controllers/QuestionnaireCategoryController.php

142 lines
4.0 KiB
PHP
Raw Normal View History

2021-10-22 17:02:28 +03:00
<?php
namespace backend\modules\questionnaire\controllers;
2021-11-08 12:41:39 +03:00
use backend\modules\questionnaire\models\QuestionnaireSearch;
2021-10-22 17:02:28 +03:00
use Yii;
use backend\modules\questionnaire\models\QuestionnaireCategory;
use backend\modules\questionnaire\models\QuestionnaireCategorySearch;
2021-11-08 12:41:39 +03:00
use yii\data\ActiveDataProvider;
2021-10-22 17:02:28 +03:00
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
/**
* QuestionnaireCategoryController implements the CRUD actions for QuestionnaireCategory model.
*/
class QuestionnaireCategoryController extends Controller
{
/**
* {@inheritdoc}
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all QuestionnaireCategory models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new QuestionnaireCategorySearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single QuestionnaireCategory model.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionView($id)
{
2021-11-08 12:41:39 +03:00
$model = $this->findModel($id);
$questionnaireSearchModel = new QuestionnaireSearch();
$questionnaireDataProvider = new ActiveDataProvider([
'query' => $model->getQuestionnaires()->with('category'),
2021-11-08 12:41:39 +03:00
'pagination' => [
'pageSize' => 20,
],
]);
2021-10-22 17:02:28 +03:00
return $this->render('view', [
2021-11-08 12:41:39 +03:00
'model' => $model,
'questionnaireDataProvider' => $questionnaireDataProvider,
'questionnaireSearchModel' => $questionnaireSearchModel,
2021-10-22 17:02:28 +03:00
]);
}
/**
* Creates a new QuestionnaireCategory model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new QuestionnaireCategory();
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('create', [
'model' => $model,
]);
}
/**
* Updates an existing QuestionnaireCategory model.
* If update is successful, the browser will be redirected to the 'view' page.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionUpdate($id)
{
$model = $this->findModel($id);
if ($model->load(Yii::$app->request->post()) && $model->save()) {
return $this->redirect(['view', 'id' => $model->id]);
}
return $this->render('update', [
'model' => $model,
]);
}
/**
* Deletes an existing QuestionnaireCategory model.
* If deletion is successful, the browser will be redirected to the 'index' page.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionDelete($id)
{
$this->findModel($id)->delete();
return $this->redirect(['index']);
}
/**
* Finds the QuestionnaireCategory model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return QuestionnaireCategory the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = QuestionnaireCategory::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
}