Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
PUM_GA::get_uuid()
Get PUM_GA uuid.
Description Description
Warning: Array to string conversion in /mnt/data/home/502433.cloudwaysapps.com/rhbymdevka/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 808
Return Return
(mixed|string)
Source Source
File: classes/GA.php
public static function get_uuid() { static $uuid; if ( ! isset( $uuid ) ) { $cookie = self::parse_cookie(); if ( is_array( $cookie ) && ! empty( $cookie['cid'] ) ) { $uuid = $cookie['cid']; } else { $uuid = self::generate_uuid(); } } return $uuid; }
Expand full source code Collapse full source code View on Trac