function poll_cancel_form

poll_cancel_form($form, &$form_state, $nid)

Builds the cancel form for a poll.

See also

poll_cancel()

Related topics

File

modules/poll/poll.module, line 936
Enables your site to capture votes on different topics in the form of multiple choice questions.

Code

function poll_cancel_form($form, &$form_state, $nid) {
  $form_state['cache'] = TRUE;

  // Store the nid so we can get to it in submit functions.
  $form['#nid'] = $nid;

  $form['actions'] = array('#type' => 'actions');
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Cancel your vote'),
    '#submit' => array('poll_cancel')
  );

  return $form;
}

© 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!poll!poll.module/function/poll_cancel_form/7.x