mirocow\eav\models\EavAttributeTypeSearch::search PHP Method

    public function search($params)
    {
        $query = EavAttributeType::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, 'storeType' => $this->storeType]);
        $query->andFilterWhere(['like', 'name', $this->name])->andFilterWhere(['like', 'handlerClass', $this->handlerClass]);
        return $dataProvider;
    }

Usage Example

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