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

📄 view.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php/** * @version		$Id: view.php 10882 2008-08-31 17:55:14Z willebil $ * @package		Joomla * @subpackage	Config * @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	Config*/class ConfigApplicationView{	function showConfig( &$row, &$lists )	{		global $mainframe;		// Load tooltips behavior		JHTML::_('behavior.tooltip');		JHTML::_('behavior.switcher');		// Load component specific configurations		$table =& JTable::getInstance('component');		$table->loadByOption( 'com_users' );		$userparams = new JParameter( $table->params, JPATH_ADMINISTRATOR.DS.'components'.DS.'com_users'.DS.'config.xml' );		$table->loadByOption( 'com_media' );		$mediaparams = new JParameter( $table->params, JPATH_ADMINISTRATOR.DS.'components'.DS.'com_media'.DS.'config.xml' );		// Build the component's submenu		$contents = '';		$tmplpath = dirname(__FILE__).DS.'tmpl';		ob_start();		require_once($tmplpath.DS.'navigation.php');		$contents = ob_get_contents();		ob_end_clean();		// Set document data		$document =& JFactory::getDocument();		$document->setBuffer($contents, 'modules', 'submenu');		// Load settings for the FTP layer		jimport('joomla.client.helper');		$ftp =& JClientHelper::setCredentialsFromRequest('ftp');		?>		<form action="index.php" method="post" name="adminForm">		<?php if ($ftp) {			require_once($tmplpath.DS.'ftp.php');		} ?>		<div id="config-document">			<div id="page-site">				<table class="noshow">					<tr>						<td width="65%">							<?php require_once($tmplpath.DS.'config_site.php'); ?>							<?php require_once($tmplpath.DS.'config_metadata.php'); ?>						</td>						<td width="35%">							<?php require_once($tmplpath.DS.'config_seo.php'); ?>						</td>					</tr>				</table>			</div>			<div id="page-system">				<table class="noshow">					<tr>						<td width="60%">							<?php require_once($tmplpath.DS.'config_system.php'); ?>							<fieldset class="adminform">								<legend><?php echo JText::_( 'User Settings' ); ?></legend>								<?php echo $userparams->render('userparams'); ?>							</fieldset>							<fieldset class="adminform">								<legend><?php echo JText::_( 'Media Settings' ); ?>				<span class="error hasTip" title="<?php echo JText::_( 'Warning' );?>::<?php echo JText::_( 'WARNPATHCHANGES' ); ?>">					<?php echo ConfigApplicationView::WarningIcon(); ?>				</span>								</legend>								<?php echo $mediaparams->render('mediaparams'); ?>							</fieldset>						</td>						<td width="40%">							<?php require_once($tmplpath.DS.'config_debug.php'); ?>							<?php require_once($tmplpath.DS.'config_cache.php'); ?>							<?php require_once($tmplpath.DS.'config_session.php'); ?>						</td>					</tr>				</table>			</div>			<div id="page-server">				<table class="noshow">					<tr>						<td width="60%">							<?php require_once($tmplpath.DS.'config_server.php'); ?>							<?php require_once($tmplpath.DS.'config_locale.php'); ?>							<?php require_once($tmplpath.DS.'config_ftp.php'); ?>						</td>						<td width="40%">							<?php require_once($tmplpath.DS.'config_database.php'); ?>							<?php require_once($tmplpath.DS.'config_mail.php'); ?>						</td>					</tr>				</table>			</div>		</div>		<div class="clr"></div>		<input type="hidden" name="c" value="global" />		<input type="hidden" name="live_site" value="<?php echo isset($row->live_site) ? $row->live_site : ''; ?>" />		<input type="hidden" name="option" value="com_config" />		<input type="hidden" name="secret" value="<?php echo $row->secret; ?>" />		<input type="hidden" name="task" value="" />		<?php echo JHTML::_( 'form.token' ); ?>		</form>		<?php	}	function WarningIcon()	{		global $mainframe;		$tip = '<img src="'.JURI::root().'includes/js/ThemeOffice/warning.png" border="0"  alt="" />';		return $tip;	}}

⌨️ 快捷键说明

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