?
Path : /home/admin/public_html/old/board/administrator/components/com_poll/views/polls/tmpl/ |
Current File : /home/admin/public_html/old/board/administrator/components/com_poll/views/polls/tmpl/default.php |
<?php defined('_JEXEC') or die('Restricted access'); ?> <?php JHTML::_('behavior.tooltip'); ?> <?php JToolBarHelper::title( JText::_( 'Poll Manager' ) ); JToolBarHelper::publishList(); JToolBarHelper::unpublishList(); JToolBarHelper::deleteList(); JToolBarHelper::editListX(); JToolBarHelper::addNewX(); JToolBarHelper::help( 'screen.polls' ); ?> <form action="index.php?option=com_poll" method="post" name="adminForm"> <table> <tr> <td align="left" width="100%"> <?php echo JText::_( 'Filter' ); ?>: <input type="text" name="search" id="search" value="<?php echo htmlspecialchars($this->lists['search']);?>" class="text_area" onchange="document.adminForm.submit();" /> <button onclick="this.form.submit();"><?php echo JText::_( 'Go' ); ?></button> <button onclick="document.getElementById('search').value='';this.form.getElementById('filter_state').value='';this.form.submit();"><?php echo JText::_( 'Reset' ); ?></button> </td> <td nowrap="nowrap"> <?php echo $this->lists['state']; ?> </td> </tr> </table> <div id="tablecell"> <table class="adminlist"> <thead> <tr> <th width="5"> <?php echo JText::_( 'NUM' ); ?> </th> <th width="20"> <input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $this->items ); ?>);" /> </th> <th class="title"> <?php echo JHTML::_('grid.sort', 'Poll Title', 'm.title', @$this->lists['order_Dir'], @$this->lists['order'] ); ?> </th> <th width="5%" align="center"> <?php echo JHTML::_('grid.sort', 'Published', 'm.published', @$this->lists['order_Dir'], @$this->lists['order'] ); ?> </th> <th width="5%" align="center"> <?php echo JHTML::_('grid.sort', 'Votes', 'm.voters', @$this->lists['order_Dir'], @$this->lists['order'] ); ?> </th> <th width="5%" align="center"> <?php echo JHTML::_('grid.sort', 'Options', 'numoptions', @$this->lists['order_Dir'], @$this->lists['order'] ); ?> </th> <th width="5%" align="center"> <?php echo JHTML::_('grid.sort', 'Lag', 'm.lag', @$this->lists['order_Dir'], @$this->lists['order'] ); ?> </th> <th width="1%" nowrap="nowrap"> <?php echo JHTML::_('grid.sort', 'ID', 'm.id', @$this->lists['order_Dir'], @$this->lists['order'] ); ?> </th> </tr> </thead> <tfoot> <tr> <td colspan="9"> <?php echo $this->pagination->getListFooter(); ?> </td> </tr> </tfoot> <tbody> <?php $k = 0; for ($i=0, $n=count( $this->items ); $i < $n; $i++) { $row = &$this->items[$i]; $link = JRoute::_( 'index.php?option=com_poll&view=poll&task=edit&cid[]='. $row->id ); $checked = JHTML::_('grid.checkedout', $row, $i ); $published = JHTML::_('grid.published', $row, $i ); ?> <tr class="<?php echo "row$k"; ?>"> <td> <?php echo $this->pagination->getRowOffset( $i ); ?> </td> <td> <?php echo $checked; ?> </td> <td> <?php if ( JTable::isCheckedOut($this->user->get ('id'), $row->checked_out ) ) { echo $row->title; } else { ?> <span class="editlinktip hasTip" title="<?php echo JText::_( 'Edit Poll' );?>::<?php echo htmlspecialchars($row->title); ?>"> <a href="<?php echo $link ?>"> <?php echo htmlspecialchars($row->title); ?></a></span> <?php } ?> </td> <td align="center"> <?php echo $published;?> </td> <td align="center"> <?php echo $row->voters; ?> </td> <td align="center"> <?php echo $row->numoptions; ?> </td> <td align="center"> <?php echo $row->lag; ?> </td> <td align="center"> <?php echo $row->id; ?> </td> </tr> <?php $k = 1 - $k; } ?> </tbody> </table> </div> <input type="hidden" name="option" value="com_poll" /> <input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" /> <input type="hidden" name="filter_order" value="<?php echo $this->lists['order']; ?>" /> <input type="hidden" name="filter_order_Dir" value="<?php echo $this->lists['order_Dir']; ?>" /> <?php echo JHTML::_( 'form.token' ); ?> </form>