hook_entity_translation_delete(\Drupal\Core\Entity\EntityInterface $translation)
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
- 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 1107
- Hooks and documentation related to entities.
Code
1 2 3 4 5 6 7 | function hook_entity_translation_delete(\Drupal\Core\Entity\EntityInterface $translation ) { $variables = array ( '@language' => $translation ->language()->getName(), '@label' => $translation ->label(), ); \Drupal::logger( 'example' )->notice( 'The @language translation of @label has just been deleted.' , $variables ); } |
Please login to continue.