function taxonomy_form_term_validate
Same name and namespace in other branches
- 7.x drupal-7.x/modules/taxonomy/taxonomy.admin.inc \taxonomy_form_term_validate()
Validation handler for the term edit form. Ensure numeric weight values.
See also
Archivo
- drupal-6.x/
modules/ taxonomy/ taxonomy.admin.inc, line 736 - Administrative page callbacks for the taxonomy module.
Código
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.'));
}
}