. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 198.54.115.242 / Your IP :
216.73.216.33 [
Web Server : LiteSpeed System : Linux server233.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64 User : imereohc ( 2529) PHP Version : 8.2.30 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/imereohc/test.imera.ai/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
/**
* W3TC Referrer detection
*/
define( 'W3TC_REFERRER_COOKIE_NAME', 'w3tc_referrer' );
/**
* class Referrer
*/
class Mobile_Referrer extends Mobile_Base {
/**
* PHP5-style constructor
*/
function __construct() {
parent::__construct( 'referrer.rgroups', 'referrers' );
}
/**
* Returns HTTP referrer value
*
* @return string
*/
function get_http_referrer() {
$http_referrer = '';
if ( $this->has_enabled_groups() ) {
if ( isset( $_COOKIE[W3TC_REFERRER_COOKIE_NAME] ) ) {
$http_referrer = $_COOKIE[W3TC_REFERRER_COOKIE_NAME];
} elseif ( isset( $_SERVER['HTTP_REFERER'] ) ) {
$http_referrer = $_SERVER['HTTP_REFERER'];
setcookie( W3TC_REFERRER_COOKIE_NAME, $http_referrer, 0,
'/' /* not defined yet Util_Environment::network_home_url_uri()*/ );
}
} elseif ( isset( $_COOKIE[W3TC_REFERRER_COOKIE_NAME] ) ) {
setcookie( W3TC_REFERRER_COOKIE_NAME, '', 1 );
}
return $http_referrer;
}
function group_verifier( $group_compare_value ) {
static $http_referrer = null;
if ( is_null( $http_referrer ) )
$http_referrer = $this->get_http_referrer();
return $http_referrer && preg_match( '~' . $group_compare_value . '~i', $http_referrer );
}
function do_get_group() {
return $this->get_http_referrer();
}
}