function taxonomy_node_delete
Same name and namespace in other branches
- 6.x drupal-6.x/modules/taxonomy/taxonomy.module \taxonomy_node_delete()
Implements hook_node_delete().
Related topics
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.module, line 1987 - Enables the organization of content into categories.
Código
function taxonomy_node_delete($node) {
// Clean up the {taxonomy_index} table when nodes are deleted.
taxonomy_delete_node_index($node);
}