Completed
Push — master ( 3adadd...6b3970 )
by Roy
03:16
created
includes/class-wc-stripe-order-handler.php 1 patch
Spacing   +92 added lines, -92 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -23,11 +23,11 @@  discard block
 block discarded – undo
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_on-hold_to_processing', array( $this, 'capture_payment' ) );
28
-		add_action( 'woocommerce_order_status_on-hold_to_completed', array( $this, 'capture_payment' ) );
29
-		add_action( 'woocommerce_order_status_on-hold_to_cancelled', array( $this, 'cancel_payment' ) );
30
-		add_action( 'woocommerce_order_status_on-hold_to_refunded', array( $this, 'cancel_payment' ) );
26
+		add_action('wp', array($this, 'maybe_process_redirect_order'));
27
+		add_action('woocommerce_order_status_on-hold_to_processing', array($this, 'capture_payment'));
28
+		add_action('woocommerce_order_status_on-hold_to_completed', array($this, 'capture_payment'));
29
+		add_action('woocommerce_order_status_on-hold_to_cancelled', array($this, 'cancel_payment'));
30
+		add_action('woocommerce_order_status_on-hold_to_refunded', array($this, 'cancel_payment'));
31 31
 	}
32 32
 
33 33
 	/**
@@ -48,25 +48,25 @@  discard block
 block discarded – undo
48 48
 	 * @since 4.0.0
49 49
 	 * @version 4.0.0
50 50
 	 */
