?
GR0V Shell
GR0V shell
Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64
<?php
/**
* ------------------------------------------------------------------------
* JA Slideshow Module for J25 & J31
* ------------------------------------------------------------------------
* Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* ------------------------------------------------------------------------
*/
if (!defined('_JEXEC')) {
// no direct access
define('_JEXEC', 1);
defined ( '_JEXEC' ) or die ( 'Restricted access' );
$path = dirname(dirname(dirname(dirname(dirname(__FILE__)))));
define('JPATH_BASE', $path);
if (strpos(php_sapi_name(), 'cgi') !== false && !empty($_SERVER['REQUEST_URI'])) {
//Apache CGI
$_SERVER['PHP_SELF'] = rtrim(dirname(dirname(dirname($_SERVER['PHP_SELF']))), '/\\');
} else {
//Others
$_SERVER['SCRIPT_NAME'] = rtrim(dirname(dirname(dirname($_SERVER['SCRIPT_NAME']))), '/\\');
}
if(!defined('DS')) define('DS', DIRECTORY_SEPARATOR);
require_once (JPATH_BASE . '/includes/defines.php');
require_once (JPATH_BASE . '/includes/framework.php');
JDEBUG ? $_PROFILER->mark('afterLoad') : null;
/**
* CREATE THE APPLICATION
*
* NOTE :
*/
$japp = JFactory::getApplication('administrator');
/**
* INITIALISE THE APPLICATION
*
* NOTE :
*/
$japp->initialise(array('language' => $japp->getUserState('application.lang', 'lang')));
$language = JFactory::getLanguage();
$language->load('mod_jaslideshow');
}
$user = JFactory::getUser();
jimport('joomla.filesystem.folder');
jimport('joomla.filesystem.file');
if(!$user->authorise('core.manage', 'com_modules')){
die(json_encode(array(JText::_('NO_PERMISSION'))));
}
$helpcls = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'fileconfig.php';
if(file_exists($helpcls))
include_once $helpcls;
$task = isset($_REQUEST['jaction']) ? $_REQUEST['jaction'] : '';
if ($task != '' && method_exists('JAFileConfig', $task)) {
JAFileConfig::$task();
}
T1KUS90T