コード例 #1
0
ファイル: KuisController.php プロジェクト: asrulsibaoel/umeac
 /**
  * Displays a single Kuis model.
  * @param integer $id
  * @return mixed
  */
 public function actionView($id)
 {
     $model2 = new KuisDetail();
     if ($model2->load(Yii::$app->request->post())) {
     }
     return $this->render('view', ['model' => $this->findModel($id)]);
 }
コード例 #2
0
 /**
  * Finds the KuisDetail model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return KuisDetail the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = KuisDetail::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }