function theme_checkbox
Same name and namespace in other branches
- 6.x drupal-6.x/includes/form.inc \theme_checkbox()
Returns HTML for a checkbox form element.
Parameters
$variables: An associative array containing:
- element: An associative array containing the properties of the element. Properties used: #title, #value, #return_value, #description, #required, #attributes, #checked.
Related topics
Archivo
- drupal-7.x/
includes/ form.inc, line 3066 - Functions for form and batch generation and processing.
Código
function theme_checkbox($variables) {
$element = $variables['element'];
$element['#attributes']['type'] = 'checkbox';
element_set_attributes($element, array('id', 'name','#return_value' => 'value'));
// Unchecked checkbox has #value of integer 0.
if (!empty($element['#checked'])) {
$element['#attributes']['checked'] = 'checked';
}
_form_set_class($element, array('form-checkbox'));
return '<input' . drupal_attributes($element['#attributes']) . ' />';
}