| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 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 : C:/inetpub/wwwroot/icd/plugins/mobile/ |
Upload File : |
<?php
/**
* Mobile Joomla!
* http://www.mobilejoomla.com
*
* @version 1.2.9
* @license GNU/GPL v2 - http://www.gnu.org/licenses/gpl-2.0.html
* @copyright (C) 2008-2014 Kuneri Ltd.
* @date June 2014
*/
defined('_JEXEC') or die('Restricted access');
jimport('joomla.plugin.plugin');
class plgMobileAmdd extends JPlugin
{
function plgMobileAmdd(& $subject, $config)
{
parent::__construct($subject, $config);
if(!isset($this->params))
$this->params = new JParameter(null);
}
function onDeviceDetection(&$MobileJoomla_Settings, &$MobileJoomla_Device)
{
if($MobileJoomla_Device['markup'] !== false)
return;
require_once(dirname(__FILE__).'/amdd/config.php');
$cache = (bool)$this->params->get('cache', 1);
$cachesize = (int) $this->params->get('cachesize', 1000);
AmddConfig::$cacheSize = $cache ? $cachesize : 0;
require_once(dirname(__FILE__).'/amdd/amdd.php');
try
{
$amddObj = Amdd::getCapabilities();
if(!is_object($amddObj))
return;
}
catch(AmddDatabaseException $e)
{
error_log("Caught exception 'Exception' with message '".$e->getMessage()."' in ".$e->getFile().':'.$e->getLine());
return;
}
$MobileJoomla_Device['amdd'] = $amddObj;
switch($amddObj->markup)
{
case 'tv':
case 'gametv':
$MobileJoomla_Device['markup'] = '';
break;
case 'gameport':
$MobileJoomla_Device['markup'] = 'xhtml';
break;
default:
$MobileJoomla_Device['markup'] = $amddObj->markup;
}
if(isset($amddObj->screenWidth))
$MobileJoomla_Device['screenwidth'] = $amddObj->screenWidth;
if(isset($amddObj->screenHeight))
$MobileJoomla_Device['screenheight'] = $amddObj->screenHeight;
if(isset($amddObj->imageFormats))
$MobileJoomla_Device['imageformats'] = $amddObj->imageFormats;
}
function onGetDatabaseSize()
{
$app = JFactory::getApplication();
$db = JFactory::getDBO();
$db->setQuery('SHOW TABLE STATUS FROM `'.$app->getCfg('db').'` LIKE '.$db->Quote($app->getCfg('dbprefix').'mj_amdd%'));
$result = $db->loadObjectList();
$size = 0;
foreach($result as $row)
$size += $row->Data_length;
$date = null;
$xml = simplexml_load_file(dirname(__FILE__).'/amdd.xml');
if(isset($xml->creationdate))
$date = (string)$xml->creationdate;
return $size ? array('Mobile - AMDD', $size, $date) : null;
}
}