function 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 drupal/modules/simpletest/tests/entity_crud_hook_test.module
Implements hook_entity_load().
rdf_entity_load in drupal/modules/rdf/rdf.module
Implements hook_entity_load().
1 invocation of hook_entity_load()
DrupalDefaultEntityController::attachLoad in drupal/includes/entity.inc
Attaches data to entities upon loading.

File

drupal/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);
  }
}