コード例 #1
0
ファイル: CodeController.php プロジェクト: wuwenhan/huoqiwang
 /**
  * Deletes an existing Code model.
  * If deletion is successful, the browser will be redirected to the 'index' page.
  * @param integer $id
  * @return mixed
  */
 public function actionDelete($id)
 {
     Code::updateAll(['status' => Code::STATUS_DELETED], ['id' => $id]);
     //$this->findModel($id)->delete();
     return $this->redirect(['index']);
 }