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

Act on entities when loaded.

This is a generic load hook called for all entity types loaded via the entity API.

Parameters

$entities: The entities keyed by entity ID.

$type: The type of entities being loaded (i.e. node, user, comment).

Related topics

2 functions implement hook_entity_load()

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

entity_crud_hook_test_entity_load in modules/simpletest/tests/entity_crud_hook_test.module
Implements hook_entity_load().
rdf_entity_load in modules/rdf/rdf.module
Implements hook_entity_load().
1 invocation of hook_entity_load()
DrupalDefaultEntityController::attachLoad in includes/entity.inc
Attaches data to entities upon loading.

File

modules/system/system.api.php, line 302
Hooks provided by Drupal core and the System module.

Code

function hook_entity_load($entities, $type) {
  foreach ($entities as $entity) {
    $entity->foo = mymodule_add_something($entity, $type);
  }
}