W3cubDocs

/Drupal 8

abstract protected function EntityStorageBase::doLoadMultiple

abstract protected EntityStorageBase::doLoadMultiple(array $ids = NULL)

Performs storage-specific loading of entities.

Override this method to add custom functionality directly after loading. This is always called, while self::postLoad() is only called when there are actual results.

Parameters

array|null $ids: (optional) An array of entity IDs, or NULL to load all entities.

Return value

\Drupal\Core\Entity\EntityInterface[] Associative array of entities, keyed on the entity ID.

File

core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 287

Class

EntityStorageBase
A base entity storage class.

Namespace

Drupal\Core\Entity

Code

abstract protected function doLoadMultiple(array $ids = NULL);

© 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!EntityStorageBase.php/function/EntityStorageBase::doLoadMultiple/8.1.x