/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Darsena::find(); $dataProvider = new ActiveDataProvider(['query' => $query]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); return $dataProvider; } $query->andFilterWhere(['idDarsena' => $this->idDarsena, 'DarsenaEstado_idDarsenaEstado' => $this->DarsenaEstado_idDarsenaEstado]); $query->andFilterWhere(['like', 'Nombre', $this->Nombre])->andFilterWhere(['like', 'Descripcion', $this->Descripcion]); return $dataProvider; }
/** * @return \yii\db\ActiveQuery */ public function getDarsenas() { return $this->hasMany(Darsena::className(), ['DarsenaEstado_idDarsenaEstado' => 'idDarsenaEstado']); }
/** * Finds the Darsena model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $idDarsena * @param integer $DarsenaEstado_idDarsenaEstado * @return Darsena the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($idDarsena, $DarsenaEstado_idDarsenaEstado) { if (($model = Darsena::findOne(['idDarsena' => $idDarsena, 'DarsenaEstado_idDarsenaEstado' => $DarsenaEstado_idDarsenaEstado])) !== null) { return $model; } else { throw new NotFoundHttpException('The requested page does not exist.'); } }