forked from wp-statistics/wp-statistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp-statistics.php
35 lines (29 loc) · 1004 Bytes
/
wp-statistics.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* Plugin Name: WP Statistics
* Plugin URI: https://wp-statistics.com/
* Description: This plugin gives you the complete information on your website's visitors.
* Version: 14.5
* Author: VeronaLabs
* Author URI: https://veronalabs.com/
* Text Domain: wp-statistics
* Domain Path: /languages
*/
# Exit if accessed directly
if (!defined('ABSPATH')) exit;
# Load Plugin Defines
require_once __DIR__ . '/includes/defines.php';
# Include some empty class to make sure they are existed while upgrading plugin.
require_once WP_STATISTICS_DIR . 'includes/class-wp-statistics-updates.php';
require_once WP_STATISTICS_DIR . 'includes/class-wp-statistics-welcome.php';
# 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();