function poll_vote

Form submission handler for poll_view_voting().

See also

poll_view_voting_validate()

1 string reference to 'poll_vote'
poll_view_voting in drupal/core/modules/poll/poll.module
Form constructor for the poll voting form.

File

drupal/core/modules/poll/poll.module, line 773
Collects votes on different topics in the form of multiple choice questions.

Code

function poll_vote($form, &$form_state) {
  $node = $form['#node'];
  $choice = $form_state['values']['choice'];
  global $user;
  db_insert('poll_vote')
    ->fields(array(
    'nid' => $node->nid,
    'chid' => $choice,
    'uid' => $user->uid,
    'hostname' => ip_address(),
    'timestamp' => REQUEST_TIME,
  ))
    ->execute();

  // Add one to the votes.
  db_update('poll_choice')
    ->expression('chvotes', 'chvotes + 1')
    ->condition('chid', $choice)
    ->execute();
  cache_invalidate_tags(array(
    'content' => TRUE,
  ));
  if (!$user->uid) {

    // The vote is recorded so the user gets the result view instead of the
    // voting form when viewing the poll. Saving a value in $_SESSION has the
    // convenient side effect of preventing the user from hitting the page
    // cache. When anonymous voting is allowed, the page cache should only
    // contain the voting form, not the results.
    $_SESSION['poll_vote'][$node->nid] = $choice;
  }
  drupal_set_message(t('Your vote was recorded.'));

  // Return the user to whatever page they voted from.
}