1 taxonomy.module taxonomy_node_update(Node $node)

Implements hook_node_update().

Related topics

File

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

Code

function taxonomy_node_update(Node $node) {
  // Always rebuild the node's taxonomy index entries on node save.
  taxonomy_delete_node_index($node);
  taxonomy_build_node_index($node);
}