/**
  * Finds the ProductOrder model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return ProductOrder the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = ProductOrder::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Exemplo n.º 2
0
 public function getModel($id)
 {
     $productOrder = ProductOrder::findOne(['id' => $id, 'user_id' => Yii::$app->user->identity->id]);
     if (!$productOrder) {
         throw new NotFoundHttpException(Yii::t('app', 'specify product order could not be found.'));
     } else {
         return $productOrder;
     }
 }