| Versionen | |
|---|---|
| drupal6 | filter_form_validate($form) |
Validation callback for filter elements in a form.
filter_form().
modules/
<?php
function filter_form_validate($form) {
foreach (element_children($form) as $key) {
if ($form[$key]['#value'] == $form[$key]['#return_value']) {
return;
}
}
form_error($form, t('An illegal choice has been detected. Please contact the site administrator.'));
watchdog('form', 'Illegal choice %choice in %name element.', array('%choice' => $form[$key]['#value'], '%name' => empty($form['#title']) ? $form['#parents'][0] : $form['#title']), WATCHDOG_ERROR);
}
?>
Kommentare
Kommentar hinzufügen