function theme_select in Drupal 4
Same name and namespace in other branches
- 5 includes/form.inc \theme_select()
- 6 includes/form.inc \theme_select()
- 7 includes/form.inc \theme_select()
Format a dropdown menu or scrolling selection box.
Parameters
$element: An associative array containing the properties of the element. Properties used: title, value, options, description, extra, multiple, required
Return value
A themed HTML string representing the form element.
It is possible to group options together; to do this, change the format of $options to an associative array in which the keys are group labels, and the values are associative arrays in the normal $options format.
Related topics
1 theme call to theme_select()
- theme_taxonomy_term_select in modules/
taxonomy.module
File
- includes/
form.inc, line 654
Code
function theme_select($element) {
$select = '';
$size = $element['#size'] ? ' size="' . $element['#size'] . '"' : '';
_form_set_class($element, array(
'form-select',
));
return theme('form_element', $element['#title'], '<select name="' . $element['#name'] . '' . ($element['#multiple'] ? '[]' : '') . '"' . ($element['#multiple'] ? ' multiple="multiple" ' : '') . drupal_attributes($element['#attributes']) . ' id="' . $element['#id'] . '" ' . $size . '>' . form_select_options($element) . '</select>', $element['#description'], $element['#id'], $element['#required'], form_get_error($element));
}