You are here

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

Performs storage-specific loading of entities.

Override this method to add custom functionality directly after loading. This is always called, while self::postLoad() is only called when there are actual results.

Parameters

array|null $ids: (optional) An array of entity IDs, or NULL to load all entities.

Return value

\Drupal\Core\Entity\EntityInterface[] Associative array of entities, keyed on the entity ID.

Overrides EntityStorageBase::doLoadMultiple

File

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

Class

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

Namespace

Drupal\ctools_entity_mask

Code

protected function doLoadMultiple(array $ids = NULL) {
  return [];
}