芝麻web文件管理V1.00
编辑当前文件:/home/provyohx/public_html/administrator__c0c73d1/components/com_osmap/osmap.php
. */ 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();