Sulu\Bundle\MediaBundle\Entity\MediaRepository::getIds PHP Method

getIds() private method

returns ids with given filters.
private getIds ( string $collection = null, boolean $systemCollections = true, array $types = null, string $search = null, string $orderBy = null, string $orderSort = null, integer $limit = null, integer $offset = null ) : array
$collection string
$systemCollections boolean
$types array
$search string
$orderBy string
$orderSort string
$limit integer
$offset integer
return array
    private function getIds($collection = null, $systemCollections = true, $types = null, $search = null, $orderBy = null, $orderSort = null, $limit = null, $offset = null)
    {
        $subQuery = $this->getIdsQuery($collection, $systemCollections, $types, $search, $orderBy, $orderSort, $limit, $offset);
        return $subQuery->getScalarResult();
    }