Example #1
0
 /**
  * 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;
 }
Example #2
0
 public function getPost()
 {
     return $this->hasMany(ThreadTable::className(), ['thread_id' => 'id']);
 }
Example #3
0
 public function actionIndex()
 {
     $dataProvider = new ActiveDataProvider(['query' => ThreadTable::find()]);
     return $this->render('index', ['dataProvider' => $dataProvider]);
 }