function taxonomy_node_insert in Drupal 7
Same name and namespace in other branches
- 8 core/modules/taxonomy/taxonomy.module \taxonomy_node_insert()
- 9 core/modules/taxonomy/taxonomy.module \taxonomy_node_insert()
- 10 core/modules/taxonomy/taxonomy.module \taxonomy_node_insert()
Implements hook_node_insert().
Related topics
File
- modules/
taxonomy/ taxonomy.module, line 1916 - Enables the organization of content into categories.
Code
function taxonomy_node_insert($node) {
// Add taxonomy index entries for the node.
taxonomy_build_node_index($node);
}