You are here

function taxonomy_breadcrumb_taxonomy_term_insert in Taxonomy Breadcrumb 7

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

Implements hook_taxonomy_term_insert().

File

./taxonomy_breadcrumb.module, line 259
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_insert($term) {
  taxonomy_breadcrumb_taxonomy('insert', 'term', $term);
}