hook_entity_translation_insert(\Drupal\Core\Entity\EntityInterface $translation)
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
- Entity CRUD, editing, and view hooks
- Hooks used in various entity operations.
- Hooks
- Define functions that alter the behavior of Drupal core.
File
- core/lib/Drupal/Core/Entity/entity.api.php, line 1068
- Hooks and documentation related to entities.
Code
function hook_entity_translation_insert(\Drupal\Core\Entity\EntityInterface $translation) { $variables = array( '@language' => $translation->language()->getName(), '@label' => $translation->getUntranslated()->label(), ); \Drupal::logger('example')->notice('The @language translation of @label has just been stored.', $variables); }
Please login to continue.