protected function EntityListBuilder::getEntityIds in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/EntityListBuilder.php \Drupal\Core\Entity\EntityListBuilder::getEntityIds()
- 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.
4 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.
- 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 96
Class
- EntityListBuilder
- Defines a generic implementation to build a listing of entities.
Namespace
Drupal\Core\EntityCode
protected function getEntityIds() {
$query = $this
->getStorage()
->getQuery()
->accessCheck(TRUE)
->sort($this->entityType
->getKey('id'));
// Only add the pager if a limit is specified.
if ($this->limit) {
$query
->pager($this->limit);
}
return $query
->execute();
}