diff options
author | Yury German <blueknight@gentoo.org> | 2022-01-23 18:37:36 -0500 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2022-01-23 18:37:36 -0500 |
commit | f18b23a3a9378fb0a98856d436aa9ebf94e47429 (patch) | |
tree | e418433e22854ebd2d77eaa869d5d0470a973317 /plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php | |
parent | Add classic-editor 1.5 (diff) | |
download | blogs-gentoo-f18b23a3a9378fb0a98856d436aa9ebf94e47429.tar.gz blogs-gentoo-f18b23a3a9378fb0a98856d436aa9ebf94e47429.tar.bz2 blogs-gentoo-f18b23a3a9378fb0a98856d436aa9ebf94e47429.zip |
Updating Classic Editor, Google Authenticatior, Jetpack, Public Post Preview, Table of Contents, Wordpress Importer
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php')
-rw-r--r-- | plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php b/plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php new file mode 100644 index 00000000..5782378f --- /dev/null +++ b/plugins/jetpack/modules/woocommerce-analytics/class-jetpack-woocommerce-analytics.php @@ -0,0 +1,94 @@ +<?php +/** + * Jetpack_WooCommerce_Analytics is ported from the Jetpack_Google_Analytics code. + * + * @package automattic/jetpack + */ + +if ( ! defined( 'ABSPATH' ) ) { + exit; +} + +require_once plugin_basename( 'classes/class-jetpack-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 should_track_store() { + /** + * 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() ), true ) ) { + return false; + } + // 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, true ) ) { + return false; + } + // Make sure Jetpack is installed and connected. + if ( ! Jetpack::is_connection_ready() ) { + 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() { + self::$analytics = new Jetpack_WooCommerce_Analytics_Universal(); + } + + /** + * Function to instantiate our class and make it a singleton + */ + public static function get_instance() { + if ( ! self::should_track_store() ) { + return; + } + if ( ! self::$instance ) { + self::$instance = new self(); + } + + return self::$instance; + } +} + +global $jetpack_woocommerce_analytics; +$jetpack_woocommerce_analytics = Jetpack_WooCommerce_Analytics::get_instance(); |