authorise('akeeba.configure', 'com_akeeba')) { $this->setRedirect('index.php?option=com_akeeba'); return JError::raiseWarning(403, JText::_('JERROR_ALERTNOAUTHOR')); $this->redirect(); } } } /** * Handles the "display" task, which displays a folder and file list * */ public function display() { parent::display(); } /** * AJAX proxy. */ public function ajax() { // Parse the JSON data and reset the action query param to the resulting array $action_json = JRequest::getVar('action', '', 'default', 'none', 2); $action = json_decode($action_json); JRequest::setVar('action', $action); parent::display(); } }