Your IP : 10.10.0.253


Current Path : /var/www/components/com_formmaker/
Upload File :
Current File : /var/www/components/com_formmaker/formmaker.php

<?php

 /**
 * @package Form Maker
 * @author Web-Dorado
 * @copyright (C) 2011 Web-Dorado. All rights reserved.
 * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 **/
 
defined( '_JEXEC' ) or die( 'Restricted access' );
defined( 'DS' )  or define('DS', DIRECTORY_SEPARATOR);
require_once( JPATH_COMPONENT.DS.'controller.php' );

require_once('recaptchalib.php');

$controller = JRequest::getVar( 'controller' );

$classname    = 'formmakerController'.$controller;

$controller   = new $classname( );

$controller->execute( JRequest::getVar( 'task' ) );

$controller->redirect();

?>