?
Path : /home/admin/public_html/old/administrator/templates/hathor/html/com_modules/positions/ |
Current File : /home/admin/public_html/old/administrator/templates/hathor/html/com_modules/positions/modal.php |
<?php /** * @package Joomla.Administrator * @subpackage Template.hathor * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html'); $function = JFactory::getApplication()->input->getCmd('function', 'jSelectPosition'); $lang = JFactory::getLanguage(); $ordering = $this->escape($this->state->get('list.ordering')); $direction = $this->escape($this->state->get('list.direction')); $clientId = $this->state->get('filter.client_id'); $state = $this->state->get('filter.state'); $template = $this->state->get('filter.template'); $type = $this->state->get('filter.type'); ?> <form action="<?php echo JRoute::_('index.php?option=com_modules&view=positions&layout=modal&tmpl=component&function='.$function.'&client_id=' .$clientId);?>" method="post" name="adminForm" id="adminForm"> <fieldset id="filter-bar"> <legend class="element-invisible"><?php echo JText::_('JSEARCH_FILTER_LABEL'); ?></legend> <div class="filter-search"> <label for="filter_search"> <?php echo JText::_('JSearch_Filter_Label'); ?> </label> <input type="text" name="filter_search" id="filter_search" value="<?php echo $this->escape($this->state->get('filter.search')); ?>" size="30" title="<?php echo JText::_('COM_MODULES_FILTER_SEARCH_DESC'); ?>" /> <button type="submit"> <?php echo JText::_('JSEARCH_FILTER_SUBMIT'); ?></button> <button type="button" onclick="document.getElementById('filter_search').value='';this.form.submit();"> <?php echo JText::_('JSEARCH_FILTER_CLEAR'); ?></button> </div> <div class="filter-select"> <label class="selectlabel" for="filter_state"> <?php echo JText::_('JOPTION_SELECT_PUBLISHED'); ?> </label> <select name="filter_state" id="filter_state"> <option value=""><?php echo JText::_('JOPTION_SELECT_PUBLISHED');?></option> <?php echo JHtml::_('select.options', JHtml::_('modules.templateStates'), 'value', 'text', $state, true);?> </select> <label class="selectlabel" for="filter_type"> <?php echo JText::_('COM_MODULES_OPTION_SELECT_TYPE'); ?> </label> <select name="filter_type" id="filter_type"> <option value=""><?php echo JText::_('COM_MODULES_OPTION_SELECT_TYPE');?></option> <?php echo JHtml::_('select.options', JHtml::_('modules.types'), 'value', 'text', $type, true);?> </select> <label class="selectlabel" for="filter_template"> <?php echo JText::_('JOPTION_SELECT_TEMPLATE'); ?> </label> <select name="filter_template" id="filter_template"> <option value=""><?php echo JText::_('JOPTION_SELECT_TEMPLATE');?></option> <?php echo JHtml::_('select.options', JHtml::_('modules.templates', $clientId), 'value', 'text', $template, true);?> </select> <button type="submit" id="filter-go"> <?php echo JText::_('JSUBMIT'); ?></button> </div> </fieldset> <table class="adminlist"> <thead> <tr> <th class="title width-20"> <?php echo JHtml::_('grid.sort', 'JGLOBAL_TITLE', 'value', $direction, $ordering); ?> </th> <th> <?php echo JHtml::_('grid.sort', 'COM_MODULES_HEADING_TEMPLATES', 'templates', $direction, $ordering); ?> </th> </tr> </thead> <tbody> <?php $i = 1; foreach ($this->items as $value => $templates) : ?> <tr class="row<?php echo $i = 1 - $i;?>"> <td> <a class="pointer" onclick="if (window.parent) window.parent.<?php echo $function;?>('<?php echo $value; ?>');"><?php echo $this->escape($value); ?></a> </td> <td> <?php if (!empty($templates)):?> <a class="pointer" onclick="if (window.parent) window.parent.<?php echo $function;?>('<?php echo $value; ?>');"> <ul> <?php foreach ($templates as $template => $label):?> <li><?php echo $lang->hasKey($label) ? JText::sprintf('COM_MODULES_MODULE_TEMPLATE_POSITION', JText::_($template), JText::_($label)) : JText::_($template);?></li> <?php endforeach;?> </ul> </a> <?php endif;?> </td> </tr> <?php endforeach; ?> </tbody> </table> <?php echo $this->pagination->getListFooter(); ?> <div> <input type="hidden" name="task" value="" /> <input type="hidden" name="boxchecked" value="0" /> <input type="hidden" name="filter_order" value="<?php echo $ordering; ?>" /> <input type="hidden" name="filter_order_Dir" value="<?php echo $direction; ?>" /> <?php echo JHtml::_('form.token'); ?> </div> </form>