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
314 B
21 lines
314 B
<?php |
|
/** |
|
* Created by Error202 |
|
* Date: 27.07.2018 |
|
*/ |
|
|
|
namespace common\modules\forms\entities\queries; |
|
|
|
|
|
use common\modules\forms\entities\Form; |
|
use yii\db\ActiveQuery; |
|
|
|
class FormQuery extends ActiveQuery |
|
{ |
|
public function active() |
|
{ |
|
return $this->andWhere([ |
|
'active' => Form::STATUS_ACTIVE, |
|
]); |
|
} |
|
} |