1 taxonomy.module taxonomy_node_insert(Node $node)

Implements hook_node_insert().

Related topics

File

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

Code

function taxonomy_node_insert(Node $node) {
  // Add taxonomy index entries for the node.
  taxonomy_build_node_index($node);
}