mirror of
https://github.com/joomla-extensions/jedchecker.git
synced 2024-11-05 12:57:51 +00:00
36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.JEDChecker
|
|
*
|
|
* @copyright Copyright (C) 2017 - 2019 Open Source Matters, Inc. All rights reserved.
|
|
* Copyright (C) 2008 - 2016 compojoom.com . All rights reserved.
|
|
* @author Daniel Dimitrov <daniel@compojoom.com>
|
|
* 02.06.12
|
|
*
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
jimport('joomla.application.component.controllerlegacy');
|
|
|
|
if (!JFactory::getUser()->authorise('core.manage', 'com_jedchecker'))
|
|
{
|
|
throw new Exception(JText::_('JERROR_ALERTNOAUTHOR'));
|
|
}
|
|
|
|
// We'll need jfile and JFolder all through the compoenent so let us load them here
|
|
jimport('joomla.filesystem.folder');
|
|
jimport('joomla.filesystem.file');
|
|
|
|
$input = JFactory::getApplication()->input;
|
|
$view = $input->getCmd('view', '');
|
|
|
|
if ($view == '' && $input->getCmd('task', '') == '')
|
|
{
|
|
$input->set('view', 'uploads');
|
|
}
|
|
|
|
$controller = JControllerLegacy::getInstance('jedchecker');
|
|
$controller->execute($input->getCmd('task', ''));
|
|
$controller->redirect();
|