You are here

function _taxonomy_get_tid_from_term in Drupal 5

Same name and namespace in other branches
  1. 4 modules/taxonomy.module \_taxonomy_get_tid_from_term()
  2. 6 modules/taxonomy/taxonomy.module \_taxonomy_get_tid_from_term()
  3. 7 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 modules/taxonomy/taxonomy.module
Finds all nodes that match selected taxonomy conditions.

File

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

Code

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