⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admin.categories.html.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?php/** * @version		$Id: admin.categories.html.php 11655 2009-03-08 20:04:17Z willebil $ * @package		Joomla * @subpackage	Categories * @copyright	Copyright (C) 2005 - 2008 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 accessdefined( '_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&amp;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.getElementById('sectionid').value='-1';this.form.getElementById('filter_state').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="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 if ($ordering) 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];			JFilterOutput::objectHtmlSafe($row);			$row->sect_link = JRoute::_( 'index.php?option=com_sections&task=edit&cid[]='. $row->section );			$link = 'index.php?option=com_categories&section='. $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 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="<?php echo $lists['order_Dir']; ?>" />		<?php echo JHTML::_( 'form.token' ); ?>		</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';			}		}		JFilterOutput::objectHTMLSafe( $row, ENT_QUOTES, 'description' );		$cparams = JComponentHelper::getParams ('com_media');		?>		<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;				}			}			if ( form.title.value == "" ) {				alert("<?php echo JText::_( 'Category must have a title', true ); ?>");			} else {				<?php				echo $editor->save( 'description' ) ; ?>				submitform(pressbutton);			}		}		</script>		<form action="index.php" method="post" name="adminForm">		<div class="col width-60">			<fieldset class="adminform">				<legend><?php echo JText::_( 'Details' ); ?></legend>					<table class="admintable">					<tr>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -