You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.3 KiB

6 years ago
<?php
namespace common\modules\banners\forms\search;
use common\modules\banners\entities\Banner;
use yii\base\Model;
use yii\data\ActiveDataProvider;
class BannerSearch extends Model
{
public $id;
public $title;
public $active;
public $place_id;
public $target;
public function rules(): array
{
return [
[['id', 'active', 'place_id'], 'integer'],
[['title', 'target'], 'safe'],
];
}
/**
* @param array $params
*
6 years ago
* @return ActiveDataProvider
*/
public function search(array $params): ActiveDataProvider
{
$query = Banner::find();
$dataProvider = new ActiveDataProvider([
'query' => $query,
'sort' => [
6 years ago
'defaultOrder' => ['id' => SORT_DESC]
]
]);
$this->load($params);
if (!$this->validate()) {
$query->where('0=1');
6 years ago
return $dataProvider;
}
$query->andFilterWhere([
'id' => $this->id,
'active' => $this->active,
6 years ago
'place_id' => $this->place_id,
'target' => $this->target
6 years ago
]);
$query
->andFilterWhere(['like', 'title', $this->title]);
6 years ago
return $dataProvider;
}
}