git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
28 lines
888 B
PHP
28 lines
888 B
PHP
<?php
|
|
/**
|
|
* @version $Id: cpanel.php 103 2009-06-21 19:21:18Z happynoodleboy $
|
|
* @package JCE
|
|
* @copyright Copyright (C) 2009 Ryan Demmer. All rights reserved.
|
|
* @license GNU/GPL
|
|
* This version may have been modified pursuant
|
|
* to the GNU General Public License, and as distributed it includes or
|
|
* is derivative of works licensed under the GNU General Public License or
|
|
* other free or open source software licenses.
|
|
*/
|
|
|
|
// no direct access
|
|
defined( '_JEXEC' ) or die( 'Restricted access' );
|
|
|
|
// Controller
|
|
require_once( JPATH_COMPONENT .DS. 'cpanel' .DS. 'controller.php' );
|
|
|
|
// Create the controller
|
|
$controller = new CpanelController( array(
|
|
'base_path' => JPATH_COMPONENT .DS. 'cpanel' ,
|
|
'template_path' => JPATH_COMPONENT .DS. 'cpanel' .DS. 'views' .DS. 'tmpl'
|
|
) );
|
|
|
|
$controller->execute( JRequest::getCmd( 'task' ) );
|
|
$controller->redirect();
|
|
?>
|