diff options
Diffstat (limited to 'modules/poll/poll-vote.tpl.php')
-rw-r--r-- | modules/poll/poll-vote.tpl.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/modules/poll/poll-vote.tpl.php b/modules/poll/poll-vote.tpl.php new file mode 100644 index 000000000..f3b4a407b --- /dev/null +++ b/modules/poll/poll-vote.tpl.php @@ -0,0 +1,29 @@ +<?php +// $Id$ +/** + * @file poll-vote.tpl.php + * 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 template_preprocess_poll_vote() + */ +?> +<div class="poll"> + <div class="vote-form"> + <div class="choices"> + <?php if ($block): ?> + <div class="title"><?php print $title; ?>:</div> + <?php endif; ?> + <?php print $choice; ?> + </div> + <?php print $vote; ?> + </div> + <?php // This is the 'rest' of the form, in case items have been added. ?> + <?php print $rest ?> +</div> |