Pimcore\Model\Asset\Listing\Dao::loadIdList PHP Метод

loadIdList() публичный Метод

Loads a list of document IDs for the specified parameters, returns an array of ids
public loadIdList ( ) : array
Результат array
    public function loadIdList()
    {
        $select = (string) $this->getQuery(['id', "type"]);
        $assetIds = $this->db->fetchCol($select, $this->model->getConditionVariables());
        return $assetIds;
    }