function _taxonomy_get_tid_from_term

Same name and namespace in other branches
  1. 6.x drupal-6.x/modules/taxonomy/taxonomy.module \_taxonomy_get_tid_from_term()

Helper function for array_map purposes.

Archivo

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

Código

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