theme_taxonomy_term_select

Definition

theme_taxonomy_term_select($element)
modules/taxonomy/taxonomy.module, line 1056

Description

Format the selection field for choosing terms (by deafult the default selection field is used).

Related topics

Namesort iconDescription
Default theme implementationsFunctions and templates that present output to the user, and can be implemented by themes.

Code

<?php
function theme_taxonomy_term_select($element) {
  return theme('select', $element);
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.