You are here

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

Actually loads revision field item values from the storage.

This method should always be overridden and not called either directly or from parent::doLoadMultipleRevisionsFieldItems. It will be marked abstract in drupal:9.0.0

@todo Remove this logic and make the method abstract in https://www.drupal.org/project/drupal/issues/3069696

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 [];
}