@copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html Questions & Answers /-----------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); JHtml::_('behavior.tabstate'); // Access check. if (!JFactory::getUser()->authorise('core.manage', 'com_questionsanswers')) { throw new JAccessExceptionNotallowed(JText::_('JERROR_ALERTNOAUTHOR'), 403); }; // Add CSS file for all pages $document = JFactory::getDocument(); $document->addStyleSheet('components/com_questionsanswers/assets/css/admin.css'); $document->addScript('components/com_questionsanswers/assets/js/admin.js'); // require helper files JLoader::register('QuestionsanswersHelper', __DIR__ . '/helpers/questionsanswers.php'); JLoader::register('JHtmlBatch_', __DIR__ . '/helpers/html/batch_.php'); // Triger the Global Admin Event QuestionsanswersHelper::globalEvent($document); // Get an instance of the controller prefixed by Questionsanswers $controller = JControllerLegacy::getInstance('Questionsanswers'); // Perform the Request task $controller->execute(JFactory::getApplication()->input->get('task')); // Redirect if set by the controller $controller->redirect();