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.
58 lines
1.2 KiB
58 lines
1.2 KiB
7 years ago
|
<?php
|
||
|
|
||
6 years ago
|
namespace common\modules\pages\forms;
|
||
7 years ago
|
|
||
|
use yii\base\Model;
|
||
|
use yii\data\ActiveDataProvider;
|
||
6 years ago
|
use common\modules\pages\entities\Page;
|
||
7 years ago
|
|
||
|
class PageSearch extends Model
|
||
|
{
|
||
|
public $id;
|
||
|
public $name;
|
||
|
public $slug;
|
||
|
public $title;
|
||
|
|
||
|
public function rules(): array
|
||
|
{
|
||
|
return [
|
||
|
[['id'], 'integer'],
|
||
|
[['name', 'slug', 'title'], 'safe'],
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param array $params
|
||
|
* @return ActiveDataProvider
|
||
|
*/
|
||
|
public function search(array $params): ActiveDataProvider
|
||
|
{
|
||
|
$query = Page::find()->andWhere(['>', 'depth', 0]);
|
||
|
|
||
|
$dataProvider = new ActiveDataProvider([
|
||
|
'query' => $query,
|
||
|
'sort' => [
|
||
|
'defaultOrder' => ['lft' => SORT_ASC]
|
||
|
]
|
||
|
]);
|
||
|
|
||
|
$this->load($params);
|
||
|
|
||
|
if (!$this->validate()) {
|
||
|
$query->where('0=1');
|
||
|
return $dataProvider;
|
||
|
}
|
||
|
|
||
|
$query->andFilterWhere([
|
||
|
'id' => $this->id,
|
||
|
]);
|
||
|
|
||
|
$query
|
||
|
->andFilterWhere(['like', 'name', $this->name])
|
||
|
->andFilterWhere(['like', 'slug', $this->slug])
|
||
|
->andFilterWhere(['like', 'title', $this->title]);
|
||
|
|
||
|
return $dataProvider;
|
||
|
}
|
||
|
}
|