|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/performancepartsinc/main/templates/beez/html/com_weblinks/category/ |
Upload File : |
<?php // @version $Id: default_items.php 11917 2009-05-29 19:37:05Z ian $
defined('_JEXEC') or die('Restricted access');
?>
<script 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>
<div class="display">
<form action="<?php echo $this->escape($this->action); ?>" method="post" name="adminForm">
<?php echo JText :: _('Display Num'); ?>
<?php echo $this->pagination->getLimitBox(); ?>
<input type="hidden" name="filter_order" value="<?php echo $this->lists['order'] ?>" />
<input type="hidden" name="filter_order_Dir" value="" />
</form>
</div>
<table class="weblinks">
<?php if ($this->params->def('show_headings', 1)) : ?>
<tr>
<th class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" width="5" id="num">
<?php echo JText::_('Num'); ?>
</th>
<th width="90%" class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" id="title">
<?php echo JHTML::_('grid.sort', 'Web Link', 'title', $this->lists['order_Dir'], $this->lists['order']); ?>
</th>
<?php if ($this->params->get('show_link_hits')) : ?>
<th width="10%" class="sectiontableheader<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>" nowrap="nowrap" id="hits">
<?php echo JHTML::_('grid.sort', 'Hits', '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; ?>">
<td align="center" headers="num">
<?php echo $this->pagination->getRowOffset($item->count); ?>
</td>
<td headers="title">
<?php if ($item->image) :
echo $item->image;
endif;
echo $item->link;
if ($this->params->get('show_link_description')) : ?>
<br />
<?php echo nl2br($item->description);
endif; ?>
</td>
<?php if ($this->params->get('show_link_hits')) : ?>
<td headers="hits">
<?php echo (int)$item->hits; ?>
</td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
</table>
<p class="counter">
<?php echo $this->pagination->getPagesCounter(); ?>
</p>
<?php echo $this->pagination->getPagesLinks();