| Current Path : /var/www/html/ebook/backend/controllers/content/ |
| Current File : /var/www/html/ebook/backend/controllers/content/ContentQuestionaireController.php |
<?php
namespace backend\controllers\content;
use Yii;
use backend\models\ContentQuestionaire;
use backend\models\ContentQuestionaireSearch;
use yii\web\Controller;
use yii\web\NotFoundHttpException;
use yii\filters\VerbFilter;
use yii\web\UploadedFile;
use yii\filters\AccessControl;
use common\components\AccessRule;
/**
* ContentQuestionaireController implements the CRUD actions for ContentQuestionaire model.
*/
class ContentQuestionaireController extends Controller
{
/**
* @inheritdoc
*/
public function behaviors()
{
return [
'access' => [
'class' => AccessControl::className(),
'ruleConfig' => [
'class' => AccessRule::className(),
],
'rules' => [
[
'actions' => ['index', 'create', 'update', 'view', 'delete','ajax-poll-save'],
'allow' => true,
'roles' => ['@'],
],
],
],
'verbs' => [
'class' => VerbFilter::className(),
'actions' => [
'delete' => ['POST'],
],
],
];
}
/**
* Lists all ContentQuestionaire models.
* @return mixed
*/
public function actionIndex()
{
$searchModel = new ContentQuestionaireSearch();
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
return $this->render('index', [
'searchModel' => $searchModel,
'dataProvider' => $dataProvider,
]);
}
/**
* Displays a single ContentQuestionaire model.
* @param integer $id
* @return mixed
* @throws NotFoundHttpException if the model cannot be found
*/
public function actionView($id)
{
return $this->render('view', [
'model' => $this->findModel($id),
]);
}
/**
* Creates a new ContentQuestionaire model.
* If creation is successful, the browser will be redirected to the 'view' page.
* @return mixed
*/
public function actionCreate()
{
$model = new ContentQuestionaire();
// if ($model->load(Yii::$app->request->post()) ){
// echo '<pre>'; var_dump($_POST); echo '</pre>';die();
// }
if ($model->load(Yii::$app->request->post()) && $model->save()) {
// return $this->redirect(['view', 'id' => $model->questionaire_id]);
$model->questionaire_image = UploadedFile::getInstance($model, 'questionaire_image');
if ($model->upload()) {
// file is uploaded successfully
if ($model->save(false)) {
return $this->redirect(['index']);
}
}
}
return $this->render('create', [
'model' => $model,
]);
}
/**
* Updates an existing ContentQuestionaire 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()) ){
// echo '<pre>'; var_dump($_POST); echo '</pre>';die();
// }
if($model->questionaire_type != 1){
$model->questionaire_quiz_answer = NULL;
}
// if ($model->load(Yii::$app->request->post()) && $model->save()) {
// return $this->redirect(['view', 'id' => $model->questionaire_id]);
// return $this->redirect(['index']);
// }
if ($model->load(Yii::$app->request->post())) {
$image = $model->questionaire_image;
$model->questionaire_image = UploadedFile::getInstance($model, 'questionaire_image');
if ($model->questionaire_image == null) {
$model->questionaire_image = $this->findModel($id)->questionaire_image;
if ($model->save(false)) {
return $this->redirect(['index']);
}
} else {
if ($model->upload()) {
// file is uploaded successfully
if ($model->save(false)) {
return $this->redirect(['index']);
}
}
}
}
return $this->render('update', [
'model' => $model,
]);
}
/**
* Deletes an existing ContentQuestionaire 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 ContentQuestionaire model based on its primary key value.
* If the model is not found, a 404 HTTP exception will be thrown.
* @param integer $id
* @return ContentQuestionaire the loaded model
* @throws NotFoundHttpException if the model cannot be found
*/
protected function findModel($id)
{
if (($model = ContentQuestionaire::findOne($id)) !== null) {
return $model;
}
throw new NotFoundHttpException(Yii::t('app', 'The requested page does not exist.'));
}
public function actionAjaxPollSave($id){
$mpoll = ContentQuestionaire::findOne($id);
$vote = Yii::$app->request->post('vote');
switch ($vote) {
case '1':
$mpoll->questionaire_answer_1 += 1;
break;
case '2':
$mpoll->questionaire_answer_2 += 1;
break;
case '3':
$mpoll->questionaire_answer_3 += 1;
break;
case '4':
$mpoll->questionaire_answer_4 += 1;
break;
case '5':
$mpoll->questionaire_answer_5 += 1;
break;
}
if($mpoll->save()){
echo "ok!!";
}else{
echo "error!!";
}
}
}