source: sipes/cord/modules/poll/poll-results.tpl.php @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was b354002, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 759 octetos
Línea 
1<?php
2
3/**
4 * @file poll-results-block.tpl.php
5 * Display the poll results in a block.
6 *
7 * Variables available:
8 * - $title: The title of the poll.
9 * - $results: The results of the poll.
10 * - $votes: The total results in the poll.
11 * - $links: Links in the poll.
12 * - $nid: The nid of the poll
13 * - $cancel_form: A form to cancel the user's vote, if allowed.
14 * - $raw_links: The raw array of links.
15 * - $vote: The choice number of the current user's vote.
16 *
17 * @see template_preprocess_poll_results()
18 */
19?>
20<div class="poll">
21  <?php print $results; ?>
22  <div class="total">
23    <?php print t('Total votes: @votes', array('@votes' => $votes)); ?>
24  </div>
25  <?php if (!empty($cancel_form)): ?>
26    <?php print $cancel_form; ?>
27  <?php endif; ?>
28</div>
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.