Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_storage_load()
  2. 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_storage_load()

Act on content entities of a given type when loaded from the storage.

The results of this hook will be cached if the entity type supports it.

Parameters

\Drupal\Core\Entity\EntityInterface[] $entities: The entities keyed by entity ID.

See also

hook_entity_storage_load()

Related topics

2 functions implement hook_ENTITY_TYPE_storage_load()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

comment_entity_storage_load in core/modules/comment/comment.module
Implements hook_entity_storage_load().
forum_node_storage_load in core/modules/forum/forum.module
Implements hook_ENTITY_TYPE_storage_load() for node entities.

File

core/lib/Drupal/Core/Entity/entity.api.php, line 1117
Hooks and documentation related to entities.

Code

function hook_ENTITY_TYPE_storage_load(array $entities) {
  foreach ($entities as $entity) {
    $entity->foo = my_module_add_something_uncached($entity);
  }
}