mambo的cms源代码

源代码在线查看: admin.admin.php

软件大小: 2053 K
上传用户: bonylee_java
关键词: mambo cms 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

								/**				* @version $Id: admin.admin.php,v 1.6 2005/02/06 18:28:24 eddieajau Exp $				* @package Mambo				* @subpackage Admin				* @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.' );				require_once( $mainframe->getPath( 'admin_html' ) );								switch ($task) {										case 'redirect':						$goto = trim( strtolower( mosGetParam( $_REQUEST, 'link' ) ) );						if ($goto == 'null') {							$msg = $adminLanguage->A_COMP_ALERT_NO_LINK;							mosRedirect( 'index2.php?option=com_admin&task=listcomponents', $msg );							exit();						}						$goto = str_replace( "'", '', $goto );						mosRedirect($goto);						break;											case 'listcomponents':						HTML_admin_misc::ListComponents();						break;										case 'sysinfo':						HTML_admin_misc::system_info( $version, $option );						break;									case 'help':						HTML_admin_misc::help();						break;									case 'preview':						HTML_admin_misc::preview();						break;									case 'preview2':						HTML_admin_misc::preview( 1 );						break;									case 'cpanel':				    default:						HTML_admin_misc::controlPanel();						break;								}				?>			

相关资源