function hook_ENTITY_TYPE_translation_create

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

Acts when creating a new entity translation of a specific type.

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

Parameters

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

See also

hook_entity_translation_create()

Related topics

File

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

Code

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

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