function hook_entity_translation_insert in Drupal 9
Same name and namespace in other branches
- 8 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
1 function implements 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().
1 invocation of hook_entity_translation_insert()
- ContentEntityStorageBase::invokeTranslationHooks in core/
lib/ Drupal/ Core/ Entity/ ContentEntityStorageBase.php - Checks translation statuses and invoke the related hooks if needed.
File
- core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 1263 - 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);
}