function taxonomy_term_show
Generates an array which displays a term detail page.
Parameters
term: A taxonomy term object.
Return value
A $page element suitable for use by drupal_page_render().
Archivo
- drupal-7.x/
modules/ taxonomy/ taxonomy.module, line 753 - Enables the organization of content into categories.
Código
function taxonomy_term_show($term) {
return taxonomy_term_view_multiple(array($term->tid => $term), 'full');
}