You are here

function taxonomy_menu_taxonomy_term_delete in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 modules/taxonomy_menu/taxonomy_menu.module \taxonomy_menu_taxonomy_term_delete()

Implements hook_entity_delete().

Check for taxonomy term deletion.

File

modules/taxonomy_menu/taxonomy_menu.module, line 22
Contains taxonomy_menu.module.

Code

function taxonomy_menu_taxonomy_term_delete(Drupal\Core\Entity\EntityInterface $entity) {
  \Drupal::service('taxonomy_menu.helper')
    ->removeTaxonomyMenuEntries($entity, FALSE);
}