コード例 #1
0
ファイル: SiteController.php プロジェクト: phanthehung/onepx
 /**
  * Lists all WebRedirect models.
  * @return mixed
  */
 public function actionIndex()
 {
     // $searchModel = new RedirectSearch();
     // $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     // return $this->render('index', [
     //     'searchModel' => $searchModel,
     //     'dataProvider' => $dataProvider,
     // ]);
     $query = WebRedirect::find();
     $countQuery = clone $query;
     $pages = new Pagination(['totalCount' => $countQuery->count(), 'pageSize' => Yii::$app->params['pagination']]);
     $models = $query->offset($pages->offset)->limit($pages->limit)->all();
     return $this->render('index', ['models' => $models, 'pages' => $pages]);
 }
コード例 #2
0
ファイル: RedirectSearch.php プロジェクト: phanthehung/onepx
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = WebRedirect::find();
     $dataProvider = new ActiveDataProvider(['query' => $query, 'pagination' => ['pageSize' => 20]]);
     $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, 'state' => $this->state, 'created_at' => $this->created_at, 'created_by' => $this->created_by, 'updated_at' => $this->updated_at, 'updated_by' => $this->updated_by]);
     $query->andFilterWhere(['like', 'source', $this->source])->andFilterWhere(['like', 'destination', $this->destination])->andFilterWhere(['like', 'kind', $this->kind]);
     return $dataProvider;
 }