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

Respond to entity translation deletion.

This hook runs once the entity translation has been deleted from storage.

Parameters

\Drupal\Core\Entity\EntityInterface $translation: The original entity object.

See also

hook_ENTITY_TYPE_translation_delete()

Related topics

3 functions implement hook_entity_translation_delete()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

content_moderation_entity_translation_delete in core/modules/content_moderation/content_moderation.module
Implements hook_entity_translation_delete().
content_translation_test_entity_translation_delete in core/modules/content_translation/tests/modules/content_translation_test/content_translation_test.module
Implements hook_entity_translation_delete().
entity_test_entity_translation_delete in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_entity_translation_delete().
1 invocation of hook_entity_translation_delete()
ContentEntityStorageBase::invokeTranslationHooks in core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php
Checks translation statuses and invokes the related hooks if needed.

File

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

Code

function hook_entity_translation_delete(\Drupal\Core\Entity\EntityInterface $translation) {
  $variables = [
    '@language' => $translation
      ->language()
      ->getName(),
    '@label' => $translation
      ->label(),
  ];
  \Drupal::logger('example')
    ->notice('The @language translation of @label has just been deleted.', $variables);
}