You are here

public function ConfigEntityStorageDecorator::loadMultipleOverrideFree in Devel 4.x

Same name and namespace in other branches
  1. 8.3 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::loadMultipleOverrideFree()
  2. 8 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::loadMultipleOverrideFree()
  3. 8.2 webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php \Drupal\webprofiler\Entity\Decorators\Config\ConfigEntityStorageDecorator::loadMultipleOverrideFree()

Loads one or more entities in their original form without overrides.

Parameters

$ids: An array of entity IDs, or NULL to load all entities.

Return value

\Drupal\Core\Entity\EntityInterface[] An array of entity objects indexed by their IDs. Returns an empty array if no matching entities are found.

Overrides ConfigEntityStorageInterface::loadMultipleOverrideFree

File

webprofiler/src/Entity/Decorators/Config/ConfigEntityStorageDecorator.php, line 178

Class

ConfigEntityStorageDecorator
Class ConfigEntityStorageDecorator.

Namespace

Drupal\webprofiler\Entity\Decorators\Config

Code

public function loadMultipleOverrideFree(array $ids = NULL) {
  return $this
    ->getOriginalObject()
    ->loadMultipleOverrideFree($ids);
}