| 6 form.inc | views_process_check_options($element, |
| 7 views.module | views_process_check_options($element, &$form_state) |
#process callback to see if we need to check_plain() the options.
Since FAPI is inconsistent, the #options are sanitized for you in all cases _except_ checkboxes. We have form elements that are sometimes 'select' and sometimes 'checkboxes', so we need decide late in the form rendering cycle if the options need to be sanitized before they're rendered. This callback inspects the type, and if it's still 'checkboxes', does the sanitation.
1 string reference to 'views_process_check_options'
File
- includes/
form.inc, line 294 - form.inc Views' replacements for Drupal's form functions.
Code
function views_process_check_options($element, $edit, &$form_state, &$form) {
if ($element['#type'] == 'checkboxes' || $element['#type'] == 'checkbox') {
$element['#options'] = array_map('check_plain', $element['#options']);
}
return $element;
}
Login or register to post comments