. */ use Alledia\OSMap\Controller\Base; use Alledia\OSMap\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Language\Text; defined('_JEXEC') or die(); include JPATH_COMPONENT_ADMINISTRATOR . '/include.php'; // Access check if (Factory::getUser()->authorise('core.manage', 'com_osmap') == false) { throw new Exception(Text::_('JERROR_ALERTNOAUTHOR'), 404); } HTMLHelper::_('stylesheet', 'com_osmap/admin.min.css', ['relative' => true]); $input = Factory::getApplication()->input; $controller = Base::getInstance('OSMap'); $controller->execute($input->getCmd('task')); $controller->redirect();