1.20.x taxonomy.module taxonomy_node_predelete(Node $node)

Implements hook_node_predelete().

Related topics

File

modules/taxonomy/taxonomy.module, line 2140
Enables the organization of content into categories.

Code

function taxonomy_node_predelete(Node $node) {
  // Clean up the {taxonomy_index} table when nodes are deleted.
  taxonomy_delete_node_index($node);
}