MDL-19756 Added shortcut to html_select_option to make checkboxes

This commit is contained in:
nicolasconnault
2009-08-06 06:58:14 +00:00
parent bfe5741703
commit 56d72c5e81
2 changed files with 19 additions and 8 deletions
+1 -8
View File
@@ -3393,14 +3393,7 @@ function print_checkbox ($name, $value, $checked = true, $label = '', $alt = '',
debugging('The use of the $script param in print_checkbox has not been migrated into $OUTPUT->checkbox. Please use $checkbox->add_action().', DEBUG_DEVELOPER);
}
$checkbox = new html_select_option();
$checkbox->value = $value;
$checkbox->selected = $checked;
$checkbox->text = $label;
$checkbox->label->text = $label;
$checkbox->alt = $alt;
$output = $OUTPUT->checkbox($checkbox, $name);
$output = $OUTPUT->checkbox(html_select_option::make_checkbox($value, $checked, $label, $alt), $name);
if (empty($return)) {
echo $output;
+18
View File
@@ -4184,6 +4184,24 @@ class html_select_option extends moodle_html_component {
parent::prepare();
}
/**
* Shortcut for making a checkbox-ready option
* @param string $value The value of the checkbox
* @param boolean $checked
* @param string $label
* @param string $alt
* @return html_select_option A component ready for $OUTPUT->checkbox()
*/
public function make_checkbox($value, $checked, $label='', $alt='') {
$checkbox = new html_select_option();
$checkbox->value = $value;
$checkbox->selected = $checked;
$checkbox->text = $label;
$checkbox->label->text = $label;
$checkbox->alt = $alt;
return $checkbox;
}
}
/**