2013-04-22 11:21:42 +02:00
|
|
|
<?php
|
|
|
|
|
2013-04-22 11:40:11 +02:00
|
|
|
/**
|
|
|
|
* This Software is the property of Data Development and is protected
|
|
|
|
* by copyright law - it is NOT Freeware.
|
|
|
|
*
|
|
|
|
* Any unauthorized use of this software without a valid license
|
|
|
|
* is a violation of the license agreement and will be prosecuted by
|
|
|
|
* civil and criminal law.
|
|
|
|
*
|
|
|
|
* http://www.shopmodule.com
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Seifert <ds@shopmodule.com>
|
|
|
|
* @link http://www.oxidmodule.com
|
|
|
|
*/
|
2012-02-15 14:17:42 +01:00
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
class d3GeoIP extends oxbase
|
2013-04-22 11:21:42 +02:00
|
|
|
{
|
|
|
|
protected $_sClassName = 'd3geoip';
|
|
|
|
private $_sModId = 'd3_geoip';
|
2013-04-22 11:40:11 +02:00
|
|
|
public $oCountry;
|
|
|
|
public $oD3Log;
|
2013-04-22 11:21:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class constructor, initiates parent constructor (parent::oxI18n()).
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
$this->init('d3geoip');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get oxcountry object by given IP address (optional)
|
|
|
|
*
|
|
|
|
* @param string $sIP optional
|
2013-04-22 11:40:11 +02:00
|
|
|
* @return oxcountry
|
2013-04-22 11:21:42 +02:00
|
|
|
*/
|
2013-04-22 11:40:11 +02:00
|
|
|
public function getUserLocationCountryObject($sIP = null)
|
2013-04-22 11:21:42 +02:00
|
|
|
{
|
|
|
|
if (!$this->oCountry)
|
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
if (!$sIP)
|
2013-04-22 11:40:11 +02:00
|
|
|
{
|
2013-04-22 11:21:42 +02:00
|
|
|
$sIP = $this->getIP();
|
2013-04-22 11:40:11 +02:00
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
|
2015-06-23 09:49:41 +02:00
|
|
|
$iIPNum = $this->_getNumIp(
|
|
|
|
oxRegistry::getConfig()->checkParamSpecialChars(
|
|
|
|
str_replace(' ', '', $sIP)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$sISOAlpha = $this->loadByIPNum($iIPNum);
|
2013-04-22 11:21:42 +02:00
|
|
|
|
|
|
|
if (!$sISOAlpha)
|
|
|
|
{
|
2013-12-17 16:53:28 +01:00
|
|
|
$this->_getLog()->log(d3log::ERROR, __CLASS__, __FUNCTION__, __LINE__, 'get ISO by IP failed', $sIP);
|
2012-02-15 14:17:42 +01:00
|
|
|
$this->oCountry = $this->getCountryFallBackObject();
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-17 16:53:28 +01:00
|
|
|
$this->_getLog()->log(d3log::INFO, __CLASS__, __FUNCTION__, __LINE__, 'get ISO by IP', $sIP." => ".$sISOAlpha);
|
2013-04-22 11:21:42 +02:00
|
|
|
$this->oCountry = $this->getCountryObject($sISOAlpha);
|
|
|
|
}
|
2013-04-22 11:48:59 +02:00
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this->oCountry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get IP address from client or set test IP address
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getIP()
|
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
if ($this->_getModConfig()->getValue('blUseTestIp') && $this->_getModConfig()->getValue('sTestIp'))
|
2013-04-22 11:40:11 +02:00
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
$sIP = $this->_getModConfig()->getValue('sTestIp');
|
2013-04-22 11:40:11 +02:00
|
|
|
}
|
2013-04-22 11:25:27 +02:00
|
|
|
elseif ($this->_getModConfig()->getValue('blUseTestCountry') && $this->_getModConfig()->getValue('sTestCountryIp'))
|
2013-04-22 11:40:11 +02:00
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
$sIP = $this->_getModConfig()->getValue('sTestCountryIp');
|
2013-04-22 11:40:11 +02:00
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
else
|
2013-04-22 11:40:11 +02:00
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
// ToDo: use $_SERVER['X-Forwared-For'] && Client-IP in case of proxy
|
|
|
|
$sIP = $_SERVER['REMOTE_ADDR'];
|
2013-04-22 11:40:11 +02:00
|
|
|
}
|
2013-04-22 11:48:59 +02:00
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
|
|
|
|
2015-06-23 09:49:41 +02:00
|
|
|
return oxRegistry::getConfig()->checkParamSpecialChars(str_replace(' ', '', $sIP));
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get IP number by IP address
|
2013-04-22 11:48:59 +02:00
|
|
|
* @param $sIP
|
|
|
|
* @return bool
|
|
|
|
* @throws Exception|int
|
2013-04-22 11:21:42 +02:00
|
|
|
*/
|
|
|
|
protected function _getNumIp($sIP)
|
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
// make sure it is an ip
|
|
|
|
if (filter_var($sIP, FILTER_VALIDATE_IP) === FALSE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
|
|
|
$parts = unpack('N*', inet_pton($sIP));
|
|
|
|
|
|
|
|
if (strpos($sIP, '.') !== FALSE)
|
|
|
|
{
|
|
|
|
$parts = array(1=>0, 2=>0, 3=>0, 4=>$parts[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($parts as &$part)
|
|
|
|
{
|
|
|
|
if ($part < 0)
|
|
|
|
$part += 4294967296;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (function_exists('bcadd'))
|
|
|
|
{
|
|
|
|
$dIP = $parts[4];
|
|
|
|
$dIP = bcadd($dIP, bcmul($parts[3], '4294967296'));
|
|
|
|
$dIP = bcadd($dIP, bcmul($parts[2], '18446744073709551616'));
|
|
|
|
$dIP = bcadd($dIP, bcmul($parts[1], '79228162514264337593543950336'));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Exception('extension BCMath is required');
|
|
|
|
}
|
|
|
|
|
|
|
|
$aIP = explode('.', $dIP);
|
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
|
|
|
|
|
|
|
return $aIP[0];
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get ISO alpha 2 ID by IP number
|
|
|
|
*
|
|
|
|
* @param int $iIPNum IP number
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function LoadByIPNum($iIPNum)
|
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2013-12-18 12:23:55 +01:00
|
|
|
$sSelect = "SELECT d3iso FROM ".$this->_sClassName." WHERE $iIPNum BETWEEN d3startipnum AND d3endipnum";
|
2013-04-22 11:48:59 +02:00
|
|
|
$sISO = oxDb::getDb()->getOne($sSelect);
|
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
|
|
|
|
|
|
|
return $sISO;
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get oxcountry object by ISO alpha 2 ID
|
|
|
|
*
|
|
|
|
* @param string $sISOAlpha
|
2013-04-22 11:40:11 +02:00
|
|
|
* @return oxcountry
|
2013-04-22 11:21:42 +02:00
|
|
|
*/
|
|
|
|
public function getCountryObject($sISOAlpha)
|
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2012-02-15 14:17:42 +01:00
|
|
|
$oCountry = oxNew('oxcountry');
|
2013-04-22 11:21:42 +02:00
|
|
|
$sSelect = "SELECT oxid FROM ".$oCountry->getViewName()." WHERE OXISOALPHA2 = '".$sISOAlpha."' AND OXACTIVE = '1'";
|
2013-04-22 11:25:27 +02:00
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
$oCountry->load(oxDb::getDb()->getOne($sSelect));
|
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
stopProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
return $oCountry;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get oxcountry object for fallback, if set
|
|
|
|
*
|
2013-04-22 11:48:59 +02:00
|
|
|
* @return oxcountry
|
2013-04-22 11:21:42 +02:00
|
|
|
*/
|
2012-02-15 14:17:42 +01:00
|
|
|
public function getCountryFallBackObject()
|
2012-02-15 14:15:28 +01:00
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2012-02-15 14:17:42 +01:00
|
|
|
$oCountry = oxNew('oxcountry');
|
2013-04-22 11:21:42 +02:00
|
|
|
|
|
|
|
if ($this->_getModConfig()->getValue('blUseFallback') && $this->_getModConfig()->getValue('sFallbackCountryId'))
|
2012-02-15 14:17:42 +01:00
|
|
|
{
|
2013-04-22 11:21:42 +02:00
|
|
|
$oCountry->Load($this->_getModConfig()->getValue('sFallbackCountryId'));
|
2012-02-15 14:17:42 +01:00
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
stopProfile(__METHOD__);
|
|
|
|
|
2012-02-15 14:15:28 +01:00
|
|
|
return $oCountry;
|
|
|
|
}
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
/**
|
|
|
|
* check module active state and set user country specific language
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function setCountryLanguage()
|
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
$this->performURLSwitch();
|
|
|
|
$this->performShopSwitch();
|
|
|
|
|
2013-04-22 11:40:11 +02:00
|
|
|
if (!$this->_getModConfig()->isActive() || !$this->_getModConfig()->getValue('blChangeLang'))
|
2013-04-22 11:48:59 +02:00
|
|
|
{
|
|
|
|
stopProfile(__METHOD__);
|
2013-04-22 11:21:42 +02:00
|
|
|
return;
|
2013-04-22 11:48:59 +02:00
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
|
|
|
|
$oCountry = $this->getUserLocationCountryObject();
|
|
|
|
|
2013-04-22 11:40:11 +02:00
|
|
|
if (!$this->isAdmin() && oxRegistry::getUtils()->isSearchEngine() === false && oxRegistry::getSession()->getVariable('d3isSetLang') === null && $oCountry->getId() && $oCountry->getFieldData('d3geoiplang') > -1)
|
2013-04-22 11:21:42 +02:00
|
|
|
{
|
2013-12-17 16:53:28 +01:00
|
|
|
$this->_getLog()->log(d3log::INFO, __CLASS__, __FUNCTION__, __LINE__, 'set language', $this->getIP().' => '.$oCountry->getFieldData('d3geoiplang'));
|
2013-04-22 11:40:11 +02:00
|
|
|
oxRegistry::getLang()->setTplLanguage((int) $oCountry->getFieldData('d3geoiplang'));
|
|
|
|
oxRegistry::getLang()->setBaseLanguage((int) $oCountry->getFieldData('d3geoiplang'));
|
|
|
|
oxRegistry::getSession()->setVariable('d3isSetLang', true);
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
2013-04-22 11:48:59 +02:00
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check module active state and set user country specific currency
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function setCountryCurrency()
|
|
|
|
{
|
2013-04-22 11:40:11 +02:00
|
|
|
if (!$this->_getModConfig()->isActive() || !$this->_getModConfig()->getValue('blChangeCurr'))
|
2013-04-22 11:21:42 +02:00
|
|
|
return;
|
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
$oCountry = $this->getUserLocationCountryObject();
|
|
|
|
|
2013-04-22 11:40:11 +02:00
|
|
|
if (!$this->isAdmin() && oxRegistry::getUtils()->isSearchEngine() === false && !oxRegistry::getSession()->getVariable('d3isSetCurr') && $oCountry->getId() && $oCountry->getFieldData('d3geoipcur') > -1)
|
2013-04-22 11:21:42 +02:00
|
|
|
{
|
2013-12-17 16:53:28 +01:00
|
|
|
$this->_getLog()->log(d3log::INFO, __CLASS__, __FUNCTION__, __LINE__, 'set currency', $this->getIP().' => '.$oCountry->getFieldData('d3geoipcur'));
|
2013-04-22 11:40:11 +02:00
|
|
|
oxRegistry::getConfig()->setActShopCurrency((int) $oCountry->getFieldData('d3geoipcur'));
|
|
|
|
oxRegistry::getSession()->setVariable('d3isSetCurr', true);
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
2013-04-22 11:48:59 +02:00
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check module active state and perform switching to user country specific shop (EE only)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function performShopSwitch()
|
|
|
|
{
|
2013-04-22 11:40:11 +02:00
|
|
|
if (!$this->_getModConfig()->isActive() || !$this->_getModConfig()->getValue('blChangeShop'))
|
2013-04-22 11:21:42 +02:00
|
|
|
return;
|
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
2013-04-22 11:21:42 +02:00
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
$oCountry = $this->getUserLocationCountryObject();
|
2013-04-22 11:21:42 +02:00
|
|
|
$iNewShop = $oCountry->getFieldData('d3geoipshop');
|
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
if (oxRegistry::getConfig()->getRequestParameter('d3redirect') != 1 &&
|
|
|
|
!$this->isAdmin() &&
|
|
|
|
oxRegistry::getUtils()->isSearchEngine() === false &&
|
|
|
|
$oCountry->getId() &&
|
|
|
|
$this->getConfig()->isMall() &&
|
|
|
|
$iNewShop > -1 &&
|
|
|
|
(
|
|
|
|
$iNewShop != $this->getConfig()->getShopId() ||
|
|
|
|
strtolower($this->getConfig()->getActiveView()->getClassName()) == 'mallstart'
|
|
|
|
)
|
|
|
|
)
|
2013-04-22 11:21:42 +02:00
|
|
|
{
|
|
|
|
$oNewConf = new oxConfig();
|
|
|
|
$oNewConf->setShopId($iNewShop);
|
|
|
|
$oNewConf->init();
|
|
|
|
|
|
|
|
$this->getConfig()->onShopChange();
|
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
if (!oxRegistry::getSession()->getVariable('d3isSetLang') &&
|
|
|
|
$this->_getModConfig()->getValue('blChangeLang') &&
|
|
|
|
$oCountry->getFieldData('d3geoiplang') > -1)
|
2013-04-22 11:40:11 +02:00
|
|
|
{
|
2013-04-22 11:21:42 +02:00
|
|
|
$sLangId = $oCountry->getFieldData('d3geoiplang');
|
2013-04-22 11:40:11 +02:00
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
else
|
2013-04-22 11:40:11 +02:00
|
|
|
{
|
2013-04-22 11:21:42 +02:00
|
|
|
$sLangId = '';
|
2013-04-22 11:40:11 +02:00
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
/** @var $oStr d3str */
|
|
|
|
$oStr = oxRegistry::get('d3str');
|
|
|
|
$aParams = array(
|
|
|
|
'd3redirect' => '1',
|
|
|
|
'fnc' => oxRegistry::getConfig()->getRequestParameter('fnc'),
|
|
|
|
'shp' => $iNewShop
|
|
|
|
);
|
|
|
|
$sUrl = str_replace('&', '&', $oStr->generateParameterUrl($oNewConf->getShopHomeUrl($sLangId), $aParams));
|
|
|
|
|
2013-12-17 16:53:28 +01:00
|
|
|
$this->_getLog()->log(d3log::INFO, __CLASS__, __FUNCTION__, __LINE__, 'change shop', $this->getIP().' => '.$sUrl);
|
2013-04-22 11:21:42 +02:00
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
header("Location: ".$sUrl);
|
2013-04-22 11:21:42 +02:00
|
|
|
exit();
|
|
|
|
}
|
2013-04-22 11:48:59 +02:00
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* check module active state and perform switching to user country specific url
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function performURLSwitch()
|
|
|
|
{
|
2013-04-22 11:40:11 +02:00
|
|
|
if (!$this->_getModConfig()->isActive() || !$this->_getModConfig()->getValue('blChangeURL'))
|
|
|
|
{
|
2013-04-22 11:21:42 +02:00
|
|
|
return;
|
2013-04-22 11:40:11 +02:00
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
$oCountry = $this->getUserLocationCountryObject();
|
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
if (!$this->isAdmin() &&
|
|
|
|
oxRegistry::getUtils()->isSearchEngine() === false &&
|
|
|
|
$oCountry->getId() &&
|
|
|
|
$oCountry->getFieldData('d3geoipurl') &&
|
|
|
|
strlen(trim($oCountry->getFieldData('d3geoipurl'))) > 0
|
|
|
|
)
|
2013-04-22 11:21:42 +02:00
|
|
|
{
|
|
|
|
$sNewUrl = $oCountry->getFieldData('d3geoipurl');
|
|
|
|
|
2013-12-17 16:53:28 +01:00
|
|
|
$this->_getLog()->log(d3log::INFO, __CLASS__, __FUNCTION__, __LINE__, 'change url', $this->getIP().' => '.$oCountry->getFieldData('d3geoipurl'));
|
2013-04-22 11:21:42 +02:00
|
|
|
|
|
|
|
header("Location: ".$sNewUrl);
|
|
|
|
exit();
|
|
|
|
}
|
2013-04-22 11:48:59 +02:00
|
|
|
|
|
|
|
stopProfile(__METHOD__);
|
2013-04-22 11:21:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get all shop urls
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getShopUrls()
|
|
|
|
{
|
2013-04-22 11:48:59 +02:00
|
|
|
startProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
$oShoplist = oxNew( 'oxshoplist' );
|
|
|
|
$oShoplist->getList();
|
|
|
|
$aShopUrls = array();
|
2013-04-22 11:40:11 +02:00
|
|
|
foreach ( $oShoplist as $sId => $oShop )
|
|
|
|
{
|
2013-04-22 11:21:42 +02:00
|
|
|
$aShopUrls[$sId] = $this->getConfig()->getShopConfVar( 'sMallShopURL', $sId );
|
|
|
|
}
|
|
|
|
|
2013-04-22 11:48:59 +02:00
|
|
|
stopProfile(__METHOD__);
|
|
|
|
|
2013-04-22 11:21:42 +02:00
|
|
|
return $aShopUrls;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get modcfg instance
|
|
|
|
*
|
2013-04-22 11:40:11 +02:00
|
|
|
* @return d3_cfg_mod
|
2013-04-22 11:21:42 +02:00
|
|
|
*/
|
|
|
|
protected function _getModConfig()
|
|
|
|
{
|
|
|
|
return d3_cfg_mod::get($this->_sModId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get d3log instance
|
|
|
|
*
|
2013-04-22 11:40:11 +02:00
|
|
|
* @return d3log
|
2013-04-22 11:21:42 +02:00
|
|
|
*/
|
|
|
|
protected function _getLog()
|
|
|
|
{
|
|
|
|
if (!$this->oD3Log)
|
2013-04-22 11:40:11 +02:00
|
|
|
{
|
|
|
|
$this->oD3Log = $this->_getModConfig()->getLog();
|
|
|
|
}
|
2013-04-22 11:21:42 +02:00
|
|
|
|
|
|
|
return $this->oD3Log;
|
|
|
|
}
|
2009-12-15 09:52:22 +01:00
|
|
|
}
|