File: /home/centralexf/www/administrator/components/com_rsform/admin.rsform.php
<?php
/**
* @version 1.4.0
* @package RSform!Pro 1.4.0
* @copyright (C) 2007-2011 www.rsjoomla.com
* @license GPL, http://www.gnu.org/copyleft/gpl.html
*/
defined('_JEXEC') or die('Restricted access');
// Require the base controller
require_once(JPATH_COMPONENT.DS.'controller.php');
require_once(JPATH_COMPONENT.DS.'helpers'.DS.'rsform.php');
RSFormProHelper::readConfig();
// See if this is a request for a specific controller
$controller = JRequest::getWord('controller');
if (!empty($controller) && file_exists(JPATH_COMPONENT.DS.'controllers'.DS.$controller.'.php'))
{
require_once(JPATH_COMPONENT.DS.'controllers'.DS.$controller.'.php');
$controller = 'RSFormController'.$controller;
$RSFormController = new $controller();
}
else
$RSFormController = new RSFormController();
$mainframe =& JFactory::getApplication();
$mainframe->triggerEvent('rsfp_bk_onInit');
$RSFormController->execute(JRequest::getWord('task'));
// Redirect if set
$RSFormController->redirect();
?>