blob: 3413ef073ad7862184f17cbe691342cde0ec28d8 (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?php
/**
* Jetpack_WooCommerce_Analytics is ported from the Jetpack_Google_Analytics code.
*
* @package Jetpack
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
require_once plugin_basename( 'classes/wp-woocommerce-analytics-universal.php' );
/**
* Class Jetpack_WooCommerce_Analytics
* Instantiate WooCommerce Analytics
*/
class Jetpack_WooCommerce_Analytics {
/**
* Instance of this class
*
* @var Jetpack_WooCommerce_Analytics - Static property to hold our singleton instance
*/
private static $instance = false;
/**
* Instance of the Universal functions
*
* @var Static property to hold concrete analytics impl that does the work (universal or legacy)
*/
private static $analytics = false;
/**
* WooCommerce Analytics is only available to Jetpack connected WooCommerce stores with both plugins set to active
* and WooCommerce version 3.0 or higher
*
* @return bool
*/
public static function shouldTrackStore() {
// Tracking only Site pages
if ( is_admin() ) {
return false;
}
// Don't track site admins
if ( is_user_logged_in() && in_array( 'administrator', wp_get_current_user()->roles ) ) {
return false;
}
// Make sure Jetpack is installed and active
if ( ! Jetpack::is_active() ) {
return false;
}
/**
* Make sure WooCommerce is installed and active
*
* This action is documented in https://docs.woocommerce.com/document/create-a-plugin
*/
if ( ! in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', Jetpack::get_active_plugins() ) ) ) {
return false;
}
// Ensure the WooCommerce class exists and is a valid version
$minimum_woocommerce_active = class_exists( 'WooCommerce' ) && version_compare( WC_VERSION, '3.0', '>=' );
if ( ! $minimum_woocommerce_active ) {
return false;
}
return true;
}
/**
* This is our constructor, which is private to force the use of get_instance()
*
* @return void
*/
private function __construct() {
$analytics = new Jetpack_WooCommerce_Analytics_Universal();
}
/**
* Function to instantiate our class and make it a singleton
*/
public static function get_instance() {
if ( ! self::shouldTrackStore() ) {
return;
}
if ( ! self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
}
global $jetpack_woocommerce_analytics;
$jetpack_woocommerce_analytics = Jetpack_WooCommerce_Analytics::get_instance();
|