function taxonomy_term_uri

Implements callback_entity_info_uri().

1 string reference to 'taxonomy_term_uri'
taxonomy_entity_info in drupal/modules/taxonomy/taxonomy.module
Implements hook_entity_info().

File

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

Code

function taxonomy_term_uri($term) {
  return array(
    'path' => 'taxonomy/term/' . $term->tid,
  );
}