function image_example_style_form_validate in Examples for Developers 7
Verifies that the user supplied an image with the form..
Related topics
File
- image_example/
image_example.pages.inc, line 68 - Page/form showing image styles in use.
Code
function image_example_style_form_validate($form, &$form_state) {
if (!isset($form_state['values']['image_example_image_fid']) || !is_numeric($form_state['values']['image_example_image_fid'])) {
form_set_error('image_example_image_fid', t('Please select an image to upload.'));
}
}