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

Respond to creation of a new entity translation.

This hook runs once the entity translation has been stored. Note that hook implementations may not alter the stored entity translation data.

Parameters

\Drupal\Core\Entity\EntityInterface $translation: The entity object of the translation just stored.

See also

hook_ENTITY_TYPE_translation_insert()

Related topics

2 functions implement hook_entity_translation_insert()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

entity_test_entity_translation_insert in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_entity_translation_insert().
workspaces_entity_translation_insert in core/modules/workspaces/workspaces.module
Implements hook_entity_translation_insert().
1 invocation of hook_entity_translation_insert()
ContentEntityStorageBase::invokeTranslationHooks in core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php
Checks translation statuses and invokes the related hooks if needed.

File

core/lib/Drupal/Core/Entity/entity.api.php, line 1299
Hooks and documentation related to entities.

Code

function hook_entity_translation_insert(\Drupal\Core\Entity\EntityInterface $translation) {
  $variables = [
    '@language' => $translation
      ->language()
      ->getName(),
    '@label' => $translation
      ->getUntranslated()
      ->label(),
  ];
  \Drupal::logger('example')
    ->notice('The @language translation of @label has just been stored.', $variables);
}