@my wife Roline van der Merwe @copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html Builds Complex Joomla Components /-----------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); ?> ###BOM### // No direct access to this file defined('_JEXEC') or die('Restricted access'); // Set the component css/js $document = JFactory::getDocument(); $document->addStyleSheet('components/com_###component###/assets/css/site.css'); $document->addScript('components/com_###component###/assets/js/site.js'); // Require helper files JLoader::register('###Component###Helper', dirname(__FILE__) . '/helpers/###component###.php'); ###HELPER_EMAIL### JLoader::register('###Component###HelperRoute', dirname(__FILE__) . '/helpers/route.php');###LICENSE_LOCKED_INT### ###SITE_GLOBAL_EVENT### // import joomla controller library jimport('joomla.application.component.controller'); // Get an instance of the controller prefixed by ###Component### $controller = JControllerLegacy::getInstance('###Component###'); // Perform the request task $jinput = JFactory::getApplication()->input; $controller->execute($jinput->get('task', null, 'CMD')); // Redirect if set by the controller $controller->redirect();