hook_ENTITY_TYPE_create

hook_ENTITY_TYPE_create(\Drupal\Core\Entity\EntityInterface $entity)

Acts when creating a new entity of a specific type.

This hook runs after a new entity object has just been instantiated.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity object.

See also

hook_entity_create()

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 816
Hooks and documentation related to entities.

Code

function hook_ENTITY_TYPE_create(\Drupal\Core\Entity\EntityInterface $entity) {
  \Drupal::logger('example')->info('ENTITY_TYPE created: @label', ['@label' => $entity->label()]);
}
doc_Drupal
2016-10-29 09:18:03
Comments
Leave a Comment

Please login to continue.