/** * @return \yii\db\ActiveQuery */ public function getIdrutas() { return $this->hasMany(Ruta::className(), ['id' => 'idruta'])->viaTable('ruta_relevador', ['idrelevador' => 'id']); }
/** * 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.'); } }
/** * @return \yii\db\ActiveQuery */ public function getIdruta0() { return $this->hasOne(Ruta::className(), ['id' => 'idruta']); }