| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- namespace app\models;
- use Yii;
- use yii\base\Model;
- use yii\data\ActiveDataProvider;
- use app\models\MenuToTheUser;
- /**
- * MenuToTheUserSearch represents the model behind the search form about `app\models\MenuToTheUser`.
- */
- class MenuToTheUserSearch extends MenuToTheUser
- {
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['id'], 'integer'],
- [['menu_name'], '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 = MenuToTheUser::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', 'menu_name', $this->menu_name]);
- return $dataProvider;
- }
- }
|