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

Act on entities of a specific type when loaded.

Parameters

array $entities: The entities keyed by entity ID.

See also

hook_entity_load()

Related topics

23 functions implement hook_ENTITY_TYPE_load()

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

book_node_load in core/modules/book/book.module
Implements hook_ENTITY_TYPE_load() for node entities.
comment_entity_storage_load in core/modules/comment/comment.module
Implements hook_entity_storage_load().
config_entity_static_cache_test_config_test_load in core/modules/config/tests/config_entity_static_cache_test/config_entity_static_cache_test.module
Implements hook_ENTITY_TYPE_load() for 'static_cache_test_config_test'.
config_test_config_test_load in core/modules/config/tests/config_test/config_test.hooks.inc
Implements hook_config_test_load().
editor_post_update_image_lazy_load in core/modules/editor/editor.post_update.php
Enable filter_image_lazy_load if editor_file_reference is enabled.

... See full list

File

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

Code

function hook_ENTITY_TYPE_load($entities) {
  foreach ($entities as $entity) {
    $entity->foo = my_module_add_something($entity);
  }
}