Versions | |
---|---|
5 – 6 | theme_checkbox( |
8 – 7 | theme_checkbox($variables) |
Returns HTML for a checkbox form element.
$variables An associative array containing:
includes/
<?php
function theme_checkbox($variables) {
$element = $variables['element'];
$t = get_t();
$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']) . ' />';
}
?>