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
1 2 3 4 5 6 7 8 9 10 | 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(); } |
Please login to continue.