Exemplo n.º 1
0
 /**
  * get UTM history from clien cookies
  */
 private static function _getUtmHistory()
 {
     if (!empty($_COOKIE['gUTM_COOKIE'])) {
         self::$UTMHistory = (array) json_decode($_COOKIE['gUTM_COOKIE'], true);
     }
 }
Exemplo n.º 2
0
 /**
  * get UTM history from client cookies
  */
 private static function _getUtmHistory()
 {
     if (!empty($_COOKIE['gUTM_COOKIE'])) {
         self::$UTMHistory = json_decode(stripslashes($_COOKIE['gUTM_COOKIE']), true);
     }
 }