Example #1
0
 /**
  * Deletes an existing Page model.
  * If deletion is successful, the browser will be redirected to the 'index' page.
  * @param integer $fid
  * @return mixed
  */
 public function actionDelete($fid)
 {
     if (File::fileDelete($fid)) {
         $result = [];
     } else {
         $result = ['error' => 'Ошибка'];
     }
     Yii::$app->response->format = Response::FORMAT_JSON;
     return $result;
 }