You are here

function theme_taxonomy_list_term in Taxonomy List 5.2

Same name and namespace in other branches
  1. 5 taxonomy_list.module \theme_taxonomy_list_term()
  2. 6.2 taxonomy_list.module \theme_taxonomy_list_term()
  3. 6 taxonomy_list.module \theme_taxonomy_list_term()
  4. 7 taxonomy_list.module \theme_taxonomy_list_term()

Theme the term.

1 call to theme_taxonomy_list_term()
theme_taxonomy_list_table in ./taxonomy_list.module
Theme a table of the term tree.
2 theme calls to theme_taxonomy_list_term()
theme_taxonomy_list_list in ./taxonomy_list.module
Theme a list of the term tree.
_taxonomy_list_list_children in ./taxonomy_list.module

File

./taxonomy_list.module, line 749
List all terms in a vocabulary.

Code

function theme_taxonomy_list_term($term) {
  $output = '<div class="taxonomy-list-item taxonomy-list-term-' . $term->tid . '">' . $term->image . $term->title . $term->parent_list . $term->counter . $term->links . $term->desc . $term->term_related . $term->term_synonyms . '</div>';
  return $output;
}