function theme_taxonomy_term_select in Drupal 6
Same name and namespace in other branches
- 4 modules/taxonomy.module \theme_taxonomy_term_select()
- 5 modules/taxonomy/taxonomy.module \theme_taxonomy_term_select()
Format the selection field for choosing terms (by deafult the default selection field is used).
Related topics
1 theme call to theme_taxonomy_term_select()
- _taxonomy_term_select in modules/
taxonomy/ taxonomy.module - Create a select form element for a given taxonomy vocabulary.
File
- modules/
taxonomy/ taxonomy.module, line 1161 - Enables the organization of content into categories.
Code
function theme_taxonomy_term_select($element) {
return theme('select', $element);
}