Ejemplo n.º 1
0
 /**
  * Finds the SongKingdom model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return SongKingdom the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = SongKingdom::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Ejemplo n.º 2
0
 /**
  * Updates an existing Song model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id
  * @return mixed
  */
 public function actionUpdate($id)
 {
     $model = $this->findModel($id);
     $songKingdomModel = SongKingdom::findOne($model->song_kingdom_id);
     return $this->render('songUpdate', ['model' => $model, 'songKingdomModel' => $songKingdomModel]);
 }