poll_view_voting_validate

Versions
6 – 7
poll_view_voting_validate($form, &$form_state)

Validation function for processing votes

Code

modules/poll/poll.module, line 585

<?php
function poll_view_voting_validate($form, &$form_state) {
  if ($form_state['values']['choice'] == -1) {
    form_set_error( 'choice', t('Your vote could not be recorded because you did not select any of the choices.'));
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.