function taxonomy_node_update

Same name in other branches
  1. 9 core/modules/taxonomy/taxonomy.module \taxonomy_node_update()
  2. 8.9.x core/modules/taxonomy/taxonomy.module \taxonomy_node_update()
  3. 10 core/modules/taxonomy/taxonomy.module \taxonomy_node_update()
  4. 11.x core/modules/taxonomy/taxonomy.module \taxonomy_node_update()

Implements hook_node_update().

Related topics

File

modules/taxonomy/taxonomy.module, line 1993

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.