function sliderfield_example_custom_form_validate in SliderField 7.2
Validation function for form_example_tutorial_7().
File
- sliderfield_example/
sliderfield_example.module, line 732 - Module's main file.
Code
function sliderfield_example_custom_form_validate($form, &$form_state) {
/**
* @todo In the first step $form_state['storage']['all'] is not available, it should be fixed
*/
//if ($form_state['storage']['all']['values']['name']['first'] == $form_state['storage']['all']['values']['name']['last']) {
//form_set_error('first', t('First name and last name should not be the same.'));
//}
}