W3cubDocs

/Drupal 8

function hook_entity_translation_create

hook_entity_translation_create(\Drupal\Core\Entity\EntityInterface $translation)

Acts when creating a new entity translation.

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_TYPE_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 1027
Hooks and documentation related to entities.

Code

function hook_entity_translation_create(\Drupal\Core\Entity\EntityInterface $translation) {
  \Drupal::logger('example')->info('Entity translation created: @label', ['@label' => $translation->label()]);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Entity!entity.api.php/function/hook_entity_translation_create/8.1.x