function img_assist_admin_settings_validate in Image Assist 6.2
Same name and namespace in other branches
- 5.3 img_assist.module \img_assist_admin_settings_validate()
- 5 img_assist.module \img_assist_admin_settings_validate()
- 5.2 img_assist.module \img_assist_admin_settings_validate()
- 6 img_assist.module \img_assist_admin_settings_validate()
Validate Image Assist settings.
File
- ./
img_assist.module, line 476 - Image Assist module
Code
function img_assist_admin_settings_validate($form, &$form_state) {
// img_assist_max_size must contain a value for width and height.
if (!preg_match('/\\d+x\\d+/', $form_state['values']['img_assist_max_size'])) {
form_set_error('img_assist_max_size', t('Allowed maximum inline image size has to indicate width and height, for example %example.', array(
'%example' => '200x300',
)));
}
}