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

📄 controller.php

📁 Joomla!是一套获得过多个奖项的内容管理系统(Content Management System, CMS)。Joomla!采用PHP+MySQL数据库开发
💻 PHP
字号:
<?php/** * @version		$Id: controller.php 10381 2008-06-01 03:35:53Z pasamio $ * @package		Joomla * @subpackage	Installer * @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. */// Check to ensure this file is included in Joomla!defined('_JEXEC') or die( 'Restricted access' );jimport('joomla.application.component.controller');jimport('joomla.client.helper');/** * Installer Controller * * @package		Joomla * @subpackage	Installer * @since		1.5 */class InstallerController extends JController{	/**	 * Display the extension installer form	 *	 * @access	public	 * @return	void	 * @since	1.5	 */	function installform()	{		global $mainframe;		$model	= &$this->getModel( 'Install' );		$model->setState( 'install.directory', $mainframe->getCfg( 'config.tmp_path' ));		$view	= &$this->getView( 'Install');		$ftp =& JClientHelper::setCredentialsFromRequest('ftp');		$view->assignRef('ftp', $ftp);		$view->setModel( $model, true );		$view->display();	}	/**	 * Install an extension	 *	 * @access	public	 * @return	void	 * @since	1.5	 */	function doInstall()	{		// Check for request forgeries		JRequest::checkToken() or jexit( 'Invalid Token' );		$model	= &$this->getModel( 'Install' );		$view	= &$this->getView( 'Install' );		$ftp =& JClientHelper::setCredentialsFromRequest('ftp');		$view->assignRef('ftp', $ftp);		if ($model->install()) {			$cache = &JFactory::getCache('mod_menu');			$cache->clean();		}		$view->setModel( $model, true );		$view->display();	}	/**	 * Manage an extension type (List extensions of a given type)	 *	 * @access	public	 * @return	void	 * @since	1.5	 */	function manage()	{		$type	= JRequest::getWord('type', 'components');		$model	= &$this->getModel( $type );		$view	= &$this->getView( $type );		$ftp =& JClientHelper::setCredentialsFromRequest('ftp');		$view->assignRef('ftp', $ftp);		$view->setModel( $model, true );		$view->display();	}	/**	 * Enable an extension (If supported)	 *	 * @access	public	 * @return	void	 * @since	1.5	 */	function enable()	{		// Check for request forgeries		JRequest::checkToken( 'request' ) or jexit( 'Invalid Token' );		$type	= JRequest::getWord('type', 'components');		$model	= &$this->getModel( $type );		$view	= &$this->getView( $type );		$ftp =& JClientHelper::setCredentialsFromRequest('ftp');		$view->assignRef('ftp', $ftp);		if (method_exists($model, 'enable')) {			$eid = JRequest::getVar('eid', array(), '', 'array');			JArrayHelper::toInteger($eid, array());			$model->enable($eid);		}		$view->setModel( $model, true );		$view->display();	}	/**	 * Disable an extension (If supported)	 *	 * @access	public	 * @return	void	 * @since	1.5	 */	function disable()	{		// Check for request forgeries		JRequest::checkToken( 'request' ) or jexit( 'Invalid Token' );		$type	= JRequest::getWord('type', 'components');		$model	= &$this->getModel( $type );		$view	= &$this->getView( $type );		$ftp =& JClientHelper::setCredentialsFromRequest('ftp');		$view->assignRef('ftp', $ftp);		if (method_exists($model, 'disable')) {			$eid = JRequest::getVar('eid', array(), '', 'array');			JArrayHelper::toInteger($eid, array());			$model->disable($eid);		}		$view->setModel( $model, true );		$view->display();	}	/**	 * Remove an extension (Uninstall)	 *	 * @access	public	 * @return	void	 * @since	1.5	 */	function remove()	{		// Check for request forgeries		JRequest::checkToken() or jexit( 'Invalid Token' );		$type	= JRequest::getWord('type', 'components');		$model	= &$this->getModel( $type );		$view	= &$this->getView( $type );		$ftp =& JClientHelper::setCredentialsFromRequest('ftp');		$view->assignRef('ftp', $ftp);		$eid = JRequest::getVar('eid', array(), '', 'array');		// Update to handle components radio box		// Checks there is only one extensions, we're uninstalling components		// and then checks that the zero numbered item is set (shouldn't be a zero		// if the eid is set to the proper format)		if((count($eid) == 1) && ($type == 'components') && (isset($eid[0]))) $eid = array($eid[0] => 0);		JArrayHelper::toInteger($eid, array());		$result = $model->remove($eid);		$view->setModel( $model, true );		$view->display();	}}

⌨️ 快捷键说明

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