CategoryQuery.php 741 Bytes
<?php

namespace common\modules\product\models;
use common\components\artboxtree\ArtboxTreeQueryTrait;

/**
 * This is the ActiveQuery class for [[Category]].
 *
 * @see Category
 */
class CategoryQuery extends \yii\db\ActiveQuery
{
    use ArtboxTreeQueryTrait;

    /*public function active()
    {
        return $this->andWhere('[[status]]=1');
    }*/

    /**
     * @inheritdoc
     * @return Category[]|array
     */
    public function all($db = null)
    {
        return parent::all($db);
    }

    /**
     * @inheritdoc
     * @return Category|array|null
     */
    public function one($db = null)
    {
//        $this->joinWith('categoryName');
        return parent::one($db);
    }
}