@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if ( ! defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -23,12 +23,12 @@ discard block |
||
23 | 23 | |
24 | 24 | $this->retry_interval = 1; |
25 | 25 | |
26 | - add_action( 'wp', array( $this, 'maybe_process_redirect_order' ) ); |
|
27 | - add_action( 'woocommerce_order_status_processing', array( $this, 'capture_payment' ) ); |
|
28 | - add_action( 'woocommerce_order_status_completed', array( $this, 'capture_payment' ) ); |
|
29 | - add_action( 'woocommerce_order_status_cancelled', array( $this, 'cancel_payment' ) ); |
|
30 | - add_action( 'woocommerce_order_status_refunded', array( $this, 'cancel_payment' ) ); |
|
31 | - add_filter( 'woocommerce_tracks_event_properties', array( $this, 'woocommerce_tracks_event_properties' ), 10, 2 ); |
|
26 | + add_action('wp', array($this, 'maybe_process_redirect_order')); |
|
27 | + add_action('woocommerce_order_status_processing', array($this, 'capture_payment')); |
|
28 | + add_action('woocommerce_order_status_completed', array($this, 'capture_payment')); |
|
29 | + add_action('woocommerce_order_status_cancelled', array($this, 'cancel_payment')); |
|
30 | + add_action('woocommerce_order_status_refunded', array($this, 'cancel_payment')); |
|
31 | + add_filter('woocommerce_tracks_event_properties', array($this, 'woocommerce_tracks_event_properties'), 10, 2); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -52,25 +52,25 @@ discard block |
||
52 | 52 | * @param bool $retry |
53 | 53 | * @param mix $previous_error Any error message from previous request. |
54 | 54 | */ |
55 | - public function process_redirect_payment( $order_id, $retry = true, $previous_error = false ) { |
|
55 | + public function process_redirect_payment($order_id, $retry = true, $previous_error = false) { |
|
56 | 56 | try { |
57 | - $source = wc_clean( $_GET['source'] ); |
|
57 | + $source = wc_clean($_GET['source']); |
|
58 | 58 | |
59 | - if ( empty( $source ) ) { |
|
59 | + if (empty($source)) { |
|
60 | 60 | return; |
61 | 61 | } |
62 | 62 | |
63 | - if ( empty( $order_id ) ) { |
|
63 | + if (empty($order_id)) { |
|
64 | 64 | return; |
65 | 65 | } |
66 | 66 | |
67 | - $order = wc_get_order( $order_id ); |
|
67 | + $order = wc_get_order($order_id); |
|
68 | 68 | |
69 | - if ( ! is_object( $order ) ) { |
|
69 | + if ( ! is_object($order)) { |
|
70 | 70 | return; |
71 | 71 | } |
72 | 72 | |
73 | - if ( $order->has_status( array( 'processing', 'completed', 'on-hold' ) ) ) { |
|
73 | + if ($order->has_status(array('processing', 'completed', 'on-hold'))) { |
|
74 | 74 | return; |
75 | 75 | } |
76 | 76 | |
@@ -78,119 +78,119 @@ discard block |
||
78 | 78 | $response = null; |
79 | 79 | |
80 | 80 | // This will throw exception if not valid. |
81 | - $this->validate_minimum_order_amount( $order ); |
|
81 | + $this->validate_minimum_order_amount($order); |
|
82 | 82 | |
83 | - WC_Stripe_Logger::log( "Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}" ); |
|
83 | + WC_Stripe_Logger::log("Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}"); |
|
84 | 84 | |
85 | 85 | /** |
86 | 86 | * First check if the source is chargeable at this time. If not, |
87 | 87 | * webhook will take care of it later. |
88 | 88 | */ |
89 | - $source_info = WC_Stripe_API::retrieve( 'sources/' . $source ); |
|
89 | + $source_info = WC_Stripe_API::retrieve('sources/' . $source); |
|
90 | 90 | |
91 | - if ( ! empty( $source_info->error ) ) { |
|
92 | - throw new WC_Stripe_Exception( print_r( $source_info, true ), $source_info->error->message ); |
|
91 | + if ( ! empty($source_info->error)) { |
|
92 | + throw new WC_Stripe_Exception(print_r($source_info, true), $source_info->error->message); |
|
93 | 93 | } |
94 | 94 | |
95 | - if ( 'failed' === $source_info->status || 'canceled' === $source_info->status ) { |
|
96 | - throw new WC_Stripe_Exception( print_r( $source_info, true ), __( 'Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe' ) ); |
|
95 | + if ('failed' === $source_info->status || 'canceled' === $source_info->status) { |
|
96 | + throw new WC_Stripe_Exception(print_r($source_info, true), __('Unable to process this payment, please try again or use alternative method.', 'woocommerce-gateway-stripe')); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | // If already consumed, then ignore request. |
100 | - if ( 'consumed' === $source_info->status ) { |
|
100 | + if ('consumed' === $source_info->status) { |
|
101 | 101 | return; |
102 | 102 | } |
103 | 103 | |
104 | 104 | // If not chargeable, then ignore request. |
105 | - if ( 'chargeable' !== $source_info->status ) { |
|
105 | + if ('chargeable' !== $source_info->status) { |
|
106 | 106 | return; |
107 | 107 | } |
108 | 108 | |
109 | 109 | // Prep source object. |
110 | 110 | $source_object = new stdClass(); |
111 | 111 | $source_object->token_id = ''; |
112 | - $source_object->customer = $this->get_stripe_customer_id( $order ); |
|
112 | + $source_object->customer = $this->get_stripe_customer_id($order); |
|
113 | 113 | $source_object->source = $source_info->id; |
114 | 114 | $source_object->status = 'chargeable'; |
115 | 115 | |
116 | 116 | /* If we're doing a retry and source is chargeable, we need to pass |
117 | 117 | * a different idempotency key and retry for success. |
118 | 118 | */ |
119 | - if ( $this->need_update_idempotency_key( $source_object, $previous_error ) ) { |
|
120 | - add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 ); |
|
119 | + if ($this->need_update_idempotency_key($source_object, $previous_error)) { |
|
120 | + add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | // Make the request. |
124 | - $response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source_object ), 'charges', 'POST', true ); |
|
124 | + $response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object), 'charges', 'POST', true); |
|
125 | 125 | $headers = $response['headers']; |
126 | 126 | $response = $response['body']; |
127 | 127 | |
128 | - if ( ! empty( $response->error ) ) { |
|
128 | + if ( ! empty($response->error)) { |
|
129 | 129 | // Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without. |
130 | - if ( $this->is_no_such_customer_error( $response->error ) ) { |
|
131 | - delete_user_option( $order->get_customer_id(), '_stripe_customer_id' ); |
|
132 | - $order->delete_meta_data( '_stripe_customer_id' ); |
|
130 | + if ($this->is_no_such_customer_error($response->error)) { |
|
131 | + delete_user_option($order->get_customer_id(), '_stripe_customer_id'); |
|
132 | + $order->delete_meta_data('_stripe_customer_id'); |
|
133 | 133 | $order->save(); |
134 | 134 | } |
135 | 135 | |
136 | - if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) { |
|
136 | + if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) { |
|
137 | 137 | // Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message. |
138 | - $wc_token = WC_Payment_Tokens::get( $prepared_source->token_id ); |
|
138 | + $wc_token = WC_Payment_Tokens::get($prepared_source->token_id); |
|
139 | 139 | $wc_token->delete(); |
140 | - $localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' ); |
|
141 | - $order->add_order_note( $localized_message ); |
|
142 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
140 | + $localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe'); |
|
141 | + $order->add_order_note($localized_message); |
|
142 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | // We want to retry. |
146 | - if ( $this->is_retryable_error( $response->error ) ) { |
|
147 | - if ( $retry ) { |
|
146 | + if ($this->is_retryable_error($response->error)) { |
|
147 | + if ($retry) { |
|
148 | 148 | // Don't do anymore retries after this. |
149 | - if ( 5 <= $this->retry_interval ) { |
|
150 | - return $this->process_redirect_payment( $order_id, false, $response->error ); |
|
149 | + if (5 <= $this->retry_interval) { |
|
150 | + return $this->process_redirect_payment($order_id, false, $response->error); |
|
151 | 151 | } |
152 | 152 | |
153 | - sleep( $this->retry_interval ); |
|
153 | + sleep($this->retry_interval); |
|
154 | 154 | |
155 | 155 | $this->retry_interval++; |
156 | - return $this->process_redirect_payment( $order_id, true, $response->error ); |
|
156 | + return $this->process_redirect_payment($order_id, true, $response->error); |
|
157 | 157 | } else { |
158 | - $localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' ); |
|
159 | - $order->add_order_note( $localized_message ); |
|
160 | - throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message ); |
|
158 | + $localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe'); |
|
159 | + $order->add_order_note($localized_message); |
|
160 | + throw new WC_Stripe_Exception(print_r($response, true), $localized_message); |
|
161 | 161 | } |
162 | 162 | } |
163 | 163 | |
164 | 164 | $localized_messages = WC_Stripe_Helper::get_localized_messages(); |
165 | 165 | |
166 | - if ( 'card_error' === $response->error->type ) { |
|
167 | - $message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message; |
|
166 | + if ('card_error' === $response->error->type) { |
|
167 | + $message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message; |
|
168 | 168 | } else { |
169 | - $message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message; |
|
169 | + $message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message; |
|
170 | 170 | } |
171 | 171 | |
172 | - throw new WC_Stripe_Exception( print_r( $response, true ), $message ); |
|
172 | + throw new WC_Stripe_Exception(print_r($response, true), $message); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | // To prevent double processing the order on WC side. |
176 | - if ( ! $this->is_original_request( $headers ) ) { |
|
176 | + if ( ! $this->is_original_request($headers)) { |
|
177 | 177 | return; |
178 | 178 | } |
179 | 179 | |
180 | - do_action( 'wc_gateway_stripe_process_redirect_payment', $response, $order ); |
|
180 | + do_action('wc_gateway_stripe_process_redirect_payment', $response, $order); |
|
181 | 181 | |
182 | - $this->process_response( $response, $order ); |
|
182 | + $this->process_response($response, $order); |
|
183 | 183 | |
184 | - } catch ( WC_Stripe_Exception $e ) { |
|
185 | - WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() ); |
|
184 | + } catch (WC_Stripe_Exception $e) { |
|
185 | + WC_Stripe_Logger::log('Error: ' . $e->getMessage()); |
|
186 | 186 | |
187 | - do_action( 'wc_gateway_stripe_process_redirect_payment_error', $e, $order ); |
|
187 | + do_action('wc_gateway_stripe_process_redirect_payment_error', $e, $order); |
|
188 | 188 | |
189 | 189 | /* translators: error message */ |
190 | - $order->update_status( 'failed', sprintf( __( 'Stripe payment failed: %s', 'woocommerce-gateway-stripe' ), $e->getLocalizedMessage() ) ); |
|
190 | + $order->update_status('failed', sprintf(__('Stripe payment failed: %s', 'woocommerce-gateway-stripe'), $e->getLocalizedMessage())); |
|
191 | 191 | |
192 | - wc_add_notice( $e->getLocalizedMessage(), 'error' ); |
|
193 | - wp_safe_redirect( wc_get_checkout_url() ); |
|
192 | + wc_add_notice($e->getLocalizedMessage(), 'error'); |
|
193 | + wp_safe_redirect(wc_get_checkout_url()); |
|
194 | 194 | exit; |
195 | 195 | } |
196 | 196 | } |
@@ -202,13 +202,13 @@ discard block |
||
202 | 202 | * @version 4.0.0 |
203 | 203 | */ |
204 | 204 | public function maybe_process_redirect_order() { |
205 | - if ( ! is_order_received_page() || empty( $_GET['client_secret'] ) || empty( $_GET['source'] ) ) { |
|
205 | + if ( ! is_order_received_page() || empty($_GET['client_secret']) || empty($_GET['source'])) { |
|
206 | 206 | return; |
207 | 207 | } |
208 | 208 | |
209 | - $order_id = wc_clean( $_GET['order_id'] ); |
|
209 | + $order_id = wc_clean($_GET['order_id']); |
|
210 | 210 | |
211 | - $this->process_redirect_payment( $order_id ); |
|
211 | + $this->process_redirect_payment($order_id); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
@@ -218,32 +218,32 @@ discard block |
||
218 | 218 | * @version 4.0.0 |
219 | 219 | * @param int $order_id |
220 | 220 | */ |
221 | - public function capture_payment( $order_id ) { |
|
222 | - $order = wc_get_order( $order_id ); |
|
221 | + public function capture_payment($order_id) { |
|
222 | + $order = wc_get_order($order_id); |
|
223 | 223 | |
224 | - if ( 'stripe' === $order->get_payment_method() ) { |
|
224 | + if ('stripe' === $order->get_payment_method()) { |
|
225 | 225 | $charge = $order->get_transaction_id(); |
226 | - $captured = $order->get_meta( '_stripe_charge_captured', true ); |
|
226 | + $captured = $order->get_meta('_stripe_charge_captured', true); |
|
227 | 227 | $is_stripe_captured = false; |
228 | 228 | |
229 | - if ( $charge && 'no' === $captured ) { |
|
229 | + if ($charge && 'no' === $captured) { |
|
230 | 230 | $order_total = $order->get_total(); |
231 | 231 | |
232 | - if ( 0 < $order->get_total_refunded() ) { |
|
232 | + if (0 < $order->get_total_refunded()) { |
|
233 | 233 | $order_total = $order_total - $order->get_total_refunded(); |
234 | 234 | } |
235 | 235 | |
236 | - $intent = $this->get_intent_from_order( $order ); |
|
237 | - if ( $intent ) { |
|
236 | + $intent = $this->get_intent_from_order($order); |
|
237 | + if ($intent) { |
|
238 | 238 | // If the order has a Payment Intent, then the Intent itself must be captured, not the Charge |
239 | - if ( ! empty( $intent->error ) ) { |
|
239 | + if ( ! empty($intent->error)) { |
|
240 | 240 | /* translators: error message */ |
241 | - $order->add_order_note( sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $intent->error->message ) ); |
|
242 | - } elseif ( 'requires_capture' === $intent->status ) { |
|
243 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
241 | + $order->add_order_note(sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $intent->error->message)); |
|
242 | + } elseif ('requires_capture' === $intent->status) { |
|
243 | + $level3_data = $this->get_level3_data_from_order($order); |
|
244 | 244 | $result = WC_Stripe_API::request_with_level3_data( |
245 | 245 | array( |
246 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $order_total ), |
|
246 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($order_total), |
|
247 | 247 | 'expand[]' => 'charges.data.balance_transaction', |
248 | 248 | ), |
249 | 249 | 'payment_intents/' . $intent->id . '/capture', |
@@ -251,30 +251,30 @@ discard block |
||
251 | 251 | $order |
252 | 252 | ); |
253 | 253 | |
254 | - if ( ! empty( $result->error ) ) { |
|
254 | + if ( ! empty($result->error)) { |
|
255 | 255 | /* translators: error message */ |
256 | - $order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
256 | + $order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
257 | 257 | } else { |
258 | 258 | $is_stripe_captured = true; |
259 | - $result = end( $result->charges->data ); |
|
259 | + $result = end($result->charges->data); |
|
260 | 260 | } |
261 | - } elseif ( 'succeeded' === $intent->status ) { |
|
261 | + } elseif ('succeeded' === $intent->status) { |
|
262 | 262 | $is_stripe_captured = true; |
263 | 263 | } |
264 | 264 | } else { |
265 | 265 | // The order doesn't have a Payment Intent, fall back to capturing the Charge directly |
266 | 266 | |
267 | 267 | // First retrieve charge to see if it has been captured. |
268 | - $result = WC_Stripe_API::retrieve( 'charges/' . $charge ); |
|
268 | + $result = WC_Stripe_API::retrieve('charges/' . $charge); |
|
269 | 269 | |
270 | - if ( ! empty( $result->error ) ) { |
|
270 | + if ( ! empty($result->error)) { |
|
271 | 271 | /* translators: error message */ |
272 | - $order->add_order_note( sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
273 | - } elseif ( false === $result->captured ) { |
|
274 | - $level3_data = $this->get_level3_data_from_order( $order ); |
|
272 | + $order->add_order_note(sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
273 | + } elseif (false === $result->captured) { |
|
274 | + $level3_data = $this->get_level3_data_from_order($order); |
|
275 | 275 | $result = WC_Stripe_API::request_with_level3_data( |
276 | 276 | array( |
277 | - 'amount' => WC_Stripe_Helper::get_stripe_amount( $order_total ), |
|
277 | + 'amount' => WC_Stripe_Helper::get_stripe_amount($order_total), |
|
278 | 278 | 'expand[]' => 'balance_transaction', |
279 | 279 | ), |
280 | 280 | 'charges/' . $charge . '/capture', |
@@ -282,34 +282,34 @@ discard block |
||
282 | 282 | $order |
283 | 283 | ); |
284 | 284 | |
285 | - if ( ! empty( $result->error ) ) { |
|
285 | + if ( ! empty($result->error)) { |
|
286 | 286 | /* translators: error message */ |
287 | - $order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) ); |
|
287 | + $order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message)); |
|
288 | 288 | } else { |
289 | 289 | $is_stripe_captured = true; |
290 | 290 | } |
291 | - } elseif ( true === $result->captured ) { |
|
291 | + } elseif (true === $result->captured) { |
|
292 | 292 | $is_stripe_captured = true; |
293 | 293 | } |
294 | 294 | } |
295 | 295 | |
296 | - if ( $is_stripe_captured ) { |
|
296 | + if ($is_stripe_captured) { |
|
297 | 297 | /* translators: transaction id */ |
298 | - $order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $result->id ) ); |
|
299 | - $order->update_meta_data( '_stripe_charge_captured', 'yes' ); |
|
298 | + $order->add_order_note(sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $result->id)); |
|
299 | + $order->update_meta_data('_stripe_charge_captured', 'yes'); |
|
300 | 300 | |
301 | 301 | // Store other data such as fees |
302 | - $order->set_transaction_id( $result->id ); |
|
302 | + $order->set_transaction_id($result->id); |
|
303 | 303 | |
304 | - if ( is_callable( array( $order, 'save' ) ) ) { |
|
304 | + if (is_callable(array($order, 'save'))) { |
|
305 | 305 | $order->save(); |
306 | 306 | } |
307 | 307 | |
308 | - $this->update_fees( $order, $result->balance_transaction->id ); |
|
308 | + $this->update_fees($order, $result->balance_transaction->id); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | // This hook fires when admin manually changes order status to processing or completed. |
312 | - do_action( 'woocommerce_stripe_process_manual_capture', $order, $result ); |
|
312 | + do_action('woocommerce_stripe_process_manual_capture', $order, $result); |
|
313 | 313 | } |
314 | 314 | } |
315 | 315 | } |
@@ -321,17 +321,17 @@ discard block |
||
321 | 321 | * @version 4.2.2 |
322 | 322 | * @param int $order_id |
323 | 323 | */ |
324 | - public function cancel_payment( $order_id ) { |
|
325 | - $order = wc_get_order( $order_id ); |
|
324 | + public function cancel_payment($order_id) { |
|
325 | + $order = wc_get_order($order_id); |
|
326 | 326 | |
327 | - if ( 'stripe' === $order->get_payment_method() ) { |
|
328 | - $captured = $order->get_meta( '_stripe_charge_captured', true ); |
|
329 | - if ( 'no' === $captured ) { |
|
330 | - $this->process_refund( $order_id ); |
|
327 | + if ('stripe' === $order->get_payment_method()) { |
|
328 | + $captured = $order->get_meta('_stripe_charge_captured', true); |
|
329 | + if ('no' === $captured) { |
|
330 | + $this->process_refund($order_id); |
|
331 | 331 | } |
332 | 332 | |
333 | 333 | // This hook fires when admin manually changes order status to cancel. |
334 | - do_action( 'woocommerce_stripe_process_manual_cancel', $order ); |
|
334 | + do_action('woocommerce_stripe_process_manual_cancel', $order); |
|
335 | 335 | } |
336 | 336 | } |
337 | 337 | |
@@ -343,18 +343,18 @@ discard block |
||
343 | 343 | * @param array Properties to be appended to. |
344 | 344 | * @param string Event name, e.g. orders_edit_status_change. |
345 | 345 | */ |
346 | - public function woocommerce_tracks_event_properties( $properties, $prefixed_event_name ) { |
|
347 | - if ( 'wcadmin_orders_edit_status_change' === $prefixed_event_name ) { |
|
346 | + public function woocommerce_tracks_event_properties($properties, $prefixed_event_name) { |
|
347 | + if ('wcadmin_orders_edit_status_change' === $prefixed_event_name) { |
|
348 | 348 | $is_live = true; |
349 | - $stripe_settings = get_option( 'woocommerce_stripe_settings', array() ); |
|
350 | - if ( array_key_exists( 'testmode', $stripe_settings ) ) { |
|
351 | - $is_live = 'no' === $stripe_settings[ 'testmode' ]; |
|
349 | + $stripe_settings = get_option('woocommerce_stripe_settings', array()); |
|
350 | + if (array_key_exists('testmode', $stripe_settings)) { |
|
351 | + $is_live = 'no' === $stripe_settings['testmode']; |
|
352 | 352 | } |
353 | 353 | |
354 | - $properties[ 'admin_email' ] = get_option( 'admin_email' ); |
|
355 | - $properties[ 'is_live' ] = $is_live; |
|
356 | - $properties[ 'woocommerce_gateway_stripe_version' ] = WC_STRIPE_VERSION; |
|
357 | - $properties[ 'woocommerce_default_country' ] = get_option( 'woocommerce_default_country' ); |
|
354 | + $properties['admin_email'] = get_option('admin_email'); |
|
355 | + $properties['is_live'] = $is_live; |
|
356 | + $properties['woocommerce_gateway_stripe_version'] = WC_STRIPE_VERSION; |
|
357 | + $properties['woocommerce_default_country'] = get_option('woocommerce_default_country'); |
|
358 | 358 | } |
359 | 359 | |
360 | 360 | return $properties; |