| Conditions | 5 |
| Paths | 5 |
| Total Lines | 18 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | static function init() { |
||
| 19 | // Tracking only Site pages |
||
| 20 | if ( is_admin() ) { |
||
| 21 | return; |
||
| 22 | } |
||
| 23 | // Make sure Jetpack is installed and active |
||
| 24 | if ( ! Jetpack::is_active() ) { |
||
| 25 | return; |
||
| 26 | } |
||
| 27 | // Make sure WooCommerce is installed and active |
||
| 28 | if ( ! in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { |
||
| 29 | return; |
||
| 30 | } |
||
| 31 | if ( is_null( self::$instance ) ) { |
||
| 32 | self::$instance = new WC_Stats(); |
||
| 33 | } |
||
| 34 | return self::$instance; |
||
| 35 | } |
||
| 36 | |||
| 56 |