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

156 lines
4.4 KiB
PHP
Raw Normal View History

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