function mobile_tools_device_group_form_validate in Mobile Tools 7.3
Validation handler for mobile_tools_device_group_from
File
- ./
mobile_tools.admin.inc, line 320 - Adminstrative pages for Mobile Tools
Code
function mobile_tools_device_group_form_validate($form, &$form_state) {
$values = $form_state['values'];
// Check the weight value
if (!is_numeric($values['weight']) || intval($values['weight']) < -50 || intval($values['weight']) > 50) {
form_set_error('weight', t('Weight must be an integer value between -50 and 50'));
}
}