Esempio n. 1
0
 public function search($params)
 {
     $query = Address::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['address_id' => $this->address_id, 'city_id' => $this->city_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'address', $this->address])->andFilterWhere(['like', 'address2', $this->address2])->andFilterWhere(['like', 'district', $this->district])->andFilterWhere(['like', 'postal_code', $this->postal_code])->andFilterWhere(['like', 'phone', $this->phone]);
     return $dataProvider;
 }
Esempio n. 2
0
 /**
 * Creates data provider instance with search query applied
 *
 * @param array $params
 *
 * @return ActiveDataProvider
 */
 public function search($params)
 {
     $query = AddressModel::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     $this->load($params);
     if (!$this->validate()) {
         // uncomment the following line if you do not want to any records when validation fails
         // $query->where('0=1');
         return $dataProvider;
     }
     $query->andFilterWhere(['address_id' => $this->address_id, 'city_id' => $this->city_id, 'last_update' => $this->last_update]);
     $query->andFilterWhere(['like', 'address', $this->address])->andFilterWhere(['like', 'address2', $this->address2])->andFilterWhere(['like', 'district', $this->district])->andFilterWhere(['like', 'postal_code', $this->postal_code])->andFilterWhere(['like', 'phone', $this->phone]);
     return $dataProvider;
 }