Пример #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Trouve::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(['idtrouve' => $this->idtrouve, 'age' => $this->age, 'date' => $this->date]);
     $query->andFilterWhere(['like', 'type', $this->type])->andFilterWhere(['like', 'nom', $this->nom])->andFilterWhere(['like', 'race', $this->race])->andFilterWhere(['like', 'couleur', $this->couleur])->andFilterWhere(['like', 'identification', $this->identification])->andFilterWhere(['like', 'lieu', $this->lieu])->andFilterWhere(['like', 'photo', $this->photo])->andFilterWhere(['like', 'description', $this->description])->andFilterWhere(['like', 'utilisateur', $this->utilisateur]);
     return $dataProvider;
 }