@@ -15,12 +15,12 @@ discard block |
||
| 15 | 15 | * |
| 16 | 16 | */ |
| 17 | 17 | |
| 18 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 18 | +if ( ! defined('ABSPATH')) { |
|
| 19 | 19 | exit; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | -if ( ! function_exists( 'woothemes_queue_update' ) ) { |
|
| 23 | - require_once( 'woo-includes/woo-functions.php' ); |
|
| 22 | +if ( ! function_exists('woothemes_queue_update')) { |
|
| 23 | + require_once('woo-includes/woo-functions.php'); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |
@@ -30,24 +30,24 @@ discard block |
||
| 30 | 30 | * @return string |
| 31 | 31 | */ |
| 32 | 32 | function woocommerce_stripe_missing_wc_notice() { |
| 33 | - echo '<div class="error"><p><strong>' . sprintf( esc_html__( 'Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe' ), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>' ) . '</strong></p></div>'; |
|
| 33 | + echo '<div class="error"><p><strong>' . sprintf(esc_html__('Stripe requires WooCommerce to be installed and active. You can download %s here.', 'woocommerce-gateway-stripe'), '<a href="https://woocommerce.com/" target="_blank">WooCommerce</a>') . '</strong></p></div>'; |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | -if ( ! is_woocommerce_active() ) { |
|
| 37 | - add_action( 'admin_notices', 'woocommerce_stripe_missing_wc_notice' ); |
|
| 36 | +if ( ! is_woocommerce_active()) { |
|
| 37 | + add_action('admin_notices', 'woocommerce_stripe_missing_wc_notice'); |
|
| 38 | 38 | return; |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | -if ( ! class_exists( 'WC_Stripe' ) ) : |
|
| 41 | +if ( ! class_exists('WC_Stripe')) : |
|
| 42 | 42 | /** |
| 43 | 43 | * Required minimums and constants |
| 44 | 44 | */ |
| 45 | - define( 'WC_STRIPE_VERSION', '4.1.1' ); |
|
| 46 | - define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' ); |
|
| 47 | - define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' ); |
|
| 48 | - define( 'WC_STRIPE_MAIN_FILE', __FILE__ ); |
|
| 49 | - define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) ); |
|
| 50 | - define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); |
|
| 45 | + define('WC_STRIPE_VERSION', '4.1.1'); |
|
| 46 | + define('WC_STRIPE_MIN_PHP_VER', '5.6.0'); |
|
| 47 | + define('WC_STRIPE_MIN_WC_VER', '2.6.0'); |
|
| 48 | + define('WC_STRIPE_MAIN_FILE', __FILE__); |
|
| 49 | + define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)))); |
|
| 50 | + define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__))); |
|
| 51 | 51 | |
| 52 | 52 | class WC_Stripe { |
| 53 | 53 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | * @return Singleton The *Singleton* instance. |
| 68 | 68 | */ |
| 69 | 69 | public static function get_instance() { |
| 70 | - if ( null === self::$instance ) { |
|
| 70 | + if (null === self::$instance) { |
|
| 71 | 71 | self::$instance = new self(); |
| 72 | 72 | } |
| 73 | 73 | return self::$instance; |
@@ -94,8 +94,8 @@ discard block |
||
| 94 | 94 | * *Singleton* via the `new` operator from outside of this class. |
| 95 | 95 | */ |
| 96 | 96 | private function __construct() { |
| 97 | - add_action( 'admin_init', array( $this, 'install' ) ); |
|
| 98 | - add_action( 'plugins_loaded', array( $this, 'init' ) ); |
|
| 97 | + add_action('admin_init', array($this, 'install')); |
|
| 98 | + add_action('plugins_loaded', array($this, 'init')); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | /** |
@@ -105,46 +105,46 @@ discard block |
||
| 105 | 105 | * @version 4.0.0 |
| 106 | 106 | */ |
| 107 | 107 | public function init() { |
| 108 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' ); |
|
| 109 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' ); |
|
| 110 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' ); |
|
| 111 | - include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' ); |
|
| 108 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-exception.php'); |
|
| 109 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-logger.php'); |
|
| 110 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-helper.php'); |
|
| 111 | + include_once(dirname(__FILE__) . '/includes/class-wc-stripe-api.php'); |
|
| 112 | 112 | |
| 113 | - load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' ); |
|
| 113 | + load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages'); |
|
| 114 | 114 | |
| 115 | - require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' ); |
|
| 116 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' ); |
|
| 117 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' ); |
|
| 118 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' ); |
|
| 119 | - require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' ); |
|
| 120 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' ); |
|
| 121 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' ); |
|
| 122 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' ); |
|
| 123 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' ); |
|
| 124 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' ); |
|
| 125 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' ); |
|
| 126 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' ); |
|
| 127 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' ); |
|
| 128 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' ); |
|
| 129 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php' ); |
|
| 130 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' ); |
|
| 131 | - require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' ); |
|
| 132 | - require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' ); |
|
| 133 | - require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' ); |
|
| 134 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' ); |
|
| 135 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' ); |
|
| 136 | - require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' ); |
|
| 115 | + require_once(dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php'); |
|
| 116 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php'); |
|
| 117 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php'); |
|
| 118 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php'); |
|
| 119 | + require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php'); |
|
| 120 | + require_once(dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php'); |
|
| 121 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php'); |
|
| 122 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php'); |
|
| 123 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php'); |
|
| 124 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php'); |
|
| 125 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php'); |
|
| 126 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php'); |
|
| 127 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php'); |
|
| 128 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php'); |
|
| 129 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php'); |
|
| 130 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php'); |
|
| 131 | + require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php'); |
|
| 132 | + require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php'); |
|
| 133 | + require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php'); |
|
| 134 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php'); |
|
| 135 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php'); |
|
| 136 | + require_once(dirname(__FILE__) . '/includes/class-wc-stripe-customer.php'); |
|
| 137 | 137 | |
| 138 | - if ( is_admin() ) { |
|
| 139 | - require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' ); |
|
| 138 | + if (is_admin()) { |
|
| 139 | + require_once(dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php'); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | // REMOVE IN THE FUTURE. |
| 143 | - require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' ); |
|
| 143 | + require_once(dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php'); |
|
| 144 | 144 | |
| 145 | - add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) ); |
|
| 146 | - add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) ); |
|
| 147 | - add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) ); |
|
| 145 | + add_filter('woocommerce_payment_gateways', array($this, 'add_gateways')); |
|
| 146 | + add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links')); |
|
| 147 | + add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin')); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | 150 | /** |
@@ -154,8 +154,8 @@ discard block |
||
| 154 | 154 | * @version 4.0.0 |
| 155 | 155 | */ |
| 156 | 156 | public function update_plugin_version() { |
| 157 | - delete_option( 'wc_stripe_version' ); |
|
| 158 | - update_option( 'wc_stripe_version', WC_STRIPE_VERSION ); |
|
| 157 | + delete_option('wc_stripe_version'); |
|
| 158 | + update_option('wc_stripe_version', WC_STRIPE_VERSION); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |
@@ -165,15 +165,15 @@ discard block |
||
| 165 | 165 | * @version 3.1.0 |
| 166 | 166 | */ |
| 167 | 167 | public function install() { |
| 168 | - if ( ! is_plugin_active( plugin_basename( __FILE__ ) ) ) { |
|
| 168 | + if ( ! is_plugin_active(plugin_basename(__FILE__))) { |
|
| 169 | 169 | return; |
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) { |
|
| 173 | - do_action( 'woocommerce_stripe_updated' ); |
|
| 172 | + if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) { |
|
| 173 | + do_action('woocommerce_stripe_updated'); |
|
| 174 | 174 | |
| 175 | - if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) { |
|
| 176 | - define( 'WC_STRIPE_INSTALLING', true ); |
|
| 175 | + if ( ! defined('WC_STRIPE_INSTALLING')) { |
|
| 176 | + define('WC_STRIPE_INSTALLING', true); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | $this->update_plugin_version(); |
@@ -186,13 +186,13 @@ discard block |
||
| 186 | 186 | * @since 1.0.0 |
| 187 | 187 | * @version 4.0.0 |
| 188 | 188 | */ |
| 189 | - public function plugin_action_links( $links ) { |
|
| 189 | + public function plugin_action_links($links) { |
|
| 190 | 190 | $plugin_links = array( |
| 191 | - '<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>', |
|
| 192 | - '<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>', |
|
| 193 | - '<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>', |
|
| 191 | + '<a href="admin.php?page=wc-settings&tab=checkout§ion=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>', |
|
| 192 | + '<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>', |
|
| 193 | + '<a href="https://woocommerce.com/contact-us/">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>', |
|
| 194 | 194 | ); |
| 195 | - return array_merge( $plugin_links, $links ); |
|
| 195 | + return array_merge($plugin_links, $links); |
|
| 196 | 196 | } |
| 197 | 197 | |
| 198 | 198 | /** |
@@ -201,8 +201,8 @@ discard block |
||
| 201 | 201 | * @since 1.0.0 |
| 202 | 202 | * @version 4.0.0 |
| 203 | 203 | */ |
| 204 | - public function add_gateways( $methods ) { |
|
| 205 | - if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) { |
|
| 204 | + public function add_gateways($methods) { |
|
| 205 | + if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) { |
|
| 206 | 206 | $methods[] = 'WC_Stripe_Subs_Compat'; |
| 207 | 207 | $methods[] = 'WC_Stripe_Sepa_Subs_Compat'; |
| 208 | 208 | } else { |
@@ -229,30 +229,30 @@ discard block |
||
| 229 | 229 | * @since 4.0.0 |
| 230 | 230 | * @version 4.0.0 |
| 231 | 231 | */ |
| 232 | - public function filter_gateway_order_admin( $sections ) { |
|
| 233 | - unset( $sections['stripe'] ); |
|
| 234 | - unset( $sections['stripe_bancontact'] ); |
|
| 235 | - unset( $sections['stripe_sofort'] ); |
|
| 236 | - unset( $sections['stripe_giropay'] ); |
|
| 237 | - unset( $sections['stripe_eps'] ); |
|
| 238 | - unset( $sections['stripe_ideal'] ); |
|
| 239 | - unset( $sections['stripe_p24'] ); |
|
| 240 | - unset( $sections['stripe_alipay'] ); |
|
| 241 | - unset( $sections['stripe_sepa'] ); |
|
| 242 | - unset( $sections['stripe_bitcoin'] ); |
|
| 243 | - unset( $sections['stripe_multibanco'] ); |
|
| 232 | + public function filter_gateway_order_admin($sections) { |
|
| 233 | + unset($sections['stripe']); |
|
| 234 | + unset($sections['stripe_bancontact']); |
|
| 235 | + unset($sections['stripe_sofort']); |
|
| 236 | + unset($sections['stripe_giropay']); |
|
| 237 | + unset($sections['stripe_eps']); |
|
| 238 | + unset($sections['stripe_ideal']); |
|
| 239 | + unset($sections['stripe_p24']); |
|
| 240 | + unset($sections['stripe_alipay']); |
|
| 241 | + unset($sections['stripe_sepa']); |
|
| 242 | + unset($sections['stripe_bitcoin']); |
|
| 243 | + unset($sections['stripe_multibanco']); |
|
| 244 | 244 | |
| 245 | 245 | $sections['stripe'] = 'Stripe'; |
| 246 | - $sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' ); |
|
| 247 | - $sections['stripe_sofort'] = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' ); |
|
| 248 | - $sections['stripe_giropay'] = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' ); |
|
| 249 | - $sections['stripe_eps'] = __( 'Stripe EPS', 'woocommerce-gateway-stripe' ); |
|
| 250 | - $sections['stripe_ideal'] = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' ); |
|
| 251 | - $sections['stripe_p24'] = __( 'Stripe P24', 'woocommerce-gateway-stripe' ); |
|
| 252 | - $sections['stripe_alipay'] = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' ); |
|
| 253 | - $sections['stripe_sepa'] = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' ); |
|
| 254 | - $sections['stripe_bitcoin'] = __( 'Stripe Bitcoin', 'woocommerce-gateway-stripe' ); |
|
| 255 | - $sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' ); |
|
| 246 | + $sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe'); |
|
| 247 | + $sections['stripe_sofort'] = __('Stripe SOFORT', 'woocommerce-gateway-stripe'); |
|
| 248 | + $sections['stripe_giropay'] = __('Stripe Giropay', 'woocommerce-gateway-stripe'); |
|
| 249 | + $sections['stripe_eps'] = __('Stripe EPS', 'woocommerce-gateway-stripe'); |
|
| 250 | + $sections['stripe_ideal'] = __('Stripe iDeal', 'woocommerce-gateway-stripe'); |
|
| 251 | + $sections['stripe_p24'] = __('Stripe P24', 'woocommerce-gateway-stripe'); |
|
| 252 | + $sections['stripe_alipay'] = __('Stripe Alipay', 'woocommerce-gateway-stripe'); |
|
| 253 | + $sections['stripe_sepa'] = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe'); |
|
| 254 | + $sections['stripe_bitcoin'] = __('Stripe Bitcoin', 'woocommerce-gateway-stripe'); |
|
| 255 | + $sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe'); |
|
| 256 | 256 | |
| 257 | 257 | return $sections; |
| 258 | 258 | } |
@@ -2,13 +2,13 @@ |
||
| 2 | 2 | /** |
| 3 | 3 | * Functions used by plugins |
| 4 | 4 | */ |
| 5 | -if ( ! class_exists( 'WC_Dependencies' ) ) |
|
| 5 | +if ( ! class_exists('WC_Dependencies')) |
|
| 6 | 6 | require_once 'class-wc-dependencies.php'; |
| 7 | 7 | |
| 8 | 8 | /** |
| 9 | 9 | * WC Detection |
| 10 | 10 | */ |
| 11 | -if ( ! function_exists( 'is_woocommerce_active' ) ) { |
|
| 11 | +if ( ! function_exists('is_woocommerce_active')) { |
|
| 12 | 12 | function is_woocommerce_active() { |
| 13 | 13 | return WC_Dependencies::woocommerce_active_check(); |
| 14 | 14 | } |
@@ -2,8 +2,9 @@ |
||
| 2 | 2 | /** |
| 3 | 3 | * Functions used by plugins |
| 4 | 4 | */ |
| 5 | -if ( ! class_exists( 'WC_Dependencies' ) ) |
|
| 5 | +if ( ! class_exists( 'WC_Dependencies' ) ) { |
|
| 6 | 6 | require_once 'class-wc-dependencies.php'; |
| 7 | +} |
|
| 7 | 8 | |
| 8 | 9 | /** |
| 9 | 10 | * WC Detection |
@@ -10,17 +10,17 @@ |
||
| 10 | 10 | |
| 11 | 11 | public static function init() { |
| 12 | 12 | |
| 13 | - self::$active_plugins = (array) get_option( 'active_plugins', array() ); |
|
| 13 | + self::$active_plugins = (array) get_option('active_plugins', array()); |
|
| 14 | 14 | |
| 15 | - if ( is_multisite() ) |
|
| 16 | - self::$active_plugins = array_merge( self::$active_plugins, get_site_option( 'active_sitewide_plugins', array() ) ); |
|
| 15 | + if (is_multisite()) |
|
| 16 | + self::$active_plugins = array_merge(self::$active_plugins, get_site_option('active_sitewide_plugins', array())); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | public static function woocommerce_active_check() { |
| 20 | 20 | |
| 21 | - if ( ! self::$active_plugins ) self::init(); |
|
| 21 | + if ( ! self::$active_plugins) self::init(); |
|
| 22 | 22 | |
| 23 | - return in_array( 'woocommerce/woocommerce.php', self::$active_plugins ) || array_key_exists( 'woocommerce/woocommerce.php', self::$active_plugins ); |
|
| 23 | + return in_array('woocommerce/woocommerce.php', self::$active_plugins) || array_key_exists('woocommerce/woocommerce.php', self::$active_plugins); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | } |
@@ -12,13 +12,16 @@ |
||
| 12 | 12 | |
| 13 | 13 | self::$active_plugins = (array) get_option( 'active_plugins', array() ); |
| 14 | 14 | |
| 15 | - if ( is_multisite() ) |
|
| 16 | - self::$active_plugins = array_merge( self::$active_plugins, get_site_option( 'active_sitewide_plugins', array() ) ); |
|
| 15 | + if ( is_multisite() ) { |
|
| 16 | + self::$active_plugins = array_merge( self::$active_plugins, get_site_option( 'active_sitewide_plugins', array() ) ); |
|
| 17 | + } |
|
| 17 | 18 | } |
| 18 | 19 | |
| 19 | 20 | public static function woocommerce_active_check() { |
| 20 | 21 | |
| 21 | - if ( ! self::$active_plugins ) self::init(); |
|
| 22 | + if ( ! self::$active_plugins ) { |
|
| 23 | + self::init(); |
|
| 24 | + } |
|
| 22 | 25 | |
| 23 | 26 | return in_array( 'woocommerce/woocommerce.php', self::$active_plugins ) || array_key_exists( 'woocommerce/woocommerce.php', self::$active_plugins ); |
| 24 | 27 | } |