function theme_taxonomy_term_select

6.x taxonomy.module theme_taxonomy_term_select($element)

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 drupal-6.x/modules/taxonomy/taxonomy.module
Create a select form element for a given taxonomy vocabulary.

File

drupal-6.x/modules/taxonomy/taxonomy.module, line 1161
Enables the organization of content into categories.

Code

function theme_taxonomy_term_select($element) {
  return theme('select', $element);
}