Server : Apache System : Linux copper.netcy.com 2.6.32-754.27.1.el6.centos.plus.x86_64 #1 SMP Thu Jan 30 13:54:25 UTC 2020 x86_64 User : montcaro ( 581) PHP Version : 7.4.28 Disable Function : NONE Directory : /home/montcaro/public_html/modules/poll/ |
<?php /** * @file * 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 template_preprocess_poll_vote() * * @ingroup themeable */ ?> <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>