| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- namespace app\models;
- use Yii;
- use yii\base\Model;
- use yii\data\ActiveDataProvider;
- use app\models\Pages;
- /**
- * PagesSearch represents the model behind the search form about `app\models\Pages`.
- */
- class PagesSearch extends Pages
- {
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id'], 'integer'],
- [['title', 'text', 'description', 'key_word'], 'safe'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function scenarios()
- {
- // bypass scenarios() implementation in the parent class
- return Model::scenarios();
- }
- /**
- * Creates data provider instance with search query applied
- *
- * @param array $params
- *
- * @return ActiveDataProvider
- */
- public function search($params)
- {
- $query = Pages::find();
- // add conditions that should always apply here
- $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;
- }
- // grid filtering conditions
- $query->andFilterWhere([
- 'id' => $this->id,
- ]);
- $query->andFilterWhere(['like', 'title', $this->title])
- ->andFilterWhere(['like', 'text', $this->text])
- ->andFilterWhere(['like', 'description', $this->description])
- ->andFilterWhere(['like', 'key_word', $this->key_word]);
- return $dataProvider;
- }
- }
|