Exemplo n.º 1
0
 public function search($params)
 {
     $query = City::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['city_id' => $this->city_id, 'country_id' => $this->country_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'city', $this->city]);
     return $dataProvider;
 }