mirocow\eav\models\EavAttributeSearch::search PHP Метод

    public function search($params)
    {
        $query = EavAttribute::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, 'entityId' => $this->entityId, 'typeId' => $this->typeId, 'defaultOptionId' => $this->defaultOptionId]);
        $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'label', $this->label])->andFilterWhere(['like', 'defaultValue', $this->defaultValue]);
        return $dataProvider;
    }

Usage Example

Пример #1
0
 /**
  * Lists all EavAttribute models.
  * @return mixed
  */
 public function actionIndex()
 {
     $searchModel = new EavAttributeSearch();
     $dataProvider = $searchModel->search(Yii::$app->request->queryParams);
     return $this->render('index', ['searchModel' => $searchModel, 'dataProvider' => $dataProvider]);
 }