Beispiel #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = NoreplyEmail::find();
     $dataProvider = new ActiveDataProvider(['query' => $query, 'sort' => ['defaultOrder' => ['id' => SORT_DESC]]]);
     $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(['id' => $this->id, 'created_at' => $this->created_at, 'start_sending_at' => $this->start_sending_at, 'last_sent_at' => $this->last_sent_at, 'status' => $this->status, 'is_active' => $this->is_active, 'total_emails_address' => $this->total_emails_address, 'total_emails_sent' => $this->total_emails_sent]);
     $query->andFilterWhere(['like', 'subject', $this->subject])->andFilterWhere(['like', 'content', $this->content])->andFilterWhere(['like', 'created_by', $this->created_by])->andFilterWhere(['like', 'to_groups', $this->to_groups])->andFilterWhere(['like', 'to_items', $this->to_items])->andFilterWhere(['like', 'image_path', $this->image_path]);
     return $dataProvider;
 }