function hook_ENTITY_TYPE_load
Act on entities of a specific type when loaded.
Parameters
array $entities: The entities keyed by entity ID.
See also
Related topics
File
-
core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 1116
Code
function hook_ENTITY_TYPE_load($entities) : void {
foreach ($entities as $entity) {
$entity->foo = my_module_add_something($entity);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.