You are here

function signup_pane_example_form_validate in Signup 6.2

Form validation function for our signup pane.

This function should be of the form PANECALLBACK_validate.

File

modules/signup_pane_example/signup_pane_example.module, line 91
signup_pane_example.module A very simple example signup pane module.

Code

function signup_pane_example_form_validate($element, &$form_state) {

  /*
  // Example validation code:
  if ($form_state['values']['signup_form_data']['example']['favorite_color'] != 'blue') {
    form_set_error('signup_form_data][example][favorite_color', t('Favourite colour must be blue.'));
  }
  */
}