Pimcore\Model\Document\Listing\Dao::loadIdPathList PHP Method

loadIdPathList() public method

public loadIdPathList ( )
    public function loadIdPathList()
    {
        $select = (string) $this->getQuery(['id', "CONCAT(path,`key`)"]);
        $documentIds = $this->db->fetchAll($select, $this->model->getConditionVariables());
        return $documentIds;
    }