function _taxonomy_get_tid_from_term

Same name and namespace in other branches
  1. 7.x drupal-7.x/modules/taxonomy/taxonomy.module \_taxonomy_get_tid_from_term()

Helper function for array_map purposes.

1 string reference to '_taxonomy_get_tid_from_term'
taxonomy_select_nodes in drupal-6.x/modules/taxonomy/taxonomy.module
Finds all nodes that match selected taxonomy conditions.

Archivo

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

Código

function _taxonomy_get_tid_from_term($term) {
  return $term->tid;
}