W3cubDocs

/Drupal 8

protected function EntityListBuilder::getEntityIds

protected EntityListBuilder::getEntityIds()

Loads entity IDs using a pager sorted by the entity id.

Return value

array An array of entity IDs.

File

core/lib/Drupal/Core/Entity/EntityListBuilder.php, line 90

Class

EntityListBuilder
Defines a generic implementation to build a listing of entities.

Namespace

Drupal\Core\Entity

Code

protected function getEntityIds() {
  $query = $this->getStorage()->getQuery()
    ->sort($this->entityType->getKey('id'));

  // Only add the pager if a limit is specified.
  if ($this->limit) {
    $query->pager($this->limit);
  }
  return $query->execute();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!EntityListBuilder.php/function/EntityListBuilder::getEntityIds/8.1.x