@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Abstaract Payment Gateway class. |
@@ -138,53 +138,53 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function __construct() { |
140 | 140 | |
141 | - do_action( 'getpaid_before_init_payment_gateway_' . $this->id, $this ); |
|
141 | + do_action('getpaid_before_init_payment_gateway_' . $this->id, $this); |
|
142 | 142 | |
143 | 143 | // Register gateway. |
144 | - add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) ); |
|
144 | + add_filter('wpinv_payment_gateways', array($this, 'register_gateway')); |
|
145 | 145 | |
146 | - $this->enabled = wpinv_is_gateway_active( $this->id ); |
|
146 | + $this->enabled = wpinv_is_gateway_active($this->id); |
|
147 | 147 | |
148 | 148 | // Add support for various features. |
149 | - foreach ( $this->supports as $feature ) { |
|
150 | - add_filter( "wpinv_{$this->id}_support_{$feature}", '__return_true' ); |
|
151 | - add_filter( "getpaid_{$this->id}_support_{$feature}", '__return_true' ); |
|
152 | - add_filter( "getpaid_{$this->id}_supports_{$feature}", '__return_true' ); |
|
149 | + foreach ($this->supports as $feature) { |
|
150 | + add_filter("wpinv_{$this->id}_support_{$feature}", '__return_true'); |
|
151 | + add_filter("getpaid_{$this->id}_support_{$feature}", '__return_true'); |
|
152 | + add_filter("getpaid_{$this->id}_supports_{$feature}", '__return_true'); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | // Invoice addons. |
156 | - if ( $this->supports( 'addons' ) ) { |
|
157 | - add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 ); |
|
156 | + if ($this->supports('addons')) { |
|
157 | + add_action("getpaid_process_{$this->id}_invoice_addons", array($this, 'process_addons'), 10, 2); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | // Gateway settings. |
161 | - add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) ); |
|
161 | + add_filter("wpinv_gateway_settings_{$this->id}", array($this, 'admin_settings')); |
|
162 | 162 | |
163 | 163 | // Gateway checkout fiellds. |
164 | - add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 ); |
|
164 | + add_action("wpinv_{$this->id}_cc_form", array($this, 'payment_fields'), 10, 2); |
|
165 | 165 | |
166 | 166 | // Process payment. |
167 | - add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 ); |
|
167 | + add_action("getpaid_gateway_{$this->id}", array($this, 'process_payment'), 10, 3); |
|
168 | 168 | |
169 | 169 | // Change the checkout button text. |
170 | - if ( ! empty( $this->checkout_button_text ) ) { |
|
171 | - add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) ); |
|
170 | + if (!empty($this->checkout_button_text)) { |
|
171 | + add_filter("getpaid_gateway_{$this->id}_checkout_button_label", array($this, 'rename_checkout_button')); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | // Check if a gateway is valid for a given currency. |
175 | - add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 ); |
|
175 | + add_filter("getpaid_gateway_{$this->id}_is_valid_for_currency", array($this, 'validate_currency'), 10, 2); |
|
176 | 176 | |
177 | 177 | // Generate the transaction url. |
178 | - add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 ); |
|
178 | + add_filter("getpaid_gateway_{$this->id}_transaction_url", array($this, 'filter_transaction_url'), 10, 2); |
|
179 | 179 | |
180 | 180 | // Generate the subscription url. |
181 | - add_filter( 'getpaid_remote_subscription_profile_url', array( $this, 'generate_subscription_url' ), 10, 2 ); |
|
181 | + add_filter('getpaid_remote_subscription_profile_url', array($this, 'generate_subscription_url'), 10, 2); |
|
182 | 182 | |
183 | 183 | // Confirm payments. |
184 | - add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 ); |
|
184 | + add_filter("wpinv_payment_confirm_{$this->id}", array($this, 'confirm_payment'), 10, 2); |
|
185 | 185 | |
186 | 186 | // Verify IPNs. |
187 | - add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) ); |
|
187 | + add_action("wpinv_verify_{$this->id}_ipn", array($this, 'verify_ipn')); |
|
188 | 188 | |
189 | 189 | } |
190 | 190 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | * @since 1.0.19 |
195 | 195 | * @return bool |
196 | 196 | */ |
197 | - public function is( $gateway ) { |
|
197 | + public function is($gateway) { |
|
198 | 198 | return $gateway == $this->id; |
199 | 199 | } |
200 | 200 | |
@@ -204,23 +204,23 @@ discard block |
||
204 | 204 | * @since 1.0.19 |
205 | 205 | * @return array |
206 | 206 | */ |
207 | - public function get_tokens( $sandbox = null ) { |
|
207 | + public function get_tokens($sandbox = null) { |
|
208 | 208 | |
209 | - if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) { |
|
210 | - $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true ); |
|
209 | + if (is_user_logged_in() && $this->supports('tokens') && 0 == count($this->tokens)) { |
|
210 | + $tokens = get_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", true); |
|
211 | 211 | |
212 | - if ( is_array( $tokens ) ) { |
|
212 | + if (is_array($tokens)) { |
|
213 | 213 | $this->tokens = $tokens; |
214 | 214 | } |
215 | 215 | } |
216 | 216 | |
217 | - if ( ! is_bool( $sandbox ) ) { |
|
217 | + if (!is_bool($sandbox)) { |
|
218 | 218 | return $this->tokens; |
219 | 219 | } |
220 | 220 | |
221 | 221 | // Filter tokens. |
222 | - $args = array( 'type' => $sandbox ? 'sandbox' : 'live' ); |
|
223 | - return wp_list_filter( $this->tokens, $args ); |
|
222 | + $args = array('type' => $sandbox ? 'sandbox' : 'live'); |
|
223 | + return wp_list_filter($this->tokens, $args); |
|
224 | 224 | |
225 | 225 | } |
226 | 226 | |
@@ -229,12 +229,12 @@ discard block |
||
229 | 229 | * |
230 | 230 | * @since 1.0.19 |
231 | 231 | */ |
232 | - public function save_token( $token ) { |
|
232 | + public function save_token($token) { |
|
233 | 233 | |
234 | 234 | $tokens = $this->get_tokens(); |
235 | 235 | $tokens[] = $token; |
236 | 236 | |
237 | - update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens ); |
|
237 | + update_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens); |
|
238 | 238 | |
239 | 239 | $this->tokens = $tokens; |
240 | 240 | |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @return string |
247 | 247 | */ |
248 | 248 | public function get_method_title() { |
249 | - return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this ); |
|
249 | + return apply_filters('getpaid_gateway_method_title', $this->method_title, $this); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | * @return string |
256 | 256 | */ |
257 | 257 | public function get_method_description() { |
258 | - return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this ); |
|
258 | + return apply_filters('getpaid_gateway_method_description', $this->method_description, $this); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | * @param WPInv_Invoice $invoice Invoice object. |
265 | 265 | * @return string |
266 | 266 | */ |
267 | - public function get_return_url( $invoice ) { |
|
267 | + public function get_return_url($invoice) { |
|
268 | 268 | |
269 | 269 | // Payment success url |
270 | 270 | $return_url = add_query_arg( |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | wpinv_get_success_page_uri() |
277 | 277 | ); |
278 | 278 | |
279 | - return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this ); |
|
279 | + return apply_filters('getpaid_gateway_success_url', $return_url, $invoice, $this); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | /** |
@@ -285,24 +285,24 @@ discard block |
||
285 | 285 | * @param string $content Success page content. |
286 | 286 | * @return string |
287 | 287 | */ |
288 | - public function confirm_payment( $content ) { |
|
288 | + public function confirm_payment($content) { |
|
289 | 289 | |
290 | 290 | // Retrieve the invoice. |
291 | 291 | $invoice_id = getpaid_get_current_invoice_id(); |
292 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
292 | + $invoice = wpinv_get_invoice($invoice_id); |
|
293 | 293 | |
294 | 294 | // Ensure that it exists and that it is pending payment. |
295 | - if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) { |
|
295 | + if (empty($invoice_id) || !$invoice->needs_payment()) { |
|
296 | 296 | return $content; |
297 | 297 | } |
298 | 298 | |
299 | 299 | // Can the user view this invoice?? |
300 | - if ( ! wpinv_user_can_view_invoice( $invoice ) ) { |
|
300 | + if (!wpinv_user_can_view_invoice($invoice)) { |
|
301 | 301 | return $content; |
302 | 302 | } |
303 | 303 | |
304 | 304 | // Show payment processing indicator. |
305 | - return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) ); |
|
305 | + return wpinv_get_template_html('wpinv-payment-processing.php', compact('invoice')); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @param GetPaid_Form_Item[] $items |
320 | 320 | * @return WPInv_Invoice |
321 | 321 | */ |
322 | - public function process_addons( $invoice, $items ) { |
|
322 | + public function process_addons($invoice, $items) { |
|
323 | 323 | |
324 | 324 | } |
325 | 325 | |
@@ -330,14 +330,14 @@ discard block |
||
330 | 330 | * @param WPInv_Invoice $invoice Invoice object. |
331 | 331 | * @return string transaction URL, or empty string. |
332 | 332 | */ |
333 | - public function filter_transaction_url( $transaction_url, $invoice ) { |
|
333 | + public function filter_transaction_url($transaction_url, $invoice) { |
|
334 | 334 | |
335 | - $transaction_id = $invoice->get_transaction_id(); |
|
335 | + $transaction_id = $invoice->get_transaction_id(); |
|
336 | 336 | |
337 | - if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) { |
|
338 | - $transaction_url = sprintf( $this->view_transaction_url, $transaction_id ); |
|
339 | - $replace = $this->is_sandbox( $invoice ) ? 'sandbox' : ''; |
|
340 | - $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url ); |
|
337 | + if (!empty($this->view_transaction_url) && !empty($transaction_id)) { |
|
338 | + $transaction_url = sprintf($this->view_transaction_url, $transaction_id); |
|
339 | + $replace = $this->is_sandbox($invoice) ? 'sandbox' : ''; |
|
340 | + $transaction_url = str_replace('{sandbox}', $replace, $transaction_url); |
|
341 | 341 | } |
342 | 342 | |
343 | 343 | return $transaction_url; |
@@ -350,15 +350,15 @@ discard block |
||
350 | 350 | * @param WPInv_Subscription $subscription Subscription objectt. |
351 | 351 | * @return string subscription URL, or empty string. |
352 | 352 | */ |
353 | - public function generate_subscription_url( $subscription_url, $subscription ) { |
|
353 | + public function generate_subscription_url($subscription_url, $subscription) { |
|
354 | 354 | |
355 | - $profile_id = $subscription->get_profile_id(); |
|
355 | + $profile_id = $subscription->get_profile_id(); |
|
356 | 356 | |
357 | - if ( $this->id == $subscription->get_gateway() && ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) { |
|
357 | + if ($this->id == $subscription->get_gateway() && !empty($this->view_subscription_url) && !empty($profile_id)) { |
|
358 | 358 | |
359 | - $subscription_url = sprintf( $this->view_subscription_url, $profile_id ); |
|
360 | - $replace = $this->is_sandbox( $subscription->get_parent_invoice() ) ? 'sandbox' : ''; |
|
361 | - $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url ); |
|
359 | + $subscription_url = sprintf($this->view_subscription_url, $profile_id); |
|
360 | + $replace = $this->is_sandbox($subscription->get_parent_invoice()) ? 'sandbox' : ''; |
|
361 | + $subscription_url = str_replace('{sandbox}', $replace, $subscription_url); |
|
362 | 362 | |
363 | 363 | } |
364 | 364 | |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * @return bool |
372 | 372 | */ |
373 | 373 | public function is_available() { |
374 | - return ! empty( $this->enabled ); |
|
374 | + return !empty($this->enabled); |
|
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | * @return string |
381 | 381 | */ |
382 | 382 | public function get_title() { |
383 | - return apply_filters( 'getpaid_gateway_title', $this->title, $this ); |
|
383 | + return apply_filters('getpaid_gateway_title', $this->title, $this); |
|
384 | 384 | } |
385 | 385 | |
386 | 386 | /** |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | * @return string |
390 | 390 | */ |
391 | 391 | public function get_description() { |
392 | - return apply_filters( 'getpaid_gateway_description', $this->description, $this ); |
|
392 | + return apply_filters('getpaid_gateway_description', $this->description, $this); |
|
393 | 393 | } |
394 | 394 | |
395 | 395 | /** |
@@ -401,9 +401,9 @@ discard block |
||
401 | 401 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
402 | 402 | * @return void |
403 | 403 | */ |
404 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
404 | + public function process_payment($invoice, $submission_data, $submission) { |
|
405 | 405 | // Process the payment then either redirect to the success page or the gateway. |
406 | - do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission ); |
|
406 | + do_action('getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | /** |
@@ -417,8 +417,8 @@ discard block |
||
417 | 417 | * @param string $reason Refund reason. |
418 | 418 | * @return WP_Error|bool True or false based on success, or a WP_Error object. |
419 | 419 | */ |
420 | - public function process_refund( $invoice, $amount = null, $reason = '' ) { |
|
421 | - return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason ); |
|
420 | + public function process_refund($invoice, $amount = null, $reason = '') { |
|
421 | + return apply_filters('getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason); |
|
422 | 422 | } |
423 | 423 | |
424 | 424 | /** |
@@ -427,8 +427,8 @@ discard block |
||
427 | 427 | * @param int $invoice_id 0 or invoice id. |
428 | 428 | * @param GetPaid_Payment_Form $form Current payment form. |
429 | 429 | */ |
430 | - public function payment_fields( $invoice_id, $form ) { |
|
431 | - do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form ); |
|
430 | + public function payment_fields($invoice_id, $form) { |
|
431 | + do_action('getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | /** |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | * |
437 | 437 | * @param array $admin_settings |
438 | 438 | */ |
439 | - public function admin_settings( $admin_settings ) { |
|
439 | + public function admin_settings($admin_settings) { |
|
440 | 440 | return $admin_settings; |
441 | 441 | } |
442 | 442 | |
@@ -445,8 +445,8 @@ discard block |
||
445 | 445 | * |
446 | 446 | * @param string $option |
447 | 447 | */ |
448 | - public function get_option( $option, $default = false ) { |
|
449 | - return wpinv_get_option( $this->id . '_' . $option, $default ); |
|
448 | + public function get_option($option, $default = false) { |
|
449 | + return wpinv_get_option($this->id . '_' . $option, $default); |
|
450 | 450 | } |
451 | 451 | |
452 | 452 | /** |
@@ -459,8 +459,8 @@ discard block |
||
459 | 459 | * @return bool True if the gateway supports the feature, false otherwise. |
460 | 460 | * @since 1.0.19 |
461 | 461 | */ |
462 | - public function supports( $feature ) { |
|
463 | - return getpaid_payment_gateway_supports( $this->id, $feature ); |
|
462 | + public function supports($feature) { |
|
463 | + return getpaid_payment_gateway_supports($this->id, $feature); |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | /** |
@@ -468,39 +468,39 @@ discard block |
||
468 | 468 | * |
469 | 469 | * @param bool $save whether or not to display the save button. |
470 | 470 | */ |
471 | - public function get_cc_form( $save = false ) { |
|
471 | + public function get_cc_form($save = false) { |
|
472 | 472 | |
473 | 473 | ob_start(); |
474 | 474 | |
475 | - $id_prefix = esc_attr( uniqid( $this->id ) ); |
|
475 | + $id_prefix = esc_attr(uniqid($this->id)); |
|
476 | 476 | |
477 | 477 | $months = array( |
478 | - '01' => __( 'January', 'invoicing' ), |
|
479 | - '02' => __( 'February', 'invoicing' ), |
|
480 | - '03' => __( 'March', 'invoicing' ), |
|
481 | - '04' => __( 'April', 'invoicing' ), |
|
482 | - '05' => __( 'May', 'invoicing' ), |
|
483 | - '06' => __( 'June', 'invoicing' ), |
|
484 | - '07' => __( 'July', 'invoicing' ), |
|
485 | - '08' => __( 'August', 'invoicing' ), |
|
486 | - '09' => __( 'September', 'invoicing' ), |
|
487 | - '10' => __( 'October', 'invoicing' ), |
|
488 | - '11' => __( 'November', 'invoicing' ), |
|
489 | - '12' => __( 'December', 'invoicing' ), |
|
478 | + '01' => __('January', 'invoicing'), |
|
479 | + '02' => __('February', 'invoicing'), |
|
480 | + '03' => __('March', 'invoicing'), |
|
481 | + '04' => __('April', 'invoicing'), |
|
482 | + '05' => __('May', 'invoicing'), |
|
483 | + '06' => __('June', 'invoicing'), |
|
484 | + '07' => __('July', 'invoicing'), |
|
485 | + '08' => __('August', 'invoicing'), |
|
486 | + '09' => __('September', 'invoicing'), |
|
487 | + '10' => __('October', 'invoicing'), |
|
488 | + '11' => __('November', 'invoicing'), |
|
489 | + '12' => __('December', 'invoicing'), |
|
490 | 490 | ); |
491 | - $months = apply_filters( 'getpaid_cc_months', $months, $this ); |
|
491 | + $months = apply_filters('getpaid_cc_months', $months, $this); |
|
492 | 492 | |
493 | - $year = (int) current_time( 'Y' ); |
|
493 | + $year = (int) current_time('Y'); |
|
494 | 494 | $years = array(); |
495 | 495 | |
496 | - for ( $i = 0; $i <= 10; $i++ ) { |
|
497 | - $years[ $year + $i ] = $year + $i; |
|
496 | + for ($i = 0; $i <= 10; $i++) { |
|
497 | + $years[$year + $i] = $year + $i; |
|
498 | 498 | } |
499 | 499 | |
500 | - $years = apply_filters( 'getpaid_cc_years', $years, $this ); |
|
500 | + $years = apply_filters('getpaid_cc_years', $years, $this); |
|
501 | 501 | |
502 | 502 | ?> |
503 | - <div class="<?php echo esc_attr( $this->id ); ?>-cc-form getpaid-cc-form mt-1"> |
|
503 | + <div class="<?php echo esc_attr($this->id); ?>-cc-form getpaid-cc-form mt-1"> |
|
504 | 504 | |
505 | 505 | |
506 | 506 | <div class="getpaid-cc-card-inner"> |
@@ -509,9 +509,9 @@ discard block |
||
509 | 509 | <div class="col-12"> |
510 | 510 | |
511 | 511 | <div class="form-group mb-3"> |
512 | - <label for="<?php echo esc_attr( "$id_prefix-cc-number" ); ?>"><?php esc_html_e( 'Card number', 'invoicing' ); ?></label> |
|
512 | + <label for="<?php echo esc_attr("$id_prefix-cc-number"); ?>"><?php esc_html_e('Card number', 'invoicing'); ?></label> |
|
513 | 513 | <div class="input-group input-group-sm"> |
514 | - <?php if ( empty( $GLOBALS['aui_bs5'] ) ) : ?> |
|
514 | + <?php if (empty($GLOBALS['aui_bs5'])) : ?> |
|
515 | 515 | <div class="input-group-prepend "> |
516 | 516 | <span class="input-group-text"> |
517 | 517 | <i class="fa fa-credit-card"></i> |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | <i class="fa fa-credit-card"></i> |
523 | 523 | </span> |
524 | 524 | <?php endif; ?> |
525 | - <input type="text" name="<?php echo esc_attr( $this->id . '[cc_number]' ); ?>" id="<?php echo esc_attr( "$id_prefix-cc-number" ); ?>" class="form-control form-control-sm getpaid-format-card-number" autocomplete="cc-number"> |
|
525 | + <input type="text" name="<?php echo esc_attr($this->id . '[cc_number]'); ?>" id="<?php echo esc_attr("$id_prefix-cc-number"); ?>" class="form-control form-control-sm getpaid-format-card-number" autocomplete="cc-number"> |
|
526 | 526 | </div> |
527 | 527 | </div> |
528 | 528 | |
@@ -530,16 +530,16 @@ discard block |
||
530 | 530 | |
531 | 531 | <div class="col-12"> |
532 | 532 | <div class="form-group mb-3"> |
533 | - <label><?php esc_html_e( 'Expiration', 'invoicing' ); ?></label> |
|
533 | + <label><?php esc_html_e('Expiration', 'invoicing'); ?></label> |
|
534 | 534 | <div class="form-row row"> |
535 | 535 | |
536 | 536 | <div class="col"> |
537 | - <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr( $this->id ); ?>[cc_expire_month]"> |
|
538 | - <option disabled selected="selected"><?php esc_html_e( 'MM', 'invoicing' ); ?></option> |
|
537 | + <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr($this->id); ?>[cc_expire_month]"> |
|
538 | + <option disabled selected="selected"><?php esc_html_e('MM', 'invoicing'); ?></option> |
|
539 | 539 | |
540 | 540 | <?php |
541 | - foreach ( $months as $key => $month ) { |
|
542 | - echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $month ) . '</option>'; |
|
541 | + foreach ($months as $key => $month) { |
|
542 | + echo "<option value='" . esc_attr($key) . "'>" . esc_html($month) . '</option>'; |
|
543 | 543 | } |
544 | 544 | ?> |
545 | 545 | |
@@ -547,12 +547,12 @@ discard block |
||
547 | 547 | </div> |
548 | 548 | |
549 | 549 | <div class="col"> |
550 | - <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr( $this->id ); ?>[cc_expire_year]"> |
|
551 | - <option disabled selected="selected"><?php esc_html_e( 'YY', 'invoicing' ); ?></option> |
|
550 | + <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr($this->id); ?>[cc_expire_year]"> |
|
551 | + <option disabled selected="selected"><?php esc_html_e('YY', 'invoicing'); ?></option> |
|
552 | 552 | |
553 | 553 | <?php |
554 | - foreach ( $years as $key => $year ) { |
|
555 | - echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $year ) . '</option>'; |
|
554 | + foreach ($years as $key => $year) { |
|
555 | + echo "<option value='" . esc_attr($key) . "'>" . esc_html($year) . '</option>'; |
|
556 | 556 | } |
557 | 557 | ?> |
558 | 558 | |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | array( |
570 | 570 | 'name' => $this->id . '[cc_cvv2]', |
571 | 571 | 'id' => "$id_prefix-cc-cvv2", |
572 | - 'label' => __( 'CCV', 'invoicing' ), |
|
572 | + 'label' => __('CCV', 'invoicing'), |
|
573 | 573 | 'label_type' => 'vertical', |
574 | 574 | 'class' => 'form-control-sm', |
575 | 575 | 'extra_attributes' => array( |
@@ -585,7 +585,7 @@ discard block |
||
585 | 585 | |
586 | 586 | <?php |
587 | 587 | |
588 | - if ( $save ) { |
|
588 | + if ($save) { |
|
589 | 589 | $this->save_payment_method_checkbox(); |
590 | 590 | } |
591 | 591 | |
@@ -604,8 +604,8 @@ discard block |
||
604 | 604 | * |
605 | 605 | * @since 1.0.19 |
606 | 606 | */ |
607 | - public function new_payment_method_entry( $form ) { |
|
608 | - echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses( $form, getpaid_allowed_html() ) . '</div>'; |
|
607 | + public function new_payment_method_entry($form) { |
|
608 | + echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses($form, getpaid_allowed_html()) . '</div>'; |
|
609 | 609 | } |
610 | 610 | |
611 | 611 | /** |
@@ -614,10 +614,10 @@ discard block |
||
614 | 614 | * @since 1.0.19 |
615 | 615 | */ |
616 | 616 | public function saved_payment_methods() { |
617 | - echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">'; |
|
617 | + echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr(count($this->get_tokens($this->is_sandbox()))) . '">'; |
|
618 | 618 | |
619 | - foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) { |
|
620 | - $this->get_saved_payment_method_option_html( $token ); |
|
619 | + foreach ($this->get_tokens($this->is_sandbox()) as $token) { |
|
620 | + $this->get_saved_payment_method_option_html($token); |
|
621 | 621 | } |
622 | 622 | |
623 | 623 | $this->get_new_payment_method_option_html(); |
@@ -632,7 +632,7 @@ discard block |
||
632 | 632 | * @param array $token Payment Token. |
633 | 633 | * @return string Generated payment method HTML |
634 | 634 | */ |
635 | - public function get_saved_payment_method_option_html( $token ) { |
|
635 | + public function get_saved_payment_method_option_html($token) { |
|
636 | 636 | |
637 | 637 | printf( |
638 | 638 | '<li class="getpaid-payment-method form-group mb-3"> |
@@ -641,11 +641,11 @@ discard block |
||
641 | 641 | <span>%3$s</span> |
642 | 642 | </label> |
643 | 643 | </li>', |
644 | - esc_attr( $this->id ), |
|
645 | - esc_attr( $token['id'] ), |
|
646 | - esc_html( $token['name'] ), |
|
647 | - checked( empty( $token['default'] ), false, false ), |
|
648 | - empty( $token['currency'] ) ? 'none' : esc_attr( $token['currency'] ) |
|
644 | + esc_attr($this->id), |
|
645 | + esc_attr($token['id']), |
|
646 | + esc_html($token['name']), |
|
647 | + checked(empty($token['default']), false, false), |
|
648 | + empty($token['currency']) ? 'none' : esc_attr($token['currency']) |
|
649 | 649 | ); |
650 | 650 | |
651 | 651 | } |
@@ -657,7 +657,7 @@ discard block |
||
657 | 657 | */ |
658 | 658 | public function get_new_payment_method_option_html() { |
659 | 659 | |
660 | - $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this ); |
|
660 | + $label = apply_filters('getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __('Use a new payment method', 'invoicing'), $this); |
|
661 | 661 | |
662 | 662 | printf( |
663 | 663 | '<li class="getpaid-new-payment-method"> |
@@ -666,8 +666,8 @@ discard block |
||
666 | 666 | <span>%2$s</span> |
667 | 667 | </label> |
668 | 668 | </li>', |
669 | - esc_attr( $this->id ), |
|
670 | - esc_html( $label ) |
|
669 | + esc_attr($this->id), |
|
670 | + esc_html($label) |
|
671 | 671 | ); |
672 | 672 | |
673 | 673 | } |
@@ -682,10 +682,10 @@ discard block |
||
682 | 682 | aui()->input( |
683 | 683 | array( |
684 | 684 | 'type' => 'checkbox', |
685 | - 'name' => esc_attr( "getpaid-$this->id-new-payment-method" ), |
|
686 | - 'id' => esc_attr( uniqid( $this->id ) ), |
|
685 | + 'name' => esc_attr("getpaid-$this->id-new-payment-method"), |
|
686 | + 'id' => esc_attr(uniqid($this->id)), |
|
687 | 687 | 'required' => false, |
688 | - 'label' => esc_html__( 'Save payment method', 'invoicing' ), |
|
688 | + 'label' => esc_html__('Save payment method', 'invoicing'), |
|
689 | 689 | 'value' => 'true', |
690 | 690 | 'checked' => true, |
691 | 691 | 'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1', |
@@ -700,9 +700,9 @@ discard block |
||
700 | 700 | * |
701 | 701 | * @return array |
702 | 702 | */ |
703 | - public function register_gateway( $gateways ) { |
|
703 | + public function register_gateway($gateways) { |
|
704 | 704 | |
705 | - $gateways[ $this->id ] = array( |
|
705 | + $gateways[$this->id] = array( |
|
706 | 706 | |
707 | 707 | 'admin_label' => $this->method_title, |
708 | 708 | 'checkout_label' => $this->title, |
@@ -720,13 +720,13 @@ discard block |
||
720 | 720 | * @param WPInv_Invoice|null $invoice Invoice object or null. |
721 | 721 | * @return bool |
722 | 722 | */ |
723 | - public function is_sandbox( $invoice = null ) { |
|
723 | + public function is_sandbox($invoice = null) { |
|
724 | 724 | |
725 | - if ( is_a( $invoice, 'WPInv_Invoice' ) && ! $invoice->needs_payment() ) { |
|
725 | + if (is_a($invoice, 'WPInv_Invoice') && !$invoice->needs_payment()) { |
|
726 | 726 | return $invoice->get_mode() === 'test'; |
727 | 727 | } |
728 | 728 | |
729 | - return wpinv_is_test_mode( $this->id ); |
|
729 | + return wpinv_is_test_mode($this->id); |
|
730 | 730 | |
731 | 731 | } |
732 | 732 | |
@@ -744,15 +744,15 @@ discard block |
||
744 | 744 | * |
745 | 745 | * @return bool |
746 | 746 | */ |
747 | - public function validate_currency( $validation, $currency ) { |
|
747 | + public function validate_currency($validation, $currency) { |
|
748 | 748 | |
749 | 749 | // Required currencies. |
750 | - if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) { |
|
750 | + if (!empty($this->currencies) && !in_array($currency, $this->currencies)) { |
|
751 | 751 | return false; |
752 | 752 | } |
753 | 753 | |
754 | 754 | // Excluded currencies. |
755 | - if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) { |
|
755 | + if (!empty($this->exclude_currencies) && in_array($currency, $this->exclude_currencies)) { |
|
756 | 756 | return false; |
757 | 757 | } |
758 | 758 | |
@@ -763,13 +763,13 @@ discard block |
||
763 | 763 | * Displays an error |
764 | 764 | * |
765 | 765 | */ |
766 | - public function show_error( $code, $message, $type ) { |
|
766 | + public function show_error($code, $message, $type) { |
|
767 | 767 | |
768 | - if ( is_admin() ) { |
|
769 | - getpaid_admin()->{"show_$type"}( $message ); |
|
768 | + if (is_admin()) { |
|
769 | + getpaid_admin()->{"show_$type"}($message); |
|
770 | 770 | } |
771 | 771 | |
772 | - wpinv_set_error( $code, $message, $type ); |
|
772 | + wpinv_set_error($code, $message, $type); |
|
773 | 773 | |
774 | 774 | } |
775 | 775 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @package Invoicing |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * The Subscription Class |
@@ -68,27 +68,27 @@ discard block |
||
68 | 68 | * @param int|string|object|WPInv_Subscription $subscription Subscription id, profile_id, or object to read. |
69 | 69 | * @param bool $deprecated |
70 | 70 | */ |
71 | - function __construct( $subscription = 0, $deprecated = false ) { |
|
71 | + function __construct($subscription = 0, $deprecated = false) { |
|
72 | 72 | |
73 | - parent::__construct( $subscription ); |
|
73 | + parent::__construct($subscription); |
|
74 | 74 | |
75 | - if ( ! $deprecated && ! empty( $subscription ) && is_numeric( $subscription ) ) { |
|
76 | - $this->set_id( $subscription ); |
|
77 | - } elseif ( $subscription instanceof self ) { |
|
78 | - $this->set_id( $subscription->get_id() ); |
|
79 | - } elseif ( $deprecated && $subscription_id = self::get_subscription_id_by_field( $subscription, 'profile_id' ) ) { |
|
80 | - $this->set_id( $subscription_id ); |
|
81 | - } elseif ( ! empty( $subscription->id ) ) { |
|
82 | - $this->set_id( $subscription->id ); |
|
75 | + if (!$deprecated && !empty($subscription) && is_numeric($subscription)) { |
|
76 | + $this->set_id($subscription); |
|
77 | + } elseif ($subscription instanceof self) { |
|
78 | + $this->set_id($subscription->get_id()); |
|
79 | + } elseif ($deprecated && $subscription_id = self::get_subscription_id_by_field($subscription, 'profile_id')) { |
|
80 | + $this->set_id($subscription_id); |
|
81 | + } elseif (!empty($subscription->id)) { |
|
82 | + $this->set_id($subscription->id); |
|
83 | 83 | } else { |
84 | - $this->set_object_read( true ); |
|
84 | + $this->set_object_read(true); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | // Load the datastore. |
88 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
88 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
89 | 89 | |
90 | - if ( $this->get_id() > 0 ) { |
|
91 | - $this->data_store->read( $this ); |
|
90 | + if ($this->get_id() > 0) { |
|
91 | + $this->data_store->read($this); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | } |
@@ -103,17 +103,17 @@ discard block |
||
103 | 103 | * @since 1.0.19 |
104 | 104 | * @return int |
105 | 105 | */ |
106 | - public static function get_subscription_id_by_field( $value, $field = 'profile_id' ) { |
|
106 | + public static function get_subscription_id_by_field($value, $field = 'profile_id') { |
|
107 | 107 | global $wpdb; |
108 | 108 | |
109 | 109 | // Trim the value. |
110 | - $value = trim( $value ); |
|
110 | + $value = trim($value); |
|
111 | 111 | |
112 | - if ( empty( $value ) ) { |
|
112 | + if (empty($value)) { |
|
113 | 113 | return 0; |
114 | 114 | } |
115 | 115 | |
116 | - if ( 'invoice_id' == $field ) { |
|
116 | + if ('invoice_id' == $field) { |
|
117 | 117 | $field = 'parent_payment_id'; |
118 | 118 | } |
119 | 119 | |
@@ -125,28 +125,28 @@ discard block |
||
125 | 125 | ); |
126 | 126 | |
127 | 127 | // Ensure a field has been passed. |
128 | - if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
128 | + if (empty($field) || !in_array($field, $fields)) { |
|
129 | 129 | return 0; |
130 | 130 | } |
131 | 131 | |
132 | 132 | // Maybe retrieve from the cache. |
133 | - $subscription_id = wp_cache_get( $value, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
134 | - if ( ! empty( $subscription_id ) ) { |
|
133 | + $subscription_id = wp_cache_get($value, "getpaid_subscription_{$field}s_to_subscription_ids"); |
|
134 | + if (!empty($subscription_id)) { |
|
135 | 135 | return $subscription_id; |
136 | 136 | } |
137 | 137 | |
138 | 138 | // Fetch from the db. |
139 | 139 | $table = $wpdb->prefix . 'wpinv_subscriptions'; |
140 | 140 | $subscription_id = (int) $wpdb->get_var( |
141 | - $wpdb->prepare( "SELECT `id` FROM $table WHERE `$field`=%s LIMIT 1", $value ) |
|
141 | + $wpdb->prepare("SELECT `id` FROM $table WHERE `$field`=%s LIMIT 1", $value) |
|
142 | 142 | ); |
143 | 143 | |
144 | - if ( empty( $subscription_id ) ) { |
|
144 | + if (empty($subscription_id)) { |
|
145 | 145 | return 0; |
146 | 146 | } |
147 | 147 | |
148 | 148 | // Update the cache with our data. |
149 | - wp_cache_set( $value, $subscription_id, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
149 | + wp_cache_set($value, $subscription_id, "getpaid_subscription_{$field}s_to_subscription_ids"); |
|
150 | 150 | |
151 | 151 | return $subscription_id; |
152 | 152 | } |
@@ -162,9 +162,9 @@ discard block |
||
162 | 162 | 'getpaid_subscriptions' => $this->get_id(), |
163 | 163 | ); |
164 | 164 | |
165 | - foreach ( $caches as $cache => $value ) { |
|
166 | - if ( '' !== $value && false !== $value ) { |
|
167 | - wp_cache_delete( $value, $cache ); |
|
165 | + foreach ($caches as $cache => $value) { |
|
166 | + if ('' !== $value && false !== $value) { |
|
167 | + wp_cache_delete($value, $cache); |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | } |
@@ -172,8 +172,8 @@ discard block |
||
172 | 172 | /** |
173 | 173 | * Checks if a subscription key is set. |
174 | 174 | */ |
175 | - public function _isset( $key ) { |
|
176 | - return isset( $this->data[ $key ] ) || method_exists( $this, "get_$key" ); |
|
175 | + public function _isset($key) { |
|
176 | + return isset($this->data[$key]) || method_exists($this, "get_$key"); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /* |
@@ -198,8 +198,8 @@ discard block |
||
198 | 198 | * @param string $context View or edit context. |
199 | 199 | * @return int |
200 | 200 | */ |
201 | - public function get_customer_id( $context = 'view' ) { |
|
202 | - return (int) $this->get_prop( 'customer_id', $context ); |
|
201 | + public function get_customer_id($context = 'view') { |
|
202 | + return (int) $this->get_prop('customer_id', $context); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | /** |
@@ -209,8 +209,8 @@ discard block |
||
209 | 209 | * @param string $context View or edit context. |
210 | 210 | * @return WP_User|false WP_User object on success, false on failure. |
211 | 211 | */ |
212 | - public function get_customer( $context = 'view' ) { |
|
213 | - return get_userdata( $this->get_customer_id( $context ) ); |
|
212 | + public function get_customer($context = 'view') { |
|
213 | + return get_userdata($this->get_customer_id($context)); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | /** |
@@ -220,8 +220,8 @@ discard block |
||
220 | 220 | * @param string $context View or edit context. |
221 | 221 | * @return int |
222 | 222 | */ |
223 | - public function get_parent_invoice_id( $context = 'view' ) { |
|
224 | - return (int) $this->get_prop( 'parent_payment_id', $context ); |
|
223 | + public function get_parent_invoice_id($context = 'view') { |
|
224 | + return (int) $this->get_prop('parent_payment_id', $context); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -231,8 +231,8 @@ discard block |
||
231 | 231 | * @param string $context View or edit context. |
232 | 232 | * @return int |
233 | 233 | */ |
234 | - public function get_parent_payment_id( $context = 'view' ) { |
|
235 | - return $this->get_parent_invoice_id( $context ); |
|
234 | + public function get_parent_payment_id($context = 'view') { |
|
235 | + return $this->get_parent_invoice_id($context); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | /** |
@@ -241,8 +241,8 @@ discard block |
||
241 | 241 | * @since 1.0.0 |
242 | 242 | * @return int |
243 | 243 | */ |
244 | - public function get_original_payment_id( $context = 'view' ) { |
|
245 | - return $this->get_parent_invoice_id( $context ); |
|
244 | + public function get_original_payment_id($context = 'view') { |
|
245 | + return $this->get_parent_invoice_id($context); |
|
246 | 246 | } |
247 | 247 | |
248 | 248 | /** |
@@ -252,8 +252,8 @@ discard block |
||
252 | 252 | * @param string $context View or edit context. |
253 | 253 | * @return WPInv_Invoice |
254 | 254 | */ |
255 | - public function get_parent_invoice( $context = 'view' ) { |
|
256 | - return new WPInv_Invoice( $this->get_parent_invoice_id( $context ) ); |
|
255 | + public function get_parent_invoice($context = 'view') { |
|
256 | + return new WPInv_Invoice($this->get_parent_invoice_id($context)); |
|
257 | 257 | } |
258 | 258 | |
259 | 259 | /** |
@@ -263,8 +263,8 @@ discard block |
||
263 | 263 | * @param string $context View or edit context. |
264 | 264 | * @return WPInv_Invoice |
265 | 265 | */ |
266 | - public function get_parent_payment( $context = 'view' ) { |
|
267 | - return $this->get_parent_invoice( $context ); |
|
266 | + public function get_parent_payment($context = 'view') { |
|
267 | + return $this->get_parent_invoice($context); |
|
268 | 268 | } |
269 | 269 | |
270 | 270 | /** |
@@ -274,8 +274,8 @@ discard block |
||
274 | 274 | * @param string $context View or edit context. |
275 | 275 | * @return int |
276 | 276 | */ |
277 | - public function get_product_id( $context = 'view' ) { |
|
278 | - return (int) $this->get_prop( 'product_id', $context ); |
|
277 | + public function get_product_id($context = 'view') { |
|
278 | + return (int) $this->get_prop('product_id', $context); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
@@ -285,8 +285,8 @@ discard block |
||
285 | 285 | * @param string $context View or edit context. |
286 | 286 | * @return WPInv_Item |
287 | 287 | */ |
288 | - public function get_product( $context = 'view' ) { |
|
289 | - return new WPInv_Item( $this->get_product_id( $context ) ); |
|
288 | + public function get_product($context = 'view') { |
|
289 | + return new WPInv_Item($this->get_product_id($context)); |
|
290 | 290 | } |
291 | 291 | |
292 | 292 | /** |
@@ -298,8 +298,8 @@ discard block |
||
298 | 298 | * @param string $context View or edit context. |
299 | 299 | * @return string |
300 | 300 | */ |
301 | - public function get_gateway( $context = 'view' ) { |
|
302 | - return $this->get_parent_invoice( $context )->get_gateway(); |
|
301 | + public function get_gateway($context = 'view') { |
|
302 | + return $this->get_parent_invoice($context)->get_gateway(); |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | /** |
@@ -309,8 +309,8 @@ discard block |
||
309 | 309 | * @param string $context View or edit context. |
310 | 310 | * @return string |
311 | 311 | */ |
312 | - public function get_period( $context = 'view' ) { |
|
313 | - return $this->get_prop( 'period', $context ); |
|
312 | + public function get_period($context = 'view') { |
|
313 | + return $this->get_prop('period', $context); |
|
314 | 314 | } |
315 | 315 | |
316 | 316 | /** |
@@ -320,8 +320,8 @@ discard block |
||
320 | 320 | * @param string $context View or edit context. |
321 | 321 | * @return int |
322 | 322 | */ |
323 | - public function get_frequency( $context = 'view' ) { |
|
324 | - return (int) $this->get_prop( 'frequency', $context ); |
|
323 | + public function get_frequency($context = 'view') { |
|
324 | + return (int) $this->get_prop('frequency', $context); |
|
325 | 325 | } |
326 | 326 | |
327 | 327 | /** |
@@ -331,8 +331,8 @@ discard block |
||
331 | 331 | * @param string $context View or edit context. |
332 | 332 | * @return float |
333 | 333 | */ |
334 | - public function get_initial_amount( $context = 'view' ) { |
|
335 | - return (float) wpinv_sanitize_amount( $this->get_prop( 'initial_amount', $context ) ); |
|
334 | + public function get_initial_amount($context = 'view') { |
|
335 | + return (float) wpinv_sanitize_amount($this->get_prop('initial_amount', $context)); |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | /** |
@@ -342,8 +342,8 @@ discard block |
||
342 | 342 | * @param string $context View or edit context. |
343 | 343 | * @return float |
344 | 344 | */ |
345 | - public function get_recurring_amount( $context = 'view' ) { |
|
346 | - return (float) wpinv_sanitize_amount( $this->get_prop( 'recurring_amount', $context ) ); |
|
345 | + public function get_recurring_amount($context = 'view') { |
|
346 | + return (float) wpinv_sanitize_amount($this->get_prop('recurring_amount', $context)); |
|
347 | 347 | } |
348 | 348 | |
349 | 349 | /** |
@@ -353,8 +353,8 @@ discard block |
||
353 | 353 | * @param string $context View or edit context. |
354 | 354 | * @return int |
355 | 355 | */ |
356 | - public function get_bill_times( $context = 'view' ) { |
|
357 | - return (int) $this->get_prop( 'bill_times', $context ); |
|
356 | + public function get_bill_times($context = 'view') { |
|
357 | + return (int) $this->get_prop('bill_times', $context); |
|
358 | 358 | } |
359 | 359 | |
360 | 360 | /** |
@@ -364,8 +364,8 @@ discard block |
||
364 | 364 | * @param string $context View or edit context. |
365 | 365 | * @return string |
366 | 366 | */ |
367 | - public function get_transaction_id( $context = 'view' ) { |
|
368 | - return $this->get_prop( 'transaction_id', $context ); |
|
367 | + public function get_transaction_id($context = 'view') { |
|
368 | + return $this->get_prop('transaction_id', $context); |
|
369 | 369 | } |
370 | 370 | |
371 | 371 | /** |
@@ -375,8 +375,8 @@ discard block |
||
375 | 375 | * @param string $context View or edit context. |
376 | 376 | * @return string |
377 | 377 | */ |
378 | - public function get_created( $context = 'view' ) { |
|
379 | - return $this->get_prop( 'created', $context ); |
|
378 | + public function get_created($context = 'view') { |
|
379 | + return $this->get_prop('created', $context); |
|
380 | 380 | } |
381 | 381 | |
382 | 382 | /** |
@@ -386,8 +386,8 @@ discard block |
||
386 | 386 | * @param string $context View or edit context. |
387 | 387 | * @return string |
388 | 388 | */ |
389 | - public function get_date_created( $context = 'view' ) { |
|
390 | - return $this->get_created( $context ); |
|
389 | + public function get_date_created($context = 'view') { |
|
390 | + return $this->get_created($context); |
|
391 | 391 | } |
392 | 392 | |
393 | 393 | /** |
@@ -398,7 +398,7 @@ discard block |
||
398 | 398 | */ |
399 | 399 | public function get_time_created() { |
400 | 400 | $created = $this->get_date_created(); |
401 | - return empty( $created ) ? current_time( 'timestamp' ) : strtotime( $created, current_time( 'timestamp' ) ); |
|
401 | + return empty($created) ? current_time('timestamp') : strtotime($created, current_time('timestamp')); |
|
402 | 402 | } |
403 | 403 | |
404 | 404 | /** |
@@ -408,11 +408,11 @@ discard block |
||
408 | 408 | * @param string $context View or edit context. |
409 | 409 | * @return string |
410 | 410 | */ |
411 | - public function get_date_created_gmt( $context = 'view' ) { |
|
412 | - $date = $this->get_date_created( $context ); |
|
411 | + public function get_date_created_gmt($context = 'view') { |
|
412 | + $date = $this->get_date_created($context); |
|
413 | 413 | |
414 | - if ( $date ) { |
|
415 | - $date = get_gmt_from_date( $date ); |
|
414 | + if ($date) { |
|
415 | + $date = get_gmt_from_date($date); |
|
416 | 416 | } |
417 | 417 | return $date; |
418 | 418 | } |
@@ -424,8 +424,8 @@ discard block |
||
424 | 424 | * @param string $context View or edit context. |
425 | 425 | * @return string |
426 | 426 | */ |
427 | - public function get_next_renewal_date( $context = 'view' ) { |
|
428 | - return $this->get_prop( 'expiration', $context ); |
|
427 | + public function get_next_renewal_date($context = 'view') { |
|
428 | + return $this->get_prop('expiration', $context); |
|
429 | 429 | } |
430 | 430 | |
431 | 431 | /** |
@@ -435,8 +435,8 @@ discard block |
||
435 | 435 | * @param string $context View or edit context. |
436 | 436 | * @return string |
437 | 437 | */ |
438 | - public function get_expiration( $context = 'view' ) { |
|
439 | - return $this->get_next_renewal_date( $context ); |
|
438 | + public function get_expiration($context = 'view') { |
|
439 | + return $this->get_next_renewal_date($context); |
|
440 | 440 | } |
441 | 441 | |
442 | 442 | /** |
@@ -448,12 +448,12 @@ discard block |
||
448 | 448 | public function get_expiration_time() { |
449 | 449 | $expiration = $this->get_expiration(); |
450 | 450 | |
451 | - if ( empty( $expiration ) || '0000-00-00 00:00:00' == $expiration ) { |
|
452 | - return current_time( 'timestamp' ); |
|
451 | + if (empty($expiration) || '0000-00-00 00:00:00' == $expiration) { |
|
452 | + return current_time('timestamp'); |
|
453 | 453 | } |
454 | 454 | |
455 | - $expiration = strtotime( $expiration, current_time( 'timestamp' ) ); |
|
456 | - return $expiration < current_time( 'timestamp' ) ? current_time( 'timestamp' ) : $expiration; |
|
455 | + $expiration = strtotime($expiration, current_time('timestamp')); |
|
456 | + return $expiration < current_time('timestamp') ? current_time('timestamp') : $expiration; |
|
457 | 457 | } |
458 | 458 | |
459 | 459 | /** |
@@ -463,11 +463,11 @@ discard block |
||
463 | 463 | * @param string $context View or edit context. |
464 | 464 | * @return string |
465 | 465 | */ |
466 | - public function get_next_renewal_date_gmt( $context = 'view' ) { |
|
467 | - $date = $this->get_next_renewal_date( $context ); |
|
466 | + public function get_next_renewal_date_gmt($context = 'view') { |
|
467 | + $date = $this->get_next_renewal_date($context); |
|
468 | 468 | |
469 | - if ( $date ) { |
|
470 | - $date = get_gmt_from_date( $date ); |
|
469 | + if ($date) { |
|
470 | + $date = get_gmt_from_date($date); |
|
471 | 471 | } |
472 | 472 | return $date; |
473 | 473 | } |
@@ -479,8 +479,8 @@ discard block |
||
479 | 479 | * @param string $context View or edit context. |
480 | 480 | * @return string |
481 | 481 | */ |
482 | - public function get_trial_period( $context = 'view' ) { |
|
483 | - return $this->get_prop( 'trial_period', $context ); |
|
482 | + public function get_trial_period($context = 'view') { |
|
483 | + return $this->get_prop('trial_period', $context); |
|
484 | 484 | } |
485 | 485 | |
486 | 486 | /** |
@@ -490,8 +490,8 @@ discard block |
||
490 | 490 | * @param string $context View or edit context. |
491 | 491 | * @return string |
492 | 492 | */ |
493 | - public function get_status( $context = 'view' ) { |
|
494 | - return $this->get_prop( 'status', $context ); |
|
493 | + public function get_status($context = 'view') { |
|
494 | + return $this->get_prop('status', $context); |
|
495 | 495 | } |
496 | 496 | |
497 | 497 | /** |
@@ -501,8 +501,8 @@ discard block |
||
501 | 501 | * @param string $context View or edit context. |
502 | 502 | * @return string |
503 | 503 | */ |
504 | - public function get_profile_id( $context = 'view' ) { |
|
505 | - return $this->get_prop( 'profile_id', $context ); |
|
504 | + public function get_profile_id($context = 'view') { |
|
505 | + return $this->get_prop('profile_id', $context); |
|
506 | 506 | } |
507 | 507 | |
508 | 508 | /* |
@@ -517,8 +517,8 @@ discard block |
||
517 | 517 | * @since 1.0.19 |
518 | 518 | * @param int $value The customer's id. |
519 | 519 | */ |
520 | - public function set_customer_id( $value ) { |
|
521 | - $this->set_prop( 'customer_id', (int) $value ); |
|
520 | + public function set_customer_id($value) { |
|
521 | + $this->set_prop('customer_id', (int) $value); |
|
522 | 522 | } |
523 | 523 | |
524 | 524 | /** |
@@ -527,8 +527,8 @@ discard block |
||
527 | 527 | * @since 1.0.19 |
528 | 528 | * @param int $value The parent invoice id. |
529 | 529 | */ |
530 | - public function set_parent_invoice_id( $value ) { |
|
531 | - $this->set_prop( 'parent_payment_id', (int) $value ); |
|
530 | + public function set_parent_invoice_id($value) { |
|
531 | + $this->set_prop('parent_payment_id', (int) $value); |
|
532 | 532 | } |
533 | 533 | |
534 | 534 | /** |
@@ -537,8 +537,8 @@ discard block |
||
537 | 537 | * @since 1.0.19 |
538 | 538 | * @param int $value The parent invoice id. |
539 | 539 | */ |
540 | - public function set_parent_payment_id( $value ) { |
|
541 | - $this->set_parent_invoice_id( $value ); |
|
540 | + public function set_parent_payment_id($value) { |
|
541 | + $this->set_parent_invoice_id($value); |
|
542 | 542 | } |
543 | 543 | |
544 | 544 | /** |
@@ -547,8 +547,8 @@ discard block |
||
547 | 547 | * @since 1.0.19 |
548 | 548 | * @param int $value The parent invoice id. |
549 | 549 | */ |
550 | - public function set_original_payment_id( $value ) { |
|
551 | - $this->set_parent_invoice_id( $value ); |
|
550 | + public function set_original_payment_id($value) { |
|
551 | + $this->set_parent_invoice_id($value); |
|
552 | 552 | } |
553 | 553 | |
554 | 554 | /** |
@@ -557,8 +557,8 @@ discard block |
||
557 | 557 | * @since 1.0.19 |
558 | 558 | * @param int $value The subscription product id. |
559 | 559 | */ |
560 | - public function set_product_id( $value ) { |
|
561 | - $this->set_prop( 'product_id', (int) $value ); |
|
560 | + public function set_product_id($value) { |
|
561 | + $this->set_prop('product_id', (int) $value); |
|
562 | 562 | } |
563 | 563 | |
564 | 564 | /** |
@@ -567,8 +567,8 @@ discard block |
||
567 | 567 | * @since 1.0.19 |
568 | 568 | * @param string $value The renewal period. |
569 | 569 | */ |
570 | - public function set_period( $value ) { |
|
571 | - $this->set_prop( 'period', $value ); |
|
570 | + public function set_period($value) { |
|
571 | + $this->set_prop('period', $value); |
|
572 | 572 | } |
573 | 573 | |
574 | 574 | /** |
@@ -577,9 +577,9 @@ discard block |
||
577 | 577 | * @since 1.0.19 |
578 | 578 | * @param int $value The subscription frequency. |
579 | 579 | */ |
580 | - public function set_frequency( $value ) { |
|
581 | - $value = empty( $value ) ? 1 : (int) $value; |
|
582 | - $this->set_prop( 'frequency', absint( $value ) ); |
|
580 | + public function set_frequency($value) { |
|
581 | + $value = empty($value) ? 1 : (int) $value; |
|
582 | + $this->set_prop('frequency', absint($value)); |
|
583 | 583 | } |
584 | 584 | |
585 | 585 | /** |
@@ -588,8 +588,8 @@ discard block |
||
588 | 588 | * @since 1.0.19 |
589 | 589 | * @param float $value The initial subcription amount. |
590 | 590 | */ |
591 | - public function set_initial_amount( $value ) { |
|
592 | - $this->set_prop( 'initial_amount', wpinv_sanitize_amount( $value ) ); |
|
591 | + public function set_initial_amount($value) { |
|
592 | + $this->set_prop('initial_amount', wpinv_sanitize_amount($value)); |
|
593 | 593 | } |
594 | 594 | |
595 | 595 | /** |
@@ -598,8 +598,8 @@ discard block |
||
598 | 598 | * @since 1.0.19 |
599 | 599 | * @param float $value The recurring subcription amount. |
600 | 600 | */ |
601 | - public function set_recurring_amount( $value ) { |
|
602 | - $this->set_prop( 'recurring_amount', wpinv_sanitize_amount( $value ) ); |
|
601 | + public function set_recurring_amount($value) { |
|
602 | + $this->set_prop('recurring_amount', wpinv_sanitize_amount($value)); |
|
603 | 603 | } |
604 | 604 | |
605 | 605 | /** |
@@ -608,8 +608,8 @@ discard block |
||
608 | 608 | * @since 1.0.19 |
609 | 609 | * @param int $value Bill times. |
610 | 610 | */ |
611 | - public function set_bill_times( $value ) { |
|
612 | - $this->set_prop( 'bill_times', (int) $value ); |
|
611 | + public function set_bill_times($value) { |
|
612 | + $this->set_prop('bill_times', (int) $value); |
|
613 | 613 | } |
614 | 614 | |
615 | 615 | /** |
@@ -618,8 +618,8 @@ discard block |
||
618 | 618 | * @since 1.0.19 |
619 | 619 | * @param string $value Bill times. |
620 | 620 | */ |
621 | - public function set_transaction_id( $value ) { |
|
622 | - $this->set_prop( 'transaction_id', sanitize_text_field( $value ) ); |
|
621 | + public function set_transaction_id($value) { |
|
622 | + $this->set_prop('transaction_id', sanitize_text_field($value)); |
|
623 | 623 | } |
624 | 624 | |
625 | 625 | /** |
@@ -628,15 +628,15 @@ discard block |
||
628 | 628 | * @since 1.0.19 |
629 | 629 | * @param string $value strtotime compliant date. |
630 | 630 | */ |
631 | - public function set_created( $value ) { |
|
632 | - $date = strtotime( $value ); |
|
631 | + public function set_created($value) { |
|
632 | + $date = strtotime($value); |
|
633 | 633 | |
634 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
635 | - $this->set_prop( 'created', date( 'Y-m-d H:i:s', $date ) ); |
|
634 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
635 | + $this->set_prop('created', date('Y-m-d H:i:s', $date)); |
|
636 | 636 | return; |
637 | 637 | } |
638 | 638 | |
639 | - $this->set_prop( 'created', '' ); |
|
639 | + $this->set_prop('created', ''); |
|
640 | 640 | |
641 | 641 | } |
642 | 642 | |
@@ -646,8 +646,8 @@ discard block |
||
646 | 646 | * @since 1.0.19 |
647 | 647 | * @param string $value strtotime compliant date. |
648 | 648 | */ |
649 | - public function set_date_created( $value ) { |
|
650 | - $this->set_created( $value ); |
|
649 | + public function set_date_created($value) { |
|
650 | + $this->set_created($value); |
|
651 | 651 | } |
652 | 652 | |
653 | 653 | /** |
@@ -656,15 +656,15 @@ discard block |
||
656 | 656 | * @since 1.0.19 |
657 | 657 | * @param string $value strtotime compliant date. |
658 | 658 | */ |
659 | - public function set_next_renewal_date( $value ) { |
|
660 | - $date = strtotime( $value ); |
|
659 | + public function set_next_renewal_date($value) { |
|
660 | + $date = strtotime($value); |
|
661 | 661 | |
662 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
663 | - $this->set_prop( 'expiration', date( 'Y-m-d H:i:s', $date ) ); |
|
662 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
663 | + $this->set_prop('expiration', date('Y-m-d H:i:s', $date)); |
|
664 | 664 | return; |
665 | 665 | } |
666 | 666 | |
667 | - $this->set_prop( 'expiration', '' ); |
|
667 | + $this->set_prop('expiration', ''); |
|
668 | 668 | |
669 | 669 | } |
670 | 670 | |
@@ -674,8 +674,8 @@ discard block |
||
674 | 674 | * @since 1.0.19 |
675 | 675 | * @param string $value strtotime compliant date. |
676 | 676 | */ |
677 | - public function set_expiration( $value ) { |
|
678 | - $this->set_next_renewal_date( $value ); |
|
677 | + public function set_expiration($value) { |
|
678 | + $this->set_next_renewal_date($value); |
|
679 | 679 | } |
680 | 680 | |
681 | 681 | /** |
@@ -684,8 +684,8 @@ discard block |
||
684 | 684 | * @since 1.0.19 |
685 | 685 | * @param string $value trial period e.g 1 year. |
686 | 686 | */ |
687 | - public function set_trial_period( $value ) { |
|
688 | - $this->set_prop( 'trial_period', $value ); |
|
687 | + public function set_trial_period($value) { |
|
688 | + $this->set_prop('trial_period', $value); |
|
689 | 689 | } |
690 | 690 | |
691 | 691 | /** |
@@ -694,22 +694,22 @@ discard block |
||
694 | 694 | * @since 1.0.19 |
695 | 695 | * @param string $new_status New subscription status. |
696 | 696 | */ |
697 | - public function set_status( $new_status ) { |
|
697 | + public function set_status($new_status) { |
|
698 | 698 | |
699 | 699 | // Abort if this is not a valid status; |
700 | - if ( ! array_key_exists( $new_status, getpaid_get_subscription_statuses() ) ) { |
|
700 | + if (!array_key_exists($new_status, getpaid_get_subscription_statuses())) { |
|
701 | 701 | return; |
702 | 702 | } |
703 | 703 | |
704 | - $old_status = ! empty( $this->status_transition['from'] ) ? $this->status_transition['from'] : $this->get_status(); |
|
705 | - if ( true === $this->object_read && $old_status !== $new_status ) { |
|
704 | + $old_status = !empty($this->status_transition['from']) ? $this->status_transition['from'] : $this->get_status(); |
|
705 | + if (true === $this->object_read && $old_status !== $new_status) { |
|
706 | 706 | $this->status_transition = array( |
707 | 707 | 'from' => $old_status, |
708 | 708 | 'to' => $new_status, |
709 | 709 | ); |
710 | 710 | } |
711 | 711 | |
712 | - $this->set_prop( 'status', $new_status ); |
|
712 | + $this->set_prop('status', $new_status); |
|
713 | 713 | } |
714 | 714 | |
715 | 715 | /** |
@@ -718,8 +718,8 @@ discard block |
||
718 | 718 | * @since 1.0.19 |
719 | 719 | * @param string $value the remote profile id. |
720 | 720 | */ |
721 | - public function set_profile_id( $value ) { |
|
722 | - $this->set_prop( 'profile_id', sanitize_text_field( $value ) ); |
|
721 | + public function set_profile_id($value) { |
|
722 | + $this->set_prop('profile_id', sanitize_text_field($value)); |
|
723 | 723 | } |
724 | 724 | |
725 | 725 | /* |
@@ -737,8 +737,8 @@ discard block |
||
737 | 737 | * @param string|array String or array of strings to check for. |
738 | 738 | * @return bool |
739 | 739 | */ |
740 | - public function has_status( $status ) { |
|
741 | - return in_array( $this->get_status(), wpinv_clean( wpinv_parse_list( $status ) ) ); |
|
740 | + public function has_status($status) { |
|
741 | + return in_array($this->get_status(), wpinv_clean(wpinv_parse_list($status))); |
|
742 | 742 | } |
743 | 743 | |
744 | 744 | /** |
@@ -748,7 +748,7 @@ discard block |
||
748 | 748 | */ |
749 | 749 | public function has_trial_period() { |
750 | 750 | $period = $this->get_trial_period(); |
751 | - return ! empty( $period ); |
|
751 | + return !empty($period); |
|
752 | 752 | } |
753 | 753 | |
754 | 754 | /** |
@@ -757,7 +757,7 @@ discard block |
||
757 | 757 | * @return bool |
758 | 758 | */ |
759 | 759 | public function is_active() { |
760 | - return $this->has_status( 'active trialling' ) && ! $this->is_expired(); |
|
760 | + return $this->has_status('active trialling') && !$this->is_expired(); |
|
761 | 761 | } |
762 | 762 | |
763 | 763 | /** |
@@ -766,7 +766,7 @@ discard block |
||
766 | 766 | * @return bool |
767 | 767 | */ |
768 | 768 | public function is_expired() { |
769 | - return $this->has_status( 'expired' ) || ( $this->has_status( 'active cancelled trialling' ) && $this->get_expiration_time() < current_time( 'timestamp' ) ); |
|
769 | + return $this->has_status('expired') || ($this->has_status('active cancelled trialling') && $this->get_expiration_time() < current_time('timestamp')); |
|
770 | 770 | } |
771 | 771 | |
772 | 772 | /** |
@@ -776,7 +776,7 @@ discard block |
||
776 | 776 | */ |
777 | 777 | public function is_last_renewal() { |
778 | 778 | $max_bills = $this->get_bill_times(); |
779 | - return ! empty( $max_bills ) && $max_bills <= $this->get_times_billed(); |
|
779 | + return !empty($max_bills) && $max_bills <= $this->get_times_billed(); |
|
780 | 780 | } |
781 | 781 | |
782 | 782 | /* |
@@ -791,11 +791,11 @@ discard block |
||
791 | 791 | /** |
792 | 792 | * Backwards compatibilty. |
793 | 793 | */ |
794 | - public function create( $data = array() ) { |
|
794 | + public function create($data = array()) { |
|
795 | 795 | |
796 | 796 | // Set the properties. |
797 | - if ( is_array( $data ) ) { |
|
798 | - $this->set_props( $data ); |
|
797 | + if (is_array($data)) { |
|
798 | + $this->set_props($data); |
|
799 | 799 | } |
800 | 800 | |
801 | 801 | // Save the item. |
@@ -806,8 +806,8 @@ discard block |
||
806 | 806 | /** |
807 | 807 | * Backwards compatibilty. |
808 | 808 | */ |
809 | - public function update( $args = array() ) { |
|
810 | - return $this->create( $args ); |
|
809 | + public function update($args = array()) { |
|
810 | + return $this->create($args); |
|
811 | 811 | } |
812 | 812 | |
813 | 813 | /** |
@@ -816,12 +816,12 @@ discard block |
||
816 | 816 | * @since 1.0.0 |
817 | 817 | * @return WP_Post[] |
818 | 818 | */ |
819 | - public function get_child_payments( $hide_pending = true ) { |
|
819 | + public function get_child_payments($hide_pending = true) { |
|
820 | 820 | |
821 | - $statuses = array( 'publish', 'wpi-processing', 'wpi-renewal' ); |
|
821 | + $statuses = array('publish', 'wpi-processing', 'wpi-renewal'); |
|
822 | 822 | |
823 | - if ( ! $hide_pending ) { |
|
824 | - $statuses = array_keys( wpinv_get_invoice_statuses() ); |
|
823 | + if (!$hide_pending) { |
|
824 | + $statuses = array_keys(wpinv_get_invoice_statuses()); |
|
825 | 825 | } |
826 | 826 | |
827 | 827 | return get_posts( |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | * @return int |
844 | 844 | */ |
845 | 845 | public function get_total_payments() { |
846 | - return getpaid_count_subscription_invoices( $this->get_parent_invoice_id(), $this->get_id() ); |
|
846 | + return getpaid_count_subscription_invoices($this->get_parent_invoice_id(), $this->get_id()); |
|
847 | 847 | } |
848 | 848 | |
849 | 849 | /** |
@@ -855,7 +855,7 @@ discard block |
||
855 | 855 | public function get_times_billed() { |
856 | 856 | $times_billed = $this->get_total_payments(); |
857 | 857 | |
858 | - if ( (float) $this->get_initial_amount() == 0 && $times_billed > 0 ) { |
|
858 | + if ((float) $this->get_initial_amount() == 0 && $times_billed > 0) { |
|
859 | 859 | $times_billed--; |
860 | 860 | } |
861 | 861 | |
@@ -870,47 +870,47 @@ discard block |
||
870 | 870 | * @param WPInv_Invoice $invoice If adding an existing invoice. |
871 | 871 | * @return bool |
872 | 872 | */ |
873 | - public function add_payment( $args = array(), $invoice = false ) { |
|
873 | + public function add_payment($args = array(), $invoice = false) { |
|
874 | 874 | |
875 | 875 | // Process each payment once. |
876 | - if ( ! empty( $args['transaction_id'] ) && $this->payment_exists( $args['transaction_id'] ) ) { |
|
876 | + if (!empty($args['transaction_id']) && $this->payment_exists($args['transaction_id'])) { |
|
877 | 877 | return false; |
878 | 878 | } |
879 | 879 | |
880 | 880 | // Are we creating a new invoice? |
881 | - if ( empty( $invoice ) ) { |
|
882 | - $invoice = $this->create_payment( false ); |
|
881 | + if (empty($invoice)) { |
|
882 | + $invoice = $this->create_payment(false); |
|
883 | 883 | |
884 | - if ( empty( $invoice ) ) { |
|
884 | + if (empty($invoice)) { |
|
885 | 885 | return false; |
886 | 886 | } |
887 | 887 | } |
888 | 888 | |
889 | 889 | // Maybe set a transaction id. |
890 | - if ( ! empty( $args['transaction_id'] ) ) { |
|
891 | - $invoice->set_transaction_id( $args['transaction_id'] ); |
|
890 | + if (!empty($args['transaction_id'])) { |
|
891 | + $invoice->set_transaction_id($args['transaction_id']); |
|
892 | 892 | } |
893 | 893 | |
894 | 894 | // Set the completed date. |
895 | - $invoice->set_completed_date( current_time( 'mysql' ) ); |
|
895 | + $invoice->set_completed_date(current_time('mysql')); |
|
896 | 896 | |
897 | 897 | // And the gateway. |
898 | - if ( ! empty( $args['gateway'] ) ) { |
|
899 | - $invoice->set_gateway( $args['gateway'] ); |
|
898 | + if (!empty($args['gateway'])) { |
|
899 | + $invoice->set_gateway($args['gateway']); |
|
900 | 900 | } |
901 | 901 | |
902 | - $invoice->set_status( 'wpi-renewal' ); |
|
902 | + $invoice->set_status('wpi-renewal'); |
|
903 | 903 | $invoice->save(); |
904 | 904 | |
905 | - if ( ! $invoice->exists() ) { |
|
905 | + if (!$invoice->exists()) { |
|
906 | 906 | return false; |
907 | 907 | } |
908 | 908 | |
909 | - do_action( 'getpaid_after_create_subscription_renewal_invoice', $invoice, $this ); |
|
910 | - do_action( 'wpinv_recurring_add_subscription_payment', $invoice, $this ); |
|
911 | - do_action( 'wpinv_recurring_record_payment', $invoice->get_id(), $this->get_parent_invoice_id(), $invoice->get_recurring_total(), $invoice->get_transaction_id() ); |
|
909 | + do_action('getpaid_after_create_subscription_renewal_invoice', $invoice, $this); |
|
910 | + do_action('wpinv_recurring_add_subscription_payment', $invoice, $this); |
|
911 | + do_action('wpinv_recurring_record_payment', $invoice->get_id(), $this->get_parent_invoice_id(), $invoice->get_recurring_total(), $invoice->get_transaction_id()); |
|
912 | 912 | |
913 | - update_post_meta( $invoice->get_id(), '_wpinv_subscription_id', $this->id ); |
|
913 | + update_post_meta($invoice->get_id(), '_wpinv_subscription_id', $this->id); |
|
914 | 914 | |
915 | 915 | return $invoice->get_id(); |
916 | 916 | } |
@@ -922,47 +922,47 @@ discard block |
||
922 | 922 | * @param bool $save Whether we should save the invoice. |
923 | 923 | * @return WPInv_Invoice|bool |
924 | 924 | */ |
925 | - public function create_payment( $save = true ) { |
|
925 | + public function create_payment($save = true) { |
|
926 | 926 | |
927 | 927 | $parent_invoice = $this->get_parent_payment(); |
928 | 928 | |
929 | - if ( ! $parent_invoice->exists() ) { |
|
929 | + if (!$parent_invoice->exists()) { |
|
930 | 930 | return false; |
931 | 931 | } |
932 | 932 | |
933 | 933 | // Duplicate the parent invoice. |
934 | - $invoice = getpaid_duplicate_invoice( $parent_invoice ); |
|
935 | - $invoice->set_parent_id( $parent_invoice->get_id() ); |
|
936 | - $invoice->set_subscription_id( $this->get_id() ); |
|
937 | - $invoice->set_remote_subscription_id( $this->get_profile_id() ); |
|
934 | + $invoice = getpaid_duplicate_invoice($parent_invoice); |
|
935 | + $invoice->set_parent_id($parent_invoice->get_id()); |
|
936 | + $invoice->set_subscription_id($this->get_id()); |
|
937 | + $invoice->set_remote_subscription_id($this->get_profile_id()); |
|
938 | 938 | |
939 | 939 | // Set invoice items. |
940 | - $subscription_group = getpaid_get_invoice_subscription_group( $parent_invoice->get_id(), $this->get_id() ); |
|
941 | - $allowed_items = empty( $subscription_group ) ? array( $this->get_product_id() ) : array_keys( $subscription_group['items'] ); |
|
940 | + $subscription_group = getpaid_get_invoice_subscription_group($parent_invoice->get_id(), $this->get_id()); |
|
941 | + $allowed_items = empty($subscription_group) ? array($this->get_product_id()) : array_keys($subscription_group['items']); |
|
942 | 942 | $invoice_items = array(); |
943 | 943 | |
944 | - foreach ( $invoice->get_items() as $item ) { |
|
945 | - if ( in_array( $item->get_id(), $allowed_items ) ) { |
|
944 | + foreach ($invoice->get_items() as $item) { |
|
945 | + if (in_array($item->get_id(), $allowed_items)) { |
|
946 | 946 | $invoice_items[] = $item; |
947 | 947 | } |
948 | 948 | } |
949 | 949 | |
950 | - $invoice->set_items( $invoice_items ); |
|
950 | + $invoice->set_items($invoice_items); |
|
951 | 951 | |
952 | - if ( ! empty( $subscription_group['fees'] ) ) { |
|
953 | - $invoice->set_fees( $subscription_group['fees'] ); |
|
952 | + if (!empty($subscription_group['fees'])) { |
|
953 | + $invoice->set_fees($subscription_group['fees']); |
|
954 | 954 | } |
955 | 955 | |
956 | 956 | // Maybe recalculate discount (Pre-GetPaid Fix). |
957 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
958 | - if ( $discount->exists() && $discount->is_recurring() && 0 == $invoice->get_total_discount() ) { |
|
959 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
957 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
958 | + if ($discount->exists() && $discount->is_recurring() && 0 == $invoice->get_total_discount()) { |
|
959 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
960 | 960 | } |
961 | 961 | |
962 | 962 | $invoice->recalculate_total(); |
963 | - $invoice->set_status( 'wpi-pending' ); |
|
963 | + $invoice->set_status('wpi-pending'); |
|
964 | 964 | |
965 | - if ( ! $save ) { |
|
965 | + if (!$save) { |
|
966 | 966 | return $invoice; |
967 | 967 | } |
968 | 968 | |
@@ -977,24 +977,24 @@ discard block |
||
977 | 977 | * @since 1.0.0 |
978 | 978 | * @return int The subscription's id |
979 | 979 | */ |
980 | - public function renew( $calculate_from = null ) { |
|
980 | + public function renew($calculate_from = null) { |
|
981 | 981 | |
982 | 982 | // Complete subscription if applicable |
983 | - if ( $this->is_last_renewal() ) { |
|
983 | + if ($this->is_last_renewal()) { |
|
984 | 984 | return $this->complete(); |
985 | 985 | } |
986 | 986 | |
987 | 987 | // Calculate new expiration |
988 | 988 | $frequency = $this->get_frequency(); |
989 | 989 | $period = $this->get_period(); |
990 | - $calculate_from = empty( $calculate_from ) ? $this->get_expiration_time() : $calculate_from; |
|
991 | - $new_expiration = strtotime( "+ $frequency $period", $calculate_from ); |
|
990 | + $calculate_from = empty($calculate_from) ? $this->get_expiration_time() : $calculate_from; |
|
991 | + $new_expiration = strtotime("+ $frequency $period", $calculate_from); |
|
992 | 992 | |
993 | - $this->set_expiration( date( 'Y-m-d H:i:s', $new_expiration ) ); |
|
994 | - $this->set_status( 'active' ); |
|
993 | + $this->set_expiration(date('Y-m-d H:i:s', $new_expiration)); |
|
994 | + $this->set_status('active'); |
|
995 | 995 | $this->save(); |
996 | 996 | |
997 | - do_action( 'getpaid_subscription_renewed', $this ); |
|
997 | + do_action('getpaid_subscription_renewed', $this); |
|
998 | 998 | |
999 | 999 | return $this->get_id(); |
1000 | 1000 | } |
@@ -1010,11 +1010,11 @@ discard block |
||
1010 | 1010 | public function complete() { |
1011 | 1011 | |
1012 | 1012 | // Only mark a subscription as complete if it's not already cancelled. |
1013 | - if ( $this->has_status( 'cancelled' ) ) { |
|
1013 | + if ($this->has_status('cancelled')) { |
|
1014 | 1014 | return false; |
1015 | 1015 | } |
1016 | 1016 | |
1017 | - $this->set_status( 'completed' ); |
|
1017 | + $this->set_status('completed'); |
|
1018 | 1018 | return $this->save(); |
1019 | 1019 | |
1020 | 1020 | } |
@@ -1026,14 +1026,14 @@ discard block |
||
1026 | 1026 | * @param bool $check_expiration |
1027 | 1027 | * @return int|bool Subscription id or false if $check_expiration is true and expiration date is in the future. |
1028 | 1028 | */ |
1029 | - public function expire( $check_expiration = false ) { |
|
1029 | + public function expire($check_expiration = false) { |
|
1030 | 1030 | |
1031 | - if ( $check_expiration && $this->get_expiration_time() > current_time( 'timestamp' ) ) { |
|
1031 | + if ($check_expiration && $this->get_expiration_time() > current_time('timestamp')) { |
|
1032 | 1032 | // Do not mark as expired since real expiration date is in the future |
1033 | 1033 | return false; |
1034 | 1034 | } |
1035 | 1035 | |
1036 | - $this->set_status( 'expired' ); |
|
1036 | + $this->set_status('expired'); |
|
1037 | 1037 | return $this->save(); |
1038 | 1038 | |
1039 | 1039 | } |
@@ -1045,7 +1045,7 @@ discard block |
||
1045 | 1045 | * @return int Subscription id. |
1046 | 1046 | */ |
1047 | 1047 | public function failing() { |
1048 | - $this->set_status( 'failing' ); |
|
1048 | + $this->set_status('failing'); |
|
1049 | 1049 | return $this->save(); |
1050 | 1050 | } |
1051 | 1051 | |
@@ -1056,7 +1056,7 @@ discard block |
||
1056 | 1056 | * @return int Subscription id. |
1057 | 1057 | */ |
1058 | 1058 | public function cancel() { |
1059 | - $this->set_status( 'cancelled' ); |
|
1059 | + $this->set_status('cancelled'); |
|
1060 | 1060 | return $this->save(); |
1061 | 1061 | } |
1062 | 1062 | |
@@ -1067,7 +1067,7 @@ discard block |
||
1067 | 1067 | * @return bool |
1068 | 1068 | */ |
1069 | 1069 | public function can_cancel() { |
1070 | - return apply_filters( 'wpinv_subscription_can_cancel', $this->has_status( $this->get_cancellable_statuses() ), $this ); |
|
1070 | + return apply_filters('wpinv_subscription_can_cancel', $this->has_status($this->get_cancellable_statuses()), $this); |
|
1071 | 1071 | } |
1072 | 1072 | |
1073 | 1073 | /** |
@@ -1078,7 +1078,7 @@ discard block |
||
1078 | 1078 | * @return array |
1079 | 1079 | */ |
1080 | 1080 | public function get_cancellable_statuses() { |
1081 | - return apply_filters( 'wpinv_recurring_cancellable_statuses', array( 'active', 'trialling', 'failing' ) ); |
|
1081 | + return apply_filters('wpinv_recurring_cancellable_statuses', array('active', 'trialling', 'failing')); |
|
1082 | 1082 | } |
1083 | 1083 | |
1084 | 1084 | /** |
@@ -1088,8 +1088,8 @@ discard block |
||
1088 | 1088 | * @return string |
1089 | 1089 | */ |
1090 | 1090 | public function get_cancel_url() { |
1091 | - $url = getpaid_get_authenticated_action_url( 'subscription_cancel', $this->get_view_url() ); |
|
1092 | - return apply_filters( 'wpinv_subscription_cancel_url', $url, $this ); |
|
1091 | + $url = getpaid_get_authenticated_action_url('subscription_cancel', $this->get_view_url()); |
|
1092 | + return apply_filters('wpinv_subscription_cancel_url', $url, $this); |
|
1093 | 1093 | } |
1094 | 1094 | |
1095 | 1095 | /** |
@@ -1100,10 +1100,10 @@ discard block |
||
1100 | 1100 | */ |
1101 | 1101 | public function get_view_url() { |
1102 | 1102 | |
1103 | - $url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
1104 | - $url = add_query_arg( 'subscription', $this->get_id(), $url ); |
|
1103 | + $url = getpaid_get_tab_url('gp-subscriptions', get_permalink((int) wpinv_get_option('invoice_subscription_page'))); |
|
1104 | + $url = add_query_arg('subscription', $this->get_id(), $url); |
|
1105 | 1105 | |
1106 | - return apply_filters( 'getpaid_get_subscription_view_url', $url, $this ); |
|
1106 | + return apply_filters('getpaid_get_subscription_view_url', $url, $this); |
|
1107 | 1107 | } |
1108 | 1108 | |
1109 | 1109 | /** |
@@ -1116,7 +1116,7 @@ discard block |
||
1116 | 1116 | * @return bool |
1117 | 1117 | */ |
1118 | 1118 | public function can_renew() { |
1119 | - return apply_filters( 'wpinv_subscription_can_renew', true, $this ); |
|
1119 | + return apply_filters('wpinv_subscription_can_renew', true, $this); |
|
1120 | 1120 | } |
1121 | 1121 | |
1122 | 1122 | /** |
@@ -1135,7 +1135,7 @@ discard block |
||
1135 | 1135 | ), |
1136 | 1136 | 'getpaid-nonce' |
1137 | 1137 | ); |
1138 | - return apply_filters( 'wpinv_subscription_renew_url', $url, $this ); |
|
1138 | + return apply_filters('wpinv_subscription_renew_url', $url, $this); |
|
1139 | 1139 | } |
1140 | 1140 | |
1141 | 1141 | /** |
@@ -1145,7 +1145,7 @@ discard block |
||
1145 | 1145 | * @return bool |
1146 | 1146 | */ |
1147 | 1147 | public function can_update() { |
1148 | - return apply_filters( 'wpinv_subscription_can_update', false, $this ); |
|
1148 | + return apply_filters('wpinv_subscription_can_update', false, $this); |
|
1149 | 1149 | } |
1150 | 1150 | |
1151 | 1151 | /** |
@@ -1161,7 +1161,7 @@ discard block |
||
1161 | 1161 | 'subscription_id' => $this->get_id(), |
1162 | 1162 | ) |
1163 | 1163 | ); |
1164 | - return apply_filters( 'wpinv_subscription_update_url', $url, $this ); |
|
1164 | + return apply_filters('wpinv_subscription_update_url', $url, $this); |
|
1165 | 1165 | } |
1166 | 1166 | |
1167 | 1167 | /** |
@@ -1171,7 +1171,7 @@ discard block |
||
1171 | 1171 | * @return string |
1172 | 1172 | */ |
1173 | 1173 | public function get_status_label() { |
1174 | - return getpaid_get_subscription_status_label( $this->get_status() ); |
|
1174 | + return getpaid_get_subscription_status_label($this->get_status()); |
|
1175 | 1175 | } |
1176 | 1176 | |
1177 | 1177 | /** |
@@ -1182,7 +1182,7 @@ discard block |
||
1182 | 1182 | */ |
1183 | 1183 | public function get_status_class() { |
1184 | 1184 | $statuses = getpaid_get_subscription_status_classes(); |
1185 | - return isset( $statuses[ $this->get_status() ] ) ? $statuses[ $this->get_status() ] : 'badge-dark'; |
|
1185 | + return isset($statuses[$this->get_status()]) ? $statuses[$this->get_status()] : 'badge-dark'; |
|
1186 | 1186 | } |
1187 | 1187 | |
1188 | 1188 | /** |
@@ -1193,9 +1193,9 @@ discard block |
||
1193 | 1193 | */ |
1194 | 1194 | public function get_status_label_html() { |
1195 | 1195 | |
1196 | - $status_label = sanitize_text_field( $this->get_status_label() ); |
|
1197 | - $class = esc_attr( $this->get_status_class() ); |
|
1198 | - $status = sanitize_html_class( $this->get_status() ); |
|
1196 | + $status_label = sanitize_text_field($this->get_status_label()); |
|
1197 | + $class = esc_attr($this->get_status_class()); |
|
1198 | + $status = sanitize_html_class($this->get_status()); |
|
1199 | 1199 | |
1200 | 1200 | return "<span class='bsui'><span class='badge $class $status'>$status_label</span></span>"; |
1201 | 1201 | } |
@@ -1207,9 +1207,9 @@ discard block |
||
1207 | 1207 | * @param string $txn_id The transaction ID from the merchant processor |
1208 | 1208 | * @return bool |
1209 | 1209 | */ |
1210 | - public function payment_exists( $txn_id = '' ) { |
|
1211 | - $invoice_id = WPInv_Invoice::get_invoice_id_by_field( $txn_id, 'transaction_id' ); |
|
1212 | - return ! empty( $invoice_id ); |
|
1210 | + public function payment_exists($txn_id = '') { |
|
1211 | + $invoice_id = WPInv_Invoice::get_invoice_id_by_field($txn_id, 'transaction_id'); |
|
1212 | + return !empty($invoice_id); |
|
1213 | 1213 | } |
1214 | 1214 | |
1215 | 1215 | /** |
@@ -1221,35 +1221,35 @@ discard block |
||
1221 | 1221 | // Reset status transition variable. |
1222 | 1222 | $this->status_transition = false; |
1223 | 1223 | |
1224 | - if ( $status_transition ) { |
|
1224 | + if ($status_transition) { |
|
1225 | 1225 | try { |
1226 | 1226 | |
1227 | 1227 | // Fire a hook for the status change. |
1228 | - do_action( 'wpinv_subscription_' . $status_transition['to'], $this->get_id(), $this, $status_transition ); |
|
1229 | - do_action( 'getpaid_subscription_' . $status_transition['to'], $this, $status_transition ); |
|
1228 | + do_action('wpinv_subscription_' . $status_transition['to'], $this->get_id(), $this, $status_transition); |
|
1229 | + do_action('getpaid_subscription_' . $status_transition['to'], $this, $status_transition); |
|
1230 | 1230 | |
1231 | - if ( ! empty( $status_transition['from'] ) ) { |
|
1231 | + if (!empty($status_transition['from'])) { |
|
1232 | 1232 | |
1233 | 1233 | /* translators: 1: old subscription status 2: new subscription status */ |
1234 | - $transition_note = sprintf( __( 'Subscription status changed from %1$s to %2$s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['from'] ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
1234 | + $transition_note = sprintf(__('Subscription status changed from %1$s to %2$s.', 'invoicing'), getpaid_get_subscription_status_label($status_transition['from']), getpaid_get_subscription_status_label($status_transition['to'])); |
|
1235 | 1235 | |
1236 | 1236 | // Note the transition occurred. |
1237 | - $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
1237 | + $this->get_parent_payment()->add_note($transition_note, false, false, true); |
|
1238 | 1238 | |
1239 | 1239 | // Fire another hook. |
1240 | - do_action( 'getpaid_subscription_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $this ); |
|
1241 | - do_action( 'getpaid_subscription_status_changed', $this, $status_transition['from'], $status_transition['to'] ); |
|
1240 | + do_action('getpaid_subscription_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $this); |
|
1241 | + do_action('getpaid_subscription_status_changed', $this, $status_transition['from'], $status_transition['to']); |
|
1242 | 1242 | |
1243 | 1243 | } else { |
1244 | 1244 | /* translators: %s: new invoice status */ |
1245 | - $transition_note = sprintf( __( 'Subscription status set to %s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
1245 | + $transition_note = sprintf(__('Subscription status set to %s.', 'invoicing'), getpaid_get_subscription_status_label($status_transition['to'])); |
|
1246 | 1246 | |
1247 | 1247 | // Note the transition occurred. |
1248 | - $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
1248 | + $this->get_parent_payment()->add_note($transition_note, false, false, true); |
|
1249 | 1249 | |
1250 | 1250 | } |
1251 | - } catch ( Exception $e ) { |
|
1252 | - $this->get_parent_payment()->add_note( __( 'Error during subscription status transition.', 'invoicing' ) . ' ' . $e->getMessage() ); |
|
1251 | + } catch (Exception $e) { |
|
1252 | + $this->get_parent_payment()->add_note(__('Error during subscription status transition.', 'invoicing') . ' ' . $e->getMessage()); |
|
1253 | 1253 | } |
1254 | 1254 | } |
1255 | 1255 | |
@@ -1275,7 +1275,7 @@ discard block |
||
1275 | 1275 | */ |
1276 | 1276 | public function activate() { |
1277 | 1277 | $status = $this->has_trial_period() && 'trialling' === $this->get_status() ? 'trialling' : 'active'; |
1278 | - $this->set_status( $status ); |
|
1278 | + $this->set_status($status); |
|
1279 | 1279 | return $this->save(); |
1280 | 1280 | } |
1281 | 1281 |