You are here

protected function MaskContentEntityStorage::doLoadRevisionFieldItems in Chaos Tool Suite (ctools) 8.3

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.

Overrides ContentEntityStorageBase::doLoadRevisionFieldItems

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

File

modules/ctools_entity_mask/src/MaskContentEntityStorage.php, line 31

Class

MaskContentEntityStorage
Storage handler that simulates a full save, without writing to the database.

Namespace

Drupal\ctools_entity_mask

Code

protected function doLoadRevisionFieldItems($revision_id) {
  return NULL;
}