Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_translation_create()
  2. 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_translation_create()

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

8 functions implement hook_ENTITY_TYPE_translation_create()

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_test_mulrev_changed_translation_create in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_create() for 'entity_test_mulrev_changed'.
entity_test_entity_test_mulrev_translation_create in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_create().
entity_test_entity_test_mul_changed_translation_create in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_create() for 'entity_test_mul_changed'.
entity_test_entity_test_mul_langcode_key_translation_create in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_create() for 'entity_test_mul_langcode_key'.
entity_test_entity_test_mul_translation_create in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_create() for 'entity_test_mul'.

... See full list

File

core/lib/Drupal/Core/Entity/entity.api.php, line 1283
Hooks and documentation related to entities.

Code

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