Same name and namespace in other branches
  1. 7.x modules/poll/poll.module \template_preprocess_poll_vote()

Themes the voting form for a poll.

Inputs: $form

File

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

Code

function template_preprocess_poll_vote(&$variables) {
  $form = $variables['form'];
  $variables['choice'] = drupal_render($form['choice']);
  $variables['title'] = check_plain($form['#node']->title);
  $variables['vote'] = drupal_render($form['vote']);
  $variables['rest'] = drupal_render($form);
  $variables['block'] = $form['#block'];

  // If this is a block, allow a different tpl.php to be used.
  if ($variables['block']) {
    $variables['template_files'][] = 'poll-vote-block';
  }
}