[ 'class' => VerbFilter::className(), 'actions' => [ 'delete' => ['POST'], ], ], 'access' =>[ 'class' => AccessControl::className(), 'rules' => [ [ 'allow' => true, 'roles' => ['@'], ], ], ], ]; } private function saveImg($model) { if($model->imageFile = UploadedFile::getInstance($model,'imageFile')){ if($model->picture){ @unlink($model->picture); } $imageName = 'uploads/'.$model->title . '.' . $model->imageFile->extension; $model->imageFile->saveAs($imageName ); $model->picture = $imageName; $model->save(false); } } public function actionIndex() { $searchModel = new BlogPostsSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider, ]); } public function actionView($id) { return $this->render('view', [ 'model' => $this->findModel($id), ]); } public function actionCreate() { $model = new BlogPosts(); $model->created_at = time(); if ($model->load(Yii::$app->request->post()) && $model->upload()) { return $this->redirect(['view', 'id' => $model->id]); } else { return $this->render('create', [ 'model' => $model, ]); } } public function actionUpdate($id) { $model = $this->findModel($id); if ($model->load(Yii::$app->request->post()) && $model->save()) { $this->saveImg($model); return $this->redirect(['view', 'id' => $model->id]); } else { return $this->render('update', [ 'model' => $model, ]); } } public function actionDelete($id) { $this->findModel($id)->delete(); return $this->redirect(['index']); } protected function findModel($id) { if (($model = BlogPosts::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } } }