コード例 #1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Reviews::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]);
     $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'text', $this->text]);
     return $dataProvider;
 }
コード例 #2
0
 /**
  * Lists all Reviews models.
  * @return mixed
  */
 public function actionIndex()
 {
     $dataProvider = new ActiveDataProvider(['query' => Reviews::find()]);
     return $this->render('index', ['dataProvider' => $dataProvider]);
 }
コード例 #3
0
 public function actionRev()
 {
     $reviews = Reviews::find()->orderBy('rand()')->all();
     return $this->render('rev', ['reviews' => $reviews]);
 }