poll-vote.tpl.php

  1. 7.x drupal-7.x/modules/poll/poll-vote.tpl.php
  2. 6.x drupal-6.x/modules/poll/poll-vote.tpl.php

Default theme implementation to display voting form for a poll.

  • $choice: The radio buttons for the choices in the poll.
  • $title: The title of the poll.
  • $block: True if this is being displayed as a block.
  • $vote: The vote button
  • $rest: Anything else in the form that may have been added via form_alter hooks.

See also

template_preprocess_poll_vote()

1 theme call to poll-vote.tpl.php
poll_view_voting in drupal-7.x/modules/poll/poll.module
Generates the voting form for a poll.

File

drupal-7.x/modules/poll/poll-vote.tpl.php
View source
  1. <?php
  2. /**
  3. * @file
  4. * Default theme implementation to display voting form for a poll.
  5. *
  6. * - $choice: The radio buttons for the choices in the poll.
  7. * - $title: The title of the poll.
  8. * - $block: True if this is being displayed as a block.
  9. * - $vote: The vote button
  10. * - $rest: Anything else in the form that may have been added via
  11. * form_alter hooks.
  12. *
  13. * @see template_preprocess_poll_vote()
  14. *
  15. * @ingroup themeable
  16. */
  17. ?>
  18. <div class="poll">
  19. <div class="vote-form">
  20. <div class="choices">
  21. <?php if ($block): ?>
  22. <div class="title"><?php print $title; ?></div>
  23. <?php endif; ?>
  24. <?php print $choice; ?>
  25. </div>
  26. <?php print $vote; ?>
  27. </div>
  28. <?php // This is the 'rest' of the form, in case items have been added. ?>
  29. <?php print $rest ?>
  30. </div>

Related topics