1 taxonomy.module _taxonomy_get_tid_from_term(TaxonomyTerm $term)

Helper function for array_map purposes.

File

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

Code

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