Files
@ 654a62c4f366
Branch filter:
Location: hot67beta/templates/beez/html/com_content/category/default_items.php
654a62c4f366
4.2 KiB
text/x-php
menubar 11 to 30 and revert
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | <?php // @version: $Id: default_items.php 11393 2009-01-05 02:11:06Z ian $
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')) : ?>
<div class="filter">
<p>
<?php echo JText::_($this->params->get('filter_type') . ' ' . 'Filter').' '; ?>
<input type="text" name="filter" value="<?php echo $this->lists['filter']; ?>" class="inputbox" onchange="document.adminForm.submit();" />
</p>
</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; ?>
<table class="category">
<?php if ($this->params->get('show_headings')) : ?>
<tr>
<th class="sectiontableheader<?php echo $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->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->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->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->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->params->get('pageclass_sfx'); ?>">
<td headers="count">
<?php echo $this->pagination->getRowOffset($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 $item->created; ?>
</td>
<?php endif; ?>
<?php if ($this->params->get('show_author')) : ?>
<td headers="author">
<?php echo $item->created_by_alias ? $item->created_by_alias : $item->author; ?>
</td>
<?php endif; ?>
<?php if ($this->params->get('show_hits')) : ?>
<td headers="hits">
<?php echo $item->hits ? $item->hits : '-'; ?>
</td>
<?php endif; ?>
</tr>
<?php endforeach; ?>
</table>
<?php if ($this->params->get('show_pagination')) : ?>
<p class="counter">
<?php echo $this->pagination->getPagesCounter(); ?>
</p>
<?php echo $this->pagination->getPagesLinks();
endif; ?>
<input type="hidden" name="id" value="<?php echo $this->category->id; ?>" />
<input type="hidden" name="sectionid" value="<?php echo $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>
|