Same name and namespace in other branches
  1. 4.6.x modules/taxonomy.module \_taxonomy_get_tid_from_term()
  2. 4.7.x modules/taxonomy.module \_taxonomy_get_tid_from_term()
  3. 5.x modules/taxonomy/taxonomy.module \_taxonomy_get_tid_from_term()
  4. 6.x modules/taxonomy/taxonomy.module \_taxonomy_get_tid_from_term()

Helper function for array_map purposes.

File

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

Code

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