HEX
Server: Apache
System: Linux zacp120.webway.host 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
User: govancoz (1003)
PHP: 8.3.26
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: //proc/self/cwd/wp-content/plugins/google-analytics-for-wordpress/lite/includes/license-compat.php
<?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;
	}
}