[ Index ]

PHP Cross Reference of Joomla 2.5.4 DE

title

Body

[close]

/administrator/components/com_config/ -> config.php (source)

   1  <?php
   2  /**
   3   * @package        Joomla.Administrator
   4   * @subpackage    com_config
   5   * @copyright    Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
   6   * @license        GNU General Public License version 2 or later; see LICENSE.txt
   7   */
   8  
   9  // no direct access
  10  defined('_JEXEC') or die;
  11  
  12  // Access checks are done internally because of different requirements for the two controllers.
  13  
  14  // Include dependancies
  15  jimport('joomla.application.component.controller');
  16  
  17  // Tell the browser not to cache this page.
  18  JResponse::setHeader('Expires', 'Mon, 26 Jul 1997 05:00:00 GMT', true);
  19  
  20  // Execute the controller.
  21  $controller = JController::getInstance('Config');
  22  $controller->execute(JRequest::getCmd('task'));
  23  $controller->redirect();


Generated: Tue Apr 3 11:40:28 2012 Cross-referenced by PHPXref 0.7.1