poll-results.tpl.php 789 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display the poll results in a block.
  5. *
  6. * Variables available:
  7. * - $title: The title of the poll.
  8. * - $results: The results of the poll.
  9. * - $votes: The total results in the poll.
  10. * - $links: Links in the poll.
  11. * - $nid: The nid of the poll
  12. * - $cancel_form: A form to cancel the user's vote, if allowed.
  13. * - $raw_links: The raw array of links.
  14. * - $vote: The choice number of the current user's vote.
  15. *
  16. * @see template_preprocess_poll_results()
  17. *
  18. * @ingroup themeable
  19. */
  20. ?>
  21. <div class="poll">
  22. <?php print $results; ?>
  23. <div class="total">
  24. <?php print t('Total votes: @votes', array('@votes' => $votes)); ?>
  25. </div>
  26. <?php if (!empty($cancel_form)): ?>
  27. <?php print $cancel_form; ?>
  28. <?php endif; ?>
  29. </div>