function template_preprocess_poll_results

Implements template_preprocess_HOOK() for poll-results.tpl.php.

Parameters

$variables: An associative array containing:

  • raw_title: A string for the title of the poll.
  • results: The results of the poll.
  • votes: The total results in the poll.
  • raw_links: Array containing links in the poll.
  • block: A boolean to define if the poll is a block.
  • nid: The node ID of the poll.
  • vote: The choice number of the current user's vote.

The raw_* inputs to this are naturally unsafe; often safe versions are made to simply overwrite the raw version, but in this case it seems likely that the title and the links may be overridden by the theme layer, so they are left in with a different name for that purpose.

See also

poll-results.tpl.php

poll-results--block.tpl.php

File

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

Code

function template_preprocess_poll_results(&$variables) {
  $variables['links'] = theme('links__poll_results', array(
    'links' => $variables['raw_links'],
  ));
  if (isset($variables['vote']) && $variables['vote'] > -1 && user_access('cancel own vote')) {
    $elements = drupal_get_form('poll_cancel_form', $variables['nid']);
    $variables['cancel_form'] = drupal_render($elements);
  }
  $variables['title'] = check_plain($variables['raw_title']);
}