Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace backend\modules\user\models;
- use Yii;
- use yii\base\Model;
- use yii\data\ActiveDataProvider;
- use backend\modules\user\models\Contact;
- /**
- * SearchContact represents the model behind the search form about `frontend\models\Contact`.
- */
- class SearchContact extends Contact
- {
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id', 'created_at', 'updated_at'], 'integer'],
- [['name', 'email'], '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 = Contact::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(['like', 'name', $this->name])
- ->andFilterWhere(['like', 'email', $this->email]);
- return $dataProvider;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement