Beispiel #1
0
 public function search($params)
 {
     $query = Temp::find()->where(['usr' => $this->findModel()->usr]);
     $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, 'today' => $this->today]);
     $query->andFilterWhere(['like', 'temp', $this->temp])->andFilterWhere(['like', 'usr', $this->usr]);
     return $dataProvider;
 }