You are here

abstract protected function ContentEntityStorageBase::doLoadRevisionFieldItems in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php \Drupal\Core\Entity\ContentEntityStorageBase::doLoadRevisionFieldItems()

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.

1 call to ContentEntityStorageBase::doLoadRevisionFieldItems()
ContentEntityStorageBase::loadRevision in core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php
Load a specific entity revision.
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 244
Contains \Drupal\Core\Entity\ContentEntityStorageBase.

Class

ContentEntityStorageBase
Base class for content entity storage handlers.

Namespace

Drupal\Core\Entity

Code

protected abstract function doLoadRevisionFieldItems($revision_id);