/**
  * Updates an existing HostsAccommodation 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);
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         $newmodel = HostsOtherServices::find()->where(['host_id' => $model->host_id])->one();
         if (count($newmodel) != 1) {
             return $this->redirect(['hostsotherservices/create', 'host_id' => $model->host_id]);
         } else {
             return $this->redirect(['hostsotherservices/update', 'id' => $newmodel->id]);
         }
     } else {
         return $this->render('update', ['model' => $model, 'host_id' => $model->host_id]);
     }
 }
 /**
  * Finds the HostsOtherServices model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param integer $id
  * @return HostsOtherServices the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = HostsOtherServices::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }