store\components\behaviors\DCategoryBehavior::getFullAssocData PHP Метод

getFullAssocData() защищенный Метод

protected getFullAssocData ( $attributes ) : array | CDbDataReader
$attributes
Результат array | CDbDataReader
    protected function getFullAssocData($attributes)
    {
        $criteria = $this->getOwnerCriteria();
        $attributes = $this->aliasAttributes(array_unique(array_merge($attributes, [$this->primaryKeyAttribute])));
        $criteria->select = implode(', ', $attributes);
        $command = $this->createFindCommand($criteria);
        $this->clearOwnerCriteria();
        return $command->queryAll();
    }