| Versionen | |
|---|---|
| drupal6 – drupal7 | taxonomy_form_term_validate($form, &$form_state) |
Validation handler for the term edit form. Ensure numeric weight values.
modules/
<?php
function taxonomy_form_term_validate($form, &$form_state) {
if (isset($form_state['values']['weight']) && !is_numeric($form_state['values']['weight'])) {
form_set_error('weight', t('Weight value must be numeric.'));
}
}
?>
Kommentare
Kommentar hinzufügen