function _taxonomy_get_tid_from_term

Helper function for array_map purposes.

File

drupal/core/modules/taxonomy/taxonomy.module, line 972
Enables the organization of content into categories.

Code

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