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.
21 lines
358 B
21 lines
358 B
6 years ago
|
<?php
|
||
|
/**
|
||
|
* Created by Error202
|
||
|
* Date: 27.07.2018
|
||
|
*/
|
||
|
|
||
|
namespace common\modules\pages\entities\queries;
|
||
|
|
||
|
|
||
|
use common\modules\pages\entities\Page;
|
||
|
use yii\db\ActiveQuery;
|
||
|
|
||
|
class PageQuery extends ActiveQuery
|
||
|
{
|
||
|
public function typePublic($alias = null)
|
||
|
{
|
||
|
return $this->andWhere([
|
||
|
($alias ? $alias . '.' : '') . 'type' => Page::TYPE_PUBLIC,
|
||
|
]);
|
||
|
}
|
||
|
}
|