function _taxonomy_get_tid_from_term in Drupal 4
Same name and namespace in other branches
- 5 modules/taxonomy/taxonomy.module \_taxonomy_get_tid_from_term()
- 6 modules/taxonomy/taxonomy.module \_taxonomy_get_tid_from_term()
- 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.module - Finds all nodes that match selected taxonomy conditions.
File
- modules/
taxonomy.module, line 1334 - Enables the organization of content into categories.
Code
function _taxonomy_get_tid_from_term($term) {
return $term->tid;
}