function hook_ENTITY_TYPE_create

Same name and namespace in other branches
  1. 10 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_create()
  2. 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_create()
  3. 8.9.x core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_create()
  4. main core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_create()

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

File

core/lib/Drupal/Core/Entity/entity.api.php, line 976

Code

function hook_ENTITY_TYPE_create(\Drupal\Core\Entity\EntityInterface $entity) : void {
  \Drupal::logger('example')->info('ENTITY_TYPE created: @label', [
    '@label' => $entity->label(),
  ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.