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

📄 admin.trash.html.php

📁 mambo的cms源代码
💻 PHP
字号:
<?php/*** @version $Id: admin.trash.html.php,v 1.5 2005/01/06 01:13:24 eddieajau Exp $* @package Mambo* @subpackage Trash* @copyright (C) 2000 - 2005 Miro International Pty Ltd* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL* Mambo is Free Software*//** ensure this file is being included by a parent file */defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );/*** HTML class for all trash component output* @package Mambo* @subpackage Trash*/class HTML_trash {	/**	* Writes a list of the Trash items	*/	function showList( $option, $contents, $menus, $pageNav_content, $pageNav_menu ) {		global $my, $adminLanguage;		$tabs = new mosTabs(1);		?>		<script language="javascript" type="text/javascript">		/**		* Toggles the check state of a group of boxes		*		* Checkboxes must have an id attribute in the form cb0, cb1...		* @param The number of box to 'check'		*/		function checkAll_xtd ( n ) {			var f = document.adminForm;			var c = f.toggle1.checked;			var n2 = 0;			for ( i=0; i < n; i++ ) {				cb = eval( 'f.cb1' + i );				if (cb) {					cb.checked = c;					n2++;				}			}			if (c) {				document.adminForm.boxchecked.value = n2;			} else {				document.adminForm.boxchecked.value = 0;			}		}		</script>			<form action="index2.php" method="post" name="adminForm">		<table class="adminheading">		<tr>			<th class="trash"><?php echo $adminLanguage->A_COMP_TRASH_MANAGER;?></th>		</tr>		</table>			<?php		$tabs->startPane("content-pane");		$tabs->startTab($adminLanguage->A_COMP_TRASH_ITEMS,"content_items");		?>		<table class="adminheading" width="90%">		<tr>			<th><small><?php echo $adminLanguage->A_COMP_TRASH_ITEMS;?></small></th>		</tr>		</table>			<table class="adminlist" width="90%">		<tr>			<th width="20"><?php echo $adminLanguage->A_COMP_NB;?></th>			<th width="20">			<input type="checkbox" name="toggle" value="" onClick="checkAll(<?php echo count( $contents );?>);" />			</th>			<th width="20px">&nbsp;</th>			<th class="title">			<?php echo $adminLanguage->A_COMP_TITLE;?>			</th>			<th>			<?php echo $adminLanguage->A_COMP_SECTION;?>			</th>			<th>			<?php echo $adminLanguage->A_COMP_CATEG;?>			</th>			<th width="70px">			<?php echo $adminLanguage->A_COMP_ID;?>			</th>		</tr>		<?php		$k = 0;		$i = 0;		$n = count( $contents );		foreach ( $contents as $row ) {			?>			<tr class="<?php echo "row". $k; ?>">				<td align="center" width="30px">				<?php echo $i + 1 + $pageNav_content->limitstart;?>				</td>				<td width="20px" align="center"><?php echo mosHTML::idBox( $i, $row->id ); ?></td>				<td width="20px"></td>				<td nowrap>				<?php				echo $row->title;				?>				</td>				<td align="center" width="20%">				<?php				echo $row->sectname;				?>				</td>				<td align="center" width="20%">				<?php				echo $row->catname;				?>				</td>				<td align="center">				<?php				echo $row->id;				?>				</td>			</tr>			<?php			$k = 1 - $k;			$i++;		}		?>		</table>		<?php echo $pageNav_content->getListFooter(); ?>		<?php		$tabs->endTab();		$tabs->startTab($adminLanguage->A_COMP_TRASH_MENU_ITEMS,"menu_items");		?>		<table class="adminheading" width="90%">		<tr>			<th><small><?php echo $adminLanguage->A_COMP_TRASH_MENU_ITEMS;?></small></th>		</tr>		</table>			<table class="adminlist" width="90%">		<tr>			<th width="20"><?php echo $adminLanguage->A_COMP_NB;?></th>			<th width="20">			<input type="checkbox" name="toggle1" value="" onClick="checkAll_xtd(<?php echo count( $menus );?>);" />			</th>			<th width="20px">&nbsp;</th>			<th class="title">			<?php echo $adminLanguage->A_COMP_TITLE;?>			</th>			<th>			<?php echo $adminLanguage->A_COMP_MENU;?>			</th>			<th>			<?php echo $adminLanguage->A_COMP_TYPE;?>			</th>			<th width="70px">			<?php echo $adminLanguage->A_COMP_ID;?>			</th>		</tr>		<?php		$k = 0;		$i = 0;		$n = count( $menus );		foreach ( $menus as $row ) {			?>			<tr class="<?php echo "row". $k; ?>">				<td align="center" width="30px">				<?php echo $i + 1 + $pageNav_menu->limitstart;?>				</td>				<td width="30px" align="center">				<input type="checkbox" id="cb1<?php echo $i;?>" name="mid[]" value="<?php echo $row->id; ?>" onclick="isChecked(this.checked);" />				</td>				<td width="20px"></td>				<td nowrap>				<?php				echo $row->name;				?>				</td>				<td align="center" width="20%">				<?php				echo $row->menutype;				?>				</td>				<td align="center" width="20%">				<?php				echo $row->type;				?>				</td>				<td align="center">				<?php				echo $row->id;				?>				</td>			</tr>			<?php			$k = 1 - $k;			$i++;		}		?>		</table>		<?php echo $pageNav_menu->getListFooter(); ?>		<?php		$tabs->endTab();		$tabs->endPane();		?>    			<input type="hidden" name="option" value="<?php echo $option;?>" />		<input type="hidden" name="task" value="" />		<input type="hidden" name="boxchecked" value="0" />		</form>		<?php	}	/**	* A delete confirmation page	* Writes list of the items that have been selected for deletion	*/	function showDelete( $option, $cid, $items, $type ) {		global $adminLanguage;	?>		<form action="index2.php" method="post" name="adminForm">		<table class="adminheading">		<tr>			<th><?php echo $adminLanguage->A_COMP_TRASH_DEL_ITEMS;?></th>		</tr>		</table>			<br />		<table class="adminform">		<tr>			<td width="3%"></td>			<td align="left" valign="top" width="20%">			<strong><?php echo $adminLanguage->A_COMP_TRASH_NB_ITEMS;?>:</strong>			<br />			<font color="#000066"><strong><?php echo count( $cid ); ?></strong></font>			<br /><br />			</td>			<td align="left" valign="top" width="25%">			<strong><?php echo $adminLanguage->A_COMP_TRASH_ITEM_DEL;?>:</strong>			<br />			<?php			echo "<ol>";			foreach ( $items as $item ) {				echo "<li>". $item->name ."</li>";			}			echo "</ol>";			?>			</td>			 <td valign="top">			<?php echo $adminLanguage->A_COMP_MENU_WILL;?> <strong><font color="#FF0000">            <?php echo $adminLanguage->A_COMP_TRASH_PERM_DEL;?></font></strong> <br />            <?php echo $adminLanguage->A_COMP_TRASH_THESE;?>			<br /><br /><br />			<div style="border: 1px dotted gray; width: 70px; padding: 10px; margin-left: 50px;">			<a class="toolbar" href="javascript:if (confirm('<?php echo $adminLanguage->A_COMP_TRASH_YOU_SURE;?>')){ submitbutton('delete');}" onmouseout="MM_swapImgRestore();"  onmouseover="MM_swapImage('remove','','images/delete_f2.png',1);">			<img name="remove" src="images/delete.png" alt="<?php echo $adminLanguage->A_DELETE;?>" border="0" align="middle" />			&nbsp;<?php echo $adminLanguage->A_DELETE;?>			</a>			</div>			</td>		</tr>		<tr>			<td>&nbsp;</td>		</tr>		</table>		<br /><br />			<input type="hidden" name="option" value="<?php echo $option;?>" />		<input type="hidden" name="task" value="" />		<input type="hidden" name="boxchecked" value="1" />		<input type="hidden" name="type" value="<?php echo $type; ?>" />		<?php		foreach ($cid as $id) {			echo "\n<input type=\"hidden\" name=\"cid[]\" value=\"$id\" />";		}		?>		</form>		<?php	}	/**	* A restore confirmation page	* Writes list of the items that have been selected for restore	*/	function showRestore( $option, $cid, $items, $type ) {		global $adminLanguage;	?>		<form action="index2.php" method="post" name="adminForm">		<table class="adminheading">		<tr>			<th><?php echo $adminLanguage->A_COMP_TRASH_RESTORE;?></th>		</tr>		</table>			<br />		<table class="adminform">		<tr>			<td width="3%"></td>			<td align="left" valign="top" width="20%">			<strong><?php echo $adminLanguage->A_COMP_TRASH_NUMBER;?>:</strong>			<br />			<font color="#000066"><strong><?php echo count( $cid ); ?></strong></font>			<br /><br />			</td>			<td align="left" valign="top" width="25%">			<strong><?php echo $adminLanguage->A_COMP_TRASH_ITEM_REST;?>:</strong>			<br />			<?php			echo "<ol>";			foreach ( $items as $item ) {				echo "<li>". $item->name ."</li>";			}			echo "</ol>";			?>			</td>			 <td valign="top">			<?php echo $adminLanguage->A_COMP_MENU_WILL;?> <strong><font color="#FF0000">            <?php echo $adminLanguage->A_COMP_TRASH_REST;?></font></strong>            <?php echo $adminLanguage->A_COMP_TRASH_RETURN;?>			<br /><br /><br />			<div style="border: 1px dotted gray; width: 80px; padding: 10px; margin-left: 50px;">			<a class="toolbar" href="javascript:if (confirm('<?php echo $adminLanguage->A_COMP_TRASH_ARE_YOU;?>')){ submitbutton('restore');}" onmouseout="MM_swapImgRestore();"  onmouseover="MM_swapImage('restore','','images/restore_f2.png',1);">			<img name="restore" src="images/restore.png" alt="<?php echo $adminLanguage->A_COMP_TRASH_REST;?>" border="0" align="middle" />			&nbsp;<?php echo $adminLanguage->A_COMP_TRASH_REST;?>			</a>			</div>			</td>		</tr>		<tr>			<td>&nbsp;</td>		</tr>		</table>		<br /><br />			<input type="hidden" name="option" value="<?php echo $option;?>" />		<input type="hidden" name="sectionid" value="<?php echo $sectionid; ?>" />		<input type="hidden" name="task" value="" />		<input type="hidden" name="boxchecked" value="1" />		<input type="hidden" name="type" value="<?php echo $type; ?>" />		<?php		foreach ($cid as $id) {			echo "\n<input type=\"hidden\" name=\"cid[]\" value=\"$id\" />";		}		?>		</form>		<?php	}}?>

⌨️ 快捷键说明

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