function path_taxonomy_term_delete
Implements hook_taxonomy_term_delete().
Archivo
- drupal-7.x/
modules/ path/ path.module, line 310 - Enables users to rename URLs.
Código
function path_taxonomy_term_delete($term) {
// Delete all aliases associated with this term.
path_delete(array('source' => 'taxonomy/term/' . $term->tid));
}