system/modules/sg-analytics-snippet/core/library/SgAnalyticsSnippet/SgAnalyticsSnippet.php line 65

Open in your IDE?
  1. <?php
  2. /**
  3.  * Contao Open Source CMS
  4.  *
  5.  * Copyright (c) 2005-2015 Leo Feyer
  6.  *
  7.  * @package   SgAnalyticsSnippet
  8.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  9.  * @license   EULA
  10.  * @copyright Sg-Medien GmbH 2017
  11.  */
  12. /**
  13.  * Set custom namespace
  14.  */
  15. namespace SgM;
  16. /**
  17.  * Class SgAnalyticsSnippet
  18.  *
  19.  * Base class for "SgAnalyticsSnippet".
  20.  *
  21.  * @package   SgAnalyticsSnippet
  22.  * @author    Sg-Medien GmbH <info@sg-medien.com>
  23.  * @copyright Sg-Medien GmbH 2017
  24.  */
  25. class SgAnalyticsSnippet {
  26.     /**
  27.      * Add analytics snippet to page
  28.      *
  29.      * @param string $strContent The current page html output.
  30.      *
  31.      * @return string The modified page html output.
  32.      *
  33.      */
  34.     public function addAnalyticsSnippet($strContent) {
  35.         $objRoot $this->getCurrentRootPage();
  36.         $objPage $this->getCurrentPage();
  37.         if ($objRoot->analytics_snippet) {
  38.             $strContent str_replace('</body>'$objRoot->analytics_snippet '</body>'$strContent);
  39.         }
  40.         return $strContent;
  41.     }
  42.     /**
  43.      * Get the current page and return it
  44.      * @return object
  45.      */
  46.     protected function getCurrentPage() {
  47.         global $objPage;
  48.         return $objPage;
  49.     }
  50.     /**
  51.      * Get the current root page and return it
  52.      * @return object
  53.      */
  54.     protected function getCurrentRootPage() {
  55.         global $objPage;
  56.         $strKey 'ADWORDS_SNIPPET_ROOT_' $objPage->rootId;
  57.         if (!\Cache::has($strKey))
  58.         {
  59.             \Cache::set($strKey\PageModel::findByPk($objPage->rootId));
  60.         }
  61.         return \Cache::get($strKey);
  62.     }
  63. }