You are here

function hook_ENTITY_TYPE_translation_delete in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/entity.api.php \hook_ENTITY_TYPE_translation_delete()

Respond to entity translation deletion of a particular type.

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_translation_delete()

Related topics

7 functions implement hook_ENTITY_TYPE_translation_delete()

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_delete in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_delete().
entity_test_entity_test_mulrev_translation_delete in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_delete() for 'entity_test_mulrev'.
entity_test_entity_test_mul_changed_translation_delete in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_delete().
entity_test_entity_test_mul_langcode_key_translation_delete in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_delete() for 'entity_test_mul_langcode_key'.
entity_test_entity_test_mul_translation_delete in core/modules/system/tests/modules/entity_test/entity_test.module
Implements hook_ENTITY_TYPE_translation_delete() for 'entity_test_mul'.

... See full list

File

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

Code

function hook_ENTITY_TYPE_translation_delete(\Drupal\Core\Entity\EntityInterface $translation) {
  $languages = \Drupal::languageManager()
    ->getLanguages();
  $variables = array(
    '@language' => $languages[$langcode]->name,
    '@label' => $entity
      ->label(),
  );
  \Drupal::logger('example')
    ->notice('The @language translation of @label has just been deleted.', $variables);
}