function 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
File
-
core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 1396
Code
function hook_ENTITY_TYPE_translation_delete(\Drupal\Core\Entity\EntityInterface $translation) : void {
$variables = [
'@language' => $translation->language()
->getName(),
'@label' => $translation->label(),
];
\Drupal::logger('example')->notice('The @language translation of @label has just been deleted.', $variables);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.