. * * @link http://www.oxidmodule.com * @link http://www.shopmodule.com * @link http://www.aikme.de * @copyright (C) D3 Data Development (Inh. Thomas Dartsch) & aikme GmbH */ class d3_order_googleanalytics extends d3_order_googleanalytics_parent { public function init() { parent::init(); $this->_d3SetIsNewCustomer(); } protected function _d3SetIsNewCustomer() { $oUser = $this->getUser(); $isNewCustomer = (isset($oUser) && $oUser instanceof oxuser) ? $oUser->inGroup('oxidnotyetordered') : 0 ; oxRegistry::getSession()->setVariable('iD3GANewCustomer', (int)$isNewCustomer); } }