?
Path : /home/admin/public_html/old/promice/components/com_download/ |
Current File : /home/admin/public_html/old/promice/components/com_download/download.php |
<?php /** * @version $Id: weblinks.php 10381 2008-06-01 03:35:53Z pasamio $ * @package Joomla * @subpackage Download */ // no direct access defined('_JEXEC') or die('Restricted access'); // Require the base controller require_once (JPATH_COMPONENT.DS.'controller.php'); // Require the base router require_once (JPATH_COMPONENT.DS.'router.php'); // Require specific controller if requested if($controller = JRequest::getWord('controller')) { $path = JPATH_COMPONENT.DS.'controllers'.DS.$controller.'.php'; if (file_exists($path)) { require_once $path; } else { $controller = ''; } } // Create the controller $classname = 'CategoriesController'.ucfirst($controller); $controller = new $classname( ); // Perform the Request task $controller->execute(JRequest::getCmd('task')); // Redirect if set by the controller $controller->redirect();