| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/administrator/components/com_mobilejoomla/scientia/ |
Upload File : |
<?php
/**
* Mobile Joomla!
* http://www.mobilejoomla.com
*
* @version 1.2.5.1
* @license GNU/GPL v2 - http://www.gnu.org/licenses/gpl-2.0.html
* @copyright (C) 2008-2013 Kuneri Ltd.
* @date March 2013
*/
define('_JEXEC', 1);
define('DS', DIRECTORY_SEPARATOR);
define('JPATH_BASE', dirname(dirname(dirname(dirname(__FILE__)))) );
require_once( JPATH_BASE .DS.'includes'.DS.'defines.php' );
require_once( JPATH_BASE .DS.'includes'.DS.'framework.php' );
$app = JFactory::getApplication('administrator');
$app->initialise();
$user = JFactory::getUser();
global $isJoomla15;
$isJoomla15 = (substr(JVERSION,0,3) == '1.5');
if($isJoomla15)
{
if(!$user->authorize('login', 'administrator'))
exit(0);
}
else
{
if(!$user->authorise('core.login.admin'))
exit(0);
}
$lang = JFactory::getLanguage();
$lang->load('com_mobilejoomla');
global $mootools;
$mootools = '../../../../media/system/js/' . ($isJoomla15 ? 'mootools.js' : 'mootools-core.js');
$action = JRequest::getCmd('action', 'init');
$file = dirname(__FILE__).DS.$action.'.php';
if(!file_exists($file))
exit(0);
require($file);