[ Index ]

PHP Cross Reference of Joomla 1.5.26 DE

title

Body

[close]

/administrator/components/com_poll/views/poll/tmpl/ -> default.php (source)

   1  <?php defined('_JEXEC') or die('Restricted access'); ?>
   2  
   3  <form>
   4  <table align="center" width="90%" cellspacing="2" cellpadding="2" border="0" >
   5      <tr>
   6          <td class="moduleheading" colspan="2"><?php echo $this->poll->title; ?></td>
   7      </tr>
   8      <?php foreach ($this->options as $option)
   9      {
  10          if ($option->text <> "")
  11          {?>
  12          <tr>
  13              <td valign="top" height="30"><input type="radio" name="poll" value="<?php echo $option->text; ?>"></td>
  14              <td class="poll" width="100%" valign="top"><?php echo $option->text; ?></td>
  15          </tr>
  16          <?php }
  17      } ?>
  18      <tr>
  19          <td valign="middle" height="50" colspan="2" align="center"><input type="button" name="submit" value="<?php echo JText::_( 'Vote' ); ?>">&nbsp;&nbsp;<input type="button" name="result" value="<?php echo JText::_( 'Results' ); ?>"></td>
  20      </tr>
  21  </table>
  22  </form>


Generated: Wed Mar 28 15:54:07 2012 Cross-referenced by PHPXref 0.7.1