[ 'class' => AccessBehavior::className(), 'rules' => ['site' => [ [ 'actions' => ['login', 'error'], 'allow' => true, ] ] ] ], 'verbs' => [ 'class' => VerbFilter::className(), 'actions' => [ 'delete' => ['POST'], ], ], ]; } /** * Lists all Feedback models. * @return mixed */ public function actionIndex() { $searchModel = new FeedbackSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider, ]); } /** * Deletes an existing Feedback model. * If deletion is successful, the browser will be redirected to the 'index' page. * @param integer $id * @return mixed */ public function actionDelete($id) { $this->findModel($id)->delete(); return $this->redirect(['index']); } /** * Finds the Feedback model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Feedback the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Feedback::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } } }