Example #1
0
 public function actionImgdel($id)
 {
     $model = $this->findModel($id);
     Category::delImg($model->img);
     $model->img = null;
     $model->save();
     return $this->redirect(UrlHelp::toRoute(['category/update', 'id' => $model->id]));
 }