function theme_taxonomy_term_select in Drupal 5
Same name and namespace in other branches
- 4 modules/taxonomy.module \theme_taxonomy_term_select()
- 6 modules/taxonomy/taxonomy.module \theme_taxonomy_term_select()
We use the default selection field for choosing terms.
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 1240 - Enables the organization of content into categories.
Code
function theme_taxonomy_term_select($element) {
return theme('select', $element);
}