| Server IP : 198.38.94.67 / Your IP : 216.73.217.142 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/google-analytics-for-wordpress/lite/includes/ |
Upload File : |
<?php
/**
* This class is used to prevent fatal errors in legacy code
* that others have written based on testing we've done.
*
* @package MonsterInsights
*/
/**
* Class MonsterInsights_License_Compat
*/
class MonsterInsights_License_Compat {
/**
* MonsterInsights_License_Shim constructor.
*/
public function __construct() {
}
/**
* @return string
*/
public function get_license_type() {
return 'lite';
}
/**
* @return string
*/
public function get_site_license_type() {
return '';
}
/**
* @return string
*/
public function get_site_license_key() {
return '';
}
/**
* @return string
*/
public function get_network_license_type() {
return '';
}
/**
* @return string
*/
public function get_network_license_key() {
return '';
}
/**
* @return string
*/
public function get_license_key() {
return '';
}
/**
* Mimic the license expiration check for the lite version.
* On lite we don't have a license key so we can't check if it's expired.
*
* @return bool
*/
public function license_expired() {
return false;
}
public function is_agency() {
return false;
}
}