Exemplo n.º 1
0
 /**
  * Creates data provider instance with search query applied
  *
  * @param array $params
  *
  * @return ActiveDataProvider
  */
 public function search($params)
 {
     $query = Suppliersbrands::find();
     $dataProvider = new ActiveDataProvider(['query' => $query]);
     if (!($this->load($params) && $this->validate())) {
         return $dataProvider;
     }
     $query->andFilterWhere(['SuppliersBrandId' => $this->SuppliersBrandId, 'BrandId' => $this->BrandId, 'SupplierId' => $this->SupplierId, 'created_by' => $this->created_by, 'LastUpdatedBy' => $this->LastUpdatedBy, 'created_at' => $this->created_at, 'deleted_at' => $this->deleted_at]);
     $query->andFilterWhere(['like', 'Comment', $this->Comment])->andFilterWhere(['like', 'updated_at', $this->updated_at]);
     return $dataProvider;
 }