| Conditions | 4 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | static function init() { |
||
| 14 | if ( is_admin() ) { |
||
| 15 | return; |
||
| 16 | } |
||
| 17 | if ( ! Jetpack::is_active() ) { |
||
| 18 | return; |
||
| 19 | } |
||
| 20 | if ( ! in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { |
||
| 21 | return; |
||
| 22 | } |
||
| 23 | Jetpack_Stats::woocommerce_loaded(); |
||
| 24 | // add_action( ‘woocommerce_init’, array( $this, ‘woocommerce_loaded’ ) ); |
||
| 25 | } |
||
| 26 | } |
||
| 29 |