function MaskContentEntityStorage::doLoadMultipleRevisionsFieldItems

Same name and namespace in other branches
  1. 8.x-3.x modules/ctools_entity_mask/src/MaskContentEntityStorage.php \Drupal\ctools_entity_mask\MaskContentEntityStorage::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.

Overrides ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems

File

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

Class

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

Namespace

Drupal\ctools_entity_mask

Code

protected function doLoadMultipleRevisionsFieldItems($revision_ids) {
  return [];
}