| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php // @version $Id: default_graph.php 12230 2009-06-21 02:07:34Z ian $ 2 defined('_JEXEC') or die('Restricted access'); 3 ?> 4 5 <dl class="poll"> 6 <dt><?php echo JText::_( 'Number of Voters' ); ?></dt> 7 <dd><?php echo $this->votes[0]->voters; ?></dd> 8 <dt><?php echo JText::_( 'First Vote' ); ?></dt> 9 <dd><?php echo $this->first_vote; ?></dd> 10 <dt><?php echo JText::_( 'Last Vote' ); ?></dt> 11 <dd><?php echo $this->last_vote; ?></dd> 12 </dl> 13 14 <h3> 15 <?php echo $this->escape($this->poll->title); ?> 16 </h3> 17 18 <table class="pollstableborder"><?php JPlugin::loadLanguage( 'tpl_beez' ); ?> 19 <tr> 20 <th id="itema" class="td_1"><?php echo JText::_( 'Hits' ); ?></th> 21 <th id="itemb" class="td_2"><?php echo JText::_( 'Percent' ); ?></th> 22 <th id="itemc" class="td_3"><?php echo JText::_( 'Graph' ); ?></th> 23 </tr> 24 <?php for ( $row = 0; $row < count( $this->votes ); $row++ ) : 25 $vote = $this->votes[$row]; 26 ?> 27 <tr> 28 <td colspan="3" id="question<?php echo $row; ?>" class="question"> 29 <?php echo $vote->text; ?> 30 </td> 31 </tr> 32 <tr class="sectiontableentry<?php echo $vote->odd; ?>"> 33 <td headers="itema question<?php echo $row; ?>" class="td_1"> 34 <?php echo $vote->hits; ?> 35 </td> 36 <td headers="itemb question<?php echo $row; ?>" class="td_2"> 37 <?php echo $vote->percent.'%' ?> 38 </td> 39 <td headers="itemc question<?php echo $row; ?>" class="td_3"> 40 <div class="<?php echo $vote->class; ?>" style="height:<?php echo $vote->barheight; ?>px;width:<?php echo $vote->percent; ?>% !important"></div> 41 </td> 42 </tr> 43 <?php endfor; ?> 44 </table>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |