abstract protected function ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php \Drupal\Core\Entity\ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems()
Actually loads revision field item values from the storage.
Parameters
array $revision_ids: An array of revision identifiers.
Return value
\Drupal\Core\Entity\EntityInterface[] The specified entity revisions or an empty array if none are found.
1 call to ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems()
- ContentEntityStorageBase::loadMultipleRevisions in core/
lib/ Drupal/ Core/ Entity/ ContentEntityStorageBase.php - Loads multiple entity revisions.
2 methods override ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems()
- ContentEntityNullStorage::doLoadMultipleRevisionsFieldItems in core/
lib/ Drupal/ Core/ Entity/ ContentEntityNullStorage.php - Actually loads revision field item values from the storage.
- SqlContentEntityStorage::doLoadMultipleRevisionsFieldItems in core/
lib/ Drupal/ Core/ Entity/ Sql/ SqlContentEntityStorage.php - Actually loads revision field item values from the storage.
File
- core/
lib/ Drupal/ Core/ Entity/ ContentEntityStorageBase.php, line 589
Class
- ContentEntityStorageBase
- Base class for content entity storage handlers.
Namespace
Drupal\Core\EntityCode
protected abstract function doLoadMultipleRevisionsFieldItems($revision_ids);