コード例 #1
0
ファイル: TimeController.php プロジェクト: Greasi/yizu
 public function actionDelete()
 {
     $id = $_GET['id'];
     //$arr=Company::findOne($id);
     //echo $arr['_id'];die;
     if (Time::findOne($id)->delete()) {
         echo $this->success("删除成功", "index.php?r=time", '1');
     } else {
         echo $this->error("删除失败", "index.php?r=time", '1');
     }
 }
コード例 #2
0
ファイル: TimeController.php プロジェクト: dieos2/bolaoyyi2
 /**
  * Finds the Time model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return Time the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Time::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }