| [ Index ] |
PHP Cross Reference of Joomla 2.5.4 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package Joomla.Administrator 4 * @subpackage com_checkin 5 * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved. 6 * @license GNU General Public License version 2 or later; see LICENSE.txt 7 */ 8 9 // no direct access 10 defined('_JEXEC') or die; 11 $listOrder = $this->escape($this->state->get('list.ordering')); 12 $listDirn = $this->escape($this->state->get('list.direction')); 13 ?> 14 <form action="<?php echo JRoute::_('index.php?option=com_checkin');?>" method="post" name="adminForm" id="adminForm"> 15 <fieldset id="filter-bar"> 16 <div class="filter-search fltlft"> 17 <label class="filter-search-lbl" for="filter_search"><?php echo JText::_('JSEARCH_FILTER_LABEL'); ?></label> 18 <input type="text" name="filter_search" id="filter_search" value="<?php echo $this->escape($this->state->get('filter.search')); ?>" title="<?php echo JText::_('COM_CHECKIN_FILTER_SEARCH_DESC'); ?>" /> 19 20 <button type="submit" class="btn"><?php echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button> 21 <button type="button" onclick="document.id('filter_search').value='';this.form.submit();"><?php echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button> 22 </div> 23 </fieldset> 24 <div class="clr"> </div> 25 26 <table id="global-checkin" class="adminlist"> 27 <thead> 28 <tr> 29 <th width="1%"> 30 <input type="checkbox" name="checkall-toggle" value="" title="<?php echo JText::_('JGLOBAL_CHECK_ALL'); ?>" onclick="Joomla.checkAll(this)" /> 31 </th> 32 <th class="left"><?php echo JHtml::_('grid.sort', 'COM_CHECKIN_DATABASE_TABLE', 'table', $listDirn, $listOrder); ?></th> 33 <th><?php echo JHtml::_('grid.sort', 'COM_CHECKIN_ITEMS_TO_CHECK_IN', 'count', $listDirn, $listOrder); ?></th> 34 </tr> 35 </thead> 36 <tbody> 37 <?php foreach ($this->items as $table => $count): $i=0;?> 38 <tr class="row<?php echo $i%2; ?>"> 39 <td class="center"><?php echo JHtml::_('grid.id', $i, $table); ?></td> 40 <td><?php echo JText::sprintf('COM_CHECKIN_TABLE', $table); ?></td> 41 <td width="200" class="center"><?php echo $count; ?></td> 42 </tr> 43 <?php endforeach;?> 44 </tbody> 45 <tfoot> 46 <tr> 47 <td colspan="15"> 48 <?php echo $this->pagination->getListFooter(); ?> 49 </td> 50 </tr> 51 </tfoot> 52 </table> 53 <input type="hidden" name="task" value="" /> 54 <input type="hidden" name="boxchecked" value="0" /> 55 <input type="hidden" name="filter_order" value="<?php echo $listOrder; ?>" /> 56 <input type="hidden" name="filter_order_Dir" value="<?php echo $listDirn; ?>" /> 57 <?php echo JHtml::_('form.token'); ?> 58 </form>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Apr 3 11:40:28 2012 | Cross-referenced by PHPXref 0.7.1 |