Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/EntityListBuilder.php \Drupal\Core\Entity\EntityListBuilder::getEntityIds()
  2. 9 core/lib/Drupal/Core/Entity/EntityListBuilder.php \Drupal\Core\Entity\EntityListBuilder::getEntityIds()

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

Return value

array An array of entity IDs.

2 calls to EntityListBuilder::getEntityIds()
ConfigEntityListBuilder::load in core/lib/Drupal/Core/Config/Entity/ConfigEntityListBuilder.php
Loads entities of this type from storage for listing.
EntityListBuilder::load in core/lib/Drupal/Core/Entity/EntityListBuilder.php
Loads entities of this type from storage for listing.
5 methods override EntityListBuilder::getEntityIds()
BlockContentListBuilder::getEntityIds in core/modules/block_content/src/BlockContentListBuilder.php
Loads entity IDs using a pager sorted by the entity id.
BlockListBuilder::getEntityIds in core/modules/block/src/BlockListBuilder.php
Loads entity IDs using a pager sorted by the entity id.
MediaListBuilder::getEntityIds in core/modules/media/src/MediaListBuilder.php
Loads entity IDs using a pager sorted by the entity id.
MenuListBuilder::getEntityIds in core/modules/menu_ui/src/MenuListBuilder.php
Loads entity IDs using a pager sorted by the entity id.
PathAliasListBuilder::getEntityIds in core/modules/path/src/PathAliasListBuilder.php
Loads entity IDs using a pager sorted by the entity id.

File

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

Class

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

Namespace

Drupal\Core\Entity

Code

protected function getEntityIds() {
  return $this
    ->getEntityListQuery()
    ->execute();
}