You are here

abstract protected function ContentEntityStorageBase::doLoadRevisionFieldItems in Drupal 8

Actually loads revision field item values from the storage.

Parameters

int|string $revision_id: The revision identifier.

Return value

\Drupal\Core\Entity\EntityInterface|null The specified entity revision or NULL if not found.

Deprecated

in drupal:8.5.0 and is removed from drupal:9.0.0. \Drupal\Core\Entity\ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems() should be implemented instead.

See also

https://www.drupal.org/node/2924915

1 call to ContentEntityStorageBase::doLoadRevisionFieldItems()
ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems in core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php
Actually loads revision field item values from the storage.
2 methods override ContentEntityStorageBase::doLoadRevisionFieldItems()
ContentEntityNullStorage::doLoadRevisionFieldItems in core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php
Actually loads revision field item values from the storage.
SqlContentEntityStorage::doLoadRevisionFieldItems 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 606

Class

ContentEntityStorageBase
Base class for content entity storage handlers.

Namespace

Drupal\Core\Entity

Code

protected abstract function doLoadRevisionFieldItems($revision_id);