function hook_entity_translation_create in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_translation_create()
- 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_translation_create()
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
3 functions implement hook_entity_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_translation_create in core/
modules/ system/ tests/ modules/ entity_test/ entity_test.module - Implements hook_entity_translation_create().
- layout_builder_entity_translation_create in core/
modules/ layout_builder/ layout_builder.module - Implements hook_entity_translation_create().
- path_entity_translation_create in core/
modules/ path/ path.module - Implements hook_entity_translation_create().
1 invocation of hook_entity_translation_create()
- ContentEntityStorageBase::createTranslation in core/
lib/ Drupal/ Core/ Entity/ ContentEntityStorageBase.php - Constructs a new entity translation object, without permanently saving it.
File
- core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 1240 - 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(),
]);
}