Beispiel #1
0
 /**
  * Delete multiple existing Comment model.
  * For ajax request will return json object
  * and for non-ajax request if deletion is successful, the browser will be redirected to the 'index' page.
  * @param integer $id
  * @return mixed
  */
 public function actionBulkDelete()
 {
     $request = Yii::$app->request;
     $pks = $request->post('pks');
     // Array or selected records primary keys
     foreach (Comment::findAll(json_decode($pks)) as $model) {
         $model->delete();
     }
 }