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

178 lines
5.3 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\AnswerSearch;
2021-10-22 17:02:28 +03:00
use Yii;
use backend\modules\questionnaire\models\Question;
use backend\modules\questionnaire\models\QuestionSearch;
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;
/**
* QuestionController implements the CRUD actions for Question model.
*/
class QuestionController extends Controller
{
/**
* {@inheritdoc}
*/
public function behaviors()
{
return [
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all Question models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new QuestionSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single Question 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);
$answerSearchModel = new AnswerSearch();
$answerDataProvider = new ActiveDataProvider([
'query' => $model->getAnswers(),
'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,
'answerSearchModel' => $answerSearchModel,
'answerDataProvider' => $answerDataProvider,
2021-10-22 17:02:28 +03:00
]);
}
/**
* Creates a new Question 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($questionnaire_id = null, $question_type_id = null)
2021-10-22 17:02:28 +03:00
{
$model = new Question();
2021-11-08 12:41:39 +03:00
$model->questionnaire_id = $questionnaire_id;
$model->question_type_id = $question_type_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 ($questionnaire_id !== null) {
2021-11-08 12:41:39 +03:00
return $this->redirect(['questionnaire/view', 'id' => $questionnaire_id]);
}
elseif ($question_type_id !== null) {
2021-11-08 12:41:39 +03:00
return $this->redirect(['question-type/view', 'id' => $question_type_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 Question 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
*/
2021-11-08 12:41:39 +03:00
public function actionUpdate(int $id, $questionnaire_id = null, $question_type_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 ($questionnaire_id !== null) {
2021-11-08 12:41:39 +03:00
return $this->redirect(['questionnaire/view', 'id' => $questionnaire_id]);
}
elseif ($question_type_id !== null) {
2021-11-08 12:41:39 +03:00
return $this->redirect(['question-type/view', 'id' => $question_type_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 Question 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
*/
2021-11-08 12:41:39 +03:00
public function actionDelete(int $id, $questionnaire_id = null, $question_type_id = null)
2021-10-22 17:02:28 +03:00
{
$this->findModel($id)->delete();
if ($questionnaire_id !== null) {
2021-11-08 12:41:39 +03:00
return $this->redirect(['questionnaire/view', 'id' => $questionnaire_id]);
}
elseif ($question_type_id !== null) {
2021-11-08 12:41:39 +03:00
return $this->redirect(['question-type/view', 'id' => $question_type_id]);
}
2021-10-22 17:02:28 +03:00
return $this->redirect(['index']);
}
/**
* Finds the Question model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return Question the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = Question::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException('The requested page does not exist.');
}
// protected function goToView($questionnaire_id = null, $question_type_id = null)
// {
// if ($questionnaire_id !== null)
// {
// return $this->redirect(['questionnaire/view', 'id' => $questionnaire_id]);
// }
// elseif ($question_type_id !== null)
// {
// return $this->redirect(['question-type/view', 'id' => $question_type_id]);
// }
// }
2021-10-22 17:02:28 +03:00
}