git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
27 lines
703 B
PHP
27 lines
703 B
PHP
<?php
|
|
/**
|
|
* @version 2.0.10 alpharegistration $
|
|
* @package alpharegistration
|
|
* @copyright Copyright © 2009-2010 - Bernard Gilly - All rights reserved.
|
|
* @license GNU/GPL
|
|
* @author Bernard Gilly
|
|
* @author mail contact@alphaplug.com
|
|
* @website www.alphaplug.com
|
|
*/
|
|
|
|
// no direct access
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
// include helper
|
|
require_once (JPATH_COMPONENT.DS.'helper.php');
|
|
|
|
// Require the base controller
|
|
require_once (JPATH_COMPONENT.DS.'controller.php');
|
|
|
|
// Create the controller
|
|
$controller = new alpharegistrationController();
|
|
|
|
// Perform the Request task
|
|
$controller->execute(JRequest::getVar('task', 'cpanel', 'default', 'cmd'));
|
|
$controller->redirect();
|
|
?>
|