You are here

function taxonomy_menu_block_entity_delete in Taxonomy menu block 7

Implements hook_entity_delete().

File

./taxonomy_menu_block.module, line 874
Taxonomy Menu Block module allows you to make menu blocks out of your taxonomies in a very performant way.

Code

function taxonomy_menu_block_entity_delete($entity, $type) {
  switch ($type) {
    case 'taxonomy_vocabulary':
    case 'taxonomy_term':

      // Clear cache for this vocabulary.
      cache_clear_all('taxonomy_menu_block-' . $entity->vid, 'cache', TRUE);
      break;
  }
}