Server : nginx/1.24.0 System : Linux ip-172-31-33-48 6.14.0-1011-aws #11~24.04.1-Ubuntu SMP Fri Aug 1 02:07:25 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE Directory : /var/www/html/wp-content/google-analytics-for-wordpress.off/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; } }