/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Tasks::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(['task_id' => $this->task_id, 'user_id' => $this->user_id, 'deadline' => $this->deadline]); $query->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'description', $this->description])->andFilterWhere(['like', 'snapshot', $this->snapshot])->andFilterWhere(['like', 'priority', $this->priority]); return $dataProvider; }
/** * Lists all Tasks models. * @return mixed */ public function actionIndex() { $searchModel = new TasksSearch(); $dataProvider = new ActiveDataProvider(['query' => Tasks::find()->where(['user_id' => \Yii::$app->user->identity->id])]); return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]); }