Beispiel #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdrutas()
 {
     return $this->hasMany(Ruta::className(), ['id' => 'idruta'])->viaTable('ruta_relevador', ['idrelevador' => 'id']);
 }
Beispiel #2
0
 /**
  * Finds the Ruta model based on its primary key value.
  * If the model is not found, a 404 HTTP exception will be thrown.
  * @param string $id
  * @return Ruta the loaded model
  * @throws NotFoundHttpException if the model cannot be found
  */
 protected function findModel($id)
 {
     if (($model = Ruta::findOne($id)) !== null) {
         return $model;
     } else {
         throw new NotFoundHttpException('The requested page does not exist.');
     }
 }
Beispiel #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdruta0()
 {
     return $this->hasOne(Ruta::className(), ['id' => 'idruta']);
 }