Пример #1
0
 /**
  * Deletes an existing Teileigentumseinheit model.
  * If deletion is successful, the browser will be redirected to the 'index' page.
  * @param string $id
  * @return mixed
  */
 public function actionDeleteteileigentumseinheit($hausId, $teileigentumseinheitId)
 {
     $teileigentumseinheit = Teileigentumseinheit::findOne($teileigentumseinheitId);
     if ($teileigentumseinheit) {
         $teileigentumseinheit->delete();
     }
     return $this->redirect(['update', 'id' => $hausId]);
 }
Пример #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTeileigentumseinheits()
 {
     return $this->hasMany(Teileigentumseinheit::className(), ['haus_id' => 'id']);
 }
 /**
  * Finds the Teileigentumseinheit model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return Teileigentumseinheit the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Teileigentumseinheit::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }