| Server IP : 80.74.154.100 / Your IP : 216.73.217.0 Web Server : Apache System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : onlineadmin ( 10487) PHP Version : 8.5.7 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/httpd/vhosts/comeonline.ch/httpdocs/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.16.10
* Author: VeronaLabs
* Author URI: https://veronalabs.com/
* Text Domain: wp-statistics
* Domain Path: /languages
* Requires at least: 6.6
* Requires PHP: 7.4
* 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.16.10');
# 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();