Mercurial > defr > drupal > core
view modules/poll/poll-vote.tpl.php @ 1:c1f4ac30525a 6.0
Drupal 6.0
author | Franck Deroche <webmaster@defr.org> |
---|---|
date | Tue, 23 Dec 2008 14:28:28 +0100 |
parents | |
children |
line wrap: on
line source
<?php // $Id: poll-vote.tpl.php,v 1.2 2007/08/07 08:39:35 goba Exp $ /** * @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>