FundacionLQDVI_WebCongresos/www/administrator/components/com_alpharegistration/admin.alpharegistration.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();
?>