PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
components
/
com_djcatalog2
/
views
/
myitems
/
tmpl
<?php /** * @version $Id: default_order.php 146 2013-10-07 09:02:25Z michal $ * @package DJ-Catalog2 * @copyright Copyright (C) 2012 DJ-Extensions.com LTD, All rights reserved. * @license http://www.gnu.org/licenses GNU/GPL * @author url: http://dj-extensions.com * @author email contact@dj-extensions.com * @developer Michal Olczyk - michal.olczyk@design-joomla.eu * * DJ-Catalog2 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * DJ-Catalog2 is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with DJ-Catalog2. If not, see <http://www.gnu.org/licenses/>. * */ defined ('_JEXEC') or die('Restricted access'); ?> <?php $input = JFactory::getApplication()->input; $juri = JURI::getInstance(); $uri = JURI::getInstance($juri->toString()); $query = $uri->getQuery(true); $app = JFactory::getApplication(); unset($query['order']); unset($query['dir']); $uri->setQuery($query); $orderUrl = htmlspecialchars($uri->toString()); if (strpos($orderUrl,'?') === false ) { $orderUrl .= '?'; } else { $orderUrl .= '&'; } JURI::reset(); $ordering = $app->getUserStateFromRequest('com_djcatalog2.myitems.ordering', 'order', 'i.ordering'); $order_dir = $app->getUserStateFromRequest('com_djcatalog2.myitems.order_dir', 'dir', 'asc'); $this->lists = array('order_Dir' => $order_dir == 'desc' ? 'asc' : 'desc', 'order' => $ordering); ?> <div class="djc_order_in thumbnail"> <ul class="djc_order_buttons djc_clearfix"> <li><span><?php echo JText::_('COM_DJCATALOG2_ORDERBY'); ?></span></li> <li><a href="<?php echo JRoute::_( $orderUrl.'order=i.name&dir='.$this->lists['order_Dir'].'#tlb'); ?>"><?php echo JText::_('COM_DJCATALOG2_NAME'); ?></a><?php echo DJCatalog2HtmlHelper::orderDirImage($this->lists['order'], 'i.name', $this->lists['order_Dir']); ?></li> <?php if ($this->params->get('fed_show_category_name') > 0) { ?> <li><a href="<?php echo JRoute::_( $orderUrl.'order=category&dir='.$this->lists['order_Dir'].'#tlb'); ?>"><?php echo JText::_('COM_DJCATALOG2_CATEGORY'); ?></a><?php echo DJCatalog2HtmlHelper::orderDirImage($this->lists['order'], 'category', $this->lists['order_Dir']); ?></li> <?php } ?> <?php if ($this->params->get('fed_show_producer_name') > 0) { ?> <li><a href="<?php echo JRoute::_( $orderUrl.'order=producer&dir='.$this->lists['order_Dir'].'#tlb'); ?>"><?php echo JText::_('COM_DJCATALOG2_PRODUCER'); ?></a><?php echo DJCatalog2HtmlHelper::orderDirImage($this->lists['order'], 'producer', $this->lists['order_Dir']); ?></li> <?php } ?> <?php if ($this->params->get('fed_show_price') > 0) { ?> <li><a href="<?php echo JRoute::_( $orderUrl.'order=i.price&dir='.$this->lists['order_Dir'].'#tlb'); ?>"><?php echo JText::_('COM_DJCATALOG2_PRICE'); ?></a><?php echo DJCatalog2HtmlHelper::orderDirImage($this->lists['order'], 'i.price', $this->lists['order_Dir']); ?></li> <?php } ?> <li><a href="<?php echo JRoute::_( $orderUrl.'order=i.created&dir='.$this->lists['order_Dir'].'#tlb'); ?>"><?php echo JText::_('COM_DJCATALOG2_DATE'); ?></a><?php echo DJCatalog2HtmlHelper::orderDirImage($this->lists['order'], 'i.created', $this->lists['order_Dir']); ?></li> </ul> </div> <?php
[+]
..
[-] default.php
[edit]
[-] default.xml
[edit]
[-] default_order.php
[edit]
[-] default_search.php
[edit]
[-] default_table.php
[edit]
[-] index.html
[edit]
[-] .htaccess.disabled
[edit]