| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/templates/mobile_pda/html/com_content/category/ |
Upload File : |
<?php
/*
#------------------------------------------------------------------------
JA Purity II for Joomla 1.5
#------------------------------------------------------------------------
#Copyright (C) 2004-2009 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
#@license - GNU/GPL, http://www.gnu.org/copyleft/gpl.html
#Author: J.O.O.M Solutions Co., Ltd
#Websites: http://www.joomlart.com - http://www.joomlancers.com
#------------------------------------------------------------------------
*/
defined('_JEXEC') or die('Restricted access');
?>
<script language="javascript" type="text/javascript">
<!--
function tableOrdering( order, dir, task )
{
var form = document.adminForm;
form.filter_order.value = order;
form.filter_order_Dir.value = dir;
document.adminForm.submit( task );
}
// -->
</script>
<form action="<?php echo $this->action; ?>" method="post" name="adminForm">
<?php if ($this->params->get('filter') || $this->params->get('show_pagination_limit')) : ?>
<div class="sortby clearfix">
<?php if ($this->params->get('filter')) : ?>
<div class="filter">
<?php echo JText::_($this->escape($this->params->get('filter_type')) . ' ' . 'Filter').' '; ?>
<input type="text" name="filter" value="<?php echo $this->escape($this->lists['filter']); ?>" class="inputbox" onchange="document.adminForm.submit();" />
</div>
<?php endif; ?>
<?php if ($this->params->get('show_pagination_limit')) : ?>
<div class="display">
<?php echo JText::_('Display Num'); ?>
<?php echo $this->pagination->getLimitBox(); ?>
</div>
<?php endif; ?>
</div>
<?php endif; ?>
<table class="tablelist">
<?php if ($this->params->get('show_headings')) : ?>
<tr>
<th class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" id="count">
<?php echo JText::_('Num'); ?>
</th>
<?php if ($this->params->get('show_title')) : ?>
<th class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" id="tableOrdering">
<?php echo JHTML::_('grid.sort', 'Item Title', 'a.title', $this->lists['order_Dir'], $this->lists['order']); ?>
</th>
<?php endif; ?>
<?php if ($this->params->get('show_date')) : ?>
<th class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" id="tableOrdering2">
<?php echo JHTML::_('grid.sort', 'Date', 'a.created', $this->lists['order_Dir'], $this->lists['order']); ?>
</th>
<?php endif; ?>
<?php if ($this->params->get('show_author')) : ?>
<th class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" id="author">
<?php echo JHTML::_('grid.sort', 'Author', 'author', $this->lists['order_Dir'], $this->lists['order']); ?>
</th>
<?php endif; ?>
<?php if ($this->params->get('show_hits')) : ?>
<th align="center" class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" width="5%" nowrap="nowrap" id="hits">
<?php echo JHTML::_('grid.sort', 'Hits', 'a.hits', $this->lists['order_Dir'], $this->lists['order']); ?>
</th>
<?php endif; ?>
</tr>
<?php endif; ?>
<?php foreach ($this->items as $item) : ?>
<tr class="sectiontableentry<?php echo ($item->odd + 1) . $this->escape($this->params->get('pageclass_sfx')); ?>">
<td headers="count">
<?php echo $this->pagination->getRowOffset((int)$item->count); ?>
</td>
<?php if ($this->params->get('show_title')) : ?>
<td headers="tableOrdering">
<?php if ($item->access <= $this->user->get('aid', 0)) : ?>
<a href="<?php echo $item->link; ?>">
<?php echo $this->escape($item->title); ?></a>
<?php echo JHTML::_('icon.edit', $item, $this->params, $this->access);
else :
echo $item->title; ?> :
<a href="<?php echo JRoute::_('index.php?option=com_user&task=register'); ?>">
<?php echo JText::_('Register to read more...'); ?></a>
<?php endif; ?>
</td>
<?php endif; ?>
<?php if ($this->params->get('show_date')) : ?>
<td headers="tableOrdering2">
<?php echo $this->escape($item->created); ?>
</td>
<?php endif; ?>
<?php if ($this->params->get('show_author')) : ?>
<td headers="author">
<?php echo $item->created_by_alias ? $this->escape($item->created_by_alias) : $this->escape($item->author); ?>
</td>
<?php endif; ?>
<?php if ($this->params->get('show_hits')) : ?>
<td headers="hits">
<?php echo $item->hits ? (int)$item->hits : '-'; ?>
</td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
</table>
<?php if ($this->params->get('show_pagination') && $this->pagination->getPagesCounter()) : ?>
<p class="counter">
<span><?php echo $this->pagination->getPagesCounter(); ?><span>
</p>
<?php echo $this->pagination->getPagesLinks();
endif; ?>
<input type="hidden" name="id" value="<?php echo (int)$this->category->id; ?>" />
<input type="hidden" name="sectionid" value="<?php echo (int)$this->category->sectionid; ?>" />
<input type="hidden" name="task" value="<?php echo $this->lists['task']; ?>" />
<input type="hidden" name="filter_order" value="" />
<input type="hidden" name="filter_order_Dir" value="" />
<input type="hidden" name="limitstart" value="0" />
</form>