📄 admin.categories.html.php
字号:
<?php
/**
* @version $Id: admin.categories.html.php 8577 2007-08-26 22:45:22Z eddieajau $
* @package Joomla
* @subpackage Categories
* @copyright Copyright (C) 2005 - 2007 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
/**
* @package Joomla
* @subpackage Categories
*/
class categories_html
{
/**
* Writes a list of the categories for a section
* @param array An array of category objects
* @param string The name of the category section
*/
function show( &$rows, $section, $section_name, &$page, &$lists, $type )
{
$limitstart = JRequest::getVar('limitstart', '0', '', 'int');
$user =& JFactory::getUser();
//Ordering allowed ?
$ordering = ($lists['order'] == 'c.ordering');
JHTML::_('behavior.tooltip');
?>
<form action="index.php?option=com_categories&section=<?php echo $section; ?>" method="post" name="adminForm">
<table>
<tr>
<td align="left" width="100%">
<?php echo JText::_( 'Filter' ); ?>:
<input type="text" name="search" id="search" value="<?php echo $lists['search'];?>" class="text_area" onchange="document.adminForm.submit();" />
<button onclick="this.form.submit();"><?php echo JText::_( 'Go' ); ?></button>
<button onclick="document.getElementById('search').value='';this.form.submit();"><?php echo JText::_( 'Reset' ); ?></button>
</td>
<td nowrap="nowrap">
<?php
if ( $section == 'com_content') {
echo $lists['sectionid'];
}
?>
<?php
echo $lists['state'];
?>
</td>
</tr>
</table>
<table class="adminlist">
<thead>
<tr>
<th width="10" align="left">
<?php echo JText::_( 'Num' ); ?>
</th>
<th width="20">
<input type="checkbox" name="toggle" value="" onclick="checkAll(<?php echo count( $rows );?>);" />
</th>
<th class="title">
<?php echo JHTML::_('grid.sort', 'Title', 'c.title', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
<th width="10%">
<?php echo JHTML::_('grid.sort', 'Alias', 'c.alias', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
<th width="5%">
<?php echo JHTML::_('grid.sort', 'Published', 'c.published', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
<th width="8%" nowrap="nowrap">
<?php echo JHTML::_('grid.sort', 'Order by', 'c.ordering', @$lists['order_Dir'], @$lists['order'] ); ?>
<?php echo JHTML::_('grid.order', $rows ); ?>
</th>
<th width="7%">
<?php echo JHTML::_('grid.sort', 'Access', 'groupname', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
<?php
if ( $section == 'com_content') {
?>
<th width="20%" class="title">
<?php echo JHTML::_('grid.sort', 'Section', 'section_name', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
<?php
}
?>
<?php
if ( $type == 'content') {
?>
<th width="5%">
<?php echo JText::_( 'Num Active' ); ?>
</th>
<th width="5%">
<?php echo JText::_( 'Num Trash' ); ?>
</th>
<?php
}
?>
<th width="1%" nowrap="nowrap">
<?php echo JHTML::_('grid.sort', 'ID', 'c.id', @$lists['order_Dir'], @$lists['order'] ); ?>
</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="13">
<?php echo $page->getListFooter(); ?>
</td>
</tr>
</tfoot>
<tbody>
<?php
$k = 0;
if( count( $rows ) ) {
for ($i=0, $n=count( $rows ); $i < $n; $i++) {
$row = &$rows[$i];
$row->sect_link = JRoute::_( 'index.php?option=com_sections&task=edit&cid[]='. $row->section );
$link = 'index.php?option=com_categories§ion='. $section .'&task=edit&cid[]='. $row->id .'&type='.$type;
$access = JHTML::_('grid.access', $row, $i );
$checked = JHTML::_('grid.checkedout', $row, $i );
$published = JHTML::_('grid.published', $row, $i );
?>
<tr class="<?php echo "row$k"; ?>">
<td>
<?php echo $page->getRowOffset( $i ); ?>
</td>
<td>
<?php echo $checked; ?>
</td>
<td>
<span class="editlinktip hasTip" title="<?php echo JText::_( 'Title' );?>::<?php echo $row->title; ?>">
<?php
if ( JTable::isCheckedOut($user->get ('id'), $row->checked_out ) ) {
echo $row->title;
} else {
?>
<a href="<?php echo JRoute::_( $link ); ?>">
<?php echo $row->title; ?></a>
<?php
}
?></span>
</td>
<td>
<?php echo $row->alias;?>
</td>
<td align="center">
<?php echo $published;?>
</td>
<td class="order">
<span><?php echo $page->orderUpIcon( $i, ($row->section == @$rows[$i-1]->section), 'orderup', 'Move Up', $ordering ); ?></span>
<span><?php echo $page->orderDownIcon( $i, $n, ($row->section == @$rows[$i+1]->section), 'orderdown', 'Move Down', $ordering ); ?></span>
<?php $disabled = $ordering ? '' : 'disabled="disabled"'; ?>
<input type="text" name="order[]" size="5" value="<?php echo $row->ordering; ?>" <?php echo $disabled ?> class="text_area" style="text-align: center" />
</td>
<td align="center">
<?php echo $access;?>
</td>
<?php
if ( $section == 'com_content' ) {
?>
<td>
<a href="<?php echo $row->sect_link; ?>" title="<?php echo JText::_( 'Edit Section' ); ?>">
<?php echo $row->section_name; ?>
</a>
</td>
<?php
}
?>
<?php
if ( $type == 'content') {
?>
<td align="center">
<?php echo $row->active; ?>
</td>
<td align="center">
<?php echo $row->trash; ?>
</td>
<?php
}
$k = 1 - $k;
?>
<td align="center">
<?php echo $row->id; ?>
</td>
</tr>
<?php
}
} else {
if( $type == 'content') {
?>
<tr><td colspan="10"><?php echo JText::_('There are no Categories'); ?></td></tr>
<?php
} else {
?>
<tr><td colspan="8"><?php echo JText::_('There are no Categories'); ?></td></tr>
<?php
}
}
?>
</tbody>
</table>
<input type="hidden" name="option" value="com_categories" />
<input type="hidden" name="section" value="<?php echo $section;?>" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="chosen" value="" />
<input type="hidden" name="act" value="" />
<input type="hidden" name="boxchecked" value="0" />
<input type="hidden" name="type" value="<?php echo $type; ?>" />
<input type="hidden" name="filter_order" value="<?php echo $lists['order']; ?>" />
<input type="hidden" name="filter_order_Dir" value="" />
</form>
<?php
}
/**
* Writes the edit form for new and existing categories
* @param JTableCategory The category object
* @param string
* @param array
*/
function edit( &$row, &$lists, $redirect )
{
JRequest::setVar( 'hidemainmenu', 1 );
$editor =& JFactory::getEditor();
if ($row->image == '') {
$row->image = 'blank.png';
}
if ( $redirect == 'content' ) {
$component = 'Content';
} else {
$component = ucfirst( substr( $redirect, 4 ) );
if ( $redirect == 'com_contact_details' ) {
$component = 'Contact';
}
}
jimport('joomla.filter.output');
JFilterOutput::objectHTMLSafe( $row, ENT_QUOTES, 'description' );
?>
<script language="javascript" type="text/javascript">
function submitbutton(pressbutton, section) {
var form = document.adminForm;
if (pressbutton == 'cancel') {
submitform( pressbutton );
return;
}
if ( pressbutton == 'menulink' ) {
if ( form.menuselect.value == "" ) {
alert( "<?php echo JText::_( 'Please select a Menu', true ); ?>" );
return;
} else if ( form.link_type.value == "" ) {
alert( "<?php echo JText::_( 'Please select a menu type', true ); ?>" );
return;
} else if ( form.link_name.value == "" ) {
alert( "<?php echo JText::_( 'Please enter a Name for this menu item', true ); ?>" );
return;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -