@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @since 4.0.0 |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
@@ -71,36 +71,36 @@ discard block |
||
71 | 71 | */ |
72 | 72 | public function __construct() { |
73 | 73 | self::$_this = $this; |
74 | - $this->stripe_settings = get_option( 'woocommerce_stripe_settings', array() ); |
|
75 | - $this->testmode = ( ! empty( $this->stripe_settings['testmode'] ) && 'yes' === $this->stripe_settings['testmode'] ) ? true : false; |
|
76 | - $this->publishable_key = ! empty( $this->stripe_settings['publishable_key'] ) ? $this->stripe_settings['publishable_key'] : ''; |
|
77 | - $this->secret_key = ! empty( $this->stripe_settings['secret_key'] ) ? $this->stripe_settings['secret_key'] : ''; |
|
78 | - $this->stripe_checkout_enabled = isset( $this->stripe_settings['stripe_checkout'] ) && 'yes' === $this->stripe_settings['stripe_checkout']; |
|
79 | - $this->total_label = ! empty( $this->stripe_settings['statement_descriptor'] ) ? WC_Stripe_Helper::clean_statement_descriptor( $this->stripe_settings['statement_descriptor'] ) : ''; |
|
74 | + $this->stripe_settings = get_option('woocommerce_stripe_settings', array()); |
|
75 | + $this->testmode = ( ! empty($this->stripe_settings['testmode']) && 'yes' === $this->stripe_settings['testmode']) ? true : false; |
|
76 | + $this->publishable_key = ! empty($this->stripe_settings['publishable_key']) ? $this->stripe_settings['publishable_key'] : ''; |
|
77 | + $this->secret_key = ! empty($this->stripe_settings['secret_key']) ? $this->stripe_settings['secret_key'] : ''; |
|
78 | + $this->stripe_checkout_enabled = isset($this->stripe_settings['stripe_checkout']) && 'yes' === $this->stripe_settings['stripe_checkout']; |
|
79 | + $this->total_label = ! empty($this->stripe_settings['statement_descriptor']) ? WC_Stripe_Helper::clean_statement_descriptor($this->stripe_settings['statement_descriptor']) : ''; |
|
80 | 80 | |
81 | - if ( $this->testmode ) { |
|
82 | - $this->publishable_key = ! empty( $this->stripe_settings['test_publishable_key'] ) ? $this->stripe_settings['test_publishable_key'] : ''; |
|
83 | - $this->secret_key = ! empty( $this->stripe_settings['test_secret_key'] ) ? $this->stripe_settings['test_secret_key'] : ''; |
|
81 | + if ($this->testmode) { |
|
82 | + $this->publishable_key = ! empty($this->stripe_settings['test_publishable_key']) ? $this->stripe_settings['test_publishable_key'] : ''; |
|
83 | + $this->secret_key = ! empty($this->stripe_settings['test_secret_key']) ? $this->stripe_settings['test_secret_key'] : ''; |
|
84 | 84 | } |
85 | 85 | |
86 | - $this->total_label = str_replace( "'", '', $this->total_label ) . apply_filters( 'wc_stripe_payment_request_total_label_suffix', ' (via WooCommerce)' ); |
|
86 | + $this->total_label = str_replace("'", '', $this->total_label) . apply_filters('wc_stripe_payment_request_total_label_suffix', ' (via WooCommerce)'); |
|
87 | 87 | |
88 | 88 | // Checks if Stripe Gateway is enabled. |
89 | - if ( empty( $this->stripe_settings ) || ( isset( $this->stripe_settings['enabled'] ) && 'yes' !== $this->stripe_settings['enabled'] ) ) { |
|
89 | + if (empty($this->stripe_settings) || (isset($this->stripe_settings['enabled']) && 'yes' !== $this->stripe_settings['enabled'])) { |
|
90 | 90 | return; |
91 | 91 | } |
92 | 92 | |
93 | 93 | // Checks if Payment Request is enabled. |
94 | - if ( ! isset( $this->stripe_settings['payment_request'] ) || 'yes' !== $this->stripe_settings['payment_request'] ) { |
|
94 | + if ( ! isset($this->stripe_settings['payment_request']) || 'yes' !== $this->stripe_settings['payment_request']) { |
|
95 | 95 | return; |
96 | 96 | } |
97 | 97 | |
98 | 98 | // Don't load for change payment method page. |
99 | - if ( isset( $_GET['change_payment_method'] ) ) { |
|
99 | + if (isset($_GET['change_payment_method'])) { |
|
100 | 100 | return; |
101 | 101 | } |
102 | 102 | |
103 | - add_action( 'template_redirect', array( $this, 'set_session' ) ); |
|
103 | + add_action('template_redirect', array($this, 'set_session')); |
|
104 | 104 | $this->init(); |
105 | 105 | } |
106 | 106 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @return bool |
112 | 112 | */ |
113 | 113 | public function are_keys_set() { |
114 | - if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) { |
|
114 | + if (empty($this->secret_key) || empty($this->publishable_key)) { |
|
115 | 115 | return false; |
116 | 116 | } |
117 | 117 | |
@@ -135,18 +135,18 @@ discard block |
||
135 | 135 | * @since 4.0.0 |
136 | 136 | */ |
137 | 137 | public function set_session() { |
138 | - if ( ! is_product() || ( isset( WC()->session ) && WC()->session->has_session() ) ) { |
|
138 | + if ( ! is_product() || (isset(WC()->session) && WC()->session->has_session())) { |
|
139 | 139 | return; |
140 | 140 | } |
141 | 141 | |
142 | - $session_class = apply_filters( 'woocommerce_session_handler', 'WC_Session_Handler' ); |
|
142 | + $session_class = apply_filters('woocommerce_session_handler', 'WC_Session_Handler'); |
|
143 | 143 | $wc_session = new $session_class(); |
144 | 144 | |
145 | - if ( version_compare( WC_VERSION, '3.3', '>=' ) ) { |
|
145 | + if (version_compare(WC_VERSION, '3.3', '>=')) { |
|
146 | 146 | $wc_session->init(); |
147 | 147 | } |
148 | 148 | |
149 | - $wc_session->set_customer_session_cookie( true ); |
|
149 | + $wc_session->set_customer_session_cookie(true); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | /** |
@@ -156,40 +156,40 @@ discard block |
||
156 | 156 | * @version 4.0.0 |
157 | 157 | */ |
158 | 158 | public function init() { |
159 | - add_action( 'wp_enqueue_scripts', array( $this, 'scripts' ) ); |
|
159 | + add_action('wp_enqueue_scripts', array($this, 'scripts')); |
|
160 | 160 | |
161 | 161 | /* |
162 | 162 | * In order to display the Payment Request button in the correct position, |
163 | 163 | * a new hook was added to WooCommerce 3.0. In older versions of WooCommerce, |
164 | 164 | * CSS is used to position the button. |
165 | 165 | */ |
166 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
167 | - add_action( 'woocommerce_after_add_to_cart_button', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
168 | - add_action( 'woocommerce_after_add_to_cart_button', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
166 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
167 | + add_action('woocommerce_after_add_to_cart_button', array($this, 'display_payment_request_button_html'), 1); |
|
168 | + add_action('woocommerce_after_add_to_cart_button', array($this, 'display_payment_request_button_separator_html'), 2); |
|
169 | 169 | } else { |
170 | - add_action( 'woocommerce_after_add_to_cart_quantity', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
171 | - add_action( 'woocommerce_after_add_to_cart_quantity', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
170 | + add_action('woocommerce_after_add_to_cart_quantity', array($this, 'display_payment_request_button_html'), 1); |
|
171 | + add_action('woocommerce_after_add_to_cart_quantity', array($this, 'display_payment_request_button_separator_html'), 2); |
|
172 | 172 | } |
173 | 173 | |
174 | - add_action( 'woocommerce_proceed_to_checkout', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
175 | - add_action( 'woocommerce_proceed_to_checkout', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
174 | + add_action('woocommerce_proceed_to_checkout', array($this, 'display_payment_request_button_html'), 1); |
|
175 | + add_action('woocommerce_proceed_to_checkout', array($this, 'display_payment_request_button_separator_html'), 2); |
|
176 | 176 | |
177 | - add_action( 'woocommerce_checkout_before_customer_details', array( $this, 'display_payment_request_button_html' ), 1 ); |
|
178 | - add_action( 'woocommerce_checkout_before_customer_details', array( $this, 'display_payment_request_button_separator_html' ), 2 ); |
|
177 | + add_action('woocommerce_checkout_before_customer_details', array($this, 'display_payment_request_button_html'), 1); |
|
178 | + add_action('woocommerce_checkout_before_customer_details', array($this, 'display_payment_request_button_separator_html'), 2); |
|
179 | 179 | |
180 | - add_action( 'wc_ajax_wc_stripe_get_cart_details', array( $this, 'ajax_get_cart_details' ) ); |
|
181 | - add_action( 'wc_ajax_wc_stripe_get_shipping_options', array( $this, 'ajax_get_shipping_options' ) ); |
|
182 | - add_action( 'wc_ajax_wc_stripe_update_shipping_method', array( $this, 'ajax_update_shipping_method' ) ); |
|
183 | - add_action( 'wc_ajax_wc_stripe_create_order', array( $this, 'ajax_create_order' ) ); |
|
184 | - add_action( 'wc_ajax_wc_stripe_add_to_cart', array( $this, 'ajax_add_to_cart' ) ); |
|
185 | - add_action( 'wc_ajax_wc_stripe_get_selected_product_data', array( $this, 'ajax_get_selected_product_data' ) ); |
|
186 | - add_action( 'wc_ajax_wc_stripe_clear_cart', array( $this, 'ajax_clear_cart' ) ); |
|
187 | - add_action( 'wc_ajax_wc_stripe_log_errors', array( $this, 'ajax_log_errors' ) ); |
|
180 | + add_action('wc_ajax_wc_stripe_get_cart_details', array($this, 'ajax_get_cart_details')); |
|
181 | + add_action('wc_ajax_wc_stripe_get_shipping_options', array($this, 'ajax_get_shipping_options')); |
|
182 | + add_action('wc_ajax_wc_stripe_update_shipping_method', array($this, 'ajax_update_shipping_method')); |
|
183 | + add_action('wc_ajax_wc_stripe_create_order', array($this, 'ajax_create_order')); |
|
184 | + add_action('wc_ajax_wc_stripe_add_to_cart', array($this, 'ajax_add_to_cart')); |
|
185 | + add_action('wc_ajax_wc_stripe_get_selected_product_data', array($this, 'ajax_get_selected_product_data')); |
|
186 | + add_action('wc_ajax_wc_stripe_clear_cart', array($this, 'ajax_clear_cart')); |
|
187 | + add_action('wc_ajax_wc_stripe_log_errors', array($this, 'ajax_log_errors')); |
|
188 | 188 | |
189 | - add_filter( 'woocommerce_gateway_title', array( $this, 'filter_gateway_title' ), 10, 2 ); |
|
190 | - add_filter( 'woocommerce_validate_postcode', array( $this, 'postal_code_validation' ), 10, 3 ); |
|
189 | + add_filter('woocommerce_gateway_title', array($this, 'filter_gateway_title'), 10, 2); |
|
190 | + add_filter('woocommerce_validate_postcode', array($this, 'postal_code_validation'), 10, 3); |
|
191 | 191 | |
192 | - add_action( 'woocommerce_checkout_order_processed', array( $this, 'add_order_meta' ), 10, 2 ); |
|
192 | + add_action('woocommerce_checkout_order_processed', array($this, 'add_order_meta'), 10, 2); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | /** |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | * @return string |
201 | 201 | */ |
202 | 202 | public function get_button_type() { |
203 | - return isset( $this->stripe_settings['payment_request_button_type'] ) ? $this->stripe_settings['payment_request_button_type'] : 'default'; |
|
203 | + return isset($this->stripe_settings['payment_request_button_type']) ? $this->stripe_settings['payment_request_button_type'] : 'default'; |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | * @return string |
212 | 212 | */ |
213 | 213 | public function get_button_theme() { |
214 | - return isset( $this->stripe_settings['payment_request_button_theme'] ) ? $this->stripe_settings['payment_request_button_theme'] : 'dark'; |
|
214 | + return isset($this->stripe_settings['payment_request_button_theme']) ? $this->stripe_settings['payment_request_button_theme'] : 'dark'; |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | /** |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | * @return string |
223 | 223 | */ |
224 | 224 | public function get_button_height() { |
225 | - return isset( $this->stripe_settings['payment_request_button_height'] ) ? str_replace( 'px', '', $this->stripe_settings['payment_request_button_height'] ) : '64'; |
|
225 | + return isset($this->stripe_settings['payment_request_button_height']) ? str_replace('px', '', $this->stripe_settings['payment_request_button_height']) : '64'; |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | /** |
@@ -232,40 +232,40 @@ discard block |
||
232 | 232 | * @version 4.0.0 |
233 | 233 | */ |
234 | 234 | public function get_product_data() { |
235 | - if ( ! is_product() ) { |
|
235 | + if ( ! is_product()) { |
|
236 | 236 | return false; |
237 | 237 | } |
238 | 238 | |
239 | 239 | global $post; |
240 | 240 | |
241 | - $product = wc_get_product( $post->ID ); |
|
241 | + $product = wc_get_product($post->ID); |
|
242 | 242 | |
243 | 243 | $data = array(); |
244 | 244 | $items = array(); |
245 | 245 | |
246 | 246 | $items[] = array( |
247 | 247 | 'label' => WC_Stripe_Helper::is_pre_30() ? $product->name : $product->get_name(), |
248 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price() ), |
|
248 | + 'amount' => WC_Stripe_Helper::get_stripe_amount(WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price()), |
|
249 | 249 | ); |
250 | 250 | |
251 | - if ( wc_tax_enabled() ) { |
|
251 | + if (wc_tax_enabled()) { |
|
252 | 252 | $items[] = array( |
253 | - 'label' => __( 'Tax', 'woocommerce-gateway-stripe' ), |
|
253 | + 'label' => __('Tax', 'woocommerce-gateway-stripe'), |
|
254 | 254 | 'amount' => 0, |
255 | 255 | 'pending' => true, |
256 | 256 | ); |
257 | 257 | } |
258 | 258 | |
259 | - if ( wc_shipping_enabled() && $product->needs_shipping() ) { |
|
259 | + if (wc_shipping_enabled() && $product->needs_shipping()) { |
|
260 | 260 | $items[] = array( |
261 | - 'label' => __( 'Shipping', 'woocommerce-gateway-stripe' ), |
|
261 | + 'label' => __('Shipping', 'woocommerce-gateway-stripe'), |
|
262 | 262 | 'amount' => 0, |
263 | 263 | 'pending' => true, |
264 | 264 | ); |
265 | 265 | |
266 | - $data['shippingOptions'] = array( |
|
266 | + $data['shippingOptions'] = array( |
|
267 | 267 | 'id' => 'pending', |
268 | - 'label' => __( 'Pending', 'woocommerce-gateway-stripe' ), |
|
268 | + 'label' => __('Pending', 'woocommerce-gateway-stripe'), |
|
269 | 269 | 'detail' => '', |
270 | 270 | 'amount' => 0, |
271 | 271 | ); |
@@ -273,41 +273,41 @@ discard block |
||
273 | 273 | |
274 | 274 | $data['displayItems'] = $items; |
275 | 275 | $data['total'] = array( |
276 | - 'label' => apply_filters( 'wc_stripe_payment_request_total_label', $this->total_label ), |
|
277 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price() ), |
|
276 | + 'label' => apply_filters('wc_stripe_payment_request_total_label', $this->total_label), |
|
277 | + 'amount' => WC_Stripe_Helper::get_stripe_amount(WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price()), |
|
278 | 278 | 'pending' => true, |
279 | 279 | ); |
280 | 280 | |
281 | - $data['requestShipping'] = ( wc_shipping_enabled() && $product->needs_shipping() ); |
|
282 | - $data['currency'] = strtolower( get_woocommerce_currency() ); |
|
283 | - $data['country_code'] = substr( get_option( 'woocommerce_default_country' ), 0, 2 ); |
|
281 | + $data['requestShipping'] = (wc_shipping_enabled() && $product->needs_shipping()); |
|
282 | + $data['currency'] = strtolower(get_woocommerce_currency()); |
|
283 | + $data['country_code'] = substr(get_option('woocommerce_default_country'), 0, 2); |
|
284 | 284 | |
285 | - return apply_filters( 'wc_stripe_payment_request_product_data', $data, $product ); |
|
285 | + return apply_filters('wc_stripe_payment_request_product_data', $data, $product); |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | /** |
289 | 289 | * Filters the gateway title to reflect Payment Request type |
290 | 290 | * |
291 | 291 | */ |
292 | - public function filter_gateway_title( $title, $id ) { |
|
292 | + public function filter_gateway_title($title, $id) { |
|
293 | 293 | global $post; |
294 | 294 | |
295 | - if ( ! is_object( $post ) ) { |
|
295 | + if ( ! is_object($post)) { |
|
296 | 296 | return $title; |
297 | 297 | } |
298 | 298 | |
299 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
300 | - $method_title = get_post_meta( $post->ID, '_payment_method_title', true ); |
|
299 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
300 | + $method_title = get_post_meta($post->ID, '_payment_method_title', true); |
|
301 | 301 | } else { |
302 | - $order = wc_get_order( $post->ID ); |
|
303 | - $method_title = is_object( $order ) ? $order->get_payment_method_title() : ''; |
|
302 | + $order = wc_get_order($post->ID); |
|
303 | + $method_title = is_object($order) ? $order->get_payment_method_title() : ''; |
|
304 | 304 | } |
305 | 305 | |
306 | - if ( 'stripe' === $id && ! empty( $method_title ) && 'Apple Pay (Stripe)' === $method_title ) { |
|
306 | + if ('stripe' === $id && ! empty($method_title) && 'Apple Pay (Stripe)' === $method_title) { |
|
307 | 307 | return $method_title; |
308 | 308 | } |
309 | 309 | |
310 | - if ( 'stripe' === $id && ! empty( $method_title ) && 'Chrome Payment Request (Stripe)' === $method_title ) { |
|
310 | + if ('stripe' === $id && ! empty($method_title) && 'Chrome Payment Request (Stripe)' === $method_title) { |
|
311 | 311 | return $method_title; |
312 | 312 | } |
313 | 313 | |
@@ -320,16 +320,16 @@ discard block |
||
320 | 320 | * @since 3.1.4 |
321 | 321 | * @version 4.0.0 |
322 | 322 | */ |
323 | - public function postal_code_validation( $valid, $postcode, $country ) { |
|
323 | + public function postal_code_validation($valid, $postcode, $country) { |
|
324 | 324 | $gateways = WC()->payment_gateways->get_available_payment_gateways(); |
325 | 325 | |
326 | - if ( ! isset( $gateways['stripe'] ) ) { |
|
326 | + if ( ! isset($gateways['stripe'])) { |
|
327 | 327 | return $valid; |
328 | 328 | } |
329 | 329 | |
330 | - $payment_request_type = isset( $_POST['payment_request_type'] ) ? wc_clean( $_POST['payment_request_type'] ) : ''; |
|
330 | + $payment_request_type = isset($_POST['payment_request_type']) ? wc_clean($_POST['payment_request_type']) : ''; |
|
331 | 331 | |
332 | - if ( 'apple_pay' !== $payment_request_type ) { |
|
332 | + if ('apple_pay' !== $payment_request_type) { |
|
333 | 333 | return $valid; |
334 | 334 | } |
335 | 335 | |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | * the order and not let it go through. The remedy for now is just to remove this validation. |
340 | 340 | * Note that this only works with shipping providers that don't validate full postal codes. |
341 | 341 | */ |
342 | - if ( 'GB' === $country || 'CA' === $country ) { |
|
342 | + if ('GB' === $country || 'CA' === $country) { |
|
343 | 343 | return true; |
344 | 344 | } |
345 | 345 | |
@@ -354,29 +354,29 @@ discard block |
||
354 | 354 | * @param int $order_id |
355 | 355 | * @param array $posted_data The posted data from checkout form. |
356 | 356 | */ |
357 | - public function add_order_meta( $order_id, $posted_data ) { |
|
358 | - if ( empty( $_POST['payment_request_type'] ) ) { |
|
357 | + public function add_order_meta($order_id, $posted_data) { |
|
358 | + if (empty($_POST['payment_request_type'])) { |
|
359 | 359 | return; |
360 | 360 | } |
361 | 361 | |
362 | - $order = wc_get_order( $order_id ); |
|
362 | + $order = wc_get_order($order_id); |
|
363 | 363 | |
364 | - $payment_request_type = wc_clean( $_POST['payment_request_type'] ); |
|
364 | + $payment_request_type = wc_clean($_POST['payment_request_type']); |
|
365 | 365 | |
366 | - if ( 'apple_pay' === $payment_request_type ) { |
|
367 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
368 | - update_post_meta( $order_id, '_payment_method_title', 'Apple Pay (Stripe)' ); |
|
366 | + if ('apple_pay' === $payment_request_type) { |
|
367 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
368 | + update_post_meta($order_id, '_payment_method_title', 'Apple Pay (Stripe)'); |
|
369 | 369 | } else { |
370 | - $order->set_payment_method_title( 'Apple Pay (Stripe)' ); |
|
370 | + $order->set_payment_method_title('Apple Pay (Stripe)'); |
|
371 | 371 | $order->save(); |
372 | 372 | } |
373 | 373 | } |
374 | 374 | |
375 | - if ( 'payment_request_api' === $payment_request_type ) { |
|
376 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
377 | - update_post_meta( $order_id, '_payment_method_title', 'Chrome Payment Request (Stripe)' ); |
|
375 | + if ('payment_request_api' === $payment_request_type) { |
|
376 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
377 | + update_post_meta($order_id, '_payment_method_title', 'Chrome Payment Request (Stripe)'); |
|
378 | 378 | } else { |
379 | - $order->set_payment_method_title( 'Chrome Payment Request (Stripe)' ); |
|
379 | + $order->set_payment_method_title('Chrome Payment Request (Stripe)'); |
|
380 | 380 | $order->save(); |
381 | 381 | } |
382 | 382 | } |
@@ -390,7 +390,7 @@ discard block |
||
390 | 390 | * @return array |
391 | 391 | */ |
392 | 392 | public function supported_product_types() { |
393 | - return apply_filters( 'wc_stripe_payment_request_supported_types', array( |
|
393 | + return apply_filters('wc_stripe_payment_request_supported_types', array( |
|
394 | 394 | 'simple', |
395 | 395 | 'variable', |
396 | 396 | 'variation', |
@@ -399,7 +399,7 @@ discard block |
||
399 | 399 | 'bundle', |
400 | 400 | 'composite', |
401 | 401 | 'mix-and-match', |
402 | - ) ); |
|
402 | + )); |
|
403 | 403 | } |
404 | 404 | |
405 | 405 | /** |
@@ -410,15 +410,15 @@ discard block |
||
410 | 410 | * @return bool |
411 | 411 | */ |
412 | 412 | public function allowed_items_in_cart() { |
413 | - foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { |
|
414 | - $_product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key ); |
|
413 | + foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item) { |
|
414 | + $_product = apply_filters('woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key); |
|
415 | 415 | |
416 | - if ( ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $_product->product_type : $_product->get_type() ), $this->supported_product_types() ) ) { |
|
416 | + if ( ! in_array((WC_Stripe_Helper::is_pre_30() ? $_product->product_type : $_product->get_type()), $this->supported_product_types())) { |
|
417 | 417 | return false; |
418 | 418 | } |
419 | 419 | |
420 | 420 | // Pre Orders compatbility where we don't support charge upon release. |
421 | - if ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Cart::cart_contains_pre_order() && WC_Pre_Orders_Product::product_is_charged_upon_release( WC_Pre_Orders_Cart::get_pre_order_product() ) ) { |
|
421 | + if (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Cart::cart_contains_pre_order() && WC_Pre_Orders_Product::product_is_charged_upon_release(WC_Pre_Orders_Cart::get_pre_order_product())) { |
|
422 | 422 | return false; |
423 | 423 | } |
424 | 424 | } |
@@ -434,81 +434,81 @@ discard block |
||
434 | 434 | */ |
435 | 435 | public function scripts() { |
436 | 436 | // If keys are not set bail. |
437 | - if ( ! $this->are_keys_set() ) { |
|
438 | - WC_Stripe_Logger::log( 'Keys are not set correctly.' ); |
|
437 | + if ( ! $this->are_keys_set()) { |
|
438 | + WC_Stripe_Logger::log('Keys are not set correctly.'); |
|
439 | 439 | return; |
440 | 440 | } |
441 | 441 | |
442 | 442 | // If no SSL bail. |
443 | - if ( ! $this->testmode && ! is_ssl() ) { |
|
444 | - WC_Stripe_Logger::log( 'Stripe Payment Request live mode requires SSL.' ); |
|
443 | + if ( ! $this->testmode && ! is_ssl()) { |
|
444 | + WC_Stripe_Logger::log('Stripe Payment Request live mode requires SSL.'); |
|
445 | 445 | } |
446 | 446 | |
447 | - if ( ! is_product() && ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) ) { |
|
447 | + if ( ! is_product() && ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order'])) { |
|
448 | 448 | return; |
449 | 449 | } |
450 | 450 | |
451 | - if ( is_product() ) { |
|
451 | + if (is_product()) { |
|
452 | 452 | global $post; |
453 | 453 | |
454 | - $product = wc_get_product( $post->ID ); |
|
454 | + $product = wc_get_product($post->ID); |
|
455 | 455 | |
456 | - if ( ! is_object( $product ) || ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ), $this->supported_product_types() ) ) { |
|
456 | + if ( ! is_object($product) || ! in_array((WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()), $this->supported_product_types())) { |
|
457 | 457 | return; |
458 | 458 | } |
459 | 459 | |
460 | - if ( apply_filters( 'wc_stripe_hide_payment_request_on_product_page', false, $post ) ) { |
|
460 | + if (apply_filters('wc_stripe_hide_payment_request_on_product_page', false, $post)) { |
|
461 | 461 | return; |
462 | 462 | } |
463 | 463 | } |
464 | 464 | |
465 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
465 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
466 | 466 | |
467 | - wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true ); |
|
468 | - wp_register_script( 'wc_stripe_payment_request', plugins_url( 'assets/js/stripe-payment-request' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery', 'stripe' ), WC_STRIPE_VERSION, true ); |
|
467 | + wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true); |
|
468 | + wp_register_script('wc_stripe_payment_request', plugins_url('assets/js/stripe-payment-request' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery', 'stripe'), WC_STRIPE_VERSION, true); |
|
469 | 469 | |
470 | 470 | wp_localize_script( |
471 | 471 | 'wc_stripe_payment_request', |
472 | 472 | 'wc_stripe_payment_request_params', |
473 | 473 | array( |
474 | - 'ajax_url' => WC_AJAX::get_endpoint( '%%endpoint%%' ), |
|
474 | + 'ajax_url' => WC_AJAX::get_endpoint('%%endpoint%%'), |
|
475 | 475 | 'stripe' => array( |
476 | 476 | 'key' => $this->publishable_key, |
477 | - 'allow_prepaid_card' => apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no', |
|
477 | + 'allow_prepaid_card' => apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no', |
|
478 | 478 | ), |
479 | 479 | 'nonce' => array( |
480 | - 'payment' => wp_create_nonce( 'wc-stripe-payment-request' ), |
|
481 | - 'shipping' => wp_create_nonce( 'wc-stripe-payment-request-shipping' ), |
|
482 | - 'update_shipping' => wp_create_nonce( 'wc-stripe-update-shipping-method' ), |
|
483 | - 'checkout' => wp_create_nonce( 'woocommerce-process_checkout' ), |
|
484 | - 'add_to_cart' => wp_create_nonce( 'wc-stripe-add-to-cart' ), |
|
485 | - 'get_selected_product_data' => wp_create_nonce( 'wc-stripe-get-selected-product-data' ), |
|
486 | - 'log_errors' => wp_create_nonce( 'wc-stripe-log-errors' ), |
|
487 | - 'clear_cart' => wp_create_nonce( 'wc-stripe-clear-cart' ), |
|
480 | + 'payment' => wp_create_nonce('wc-stripe-payment-request'), |
|
481 | + 'shipping' => wp_create_nonce('wc-stripe-payment-request-shipping'), |
|
482 | + 'update_shipping' => wp_create_nonce('wc-stripe-update-shipping-method'), |
|
483 | + 'checkout' => wp_create_nonce('woocommerce-process_checkout'), |
|
484 | + 'add_to_cart' => wp_create_nonce('wc-stripe-add-to-cart'), |
|
485 | + 'get_selected_product_data' => wp_create_nonce('wc-stripe-get-selected-product-data'), |
|
486 | + 'log_errors' => wp_create_nonce('wc-stripe-log-errors'), |
|
487 | + 'clear_cart' => wp_create_nonce('wc-stripe-clear-cart'), |
|
488 | 488 | ), |
489 | 489 | 'i18n' => array( |
490 | - 'no_prepaid_card' => __( 'Sorry, we\'re not accepting prepaid cards at this time.', 'woocommerce-gateway-stripe' ), |
|
490 | + 'no_prepaid_card' => __('Sorry, we\'re not accepting prepaid cards at this time.', 'woocommerce-gateway-stripe'), |
|
491 | 491 | /* translators: Do not translate the [option] placeholder */ |
492 | - 'unknown_shipping' => __( 'Unknown shipping option "[option]".', 'woocommerce-gateway-stripe' ), |
|
492 | + 'unknown_shipping' => __('Unknown shipping option "[option]".', 'woocommerce-gateway-stripe'), |
|
493 | 493 | ), |
494 | 494 | 'checkout' => array( |
495 | 495 | 'url' => wc_get_checkout_url(), |
496 | - 'currency_code' => strtolower( get_woocommerce_currency() ), |
|
497 | - 'country_code' => substr( get_option( 'woocommerce_default_country' ), 0, 2 ), |
|
496 | + 'currency_code' => strtolower(get_woocommerce_currency()), |
|
497 | + 'country_code' => substr(get_option('woocommerce_default_country'), 0, 2), |
|
498 | 498 | 'needs_shipping' => WC()->cart->needs_shipping() ? 'yes' : 'no', |
499 | 499 | ), |
500 | 500 | 'button' => array( |
501 | 501 | 'type' => $this->get_button_type(), |
502 | 502 | 'theme' => $this->get_button_theme(), |
503 | 503 | 'height' => $this->get_button_height(), |
504 | - 'locale' => substr( get_locale(), 0, 2 ), // Default format is en_US. |
|
504 | + 'locale' => substr(get_locale(), 0, 2), // Default format is en_US. |
|
505 | 505 | ), |
506 | 506 | 'is_product_page' => is_product(), |
507 | 507 | 'product' => $this->get_product_data(), |
508 | 508 | ) |
509 | 509 | ); |
510 | 510 | |
511 | - wp_enqueue_script( 'wc_stripe_payment_request' ); |
|
511 | + wp_enqueue_script('wc_stripe_payment_request'); |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | /** |
@@ -522,37 +522,37 @@ discard block |
||
522 | 522 | |
523 | 523 | $gateways = WC()->payment_gateways->get_available_payment_gateways(); |
524 | 524 | |
525 | - if ( ! isset( $gateways['stripe'] ) ) { |
|
525 | + if ( ! isset($gateways['stripe'])) { |
|
526 | 526 | return; |
527 | 527 | } |
528 | 528 | |
529 | - if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset( $_GET['pay_for_order'] ) ) { |
|
529 | + if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset($_GET['pay_for_order'])) { |
|
530 | 530 | return; |
531 | 531 | } |
532 | 532 | |
533 | - if ( is_product() && apply_filters( 'wc_stripe_hide_payment_request_on_product_page', false, $post ) ) { |
|
533 | + if (is_product() && apply_filters('wc_stripe_hide_payment_request_on_product_page', false, $post)) { |
|
534 | 534 | return; |
535 | 535 | } |
536 | 536 | |
537 | - if ( is_checkout() && ! apply_filters( 'wc_stripe_show_payment_request_on_checkout', false, $post ) ) { |
|
537 | + if (is_checkout() && ! apply_filters('wc_stripe_show_payment_request_on_checkout', false, $post)) { |
|
538 | 538 | return; |
539 | 539 | } |
540 | 540 | |
541 | - if ( is_product() ) { |
|
542 | - $product = wc_get_product( $post->ID ); |
|
541 | + if (is_product()) { |
|
542 | + $product = wc_get_product($post->ID); |
|
543 | 543 | |
544 | - if ( ! is_object( $product ) || ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ), $this->supported_product_types() ) ) { |
|
544 | + if ( ! is_object($product) || ! in_array((WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()), $this->supported_product_types())) { |
|
545 | 545 | return; |
546 | 546 | } |
547 | 547 | |
548 | 548 | // Pre Orders charge upon release not supported. |
549 | - if ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Product::product_is_charged_upon_release( $product ) ) { |
|
550 | - WC_Stripe_Logger::log( 'Pre Order charge upon release is not supported. ( Payment Request button disabled )' ); |
|
549 | + if (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Product::product_is_charged_upon_release($product)) { |
|
550 | + WC_Stripe_Logger::log('Pre Order charge upon release is not supported. ( Payment Request button disabled )'); |
|
551 | 551 | return; |
552 | 552 | } |
553 | 553 | } else { |
554 | - if ( ! $this->allowed_items_in_cart() ) { |
|
555 | - WC_Stripe_Logger::log( 'Items in the cart has unsupported product type ( Payment Request button disabled )' ); |
|
554 | + if ( ! $this->allowed_items_in_cart()) { |
|
555 | + WC_Stripe_Logger::log('Items in the cart has unsupported product type ( Payment Request button disabled )'); |
|
556 | 556 | return; |
557 | 557 | } |
558 | 558 | } |
@@ -576,42 +576,42 @@ discard block |
||
576 | 576 | |
577 | 577 | $gateways = WC()->payment_gateways->get_available_payment_gateways(); |
578 | 578 | |
579 | - if ( ! isset( $gateways['stripe'] ) ) { |
|
579 | + if ( ! isset($gateways['stripe'])) { |
|
580 | 580 | return; |
581 | 581 | } |
582 | 582 | |
583 | - if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset( $_GET['pay_for_order'] ) ) { |
|
583 | + if ( ! is_cart() && ! is_checkout() && ! is_product() && ! isset($_GET['pay_for_order'])) { |
|
584 | 584 | return; |
585 | 585 | } |
586 | 586 | |
587 | - if ( is_product() && apply_filters( 'wc_stripe_hide_payment_request_on_product_page', false, $post ) ) { |
|
587 | + if (is_product() && apply_filters('wc_stripe_hide_payment_request_on_product_page', false, $post)) { |
|
588 | 588 | return; |
589 | 589 | } |
590 | 590 | |
591 | - if ( is_checkout() && ! apply_filters( 'wc_stripe_show_payment_request_on_checkout', false, $post ) ) { |
|
591 | + if (is_checkout() && ! apply_filters('wc_stripe_show_payment_request_on_checkout', false, $post)) { |
|
592 | 592 | return; |
593 | 593 | } |
594 | 594 | |
595 | - if ( is_product() ) { |
|
596 | - $product = wc_get_product( $post->ID ); |
|
595 | + if (is_product()) { |
|
596 | + $product = wc_get_product($post->ID); |
|
597 | 597 | |
598 | - if ( ! is_object( $product ) || ! in_array( ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ), $this->supported_product_types() ) ) { |
|
598 | + if ( ! is_object($product) || ! in_array((WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()), $this->supported_product_types())) { |
|
599 | 599 | return; |
600 | 600 | } |
601 | 601 | |
602 | 602 | // Pre Orders charge upon release not supported. |
603 | - if ( class_exists( 'WC_Pre_Orders_Order' ) && WC_Pre_Orders_Product::product_is_charged_upon_release( $product ) ) { |
|
604 | - WC_Stripe_Logger::log( 'Pre Order charge upon release is not supported. ( Payment Request button disabled )' ); |
|
603 | + if (class_exists('WC_Pre_Orders_Order') && WC_Pre_Orders_Product::product_is_charged_upon_release($product)) { |
|
604 | + WC_Stripe_Logger::log('Pre Order charge upon release is not supported. ( Payment Request button disabled )'); |
|
605 | 605 | return; |
606 | 606 | } |
607 | 607 | } else { |
608 | - if ( ! $this->allowed_items_in_cart() ) { |
|
609 | - WC_Stripe_Logger::log( 'Items in the cart has unsupported product type ( Payment Request button disabled )' ); |
|
608 | + if ( ! $this->allowed_items_in_cart()) { |
|
609 | + WC_Stripe_Logger::log('Items in the cart has unsupported product type ( Payment Request button disabled )'); |
|
610 | 610 | return; |
611 | 611 | } |
612 | 612 | } |
613 | 613 | ?> |
614 | - <p id="wc-stripe-payment-request-button-separator" style="margin-top:1.5em;text-align:center;display:none;">— <?php esc_html_e( 'OR', 'woocommerce-gateway-stripe' ); ?> —</p> |
|
614 | + <p id="wc-stripe-payment-request-button-separator" style="margin-top:1.5em;text-align:center;display:none;">— <?php esc_html_e('OR', 'woocommerce-gateway-stripe'); ?> —</p> |
|
615 | 615 | <?php |
616 | 616 | } |
617 | 617 | |
@@ -622,11 +622,11 @@ discard block |
||
622 | 622 | * @version 4.0.0 |
623 | 623 | */ |
624 | 624 | public function ajax_log_errors() { |
625 | - check_ajax_referer( 'wc-stripe-log-errors', 'security' ); |
|
625 | + check_ajax_referer('wc-stripe-log-errors', 'security'); |
|
626 | 626 | |
627 | - $errors = wc_clean( stripslashes( $_POST['errors'] ) ); |
|
627 | + $errors = wc_clean(stripslashes($_POST['errors'])); |
|
628 | 628 | |
629 | - WC_Stripe_Logger::log( $errors ); |
|
629 | + WC_Stripe_Logger::log($errors); |
|
630 | 630 | |
631 | 631 | exit; |
632 | 632 | } |
@@ -638,7 +638,7 @@ discard block |
||
638 | 638 | * @version 4.0.0 |
639 | 639 | */ |
640 | 640 | public function ajax_clear_cart() { |
641 | - check_ajax_referer( 'wc-stripe-clear-cart', 'security' ); |
|
641 | + check_ajax_referer('wc-stripe-clear-cart', 'security'); |
|
642 | 642 | |
643 | 643 | WC()->cart->empty_cart(); |
644 | 644 | exit; |
@@ -648,10 +648,10 @@ discard block |
||
648 | 648 | * Get cart details. |
649 | 649 | */ |
650 | 650 | public function ajax_get_cart_details() { |
651 | - check_ajax_referer( 'wc-stripe-payment-request', 'security' ); |
|
651 | + check_ajax_referer('wc-stripe-payment-request', 'security'); |
|
652 | 652 | |
653 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
654 | - define( 'WOOCOMMERCE_CART', true ); |
|
653 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
654 | + define('WOOCOMMERCE_CART', true); |
|
655 | 655 | } |
656 | 656 | |
657 | 657 | WC()->cart->calculate_totals(); |
@@ -662,14 +662,14 @@ discard block |
||
662 | 662 | $data = array( |
663 | 663 | 'shipping_required' => WC()->cart->needs_shipping(), |
664 | 664 | 'order_data' => array( |
665 | - 'currency' => strtolower( $currency ), |
|
666 | - 'country_code' => substr( get_option( 'woocommerce_default_country' ), 0, 2 ), |
|
665 | + 'currency' => strtolower($currency), |
|
666 | + 'country_code' => substr(get_option('woocommerce_default_country'), 0, 2), |
|
667 | 667 | ), |
668 | 668 | ); |
669 | 669 | |
670 | 670 | $data['order_data'] += $this->build_display_items(); |
671 | 671 | |
672 | - wp_send_json( $data ); |
|
672 | + wp_send_json($data); |
|
673 | 673 | } |
674 | 674 | |
675 | 675 | /** |
@@ -680,47 +680,47 @@ discard block |
||
680 | 680 | * @see WC_Shipping::get_packages(). |
681 | 681 | */ |
682 | 682 | public function ajax_get_shipping_options() { |
683 | - check_ajax_referer( 'wc-stripe-payment-request-shipping', 'security' ); |
|
683 | + check_ajax_referer('wc-stripe-payment-request-shipping', 'security'); |
|
684 | 684 | |
685 | 685 | try { |
686 | 686 | // Set the shipping package. |
687 | - $posted = filter_input_array( INPUT_POST, array( |
|
687 | + $posted = filter_input_array(INPUT_POST, array( |
|
688 | 688 | 'country' => FILTER_SANITIZE_STRING, |
689 | 689 | 'state' => FILTER_SANITIZE_STRING, |
690 | 690 | 'postcode' => FILTER_SANITIZE_STRING, |
691 | 691 | 'city' => FILTER_SANITIZE_STRING, |
692 | 692 | 'address' => FILTER_SANITIZE_STRING, |
693 | 693 | 'address_2' => FILTER_SANITIZE_STRING, |
694 | - ) ); |
|
694 | + )); |
|
695 | 695 | |
696 | - $this->calculate_shipping( apply_filters( 'wc_stripe_payment_request_shipping_posted_values', $posted ) ); |
|
696 | + $this->calculate_shipping(apply_filters('wc_stripe_payment_request_shipping_posted_values', $posted)); |
|
697 | 697 | |
698 | 698 | // Set the shipping options. |
699 | 699 | $data = array(); |
700 | 700 | $packages = WC()->shipping->get_packages(); |
701 | 701 | |
702 | - if ( ! empty( $packages ) && WC()->customer->has_calculated_shipping() ) { |
|
703 | - foreach ( $packages as $package_key => $package ) { |
|
704 | - if ( empty( $package['rates'] ) ) { |
|
705 | - throw new Exception( __( 'Unable to find shipping method for address.', 'woocommerce-gateway-stripe' ) ); |
|
702 | + if ( ! empty($packages) && WC()->customer->has_calculated_shipping()) { |
|
703 | + foreach ($packages as $package_key => $package) { |
|
704 | + if (empty($package['rates'])) { |
|
705 | + throw new Exception(__('Unable to find shipping method for address.', 'woocommerce-gateway-stripe')); |
|
706 | 706 | } |
707 | 707 | |
708 | - foreach ( $package['rates'] as $key => $rate ) { |
|
708 | + foreach ($package['rates'] as $key => $rate) { |
|
709 | 709 | $data['shipping_options'][] = array( |
710 | 710 | 'id' => $rate->id, |
711 | 711 | 'label' => $rate->label, |
712 | 712 | 'detail' => '', |
713 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $rate->cost ), |
|
713 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($rate->cost), |
|
714 | 714 | ); |
715 | 715 | } |
716 | 716 | } |
717 | 717 | } else { |
718 | - throw new Exception( __( 'Unable to find shipping method for address.', 'woocommerce-gateway-stripe' ) ); |
|
718 | + throw new Exception(__('Unable to find shipping method for address.', 'woocommerce-gateway-stripe')); |
|
719 | 719 | } |
720 | 720 | |
721 | - if ( isset( $data[0] ) ) { |
|
721 | + if (isset($data[0])) { |
|
722 | 722 | // Auto select the first shipping method. |
723 | - WC()->session->set( 'chosen_shipping_methods', array( $data[0]['id'] ) ); |
|
723 | + WC()->session->set('chosen_shipping_methods', array($data[0]['id'])); |
|
724 | 724 | } |
725 | 725 | |
726 | 726 | WC()->cart->calculate_totals(); |
@@ -728,12 +728,12 @@ discard block |
||
728 | 728 | $data += $this->build_display_items(); |
729 | 729 | $data['result'] = 'success'; |
730 | 730 | |
731 | - wp_send_json( $data ); |
|
732 | - } catch ( Exception $e ) { |
|
731 | + wp_send_json($data); |
|
732 | + } catch (Exception $e) { |
|
733 | 733 | $data += $this->build_display_items(); |
734 | 734 | $data['result'] = 'invalid_shipping_address'; |
735 | 735 | |
736 | - wp_send_json( $data ); |
|
736 | + wp_send_json($data); |
|
737 | 737 | } |
738 | 738 | } |
739 | 739 | |
@@ -741,22 +741,22 @@ discard block |
||
741 | 741 | * Update shipping method. |
742 | 742 | */ |
743 | 743 | public function ajax_update_shipping_method() { |
744 | - check_ajax_referer( 'wc-stripe-update-shipping-method', 'security' ); |
|
744 | + check_ajax_referer('wc-stripe-update-shipping-method', 'security'); |
|
745 | 745 | |
746 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
747 | - define( 'WOOCOMMERCE_CART', true ); |
|
746 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
747 | + define('WOOCOMMERCE_CART', true); |
|
748 | 748 | } |
749 | 749 | |
750 | - $chosen_shipping_methods = WC()->session->get( 'chosen_shipping_methods' ); |
|
751 | - $shipping_method = filter_input( INPUT_POST, 'shipping_method', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY ); |
|
750 | + $chosen_shipping_methods = WC()->session->get('chosen_shipping_methods'); |
|
751 | + $shipping_method = filter_input(INPUT_POST, 'shipping_method', FILTER_DEFAULT, FILTER_REQUIRE_ARRAY); |
|
752 | 752 | |
753 | - if ( is_array( $shipping_method ) ) { |
|
754 | - foreach ( $shipping_method as $i => $value ) { |
|
755 | - $chosen_shipping_methods[ $i ] = wc_clean( $value ); |
|
753 | + if (is_array($shipping_method)) { |
|
754 | + foreach ($shipping_method as $i => $value) { |
|
755 | + $chosen_shipping_methods[$i] = wc_clean($value); |
|
756 | 756 | } |
757 | 757 | } |
758 | 758 | |
759 | - WC()->session->set( 'chosen_shipping_methods', $chosen_shipping_methods ); |
|
759 | + WC()->session->set('chosen_shipping_methods', $chosen_shipping_methods); |
|
760 | 760 | |
761 | 761 | WC()->cart->calculate_totals(); |
762 | 762 | |
@@ -764,7 +764,7 @@ discard block |
||
764 | 764 | $data += $this->build_display_items(); |
765 | 765 | $data['result'] = 'success'; |
766 | 766 | |
767 | - wp_send_json( $data ); |
|
767 | + wp_send_json($data); |
|
768 | 768 | } |
769 | 769 | |
770 | 770 | /** |
@@ -775,31 +775,31 @@ discard block |
||
775 | 775 | * @return array $data |
776 | 776 | */ |
777 | 777 | public function ajax_get_selected_product_data() { |
778 | - check_ajax_referer( 'wc-stripe-get-selected-product-data', 'security' ); |
|
778 | + check_ajax_referer('wc-stripe-get-selected-product-data', 'security'); |
|
779 | 779 | |
780 | - $product_id = absint( $_POST['product_id'] ); |
|
781 | - $qty = ! isset( $_POST['qty'] ) ? 1 : absint( $_POST['qty'] ); |
|
780 | + $product_id = absint($_POST['product_id']); |
|
781 | + $qty = ! isset($_POST['qty']) ? 1 : absint($_POST['qty']); |
|
782 | 782 | |
783 | - $product = wc_get_product( $product_id ); |
|
783 | + $product = wc_get_product($product_id); |
|
784 | 784 | |
785 | - if ( 'variable' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) && isset( $_POST['attributes'] ) ) { |
|
786 | - $attributes = array_map( 'wc_clean', $_POST['attributes'] ); |
|
785 | + if ('variable' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()) && isset($_POST['attributes'])) { |
|
786 | + $attributes = array_map('wc_clean', $_POST['attributes']); |
|
787 | 787 | |
788 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
789 | - $variation_id = $product->get_matching_variation( $attributes ); |
|
788 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
789 | + $variation_id = $product->get_matching_variation($attributes); |
|
790 | 790 | } else { |
791 | - $data_store = WC_Data_Store::load( 'product' ); |
|
792 | - $variation_id = $data_store->find_matching_product_variation( $product, $attributes ); |
|
791 | + $data_store = WC_Data_Store::load('product'); |
|
792 | + $variation_id = $data_store->find_matching_product_variation($product, $attributes); |
|
793 | 793 | } |
794 | 794 | |
795 | - if ( ! empty( $variation_id ) ) { |
|
796 | - $product = wc_get_product( $variation_id ); |
|
795 | + if ( ! empty($variation_id)) { |
|
796 | + $product = wc_get_product($variation_id); |
|
797 | 797 | } |
798 | - } elseif ( 'simple' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) ) { |
|
799 | - $product = wc_get_product( $product_id ); |
|
798 | + } elseif ('simple' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type())) { |
|
799 | + $product = wc_get_product($product_id); |
|
800 | 800 | } |
801 | 801 | |
802 | - $total = $qty * ( WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price() ); |
|
802 | + $total = $qty * (WC_Stripe_Helper::is_pre_30() ? $product->price : $product->get_price()); |
|
803 | 803 | |
804 | 804 | $quantity_label = 1 < $qty ? ' (x' . $qty . ')' : ''; |
805 | 805 | |
@@ -807,28 +807,28 @@ discard block |
||
807 | 807 | $items = array(); |
808 | 808 | |
809 | 809 | $items[] = array( |
810 | - 'label' => ( WC_Stripe_Helper::is_pre_30() ? $product->name : $product->get_name() ) . $quantity_label, |
|
811 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $total ), |
|
810 | + 'label' => (WC_Stripe_Helper::is_pre_30() ? $product->name : $product->get_name()) . $quantity_label, |
|
811 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($total), |
|
812 | 812 | ); |
813 | 813 | |
814 | - if ( wc_tax_enabled() ) { |
|
814 | + if (wc_tax_enabled()) { |
|
815 | 815 | $items[] = array( |
816 | - 'label' => __( 'Tax', 'woocommerce-gateway-stripe' ), |
|
816 | + 'label' => __('Tax', 'woocommerce-gateway-stripe'), |
|
817 | 817 | 'amount' => 0, |
818 | 818 | 'pending' => true, |
819 | 819 | ); |
820 | 820 | } |
821 | 821 | |
822 | - if ( wc_shipping_enabled() && $product->needs_shipping() ) { |
|
822 | + if (wc_shipping_enabled() && $product->needs_shipping()) { |
|
823 | 823 | $items[] = array( |
824 | - 'label' => __( 'Shipping', 'woocommerce-gateway-stripe' ), |
|
824 | + 'label' => __('Shipping', 'woocommerce-gateway-stripe'), |
|
825 | 825 | 'amount' => 0, |
826 | 826 | 'pending' => true, |
827 | 827 | ); |
828 | 828 | |
829 | - $data['shippingOptions'] = array( |
|
829 | + $data['shippingOptions'] = array( |
|
830 | 830 | 'id' => 'pending', |
831 | - 'label' => __( 'Pending', 'woocommerce-gateway-stripe' ), |
|
831 | + 'label' => __('Pending', 'woocommerce-gateway-stripe'), |
|
832 | 832 | 'detail' => '', |
833 | 833 | 'amount' => 0, |
834 | 834 | ); |
@@ -837,15 +837,15 @@ discard block |
||
837 | 837 | $data['displayItems'] = $items; |
838 | 838 | $data['total'] = array( |
839 | 839 | 'label' => $this->total_label, |
840 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $total ), |
|
840 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($total), |
|
841 | 841 | 'pending' => true, |
842 | 842 | ); |
843 | 843 | |
844 | - $data['requestShipping'] = ( wc_shipping_enabled() && $product->needs_shipping() ); |
|
845 | - $data['currency'] = strtolower( get_woocommerce_currency() ); |
|
846 | - $data['country_code'] = substr( get_option( 'woocommerce_default_country' ), 0, 2 ); |
|
844 | + $data['requestShipping'] = (wc_shipping_enabled() && $product->needs_shipping()); |
|
845 | + $data['currency'] = strtolower(get_woocommerce_currency()); |
|
846 | + $data['country_code'] = substr(get_option('woocommerce_default_country'), 0, 2); |
|
847 | 847 | |
848 | - wp_send_json( $data ); |
|
848 | + wp_send_json($data); |
|
849 | 849 | } |
850 | 850 | |
851 | 851 | /** |
@@ -856,37 +856,37 @@ discard block |
||
856 | 856 | * @return array $data |
857 | 857 | */ |
858 | 858 | public function ajax_add_to_cart() { |
859 | - check_ajax_referer( 'wc-stripe-add-to-cart', 'security' ); |
|
859 | + check_ajax_referer('wc-stripe-add-to-cart', 'security'); |
|
860 | 860 | |
861 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
862 | - define( 'WOOCOMMERCE_CART', true ); |
|
861 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
862 | + define('WOOCOMMERCE_CART', true); |
|
863 | 863 | } |
864 | 864 | |
865 | 865 | WC()->shipping->reset_shipping(); |
866 | 866 | |
867 | - $product_id = absint( $_POST['product_id'] ); |
|
868 | - $qty = ! isset( $_POST['qty'] ) ? 1 : absint( $_POST['qty'] ); |
|
867 | + $product_id = absint($_POST['product_id']); |
|
868 | + $qty = ! isset($_POST['qty']) ? 1 : absint($_POST['qty']); |
|
869 | 869 | |
870 | - $product = wc_get_product( $product_id ); |
|
870 | + $product = wc_get_product($product_id); |
|
871 | 871 | |
872 | 872 | // First empty the cart to prevent wrong calculation. |
873 | 873 | WC()->cart->empty_cart(); |
874 | 874 | |
875 | - if ( 'variable' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) && isset( $_POST['attributes'] ) ) { |
|
876 | - $attributes = array_map( 'wc_clean', $_POST['attributes'] ); |
|
875 | + if ('variable' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type()) && isset($_POST['attributes'])) { |
|
876 | + $attributes = array_map('wc_clean', $_POST['attributes']); |
|
877 | 877 | |
878 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
879 | - $variation_id = $product->get_matching_variation( $attributes ); |
|
878 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
879 | + $variation_id = $product->get_matching_variation($attributes); |
|
880 | 880 | } else { |
881 | - $data_store = WC_Data_Store::load( 'product' ); |
|
882 | - $variation_id = $data_store->find_matching_product_variation( $product, $attributes ); |
|
881 | + $data_store = WC_Data_Store::load('product'); |
|
882 | + $variation_id = $data_store->find_matching_product_variation($product, $attributes); |
|
883 | 883 | } |
884 | 884 | |
885 | - WC()->cart->add_to_cart( $product->get_id(), $qty, $variation_id, $attributes ); |
|
885 | + WC()->cart->add_to_cart($product->get_id(), $qty, $variation_id, $attributes); |
|
886 | 886 | } |
887 | 887 | |
888 | - if ( 'simple' === ( WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type() ) ) { |
|
889 | - WC()->cart->add_to_cart( $product->get_id(), $qty ); |
|
888 | + if ('simple' === (WC_Stripe_Helper::is_pre_30() ? $product->product_type : $product->get_type())) { |
|
889 | + WC()->cart->add_to_cart($product->get_id(), $qty); |
|
890 | 890 | } |
891 | 891 | |
892 | 892 | WC()->cart->calculate_totals(); |
@@ -895,7 +895,7 @@ discard block |
||
895 | 895 | $data += $this->build_display_items(); |
896 | 896 | $data['result'] = 'success'; |
897 | 897 | |
898 | - wp_send_json( $data ); |
|
898 | + wp_send_json($data); |
|
899 | 899 | } |
900 | 900 | |
901 | 901 | /** |
@@ -908,31 +908,31 @@ discard block |
||
908 | 908 | * @version 4.0.0 |
909 | 909 | */ |
910 | 910 | public function normalize_state() { |
911 | - $billing_country = ! empty( $_POST['billing_country'] ) ? wc_clean( $_POST['billing_country'] ) : ''; |
|
912 | - $shipping_country = ! empty( $_POST['shipping_country'] ) ? wc_clean( $_POST['shipping_country'] ) : ''; |
|
913 | - $billing_state = ! empty( $_POST['billing_state'] ) ? wc_clean( $_POST['billing_state'] ) : ''; |
|
914 | - $shipping_state = ! empty( $_POST['shipping_state'] ) ? wc_clean( $_POST['shipping_state'] ) : ''; |
|
911 | + $billing_country = ! empty($_POST['billing_country']) ? wc_clean($_POST['billing_country']) : ''; |
|
912 | + $shipping_country = ! empty($_POST['shipping_country']) ? wc_clean($_POST['shipping_country']) : ''; |
|
913 | + $billing_state = ! empty($_POST['billing_state']) ? wc_clean($_POST['billing_state']) : ''; |
|
914 | + $shipping_state = ! empty($_POST['shipping_state']) ? wc_clean($_POST['shipping_state']) : ''; |
|
915 | 915 | |
916 | - if ( $billing_state && $billing_country ) { |
|
917 | - $valid_states = WC()->countries->get_states( $billing_country ); |
|
916 | + if ($billing_state && $billing_country) { |
|
917 | + $valid_states = WC()->countries->get_states($billing_country); |
|
918 | 918 | |
919 | 919 | // Valid states found for country. |
920 | - if ( ! empty( $valid_states ) && is_array( $valid_states ) && sizeof( $valid_states ) > 0 ) { |
|
921 | - foreach ( $valid_states as $state_abbr => $state ) { |
|
922 | - if ( preg_match( '/' . preg_quote( $state ) . '/i', $billing_state ) ) { |
|
920 | + if ( ! empty($valid_states) && is_array($valid_states) && sizeof($valid_states) > 0) { |
|
921 | + foreach ($valid_states as $state_abbr => $state) { |
|
922 | + if (preg_match('/' . preg_quote($state) . '/i', $billing_state)) { |
|
923 | 923 | $_POST['billing_state'] = $state_abbr; |
924 | 924 | } |
925 | 925 | } |
926 | 926 | } |
927 | 927 | } |
928 | 928 | |
929 | - if ( $shipping_state && $shipping_country ) { |
|
930 | - $valid_states = WC()->countries->get_states( $shipping_country ); |
|
929 | + if ($shipping_state && $shipping_country) { |
|
930 | + $valid_states = WC()->countries->get_states($shipping_country); |
|
931 | 931 | |
932 | 932 | // Valid states found for country. |
933 | - if ( ! empty( $valid_states ) && is_array( $valid_states ) && sizeof( $valid_states ) > 0 ) { |
|
934 | - foreach ( $valid_states as $state_abbr => $state ) { |
|
935 | - if ( preg_match( '/' . preg_quote( $state ) . '/i', $shipping_state ) ) { |
|
933 | + if ( ! empty($valid_states) && is_array($valid_states) && sizeof($valid_states) > 0) { |
|
934 | + foreach ($valid_states as $state_abbr => $state) { |
|
935 | + if (preg_match('/' . preg_quote($state) . '/i', $shipping_state)) { |
|
936 | 936 | $_POST['shipping_state'] = $state_abbr; |
937 | 937 | } |
938 | 938 | } |
@@ -947,19 +947,19 @@ discard block |
||
947 | 947 | * @version 4.0.0 |
948 | 948 | */ |
949 | 949 | public function ajax_create_order() { |
950 | - if ( WC()->cart->is_empty() ) { |
|
951 | - wp_send_json_error( __( 'Empty cart', 'woocommerce-gateway-stripe' ) ); |
|
950 | + if (WC()->cart->is_empty()) { |
|
951 | + wp_send_json_error(__('Empty cart', 'woocommerce-gateway-stripe')); |
|
952 | 952 | } |
953 | 953 | |
954 | - if ( ! defined( 'WOOCOMMERCE_CHECKOUT' ) ) { |
|
955 | - define( 'WOOCOMMERCE_CHECKOUT', true ); |
|
954 | + if ( ! defined('WOOCOMMERCE_CHECKOUT')) { |
|
955 | + define('WOOCOMMERCE_CHECKOUT', true); |
|
956 | 956 | } |
957 | 957 | |
958 | 958 | $this->normalize_state(); |
959 | 959 | |
960 | 960 | WC()->checkout()->process_checkout(); |
961 | 961 | |
962 | - die( 0 ); |
|
962 | + die(0); |
|
963 | 963 | } |
964 | 964 | |
965 | 965 | /** |
@@ -969,7 +969,7 @@ discard block |
||
969 | 969 | * @version 4.0.0 |
970 | 970 | * @param array $address |
971 | 971 | */ |
972 | - protected function calculate_shipping( $address = array() ) { |
|
972 | + protected function calculate_shipping($address = array()) { |
|
973 | 973 | global $states; |
974 | 974 | |
975 | 975 | $country = $address['country']; |
@@ -986,28 +986,28 @@ discard block |
||
986 | 986 | * In some versions of Chrome, state can be a full name. So we need |
987 | 987 | * to convert that to abbreviation as WC is expecting that. |
988 | 988 | */ |
989 | - if ( 2 < strlen( $state ) ) { |
|
990 | - $state = array_search( ucfirst( strtolower( $state ) ), $states[ $country ] ); |
|
989 | + if (2 < strlen($state)) { |
|
990 | + $state = array_search(ucfirst(strtolower($state)), $states[$country]); |
|
991 | 991 | } |
992 | 992 | |
993 | 993 | WC()->shipping->reset_shipping(); |
994 | 994 | |
995 | - if ( $postcode && WC_Validation::is_postcode( $postcode, $country ) ) { |
|
996 | - $postcode = wc_format_postcode( $postcode, $country ); |
|
995 | + if ($postcode && WC_Validation::is_postcode($postcode, $country)) { |
|
996 | + $postcode = wc_format_postcode($postcode, $country); |
|
997 | 997 | } |
998 | 998 | |
999 | - if ( $country ) { |
|
1000 | - WC()->customer->set_location( $country, $state, $postcode, $city ); |
|
1001 | - WC()->customer->set_shipping_location( $country, $state, $postcode, $city ); |
|
999 | + if ($country) { |
|
1000 | + WC()->customer->set_location($country, $state, $postcode, $city); |
|
1001 | + WC()->customer->set_shipping_location($country, $state, $postcode, $city); |
|
1002 | 1002 | } else { |
1003 | 1003 | WC_Stripe_Helper::is_pre_30() ? WC()->customer->set_to_base() : WC()->customer->set_billing_address_to_base(); |
1004 | 1004 | WC_Stripe_Helper::is_pre_30() ? WC()->customer->set_shipping_to_base() : WC()->customer->set_shipping_address_to_base(); |
1005 | 1005 | } |
1006 | 1006 | |
1007 | - if ( WC_Stripe_Helper::is_pre_30() ) { |
|
1008 | - WC()->customer->calculated_shipping( true ); |
|
1007 | + if (WC_Stripe_Helper::is_pre_30()) { |
|
1008 | + WC()->customer->calculated_shipping(true); |
|
1009 | 1009 | } else { |
1010 | - WC()->customer->set_calculated_shipping( true ); |
|
1010 | + WC()->customer->set_calculated_shipping(true); |
|
1011 | 1011 | WC()->customer->save(); |
1012 | 1012 | } |
1013 | 1013 | |
@@ -1024,17 +1024,17 @@ discard block |
||
1024 | 1024 | $packages[0]['destination']['address'] = $address_1; |
1025 | 1025 | $packages[0]['destination']['address_2'] = $address_2; |
1026 | 1026 | |
1027 | - foreach ( WC()->cart->get_cart() as $item ) { |
|
1028 | - if ( $item['data']->needs_shipping() ) { |
|
1029 | - if ( isset( $item['line_total'] ) ) { |
|
1027 | + foreach (WC()->cart->get_cart() as $item) { |
|
1028 | + if ($item['data']->needs_shipping()) { |
|
1029 | + if (isset($item['line_total'])) { |
|
1030 | 1030 | $packages[0]['contents_cost'] += $item['line_total']; |
1031 | 1031 | } |
1032 | 1032 | } |
1033 | 1033 | } |
1034 | 1034 | |
1035 | - $packages = apply_filters( 'woocommerce_cart_shipping_packages', $packages ); |
|
1035 | + $packages = apply_filters('woocommerce_cart_shipping_packages', $packages); |
|
1036 | 1036 | |
1037 | - WC()->shipping->calculate_shipping( $packages ); |
|
1037 | + WC()->shipping->calculate_shipping($packages); |
|
1038 | 1038 | } |
1039 | 1039 | |
1040 | 1040 | /** |
@@ -1043,19 +1043,19 @@ discard block |
||
1043 | 1043 | * @since 3.1.0 |
1044 | 1044 | * @version 4.0.0 |
1045 | 1045 | */ |
1046 | - protected function build_shipping_methods( $shipping_methods ) { |
|
1047 | - if ( empty( $shipping_methods ) ) { |
|
1046 | + protected function build_shipping_methods($shipping_methods) { |
|
1047 | + if (empty($shipping_methods)) { |
|
1048 | 1048 | return array(); |
1049 | 1049 | } |
1050 | 1050 | |
1051 | 1051 | $shipping = array(); |
1052 | 1052 | |
1053 | - foreach ( $shipping_methods as $method ) { |
|
1053 | + foreach ($shipping_methods as $method) { |
|
1054 | 1054 | $shipping[] = array( |
1055 | 1055 | 'id' => $method['id'], |
1056 | 1056 | 'label' => $method['label'], |
1057 | 1057 | 'detail' => '', |
1058 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $method['amount']['value'] ), |
|
1058 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($method['amount']['value']), |
|
1059 | 1059 | ); |
1060 | 1060 | } |
1061 | 1061 | |
@@ -1069,8 +1069,8 @@ discard block |
||
1069 | 1069 | * @version 4.0.0 |
1070 | 1070 | */ |
1071 | 1071 | protected function build_display_items() { |
1072 | - if ( ! defined( 'WOOCOMMERCE_CART' ) ) { |
|
1073 | - define( 'WOOCOMMERCE_CART', true ); |
|
1072 | + if ( ! defined('WOOCOMMERCE_CART')) { |
|
1073 | + define('WOOCOMMERCE_CART', true); |
|
1074 | 1074 | } |
1075 | 1075 | |
1076 | 1076 | $items = array(); |
@@ -1078,71 +1078,71 @@ discard block |
||
1078 | 1078 | $discounts = 0; |
1079 | 1079 | |
1080 | 1080 | // Default show only subtotal instead of itemization. |
1081 | - if ( ! apply_filters( 'wc_stripe_payment_request_hide_itemization', true ) ) { |
|
1082 | - foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { |
|
1081 | + if ( ! apply_filters('wc_stripe_payment_request_hide_itemization', true)) { |
|
1082 | + foreach (WC()->cart->get_cart() as $cart_item_key => $cart_item) { |
|
1083 | 1083 | $amount = $cart_item['line_subtotal']; |
1084 | - $subtotal += $cart_item['line_subtotal']; |
|
1084 | + $subtotal += $cart_item['line_subtotal']; |
|
1085 | 1085 | $quantity_label = 1 < $cart_item['quantity'] ? ' (x' . $cart_item['quantity'] . ')' : ''; |
1086 | 1086 | |
1087 | 1087 | $product_name = WC_Stripe_Helper::is_pre_30() ? $cart_item['data']->post->post_title : $cart_item['data']->get_name(); |
1088 | 1088 | |
1089 | 1089 | $item = array( |
1090 | 1090 | 'label' => $product_name . $quantity_label, |
1091 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $amount ), |
|
1091 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($amount), |
|
1092 | 1092 | ); |
1093 | 1093 | |
1094 | 1094 | $items[] = $item; |
1095 | 1095 | } |
1096 | 1096 | } |
1097 | 1097 | |
1098 | - if ( version_compare( WC_VERSION, '3.2', '<' ) ) { |
|
1099 | - $discounts = wc_format_decimal( WC()->cart->get_cart_discount_total(), WC()->cart->dp ); |
|
1098 | + if (version_compare(WC_VERSION, '3.2', '<')) { |
|
1099 | + $discounts = wc_format_decimal(WC()->cart->get_cart_discount_total(), WC()->cart->dp); |
|
1100 | 1100 | } else { |
1101 | - $applied_coupons = array_values( WC()->cart->get_coupon_discount_totals() ); |
|
1101 | + $applied_coupons = array_values(WC()->cart->get_coupon_discount_totals()); |
|
1102 | 1102 | |
1103 | - foreach ( $applied_coupons as $amount ) { |
|
1103 | + foreach ($applied_coupons as $amount) { |
|
1104 | 1104 | $discounts += (float) $amount; |
1105 | 1105 | } |
1106 | 1106 | } |
1107 | 1107 | |
1108 | - $discounts = wc_format_decimal( $discounts, WC()->cart->dp ); |
|
1109 | - $tax = wc_format_decimal( WC()->cart->tax_total + WC()->cart->shipping_tax_total, WC()->cart->dp ); |
|
1110 | - $shipping = wc_format_decimal( WC()->cart->shipping_total, WC()->cart->dp ); |
|
1111 | - $items_total = wc_format_decimal( WC()->cart->cart_contents_total, WC()->cart->dp ) + $discounts; |
|
1112 | - $order_total = version_compare( WC_VERSION, '3.2', '<' ) ? wc_format_decimal( $items_total + $tax + $shipping - $discounts, WC()->cart->dp ) : WC()->cart->get_total( false ); |
|
1108 | + $discounts = wc_format_decimal($discounts, WC()->cart->dp); |
|
1109 | + $tax = wc_format_decimal(WC()->cart->tax_total + WC()->cart->shipping_tax_total, WC()->cart->dp); |
|
1110 | + $shipping = wc_format_decimal(WC()->cart->shipping_total, WC()->cart->dp); |
|
1111 | + $items_total = wc_format_decimal(WC()->cart->cart_contents_total, WC()->cart->dp) + $discounts; |
|
1112 | + $order_total = version_compare(WC_VERSION, '3.2', '<') ? wc_format_decimal($items_total + $tax + $shipping - $discounts, WC()->cart->dp) : WC()->cart->get_total(false); |
|
1113 | 1113 | |
1114 | - if ( wc_tax_enabled() ) { |
|
1114 | + if (wc_tax_enabled()) { |
|
1115 | 1115 | $items[] = array( |
1116 | - 'label' => esc_html( __( 'Tax', 'woocommerce-gateway-stripe' ) ), |
|
1117 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $tax ), |
|
1116 | + 'label' => esc_html(__('Tax', 'woocommerce-gateway-stripe')), |
|
1117 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($tax), |
|
1118 | 1118 | ); |
1119 | 1119 | } |
1120 | 1120 | |
1121 | - if ( WC()->cart->needs_shipping() ) { |
|
1121 | + if (WC()->cart->needs_shipping()) { |
|
1122 | 1122 | $items[] = array( |
1123 | - 'label' => esc_html( __( 'Shipping', 'woocommerce-gateway-stripe' ) ), |
|
1124 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $shipping ), |
|
1123 | + 'label' => esc_html(__('Shipping', 'woocommerce-gateway-stripe')), |
|
1124 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($shipping), |
|
1125 | 1125 | ); |
1126 | 1126 | } |
1127 | 1127 | |
1128 | - if ( WC()->cart->has_discount() ) { |
|
1128 | + if (WC()->cart->has_discount()) { |
|
1129 | 1129 | $items[] = array( |
1130 | - 'label' => esc_html( __( 'Discount', 'woocommerce-gateway-stripe' ) ), |
|
1131 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $discounts ), |
|
1130 | + 'label' => esc_html(__('Discount', 'woocommerce-gateway-stripe')), |
|
1131 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($discounts), |
|
1132 | 1132 | ); |
1133 | 1133 | } |
1134 | 1134 | |
1135 | - if ( version_compare( WC_VERSION, '3.2', '<' ) ) { |
|
1135 | + if (version_compare(WC_VERSION, '3.2', '<')) { |
|
1136 | 1136 | $cart_fees = WC()->cart->fees; |
1137 | 1137 | } else { |
1138 | 1138 | $cart_fees = WC()->cart->get_fees(); |
1139 | 1139 | } |
1140 | 1140 | |
1141 | 1141 | // Include fees and taxes as display items. |
1142 | - foreach ( $cart_fees as $key => $fee ) { |
|
1142 | + foreach ($cart_fees as $key => $fee) { |
|
1143 | 1143 | $items[] = array( |
1144 | 1144 | 'label' => $fee->name, |
1145 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $fee->amount ), |
|
1145 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($fee->amount), |
|
1146 | 1146 | ); |
1147 | 1147 | } |
1148 | 1148 | |
@@ -1150,7 +1150,7 @@ discard block |
||
1150 | 1150 | 'displayItems' => $items, |
1151 | 1151 | 'total' => array( |
1152 | 1152 | 'label' => $this->total_label, |
1153 | - 'amount' => max( 0, apply_filters( 'woocommerce_stripe_calculated_total', WC_Stripe_Helper::get_stripe_amount( $order_total ), $order_total, WC()->cart ) ), |
|
1153 | + 'amount' => max(0, apply_filters('woocommerce_stripe_calculated_total', WC_Stripe_Helper::get_stripe_amount($order_total), $order_total, WC()->cart)), |
|
1154 | 1154 | 'pending' => false, |
1155 | 1155 | ), |
1156 | 1156 | ); |