function contact_site_form_validate

contact_site_form_validate($form, &$form_state)

Form validation handler for contact_site_form().

See also

contact_site_form_submit()

File

modules/contact/contact.pages.inc, line 119
Page callbacks for the Contact module.

Code

function contact_site_form_validate($form, &$form_state) {
  if (!$form_state['values']['cid']) {
    form_set_error('cid', t('You must select a valid category.'));
  }
  if (!valid_email_address($form_state['values']['mail'])) {
    form_set_error('mail', t('You must enter a valid e-mail address.'));
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!contact!contact.pages.inc/function/contact_site_form_validate/7.x