File "cache.php"
Full Path: /home/asmplong/www/ancien-site-2019/site/administrator/components/com_cache/cache.php
File size: 708 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* @version $Id: cache.php 21097 2011-04-07 15:38:03Z dextercowley $
* @package Joomla.Administrator
* @subpackage com_cache
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die;
// Access check.
if (!JFactory::getUser()->authorise('core.manage', 'com_cache')) {
return JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
}
// Include dependancies
jimport('joomla.application.component.controller');
$controller = JController::getInstance('Cache');
$controller->execute(JRequest::getCmd('task'));
$controller->redirect();