| Server IP : 123.56.80.60 / Your IP : 216.73.216.33 Web Server : Apache/2.4.54 (Win32) OpenSSL/1.1.1s PHP/7.4.33 mod_fcgid/2.3.10-dev System : Windows NT iZhx3sob14hnz7Z 10.0 build 14393 (Windows Server 2016) i586 User : SYSTEM ( 0) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/site/20241224/spunner/wp-content/plugins/wp-statistics/ |
Upload File : |
<?php
/**
* Plugin Name: WP Statistics
* Plugin URI: https://wp-statistics.com/
* GitHub Plugin URI: https://github.com/wp-statistics/wp-statistics
* Description: Get website traffic insights with GDPR/CCPA compliant, privacy-friendly analytics. Includes visitor data, stunning graphs, and no data sharing.
* Version: 14.11.4
* Author: VeronaLabs
* Author URI: https://veronalabs.com/
* Text Domain: wp-statistics
* Domain Path: /languages
* Requires at least: 5.3
* Requires PHP: 7.2
* License: GPL-2.0+
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
# Exit if accessed directly
if (!defined('ABSPATH')) exit;
# Load Plugin Defines
require_once __DIR__ . '/includes/defines.php';
# Set another useful plugin define.
define('WP_STATISTICS_VERSION', '14.11.4');
# Load Plugin
if (!class_exists('WP_Statistics')) {
require_once WP_STATISTICS_DIR . 'includes/class-wp-statistics.php';
}
# Returns the main instance of WP Statistics.
function WP_Statistics()
{
return WP_Statistics::instance();
}
# Global for backwards compatibility.
$GLOBALS['WP_Statistics'] = WP_Statistics();