You are here

function taxonomy_breadcrumb_taxonomy_term_delete in Taxonomy Breadcrumb 7

Same name and namespace in other branches
  1. 8 taxonomy_breadcrumb.module \taxonomy_breadcrumb_taxonomy_term_delete()

Implements hook_taxonomy_term_delete().

File

./taxonomy_breadcrumb.module, line 266
The taxonomy_breadcrumb module generates taxonomy based breadcrumbs on node pages and taxonomy/term pages. The breadcrumb trail takes on the form: [HOME] >> [VOCABULARY] >> TERM >> [TERM] ...

Code

function taxonomy_breadcrumb_taxonomy_term_delete($term) {
  taxonomy_breadcrumb_taxonomy('delete', 'term', $term);
}