Beispiel #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = GameGift::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['id' => $this->id, 'game_id' => $this->game_id, 'game_server_id' => $this->game_server_id, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'status' => $this->status]);
     $query->andFilterWhere(['like', 'lb_gid', $this->lb_gid])->andFilterWhere(['like', 'lb_name', $this->lb_name])->andFilterWhere(['like', 'lb_type', $this->lb_type])->andFilterWhere(['like', 'lb_method', $this->lb_method])->andFilterWhere(['like', 'lb_content', $this->lb_content])->andFilterWhere(['like', 'slug', $this->slug]);
     return $dataProvider;
 }