📄 default_items.php
字号:
<?phpdefined('_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><?phpecho '<form action="' .JRoute::_('index.php?option=com_content&view=category&id='.$this->category->slug). '" method="post" name="adminForm">';if ($this->params->get('filter') || $this->params->get('show_pagination_limit')) {if ($this->params->get('filter')) {echo '<div class="filter"><p>';echo JText :: _('Filter') . ' ';echo '<input type="text" name="filter" value="' . $this->lists['filter'] . '" class="inputbox" onchange="document.adminForm.submit();" />';echo '</p></div>';}if ($this->params->get('show_pagination_limit')) {echo '<div class="display">';echo '' . JText :: _('Display Num') . ' ';echo $this->pagination->getLimitBox();echo '</div>';}}echo '<table class="category">';if ($this->params->get('show_headings')) {echo '<tr><th class="sectiontableheader' . $this->params->get('pageclass_sfx') . '" id="count">';echo JText :: _('Num');echo '</th>';if ($this->params->get('show_title')) {echo '<th class="sectiontableheader' . $this->params->get('pageclass_sfx') . '" id="tableOrdering">';echo JHTML::_('grid.sort', 'Item Title', 'a.title', $this->lists['order_Dir'], $this->lists['order'] );echo '</th>';}if ($this->params->get('show_date')) {echo '<th class="sectiontableheader' . $this->params->get('pageclass_sfx') . '" id="tableOrdering2">';echo JHTML::_('grid.sort', 'Date', 'a.created', $this->lists['order_Dir'], $this->lists['order'] );echo '</th>';}if ($this->params->get('show_author')) {echo '<th class="sectiontableheader' . $this->params->get('pageclass_sfx') . '" id="author">';echo JHTML::_('grid.sort', 'Author', 'author', $this->lists['order_Dir'], $this->lists['order'] );echo '</th>';}if ($this->params->get('show_hits')) {echo '<th align="center" class="sectiontableheader' . $this->params->get('pageclass_sfx') . '" width="5%" nowrap="nowrap" id="hits">';echo JHTML::_('grid.sort', 'Hits', 'a.hits', $this->lists['order_Dir'], $this->lists['order'] );echo '</th>';}echo '</tr>';}foreach ($this->items as $item) {$oddoreven = $item->odd + 1;echo '<tr class="sectiontableentry' . $oddoreven . $this->params->get('pageclass_sfx') . '" >';echo '<td headers="count">' . $this->pagination->getRowOffset($item->count) . '</td>';if ($this->params->get('show_title')) {if ($item->access <= $this->user->get('aid', 0)) {echo '<td headers="tableOrdering"><a href="' . $item->link . '">' . $item->title . '</a>' . JHTML::_('icon.edit', $item, $this->params, $this->access) . '</td>';} else {echo '<td headers="tableOrdering1">' . $item->title . ' : ';$link = JRoute::_('index.php?option=com_user&task=register');echo '<a href="' . $link . '">' . JText :: _('Register to read more...') . '</a></td>';}}if ($this->params->get('show_date')) {echo '<td headers="tableOrdering2">' . $item->created . '</td>';}if ($this->params->get('show_author')) {echo '<td headers="author">';echo $item->created_by_alias ? $item->created_by_alias : $item->author;echo '</td>';}if ($this->params->get('show_hits')) {echo '<td headers="hits">';echo $item->hits ? $item->hits : '-';echo '</td>';}echo '</tr>';}echo '</table>';if ($this->params->get('show_pagination')) {echo '<p class="counter">' . $this->pagination->getPagesCounter() . '</p>';echo $this->pagination->getPagesLinks();}echo '<input type="hidden" name="id" value="' . $this->category->id . '" />';echo '<input type="hidden" name="sectionid" value="' . $this->category->sectionid . '" />';echo '<input type="hidden" name="task" value="' . $this->lists['task'] . '" />';echo '<input type="hidden" name="filter_order" value="' . $this->lists['order'] . '" />';echo '<input type="hidden" name="filter_order_Dir" value="" />';echo '</form>';?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -