hook_entity_create(\Drupal\Core\Entity\EntityInterface $entity)
Acts when creating a new entity.
This hook runs after a new entity object has just been instantiated.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity object.
See also
Related topics
- Entity CRUD, editing, and view hooks
- Hooks used in various entity operations.
- Hooks
- Define functions that alter the behavior of Drupal core.
File
- core/lib/Drupal/Core/Entity/entity.api.php, line 801
- Hooks and documentation related to entities.
Code
1 2 3 | function hook_entity_create(\Drupal\Core\Entity\EntityInterface $entity ) { \Drupal::logger( 'example' )->info( 'Entity created: @label' , [ '@label' => $entity ->label()]); } |
Please login to continue.