mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2025-09-04 08:28:55 +00:00
Initial commit
This commit is contained in:
commit
c5e731d8ae
2773 changed files with 600767 additions and 0 deletions
31
drupal7/web/modules/poll/poll-vote.tpl.php
Normal file
31
drupal7/web/modules/poll/poll-vote.tpl.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?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>
|
Loading…
Add table
Add a link
Reference in a new issue