hook_ENTITY_TYPE_translation_create(\Drupal\Core\Entity\EntityInterface $translation)
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
- 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 1052
- Hooks and documentation related to entities.
Code
1 2 3 | function hook_ENTITY_TYPE_translation_create(\Drupal\Core\Entity\EntityInterface $translation ) { \Drupal::logger( 'example' )->info( 'ENTITY_TYPE translation created: @label' , [ '@label' => $translation ->label()]); } |
Please login to continue.