<?php
/**
* Contao Open Source CMS
*
* Copyright (c) 2005-2015 Leo Feyer
*
* @package SgAnalyticsSnippet
* @author Sg-Medien GmbH <info@sg-medien.com>
* @license EULA
* @copyright Sg-Medien GmbH 2017
*/
/**
* Set custom namespace
*/
namespace SgM;
/**
* Class SgAnalyticsSnippet
*
* Base class for "SgAnalyticsSnippet".
*
* @package SgAnalyticsSnippet
* @author Sg-Medien GmbH <info@sg-medien.com>
* @copyright Sg-Medien GmbH 2017
*/
class SgAnalyticsSnippet {
/**
* Add analytics snippet to page
*
* @param string $strContent The current page html output.
*
* @return string The modified page html output.
*
*/
public function addAnalyticsSnippet($strContent) {
$objRoot = $this->getCurrentRootPage();
$objPage = $this->getCurrentPage();
if ($objRoot->analytics_snippet) {
$strContent = str_replace('</body>', $objRoot->analytics_snippet . '</body>', $strContent);
}
return $strContent;
}
/**
* Get the current page and return it
* @return object
*/
protected function getCurrentPage() {
global $objPage;
return $objPage;
}
/**
* Get the current root page and return it
* @return object
*/
protected function getCurrentRootPage() {
global $objPage;
$strKey = 'ADWORDS_SNIPPET_ROOT_' . $objPage->rootId;
if (!\Cache::has($strKey))
{
\Cache::set($strKey, \PageModel::findByPk($objPage->rootId));
}
return \Cache::get($strKey);
}
}