function hook_ENTITY_TYPE_translation_insert
Same name in other branches
- 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_translation_insert()
- 8.9.x core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_translation_insert()
- 10 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_translation_insert()
Respond to creation of a new entity translation of a particular type.
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_translation_insert()
Related topics
File
-
core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 1322
Code
function hook_ENTITY_TYPE_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);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.