22 lines
600 B
PHP
22 lines
600 B
PHP
<?php
|
|
|
|
class d3_oxcmp_utils_googleAnalytics extends d3_oxcmp_utils_googleAnalytics_parent
|
|
{
|
|
private $_sModId = 'd3_googleanalytics';
|
|
|
|
private $_oSet;
|
|
|
|
public function render()
|
|
{
|
|
$ret = parent::render();
|
|
|
|
// load module config
|
|
$this->_oSet = oxNew('d3_cfg_mod');
|
|
$this->_oSet->Load($this->_oSet->getModOxid($this->_sModId), true);
|
|
|
|
$this->_oParent->addTplParam('blD3GoogleAnalyticsActive', $this->_oSet->getFieldData('oxactive'));
|
|
$this->_oParent->addTplParam('oD3GASettings', $this->_oSet);
|
|
|
|
return $ret;
|
|
}
|
|
} |