/**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Posts::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(['id' => $this->id, 'type' => $this->type, 'status' => $this->status, 'sid' => $this->sid]);
     $query->andFilterWhere(['like', 'text', $this->text])->andFilterWhere(['like', 'tags', $this->tags])->andFilterWhere(['like', 'provider', $this->provider])->andFilterWhere(['like', 'created', $this->created])->andFilterWhere(['like', 'published', $this->published])->andFilterWhere(['like', 'url', $this->url]);
     return $dataProvider;
 }
Exemple #2
0
 public static function countNewPosts()
 {
     return Posts::find()->where(['status' => self::STATUS_NEW])->count();
 }