hook_ENTITY_TYPE_storage_load(array $entities)
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
Related topics
- Hooks
- Define functions that alter the behavior of Drupal core.
File
- core/lib/Drupal/Core/Entity/entity.api.php, line 886
- Hooks and documentation related to entities.
Code
function hook_ENTITY_TYPE_storage_load(array $entities) { foreach ($entities as $entity) { $entity->foo = mymodule_add_something_uncached($entity); } }
Please login to continue.