51
-	public function process_redirect_payment( $order_id, $retry = true ) {
51
+	public function process_redirect_payment($order_id, $retry = true) {
52 52
 		try {
53
-			$source = wc_clean( $_GET['source'] );
53
+			$source = wc_clean($_GET['source']);
54 54
 
55
-			if ( empty( $source ) ) {
55
+			if (empty($source)) {
56 56
 				return;
57 57
 			}
58 58
 
59
-			if ( empty( $order_id ) ) {
59
+			if (empty($order_id)) {
60 60
 				return;
61 61
 			}
62 62
 
63
-			$order = wc_get_order( $order_id );
63
+			$order = wc_get_order($order_id);
64 64
 
65
-			if ( ! is_object( $order ) ) {
65
+			if ( ! is_object($order)) {
66 66
 				return;
67 67
 			}
68 68
 
69
-			if ( 'processing' === $order->get_status() || 'completed' === $order->get_status() || 'on-hold' === $order->get_status() ) {
69
+			if ('processing' === $order->get_status() || 'completed' === $order->get_status() || 'on-hold' === $order->get_status()) {
70 70
 				return;
71 71
 			}
72 72
 
@@ -74,127 +74,127 @@  discard block
 block discarded – undo
74 74
 			$response = null;
75 75
 
76 76
 			// This will throw exception if not valid.
77
-			$this->validate_minimum_order_amount( $order );
77
+			$this->validate_minimum_order_amount($order);
78 78
 
79
-			WC_Stripe_Logger::log( "Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
79
+			WC_Stripe_Logger::log("Info: (Redirect) Begin processing payment for order $order_id for the amount of {$order->get_total()}");
80 80
 
81 81
 			/**
82 82
 			 * First check if the source is chargeable at this time. If not,
83 83
 			 * webhook will take care of it later.
84 84
 			 */
85
-			$source_info = WC_Stripe_API::retrieve( 'sources/' . $source );
85
+			$source_info = WC_Stripe_API::retrieve('sources/' . $source);
86 86
 
87
-			if ( ! empty( $source_info->error ) ) {
88
-				throw new WC_Stripe_Exception( print_r( $source_info, true ), $source_info->error->message );
87
+			if ( ! empty($source_info->error)) {
88
+				throw new WC_Stripe_Exception(print_r($source_info, true), $source_info->error->message);
89 89
 			}
90 90
 
91
-			if ( 'failed' === $source_info->status || 'canceled' === $source_info->status ) {
92
-				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' ) );
91
+			if ('failed' === $source_info->status || 'canceled' === $source_info->status) {
92
+				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'));
93 93
 			}
94 94
 
95 95
 			// If already consumed, then ignore request.
96
-			if ( 'consumed' === $source_info->status ) {
96
+			if ('consumed' === $source_info->status) {
97 97
 				return;
98 98
 			}
99 99
 
100 100
 			// If not chargeable, then ignore request.
101
-			if ( 'chargeable' !== $source_info->status ) {
101
+			if ('chargeable' !== $source_info->status) {
102 102
 				return;
103 103
 			}
104 104
 
105 105
 			// Prep source object.
106 106
 			$source_object           = new stdClass();
107 107
 			$source_object->token_id = '';
108
-			$source_object->customer = $this->get_stripe_customer_id( $order );
108
+			$source_object->customer = $this->get_stripe_customer_id($order);
109 109
 			$source_object->source   = $source_info->id;
110 110
 
111 111
 			/* If we're doing a retry and source is chargeable, we need to pass
112 112
 			 * a different idempotency key and retry for success.
113 113
 			 */
114
-			if ( 1 < $this->retry_interval && 'chargeable' === $source_info->status ) {
115
-				add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
114
+			if (1 < $this->retry_interval && 'chargeable' === $source_info->status) {
115
+				add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
116 116
 			}
117 117
 
118 118
 			// Make the request.
119
-			$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $source_object ), 'charges', 'POST', true );
119
+			$response = WC_Stripe_API::request($this->generate_payment_request($order, $source_object), 'charges', 'POST', true);
120 120
 			$headers  = $response['headers'];
121 121
 			$response = $response['body'];
122 122
 
123
-			if ( ! empty( $response->error ) ) {
123
+			if ( ! empty($response->error)) {
124 124
 				// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
125
-				if ( $this->is_no_such_customer_error( $response->error ) ) {
126
-					if ( WC_Stripe_Helper::is_pre_30() ) {
127
-						delete_user_meta( $order->customer_user, '_stripe_customer_id' );
128
-						delete_post_meta( $order_id, '_stripe_customer_id' );
125
+				if ($this->is_no_such_customer_error($response->error)) {
126
+					if (WC_Stripe_Helper::is_pre_30()) {
127
+						delete_user_meta($order->customer_user, '_stripe_customer_id');
128
+						delete_post_meta($order_id, '_stripe_customer_id');
129 129
 					} else {
130
-						delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
131
-						$order->delete_meta_data( '_stripe_customer_id' );
130
+						delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
131
+						$order->delete_meta_data('_stripe_customer_id');
132 132
 						$order->save();
133 133
 					}
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 );
149
+						if (5 <= $this->retry_interval) {
150
+							return $this->process_redirect_payment($order_id, false);
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 );
156
+						return $this->process_redirect_payment($order_id, true);
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
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
193
-				$this->send_failed_order_email( $order_id );
192
+			if ($order->has_status(array('pending', 'failed'))) {
193
+				$this->send_failed_order_email($order_id);
194 194
 			}
195 195
 
196
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
197
-			wp_safe_redirect( wc_get_checkout_url() );
196
+			wc_add_notice($e->getLocalizedMessage(), 'error');
197
+			wp_safe_redirect(wc_get_checkout_url());
198 198
 			exit;
199 199
 		}
200 200
 	}
@@ -206,13 +206,13 @@  discard block
 block discarded – undo
206 206
 	 * @version 4.0.0
207 207
 	 */
208 208
 	public function maybe_process_redirect_order() {
209
-		if ( ! is_order_received_page() || empty( $_GET['client_secret'] ) || empty( $_GET['source'] ) ) {
209
+		if ( ! is_order_received_page() || empty($_GET['client_secret']) || empty($_GET['source'])) {
210 210
 			return;
211 211
 		}
212 212
 
213
-		$order_id = wc_clean( $_GET['order_id'] );
213
+		$order_id = wc_clean($_GET['order_id']);
214 214
 
215
-		$this->process_redirect_payment( $order_id );
215
+		$this->process_redirect_payment($order_id);
216 216
 	}
217 217
 
218 218
 	/**
@@ -222,52 +222,52 @@  discard block
 block discarded – undo
222 222
 	 * @version 4.0.0
223 223
 	 * @param  int $order_id
224 224
 	 */
225
-	public function capture_payment( $order_id ) {
226
-		$order = wc_get_order( $order_id );
225
+	public function capture_payment($order_id) {
226
+		$order = wc_get_order($order_id);
227 227
 
228
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
229
-			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_transaction_id', true ) : $order->get_transaction_id();
230
-			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta( $order_id, '_stripe_charge_captured', true ) : $order->get_meta( '_stripe_charge_captured', true );
228
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
229
+			$charge   = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_transaction_id', true) : $order->get_transaction_id();
230
+			$captured = WC_Stripe_Helper::is_pre_30() ? get_post_meta($order_id, '_stripe_charge_captured', true) : $order->get_meta('_stripe_charge_captured', true);
231 231
 
232
-			if ( $charge && 'no' === $captured ) {
232
+			if ($charge && 'no' === $captured) {
233 233
 				$order_total = $order->get_total();
234 234
 
235
-				if ( 0 < $order->get_total_refunded() ) {
235
+				if (0 < $order->get_total_refunded()) {
236 236
 					$order_total = $order_total - $order->get_total_refunded();
237 237
 				}
238 238
 
239
-				$result = WC_Stripe_API::request( array(
240
-					'amount'   => WC_Stripe_Helper::get_stripe_amount( $order_total ),
239
+				$result = WC_Stripe_API::request(array(
240
+					'amount'   => WC_Stripe_Helper::get_stripe_amount($order_total),
241 241
 					'expand[]' => 'balance_transaction',
242
-				), 'charges/' . $charge . '/capture' );
242
+				), 'charges/' . $charge . '/capture');
243 243
 
244
-				if ( ! empty( $result->error ) ) {
244
+				if ( ! empty($result->error)) {
245 245
 					/* translators: error message */
246
-					$order->update_status( 'failed', sprintf( __( 'Unable to capture charge! %s', 'woocommerce-gateway-stripe' ), $result->error->message ) );
246
+					$order->update_status('failed', sprintf(__('Unable to capture charge! %s', 'woocommerce-gateway-stripe'), $result->error->message));
247 247
 				} else {
248 248
 					/* translators: transaction id */
249
-					$order->add_order_note( sprintf( __( 'Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe' ), $result->id ) );
250
-					WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_stripe_charge_captured', 'yes' ) : $order->update_meta_data( '_stripe_charge_captured', 'yes' );
249
+					$order->add_order_note(sprintf(__('Stripe charge complete (Charge ID: %s)', 'woocommerce-gateway-stripe'), $result->id));
250
+					WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_stripe_charge_captured', 'yes') : $order->update_meta_data('_stripe_charge_captured', 'yes');
251 251
 
252 252
 					// Store other data such as fees
253
-					WC_Stripe_Helper::is_pre_30() ? update_post_meta( $order_id, '_transaction_id', $result->id ) : $order->set_transaction_id( $result->id );
253
+					WC_Stripe_Helper::is_pre_30() ? update_post_meta($order_id, '_transaction_id', $result->id) : $order->set_transaction_id($result->id);
254 254
 
255
-					if ( isset( $result->balance_transaction ) && isset( $result->balance_transaction->fee ) ) {
255
+					if (isset($result->balance_transaction) && isset($result->balance_transaction->fee)) {
256 256
 						// Fees and Net needs to both come from Stripe to be accurate as the returned
257 257
 						// values are in the local currency of the Stripe account, not from WC.
258
-						$fee = ! empty( $result->balance_transaction->fee ) ? WC_Stripe_Helper::format_balance_fee( $result->balance_transaction, 'fee' ) : 0;
259
-						$net = ! empty( $result->balance_transaction->net ) ? WC_Stripe_Helper::format_balance_fee( $result->balance_transaction, 'net' ) : 0;
260
-						WC_Stripe_Helper::update_stripe_fee( $order, $fee );
261
-						WC_Stripe_Helper::update_stripe_net( $order, $net );
258
+						$fee = ! empty($result->balance_transaction->fee) ? WC_Stripe_Helper::format_balance_fee($result->balance_transaction, 'fee') : 0;
259
+						$net = ! empty($result->balance_transaction->net) ? WC_Stripe_Helper::format_balance_fee($result->balance_transaction, 'net') : 0;
260
+						WC_Stripe_Helper::update_stripe_fee($order, $fee);
261
+						WC_Stripe_Helper::update_stripe_net($order, $net);
262 262
 					}
263 263
 
264
-					if ( is_callable( array( $order, 'save' ) ) ) {
264
+					if (is_callable(array($order, 'save'))) {
265 265
 						$order->save();
266 266
 					}
267 267
 				}
268 268
 
269 269
 				// This hook fires when admin manually changes order status to processing or completed.
270
-				do_action( 'woocommerce_stripe_process_manual_capture', $order, $result );
270
+				do_action('woocommerce_stripe_process_manual_capture', $order, $result);
271 271
 			}
272 272
 		}
273 273
 	}
@@ -279,14 +279,14 @@  discard block
 block discarded – undo
279 279
 	 * @version 4.0.0
280 280
 	 * @param  int $order_id
281 281
 	 */
282
-	public function cancel_payment( $order_id ) {
283
-		$order = wc_get_order( $order_id );
282
+	public function cancel_payment($order_id) {
283
+		$order = wc_get_order($order_id);
284 284
 
285
-		if ( 'stripe' === ( WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method() ) ) {
286
-			$this->process_refund( $order_id );
285
+		if ('stripe' === (WC_Stripe_Helper::is_pre_30() ? $order->payment_method : $order->get_payment_method())) {
286
+			$this->process_refund($order_id);
287 287
 
288 288
 			// This hook fires when admin manually changes order status to cancel.
289
-			do_action( 'woocommerce_stripe_process_manual_cancel', $order );
289
+			do_action('woocommerce_stripe_process_manual_cancel', $order);
290 290
 		}
291 291
 	}
292 292
 }
Please login to merge, or discard this patch.
includes/class-wc-gateway-stripe.php 1 patch
Spacing   +262 added lines, -262 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit;
4 4
 }
5 5
 
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
 	public function __construct() {
121 121
 		$this->retry_interval       = 1;
122 122
 		$this->id                   = 'stripe';
123
-		$this->method_title         = __( 'Stripe', 'woocommerce-gateway-stripe' );
123
+		$this->method_title         = __('Stripe', 'woocommerce-gateway-stripe');
124 124
 		/* translators: 1) link to Stripe register page 2) link to Stripe api keys page */
125
-		$this->method_description   = sprintf( __( 'Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe' ), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys' );
125
+		$this->method_description   = sprintf(__('Stripe works by adding payment fields on the checkout and then sending the details to Stripe for verification. <a href="%1$s" target="_blank">Sign up</a> for a Stripe account, and <a href="%2$s" target="_blank">get your Stripe account keys</a>.', 'woocommerce-gateway-stripe'), 'https://dashboard.stripe.com/register', 'https://dashboard.stripe.com/account/apikeys');
126 126
 		$this->has_fields           = true;
127 127
 		$this->supports             = array(
128 128
 			'products',
@@ -149,43 +149,43 @@  discard block
 block discarded – undo
149 149
 		$this->init_settings();
150 150
 
151 151
 		// Get setting values.
152
-		$this->title                       = $this->get_option( 'title' );
153
-		$this->description                 = $this->get_option( 'description' );
154
-		$this->enabled                     = $this->get_option( 'enabled' );
155
-		$this->testmode                    = 'yes' === $this->get_option( 'testmode' );
156
-		$this->inline_cc_form              = 'yes' === $this->get_option( 'inline_cc_form' );
157
-		$this->capture                     = 'yes' === $this->get_option( 'capture', 'yes' );
158
-		$this->statement_descriptor        = WC_Stripe_Helper::clean_statement_descriptor( $this->get_option( 'statement_descriptor' ) );
159
-		$this->three_d_secure              = 'yes' === $this->get_option( 'three_d_secure' );
160
-		$this->stripe_checkout             = 'yes' === $this->get_option( 'stripe_checkout' );
161
-		$this->stripe_checkout_image       = $this->get_option( 'stripe_checkout_image', '' );
162
-		$this->stripe_checkout_description = $this->get_option( 'stripe_checkout_description' );
163
-		$this->saved_cards                 = 'yes' === $this->get_option( 'saved_cards' );
164
-		$this->secret_key                  = $this->testmode ? $this->get_option( 'test_secret_key' ) : $this->get_option( 'secret_key' );
165
-		$this->publishable_key             = $this->testmode ? $this->get_option( 'test_publishable_key' ) : $this->get_option( 'publishable_key' );
166
-		$this->bitcoin                     = 'USD' === strtoupper( get_woocommerce_currency() ) && 'yes' === $this->get_option( 'stripe_bitcoin' );
167
-		$this->payment_request             = 'yes' === $this->get_option( 'payment_request', 'yes' );
168
-
169
-		if ( $this->stripe_checkout ) {
170
-			$this->order_button_text = __( 'Continue to payment', 'woocommerce-gateway-stripe' );
171
-		}
172
-
173
-		WC_Stripe_API::set_secret_key( $this->secret_key );
152
+		$this->title                       = $this->get_option('title');
153
+		$this->description                 = $this->get_option('description');
154
+		$this->enabled                     = $this->get_option('enabled');
155
+		$this->testmode                    = 'yes' === $this->get_option('testmode');
156
+		$this->inline_cc_form              = 'yes' === $this->get_option('inline_cc_form');
157
+		$this->capture                     = 'yes' === $this->get_option('capture', 'yes');
158
+		$this->statement_descriptor        = WC_Stripe_Helper::clean_statement_descriptor($this->get_option('statement_descriptor'));
159
+		$this->three_d_secure              = 'yes' === $this->get_option('three_d_secure');
160
+		$this->stripe_checkout             = 'yes' === $this->get_option('stripe_checkout');
161
+		$this->stripe_checkout_image       = $this->get_option('stripe_checkout_image', '');
162
+		$this->stripe_checkout_description = $this->get_option('stripe_checkout_description');
163
+		$this->saved_cards                 = 'yes' === $this->get_option('saved_cards');
164
+		$this->secret_key                  = $this->testmode ? $this->get_option('test_secret_key') : $this->get_option('secret_key');
165
+		$this->publishable_key             = $this->testmode ? $this->get_option('test_publishable_key') : $this->get_option('publishable_key');
166
+		$this->bitcoin                     = 'USD' === strtoupper(get_woocommerce_currency()) && 'yes' === $this->get_option('stripe_bitcoin');
167
+		$this->payment_request             = 'yes' === $this->get_option('payment_request', 'yes');
168
+
169
+		if ($this->stripe_checkout) {
170
+			$this->order_button_text = __('Continue to payment', 'woocommerce-gateway-stripe');
171
+		}
172
+
173
+		WC_Stripe_API::set_secret_key($this->secret_key);
174 174
 
175 175
 		// Hooks.
176
-		add_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );
177
-		add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ) );
178
-		add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
179
-		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_fee' ), 10, 1 );
180
-		add_action( 'woocommerce_admin_order_totals_after_total', array( $this, 'display_order_payout' ), 20, 1 );
181
-		add_action( 'woocommerce_customer_save_address', array( $this, 'show_update_card_notice' ), 10, 2 );
182
-		add_action( 'woocommerce_receipt_stripe', array( $this, 'stripe_checkout_receipt_page' ) );
183
-		add_action( 'woocommerce_api_' . strtolower( get_class( $this ) ), array( $this, 'stripe_checkout_return_handler' ) );
184
-
185
-		if ( WC_Stripe_Helper::is_pre_orders_exists() ) {
176
+		add_action('wp_enqueue_scripts', array($this, 'payment_scripts'));
177
+		add_action('admin_enqueue_scripts', array($this, 'admin_scripts'));
178
+		add_action('woocommerce_update_options_payment_gateways_' . $this->id, array($this, 'process_admin_options'));
179
+		add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_fee'), 10, 1);
180
+		add_action('woocommerce_admin_order_totals_after_total', array($this, 'display_order_payout'), 20, 1);
181
+		add_action('woocommerce_customer_save_address', array($this, 'show_update_card_notice'), 10, 2);
182
+		add_action('woocommerce_receipt_stripe', array($this, 'stripe_checkout_receipt_page'));
183
+		add_action('woocommerce_api_' . strtolower(get_class($this)), array($this, 'stripe_checkout_return_handler'));
184
+
185
+		if (WC_Stripe_Helper::is_pre_orders_exists()) {
186 186
 			$this->pre_orders = new WC_Stripe_Pre_Orders_Compat();
187 187
 
188
-			add_action( 'wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array( $this->pre_orders, 'process_pre_order_release_payment' ) );
188
+			add_action('wc_pre_orders_process_pre_order_completion_payment_' . $this->id, array($this->pre_orders, 'process_pre_order_release_payment'));
189 189
 		}
190 190
 	}
191 191
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 	 * @return bool
197 197
 	 */
198 198
 	public function are_keys_set() {
199
-		if ( empty( $this->secret_key ) || empty( $this->publishable_key ) ) {
199
+		if (empty($this->secret_key) || empty($this->publishable_key)) {
200 200
 			return false;
201 201
 		}
202 202
 
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 	 * @since 4.0.2
210 210
 	 */
211 211
 	public function is_available() {
212
-		if ( is_add_payment_method_page() && ! $this->saved_cards ) {
212
+		if (is_add_payment_method_page() && ! $this->saved_cards) {
213 213
 			return false;
214 214
 		}
215 215
 
@@ -223,13 +223,13 @@  discard block
 block discarded – undo
223 223
 	 * @param int $user_id
224 224
 	 * @param array $load_address
225 225
 	 */
226
-	public function show_update_card_notice( $user_id, $load_address ) {
227
-		if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods( $user_id ) || 'billing' !== $load_address ) {
226
+	public function show_update_card_notice($user_id, $load_address) {
227
+		if ( ! $this->saved_cards || ! WC_Stripe_Payment_Tokens::customer_has_saved_methods($user_id) || 'billing' !== $load_address) {
228 228
 			return;
229 229
 		}
230 230
 
231 231
 		/* translators: 1) Opening anchor tag 2) closing anchor tag */
232
-		wc_add_notice( sprintf( __( 'If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe' ), '<a href="' . esc_url( wc_get_endpoint_url( 'payment-methods' ) ) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>' ), 'notice' );
232
+		wc_add_notice(sprintf(__('If your billing address has been changed for saved payment methods, be sure to remove any %1$ssaved payment methods%2$s on file and re-add them.', 'woocommerce-gateway-stripe'), '<a href="' . esc_url(wc_get_endpoint_url('payment-methods')) . '" class="wc-stripe-update-card-notice" style="text-decoration:underline;">', '</a>'), 'notice');
233 233
 	}
234 234
 
235 235
 	/**
@@ -248,24 +248,24 @@  discard block
 block discarded – undo
248 248
 		$icons_str .= $icons['amex'];
249 249
 		$icons_str .= $icons['mastercard'];
250 250
 
251
-		if ( 'USD' === get_woocommerce_currency() ) {
251
+		if ('USD' === get_woocommerce_currency()) {
252 252
 			$icons_str .= $icons['discover'];
253 253
 			$icons_str .= $icons['jcb'];
254 254
 			$icons_str .= $icons['diners'];
255 255
 		}
256 256
 
257
-		if ( $this->bitcoin && $this->stripe_checkout ) {
257
+		if ($this->bitcoin && $this->stripe_checkout) {
258 258
 			$icons_str .= $icons['bitcoin'];
259 259
 		}
260 260
 
261
-		return apply_filters( 'woocommerce_gateway_icon', $icons_str, $this->id );
261
+		return apply_filters('woocommerce_gateway_icon', $icons_str, $this->id);
262 262
 	}
263 263
 
264 264
 	/**
265 265
 	 * Initialise Gateway Settings Form Fields
266 266
 	 */
267 267
 	public function init_form_fields() {
268
-		$this->form_fields = require( dirname( __FILE__ ) . '/admin/stripe-settings.php' );
268
+		$this->form_fields = require(dirname(__FILE__) . '/admin/stripe-settings.php');
269 269
 	}
270 270
 
271 271
 	/**
@@ -273,27 +273,27 @@  discard block
 block discarded – undo
273 273
 	 */
274 274
 	public function payment_fields() {
275 275
 		$user                 = wp_get_current_user();
276
-		$display_tokenization = $this->supports( 'tokenization' ) && is_checkout() && $this->saved_cards;
276
+		$display_tokenization = $this->supports('tokenization') && is_checkout() && $this->saved_cards;
277 277
 		$total                = WC()->cart->total;
278 278
 		$user_email           = '';
279 279
 
280 280
 		// If paying from order, we need to get total from order not cart.
281
-		if ( isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
282
-			$order      = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) );
281
+		if (isset($_GET['pay_for_order']) && ! empty($_GET['key'])) {
282
+			$order      = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key'])));
283 283
 			$total      = $order->get_total();
284 284
 			$user_email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
285 285
 		} else {
286
-			if ( $user->ID ) {
287
-				$user_email = get_user_meta( $user->ID, 'billing_email', true );
286
+			if ($user->ID) {
287
+				$user_email = get_user_meta($user->ID, 'billing_email', true);
288 288
 				$user_email = $user_email ? $user_email : $user->user_email;
289 289
 			}
290 290
 		}
291 291
 
292
-		if ( is_add_payment_method_page() ) {
293
-			$pay_button_text = __( 'Add Card', 'woocommerce-gateway-stripe' );
292
+		if (is_add_payment_method_page()) {
293
+			$pay_button_text = __('Add Card', 'woocommerce-gateway-stripe');
294 294
 			$total        = '';
295
-		} elseif ( function_exists( 'wcs_order_contains_subscription' ) && isset( $_GET['change_payment_method'] ) ) {
296
-			$pay_button_text = __( 'Change Payment Method', 'woocommerce-gateway-stripe' );
295
+		} elseif (function_exists('wcs_order_contains_subscription') && isset($_GET['change_payment_method'])) {
296
+			$pay_button_text = __('Change Payment Method', 'woocommerce-gateway-stripe');
297 297
 			$total        = '';
298 298
 		} else {
299 299
 			$pay_button_text = '';
@@ -303,45 +303,45 @@  discard block
 block discarded – undo
303 303
 
304 304
 		echo '<div
305 305
 			id="stripe-payment-data"
306
-			data-panel-label="' . esc_attr( $pay_button_text ) . '"
307
-			data-description="' . esc_attr( strip_tags( $this->stripe_checkout_description ) ) . '"
308
-			data-email="' . esc_attr( $user_email ) . '"
309
-			data-verify-zip="' . esc_attr( apply_filters( 'wc_stripe_checkout_verify_zip', false ) ? 'true' : 'false' ) . '"
310
-			data-billing-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'true' : 'false' ) . '"
311
-			data-shipping-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_shipping_address', false ) ? 'true' : 'false' ) . '" 
312
-			data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
313
-			data-name="' . esc_attr( $this->statement_descriptor ) . '"
314
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
315
-			data-image="' . esc_attr( $this->stripe_checkout_image ) . '"
316
-			data-bitcoin="' . esc_attr( ( $this->bitcoin && $this->capture ) ? 'true' : 'false' ) . '"
317
-			data-locale="' . esc_attr( apply_filters( 'wc_stripe_checkout_locale', $this->get_locale() ) ) . '"
318
-			data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
319
-			data-allow-remember-me="' . esc_attr( apply_filters( 'wc_stripe_allow_remember_me', true ) ? 'true' : 'false' ) . '">';
320
-
321
-		if ( $this->description ) {
322
-			if ( $this->testmode ) {
306
+			data-panel-label="' . esc_attr($pay_button_text) . '"
307
+			data-description="' . esc_attr(strip_tags($this->stripe_checkout_description)) . '"
308
+			data-email="' . esc_attr($user_email) . '"
309
+			data-verify-zip="' . esc_attr(apply_filters('wc_stripe_checkout_verify_zip', false) ? 'true' : 'false') . '"
310
+			data-billing-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'true' : 'false') . '"
311
+			data-shipping-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_shipping_address', false) ? 'true' : 'false') . '" 
312
+			data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '"
313
+			data-name="' . esc_attr($this->statement_descriptor) . '"
314
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
315
+			data-image="' . esc_attr($this->stripe_checkout_image) . '"
316
+			data-bitcoin="' . esc_attr(($this->bitcoin && $this->capture) ? 'true' : 'false') . '"
317
+			data-locale="' . esc_attr(apply_filters('wc_stripe_checkout_locale', $this->get_locale())) . '"
318
+			data-three-d-secure="' . esc_attr($this->three_d_secure ? 'true' : 'false') . '"
319
+			data-allow-remember-me="' . esc_attr(apply_filters('wc_stripe_allow_remember_me', true) ? 'true' : 'false') . '">';
320
+
321
+		if ($this->description) {
322
+			if ($this->testmode) {
323 323
 				/* translators: link to Stripe testing page */
324
-				$this->description .= ' ' . sprintf( __( 'TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe' ), 'https://stripe.com/docs/testing' );
325
-				$this->description  = trim( $this->description );
324
+				$this->description .= ' ' . sprintf(__('TEST MODE ENABLED. In test mode, you can use the card number 4242424242424242 with any CVC and a valid expiration date or check the <a href="%s" target="_blank">Testing Stripe documentation</a> for more card numbers.', 'woocommerce-gateway-stripe'), 'https://stripe.com/docs/testing');
325
+				$this->description  = trim($this->description);
326 326
 			}
327 327
 
328
-			echo apply_filters( 'wc_stripe_description', wpautop( wp_kses_post( $this->description ) ) );
328
+			echo apply_filters('wc_stripe_description', wpautop(wp_kses_post($this->description)));
329 329
 		}
330 330
 
331
-		if ( $display_tokenization ) {
331
+		if ($display_tokenization) {
332 332
 			$this->tokenization_script();
333 333
 			$this->saved_payment_methods();
334 334
 		}
335 335
 
336
-		if ( ! $this->stripe_checkout ) {
336
+		if ( ! $this->stripe_checkout) {
337 337
 			$this->elements_form();
338 338
 		}
339 339
 
340
-		if ( apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
340
+		if (apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
341 341
 
342
-			if ( ! $this->stripe_checkout ) {
342
+			if ( ! $this->stripe_checkout) {
343 343
 				$this->save_payment_method_checkbox();
344
-			} elseif ( $this->stripe_checkout && isset( $_GET['pay_for_order'] ) && ! empty( $_GET['key'] ) ) {
344
+			} elseif ($this->stripe_checkout && isset($_GET['pay_for_order']) && ! empty($_GET['key'])) {
345 345
 				$this->save_payment_method_checkbox();
346 346
 			}
347 347
 		}
@@ -359,12 +359,12 @@  discard block
 block discarded – undo
359 359
 	 */
360 360
 	public function elements_form() {
361 361
 		?>
362
-		<fieldset id="wc-<?php echo esc_attr( $this->id ); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
363
-			<?php do_action( 'woocommerce_credit_card_form_start', $this->id ); ?>
362
+		<fieldset id="wc-<?php echo esc_attr($this->id); ?>-cc-form" class="wc-credit-card-form wc-payment-form" style="background:transparent;">
363
+			<?php do_action('woocommerce_credit_card_form_start', $this->id); ?>
364 364
 
365
-			<?php if ( $this->inline_cc_form ) { ?>
365
+			<?php if ($this->inline_cc_form) { ?>
366 366
 				<label for="card-element">
367
-					<?php esc_html_e( 'Credit or debit card', 'woocommerce-gateway-stripe' ); ?>
367
+					<?php esc_html_e('Credit or debit card', 'woocommerce-gateway-stripe'); ?>
368 368
 				</label>
369 369
 
370 370
 				<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
 				</div>
373 373
 			<?php } else { ?>
374 374
 				<div class="form-row form-row-wide">
375
-					<label><?php _e( 'Card Number', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
375
+					<label><?php _e('Card Number', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
376 376
 
377 377
 					<div id="stripe-card-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
378 378
 					<!-- a Stripe Element will be inserted here. -->
@@ -380,7 +380,7 @@  discard block
 block discarded – undo
380 380
 				</div>
381 381
 
382 382
 				<div class="form-row form-row-first">
383
-					<label><?php _e( 'Expiry Date', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
383
+					<label><?php _e('Expiry Date', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
384 384
 
385 385
 					<div id="stripe-exp-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
386 386
 					<!-- a Stripe Element will be inserted here. -->
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 				</div>
389 389
 
390 390
 				<div class="form-row form-row-last">
391
-					<label><?php _e( 'Card Code (CVC)', 'woocommerce-gateway-stripe' ); ?> <span class="required">*</span></label>
391
+					<label><?php _e('Card Code (CVC)', 'woocommerce-gateway-stripe'); ?> <span class="required">*</span></label>
392 392
 				<div id="stripe-cvc-element" style="background:#fff;padding:0 1em;border:1px solid #ddd;margin:5px 0;padding:10px 5px;">
393 393
 				<!-- a Stripe Element will be inserted here. -->
394 394
 				</div>
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
 
399 399
 			<!-- Used to display form errors -->
400 400
 			<div class="stripe-source-errors" role="alert"></div>
401
-			<?php do_action( 'woocommerce_credit_card_form_end', $this->id ); ?>
401
+			<?php do_action('woocommerce_credit_card_form_end', $this->id); ?>
402 402
 			<div class="clear"></div>
403 403
 		</fieldset>
404 404
 		<?php
@@ -411,13 +411,13 @@  discard block
 block discarded – undo
411 411
 	 * @version 3.1.0
412 412
 	 */
413 413
 	public function admin_scripts() {
414
-		if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
414
+		if ('woocommerce_page_wc-settings' !== get_current_screen()->id) {
415 415
 			return;
416 416
 		}
417 417
 
418
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
418
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
419 419
 
420
-		wp_enqueue_script( 'woocommerce_stripe_admin', plugins_url( 'assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION, true );
420
+		wp_enqueue_script('woocommerce_stripe_admin', plugins_url('assets/js/stripe-admin' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION, true);
421 421
 	}
422 422
 
423 423
 	/**
@@ -429,44 +429,44 @@  discard block
 block discarded – undo
429 429
 	 * @version 4.0.0
430 430
 	 */
431 431
 	public function payment_scripts() {
432
-		if ( ! is_cart() && ! is_checkout() && ! isset( $_GET['pay_for_order'] ) && ! is_add_payment_method_page() && ! isset( $_GET['change_payment_method'] ) ) {
432
+		if ( ! is_cart() && ! is_checkout() && ! isset($_GET['pay_for_order']) && ! is_add_payment_method_page() && ! isset($_GET['change_payment_method'])) {
433 433
 			return;
434 434
 		}
435 435
 
436 436
 		// If Stripe is not enabled bail.
437
-		if ( 'no' === $this->enabled ) {
437
+		if ('no' === $this->enabled) {
438 438
 			return;
439 439
 		}
440 440
 
441 441
 		// If keys are not set bail.
442
-		if ( ! $this->are_keys_set() ) {
443
-			WC_Stripe_Logger::log( 'Keys are not set correctly.' );
442
+		if ( ! $this->are_keys_set()) {
443
+			WC_Stripe_Logger::log('Keys are not set correctly.');
444 444
 			return;
445 445
 		}
446 446
 
447 447
 		// If no SSL bail.
448
-		if ( ! $this->testmode && ! is_ssl() ) {
449
-			WC_Stripe_Logger::log( 'Stripe live mode requires SSL.' );
448
+		if ( ! $this->testmode && ! is_ssl()) {
449
+			WC_Stripe_Logger::log('Stripe live mode requires SSL.');
450 450
 		}
451 451
 
452
-		$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
452
+		$suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min';
453 453
 
454
-		wp_register_style( 'stripe_styles', plugins_url( 'assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE ), array(), WC_STRIPE_VERSION );
455
-		wp_enqueue_style( 'stripe_styles' );
456
-		wp_register_script( 'stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true );
457
-		wp_register_script( 'stripe', 'https://js.stripe.com/v3/', '', '3.0', true );
458
-		wp_register_script( 'woocommerce_stripe', plugins_url( 'assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE ), array( 'jquery-payment', 'stripe' ), WC_STRIPE_VERSION, true );
454
+		wp_register_style('stripe_styles', plugins_url('assets/css/stripe-styles.css', WC_STRIPE_MAIN_FILE), array(), WC_STRIPE_VERSION);
455
+		wp_enqueue_style('stripe_styles');
456
+		wp_register_script('stripe_checkout', 'https://checkout.stripe.com/checkout.js', '', WC_STRIPE_VERSION, true);
457
+		wp_register_script('stripe', 'https://js.stripe.com/v3/', '', '3.0', true);
458
+		wp_register_script('woocommerce_stripe', plugins_url('assets/js/stripe' . $suffix . '.js', WC_STRIPE_MAIN_FILE), array('jquery-payment', 'stripe'), WC_STRIPE_VERSION, true);
459 459
 
460 460
 		$stripe_params = array(
461 461
 			'key'                  => $this->publishable_key,
462
-			'i18n_terms'           => __( 'Please accept the terms and conditions first', 'woocommerce-gateway-stripe' ),
463
-			'i18n_required_fields' => __( 'Please fill in required checkout fields first', 'woocommerce-gateway-stripe' ),
462
+			'i18n_terms'           => __('Please accept the terms and conditions first', 'woocommerce-gateway-stripe'),
463
+			'i18n_required_fields' => __('Please fill in required checkout fields first', 'woocommerce-gateway-stripe'),
464 464
 		);
465 465
 
466 466
 		// If we're on the pay page we need to pass stripe.js the address of the order.
467
-		if ( isset( $_GET['pay_for_order'] ) && 'true' === $_GET['pay_for_order'] ) {
468
-			$order_id = wc_get_order_id_by_order_key( urldecode( $_GET['key'] ) );
469
-			$order    = wc_get_order( $order_id );
467
+		if (isset($_GET['pay_for_order']) && 'true' === $_GET['pay_for_order']) {
468
+			$order_id = wc_get_order_id_by_order_key(urldecode($_GET['key']));
469
+			$order    = wc_get_order($order_id);
470 470
 
471 471
 			$stripe_params['billing_first_name'] = WC_Stripe_Helper::is_pre_30() ? $order->billing_first_name : $order->get_billing_first_name();
472 472
 			$stripe_params['billing_last_name']  = WC_Stripe_Helper::is_pre_30() ? $order->billing_last_name : $order->get_billing_last_name();
@@ -478,39 +478,39 @@  discard block
 block discarded – undo
478 478
 			$stripe_params['billing_country']    = WC_Stripe_Helper::is_pre_30() ? $order->billing_country : $order->get_billing_country();
479 479
 		}
480 480
 
481
-		$stripe_params['no_prepaid_card_msg']                     = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
482
-		$stripe_params['no_sepa_owner_msg']                       = __( 'Please enter your IBAN account name.', 'woocommerce-gateway-stripe' );
483
-		$stripe_params['no_sepa_iban_msg']                        = __( 'Please enter your IBAN account number.', 'woocommerce-gateway-stripe' );
484
-		$stripe_params['sepa_mandate_notification']               = apply_filters( 'wc_stripe_sepa_mandate_notification', 'email' );
485
-		$stripe_params['allow_prepaid_card']                      = apply_filters( 'wc_stripe_allow_prepaid_card', true ) ? 'yes' : 'no';
481
+		$stripe_params['no_prepaid_card_msg']                     = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe');
482
+		$stripe_params['no_sepa_owner_msg']                       = __('Please enter your IBAN account name.', 'woocommerce-gateway-stripe');
483
+		$stripe_params['no_sepa_iban_msg']                        = __('Please enter your IBAN account number.', 'woocommerce-gateway-stripe');
484
+		$stripe_params['sepa_mandate_notification']               = apply_filters('wc_stripe_sepa_mandate_notification', 'email');
485
+		$stripe_params['allow_prepaid_card']                      = apply_filters('wc_stripe_allow_prepaid_card', true) ? 'yes' : 'no';
486 486
 		$stripe_params['inline_cc_form']                          = $this->inline_cc_form ? 'yes' : 'no';
487
-		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'yes' : 'no';
488
-		$stripe_params['is_checkout']                             = ( is_checkout() && empty( $_GET['pay_for_order'] ) ) ? 'yes' : 'no';
487
+		$stripe_params['stripe_checkout_require_billing_address'] = apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'yes' : 'no';
488
+		$stripe_params['is_checkout']                             = (is_checkout() && empty($_GET['pay_for_order'])) ? 'yes' : 'no';
489 489
 		$stripe_params['return_url']                              = $this->get_stripe_return_url();
490
-		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint( '%%endpoint%%' );
491
-		$stripe_params['stripe_nonce']                            = wp_create_nonce( '_wc_stripe_nonce' );
490
+		$stripe_params['ajaxurl']                                 = WC_AJAX::get_endpoint('%%endpoint%%');
491
+		$stripe_params['stripe_nonce']                            = wp_create_nonce('_wc_stripe_nonce');
492 492
 		$stripe_params['statement_descriptor']                    = $this->statement_descriptor;
493
-		$stripe_params['elements_options']                        = apply_filters( 'wc_stripe_elements_options', array() );
493
+		$stripe_params['elements_options']                        = apply_filters('wc_stripe_elements_options', array());
494 494
 		$stripe_params['is_stripe_checkout']                      = $this->stripe_checkout ? 'yes' : 'no';
495
-		$stripe_params['is_change_payment_page']                  = isset( $_GET['change_payment_method'] ) ? 'yes' : 'no';
496
-		$stripe_params['is_add_payment_page']                     = is_wc_endpoint_url( 'add-payment-method' ) ? 'yes' : 'no';
497
-		$stripe_params['is_pay_for_order_page']                   = is_wc_endpoint_url( 'order-pay' ) ? 'yes' : 'no';
498
-		$stripe_params['validate_modal_checkout']                 = apply_filters( 'wc_stripe_validate_modal_checkout', false ) ? 'yes' : 'no';
499
-		$stripe_params['elements_styling']                        = apply_filters( 'wc_stripe_elements_styling', false );
500
-		$stripe_params['elements_classes']                        = apply_filters( 'wc_stripe_elements_classes', false );
495
+		$stripe_params['is_change_payment_page']                  = isset($_GET['change_payment_method']) ? 'yes' : 'no';
496
+		$stripe_params['is_add_payment_page']                     = is_wc_endpoint_url('add-payment-method') ? 'yes' : 'no';
497
+		$stripe_params['is_pay_for_order_page']                   = is_wc_endpoint_url('order-pay') ? 'yes' : 'no';
498
+		$stripe_params['validate_modal_checkout']                 = apply_filters('wc_stripe_validate_modal_checkout', false) ? 'yes' : 'no';
499
+		$stripe_params['elements_styling']                        = apply_filters('wc_stripe_elements_styling', false);
500
+		$stripe_params['elements_classes']                        = apply_filters('wc_stripe_elements_classes', false);
501 501
 
502 502
 		// merge localized messages to be use in JS
503
-		$stripe_params = array_merge( $stripe_params, WC_Stripe_Helper::get_localized_messages() );
503
+		$stripe_params = array_merge($stripe_params, WC_Stripe_Helper::get_localized_messages());
504 504
 
505
-		wp_localize_script( 'woocommerce_stripe', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
506
-		wp_localize_script( 'woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters( 'wc_stripe_params', $stripe_params ) );
505
+		wp_localize_script('woocommerce_stripe', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
506
+		wp_localize_script('woocommerce_stripe_checkout', 'wc_stripe_params', apply_filters('wc_stripe_params', $stripe_params));
507 507
 
508
-		if ( $this->stripe_checkout ) {
509
-			wp_enqueue_script( 'stripe_checkout' );
508
+		if ($this->stripe_checkout) {
509
+			wp_enqueue_script('stripe_checkout');
510 510
 		}
511 511
 
512 512
 		$this->tokenization_script();
513
-		wp_enqueue_script( 'woocommerce_stripe' );
513
+		wp_enqueue_script('woocommerce_stripe');
514 514
 	}
515 515
 
516 516
 	/**
@@ -518,71 +518,71 @@  discard block
 block discarded – undo
518 518
 	 *
519 519
 	 * @since 4.1.0
520 520
 	 */
521
-	public function stripe_checkout_receipt_page( $order_id ) {
522
-		if ( ! $this->stripe_checkout ) {
521
+	public function stripe_checkout_receipt_page($order_id) {
522
+		if ( ! $this->stripe_checkout) {
523 523
 			return;
524 524
 		}
525 525
 
526 526
 		$user                 = wp_get_current_user();
527 527
 		$total                = WC()->cart->total;
528 528
 		$user_email           = '';
529
-		$display_tokenization = $this->supports( 'tokenization' ) && $this->saved_cards;
529
+		$display_tokenization = $this->supports('tokenization') && $this->saved_cards;
530 530
 
531 531
 		// If paying from order, we need to get total from order not cart.
532
-		if ( ! empty( $_GET['key'] ) ) {
533
-			$order      = wc_get_order( wc_get_order_id_by_order_key( wc_clean( $_GET['key'] ) ) );
532
+		if ( ! empty($_GET['key'])) {
533
+			$order      = wc_get_order(wc_get_order_id_by_order_key(wc_clean($_GET['key'])));
534 534
 			$total      = $order->get_total();
535 535
 			$user_email = WC_Stripe_Helper::is_pre_30() ? $order->billing_email : $order->get_billing_email();
536 536
 		} else {
537
-			if ( $user->ID ) {
538
-				$user_email = get_user_meta( $user->ID, 'billing_email', true );
537
+			if ($user->ID) {
538
+				$user_email = get_user_meta($user->ID, 'billing_email', true);
539 539
 				$user_email = $user_email ? $user_email : $user->user_email;
540 540
 			}
541 541
 		}
542 542
 
543 543
 		ob_start();
544 544
 
545
-		do_action( 'wc_stripe_checkout_receipt_page_before_form' );
545
+		do_action('wc_stripe_checkout_receipt_page_before_form');
546 546
 
547
-		echo '<form method="post" class="woocommerce-checkout" action="' . WC()->api_request_url( get_class( $this ) ) . '">';
547
+		echo '<form method="post" class="woocommerce-checkout" action="' . WC()->api_request_url(get_class($this)) . '">';
548 548
 		echo '<div
549 549
 			id="stripe-payment-data"
550
-			data-panel-label="' . esc_attr( apply_filters( 'wc_stripe_checkout_label', '' ) ) . '"
551
-			data-description="' . esc_attr( strip_tags( $this->stripe_checkout_description ) ) . '"
552
-			data-email="' . esc_attr( $user_email ) . '"
553
-			data-verify-zip="' . esc_attr( apply_filters( 'wc_stripe_checkout_verify_zip', false ) ? 'true' : 'false' ) . '"
554
-			data-billing-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_billing_address', false ) ? 'true' : 'false' ) . '"
555
-			data-shipping-address="' . esc_attr( apply_filters( 'wc_stripe_checkout_require_shipping_address', false ) ? 'true' : 'false' ) . '" 
556
-			data-amount="' . esc_attr( WC_Stripe_Helper::get_stripe_amount( $total ) ) . '"
557
-			data-name="' . esc_attr( $this->statement_descriptor ) . '"
558
-			data-currency="' . esc_attr( strtolower( get_woocommerce_currency() ) ) . '"
559
-			data-image="' . esc_attr( $this->stripe_checkout_image ) . '"
560
-			data-bitcoin="' . esc_attr( ( $this->bitcoin && $this->capture ) ? 'true' : 'false' ) . '"
561
-			data-locale="' . esc_attr( apply_filters( 'wc_stripe_checkout_locale', $this->get_locale() ) ) . '"
562
-			data-three-d-secure="' . esc_attr( $this->three_d_secure ? 'true' : 'false' ) . '"
563
-			data-allow-remember-me="' . esc_attr( apply_filters( 'wc_stripe_allow_remember_me', true ) ? 'true' : 'false' ) . '">';
564
-		echo '<input type="hidden" name="order_id" value="' . esc_attr( $order_id ) . '" />';
550
+			data-panel-label="' . esc_attr(apply_filters('wc_stripe_checkout_label', '')) . '"
551
+			data-description="' . esc_attr(strip_tags($this->stripe_checkout_description)) . '"
552
+			data-email="' . esc_attr($user_email) . '"
553
+			data-verify-zip="' . esc_attr(apply_filters('wc_stripe_checkout_verify_zip', false) ? 'true' : 'false') . '"
554
+			data-billing-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_billing_address', false) ? 'true' : 'false') . '"
555
+			data-shipping-address="' . esc_attr(apply_filters('wc_stripe_checkout_require_shipping_address', false) ? 'true' : 'false') . '" 
556
+			data-amount="' . esc_attr(WC_Stripe_Helper::get_stripe_amount($total)) . '"
557
+			data-name="' . esc_attr($this->statement_descriptor) . '"
558
+			data-currency="' . esc_attr(strtolower(get_woocommerce_currency())) . '"
559
+			data-image="' . esc_attr($this->stripe_checkout_image) . '"
560
+			data-bitcoin="' . esc_attr(($this->bitcoin && $this->capture) ? 'true' : 'false') . '"
561
+			data-locale="' . esc_attr(apply_filters('wc_stripe_checkout_locale', $this->get_locale())) . '"
562
+			data-three-d-secure="' . esc_attr($this->three_d_secure ? 'true' : 'false') . '"
563
+			data-allow-remember-me="' . esc_attr(apply_filters('wc_stripe_allow_remember_me', true) ? 'true' : 'false') . '">';
564
+		echo '<input type="hidden" name="order_id" value="' . esc_attr($order_id) . '" />';
565 565
 		echo '<input type="hidden" name="stripe_checkout_order" value="yes" />';
566 566
 
567 567
 		if (
568
-			apply_filters( 'wc_stripe_display_save_payment_method_checkbox', $display_tokenization ) &&
569
-			( ! function_exists( 'wcs_order_contains_subscription' ) || ( function_exists( 'wcs_order_contains_subscription' ) && ! WC_Subscriptions_Cart::cart_contains_subscription() ) ) &&
570
-			( ! WC_Stripe_Helper::is_pre_orders_exists() || ( WC_Stripe_Helper::is_pre_orders_exists() && ! $this->pre_orders->is_pre_order( $order_id ) ) )
568
+			apply_filters('wc_stripe_display_save_payment_method_checkbox', $display_tokenization) &&
569
+			( ! function_exists('wcs_order_contains_subscription') || (function_exists('wcs_order_contains_subscription') && ! WC_Subscriptions_Cart::cart_contains_subscription())) &&
570
+			( ! WC_Stripe_Helper::is_pre_orders_exists() || (WC_Stripe_Helper::is_pre_orders_exists() && ! $this->pre_orders->is_pre_order($order_id)))
571 571
 		) {
572 572
 			$this->save_payment_method_checkbox();
573 573
 		}
574 574
 
575
-		wp_nonce_field( 'stripe-checkout-process', 'stripe_checkout_process_nonce' );
575
+		wp_nonce_field('stripe-checkout-process', 'stripe_checkout_process_nonce');
576 576
 
577
-		do_action( 'wc_stripe_checkout_receipt_page_before_form_submit' );
577
+		do_action('wc_stripe_checkout_receipt_page_before_form_submit');
578 578
 
579
-		echo '<button type="submit" class="wc-stripe-checkout-button">' . __( 'Place Order', 'woocommerce-gateway-stripe' ) . '</button>';
579
+		echo '<button type="submit" class="wc-stripe-checkout-button">' . __('Place Order', 'woocommerce-gateway-stripe') . '</button>';
580 580
 
581
-		do_action( 'wc_stripe_checkout_receipt_page_after_form_submit' );
581
+		do_action('wc_stripe_checkout_receipt_page_after_form_submit');
582 582
 
583 583
 		echo '</form>';
584 584
 
585
-		do_action( 'wc_stripe_checkout_receipt_page_after_form' );
585
+		do_action('wc_stripe_checkout_receipt_page_after_form');
586 586
 
587 587
 		echo '</div>';
588 588
 
@@ -595,32 +595,32 @@  discard block
 block discarded – undo
595 595
 	 * @since 4.1.0
596 596
 	 */
597 597
 	public function stripe_checkout_return_handler() {
598
-		if ( ! $this->stripe_checkout ) {
598
+		if ( ! $this->stripe_checkout) {
599 599
 			return;
600 600
 		}
601 601
 
602
-		if ( ! wp_verify_nonce( $_POST['stripe_checkout_process_nonce'], 'stripe-checkout-process' ) ) {
602
+		if ( ! wp_verify_nonce($_POST['stripe_checkout_process_nonce'], 'stripe-checkout-process')) {
603 603
 			return;
604 604
 		}
605 605
 
606
-		$order_id = wc_clean( $_POST['order_id'] );
607
-		$order    = wc_get_order( $order_id );
606
+		$order_id = wc_clean($_POST['order_id']);
607
+		$order    = wc_get_order($order_id);
608 608
 
609
-		do_action( 'wc_stripe_checkout_return_handler', $order );
609
+		do_action('wc_stripe_checkout_return_handler', $order);
610 610
 
611
-		if ( WC_Stripe_Helper::is_pre_orders_exists() && $this->pre_orders->is_pre_order( $order_id ) && WC_Pre_Orders_Order::order_requires_payment_tokenization( $order_id ) ) {
612
-			$result = $this->pre_orders->process_pre_order( $order_id );
611
+		if (WC_Stripe_Helper::is_pre_orders_exists() && $this->pre_orders->is_pre_order($order_id) && WC_Pre_Orders_Order::order_requires_payment_tokenization($order_id)) {
612
+			$result = $this->pre_orders->process_pre_order($order_id);
613 613
 		} else {
614
-			$result = $this->process_payment( $order_id );
614
+			$result = $this->process_payment($order_id);
615 615
 		}
616 616
 
617
-		if ( 'success' === $result['result'] ) {
618
-			wp_redirect( $result['redirect'] );
617
+		if ('success' === $result['result']) {
618
+			wp_redirect($result['redirect']);
619 619
 			exit;
620 620
 		}
621 621
 
622 622
 		// Redirects back to pay order page.
623
-		wp_safe_redirect( $order->get_checkout_payment_url( true ) );
623
+		wp_safe_redirect($order->get_checkout_payment_url(true));
624 624
 		exit;
625 625
 	}
626 626
 
@@ -633,9 +633,9 @@  discard block
 block discarded – undo
633 633
 	public function maybe_redirect_stripe_checkout() {
634 634
 		return (
635 635
 			$this->stripe_checkout &&
636
-			! isset( $_POST['stripe_checkout_order'] ) &&
636
+			! isset($_POST['stripe_checkout_order']) &&
637 637
 			! $this->is_using_saved_payment_method() &&
638
-			! is_wc_endpoint_url( 'order-pay' )
638
+			! is_wc_endpoint_url('order-pay')
639 639
 		);
640 640
 	}
641 641
 
@@ -653,54 +653,54 @@  discard block
 block discarded – undo
653 653
 	 *
654 654
 	 * @return array|void
655 655
 	 */
656
-	public function process_payment( $order_id, $retry = true, $force_save_source = false, $previous_error = false ) {
656
+	public function process_payment($order_id, $retry = true, $force_save_source = false, $previous_error = false) {
657 657
 		try {
658
-			$order = wc_get_order( $order_id );
658
+			$order = wc_get_order($order_id);
659 659
 
660
-			if ( $this->maybe_redirect_stripe_checkout() ) {
661
-				WC_Stripe_Logger::log( sprintf( 'Redirecting to Stripe Checkout page for order %s', $order_id ) );
660
+			if ($this->maybe_redirect_stripe_checkout()) {
661
+				WC_Stripe_Logger::log(sprintf('Redirecting to Stripe Checkout page for order %s', $order_id));
662 662
 
663 663
 				return array(
664 664
 					'result'   => 'success',
665
-					'redirect' => $order->get_checkout_payment_url( true ),
665
+					'redirect' => $order->get_checkout_payment_url(true),
666 666
 				);
667 667
 			}
668 668
 
669
-			if ( $this->maybe_process_pre_orders( $order_id ) ) {
670
-				return $this->pre_orders->process_pre_order( $order_id );
669
+			if ($this->maybe_process_pre_orders($order_id)) {
670
+				return $this->pre_orders->process_pre_order($order_id);
671 671
 			}
672 672
 
673 673
 			// This comes from the create account checkbox in the checkout page.
674
-			$create_account = ! empty( $_POST['createaccount'] ) ? true : false;
674
+			$create_account = ! empty($_POST['createaccount']) ? true : false;
675 675
 
676
-			if ( $create_account ) {
676
+			if ($create_account) {
677 677
 				$new_customer_id     = WC_Stripe_Helper::is_pre_30() ? $order->customer_user : $order->get_customer_id();
678
-				$new_stripe_customer = new WC_Stripe_Customer( $new_customer_id );
678
+				$new_stripe_customer = new WC_Stripe_Customer($new_customer_id);
679 679
 				$new_stripe_customer->create_customer();
680 680
 			}
681 681
 
682
-			$prepared_source = $this->prepare_source( get_current_user_id(), $force_save_source );
682
+			$prepared_source = $this->prepare_source(get_current_user_id(), $force_save_source);
683 683
 			$source_object   = $prepared_source->source_object;
684 684
 
685 685
 			// Check if we don't allow prepaid credit cards.
686
-			if ( ! apply_filters( 'wc_stripe_allow_prepaid_card', true ) && $this->is_prepaid_card( $source_object ) ) {
687
-				$localized_message = __( 'Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe' );
688
-				throw new WC_Stripe_Exception( print_r( $source_object, true ), $localized_message );
686
+			if ( ! apply_filters('wc_stripe_allow_prepaid_card', true) && $this->is_prepaid_card($source_object)) {
687
+				$localized_message = __('Sorry, we\'re not accepting prepaid cards at this time. Your credit card has not been charge. Please try with alternative payment method.', 'woocommerce-gateway-stripe');
688
+				throw new WC_Stripe_Exception(print_r($source_object, true), $localized_message);
689 689
 			}
690 690
 
691
-			if ( empty( $prepared_source->source ) ) {
692
-				$localized_message = __( 'Payment processing failed. Please retry.', 'woocommerce-gateway-stripe' );
693
-				throw new WC_Stripe_Exception( print_r( $prepared_source, true ), $localized_message );
691
+			if (empty($prepared_source->source)) {
692
+				$localized_message = __('Payment processing failed. Please retry.', 'woocommerce-gateway-stripe');
693
+				throw new WC_Stripe_Exception(print_r($prepared_source, true), $localized_message);
694 694
 			}
695 695
 
696
-			$this->save_source_to_order( $order, $prepared_source );
696
+			$this->save_source_to_order($order, $prepared_source);
697 697
 
698 698
 			// Result from Stripe API request.
699 699
 			$response = null;
700 700
 
701
-			if ( $order->get_total() > 0 ) {
701
+			if ($order->get_total() > 0) {
702 702
 				// This will throw exception if not valid.
703
-				$this->validate_minimum_order_amount( $order );
703
+				$this->validate_minimum_order_amount($order);
704 704
 
705 705
 				/*
706 706
 				 * Check if card 3DS is required or optional with 3DS setting.
@@ -709,104 +709,104 @@  discard block
 block discarded – undo
709 709
 				 * Note that if we need to save source, the original source must be first
710 710
 				 * attached to a customer in Stripe before it can be charged.
711 711
 				 */
712
-				if ( $this->is_3ds_required( $source_object ) ) {
713
-					$response = $this->create_3ds_source( $order, $source_object );
712
+				if ($this->is_3ds_required($source_object)) {
713
+					$response = $this->create_3ds_source($order, $source_object);
714 714
 
715
-					if ( ! empty( $response->error ) ) {
715
+					if ( ! empty($response->error)) {
716 716
 						$localized_message = $response->error->message;
717 717
 
718
-						$order->add_order_note( $localized_message );
718
+						$order->add_order_note($localized_message);
719 719
 
720
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
720
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
721 721
 					}
722 722
 
723 723
 					// Update order meta with 3DS source.
724
-					if ( WC_Stripe_Helper::is_pre_30() ) {
725
-						update_post_meta( $order_id, '_stripe_source_id', $response->id );
724
+					if (WC_Stripe_Helper::is_pre_30()) {
725
+						update_post_meta($order_id, '_stripe_source_id', $response->id);
726 726
 					} else {
727
-						$order->update_meta_data( '_stripe_source_id', $response->id );
727
+						$order->update_meta_data('_stripe_source_id', $response->id);
728 728
 						$order->save();
729 729
 					}
730 730
 
731
-					WC_Stripe_Logger::log( 'Info: Redirecting to 3DS...' );
731
+					WC_Stripe_Logger::log('Info: Redirecting to 3DS...');
732 732
 
733 733
 					return array(
734 734
 						'result'   => 'success',
735
-						'redirect' => esc_url_raw( $response->redirect->url ),
735
+						'redirect' => esc_url_raw($response->redirect->url),
736 736
 					);
737 737
 				}
738 738
 
739
-				WC_Stripe_Logger::log( "Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}" );
739
+				WC_Stripe_Logger::log("Info: Begin processing payment for order $order_id for the amount of {$order->get_total()}");
740 740
 
741 741
 				/* If we're doing a retry and source is chargeable, we need to pass
742 742
 				 * a different idempotency key and retry for success.
743 743
 				 */
744
-				if ( $this->need_update_idempotency_key( $source_object, $previous_error ) ) {
745
-					add_filter( 'wc_stripe_idempotency_key', array( $this, 'change_idempotency_key' ), 10, 2 );
744
+				if ($this->need_update_idempotency_key($source_object, $previous_error)) {
745
+					add_filter('wc_stripe_idempotency_key', array($this, 'change_idempotency_key'), 10, 2);
746 746
 				}
747 747
 
748 748
 				// Make the request.
749
-				$response = WC_Stripe_API::request( $this->generate_payment_request( $order, $prepared_source ) );
749
+				$response = WC_Stripe_API::request($this->generate_payment_request($order, $prepared_source));
750 750
 
751
-				if ( ! empty( $response->error ) ) {
751
+				if ( ! empty($response->error)) {
752 752
 					// Customer param wrong? The user may have been deleted on stripe's end. Remove customer_id. Can be retried without.
753
-					if ( $this->is_no_such_customer_error( $response->error ) ) {
754
-						if ( WC_Stripe_Helper::is_pre_30() ) {
755
-							delete_user_meta( $order->customer_user, '_stripe_customer_id' );
756
-							delete_post_meta( $order_id, '_stripe_customer_id' );
753
+					if ($this->is_no_such_customer_error($response->error)) {
754
+						if (WC_Stripe_Helper::is_pre_30()) {
755
+							delete_user_meta($order->customer_user, '_stripe_customer_id');
756
+							delete_post_meta($order_id, '_stripe_customer_id');
757 757
 						} else {
758
-							delete_user_meta( $order->get_customer_id(), '_stripe_customer_id' );
759
-							$order->delete_meta_data( '_stripe_customer_id' );
758
+							delete_user_meta($order->get_customer_id(), '_stripe_customer_id');
759
+							$order->delete_meta_data('_stripe_customer_id');
760 760
 							$order->save();
761 761
 						}
762 762
 					}
763 763
 
764
-					if ( $this->is_no_such_token_error( $response->error ) && $prepared_source->token_id ) {
764
+					if ($this->is_no_such_token_error($response->error) && $prepared_source->token_id) {
765 765
 						// Source param wrong? The CARD may have been deleted on stripe's end. Remove token and show message.
766
-						$wc_token = WC_Payment_Tokens::get( $prepared_source->token_id );
766
+						$wc_token = WC_Payment_Tokens::get($prepared_source->token_id);
767 767
 						$wc_token->delete();
768
-						$localized_message = __( 'This card is no longer available and has been removed.', 'woocommerce-gateway-stripe' );
769
-						$order->add_order_note( $localized_message );
770
-						throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
768
+						$localized_message = __('This card is no longer available and has been removed.', 'woocommerce-gateway-stripe');
769
+						$order->add_order_note($localized_message);
770
+						throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
771 771
 					}
772 772
 
773 773
 					// We want to retry.
774
-					if ( $this->is_retryable_error( $response->error ) ) {
775
-						if ( $retry ) {
774
+					if ($this->is_retryable_error($response->error)) {
775
+						if ($retry) {
776 776
 							// Don't do anymore retries after this.
777
-							if ( 5 <= $this->retry_interval ) {
778
-								return $this->process_payment( $order_id, false, $force_save_source, $response->error );
777
+							if (5 <= $this->retry_interval) {
778
+								return $this->process_payment($order_id, false, $force_save_source, $response->error);
779 779
 							}
780 780
 
781
-							sleep( $this->retry_interval );
781
+							sleep($this->retry_interval);
782 782
 
783 783
 							$this->retry_interval++;
784 784
 
785
-							return $this->process_payment( $order_id, true, $force_save_source, $response->error );
785
+							return $this->process_payment($order_id, true, $force_save_source, $response->error);
786 786
 						} else {
787
-							$localized_message = __( 'Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe' );
788
-							$order->add_order_note( $localized_message );
789
-							throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
787
+							$localized_message = __('Sorry, we are unable to process your payment at this time. Please retry later.', 'woocommerce-gateway-stripe');
788
+							$order->add_order_note($localized_message);
789
+							throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
790 790
 						}
791 791
 					}
792 792
 
793 793
 					$localized_messages = WC_Stripe_Helper::get_localized_messages();
794 794
 
795
-					if ( 'card_error' === $response->error->type ) {
796
-						$localized_message = isset( $localized_messages[ $response->error->code ] ) ? $localized_messages[ $response->error->code ] : $response->error->message;
795
+					if ('card_error' === $response->error->type) {
796
+						$localized_message = isset($localized_messages[$response->error->code]) ? $localized_messages[$response->error->code] : $response->error->message;
797 797
 					} else {
798
-						$localized_message = isset( $localized_messages[ $response->error->type ] ) ? $localized_messages[ $response->error->type ] : $response->error->message;
798
+						$localized_message = isset($localized_messages[$response->error->type]) ? $localized_messages[$response->error->type] : $response->error->message;
799 799
 					}
800 800
 
801
-					$order->add_order_note( $localized_message );
801
+					$order->add_order_note($localized_message);
802 802
 
803
-					throw new WC_Stripe_Exception( print_r( $response, true ), $localized_message );
803
+					throw new WC_Stripe_Exception(print_r($response, true), $localized_message);
804 804
 				}
805 805
 
806
-				do_action( 'wc_gateway_stripe_process_payment', $response, $order );
806
+				do_action('wc_gateway_stripe_process_payment', $response, $order);
807 807
 
808 808
 				// Process valid response.
809
-				$this->process_response( $response, $order );
809
+				$this->process_response($response, $order);
810 810
 			} else {
811 811
 				$order->payment_complete();
812 812
 			}
@@ -817,20 +817,20 @@  discard block
 block discarded – undo
817 817
 			// Return thank you page redirect.
818 818
 			return array(
819 819
 				'result'   => 'success',
820
-				'redirect' => $this->get_return_url( $order ),
820
+				'redirect' => $this->get_return_url($order),
821 821
 			);
822 822
 
823
-		} catch ( WC_Stripe_Exception $e ) {
824
-			wc_add_notice( $e->getLocalizedMessage(), 'error' );
825
-			WC_Stripe_Logger::log( 'Error: ' . $e->getMessage() );
823
+		} catch (WC_Stripe_Exception $e) {
824
+			wc_add_notice($e->getLocalizedMessage(), 'error');
825
+			WC_Stripe_Logger::log('Error: ' . $e->getMessage());
826 826
 
827
-			do_action( 'wc_gateway_stripe_process_payment_error', $e, $order );
827
+			do_action('wc_gateway_stripe_process_payment_error', $e, $order);
828 828
 
829 829
 			/* translators: error message */
830
-			$order->update_status( 'failed' );
830
+			$order->update_status('failed');
831 831
 
832
-			if ( $order->has_status( array( 'pending', 'failed' ) ) ) {
833
-				$this->send_failed_order_email( $order_id );
832
+			if ($order->has_status(array('pending', 'failed'))) {
833
+				$this->send_failed_order_email($order_id);
834 834
 			}
835 835
 
836 836
 			return array(
@@ -847,17 +847,17 @@  discard block
 block discarded – undo
847 847
 	 *
848 848
 	 * @param int $order_id
849 849
 	 */
850
-	public function display_order_fee( $order_id ) {
851
-		if ( apply_filters( 'wc_stripe_hide_display_order_fee', false, $order_id ) ) {
850
+	public function display_order_fee($order_id) {
851
+		if (apply_filters('wc_stripe_hide_display_order_fee', false, $order_id)) {
852 852
 			return;
853 853
 		}
854 854
 
855
-		$order = wc_get_order( $order_id );
855
+		$order = wc_get_order($order_id);
856 856
 
857
-		$fee      = WC_Stripe_Helper::get_stripe_fee( $order );
858
-		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
857
+		$fee      = WC_Stripe_Helper::get_stripe_fee($order);
858
+		$currency = WC_Stripe_Helper::get_stripe_currency($order);
859 859
 
860
-		if ( ! $fee || ! $currency ) {
860
+		if ( ! $fee || ! $currency) {
861 861
 			return;
862 862
 		}
863 863
 
@@ -865,12 +865,12 @@  discard block
 block discarded – undo
865 865
 
866 866
 		<tr>
867 867
 			<td class="label stripe-fee">
868
-				<?php echo wc_help_tip( __( 'This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe' ) ); ?>
869
-				<?php esc_html_e( 'Stripe Fee:', 'woocommerce-gateway-stripe' ); ?>
868
+				<?php echo wc_help_tip(__('This represents the fee Stripe collects for the transaction.', 'woocommerce-gateway-stripe')); ?>
869
+				<?php esc_html_e('Stripe Fee:', 'woocommerce-gateway-stripe'); ?>
870 870
 			</td>
871 871
 			<td width="1%"></td>
872 872
 			<td class="total">
873
-				-&nbsp;<?php echo wc_price( $fee, array( 'currency' => $currency ) ); ?>
873
+				-&nbsp;<?php echo wc_price($fee, array('currency' => $currency)); ?>
874 874
 			</td>
875 875
 		</tr>
876 876
 
@@ -884,17 +884,17 @@  discard block
 block discarded – undo
884 884
 	 *
885 885
 	 * @param int $order_id
886 886
 	 */
887
-	public function display_order_payout( $order_id ) {
888
-		if ( apply_filters( 'wc_stripe_hide_display_order_payout', false, $order_id ) ) {
887
+	public function display_order_payout($order_id) {
888
+		if (apply_filters('wc_stripe_hide_display_order_payout', false, $order_id)) {
889 889
 			return;
890 890
 		}
891 891
 
892
-		$order = wc_get_order( $order_id );
892
+		$order = wc_get_order($order_id);
893 893
 
894
-		$net      = WC_Stripe_Helper::get_stripe_net( $order );
895
-		$currency = WC_Stripe_Helper::get_stripe_currency( $order );
894
+		$net      = WC_Stripe_Helper::get_stripe_net($order);
895
+		$currency = WC_Stripe_Helper::get_stripe_currency($order);
896 896
 
897
-		if ( ! $net || ! $currency ) {
897
+		if ( ! $net || ! $currency) {
898 898
 			return;
899 899
 		}
900 900
 
@@ -902,12 +902,12 @@  discard block
 block discarded – undo
902 902
 
903 903
 		<tr>
904 904
 			<td class="label stripe-payout">
905
-				<?php echo wc_help_tip( __( 'This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe' ) ); ?>
906
-				<?php esc_html_e( 'Stripe Payout:', 'woocommerce-gateway-stripe' ); ?>
905
+				<?php echo wc_help_tip(__('This represents the net total that will be credited to your Stripe bank account. This may be in the currency that is set in your Stripe account.', 'woocommerce-gateway-stripe')); ?>
906
+				<?php esc_html_e('Stripe Payout:', 'woocommerce-gateway-stripe'); ?>
907 907
 			</td>
908 908
 			<td width="1%"></td>
909 909
 			<td class="total">
910
-				<?php echo wc_price( $net, array( 'currency' => $currency ) ); ?>
910
+				<?php echo wc_price($net, array('currency' => $currency)); ?>
911 911
 			</td>
912 912
 		</tr>
913 913
 
Please login to merge, or discard this patch.
woocommerce-gateway-stripe.php 1 patch
Spacing   +92 added lines, -92 removed lines patch added patch discarded remove patch
@@ -15,20 +15,20 @@  discard block
 block discarded – undo
15 15
  *
16 16
  */
17 17
 
18
-if ( ! defined( 'ABSPATH' ) ) {
18
+if ( ! defined('ABSPATH')) {
19 19
 	exit;
20 20
 }
21 21
 
22
-if ( ! class_exists( 'WC_Stripe' ) ) :
22
+if ( ! class_exists('WC_Stripe')) :
23 23
 	/**
24 24
 	 * Required minimums and constants
25 25
 	 */
26
-	define( 'WC_STRIPE_VERSION', '4.1.0' );
27
-	define( 'WC_STRIPE_MIN_PHP_VER', '5.6.0' );
28
-	define( 'WC_STRIPE_MIN_WC_VER', '2.6.0' );
29
-	define( 'WC_STRIPE_MAIN_FILE', __FILE__ );
30
-	define( 'WC_STRIPE_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
31
-	define( 'WC_STRIPE_PLUGIN_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
26
+	define('WC_STRIPE_VERSION', '4.1.0');
27
+	define('WC_STRIPE_MIN_PHP_VER', '5.6.0');
28
+	define('WC_STRIPE_MIN_WC_VER', '2.6.0');
29
+	define('WC_STRIPE_MAIN_FILE', __FILE__);
30
+	define('WC_STRIPE_PLUGIN_URL', untrailingslashit(plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__))));
31
+	define('WC_STRIPE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
32 32
 
33 33
 	class WC_Stripe {
34 34
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 		 * @return Singleton The *Singleton* instance.
49 49
 		 */
50 50
 		public static function get_instance() {
51
-			if ( null === self::$instance ) {
51
+			if (null === self::$instance) {
52 52
 				self::$instance = new self();
53 53
 			}
54 54
 			return self::$instance;
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 		 * *Singleton* via the `new` operator from outside of this class.
76 76
 		 */
77 77
 		private function __construct() {
78
-			add_action( 'admin_init', array( $this, 'install' ) );
79
-			add_action( 'plugins_loaded', array( $this, 'init' ) );
78
+			add_action('admin_init', array($this, 'install'));
79
+			add_action('plugins_loaded', array($this, 'init'));
80 80
 		}
81 81
 
82 82
 		/**
@@ -86,51 +86,51 @@  discard block
 block discarded – undo
86 86
 		 * @version 4.0.0
87 87
 		 */
88 88
 		public function init() {
89
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-exception.php' );
90
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-logger.php' );
91
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-helper.php' );
92
-			include_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-api.php' );
89
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-exception.php');
90
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-logger.php');
91
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-helper.php');
92
+			include_once(dirname(__FILE__) . '/includes/class-wc-stripe-api.php');
93 93
 
94 94
 			// Don't hook anything else in the plugin if we're in an incompatible environment.
95
-			if ( $this->get_environment_warning() && is_plugin_active( plugin_basename( __FILE__ ) ) ) {
95
+			if ($this->get_environment_warning() && is_plugin_active(plugin_basename(__FILE__))) {
96 96
 				return;
97 97
 			}
98 98
 
99
-			load_plugin_textdomain( 'woocommerce-gateway-stripe', false, plugin_basename( dirname( __FILE__ ) ) . '/languages' );
100
-
101
-			require_once( dirname( __FILE__ ) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php' );
102
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-webhook-handler.php' );
103
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-sepa-payment-token.php' );
104
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-apple-pay-registration.php' );
105
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-pre-orders-compat.php' );
106
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-gateway-stripe.php' );
107
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php' );
108
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php' );
109
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php' );
110
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php' );
111
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php' );
112
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php' );
113
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php' );
114
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php' );
115
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php' );
116
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php' );
117
-			require_once( dirname( __FILE__ ) . '/includes/payment-methods/class-wc-stripe-payment-request.php' );
118
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-subs-compat.php' );
119
-			require_once( dirname( __FILE__ ) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php' );
120
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-order-handler.php' );
121
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-payment-tokens.php' );
122
-			require_once( dirname( __FILE__ ) . '/includes/class-wc-stripe-customer.php' );
123
-
124
-			if ( is_admin() ) {
125
-				require_once( dirname( __FILE__ ) . '/includes/admin/class-wc-stripe-admin-notices.php' );
99
+			load_plugin_textdomain('woocommerce-gateway-stripe', false, plugin_basename(dirname(__FILE__)) . '/languages');
100
+
101
+			require_once(dirname(__FILE__) . '/includes/abstracts/abstract-wc-stripe-payment-gateway.php');
102
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-webhook-handler.php');
103
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-sepa-payment-token.php');
104
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-apple-pay-registration.php');
105
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-pre-orders-compat.php');
106
+			require_once(dirname(__FILE__) . '/includes/class-wc-gateway-stripe.php');
107
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bancontact.php');
108
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sofort.php');
109
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-giropay.php');
110
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-eps.php');
111
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-ideal.php');
112
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-p24.php');
113
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-alipay.php');
114
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-sepa.php');
115
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-bitcoin.php');
116
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-gateway-stripe-multibanco.php');
117
+			require_once(dirname(__FILE__) . '/includes/payment-methods/class-wc-stripe-payment-request.php');
118
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-subs-compat.php');
119
+			require_once(dirname(__FILE__) . '/includes/compat/class-wc-stripe-sepa-subs-compat.php');
120
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-order-handler.php');
121
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-payment-tokens.php');
122
+			require_once(dirname(__FILE__) . '/includes/class-wc-stripe-customer.php');
123
+
124
+			if (is_admin()) {
125
+				require_once(dirname(__FILE__) . '/includes/admin/class-wc-stripe-admin-notices.php');
126 126
 			}
127 127
 
128 128
 			// REMOVE IN THE FUTURE.
129
-			require_once( dirname( __FILE__ ) . '/includes/deprecated/class-wc-stripe-apple-pay.php' );
129
+			require_once(dirname(__FILE__) . '/includes/deprecated/class-wc-stripe-apple-pay.php');
130 130
 
131
-			add_filter( 'woocommerce_payment_gateways', array( $this, 'add_gateways' ) );
132
-			add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'plugin_action_links' ) );
133
-			add_filter( 'woocommerce_get_sections_checkout', array( $this, 'filter_gateway_order_admin' ) );
131
+			add_filter('woocommerce_payment_gateways', array($this, 'add_gateways'));
132
+			add_filter('plugin_action_links_' . plugin_basename(__FILE__), array($this, 'plugin_action_links'));
133
+			add_filter('woocommerce_get_sections_checkout', array($this, 'filter_gateway_order_admin'));
134 134
 		}
135 135
 
136 136
 		/**
@@ -142,26 +142,26 @@  discard block
 block discarded – undo
142 142
 		 * @version 4.0.0
143 143
 		 */
144 144
 		public function get_environment_warning() {
145
-			if ( version_compare( phpversion(), WC_STRIPE_MIN_PHP_VER, '<' ) ) {
145
+			if (version_compare(phpversion(), WC_STRIPE_MIN_PHP_VER, '<')) {
146 146
 				/* translators: 1) int version 2) int version */
147
-				$message = __( 'WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
147
+				$message = __('WooCommerce Stripe - The minimum PHP version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe');
148 148
 
149
-				return sprintf( $message, WC_STRIPE_MIN_PHP_VER, phpversion() );
149
+				return sprintf($message, WC_STRIPE_MIN_PHP_VER, phpversion());
150 150
 			}
151 151
 
152
-			if ( ! defined( 'WC_VERSION' ) ) {
153
-				return __( 'WooCommerce Stripe requires WooCommerce to be activated to work.', 'woocommerce-gateway-stripe' );
152
+			if ( ! defined('WC_VERSION')) {
153
+				return __('WooCommerce Stripe requires WooCommerce to be activated to work.', 'woocommerce-gateway-stripe');
154 154
 			}
155 155
 
156
-			if ( version_compare( WC_VERSION, WC_STRIPE_MIN_WC_VER, '<' ) ) {
156
+			if (version_compare(WC_VERSION, WC_STRIPE_MIN_WC_VER, '<')) {
157 157
 				/* translators: 1) int version 2) int version */
158
-				$message = __( 'WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe' );
158
+				$message = __('WooCommerce Stripe - The minimum WooCommerce version required for this plugin is %1$s. You are running %2$s.', 'woocommerce-gateway-stripe');
159 159
 
160
-				return sprintf( $message, WC_STRIPE_MIN_WC_VER, WC_VERSION );
160
+				return sprintf($message, WC_STRIPE_MIN_WC_VER, WC_VERSION);
161 161
 			}
162 162
 
163
-			if ( ! function_exists( 'curl_init' ) ) {
164
-				return __( 'WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe' );
163
+			if ( ! function_exists('curl_init')) {
164
+				return __('WooCommerce Stripe - cURL is not installed.', 'woocommerce-gateway-stripe');
165 165
 			}
166 166
 
167 167
 			return false;
@@ -174,8 +174,8 @@  discard block
 block discarded – undo
174 174
 		 * @version 4.0.0
175 175
 		 */
176 176
 		public function update_plugin_version() {
177
-			delete_option( 'wc_stripe_version' );
178
-			update_option( 'wc_stripe_version', WC_STRIPE_VERSION );
177
+			delete_option('wc_stripe_version');
178
+			update_option('wc_stripe_version', WC_STRIPE_VERSION);
179 179
 		}
180 180
 
181 181
 		/**
@@ -185,11 +185,11 @@  discard block
 block discarded – undo
185 185
 		 * @version 3.1.0
186 186
 		 */
187 187
 		public function install() {
188
-			if ( ! defined( 'IFRAME_REQUEST' ) && ( WC_STRIPE_VERSION !== get_option( 'wc_stripe_version' ) ) ) {
189
-				do_action( 'woocommerce_stripe_updated' );
188
+			if ( ! defined('IFRAME_REQUEST') && (WC_STRIPE_VERSION !== get_option('wc_stripe_version'))) {
189
+				do_action('woocommerce_stripe_updated');
190 190
 
191
-				if ( ! defined( 'WC_STRIPE_INSTALLING' ) ) {
192
-					define( 'WC_STRIPE_INSTALLING', true );
191
+				if ( ! defined('WC_STRIPE_INSTALLING')) {
192
+					define('WC_STRIPE_INSTALLING', true);
193 193
 				}
194 194
 
195 195
 				$this->update_plugin_version();
@@ -202,13 +202,13 @@  discard block
 block discarded – undo
202 202
 		 * @since 1.0.0
203 203
 		 * @version 4.0.0
204 204
 		 */
205
-		public function plugin_action_links( $links ) {
205
+		public function plugin_action_links($links) {
206 206
 			$plugin_links = array(
207
-				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__( 'Settings', 'woocommerce-gateway-stripe' ) . '</a>',
208
-				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__( 'Docs', 'woocommerce-gateway-stripe' ) . '</a>',
209
-				'<a href="https://woocommerce.com/contact-us/">' . esc_html__( 'Support', 'woocommerce-gateway-stripe' ) . '</a>',
207
+				'<a href="admin.php?page=wc-settings&tab=checkout&section=stripe">' . esc_html__('Settings', 'woocommerce-gateway-stripe') . '</a>',
208
+				'<a href="https://docs.woocommerce.com/document/stripe/">' . esc_html__('Docs', 'woocommerce-gateway-stripe') . '</a>',
209
+				'<a href="https://woocommerce.com/contact-us/">' . esc_html__('Support', 'woocommerce-gateway-stripe') . '</a>',
210 210
 			);
211
-			return array_merge( $plugin_links, $links );
211
+			return array_merge($plugin_links, $links);
212 212
 		}
213 213
 
214 214
 		/**
@@ -217,8 +217,8 @@  discard block
 block discarded – undo
217 217
 		 * @since 1.0.0
218 218
 		 * @version 4.0.0
219 219
 		 */
220
-		public function add_gateways( $methods ) {
221
-			if ( class_exists( 'WC_Subscriptions_Order' ) && function_exists( 'wcs_create_renewal_order' ) ) {
220
+		public function add_gateways($methods) {
221
+			if (class_exists('WC_Subscriptions_Order') && function_exists('wcs_create_renewal_order')) {
222 222
 				$methods[] = 'WC_Stripe_Subs_Compat';
223 223
 				$methods[] = 'WC_Stripe_Sepa_Subs_Compat';
224 224
 			} else {
@@ -245,30 +245,30 @@  discard block
 block discarded – undo
245 245
 		 * @since 4.0.0
246 246
 		 * @version 4.0.0
247 247
 		 */
248
-		public function filter_gateway_order_admin( $sections ) {
249
-			unset( $sections['stripe'] );
250
-			unset( $sections['stripe_bancontact'] );
251
-			unset( $sections['stripe_sofort'] );
252
-			unset( $sections['stripe_giropay'] );
253
-			unset( $sections['stripe_eps'] );
254
-			unset( $sections['stripe_ideal'] );
255
-			unset( $sections['stripe_p24'] );
256
-			unset( $sections['stripe_alipay'] );
257
-			unset( $sections['stripe_sepa'] );
258
-			unset( $sections['stripe_bitcoin'] );
259
-			unset( $sections['stripe_multibanco'] );
248
+		public function filter_gateway_order_admin($sections) {
249
+			unset($sections['stripe']);
250
+			unset($sections['stripe_bancontact']);
251
+			unset($sections['stripe_sofort']);
252
+			unset($sections['stripe_giropay']);
253
+			unset($sections['stripe_eps']);
254
+			unset($sections['stripe_ideal']);
255
+			unset($sections['stripe_p24']);
256
+			unset($sections['stripe_alipay']);
257
+			unset($sections['stripe_sepa']);
258
+			unset($sections['stripe_bitcoin']);
259
+			unset($sections['stripe_multibanco']);
260 260
 
261 261
 			$sections['stripe']            = 'Stripe';
262
-			$sections['stripe_bancontact'] = __( 'Stripe Bancontact', 'woocommerce-gateway-stripe' );
263
-			$sections['stripe_sofort']     = __( 'Stripe SOFORT', 'woocommerce-gateway-stripe' );
264
-			$sections['stripe_giropay']    = __( 'Stripe Giropay', 'woocommerce-gateway-stripe' );
265
-			$sections['stripe_eps']        = __( 'Stripe EPS', 'woocommerce-gateway-stripe' );
266
-			$sections['stripe_ideal']      = __( 'Stripe iDeal', 'woocommerce-gateway-stripe' );
267
-			$sections['stripe_p24']        = __( 'Stripe P24', 'woocommerce-gateway-stripe' );
268
-			$sections['stripe_alipay']     = __( 'Stripe Alipay', 'woocommerce-gateway-stripe' );
269
-			$sections['stripe_sepa']       = __( 'Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe' );
270
-			$sections['stripe_bitcoin']    = __( 'Stripe Bitcoin', 'woocommerce-gateway-stripe' );
271
-			$sections['stripe_multibanco'] = __( 'Stripe Multibanco', 'woocommerce-gateway-stripe' );
262
+			$sections['stripe_bancontact'] = __('Stripe Bancontact', 'woocommerce-gateway-stripe');
263
+			$sections['stripe_sofort']     = __('Stripe SOFORT', 'woocommerce-gateway-stripe');
264
+			$sections['stripe_giropay']    = __('Stripe Giropay', 'woocommerce-gateway-stripe');
265
+			$sections['stripe_eps']        = __('Stripe EPS', 'woocommerce-gateway-stripe');
266
+			$sections['stripe_ideal']      = __('Stripe iDeal', 'woocommerce-gateway-stripe');
267
+			$sections['stripe_p24']        = __('Stripe P24', 'woocommerce-gateway-stripe');
268
+			$sections['stripe_alipay']     = __('Stripe Alipay', 'woocommerce-gateway-stripe');
269
+			$sections['stripe_sepa']       = __('Stripe SEPA Direct Debit', 'woocommerce-gateway-stripe');
270
+			$sections['stripe_bitcoin']    = __('Stripe Bitcoin', 'woocommerce-gateway-stripe');
271
+			$sections['stripe_multibanco'] = __('Stripe Multibanco', 'woocommerce-gateway-stripe');
272 272
 
273 273
 			return $sections;
274 274
 		}
Please login to merge, or discard this patch.