|
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_newsfeeds/category/ |
Upload File : |
<?php // @version $Id: default_items.php 11917 2009-05-29 19:37:05Z ian $
defined('_JEXEC') or die('Restricted access');
?>
<?php if ( $this->params->get( 'show_limit' ) ) : ?>
<div class="display">
<form action="index.php" method="post" name="adminForm">
<label for="limit"><?php echo JText::_( 'Display Num' ); ?> </label>
<?php echo $this->pagination->getLimitBox(); ?>
</form>
</div>
<?php endif; ?>
<table class="newsfeeds">
<?php if ( $this->params->get( 'show_headings' ) ) : ?>
<tr>
<th class="sectiontableheader<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>" width="5" id="num">
<?php echo JText::_( 'Num' ); ?>
</th>
<?php if ( $this->params->get( 'show_name' ) ) : ?>
<th width="90%" class="sectiontableheader<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>" id="name">
<?php echo JText::_( 'Feed Name' ); ?>
</th>
<?php endif; ?>
<?php if ( $this->params->get( 'show_articles' ) ) : ?>
<th width="10%" class="sectiontableheader<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>" nowrap="nowrap" id="num_a">
<?php echo JText::_('Num Articles'); ?>
</th>
<?php endif; ?>
</tr>
<?php endif; ?>
<?php foreach ( $this->items as $item ) : ?>
<tr class="sectiontableentry<?php echo $item->odd + 1; ?>">
<td align="center" width="5" headers="num">
<?php echo $item->count + 1; ?>
</td>
<td width="90%" headers="name">
<a href="<?php echo $item->link; ?>" class="category<?php echo $this->escape($this->params->get( 'pageclass_sfx' )); ?>">
<?php echo $this->escape($item->name); ?></a>
</td>
<?php if ( $this->params->get( 'show_articles' ) ) : ?>
<td width="10%" headers="num_a"><?php echo $item->numarticles; ?></td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
</table>
<p class="counter">
<?php echo $this->pagination->getPagesCounter(); ?>
</p>
<?php echo $this->pagination->getPagesLinks(); ?>