33
2
mirror of https://github.com/joomla-extensions/jedchecker.git synced 2024-11-02 03:32:38 +00:00
jedchecker/source/administrator/components/com_jedchecker/jedchecker.php
Daniel Dimitrov 7dc7fd3ab0 the check is now an ajax request. (one need just to add rules in the libraries/rules and they
will be automatically called by the component - no further actions necessary)
layout improvements
2012-06-09 15:34:32 +02:00

19 lines
590 B
PHP

<?php
/**
* @author Daniel Dimitrov - compojoom.com
* @date: 02.06.12
*
* @copyright Copyright (C) 2008 - 2012 compojoom.com . All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.controller');
$view = JRequest::getCmd('view','');
if($view == '' && JRequest::getCmd('task') == '') {
JRequest::setVar('view', 'uploads');
}
$controller = JController::getInstance('jedchecker');
$controller->execute(JRequest::getCmd('task'));
$controller->redirect();