/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = ThreadTable::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(['id' => $this->id, 'user_id' => $this->user_id, 'date' => $this->date]); $query->andFilterWhere(['like', 'title', $this->title])->andFilterWhere(['like', 'description', $this->description]); return $dataProvider; }
public function getPost() { return $this->hasMany(ThreadTable::className(), ['thread_id' => 'id']); }
public function actionIndex() { $dataProvider = new ActiveDataProvider(['query' => ThreadTable::find()]); return $this->render('index', ['dataProvider' => $dataProvider]); }