コード例 #1
0
ファイル: ProductController.php プロジェクト: buuug7/game4039
 public function actionMyOrderDelete($id)
 {
     $model = ShopOrder::findOne($id);
     if (!$model) {
         throw new NotFoundHttpException('您请求的页面不存在!');
     }
     $model->delete();
     return $this->redirect(['my-order']);
 }
コード例 #2
0
 /**
  * Finds the ShopOrder model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return ShopOrder the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ShopOrder::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }