function taxonomy_node_insert

Implements hook_node_insert().

Related topics

Archivo

drupal-7.x/modules/taxonomy/taxonomy.module, line 1901
Enables the organization of content into categories.

Código

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