function _taxonomy_get_tid_from_term

7.x taxonomy.module _taxonomy_get_tid_from_term($term)
6.x taxonomy.module _taxonomy_get_tid_from_term($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.

File

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

Code

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