@@ -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. |
@@ -139,55 +139,55 @@ discard block |
||
139 | 139 | public function __construct() { |
140 | 140 | |
141 | 141 | // Register gateway. |
142 | - add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) ); |
|
142 | + add_filter('wpinv_payment_gateways', array($this, 'register_gateway')); |
|
143 | 143 | |
144 | - $this->enabled = wpinv_is_gateway_active( $this->id ); |
|
144 | + $this->enabled = wpinv_is_gateway_active($this->id); |
|
145 | 145 | |
146 | 146 | // Enable Subscriptions. |
147 | - if ( $this->supports( 'subscription' ) ) { |
|
148 | - add_filter( "wpinv_{$this->id}_support_subscription", '__return_true' ); |
|
147 | + if ($this->supports('subscription')) { |
|
148 | + add_filter("wpinv_{$this->id}_support_subscription", '__return_true'); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | // Enable sandbox. |
152 | - if ( $this->supports( 'sandbox' ) ) { |
|
153 | - add_filter( "wpinv_{$this->id}_supports_sandbox", '__return_true' ); |
|
152 | + if ($this->supports('sandbox')) { |
|
153 | + add_filter("wpinv_{$this->id}_supports_sandbox", '__return_true'); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | // Invoice addons. |
157 | - if ( $this->supports( 'addons' ) ) { |
|
158 | - add_filter( "getpaid_{$this->id}_supports_addons", '__return_true' ); |
|
159 | - add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 ); |
|
157 | + if ($this->supports('addons')) { |
|
158 | + add_filter("getpaid_{$this->id}_supports_addons", '__return_true'); |
|
159 | + add_action("getpaid_process_{$this->id}_invoice_addons", array($this, 'process_addons'), 10, 2); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | // Gateway settings. |
163 | - add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) ); |
|
163 | + add_filter("wpinv_gateway_settings_{$this->id}", array($this, 'admin_settings')); |
|
164 | 164 | |
165 | 165 | |
166 | 166 | // Gateway checkout fiellds. |
167 | - add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 ); |
|
167 | + add_action("wpinv_{$this->id}_cc_form", array($this, 'payment_fields'), 10, 2); |
|
168 | 168 | |
169 | 169 | // Process payment. |
170 | - add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 ); |
|
170 | + add_action("getpaid_gateway_{$this->id}", array($this, 'process_payment'), 10, 3); |
|
171 | 171 | |
172 | 172 | // Change the checkout button text. |
173 | - if ( ! empty( $this->checkout_button_text ) ) { |
|
174 | - add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) ); |
|
173 | + if (!empty($this->checkout_button_text)) { |
|
174 | + add_filter("getpaid_gateway_{$this->id}_checkout_button_label", array($this, 'rename_checkout_button')); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | // Check if a gateway is valid for a given currency. |
178 | - add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 ); |
|
178 | + add_filter("getpaid_gateway_{$this->id}_is_valid_for_currency", array($this, 'validate_currency'), 10, 2); |
|
179 | 179 | |
180 | 180 | // Generate the transaction url. |
181 | - add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 ); |
|
181 | + add_filter("getpaid_gateway_{$this->id}_transaction_url", array($this, 'filter_transaction_url'), 10, 2); |
|
182 | 182 | |
183 | 183 | // Generate the subscription url. |
184 | - add_filter( "getpaid_gateway_{$this->id}_subscription_url", array( $this, 'filter_subscription_url' ), 10, 2 ); |
|
184 | + add_filter("getpaid_gateway_{$this->id}_subscription_url", array($this, 'filter_subscription_url'), 10, 2); |
|
185 | 185 | |
186 | 186 | // Confirm payments. |
187 | - add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 ); |
|
187 | + add_filter("wpinv_payment_confirm_{$this->id}", array($this, 'confirm_payment'), 10, 2); |
|
188 | 188 | |
189 | 189 | // Verify IPNs. |
190 | - add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) ); |
|
190 | + add_action("wpinv_verify_{$this->id}_ipn", array($this, 'verify_ipn')); |
|
191 | 191 | |
192 | 192 | } |
193 | 193 | |
@@ -197,7 +197,7 @@ discard block |
||
197 | 197 | * @since 1.0.19 |
198 | 198 | * @return bool |
199 | 199 | */ |
200 | - public function is( $gateway ) { |
|
200 | + public function is($gateway) { |
|
201 | 201 | return $gateway == $this->id; |
202 | 202 | } |
203 | 203 | |
@@ -207,23 +207,23 @@ discard block |
||
207 | 207 | * @since 1.0.19 |
208 | 208 | * @return array |
209 | 209 | */ |
210 | - public function get_tokens( $sandbox = null ) { |
|
210 | + public function get_tokens($sandbox = null) { |
|
211 | 211 | |
212 | - if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) { |
|
213 | - $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true ); |
|
212 | + if (is_user_logged_in() && $this->supports('tokens') && 0 == count($this->tokens)) { |
|
213 | + $tokens = get_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", true); |
|
214 | 214 | |
215 | - if ( is_array( $tokens ) ) { |
|
215 | + if (is_array($tokens)) { |
|
216 | 216 | $this->tokens = $tokens; |
217 | 217 | } |
218 | 218 | |
219 | 219 | } |
220 | 220 | |
221 | - if ( ! is_bool( $sandbox ) ) { |
|
221 | + if (!is_bool($sandbox)) { |
|
222 | 222 | return $this->tokens; |
223 | 223 | } |
224 | 224 | |
225 | - $args = array( 'type' => $sandbox ? 'sandbox' : 'live' ); |
|
226 | - return wp_list_filter( $this->tokens, $args ); |
|
225 | + $args = array('type' => $sandbox ? 'sandbox' : 'live'); |
|
226 | + return wp_list_filter($this->tokens, $args); |
|
227 | 227 | |
228 | 228 | } |
229 | 229 | |
@@ -232,12 +232,12 @@ discard block |
||
232 | 232 | * |
233 | 233 | * @since 1.0.19 |
234 | 234 | */ |
235 | - public function save_token( $token ) { |
|
235 | + public function save_token($token) { |
|
236 | 236 | |
237 | 237 | $tokens = $this->get_tokens(); |
238 | 238 | $tokens[] = $token; |
239 | 239 | |
240 | - update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens ); |
|
240 | + update_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens); |
|
241 | 241 | |
242 | 242 | $this->tokens = $tokens; |
243 | 243 | |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | * @return string |
250 | 250 | */ |
251 | 251 | public function get_method_title() { |
252 | - return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this ); |
|
252 | + return apply_filters('getpaid_gateway_method_title', $this->method_title, $this); |
|
253 | 253 | } |
254 | 254 | |
255 | 255 | /** |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | * @return string |
259 | 259 | */ |
260 | 260 | public function get_method_description() { |
261 | - return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this ); |
|
261 | + return apply_filters('getpaid_gateway_method_description', $this->method_description, $this); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | /** |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @param WPInv_Invoice $invoice Invoice object. |
268 | 268 | * @return string |
269 | 269 | */ |
270 | - public function get_return_url( $invoice ) { |
|
270 | + public function get_return_url($invoice) { |
|
271 | 271 | |
272 | 272 | // Payment success url |
273 | 273 | $return_url = add_query_arg( |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | wpinv_get_success_page_uri() |
280 | 280 | ); |
281 | 281 | |
282 | - return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this ); |
|
282 | + return apply_filters('getpaid_gateway_success_url', $return_url, $invoice, $this); |
|
283 | 283 | } |
284 | 284 | |
285 | 285 | /** |
@@ -288,24 +288,24 @@ discard block |
||
288 | 288 | * @param string $content Success page content. |
289 | 289 | * @return string |
290 | 290 | */ |
291 | - public function confirm_payment( $content ) { |
|
291 | + public function confirm_payment($content) { |
|
292 | 292 | |
293 | 293 | // Retrieve the invoice. |
294 | 294 | $invoice_id = getpaid_get_current_invoice_id(); |
295 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
295 | + $invoice = wpinv_get_invoice($invoice_id); |
|
296 | 296 | |
297 | 297 | // Ensure that it exists and that it is pending payment. |
298 | - if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) { |
|
298 | + if (empty($invoice_id) || !$invoice->needs_payment()) { |
|
299 | 299 | return $content; |
300 | 300 | } |
301 | 301 | |
302 | 302 | // Can the user view this invoice?? |
303 | - if ( ! wpinv_user_can_view_invoice( $invoice ) ) { |
|
303 | + if (!wpinv_user_can_view_invoice($invoice)) { |
|
304 | 304 | return $content; |
305 | 305 | } |
306 | 306 | |
307 | 307 | // Show payment processing indicator. |
308 | - return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) ); |
|
308 | + return wpinv_get_template_html('wpinv-payment-processing.php', compact('invoice')); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | /** |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | * @param GetPaid_Form_Item[] $items |
323 | 323 | * @return WPInv_Invoice |
324 | 324 | */ |
325 | - public function process_addons( $invoice, $items ) { |
|
325 | + public function process_addons($invoice, $items) { |
|
326 | 326 | |
327 | 327 | } |
328 | 328 | |
@@ -333,14 +333,14 @@ discard block |
||
333 | 333 | * @param WPInv_Invoice $invoice Invoice object. |
334 | 334 | * @return string transaction URL, or empty string. |
335 | 335 | */ |
336 | - public function filter_transaction_url( $transaction_url, $invoice ) { |
|
336 | + public function filter_transaction_url($transaction_url, $invoice) { |
|
337 | 337 | |
338 | - $transaction_id = $invoice->get_transaction_id(); |
|
338 | + $transaction_id = $invoice->get_transaction_id(); |
|
339 | 339 | |
340 | - if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) { |
|
341 | - $transaction_url = sprintf( $this->view_transaction_url, $transaction_id ); |
|
342 | - $replace = $this->is_sandbox( $invoice ) ? 'sandbox' : ''; |
|
343 | - $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url ); |
|
340 | + if (!empty($this->view_transaction_url) && !empty($transaction_id)) { |
|
341 | + $transaction_url = sprintf($this->view_transaction_url, $transaction_id); |
|
342 | + $replace = $this->is_sandbox($invoice) ? 'sandbox' : ''; |
|
343 | + $transaction_url = str_replace('{sandbox}', $replace, $transaction_url); |
|
344 | 344 | } |
345 | 345 | |
346 | 346 | return $transaction_url; |
@@ -353,15 +353,15 @@ discard block |
||
353 | 353 | * @param WPInv_Invoice $invoice Invoice object. |
354 | 354 | * @return string subscription URL, or empty string. |
355 | 355 | */ |
356 | - public function filter_subscription_url( $subscription_url, $invoice ) { |
|
356 | + public function filter_subscription_url($subscription_url, $invoice) { |
|
357 | 357 | |
358 | - $profile_id = $invoice->get_subscription_id(); |
|
358 | + $profile_id = $invoice->get_subscription_id(); |
|
359 | 359 | |
360 | - if ( ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) { |
|
360 | + if (!empty($this->view_subscription_url) && !empty($profile_id)) { |
|
361 | 361 | |
362 | - $subscription_url = sprintf( $this->view_subscription_url, $profile_id ); |
|
363 | - $replace = $this->is_sandbox( $invoice ) ? 'sandbox' : ''; |
|
364 | - $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url ); |
|
362 | + $subscription_url = sprintf($this->view_subscription_url, $profile_id); |
|
363 | + $replace = $this->is_sandbox($invoice) ? 'sandbox' : ''; |
|
364 | + $subscription_url = str_replace('{sandbox}', $replace, $subscription_url); |
|
365 | 365 | |
366 | 366 | } |
367 | 367 | |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | * @return bool |
375 | 375 | */ |
376 | 376 | public function is_available() { |
377 | - return ! empty( $this->enabled ); |
|
377 | + return !empty($this->enabled); |
|
378 | 378 | } |
379 | 379 | |
380 | 380 | /** |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | * @return string |
384 | 384 | */ |
385 | 385 | public function get_title() { |
386 | - return apply_filters( 'getpaid_gateway_title', $this->title, $this ); |
|
386 | + return apply_filters('getpaid_gateway_title', $this->title, $this); |
|
387 | 387 | } |
388 | 388 | |
389 | 389 | /** |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | * @return string |
393 | 393 | */ |
394 | 394 | public function get_description() { |
395 | - return apply_filters( 'getpaid_gateway_description', $this->description, $this ); |
|
395 | + return apply_filters('getpaid_gateway_description', $this->description, $this); |
|
396 | 396 | } |
397 | 397 | |
398 | 398 | /** |
@@ -404,9 +404,9 @@ discard block |
||
404 | 404 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
405 | 405 | * @return void |
406 | 406 | */ |
407 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
407 | + public function process_payment($invoice, $submission_data, $submission) { |
|
408 | 408 | // Process the payment then either redirect to the success page or the gateway. |
409 | - do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission ); |
|
409 | + do_action('getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission); |
|
410 | 410 | } |
411 | 411 | |
412 | 412 | /** |
@@ -420,8 +420,8 @@ discard block |
||
420 | 420 | * @param string $reason Refund reason. |
421 | 421 | * @return WP_Error|bool True or false based on success, or a WP_Error object. |
422 | 422 | */ |
423 | - public function process_refund( $invoice, $amount = null, $reason = '' ) { |
|
424 | - return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason ); |
|
423 | + public function process_refund($invoice, $amount = null, $reason = '') { |
|
424 | + return apply_filters('getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason); |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | /** |
@@ -430,8 +430,8 @@ discard block |
||
430 | 430 | * @param int $invoice_id 0 or invoice id. |
431 | 431 | * @param GetPaid_Payment_Form $form Current payment form. |
432 | 432 | */ |
433 | - public function payment_fields( $invoice_id, $form ) { |
|
434 | - do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form ); |
|
433 | + public function payment_fields($invoice_id, $form) { |
|
434 | + do_action('getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form); |
|
435 | 435 | } |
436 | 436 | |
437 | 437 | /** |
@@ -439,7 +439,7 @@ discard block |
||
439 | 439 | * |
440 | 440 | * @param array $admin_settings |
441 | 441 | */ |
442 | - public function admin_settings( $admin_settings ) { |
|
442 | + public function admin_settings($admin_settings) { |
|
443 | 443 | return $admin_settings; |
444 | 444 | } |
445 | 445 | |
@@ -448,8 +448,8 @@ discard block |
||
448 | 448 | * |
449 | 449 | * @param string $option |
450 | 450 | */ |
451 | - public function get_option( $option, $default = false ) { |
|
452 | - return wpinv_get_option( $this->id . '_' . $option, $default ); |
|
451 | + public function get_option($option, $default = false) { |
|
452 | + return wpinv_get_option($this->id . '_' . $option, $default); |
|
453 | 453 | } |
454 | 454 | |
455 | 455 | /** |
@@ -462,8 +462,8 @@ discard block |
||
462 | 462 | * @return bool True if the gateway supports the feature, false otherwise. |
463 | 463 | * @since 1.0.19 |
464 | 464 | */ |
465 | - public function supports( $feature ) { |
|
466 | - return apply_filters( 'getpaid_payment_gateway_supports', in_array( $feature, $this->supports ), $feature, $this ); |
|
465 | + public function supports($feature) { |
|
466 | + return apply_filters('getpaid_payment_gateway_supports', in_array($feature, $this->supports), $feature, $this); |
|
467 | 467 | } |
468 | 468 | |
469 | 469 | /** |
@@ -471,36 +471,36 @@ discard block |
||
471 | 471 | * |
472 | 472 | * @param bool $save whether or not to display the save button. |
473 | 473 | */ |
474 | - public function get_cc_form( $save = false ) { |
|
474 | + public function get_cc_form($save = false) { |
|
475 | 475 | |
476 | 476 | ob_start(); |
477 | 477 | |
478 | - $id_prefix = esc_attr( uniqid( $this->id ) ); |
|
478 | + $id_prefix = esc_attr(uniqid($this->id)); |
|
479 | 479 | |
480 | 480 | $months = array( |
481 | - '01' => __( 'January', 'invoicing' ), |
|
482 | - '02' => __( 'February', 'invoicing' ), |
|
483 | - '03' => __( 'March', 'invoicing' ), |
|
484 | - '04' => __( 'April', 'invoicing' ), |
|
485 | - '05' => __( 'May', 'invoicing' ), |
|
486 | - '06' => __( 'June', 'invoicing' ), |
|
487 | - '07' => __( 'July', 'invoicing' ), |
|
488 | - '08' => __( 'August', 'invoicing' ), |
|
489 | - '09' => __( 'September', 'invoicing' ), |
|
490 | - '10' => __( 'October', 'invoicing' ), |
|
491 | - '11' => __( 'November', 'invoicing' ), |
|
492 | - '12' => __( 'December', 'invoicing' ), |
|
481 | + '01' => __('January', 'invoicing'), |
|
482 | + '02' => __('February', 'invoicing'), |
|
483 | + '03' => __('March', 'invoicing'), |
|
484 | + '04' => __('April', 'invoicing'), |
|
485 | + '05' => __('May', 'invoicing'), |
|
486 | + '06' => __('June', 'invoicing'), |
|
487 | + '07' => __('July', 'invoicing'), |
|
488 | + '08' => __('August', 'invoicing'), |
|
489 | + '09' => __('September', 'invoicing'), |
|
490 | + '10' => __('October', 'invoicing'), |
|
491 | + '11' => __('November', 'invoicing'), |
|
492 | + '12' => __('December', 'invoicing'), |
|
493 | 493 | ); |
494 | 494 | |
495 | - $year = (int) date( 'Y', current_time( 'timestamp' ) ); |
|
495 | + $year = (int) date('Y', current_time('timestamp')); |
|
496 | 496 | $years = array(); |
497 | 497 | |
498 | - for ( $i = 0; $i <= 10; $i++ ) { |
|
499 | - $years[ $year + $i ] = $year + $i; |
|
498 | + for ($i = 0; $i <= 10; $i++) { |
|
499 | + $years[$year + $i] = $year + $i; |
|
500 | 500 | } |
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,14 +509,14 @@ discard block |
||
509 | 509 | <div class="col-12"> |
510 | 510 | |
511 | 511 | <div class="form-group"> |
512 | - <label for="<?php echo esc_attr( "$id_prefix-cc-number" ) ?>"><?php _e( 'Card number', 'invoicing' ); ?></label> |
|
512 | + <label for="<?php echo esc_attr("$id_prefix-cc-number") ?>"><?php _e('Card number', 'invoicing'); ?></label> |
|
513 | 513 | <div class="input-group input-group-sm"> |
514 | 514 | <div class="input-group-prepend "> |
515 | 515 | <span class="input-group-text"> |
516 | 516 | <i class="fa fa-credit-card"></i> |
517 | 517 | </span> |
518 | 518 | </div> |
519 | - <input type="text" name="<?php echo esc_attr( $this->id . '[cc_number]' ) ?>authorizenet[cc_number]" id="<?php echo esc_attr( "$id_prefix-cc-number" ) ?>" class="form-control form-control-sm" autocomplete="cc-number"> |
|
519 | + <input type="text" name="<?php echo esc_attr($this->id . '[cc_number]') ?>authorizenet[cc_number]" id="<?php echo esc_attr("$id_prefix-cc-number") ?>" class="form-control form-control-sm" autocomplete="cc-number"> |
|
520 | 520 | </div> |
521 | 521 | </div> |
522 | 522 | |
@@ -524,17 +524,17 @@ discard block |
||
524 | 524 | |
525 | 525 | <div class="col-12"> |
526 | 526 | <div class="form-group"> |
527 | - <label><?php _e( 'Expiration', 'invoicing' ); ?></label> |
|
527 | + <label><?php _e('Expiration', 'invoicing'); ?></label> |
|
528 | 528 | <div class="form-row"> |
529 | 529 | |
530 | 530 | <div class="col"> |
531 | - <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr( $this->id );?>[cc_expire_month]"> |
|
532 | - <option disabled selected="selected"><?php _e( 'MM', 'invoicing' ); ?></option> |
|
531 | + <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr($this->id); ?>[cc_expire_month]"> |
|
532 | + <option disabled selected="selected"><?php _e('MM', 'invoicing'); ?></option> |
|
533 | 533 | |
534 | 534 | <?php |
535 | - foreach ( $months as $key => $month ) { |
|
536 | - $key = esc_attr( $key ); |
|
537 | - $month = wpinv_clean( $month ); |
|
535 | + foreach ($months as $key => $month) { |
|
536 | + $key = esc_attr($key); |
|
537 | + $month = wpinv_clean($month); |
|
538 | 538 | echo "<option value='$key'>$month</option>" . PHP_EOL; |
539 | 539 | } |
540 | 540 | ?> |
@@ -543,13 +543,13 @@ discard block |
||
543 | 543 | </div> |
544 | 544 | |
545 | 545 | <div class="col"> |
546 | - <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr( $this->id );?>[cc_expire_year]"> |
|
547 | - <option disabled selected="selected"><?php _e( 'YY', 'invoicing' ); ?></option> |
|
546 | + <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr($this->id); ?>[cc_expire_year]"> |
|
547 | + <option disabled selected="selected"><?php _e('YY', 'invoicing'); ?></option> |
|
548 | 548 | |
549 | 549 | <?php |
550 | - foreach ( $years as $key => $year ) { |
|
551 | - $key = esc_attr( $key ); |
|
552 | - $year = wpinv_clean( $year ); |
|
550 | + foreach ($years as $key => $year) { |
|
551 | + $key = esc_attr($key); |
|
552 | + $year = wpinv_clean($year); |
|
553 | 553 | echo "<option value='$key'>$year</option>" . PHP_EOL; |
554 | 554 | } |
555 | 555 | ?> |
@@ -567,7 +567,7 @@ discard block |
||
567 | 567 | array( |
568 | 568 | 'name' => $this->id . '[cc_cvv2]', |
569 | 569 | 'id' => "$id_prefix-cc-cvv2", |
570 | - 'label' => __( 'CCV', 'invoicing' ), |
|
570 | + 'label' => __('CCV', 'invoicing'), |
|
571 | 571 | 'label_type' => 'vertical', |
572 | 572 | 'class' => 'form-control-sm', |
573 | 573 | 'extra_attributes' => array( |
@@ -582,7 +582,7 @@ discard block |
||
582 | 582 | |
583 | 583 | <?php |
584 | 584 | |
585 | - if ( $save ) { |
|
585 | + if ($save) { |
|
586 | 586 | echo $this->save_payment_method_checkbox(); |
587 | 587 | } |
588 | 588 | |
@@ -601,7 +601,7 @@ discard block |
||
601 | 601 | * |
602 | 602 | * @since 1.0.19 |
603 | 603 | */ |
604 | - public function new_payment_method_entry( $form ) { |
|
604 | + public function new_payment_method_entry($form) { |
|
605 | 605 | echo "<div class='getpaid-new-payment-method-form' style='display:none;'>$form</div>"; |
606 | 606 | } |
607 | 607 | |
@@ -611,16 +611,16 @@ discard block |
||
611 | 611 | * @since 1.0.19 |
612 | 612 | */ |
613 | 613 | public function saved_payment_methods() { |
614 | - $html = '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">'; |
|
614 | + $html = '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr(count($this->get_tokens($this->is_sandbox()))) . '">'; |
|
615 | 615 | |
616 | - foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) { |
|
617 | - $html .= $this->get_saved_payment_method_option_html( $token ); |
|
616 | + foreach ($this->get_tokens($this->is_sandbox()) as $token) { |
|
617 | + $html .= $this->get_saved_payment_method_option_html($token); |
|
618 | 618 | } |
619 | 619 | |
620 | 620 | $html .= $this->get_new_payment_method_option_html(); |
621 | 621 | $html .= '</ul>'; |
622 | 622 | |
623 | - echo apply_filters( 'getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this ); |
|
623 | + echo apply_filters('getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this); |
|
624 | 624 | } |
625 | 625 | |
626 | 626 | /** |
@@ -630,7 +630,7 @@ discard block |
||
630 | 630 | * @param array $token Payment Token. |
631 | 631 | * @return string Generated payment method HTML |
632 | 632 | */ |
633 | - public function get_saved_payment_method_option_html( $token ) { |
|
633 | + public function get_saved_payment_method_option_html($token) { |
|
634 | 634 | |
635 | 635 | return sprintf( |
636 | 636 | '<li class="getpaid-payment-method form-group"> |
@@ -639,10 +639,10 @@ discard block |
||
639 | 639 | <span>%3$s</span> |
640 | 640 | </label> |
641 | 641 | </li>', |
642 | - esc_attr( $this->id ), |
|
643 | - esc_attr( $token['id'] ), |
|
644 | - esc_html( $token['name'] ), |
|
645 | - checked( empty( $token['default'] ), false, false ) |
|
642 | + esc_attr($this->id), |
|
643 | + esc_attr($token['id']), |
|
644 | + esc_html($token['name']), |
|
645 | + checked(empty($token['default']), false, false) |
|
646 | 646 | ); |
647 | 647 | |
648 | 648 | } |
@@ -654,7 +654,7 @@ discard block |
||
654 | 654 | */ |
655 | 655 | public function get_new_payment_method_option_html() { |
656 | 656 | |
657 | - $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this ); |
|
657 | + $label = apply_filters('getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __('Use a new payment method', 'invoicing'), $this); |
|
658 | 658 | |
659 | 659 | return sprintf( |
660 | 660 | '<li class="getpaid-new-payment-method"> |
@@ -663,8 +663,8 @@ discard block |
||
663 | 663 | <span>%2$s</span> |
664 | 664 | </label> |
665 | 665 | </li>', |
666 | - esc_attr( $this->id ), |
|
667 | - esc_html( $label ) |
|
666 | + esc_attr($this->id), |
|
667 | + esc_html($label) |
|
668 | 668 | ); |
669 | 669 | |
670 | 670 | } |
@@ -679,10 +679,10 @@ discard block |
||
679 | 679 | return aui()->input( |
680 | 680 | array( |
681 | 681 | 'type' => 'checkbox', |
682 | - 'name' => esc_attr( "getpaid-$this->id-new-payment-method" ), |
|
683 | - 'id' => esc_attr( uniqid( $this->id ) ), |
|
682 | + 'name' => esc_attr("getpaid-$this->id-new-payment-method"), |
|
683 | + 'id' => esc_attr(uniqid($this->id)), |
|
684 | 684 | 'required' => false, |
685 | - 'label' => esc_html__( 'Save payment method', 'invoicing' ), |
|
685 | + 'label' => esc_html__('Save payment method', 'invoicing'), |
|
686 | 686 | 'value' => 'true', |
687 | 687 | 'checked' => true, |
688 | 688 | 'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1', |
@@ -696,9 +696,9 @@ discard block |
||
696 | 696 | * |
697 | 697 | * @return array |
698 | 698 | */ |
699 | - public function register_gateway( $gateways ) { |
|
699 | + public function register_gateway($gateways) { |
|
700 | 700 | |
701 | - $gateways[ $this->id ] = array( |
|
701 | + $gateways[$this->id] = array( |
|
702 | 702 | |
703 | 703 | 'admin_label' => $this->method_title, |
704 | 704 | 'checkout_label' => $this->title, |
@@ -716,13 +716,13 @@ discard block |
||
716 | 716 | * @param WPInv_Invoice|null $invoice Invoice object or null. |
717 | 717 | * @return bool |
718 | 718 | */ |
719 | - public function is_sandbox( $invoice = null ) { |
|
719 | + public function is_sandbox($invoice = null) { |
|
720 | 720 | |
721 | - if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) { |
|
721 | + if (!empty($invoice) && !$invoice->needs_payment()) { |
|
722 | 722 | return $invoice->get_mode() == 'test'; |
723 | 723 | } |
724 | 724 | |
725 | - return wpinv_is_test_mode( $this->id ); |
|
725 | + return wpinv_is_test_mode($this->id); |
|
726 | 726 | |
727 | 727 | } |
728 | 728 | |
@@ -740,15 +740,15 @@ discard block |
||
740 | 740 | * |
741 | 741 | * @return bool |
742 | 742 | */ |
743 | - public function validate_currency( $validation, $currency ) { |
|
743 | + public function validate_currency($validation, $currency) { |
|
744 | 744 | |
745 | 745 | // Required currencies. |
746 | - if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) { |
|
746 | + if (!empty($this->currencies) && !in_array($currency, $this->currencies)) { |
|
747 | 747 | return false; |
748 | 748 | } |
749 | 749 | |
750 | 750 | // Excluded currencies. |
751 | - if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) { |
|
751 | + if (!empty($this->exclude_currencies) && in_array($currency, $this->exclude_currencies)) { |
|
752 | 752 | return false; |
753 | 753 | } |
754 | 754 | |
@@ -759,13 +759,13 @@ discard block |
||
759 | 759 | * Displays an error |
760 | 760 | * |
761 | 761 | */ |
762 | - public function show_error( $code, $message, $type ) { |
|
762 | + public function show_error($code, $message, $type) { |
|
763 | 763 | |
764 | - if ( is_admin() ) { |
|
765 | - getpaid_admin()->{"show_$type"}( $message ); |
|
764 | + if (is_admin()) { |
|
765 | + getpaid_admin()->{"show_$type"}($message); |
|
766 | 766 | } |
767 | 767 | |
768 | - wpinv_set_error( $code, $message, $type ); |
|
768 | + wpinv_set_error($code, $message, $type); |
|
769 | 769 | |
770 | 770 | } |
771 | 771 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -87,9 +87,9 @@ discard block |
||
87 | 87 | * @param string $context View or edit context. |
88 | 88 | * @return string |
89 | 89 | */ |
90 | - public function get_name( $context = 'view' ) { |
|
91 | - $name = parent::get_name( $context ); |
|
92 | - return $name . wpinv_get_item_suffix( $this ); |
|
90 | + public function get_name($context = 'view') { |
|
91 | + $name = parent::get_name($context); |
|
92 | + return $name . wpinv_get_item_suffix($this); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -99,8 +99,8 @@ discard block |
||
99 | 99 | * @param string $context View or edit context. |
100 | 100 | * @return string |
101 | 101 | */ |
102 | - public function get_raw_name( $context = 'view' ) { |
|
103 | - return parent::get_name( $context ); |
|
102 | + public function get_raw_name($context = 'view') { |
|
103 | + return parent::get_name($context); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | /** |
@@ -110,13 +110,13 @@ discard block |
||
110 | 110 | * @param string $context View or edit context. |
111 | 111 | * @return string |
112 | 112 | */ |
113 | - public function get_description( $context = 'view' ) { |
|
113 | + public function get_description($context = 'view') { |
|
114 | 114 | |
115 | - if ( isset( $this->custom_description ) ) { |
|
115 | + if (isset($this->custom_description)) { |
|
116 | 116 | return $this->custom_description; |
117 | 117 | } |
118 | 118 | |
119 | - return parent::get_description( $context ); |
|
119 | + return parent::get_description($context); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | * @param string $context View or edit context. |
127 | 127 | * @return float |
128 | 128 | */ |
129 | - public function get_sub_total( $context = 'view' ) { |
|
130 | - return $this->get_quantity( $context ) * $this->get_initial_price( $context ); |
|
129 | + public function get_sub_total($context = 'view') { |
|
130 | + return $this->get_quantity($context) * $this->get_initial_price($context); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | * @param string $context View or edit context. |
138 | 138 | * @return float |
139 | 139 | */ |
140 | - public function get_recurring_sub_total( $context = 'view' ) { |
|
140 | + public function get_recurring_sub_total($context = 'view') { |
|
141 | 141 | |
142 | - if ( $this->is_recurring() ) { |
|
143 | - return $this->get_quantity( $context ) * $this->get_price( $context ); |
|
142 | + if ($this->is_recurring()) { |
|
143 | + return $this->get_quantity($context) * $this->get_price($context); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | return 0; |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | /** |
150 | 150 | * @deprecated |
151 | 151 | */ |
152 | - public function get_qantity( $context = 'view' ) { |
|
153 | - return $this->get_quantity( $context ); |
|
152 | + public function get_qantity($context = 'view') { |
|
153 | + return $this->get_quantity($context); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
@@ -160,15 +160,15 @@ discard block |
||
160 | 160 | * @param string $context View or edit context. |
161 | 161 | * @return float |
162 | 162 | */ |
163 | - public function get_quantity( $context = 'view' ) { |
|
163 | + public function get_quantity($context = 'view') { |
|
164 | 164 | $quantity = (float) $this->quantity; |
165 | 165 | |
166 | - if ( empty( $quantity ) || 1 > $quantity ) { |
|
166 | + if (empty($quantity) || 1 > $quantity) { |
|
167 | 167 | $quantity = 1; |
168 | 168 | } |
169 | 169 | |
170 | - if ( 'view' == $context ) { |
|
171 | - return apply_filters( 'getpaid_payment_form_item_quantity', $quantity, $this ); |
|
170 | + if ('view' == $context) { |
|
171 | + return apply_filters('getpaid_payment_form_item_quantity', $quantity, $this); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | return $quantity; |
@@ -182,11 +182,11 @@ discard block |
||
182 | 182 | * @param string $context View or edit context. |
183 | 183 | * @return meta |
184 | 184 | */ |
185 | - public function get_item_meta( $context = 'view' ) { |
|
185 | + public function get_item_meta($context = 'view') { |
|
186 | 186 | $meta = $this->meta; |
187 | 187 | |
188 | - if ( 'view' == $context ) { |
|
189 | - return apply_filters( 'getpaid_payment_form_item_meta', $meta, $this ); |
|
188 | + if ('view' == $context) { |
|
189 | + return apply_filters('getpaid_payment_form_item_meta', $meta, $this); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | return $meta; |
@@ -200,11 +200,11 @@ discard block |
||
200 | 200 | * @param string $context View or edit context. |
201 | 201 | * @return bool |
202 | 202 | */ |
203 | - public function get_allow_quantities( $context = 'view' ) { |
|
203 | + public function get_allow_quantities($context = 'view') { |
|
204 | 204 | $allow_quantities = (bool) $this->allow_quantities; |
205 | 205 | |
206 | - if ( 'view' == $context ) { |
|
207 | - return apply_filters( 'getpaid_payment_form_item_allow_quantities', $allow_quantities, $this ); |
|
206 | + if ('view' == $context) { |
|
207 | + return apply_filters('getpaid_payment_form_item_allow_quantities', $allow_quantities, $this); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | return $allow_quantities; |
@@ -218,11 +218,11 @@ discard block |
||
218 | 218 | * @param string $context View or edit context. |
219 | 219 | * @return bool |
220 | 220 | */ |
221 | - public function get_is_required( $context = 'view' ) { |
|
221 | + public function get_is_required($context = 'view') { |
|
222 | 222 | $is_required = (bool) $this->is_required; |
223 | 223 | |
224 | - if ( 'view' == $context ) { |
|
225 | - return apply_filters( 'getpaid_payment_form_item_is_required', $is_required, $this ); |
|
224 | + if ('view' == $context) { |
|
225 | + return apply_filters('getpaid_payment_form_item_is_required', $is_required, $this); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | return $is_required; |
@@ -235,11 +235,11 @@ discard block |
||
235 | 235 | * @since 1.0.19 |
236 | 236 | * @return array |
237 | 237 | */ |
238 | - public function prepare_data_for_use( $required = null ) { |
|
238 | + public function prepare_data_for_use($required = null) { |
|
239 | 239 | |
240 | - $required = is_null( $required ) ? $this->is_required() : $required; |
|
240 | + $required = is_null($required) ? $this->is_required() : $required; |
|
241 | 241 | return array( |
242 | - 'title' => strip_tags( $this->get_name() ), |
|
242 | + 'title' => strip_tags($this->get_name()), |
|
243 | 243 | 'id' => $this->get_id(), |
244 | 244 | 'price' => $this->get_price(), |
245 | 245 | 'recurring' => $this->is_recurring(), |
@@ -256,30 +256,30 @@ discard block |
||
256 | 256 | * @since 1.0.19 |
257 | 257 | * @return array |
258 | 258 | */ |
259 | - public function prepare_data_for_invoice_edit_ajax( $currency = '', $is_renewal = false ) { |
|
259 | + public function prepare_data_for_invoice_edit_ajax($currency = '', $is_renewal = false) { |
|
260 | 260 | |
261 | - $description = getpaid_item_recurring_price_help_text( $this, $currency ); |
|
261 | + $description = getpaid_item_recurring_price_help_text($this, $currency); |
|
262 | 262 | |
263 | - if ( $description ) { |
|
263 | + if ($description) { |
|
264 | 264 | $description = "<div class='getpaid-subscription-help-text'>$description</div>"; |
265 | 265 | } |
266 | 266 | |
267 | - $price = ! $is_renewal ? $this->get_price() : $this->get_recurring_price(); |
|
268 | - $subtotal = ! $is_renewal ? $this->get_sub_total() : $this->get_recurring_sub_total(); |
|
267 | + $price = !$is_renewal ? $this->get_price() : $this->get_recurring_price(); |
|
268 | + $subtotal = !$is_renewal ? $this->get_sub_total() : $this->get_recurring_sub_total(); |
|
269 | 269 | return array( |
270 | 270 | 'id' => $this->get_id(), |
271 | 271 | 'texts' => array( |
272 | - 'item-name' => sanitize_text_field( $this->get_name() ), |
|
273 | - 'item-description' => wp_kses_post( $this->get_description() ) . $description, |
|
274 | - 'item-quantity' => floatval( $this->get_quantity() ), |
|
275 | - 'item-price' => wpinv_price( $price, $currency ), |
|
276 | - 'item-total' => wpinv_price( $subtotal, $currency ), |
|
272 | + 'item-name' => sanitize_text_field($this->get_name()), |
|
273 | + 'item-description' => wp_kses_post($this->get_description()) . $description, |
|
274 | + 'item-quantity' => floatval($this->get_quantity()), |
|
275 | + 'item-price' => wpinv_price($price, $currency), |
|
276 | + 'item-total' => wpinv_price($subtotal, $currency), |
|
277 | 277 | ), |
278 | 278 | 'inputs' => array( |
279 | 279 | 'item-id' => $this->get_id(), |
280 | - 'item-name' => sanitize_text_field( $this->get_name() ), |
|
281 | - 'item-description' => wp_kses_post( $this->get_description() ), |
|
282 | - 'item-quantity' => floatval( $this->get_quantity() ), |
|
280 | + 'item-name' => sanitize_text_field($this->get_name()), |
|
281 | + 'item-description' => wp_kses_post($this->get_description()), |
|
282 | + 'item-quantity' => floatval($this->get_quantity()), |
|
283 | 283 | 'item-price' => $price, |
284 | 284 | ) |
285 | 285 | ); |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | return array( |
298 | 298 | 'post_id' => $this->invoice_id, |
299 | 299 | 'item_id' => $this->get_id(), |
300 | - 'item_name' => sanitize_text_field( $this->get_raw_name() ), |
|
300 | + 'item_name' => sanitize_text_field($this->get_raw_name()), |
|
301 | 301 | 'item_description' => $this->get_description(), |
302 | 302 | 'tax' => $this->item_tax, |
303 | 303 | 'item_price' => $this->get_price(), |
@@ -326,9 +326,9 @@ discard block |
||
326 | 326 | * @since 1.0.19 |
327 | 327 | * @param float $quantity The item quantity. |
328 | 328 | */ |
329 | - public function set_quantity( $quantity ) { |
|
329 | + public function set_quantity($quantity) { |
|
330 | 330 | |
331 | - if ( empty( $quantity ) || ! is_numeric( $quantity ) ) { |
|
331 | + if (empty($quantity) || !is_numeric($quantity)) { |
|
332 | 332 | $quantity = 1; |
333 | 333 | } |
334 | 334 | |
@@ -342,8 +342,8 @@ discard block |
||
342 | 342 | * @since 1.0.19 |
343 | 343 | * @param array $meta The item meta data. |
344 | 344 | */ |
345 | - public function set_item_meta( $meta ) { |
|
346 | - $this->meta = maybe_unserialize( $meta ); |
|
345 | + public function set_item_meta($meta) { |
|
346 | + $this->meta = maybe_unserialize($meta); |
|
347 | 347 | } |
348 | 348 | |
349 | 349 | /** |
@@ -352,7 +352,7 @@ discard block |
||
352 | 352 | * @since 1.0.19 |
353 | 353 | * @param bool $allow_quantities |
354 | 354 | */ |
355 | - public function set_allow_quantities( $allow_quantities ) { |
|
355 | + public function set_allow_quantities($allow_quantities) { |
|
356 | 356 | $this->allow_quantities = (bool) $allow_quantities; |
357 | 357 | } |
358 | 358 | |
@@ -362,7 +362,7 @@ discard block |
||
362 | 362 | * @since 1.0.19 |
363 | 363 | * @param bool $is_required |
364 | 364 | */ |
365 | - public function set_is_required( $is_required ) { |
|
365 | + public function set_is_required($is_required) { |
|
366 | 366 | $this->is_required = (bool) $is_required; |
367 | 367 | } |
368 | 368 | |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | * @since 1.0.19 |
373 | 373 | * @param string $description |
374 | 374 | */ |
375 | - public function set_custom_description( $description ) { |
|
375 | + public function set_custom_description($description) { |
|
376 | 376 | $this->custom_description = $description; |
377 | 377 | } |
378 | 378 | |
@@ -381,7 +381,7 @@ discard block |
||
381 | 381 | * |
382 | 382 | * @return int item id |
383 | 383 | */ |
384 | - public function save( $data = array() ) { |
|
384 | + public function save($data = array()) { |
|
385 | 385 | return $this->get_id(); |
386 | 386 | } |
387 | 387 |
@@ -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 | * Main Checkout Class. |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @param GetPaid_Payment_Form_Submission $submission |
24 | 24 | */ |
25 | - public function __construct( $submission ) { |
|
25 | + public function __construct($submission) { |
|
26 | 26 | $this->payment_form_submission = $submission; |
27 | 27 | } |
28 | 28 | |
@@ -38,22 +38,22 @@ discard block |
||
38 | 38 | // Prepare the invoice. |
39 | 39 | $items = $this->get_submission_items(); |
40 | 40 | $invoice = $this->get_submission_invoice(); |
41 | - $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
41 | + $invoice = $this->process_submission_invoice($invoice, $items); |
|
42 | 42 | $prepared = $this->prepare_submission_data_for_saving(); |
43 | 43 | |
44 | - $this->prepare_billing_info( $invoice ); |
|
44 | + $this->prepare_billing_info($invoice); |
|
45 | 45 | |
46 | - $shipping = $this->prepare_shipping_info( $invoice ); |
|
46 | + $shipping = $this->prepare_shipping_info($invoice); |
|
47 | 47 | |
48 | 48 | // Save the invoice. |
49 | - $invoice->set_is_viewed( true ); |
|
49 | + $invoice->set_is_viewed(true); |
|
50 | 50 | $invoice->recalculate_total(); |
51 | 51 | $invoice->save(); |
52 | 52 | |
53 | - do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
53 | + do_action('getpaid_checkout_invoice_updated', $invoice); |
|
54 | 54 | |
55 | 55 | // Send to the gateway. |
56 | - $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
56 | + $this->post_process_submission($invoice, $prepared, $shipping); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -66,34 +66,34 @@ discard block |
||
66 | 66 | $data = $submission->get_data(); |
67 | 67 | |
68 | 68 | // Do we have an error? |
69 | - if ( ! empty( $submission->last_error ) ) { |
|
70 | - wp_send_json_error( $submission->last_error ); |
|
69 | + if (!empty($submission->last_error)) { |
|
70 | + wp_send_json_error($submission->last_error); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | // We need a billing email. |
74 | - if ( ! $submission->has_billing_email() ) { |
|
75 | - wp_send_json_error( __( 'Provide a valid billing email.', 'invoicing' ) ); |
|
74 | + if (!$submission->has_billing_email()) { |
|
75 | + wp_send_json_error(__('Provide a valid billing email.', 'invoicing')); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | // Non-recurring gateways should not be allowed to process recurring invoices. |
79 | - if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
80 | - wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
79 | + if ($submission->should_collect_payment_details() && $submission->has_recurring && !wpinv_gateway_support_subscription($data['wpi-gateway'])) { |
|
80 | + wp_send_json_error(__('The selected payment gateway does not support subscription payments.', 'invoicing')); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | // Ensure the gateway is active. |
84 | - if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
85 | - wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
84 | + if ($submission->should_collect_payment_details() && !wpinv_is_gateway_active($data['wpi-gateway'])) { |
|
85 | + wpinv_set_error('invalid_gateway', __('The selected payment gateway is not active', 'invoicing')); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | // Clear any existing errors. |
89 | 89 | wpinv_clear_errors(); |
90 | 90 | |
91 | 91 | // Allow themes and plugins to hook to errors |
92 | - do_action( 'getpaid_checkout_error_checks', $submission ); |
|
92 | + do_action('getpaid_checkout_error_checks', $submission); |
|
93 | 93 | |
94 | 94 | // Do we have any errors? |
95 | - if ( wpinv_get_errors() ) { |
|
96 | - wp_send_json_error( getpaid_get_errors_html() ); |
|
95 | + if (wpinv_get_errors()) { |
|
96 | + wp_send_json_error(getpaid_get_errors_html()); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | } |
@@ -108,8 +108,8 @@ discard block |
||
108 | 108 | $items = $this->payment_form_submission->get_items(); |
109 | 109 | |
110 | 110 | // Ensure that we have items. |
111 | - if ( empty( $items ) && ! $this->payment_form_submission->has_fees() ) { |
|
112 | - wp_send_json_error( __( 'Please provide at least one item or amount.', 'invoicing' ) ); |
|
111 | + if (empty($items) && !$this->payment_form_submission->has_fees()) { |
|
112 | + wp_send_json_error(__('Please provide at least one item or amount.', 'invoicing')); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | return $items; |
@@ -123,17 +123,17 @@ discard block |
||
123 | 123 | protected function get_submission_invoice() { |
124 | 124 | $submission = $this->payment_form_submission; |
125 | 125 | |
126 | - if ( ! $submission->has_invoice() ) { |
|
126 | + if (!$submission->has_invoice()) { |
|
127 | 127 | $invoice = new WPInv_Invoice(); |
128 | - $invoice->created_via( 'payment_form' ); |
|
128 | + $invoice->created_via('payment_form'); |
|
129 | 129 | return $invoice; |
130 | 130 | } |
131 | 131 | |
132 | 132 | $invoice = $submission->get_invoice(); |
133 | 133 | |
134 | 134 | // Make sure that it is neither paid or refunded. |
135 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
136 | - wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
135 | + if ($invoice->is_paid() || $invoice->is_refunded()) { |
|
136 | + wp_send_json_error(__('This invoice has already been paid for.', 'invoicing')); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | return $invoice; |
@@ -146,29 +146,29 @@ discard block |
||
146 | 146 | * @param GetPaid_Form_Item[] $items |
147 | 147 | * @return WPInv_Invoice |
148 | 148 | */ |
149 | - protected function process_submission_invoice( $invoice, $items ) { |
|
149 | + protected function process_submission_invoice($invoice, $items) { |
|
150 | 150 | |
151 | 151 | $submission = $this->payment_form_submission; |
152 | 152 | $data = $submission->get_data(); |
153 | 153 | |
154 | 154 | // Set-up the invoice details. |
155 | - $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
156 | - $invoice->set_user_id( $this->get_submission_customer() ); |
|
157 | - $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
158 | - $invoice->set_items( $items ); |
|
159 | - $invoice->set_fees( $submission->get_fees() ); |
|
160 | - $invoice->set_taxes( $submission->get_taxes() ); |
|
161 | - $invoice->set_discounts( $submission->get_discounts() ); |
|
162 | - $invoice->set_gateway( $data['wpi-gateway'] ); |
|
163 | - |
|
164 | - $address_confirmed = $submission->get_field( 'confirm-address' ); |
|
165 | - $invoice->set_address_confirmed( ! empty( $address_confirmed ) ); |
|
166 | - |
|
167 | - if ( $submission->has_discount_code() ) { |
|
168 | - $invoice->set_discount_code( $submission->get_discount_code() ); |
|
155 | + $invoice->set_email(sanitize_email($submission->get_billing_email())); |
|
156 | + $invoice->set_user_id($this->get_submission_customer()); |
|
157 | + $invoice->set_payment_form(absint($submission->get_payment_form()->get_id())); |
|
158 | + $invoice->set_items($items); |
|
159 | + $invoice->set_fees($submission->get_fees()); |
|
160 | + $invoice->set_taxes($submission->get_taxes()); |
|
161 | + $invoice->set_discounts($submission->get_discounts()); |
|
162 | + $invoice->set_gateway($data['wpi-gateway']); |
|
163 | + |
|
164 | + $address_confirmed = $submission->get_field('confirm-address'); |
|
165 | + $invoice->set_address_confirmed(!empty($address_confirmed)); |
|
166 | + |
|
167 | + if ($submission->has_discount_code()) { |
|
168 | + $invoice->set_discount_code($submission->get_discount_code()); |
|
169 | 169 | } |
170 | 170 | |
171 | - getpaid_maybe_add_default_address( $invoice ); |
|
171 | + getpaid_maybe_add_default_address($invoice); |
|
172 | 172 | return $invoice; |
173 | 173 | } |
174 | 174 | |
@@ -181,26 +181,26 @@ discard block |
||
181 | 181 | $submission = $this->payment_form_submission; |
182 | 182 | |
183 | 183 | // If this is an existing invoice... |
184 | - if ( $submission->has_invoice() ) { |
|
184 | + if ($submission->has_invoice()) { |
|
185 | 185 | return $submission->get_invoice()->get_user_id(); |
186 | 186 | } |
187 | 187 | |
188 | 188 | // (Maybe) create the user. |
189 | 189 | $user = get_current_user_id(); |
190 | 190 | |
191 | - if ( empty( $user ) ) { |
|
192 | - $user = get_user_by( 'email', $submission->get_billing_email() ); |
|
191 | + if (empty($user)) { |
|
192 | + $user = get_user_by('email', $submission->get_billing_email()); |
|
193 | 193 | } |
194 | 194 | |
195 | - if ( empty( $user ) ) { |
|
196 | - $user = wpinv_create_user( $submission->get_billing_email() ); |
|
195 | + if (empty($user)) { |
|
196 | + $user = wpinv_create_user($submission->get_billing_email()); |
|
197 | 197 | } |
198 | 198 | |
199 | - if ( is_wp_error( $user ) ) { |
|
200 | - wp_send_json_error( $user->get_error_message() ); |
|
199 | + if (is_wp_error($user)) { |
|
200 | + wp_send_json_error($user->get_error_message()); |
|
201 | 201 | } |
202 | 202 | |
203 | - if ( is_numeric( $user ) ) { |
|
203 | + if (is_numeric($user)) { |
|
204 | 204 | return $user; |
205 | 205 | } |
206 | 206 | |
@@ -221,30 +221,30 @@ discard block |
||
221 | 221 | $prepared = array(); |
222 | 222 | |
223 | 223 | // Raw submission details. |
224 | - $data = $submission->get_data(); |
|
224 | + $data = $submission->get_data(); |
|
225 | 225 | |
226 | 226 | // Loop through the submitted details. |
227 | - foreach ( $submission->get_payment_form()->get_elements() as $field ) { |
|
227 | + foreach ($submission->get_payment_form()->get_elements() as $field) { |
|
228 | 228 | |
229 | 229 | // Skip premade fields. |
230 | - if ( ! empty( $field['premade'] ) || $field['type'] == 'address' ) { |
|
230 | + if (!empty($field['premade']) || $field['type'] == 'address') { |
|
231 | 231 | continue; |
232 | 232 | } |
233 | 233 | |
234 | 234 | // If it is required and not set, abort. |
235 | - if ( ! $submission->is_required_field_set( $field ) ) { |
|
236 | - wp_send_json_error( __( 'Please fill all required fields.', 'invoicing' ) ); |
|
235 | + if (!$submission->is_required_field_set($field)) { |
|
236 | + wp_send_json_error(__('Please fill all required fields.', 'invoicing')); |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | // Handle misc fields. |
240 | - if ( isset( $data[ $field['id'] ] ) ) { |
|
240 | + if (isset($data[$field['id']])) { |
|
241 | 241 | $label = $field['id']; |
242 | 242 | |
243 | - if ( isset( $field['label'] ) ) { |
|
243 | + if (isset($field['label'])) { |
|
244 | 244 | $label = $field['label']; |
245 | 245 | } |
246 | 246 | |
247 | - $prepared[ wpinv_clean( $label ) ] = wp_kses_post( $data[ $field['id'] ] ); |
|
247 | + $prepared[wpinv_clean($label)] = wp_kses_post($data[$field['id']]); |
|
248 | 248 | |
249 | 249 | } |
250 | 250 | |
@@ -261,30 +261,30 @@ discard block |
||
261 | 261 | * @param WPInv_Invoice $invoice |
262 | 262 | * @param string $type |
263 | 263 | */ |
264 | - public function prepare_address_details( $invoice, $type = 'billing' ) { |
|
264 | + public function prepare_address_details($invoice, $type = 'billing') { |
|
265 | 265 | |
266 | 266 | $data = $this->payment_form_submission->get_data(); |
267 | - $type = sanitize_key( $type ); |
|
267 | + $type = sanitize_key($type); |
|
268 | 268 | $address = array(); |
269 | 269 | $prepared = array(); |
270 | 270 | |
271 | - if ( ! empty( $data[ $type ] ) ) { |
|
272 | - $address = $data[ $type ]; |
|
271 | + if (!empty($data[$type])) { |
|
272 | + $address = $data[$type]; |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | // Clean address details. |
276 | - foreach ( $address as $key => $value ) { |
|
277 | - $key = sanitize_key( $key ); |
|
278 | - $key = str_replace( 'wpinv_', '', $key ); |
|
279 | - $value = wpinv_clean( $value ); |
|
280 | - $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
276 | + foreach ($address as $key => $value) { |
|
277 | + $key = sanitize_key($key); |
|
278 | + $key = str_replace('wpinv_', '', $key); |
|
279 | + $value = wpinv_clean($value); |
|
280 | + $prepared[$key] = apply_filters("getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice); |
|
281 | 281 | } |
282 | 282 | |
283 | 283 | // Filter address details. |
284 | - $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
284 | + $prepared = apply_filters("getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice); |
|
285 | 285 | |
286 | 286 | // Remove non-whitelisted values. |
287 | - return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
287 | + return array_filter($prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY); |
|
288 | 288 | |
289 | 289 | } |
290 | 290 | |
@@ -294,12 +294,12 @@ discard block |
||
294 | 294 | * @return array |
295 | 295 | * @param WPInv_Invoice $invoice |
296 | 296 | */ |
297 | - protected function prepare_billing_info( &$invoice ) { |
|
297 | + protected function prepare_billing_info(&$invoice) { |
|
298 | 298 | |
299 | - $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
299 | + $billing_address = $this->prepare_address_details($invoice, 'billing'); |
|
300 | 300 | |
301 | 301 | // Update the invoice with the billing details. |
302 | - $invoice->set_props( $billing_address ); |
|
302 | + $invoice->set_props($billing_address); |
|
303 | 303 | |
304 | 304 | } |
305 | 305 | |
@@ -309,15 +309,15 @@ discard block |
||
309 | 309 | * @return array |
310 | 310 | * @param WPInv_Invoice $invoice |
311 | 311 | */ |
312 | - protected function prepare_shipping_info( $invoice ) { |
|
312 | + protected function prepare_shipping_info($invoice) { |
|
313 | 313 | |
314 | 314 | $data = $this->payment_form_submission->get_data(); |
315 | 315 | |
316 | - if ( empty( $data['same-shipping-address'] ) ) { |
|
317 | - return $this->prepare_address_details( $invoice, 'shipping' ); |
|
316 | + if (empty($data['same-shipping-address'])) { |
|
317 | + return $this->prepare_address_details($invoice, 'shipping'); |
|
318 | 318 | } |
319 | 319 | |
320 | - return $this->prepare_address_details( $invoice, 'billing' ); |
|
320 | + return $this->prepare_address_details($invoice, 'billing'); |
|
321 | 321 | |
322 | 322 | } |
323 | 323 | |
@@ -328,31 +328,31 @@ discard block |
||
328 | 328 | * @param array $prepared_payment_form_data |
329 | 329 | * @param array $shipping |
330 | 330 | */ |
331 | - protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
331 | + protected function post_process_submission($invoice, $prepared_payment_form_data, $shipping) { |
|
332 | 332 | |
333 | 333 | // Ensure the invoice exists. |
334 | - if ( ! $invoice->exists() ) { |
|
335 | - wp_send_json_error( __( 'An error occured while saving your invoice. Please try again.', 'invoicing' ) ); |
|
334 | + if (!$invoice->exists()) { |
|
335 | + wp_send_json_error(__('An error occured while saving your invoice. Please try again.', 'invoicing')); |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | // Save payment form data. |
339 | - $prepared_payment_form_data = apply_filters( 'getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice ); |
|
340 | - if ( ! empty( $prepared_payment_form_data ) ) { |
|
341 | - update_post_meta( $invoice->get_id(), 'payment_form_data', $prepared_payment_form_data ); |
|
339 | + $prepared_payment_form_data = apply_filters('getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice); |
|
340 | + if (!empty($prepared_payment_form_data)) { |
|
341 | + update_post_meta($invoice->get_id(), 'payment_form_data', $prepared_payment_form_data); |
|
342 | 342 | } |
343 | 343 | |
344 | 344 | // Save payment form data. |
345 | - if ( ! empty( $shipping ) ) { |
|
346 | - update_post_meta( $invoice->get_id(), 'shipping_address', $shipping ); |
|
345 | + if (!empty($shipping)) { |
|
346 | + update_post_meta($invoice->get_id(), 'shipping_address', $shipping); |
|
347 | 347 | } |
348 | 348 | |
349 | 349 | // Backwards compatibility. |
350 | - add_filter( 'wp_redirect', array( $this, 'send_redirect_response' ) ); |
|
350 | + add_filter('wp_redirect', array($this, 'send_redirect_response')); |
|
351 | 351 | |
352 | - $this->process_payment( $invoice ); |
|
352 | + $this->process_payment($invoice); |
|
353 | 353 | |
354 | 354 | // If we are here, there was an error. |
355 | - wpinv_send_back_to_checkout( $invoice ); |
|
355 | + wpinv_send_back_to_checkout($invoice); |
|
356 | 356 | |
357 | 357 | } |
358 | 358 | |
@@ -361,41 +361,41 @@ discard block |
||
361 | 361 | * |
362 | 362 | * @param WPInv_Invoice $invoice |
363 | 363 | */ |
364 | - protected function process_payment( $invoice ) { |
|
364 | + protected function process_payment($invoice) { |
|
365 | 365 | |
366 | 366 | // Clear any checkout errors. |
367 | 367 | wpinv_clear_errors(); |
368 | 368 | |
369 | 369 | // No need to send free invoices to the gateway. |
370 | - if ( $invoice->is_free() ) { |
|
371 | - $this->process_free_payment( $invoice ); |
|
370 | + if ($invoice->is_free()) { |
|
371 | + $this->process_free_payment($invoice); |
|
372 | 372 | } |
373 | 373 | |
374 | 374 | $submission = $this->payment_form_submission; |
375 | 375 | |
376 | 376 | // Fires before sending to the gateway. |
377 | - do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
377 | + do_action('getpaid_checkout_before_gateway', $invoice, $submission); |
|
378 | 378 | |
379 | 379 | // Allow the sumission data to be modified before it is sent to the gateway. |
380 | 380 | $submission_data = $submission->get_data(); |
381 | - $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
382 | - $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
381 | + $submission_gateway = apply_filters('getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice); |
|
382 | + $submission_data = apply_filters('getpaid_gateway_submission_data', $submission_data, $submission, $invoice); |
|
383 | 383 | |
384 | 384 | // Validate the currency. |
385 | - if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
386 | - wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
385 | + if (!apply_filters("getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency())) { |
|
386 | + wpinv_set_error('invalid_currency', __('The chosen payment gateway does not support this currency', 'invoicing')); |
|
387 | 387 | } |
388 | 388 | |
389 | 389 | // Check to see if we have any errors. |
390 | - if ( wpinv_get_errors() ) { |
|
391 | - wpinv_send_back_to_checkout( $invoice ); |
|
390 | + if (wpinv_get_errors()) { |
|
391 | + wpinv_send_back_to_checkout($invoice); |
|
392 | 392 | } |
393 | 393 | |
394 | 394 | // Send info to the gateway for payment processing |
395 | - do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
395 | + do_action("getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission); |
|
396 | 396 | |
397 | 397 | // Backwards compatibility. |
398 | - wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
398 | + wpinv_send_to_gateway($submission_gateway, $invoice); |
|
399 | 399 | |
400 | 400 | } |
401 | 401 | |
@@ -404,12 +404,12 @@ discard block |
||
404 | 404 | * |
405 | 405 | * @param WPInv_Invoice $invoice |
406 | 406 | */ |
407 | - protected function process_free_payment( $invoice ) { |
|
407 | + protected function process_free_payment($invoice) { |
|
408 | 408 | |
409 | - $invoice->set_gateway( 'none' ); |
|
410 | - $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
409 | + $invoice->set_gateway('none'); |
|
410 | + $invoice->add_note(__("This is a free invoice and won't be sent to the payment gateway", 'invoicing'), false, false, true); |
|
411 | 411 | $invoice->mark_paid(); |
412 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
412 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
413 | 413 | |
414 | 414 | } |
415 | 415 | |
@@ -417,9 +417,9 @@ discard block |
||
417 | 417 | * Sends a redrect response to payment details. |
418 | 418 | * |
419 | 419 | */ |
420 | - public function send_redirect_response( $url ) { |
|
421 | - $url = urlencode( $url ); |
|
422 | - wp_send_json_success( $url ); |
|
420 | + public function send_redirect_response($url) { |
|
421 | + $url = urlencode($url); |
|
422 | + wp_send_json_success($url); |
|
423 | 423 | } |
424 | 424 | |
425 | 425 | } |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | { |
166 | 166 | $installPath = $this->getPackageBasePath($package); |
167 | 167 | $io = $this->io; |
168 | - $outputStatus = function () use ($io, $installPath) { |
|
168 | + $outputStatus = function() use ($io, $installPath) { |
|
169 | 169 | $io->write(sprintf('Deleting %s - %s', $installPath, !file_exists($installPath) ? '<comment>deleted</comment>' : '<error>not deleted</error>')); |
170 | 170 | }; |
171 | 171 | |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | $pattern = $locations ? '(' . implode('|', $locations) . ')' : false; |
236 | 236 | } |
237 | 237 | |
238 | - return $pattern ? : '(\w+)'; |
|
238 | + return $pattern ?: '(\w+)'; |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | public function getLocations() |
37 | 37 | { |
38 | 38 | if ($this->matchesCakeVersion('>=', '3.0.0')) { |
39 | - $this->locations['plugin'] = $this->composer->getConfig()->get('vendor-dir') . '/{$vendor}/{$name}/'; |
|
39 | + $this->locations['plugin'] = $this->composer->getConfig()->get('vendor-dir') . '/{$vendor}/{$name}/'; |
|
40 | 40 | } |
41 | 41 | return $this->locations; |
42 | 42 | } |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | protected function matchesCakeVersion($matcher, $version) |
52 | 52 | { |
53 | 53 | $repositoryManager = $this->composer->getRepositoryManager(); |
54 | - if (! $repositoryManager) { |
|
54 | + if (!$repositoryManager) { |
|
55 | 55 | return false; |
56 | 56 | } |
57 | 57 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if (!defined('ABSPATH')) { |
|
4 | 4 | exit; // Exit if accessed directly |
5 | 5 | } |
6 | 6 | |
@@ -19,12 +19,12 @@ discard block |
||
19 | 19 | * |
20 | 20 | * @return string |
21 | 21 | */ |
22 | - public static function name($text,$multiple = false){ |
|
22 | + public static function name($text, $multiple = false) { |
|
23 | 23 | $output = ''; |
24 | 24 | |
25 | - if($text){ |
|
26 | - $is_multiple = strpos($text, '[') === false && $multiple ? '[]' : ''; |
|
27 | - $output = ' name="'.esc_attr($text).$is_multiple.'" '; |
|
25 | + if ($text) { |
|
26 | + $is_multiple = strpos($text, '[') === false && $multiple ? '[]' : ''; |
|
27 | + $output = ' name="' . esc_attr($text) . $is_multiple . '" '; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | return $output; |
@@ -37,11 +37,11 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @return string The sanitized item. |
39 | 39 | */ |
40 | - public static function id($text){ |
|
40 | + public static function id($text) { |
|
41 | 41 | $output = ''; |
42 | 42 | |
43 | - if($text){ |
|
44 | - $output = ' id="'.sanitize_html_class($text).'" '; |
|
43 | + if ($text) { |
|
44 | + $output = ' id="' . sanitize_html_class($text) . '" '; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | return $output; |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @return string The sanitized item. |
56 | 56 | */ |
57 | - public static function title($text){ |
|
57 | + public static function title($text) { |
|
58 | 58 | $output = ''; |
59 | 59 | |
60 | - if($text){ |
|
61 | - $output = ' title="'.esc_attr($text).'" '; |
|
60 | + if ($text) { |
|
61 | + $output = ' title="' . esc_attr($text) . '" '; |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | return $output; |
@@ -71,11 +71,11 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return string The sanitized item. |
73 | 73 | */ |
74 | - public static function value($text){ |
|
74 | + public static function value($text) { |
|
75 | 75 | $output = ''; |
76 | 76 | |
77 | - if($text){ |
|
78 | - $output = ' value="'.sanitize_text_field($text).'" '; |
|
77 | + if ($text) { |
|
78 | + $output = ' value="' . sanitize_text_field($text) . '" '; |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | return $output; |
@@ -88,13 +88,13 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @return string The sanitized item. |
90 | 90 | */ |
91 | - public static function class_attr($text){ |
|
91 | + public static function class_attr($text) { |
|
92 | 92 | $output = ''; |
93 | 93 | |
94 | - if($text){ |
|
94 | + if ($text) { |
|
95 | 95 | $classes = self::esc_classes($text); |
96 | - if(!empty($classes)){ |
|
97 | - $output = ' class="'.$classes.'" '; |
|
96 | + if (!empty($classes)) { |
|
97 | + $output = ' class="' . $classes . '" '; |
|
98 | 98 | } |
99 | 99 | } |
100 | 100 | |
@@ -108,15 +108,15 @@ discard block |
||
108 | 108 | * |
109 | 109 | * @return string |
110 | 110 | */ |
111 | - public static function esc_classes($text){ |
|
111 | + public static function esc_classes($text) { |
|
112 | 112 | $output = ''; |
113 | 113 | |
114 | - if($text){ |
|
115 | - $classes = explode(" ",$text); |
|
116 | - $classes = array_map("trim",$classes); |
|
117 | - $classes = array_map("sanitize_html_class",$classes); |
|
118 | - if(!empty($classes)){ |
|
119 | - $output = implode(" ",$classes); |
|
114 | + if ($text) { |
|
115 | + $classes = explode(" ", $text); |
|
116 | + $classes = array_map("trim", $classes); |
|
117 | + $classes = array_map("sanitize_html_class", $classes); |
|
118 | + if (!empty($classes)) { |
|
119 | + $output = implode(" ", $classes); |
|
120 | 120 | } |
121 | 121 | } |
122 | 122 | |
@@ -129,14 +129,14 @@ discard block |
||
129 | 129 | * |
130 | 130 | * @return string |
131 | 131 | */ |
132 | - public static function data_attributes($args){ |
|
132 | + public static function data_attributes($args) { |
|
133 | 133 | $output = ''; |
134 | 134 | |
135 | - if(!empty($args)){ |
|
135 | + if (!empty($args)) { |
|
136 | 136 | |
137 | - foreach($args as $key => $val){ |
|
138 | - if(substr( $key, 0, 5 ) === "data-"){ |
|
139 | - $output .= ' '.sanitize_html_class($key).'="'.esc_attr($val).'" '; |
|
137 | + foreach ($args as $key => $val) { |
|
138 | + if (substr($key, 0, 5) === "data-") { |
|
139 | + $output .= ' ' . sanitize_html_class($key) . '="' . esc_attr($val) . '" '; |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | } |
@@ -149,14 +149,14 @@ discard block |
||
149 | 149 | * |
150 | 150 | * @return string |
151 | 151 | */ |
152 | - public static function aria_attributes($args){ |
|
152 | + public static function aria_attributes($args) { |
|
153 | 153 | $output = ''; |
154 | 154 | |
155 | - if(!empty($args)){ |
|
155 | + if (!empty($args)) { |
|
156 | 156 | |
157 | - foreach($args as $key => $val){ |
|
158 | - if(substr( $key, 0, 5 ) === "aria-"){ |
|
159 | - $output .= ' '.sanitize_html_class($key).'="'.esc_attr($val).'" '; |
|
157 | + foreach ($args as $key => $val) { |
|
158 | + if (substr($key, 0, 5) === "aria-") { |
|
159 | + $output .= ' ' . sanitize_html_class($key) . '="' . esc_attr($val) . '" '; |
|
160 | 160 | } |
161 | 161 | } |
162 | 162 | } |
@@ -173,19 +173,19 @@ discard block |
||
173 | 173 | * |
174 | 174 | * @return string |
175 | 175 | */ |
176 | - public static function icon($class,$space_after = false, $extra_attributes = array()){ |
|
176 | + public static function icon($class, $space_after = false, $extra_attributes = array()) { |
|
177 | 177 | $output = ''; |
178 | 178 | |
179 | - if($class){ |
|
179 | + if ($class) { |
|
180 | 180 | $classes = self::esc_classes($class); |
181 | - if(!empty($classes)){ |
|
182 | - $output = '<i class="'.$classes.'" '; |
|
181 | + if (!empty($classes)) { |
|
182 | + $output = '<i class="' . $classes . '" '; |
|
183 | 183 | // extra attributes |
184 | - if(!empty($extra_attributes)){ |
|
184 | + if (!empty($extra_attributes)) { |
|
185 | 185 | $output .= AUI_Component_Helper::extra_attributes($extra_attributes); |
186 | 186 | } |
187 | 187 | $output .= '></i>'; |
188 | - if($space_after){ |
|
188 | + if ($space_after) { |
|
189 | 189 | $output .= " "; |
190 | 190 | } |
191 | 191 | } |
@@ -199,17 +199,17 @@ discard block |
||
199 | 199 | * |
200 | 200 | * @return string |
201 | 201 | */ |
202 | - public static function extra_attributes($args){ |
|
202 | + public static function extra_attributes($args) { |
|
203 | 203 | $output = ''; |
204 | 204 | |
205 | - if(!empty($args)){ |
|
205 | + if (!empty($args)) { |
|
206 | 206 | |
207 | - if( is_array($args) ){ |
|
208 | - foreach($args as $key => $val){ |
|
209 | - $output .= ' '.sanitize_html_class($key).'="'.esc_attr($val).'" '; |
|
207 | + if (is_array($args)) { |
|
208 | + foreach ($args as $key => $val) { |
|
209 | + $output .= ' ' . sanitize_html_class($key) . '="' . esc_attr($val) . '" '; |
|
210 | 210 | } |
211 | - }else{ |
|
212 | - $output .= ' '.$args.' '; |
|
211 | + } else { |
|
212 | + $output .= ' ' . $args . ' '; |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | } |
@@ -222,11 +222,11 @@ discard block |
||
222 | 222 | * |
223 | 223 | * @return string |
224 | 224 | */ |
225 | - public static function help_text($text){ |
|
225 | + public static function help_text($text) { |
|
226 | 226 | $output = ''; |
227 | 227 | |
228 | - if($text){ |
|
229 | - $output .= '<small class="form-text text-muted">'.wp_kses_post($text).'</small>'; |
|
228 | + if ($text) { |
|
229 | + $output .= '<small class="form-text text-muted">' . wp_kses_post($text) . '</small>'; |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | |
@@ -240,18 +240,18 @@ discard block |
||
240 | 240 | * |
241 | 241 | * @return string|void |
242 | 242 | */ |
243 | - public static function element_require( $input ) { |
|
243 | + public static function element_require($input) { |
|
244 | 244 | |
245 | - $input = str_replace( "'", '"', $input );// we only want double quotes |
|
245 | + $input = str_replace("'", '"', $input); // we only want double quotes |
|
246 | 246 | |
247 | - $output = esc_attr( str_replace( array( "[%", "%]", "%:checked]" ), array( |
|
247 | + $output = esc_attr(str_replace(array("[%", "%]", "%:checked]"), array( |
|
248 | 248 | "jQuery(form).find('[data-argument=\"", |
249 | 249 | "\"]').find('input,select,textarea').val()", |
250 | 250 | "\"]').find('input:checked').val()", |
251 | - ), $input ) ); |
|
251 | + ), $input)); |
|
252 | 252 | |
253 | - if($output){ |
|
254 | - $output = ' data-element-require="'.$output.'" '; |
|
253 | + if ($output) { |
|
254 | + $output = ' data-element-require="' . $output . '" '; |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | return $output; |
@@ -268,13 +268,13 @@ discard block |
||
268 | 268 | * @param array $input Input. |
269 | 269 | * @return array Array of allowed HTML tags and their allowed attributes. |
270 | 270 | */ |
271 | - public static function kses_allowed_html( $context = 'post', $input = array() ) { |
|
272 | - $allowed_html = wp_kses_allowed_html( $context ); |
|
271 | + public static function kses_allowed_html($context = 'post', $input = array()) { |
|
272 | + $allowed_html = wp_kses_allowed_html($context); |
|
273 | 273 | |
274 | - if ( is_array( $allowed_html ) ) { |
|
274 | + if (is_array($allowed_html)) { |
|
275 | 275 | // <iframe> |
276 | - if ( ! isset( $allowed_html['iframe'] ) && $context == 'post' ) { |
|
277 | - $allowed_html['iframe'] = array( |
|
276 | + if (!isset($allowed_html['iframe']) && $context == 'post') { |
|
277 | + $allowed_html['iframe'] = array( |
|
278 | 278 | 'class' => true, |
279 | 279 | 'id' => true, |
280 | 280 | 'src' => true, |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | * @param @param string|array $context The context for which to retrieve tags. |
303 | 303 | * @param array $input Input field. |
304 | 304 | */ |
305 | - return apply_filters( 'ayecode_ui_kses_allowed_html', $allowed_html, $context, $input ); |
|
305 | + return apply_filters('ayecode_ui_kses_allowed_html', $allowed_html, $context, $input); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -324,20 +324,20 @@ discard block |
||
324 | 324 | * @param array $input Input Field. |
325 | 325 | * @return string Filtered content with only allowed HTML elements. |
326 | 326 | */ |
327 | - public static function _sanitize_html_field( $value, $input = array() ) { |
|
328 | - if ( $value === '' ) { |
|
327 | + public static function _sanitize_html_field($value, $input = array()) { |
|
328 | + if ($value === '') { |
|
329 | 329 | return $value; |
330 | 330 | } |
331 | 331 | |
332 | - $allowed_html = self::kses_allowed_html( 'post', $input ); |
|
332 | + $allowed_html = self::kses_allowed_html('post', $input); |
|
333 | 333 | |
334 | - if ( ! is_array( $allowed_html ) ) { |
|
335 | - $allowed_html = wp_kses_allowed_html( 'post' ); |
|
334 | + if (!is_array($allowed_html)) { |
|
335 | + $allowed_html = wp_kses_allowed_html('post'); |
|
336 | 336 | } |
337 | 337 | |
338 | - $filtered = trim( wp_unslash( $value ) ); |
|
339 | - $filtered = wp_kses( $filtered, $allowed_html ); |
|
340 | - $filtered = balanceTags( $filtered ); // Balances tags |
|
338 | + $filtered = trim(wp_unslash($value)); |
|
339 | + $filtered = wp_kses($filtered, $allowed_html); |
|
340 | + $filtered = balanceTags($filtered); // Balances tags |
|
341 | 341 | |
342 | 342 | return $filtered; |
343 | 343 | } |
@@ -351,21 +351,21 @@ discard block |
||
351 | 351 | * @param array $input Input Field. |
352 | 352 | * @return mixed Stripped value. |
353 | 353 | */ |
354 | - public static function sanitize_html_field( $value, $input = array() ) { |
|
354 | + public static function sanitize_html_field($value, $input = array()) { |
|
355 | 355 | $original = $value; |
356 | 356 | |
357 | - if ( is_array( $value ) ) { |
|
358 | - foreach ( $value as $index => $item ) { |
|
359 | - $value[ $index ] = self::_sanitize_html_field( $value, $input ); |
|
357 | + if (is_array($value)) { |
|
358 | + foreach ($value as $index => $item) { |
|
359 | + $value[$index] = self::_sanitize_html_field($value, $input); |
|
360 | 360 | } |
361 | - } elseif ( is_object( $value ) ) { |
|
362 | - $object_vars = get_object_vars( $value ); |
|
361 | + } elseif (is_object($value)) { |
|
362 | + $object_vars = get_object_vars($value); |
|
363 | 363 | |
364 | - foreach ( $object_vars as $property_name => $property_value ) { |
|
365 | - $value->$property_name = self::_sanitize_html_field( $property_value, $input ); |
|
364 | + foreach ($object_vars as $property_name => $property_value) { |
|
365 | + $value->$property_name = self::_sanitize_html_field($property_value, $input); |
|
366 | 366 | } |
367 | 367 | } else { |
368 | - $value = self::_sanitize_html_field( $value, $input ); |
|
368 | + $value = self::_sanitize_html_field($value, $input); |
|
369 | 369 | } |
370 | 370 | |
371 | 371 | /** |
@@ -377,6 +377,6 @@ discard block |
||
377 | 377 | * @param string|array $value Original content without filter. |
378 | 378 | * @param array $input Input Field. |
379 | 379 | */ |
380 | - return apply_filters( 'ayecode_ui_sanitize_html_field', $value, $original, $input ); |
|
380 | + return apply_filters('ayecode_ui_sanitize_html_field', $value, $original, $input); |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | \ No newline at end of file |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * @since 1.0.15 |
6 | 6 | */ |
7 | 7 | |
8 | -defined( 'ABSPATH' ) || exit; |
|
8 | +defined('ABSPATH') || exit; |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Discount class. |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * @since 1.0.15 |
14 | 14 | * |
15 | 15 | */ |
16 | -class WPInv_Discount extends GetPaid_Data { |
|
16 | +class WPInv_Discount extends GetPaid_Data { |
|
17 | 17 | |
18 | 18 | /** |
19 | 19 | * Which data store to load. |
@@ -79,35 +79,35 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @param int|array|string|WPInv_Discount|WP_Post $discount discount data, object, ID or code. |
81 | 81 | */ |
82 | - public function __construct( $discount = 0 ) { |
|
83 | - parent::__construct( $discount ); |
|
82 | + public function __construct($discount = 0) { |
|
83 | + parent::__construct($discount); |
|
84 | 84 | |
85 | - if ( is_numeric( $discount ) && 'wpi_discount' === get_post_type( $discount ) ) { |
|
86 | - $this->set_id( $discount ); |
|
87 | - } elseif ( $discount instanceof self ) { |
|
88 | - $this->set_id( $discount->get_id() ); |
|
89 | - } elseif ( ! empty( $discount->ID ) ) { |
|
90 | - $this->set_id( $discount->ID ); |
|
91 | - } elseif ( is_array( $discount ) ) { |
|
92 | - $this->set_props( $discount ); |
|
85 | + if (is_numeric($discount) && 'wpi_discount' === get_post_type($discount)) { |
|
86 | + $this->set_id($discount); |
|
87 | + } elseif ($discount instanceof self) { |
|
88 | + $this->set_id($discount->get_id()); |
|
89 | + } elseif (!empty($discount->ID)) { |
|
90 | + $this->set_id($discount->ID); |
|
91 | + } elseif (is_array($discount)) { |
|
92 | + $this->set_props($discount); |
|
93 | 93 | |
94 | - if ( isset( $discount['ID'] ) ) { |
|
95 | - $this->set_id( $discount['ID'] ); |
|
94 | + if (isset($discount['ID'])) { |
|
95 | + $this->set_id($discount['ID']); |
|
96 | 96 | } |
97 | 97 | |
98 | - } elseif ( is_scalar( $discount ) && $discount = self::get_discount_id_by_code( $discount ) ) { |
|
99 | - $this->set_id( $discount ); |
|
98 | + } elseif (is_scalar($discount) && $discount = self::get_discount_id_by_code($discount)) { |
|
99 | + $this->set_id($discount); |
|
100 | 100 | } else { |
101 | - $this->set_object_read( true ); |
|
101 | + $this->set_object_read(true); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | // Load the datastore. |
105 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
105 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
106 | 106 | |
107 | - if ( $this->get_id() > 0 ) { |
|
108 | - $this->post = get_post( $this->get_id() ); |
|
107 | + if ($this->get_id() > 0) { |
|
108 | + $this->post = get_post($this->get_id()); |
|
109 | 109 | $this->ID = $this->get_id(); |
110 | - $this->data_store->read( $this ); |
|
110 | + $this->data_store->read($this); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | } |
@@ -123,50 +123,50 @@ discard block |
||
123 | 123 | * @since 1.0.15 |
124 | 124 | * @return array|bool array of discount details on success. False otherwise. |
125 | 125 | */ |
126 | - public static function get_data_by( $field, $value ) { |
|
126 | + public static function get_data_by($field, $value) { |
|
127 | 127 | |
128 | - if ( 'id' == strtolower( $field ) ) { |
|
128 | + if ('id' == strtolower($field)) { |
|
129 | 129 | // Make sure the value is numeric to avoid casting objects, for example, |
130 | 130 | // to int 1. |
131 | - if ( ! is_numeric( $value ) ) |
|
131 | + if (!is_numeric($value)) |
|
132 | 132 | return false; |
133 | - $value = intval( $value ); |
|
134 | - if ( $value < 1 ) |
|
133 | + $value = intval($value); |
|
134 | + if ($value < 1) |
|
135 | 135 | return false; |
136 | 136 | } |
137 | 137 | |
138 | - if ( ! $value || ! is_string( $field ) ) { |
|
138 | + if (!$value || !is_string($field)) { |
|
139 | 139 | return false; |
140 | 140 | } |
141 | 141 | |
142 | - $field = trim( $field ); |
|
142 | + $field = trim($field); |
|
143 | 143 | |
144 | 144 | // prepare query args |
145 | - switch ( strtolower( $field ) ) { |
|
145 | + switch (strtolower($field)) { |
|
146 | 146 | case 'id': |
147 | 147 | $discount_id = $value; |
148 | - $args = array( 'include' => array( $value ) ); |
|
148 | + $args = array('include' => array($value)); |
|
149 | 149 | break; |
150 | 150 | case 'discount_code': |
151 | 151 | case 'code': |
152 | - $value = trim( $value ); |
|
153 | - $discount_id = wp_cache_get( $value, 'WPInv_Discount_Codes' ); |
|
154 | - $args = array( 'meta_key' => '_wpi_discount_code', 'meta_value' => $value ); |
|
152 | + $value = trim($value); |
|
153 | + $discount_id = wp_cache_get($value, 'WPInv_Discount_Codes'); |
|
154 | + $args = array('meta_key' => '_wpi_discount_code', 'meta_value' => $value); |
|
155 | 155 | break; |
156 | 156 | case 'name': |
157 | 157 | $discount_id = 0; |
158 | - $args = array( 'name' => trim( $value ) ); |
|
158 | + $args = array('name' => trim($value)); |
|
159 | 159 | break; |
160 | 160 | default: |
161 | - $args = apply_filters( "wpinv_discount_get_data_by_{$field}_args", null, $value ); |
|
162 | - if ( ! is_array( $args ) ) { |
|
163 | - return apply_filters( "wpinv_discount_get_data_by_$field", false, $value ); |
|
161 | + $args = apply_filters("wpinv_discount_get_data_by_{$field}_args", null, $value); |
|
162 | + if (!is_array($args)) { |
|
163 | + return apply_filters("wpinv_discount_get_data_by_$field", false, $value); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | } |
167 | 167 | |
168 | 168 | // Check if there is a cached value. |
169 | - if ( ! empty( $discount_id ) && $discount = wp_cache_get( (int) $discount_id, 'WPInv_Discounts' ) ) { |
|
169 | + if (!empty($discount_id) && $discount = wp_cache_get((int) $discount_id, 'WPInv_Discounts')) { |
|
170 | 170 | return $discount; |
171 | 171 | } |
172 | 172 | |
@@ -175,13 +175,13 @@ discard block |
||
175 | 175 | array( |
176 | 176 | 'post_type' => 'wpi_discount', |
177 | 177 | 'posts_per_page' => 1, |
178 | - 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ) |
|
178 | + 'post_status' => array('publish', 'pending', 'draft', 'expired') |
|
179 | 179 | ) |
180 | 180 | ); |
181 | 181 | |
182 | - $discount = get_posts( $args ); |
|
182 | + $discount = get_posts($args); |
|
183 | 183 | |
184 | - if( empty( $discount ) ) { |
|
184 | + if (empty($discount)) { |
|
185 | 185 | return false; |
186 | 186 | } |
187 | 187 | |
@@ -190,30 +190,30 @@ discard block |
||
190 | 190 | // Prepare the return data. |
191 | 191 | $return = array( |
192 | 192 | 'ID' => $discount->ID, |
193 | - 'code' => get_post_meta( $discount->ID, '_wpi_discount_code', true ), |
|
194 | - 'amount' => get_post_meta( $discount->ID, '_wpi_discount_amount', true ), |
|
193 | + 'code' => get_post_meta($discount->ID, '_wpi_discount_code', true), |
|
194 | + 'amount' => get_post_meta($discount->ID, '_wpi_discount_amount', true), |
|
195 | 195 | 'date_created' => $discount->post_date, |
196 | 196 | 'date_modified' => $discount->post_modified, |
197 | 197 | 'status' => $discount->post_status, |
198 | - 'start' => get_post_meta( $discount->ID, '_wpi_discount_start', true ), |
|
199 | - 'expiration' => get_post_meta( $discount->ID, '_wpi_discount_expiration', true ), |
|
200 | - 'type' => get_post_meta( $discount->ID, '_wpi_discount_type', true ), |
|
198 | + 'start' => get_post_meta($discount->ID, '_wpi_discount_start', true), |
|
199 | + 'expiration' => get_post_meta($discount->ID, '_wpi_discount_expiration', true), |
|
200 | + 'type' => get_post_meta($discount->ID, '_wpi_discount_type', true), |
|
201 | 201 | 'description' => $discount->post_excerpt, |
202 | - 'uses' => get_post_meta( $discount->ID, '_wpi_discount_uses', true ), |
|
203 | - 'is_single_use' => get_post_meta( $discount->ID, '_wpi_discount_is_single_use', true ), |
|
204 | - 'items' => get_post_meta( $discount->ID, '_wpi_discount_items', true ), |
|
205 | - 'excluded_items' => get_post_meta( $discount->ID, '_wpi_discount_excluded_items', true ), |
|
206 | - 'max_uses' => get_post_meta( $discount->ID, '_wpi_discount_max_uses', true ), |
|
207 | - 'is_recurring' => get_post_meta( $discount->ID, '_wpi_discount_is_recurring', true ), |
|
208 | - 'min_total' => get_post_meta( $discount->ID, '_wpi_discount_min_total', true ), |
|
209 | - 'max_total' => get_post_meta( $discount->ID, '_wpi_discount_max_total', true ), |
|
202 | + 'uses' => get_post_meta($discount->ID, '_wpi_discount_uses', true), |
|
203 | + 'is_single_use' => get_post_meta($discount->ID, '_wpi_discount_is_single_use', true), |
|
204 | + 'items' => get_post_meta($discount->ID, '_wpi_discount_items', true), |
|
205 | + 'excluded_items' => get_post_meta($discount->ID, '_wpi_discount_excluded_items', true), |
|
206 | + 'max_uses' => get_post_meta($discount->ID, '_wpi_discount_max_uses', true), |
|
207 | + 'is_recurring' => get_post_meta($discount->ID, '_wpi_discount_is_recurring', true), |
|
208 | + 'min_total' => get_post_meta($discount->ID, '_wpi_discount_min_total', true), |
|
209 | + 'max_total' => get_post_meta($discount->ID, '_wpi_discount_max_total', true), |
|
210 | 210 | ); |
211 | 211 | |
212 | - $return = apply_filters( 'wpinv_discount_properties', $return ); |
|
212 | + $return = apply_filters('wpinv_discount_properties', $return); |
|
213 | 213 | |
214 | 214 | // Update the cache with our data |
215 | - wp_cache_add( $discount->ID, $return, 'WPInv_Discounts' ); |
|
216 | - wp_cache_add( $return['code'], $discount->ID, 'WPInv_Discount_Codes' ); |
|
215 | + wp_cache_add($discount->ID, $return, 'WPInv_Discounts'); |
|
216 | + wp_cache_add($return['code'], $discount->ID, 'WPInv_Discount_Codes'); |
|
217 | 217 | |
218 | 218 | return $return; |
219 | 219 | } |
@@ -227,19 +227,19 @@ discard block |
||
227 | 227 | * @since 1.0.15 |
228 | 228 | * @return int |
229 | 229 | */ |
230 | - public static function get_discount_id_by_code( $discount_code ) { |
|
230 | + public static function get_discount_id_by_code($discount_code) { |
|
231 | 231 | |
232 | 232 | // Trim the code. |
233 | - $discount_code = trim( $discount_code ); |
|
233 | + $discount_code = trim($discount_code); |
|
234 | 234 | |
235 | 235 | // Ensure a value has been passed. |
236 | - if ( empty( $discount_code ) ) { |
|
236 | + if (empty($discount_code)) { |
|
237 | 237 | return 0; |
238 | 238 | } |
239 | 239 | |
240 | 240 | // Maybe retrieve from the cache. |
241 | - $discount_id = wp_cache_get( $discount_code, 'getpaid_discount_codes' ); |
|
242 | - if ( ! empty( $discount_id ) ) { |
|
241 | + $discount_id = wp_cache_get($discount_code, 'getpaid_discount_codes'); |
|
242 | + if (!empty($discount_id)) { |
|
243 | 243 | return $discount_id; |
244 | 244 | } |
245 | 245 | |
@@ -250,19 +250,19 @@ discard block |
||
250 | 250 | 'meta_value' => $discount_code, |
251 | 251 | 'post_type' => 'wpi_discount', |
252 | 252 | 'posts_per_page' => 1, |
253 | - 'post_status' => array( 'publish', 'pending', 'draft', 'expired' ), |
|
253 | + 'post_status' => array('publish', 'pending', 'draft', 'expired'), |
|
254 | 254 | 'fields' => 'ids', |
255 | 255 | ) |
256 | 256 | ); |
257 | 257 | |
258 | - if ( empty( $discounts ) ) { |
|
258 | + if (empty($discounts)) { |
|
259 | 259 | return 0; |
260 | 260 | } |
261 | 261 | |
262 | 262 | $discount_id = $discounts[0]; |
263 | 263 | |
264 | 264 | // Update the cache with our data |
265 | - wp_cache_add( get_post_meta( $discount_id, '_wpi_discount_code', true ), $discount_id, 'getpaid_discount_codes' ); |
|
265 | + wp_cache_add(get_post_meta($discount_id, '_wpi_discount_code', true), $discount_id, 'getpaid_discount_codes'); |
|
266 | 266 | |
267 | 267 | return $discount_id; |
268 | 268 | } |
@@ -275,8 +275,8 @@ discard block |
||
275 | 275 | * |
276 | 276 | * @return bool Whether the given discount field is set. |
277 | 277 | */ |
278 | - public function __isset( $key ){ |
|
279 | - return isset( $this->data[$key] ) || method_exists( $this, "get_$key"); |
|
278 | + public function __isset($key) { |
|
279 | + return isset($this->data[$key]) || method_exists($this, "get_$key"); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | /* |
@@ -301,8 +301,8 @@ discard block |
||
301 | 301 | * @param string $context View or edit context. |
302 | 302 | * @return string |
303 | 303 | */ |
304 | - public function get_status( $context = 'view' ) { |
|
305 | - return $this->get_prop( 'status', $context ); |
|
304 | + public function get_status($context = 'view') { |
|
305 | + return $this->get_prop('status', $context); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -312,8 +312,8 @@ discard block |
||
312 | 312 | * @param string $context View or edit context. |
313 | 313 | * @return string |
314 | 314 | */ |
315 | - public function get_version( $context = 'view' ) { |
|
316 | - return $this->get_prop( 'version', $context ); |
|
315 | + public function get_version($context = 'view') { |
|
316 | + return $this->get_prop('version', $context); |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | /** |
@@ -323,8 +323,8 @@ discard block |
||
323 | 323 | * @param string $context View or edit context. |
324 | 324 | * @return string |
325 | 325 | */ |
326 | - public function get_date_created( $context = 'view' ) { |
|
327 | - return $this->get_prop( 'date_created', $context ); |
|
326 | + public function get_date_created($context = 'view') { |
|
327 | + return $this->get_prop('date_created', $context); |
|
328 | 328 | } |
329 | 329 | |
330 | 330 | /** |
@@ -334,11 +334,11 @@ discard block |
||
334 | 334 | * @param string $context View or edit context. |
335 | 335 | * @return string |
336 | 336 | */ |
337 | - public function get_date_created_gmt( $context = 'view' ) { |
|
338 | - $date = $this->get_date_created( $context ); |
|
337 | + public function get_date_created_gmt($context = 'view') { |
|
338 | + $date = $this->get_date_created($context); |
|
339 | 339 | |
340 | - if ( $date ) { |
|
341 | - $date = get_gmt_from_date( $date ); |
|
340 | + if ($date) { |
|
341 | + $date = get_gmt_from_date($date); |
|
342 | 342 | } |
343 | 343 | return $date; |
344 | 344 | } |
@@ -350,8 +350,8 @@ discard block |
||
350 | 350 | * @param string $context View or edit context. |
351 | 351 | * @return string |
352 | 352 | */ |
353 | - public function get_date_modified( $context = 'view' ) { |
|
354 | - return $this->get_prop( 'date_modified', $context ); |
|
353 | + public function get_date_modified($context = 'view') { |
|
354 | + return $this->get_prop('date_modified', $context); |
|
355 | 355 | } |
356 | 356 | |
357 | 357 | /** |
@@ -361,11 +361,11 @@ discard block |
||
361 | 361 | * @param string $context View or edit context. |
362 | 362 | * @return string |
363 | 363 | */ |
364 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
365 | - $date = $this->get_date_modified( $context ); |
|
364 | + public function get_date_modified_gmt($context = 'view') { |
|
365 | + $date = $this->get_date_modified($context); |
|
366 | 366 | |
367 | - if ( $date ) { |
|
368 | - $date = get_gmt_from_date( $date ); |
|
367 | + if ($date) { |
|
368 | + $date = get_gmt_from_date($date); |
|
369 | 369 | } |
370 | 370 | return $date; |
371 | 371 | } |
@@ -377,8 +377,8 @@ discard block |
||
377 | 377 | * @param string $context View or edit context. |
378 | 378 | * @return string |
379 | 379 | */ |
380 | - public function get_name( $context = 'view' ) { |
|
381 | - return $this->get_prop( 'name', $context ); |
|
380 | + public function get_name($context = 'view') { |
|
381 | + return $this->get_prop('name', $context); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | /** |
@@ -388,8 +388,8 @@ discard block |
||
388 | 388 | * @param string $context View or edit context. |
389 | 389 | * @return string |
390 | 390 | */ |
391 | - public function get_title( $context = 'view' ) { |
|
392 | - return $this->get_name( $context ); |
|
391 | + public function get_title($context = 'view') { |
|
392 | + return $this->get_name($context); |
|
393 | 393 | } |
394 | 394 | |
395 | 395 | /** |
@@ -399,8 +399,8 @@ discard block |
||
399 | 399 | * @param string $context View or edit context. |
400 | 400 | * @return string |
401 | 401 | */ |
402 | - public function get_description( $context = 'view' ) { |
|
403 | - return $this->get_prop( 'description', $context ); |
|
402 | + public function get_description($context = 'view') { |
|
403 | + return $this->get_prop('description', $context); |
|
404 | 404 | } |
405 | 405 | |
406 | 406 | /** |
@@ -410,8 +410,8 @@ discard block |
||
410 | 410 | * @param string $context View or edit context. |
411 | 411 | * @return string |
412 | 412 | */ |
413 | - public function get_excerpt( $context = 'view' ) { |
|
414 | - return $this->get_description( $context ); |
|
413 | + public function get_excerpt($context = 'view') { |
|
414 | + return $this->get_description($context); |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | /** |
@@ -421,8 +421,8 @@ discard block |
||
421 | 421 | * @param string $context View or edit context. |
422 | 422 | * @return string |
423 | 423 | */ |
424 | - public function get_summary( $context = 'view' ) { |
|
425 | - return $this->get_description( $context ); |
|
424 | + public function get_summary($context = 'view') { |
|
425 | + return $this->get_description($context); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | /** |
@@ -432,8 +432,8 @@ discard block |
||
432 | 432 | * @param string $context View or edit context. |
433 | 433 | * @return string |
434 | 434 | */ |
435 | - public function get_author( $context = 'view' ) { |
|
436 | - return (int) $this->get_prop( 'author', $context ); |
|
435 | + public function get_author($context = 'view') { |
|
436 | + return (int) $this->get_prop('author', $context); |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | /** |
@@ -443,8 +443,8 @@ discard block |
||
443 | 443 | * @param string $context View or edit context. |
444 | 444 | * @return string |
445 | 445 | */ |
446 | - public function get_code( $context = 'view' ) { |
|
447 | - return $this->get_prop( 'code', $context ); |
|
446 | + public function get_code($context = 'view') { |
|
447 | + return $this->get_prop('code', $context); |
|
448 | 448 | } |
449 | 449 | |
450 | 450 | /** |
@@ -454,8 +454,8 @@ discard block |
||
454 | 454 | * @param string $context View or edit context. |
455 | 455 | * @return string |
456 | 456 | */ |
457 | - public function get_coupon_code( $context = 'view' ) { |
|
458 | - return $this->get_code( $context ); |
|
457 | + public function get_coupon_code($context = 'view') { |
|
458 | + return $this->get_code($context); |
|
459 | 459 | } |
460 | 460 | |
461 | 461 | /** |
@@ -465,8 +465,8 @@ discard block |
||
465 | 465 | * @param string $context View or edit context. |
466 | 466 | * @return string |
467 | 467 | */ |
468 | - public function get_discount_code( $context = 'view' ) { |
|
469 | - return $this->get_code( $context ); |
|
468 | + public function get_discount_code($context = 'view') { |
|
469 | + return $this->get_code($context); |
|
470 | 470 | } |
471 | 471 | |
472 | 472 | /** |
@@ -476,8 +476,8 @@ discard block |
||
476 | 476 | * @param string $context View or edit context. |
477 | 477 | * @return float |
478 | 478 | */ |
479 | - public function get_amount( $context = 'view' ) { |
|
480 | - return $this->get_prop( 'amount', $context ); |
|
479 | + public function get_amount($context = 'view') { |
|
480 | + return $this->get_prop('amount', $context); |
|
481 | 481 | } |
482 | 482 | |
483 | 483 | /** |
@@ -488,13 +488,13 @@ discard block |
||
488 | 488 | */ |
489 | 489 | public function get_formatted_amount() { |
490 | 490 | |
491 | - if ( $this->is_type( 'flat' ) ) { |
|
492 | - $rate = wpinv_price( $this->get_amount() ); |
|
491 | + if ($this->is_type('flat')) { |
|
492 | + $rate = wpinv_price($this->get_amount()); |
|
493 | 493 | } else { |
494 | 494 | $rate = $this->get_amount() . '%'; |
495 | 495 | } |
496 | 496 | |
497 | - return apply_filters( 'wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount() ); |
|
497 | + return apply_filters('wpinv_format_discount_rate', $rate, $this->get_type(), $this->get_amount()); |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | /** |
@@ -504,8 +504,8 @@ discard block |
||
504 | 504 | * @param string $context View or edit context. |
505 | 505 | * @return string |
506 | 506 | */ |
507 | - public function get_start( $context = 'view' ) { |
|
508 | - return $this->get_prop( 'start', $context ); |
|
507 | + public function get_start($context = 'view') { |
|
508 | + return $this->get_prop('start', $context); |
|
509 | 509 | } |
510 | 510 | |
511 | 511 | /** |
@@ -515,8 +515,8 @@ discard block |
||
515 | 515 | * @param string $context View or edit context. |
516 | 516 | * @return string |
517 | 517 | */ |
518 | - public function get_start_date( $context = 'view' ) { |
|
519 | - return $this->get_start( $context ); |
|
518 | + public function get_start_date($context = 'view') { |
|
519 | + return $this->get_start($context); |
|
520 | 520 | } |
521 | 521 | |
522 | 522 | /** |
@@ -526,8 +526,8 @@ discard block |
||
526 | 526 | * @param string $context View or edit context. |
527 | 527 | * @return string |
528 | 528 | */ |
529 | - public function get_expiration( $context = 'view' ) { |
|
530 | - return $this->get_prop( 'expiration', $context ); |
|
529 | + public function get_expiration($context = 'view') { |
|
530 | + return $this->get_prop('expiration', $context); |
|
531 | 531 | } |
532 | 532 | |
533 | 533 | /** |
@@ -537,8 +537,8 @@ discard block |
||
537 | 537 | * @param string $context View or edit context. |
538 | 538 | * @return string |
539 | 539 | */ |
540 | - public function get_expiration_date( $context = 'view' ) { |
|
541 | - return $this->get_expiration( $context ); |
|
540 | + public function get_expiration_date($context = 'view') { |
|
541 | + return $this->get_expiration($context); |
|
542 | 542 | } |
543 | 543 | |
544 | 544 | /** |
@@ -548,8 +548,8 @@ discard block |
||
548 | 548 | * @param string $context View or edit context. |
549 | 549 | * @return string |
550 | 550 | */ |
551 | - public function get_end_date( $context = 'view' ) { |
|
552 | - return $this->get_expiration( $context ); |
|
551 | + public function get_end_date($context = 'view') { |
|
552 | + return $this->get_expiration($context); |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | /** |
@@ -559,8 +559,8 @@ discard block |
||
559 | 559 | * @param string $context View or edit context. |
560 | 560 | * @return string |
561 | 561 | */ |
562 | - public function get_type( $context = 'view' ) { |
|
563 | - return $this->get_prop( 'type', $context ); |
|
562 | + public function get_type($context = 'view') { |
|
563 | + return $this->get_prop('type', $context); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | /** |
@@ -570,8 +570,8 @@ discard block |
||
570 | 570 | * @param string $context View or edit context. |
571 | 571 | * @return int |
572 | 572 | */ |
573 | - public function get_uses( $context = 'view' ) { |
|
574 | - return (int) $this->get_prop( 'uses', $context ); |
|
573 | + public function get_uses($context = 'view') { |
|
574 | + return (int) $this->get_prop('uses', $context); |
|
575 | 575 | } |
576 | 576 | |
577 | 577 | /** |
@@ -582,7 +582,7 @@ discard block |
||
582 | 582 | */ |
583 | 583 | public function get_usage() { |
584 | 584 | |
585 | - if ( ! $this->has_limit() ) { |
|
585 | + if (!$this->has_limit()) { |
|
586 | 586 | return $this->get_uses() . ' / ' . ' ∞'; |
587 | 587 | } |
588 | 588 | |
@@ -597,9 +597,9 @@ discard block |
||
597 | 597 | * @param string $context View or edit context. |
598 | 598 | * @return int |
599 | 599 | */ |
600 | - public function get_max_uses( $context = 'view' ) { |
|
601 | - $max_uses = $this->get_prop( 'max_uses', $context ); |
|
602 | - return empty( $max_uses ) ? null : $max_uses; |
|
600 | + public function get_max_uses($context = 'view') { |
|
601 | + $max_uses = $this->get_prop('max_uses', $context); |
|
602 | + return empty($max_uses) ? null : $max_uses; |
|
603 | 603 | } |
604 | 604 | |
605 | 605 | /** |
@@ -609,8 +609,8 @@ discard block |
||
609 | 609 | * @param string $context View or edit context. |
610 | 610 | * @return bool |
611 | 611 | */ |
612 | - public function get_is_single_use( $context = 'view' ) { |
|
613 | - return $this->get_prop( 'is_single_use', $context ); |
|
612 | + public function get_is_single_use($context = 'view') { |
|
613 | + return $this->get_prop('is_single_use', $context); |
|
614 | 614 | } |
615 | 615 | |
616 | 616 | /** |
@@ -620,8 +620,8 @@ discard block |
||
620 | 620 | * @param string $context View or edit context. |
621 | 621 | * @return array |
622 | 622 | */ |
623 | - public function get_items( $context = 'view' ) { |
|
624 | - return wpinv_parse_list( $this->get_prop( 'items', $context ) ); |
|
623 | + public function get_items($context = 'view') { |
|
624 | + return wpinv_parse_list($this->get_prop('items', $context)); |
|
625 | 625 | } |
626 | 626 | |
627 | 627 | /** |
@@ -631,8 +631,8 @@ discard block |
||
631 | 631 | * @param string $context View or edit context. |
632 | 632 | * @return array |
633 | 633 | */ |
634 | - public function get_allowed_items( $context = 'view' ) { |
|
635 | - return $this->get_items( $context ); |
|
634 | + public function get_allowed_items($context = 'view') { |
|
635 | + return $this->get_items($context); |
|
636 | 636 | } |
637 | 637 | |
638 | 638 | /** |
@@ -642,8 +642,8 @@ discard block |
||
642 | 642 | * @param string $context View or edit context. |
643 | 643 | * @return array |
644 | 644 | */ |
645 | - public function get_excluded_items( $context = 'view' ) { |
|
646 | - return wpinv_parse_list( $this->get_prop( 'excluded_items', $context ) ); |
|
645 | + public function get_excluded_items($context = 'view') { |
|
646 | + return wpinv_parse_list($this->get_prop('excluded_items', $context)); |
|
647 | 647 | } |
648 | 648 | |
649 | 649 | /** |
@@ -653,8 +653,8 @@ discard block |
||
653 | 653 | * @param string $context View or edit context. |
654 | 654 | * @return int|string|bool |
655 | 655 | */ |
656 | - public function get_is_recurring( $context = 'view' ) { |
|
657 | - return $this->get_prop( 'is_recurring', $context ); |
|
656 | + public function get_is_recurring($context = 'view') { |
|
657 | + return $this->get_prop('is_recurring', $context); |
|
658 | 658 | } |
659 | 659 | |
660 | 660 | /** |
@@ -664,9 +664,9 @@ discard block |
||
664 | 664 | * @param string $context View or edit context. |
665 | 665 | * @return float |
666 | 666 | */ |
667 | - public function get_min_total( $context = 'view' ) { |
|
668 | - $minimum = $this->get_prop( 'min_total', $context ); |
|
669 | - return empty( $minimum ) ? null : $minimum; |
|
667 | + public function get_min_total($context = 'view') { |
|
668 | + $minimum = $this->get_prop('min_total', $context); |
|
669 | + return empty($minimum) ? null : $minimum; |
|
670 | 670 | } |
671 | 671 | |
672 | 672 | /** |
@@ -676,8 +676,8 @@ discard block |
||
676 | 676 | * @param string $context View or edit context. |
677 | 677 | * @return float |
678 | 678 | */ |
679 | - public function get_minimum_total( $context = 'view' ) { |
|
680 | - return $this->get_min_total( $context ); |
|
679 | + public function get_minimum_total($context = 'view') { |
|
680 | + return $this->get_min_total($context); |
|
681 | 681 | } |
682 | 682 | |
683 | 683 | /** |
@@ -687,9 +687,9 @@ discard block |
||
687 | 687 | * @param string $context View or edit context. |
688 | 688 | * @return float |
689 | 689 | */ |
690 | - public function get_max_total( $context = 'view' ) { |
|
691 | - $maximum = $this->get_prop( 'max_total', $context ); |
|
692 | - return empty( $maximum ) ? null : $maximum; |
|
690 | + public function get_max_total($context = 'view') { |
|
691 | + $maximum = $this->get_prop('max_total', $context); |
|
692 | + return empty($maximum) ? null : $maximum; |
|
693 | 693 | } |
694 | 694 | |
695 | 695 | /** |
@@ -699,8 +699,8 @@ discard block |
||
699 | 699 | * @param string $context View or edit context. |
700 | 700 | * @return float |
701 | 701 | */ |
702 | - public function get_maximum_total( $context = 'view' ) { |
|
703 | - return $this->get_max_total( $context ); |
|
702 | + public function get_maximum_total($context = 'view') { |
|
703 | + return $this->get_max_total($context); |
|
704 | 704 | } |
705 | 705 | |
706 | 706 | /** |
@@ -713,8 +713,8 @@ discard block |
||
713 | 713 | * @param string $context View or edit context. |
714 | 714 | * @return mixed Value of the given discount property (if set). |
715 | 715 | */ |
716 | - public function get( $key, $context = 'view' ) { |
|
717 | - return $this->get_prop( $key, $context ); |
|
716 | + public function get($key, $context = 'view') { |
|
717 | + return $this->get_prop($key, $context); |
|
718 | 718 | } |
719 | 719 | |
720 | 720 | /* |
@@ -734,10 +734,10 @@ discard block |
||
734 | 734 | * @param string $status New status. |
735 | 735 | * @return array details of change. |
736 | 736 | */ |
737 | - public function set_status( $status ) { |
|
737 | + public function set_status($status) { |
|
738 | 738 | $old_status = $this->get_status(); |
739 | 739 | |
740 | - $this->set_prop( 'status', $status ); |
|
740 | + $this->set_prop('status', $status); |
|
741 | 741 | |
742 | 742 | return array( |
743 | 743 | 'from' => $old_status, |
@@ -750,8 +750,8 @@ discard block |
||
750 | 750 | * |
751 | 751 | * @since 1.0.19 |
752 | 752 | */ |
753 | - public function set_version( $value ) { |
|
754 | - $this->set_prop( 'version', $value ); |
|
753 | + public function set_version($value) { |
|
754 | + $this->set_prop('version', $value); |
|
755 | 755 | } |
756 | 756 | |
757 | 757 | /** |
@@ -761,11 +761,11 @@ discard block |
||
761 | 761 | * @param string $value Value to set. |
762 | 762 | * @return bool Whether or not the date was set. |
763 | 763 | */ |
764 | - public function set_date_created( $value ) { |
|
765 | - $date = strtotime( $value ); |
|
764 | + public function set_date_created($value) { |
|
765 | + $date = strtotime($value); |
|
766 | 766 | |
767 | - if ( $date ) { |
|
768 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
767 | + if ($date) { |
|
768 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
769 | 769 | return true; |
770 | 770 | } |
771 | 771 | |
@@ -780,11 +780,11 @@ discard block |
||
780 | 780 | * @param string $value Value to set. |
781 | 781 | * @return bool Whether or not the date was set. |
782 | 782 | */ |
783 | - public function set_date_modified( $value ) { |
|
784 | - $date = strtotime( $value ); |
|
783 | + public function set_date_modified($value) { |
|
784 | + $date = strtotime($value); |
|
785 | 785 | |
786 | - if ( $date ) { |
|
787 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
786 | + if ($date) { |
|
787 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
788 | 788 | return true; |
789 | 789 | } |
790 | 790 | |
@@ -798,9 +798,9 @@ discard block |
||
798 | 798 | * @since 1.0.19 |
799 | 799 | * @param string $value New name. |
800 | 800 | */ |
801 | - public function set_name( $value ) { |
|
802 | - $name = sanitize_text_field( $value ); |
|
803 | - $this->set_prop( 'name', $name ); |
|
801 | + public function set_name($value) { |
|
802 | + $name = sanitize_text_field($value); |
|
803 | + $this->set_prop('name', $name); |
|
804 | 804 | } |
805 | 805 | |
806 | 806 | /** |
@@ -809,8 +809,8 @@ discard block |
||
809 | 809 | * @since 1.0.19 |
810 | 810 | * @param string $value New name. |
811 | 811 | */ |
812 | - public function set_title( $value ) { |
|
813 | - $this->set_name( $value ); |
|
812 | + public function set_title($value) { |
|
813 | + $this->set_name($value); |
|
814 | 814 | } |
815 | 815 | |
816 | 816 | /** |
@@ -819,9 +819,9 @@ discard block |
||
819 | 819 | * @since 1.0.19 |
820 | 820 | * @param string $value New description. |
821 | 821 | */ |
822 | - public function set_description( $value ) { |
|
823 | - $description = wp_kses_post( $value ); |
|
824 | - return $this->set_prop( 'description', $description ); |
|
822 | + public function set_description($value) { |
|
823 | + $description = wp_kses_post($value); |
|
824 | + return $this->set_prop('description', $description); |
|
825 | 825 | } |
826 | 826 | |
827 | 827 | /** |
@@ -830,8 +830,8 @@ discard block |
||
830 | 830 | * @since 1.0.19 |
831 | 831 | * @param string $value New description. |
832 | 832 | */ |
833 | - public function set_excerpt( $value ) { |
|
834 | - $this->set_description( $value ); |
|
833 | + public function set_excerpt($value) { |
|
834 | + $this->set_description($value); |
|
835 | 835 | } |
836 | 836 | |
837 | 837 | /** |
@@ -840,8 +840,8 @@ discard block |
||
840 | 840 | * @since 1.0.19 |
841 | 841 | * @param string $value New description. |
842 | 842 | */ |
843 | - public function set_summary( $value ) { |
|
844 | - $this->set_description( $value ); |
|
843 | + public function set_summary($value) { |
|
844 | + $this->set_description($value); |
|
845 | 845 | } |
846 | 846 | |
847 | 847 | /** |
@@ -850,8 +850,8 @@ discard block |
||
850 | 850 | * @since 1.0.19 |
851 | 851 | * @param int $value New author. |
852 | 852 | */ |
853 | - public function set_author( $value ) { |
|
854 | - $this->set_prop( 'author', (int) $value ); |
|
853 | + public function set_author($value) { |
|
854 | + $this->set_prop('author', (int) $value); |
|
855 | 855 | } |
856 | 856 | |
857 | 857 | /** |
@@ -860,9 +860,9 @@ discard block |
||
860 | 860 | * @since 1.0.19 |
861 | 861 | * @param string $value New discount code. |
862 | 862 | */ |
863 | - public function set_code( $value ) { |
|
864 | - $code = sanitize_text_field( $value ); |
|
865 | - $this->set_prop( 'code', $code ); |
|
863 | + public function set_code($value) { |
|
864 | + $code = sanitize_text_field($value); |
|
865 | + $this->set_prop('code', $code); |
|
866 | 866 | } |
867 | 867 | |
868 | 868 | /** |
@@ -871,8 +871,8 @@ discard block |
||
871 | 871 | * @since 1.0.19 |
872 | 872 | * @param string $value New discount code. |
873 | 873 | */ |
874 | - public function set_coupon_code( $value ) { |
|
875 | - $this->set_code( $value ); |
|
874 | + public function set_coupon_code($value) { |
|
875 | + $this->set_code($value); |
|
876 | 876 | } |
877 | 877 | |
878 | 878 | /** |
@@ -881,8 +881,8 @@ discard block |
||
881 | 881 | * @since 1.0.19 |
882 | 882 | * @param string $value New discount code. |
883 | 883 | */ |
884 | - public function set_discount_code( $value ) { |
|
885 | - $this->set_code( $value ); |
|
884 | + public function set_discount_code($value) { |
|
885 | + $this->set_code($value); |
|
886 | 886 | } |
887 | 887 | |
888 | 888 | /** |
@@ -891,9 +891,9 @@ discard block |
||
891 | 891 | * @since 1.0.19 |
892 | 892 | * @param float $value New discount code. |
893 | 893 | */ |
894 | - public function set_amount( $value ) { |
|
895 | - $amount = floatval( wpinv_sanitize_amount( $value ) ); |
|
896 | - $this->set_prop( 'amount', $amount ); |
|
894 | + public function set_amount($value) { |
|
895 | + $amount = floatval(wpinv_sanitize_amount($value)); |
|
896 | + $this->set_prop('amount', $amount); |
|
897 | 897 | } |
898 | 898 | |
899 | 899 | /** |
@@ -902,15 +902,15 @@ discard block |
||
902 | 902 | * @since 1.0.19 |
903 | 903 | * @param float $value New start date. |
904 | 904 | */ |
905 | - public function set_start( $value ) { |
|
906 | - $date = strtotime( $value ); |
|
905 | + public function set_start($value) { |
|
906 | + $date = strtotime($value); |
|
907 | 907 | |
908 | - if ( $date ) { |
|
909 | - $this->set_prop( 'start', date( 'Y-m-d H:i', $date ) ); |
|
908 | + if ($date) { |
|
909 | + $this->set_prop('start', date('Y-m-d H:i', $date)); |
|
910 | 910 | return true; |
911 | 911 | } |
912 | 912 | |
913 | - $this->set_prop( 'start', '' ); |
|
913 | + $this->set_prop('start', ''); |
|
914 | 914 | |
915 | 915 | return false; |
916 | 916 | } |
@@ -921,8 +921,8 @@ discard block |
||
921 | 921 | * @since 1.0.19 |
922 | 922 | * @param string $value New start date. |
923 | 923 | */ |
924 | - public function set_start_date( $value ) { |
|
925 | - $this->set_start( $value ); |
|
924 | + public function set_start_date($value) { |
|
925 | + $this->set_start($value); |
|
926 | 926 | } |
927 | 927 | |
928 | 928 | /** |
@@ -931,15 +931,15 @@ discard block |
||
931 | 931 | * @since 1.0.19 |
932 | 932 | * @param float $value New expiration date. |
933 | 933 | */ |
934 | - public function set_expiration( $value ) { |
|
935 | - $date = strtotime( $value ); |
|
934 | + public function set_expiration($value) { |
|
935 | + $date = strtotime($value); |
|
936 | 936 | |
937 | - if ( $date ) { |
|
938 | - $this->set_prop( 'expiration', date( 'Y-m-d H:i', $date ) ); |
|
937 | + if ($date) { |
|
938 | + $this->set_prop('expiration', date('Y-m-d H:i', $date)); |
|
939 | 939 | return true; |
940 | 940 | } |
941 | 941 | |
942 | - $this->set_prop( 'expiration', '' ); |
|
942 | + $this->set_prop('expiration', ''); |
|
943 | 943 | return false; |
944 | 944 | } |
945 | 945 | |
@@ -949,8 +949,8 @@ discard block |
||
949 | 949 | * @since 1.0.19 |
950 | 950 | * @param string $value New expiration date. |
951 | 951 | */ |
952 | - public function set_expiration_date( $value ) { |
|
953 | - $this->set_expiration( $value ); |
|
952 | + public function set_expiration_date($value) { |
|
953 | + $this->set_expiration($value); |
|
954 | 954 | } |
955 | 955 | |
956 | 956 | /** |
@@ -959,8 +959,8 @@ discard block |
||
959 | 959 | * @since 1.0.19 |
960 | 960 | * @param string $value New expiration date. |
961 | 961 | */ |
962 | - public function set_end_date( $value ) { |
|
963 | - $this->set_expiration( $value ); |
|
962 | + public function set_end_date($value) { |
|
963 | + $this->set_expiration($value); |
|
964 | 964 | } |
965 | 965 | |
966 | 966 | /** |
@@ -969,9 +969,9 @@ discard block |
||
969 | 969 | * @since 1.0.19 |
970 | 970 | * @param string $value New discount type. |
971 | 971 | */ |
972 | - public function set_type( $value ) { |
|
973 | - if ( $value && array_key_exists( sanitize_text_field( $value ), wpinv_get_discount_types() ) ) { |
|
974 | - $this->set_prop( 'type', sanitize_text_field( $value ) ); |
|
972 | + public function set_type($value) { |
|
973 | + if ($value && array_key_exists(sanitize_text_field($value), wpinv_get_discount_types())) { |
|
974 | + $this->set_prop('type', sanitize_text_field($value)); |
|
975 | 975 | } |
976 | 976 | } |
977 | 977 | |
@@ -981,15 +981,15 @@ discard block |
||
981 | 981 | * @since 1.0.19 |
982 | 982 | * @param int $value usage count. |
983 | 983 | */ |
984 | - public function set_uses( $value ) { |
|
984 | + public function set_uses($value) { |
|
985 | 985 | |
986 | 986 | $value = (int) $value; |
987 | 987 | |
988 | - if ( $value < 0 ) { |
|
988 | + if ($value < 0) { |
|
989 | 989 | $value = 0; |
990 | 990 | } |
991 | 991 | |
992 | - $this->set_prop( 'uses', (int) $value ); |
|
992 | + $this->set_prop('uses', (int) $value); |
|
993 | 993 | } |
994 | 994 | |
995 | 995 | /** |
@@ -998,8 +998,8 @@ discard block |
||
998 | 998 | * @since 1.0.19 |
999 | 999 | * @param int $value maximum usage count. |
1000 | 1000 | */ |
1001 | - public function set_max_uses( $value ) { |
|
1002 | - $this->set_prop( 'max_uses', absint( $value ) ); |
|
1001 | + public function set_max_uses($value) { |
|
1002 | + $this->set_prop('max_uses', absint($value)); |
|
1003 | 1003 | } |
1004 | 1004 | |
1005 | 1005 | /** |
@@ -1008,8 +1008,8 @@ discard block |
||
1008 | 1008 | * @since 1.0.19 |
1009 | 1009 | * @param int|bool $value is single use. |
1010 | 1010 | */ |
1011 | - public function set_is_single_use( $value ) { |
|
1012 | - $this->set_prop( 'is_single_use', (bool) $value ); |
|
1011 | + public function set_is_single_use($value) { |
|
1012 | + $this->set_prop('is_single_use', (bool) $value); |
|
1013 | 1013 | } |
1014 | 1014 | |
1015 | 1015 | /** |
@@ -1018,8 +1018,8 @@ discard block |
||
1018 | 1018 | * @since 1.0.19 |
1019 | 1019 | * @param array $value items. |
1020 | 1020 | */ |
1021 | - public function set_items( $value ) { |
|
1022 | - $this->set_prop( 'items', wpinv_parse_list( $value ) ); |
|
1021 | + public function set_items($value) { |
|
1022 | + $this->set_prop('items', wpinv_parse_list($value)); |
|
1023 | 1023 | } |
1024 | 1024 | |
1025 | 1025 | /** |
@@ -1028,8 +1028,8 @@ discard block |
||
1028 | 1028 | * @since 1.0.19 |
1029 | 1029 | * @param array $value items. |
1030 | 1030 | */ |
1031 | - public function set_allowed_items( $value ) { |
|
1032 | - $this->set_items( $value ); |
|
1031 | + public function set_allowed_items($value) { |
|
1032 | + $this->set_items($value); |
|
1033 | 1033 | } |
1034 | 1034 | |
1035 | 1035 | /** |
@@ -1038,8 +1038,8 @@ discard block |
||
1038 | 1038 | * @since 1.0.19 |
1039 | 1039 | * @param array $value items. |
1040 | 1040 | */ |
1041 | - public function set_excluded_items( $value ) { |
|
1042 | - $this->set_prop( 'excluded_items', wpinv_parse_list( $value ) ); |
|
1041 | + public function set_excluded_items($value) { |
|
1042 | + $this->set_prop('excluded_items', wpinv_parse_list($value)); |
|
1043 | 1043 | } |
1044 | 1044 | |
1045 | 1045 | /** |
@@ -1048,8 +1048,8 @@ discard block |
||
1048 | 1048 | * @since 1.0.19 |
1049 | 1049 | * @param int|bool $value is recurring. |
1050 | 1050 | */ |
1051 | - public function set_is_recurring( $value ) { |
|
1052 | - $this->set_prop( 'is_recurring', (bool) $value ); |
|
1051 | + public function set_is_recurring($value) { |
|
1052 | + $this->set_prop('is_recurring', (bool) $value); |
|
1053 | 1053 | } |
1054 | 1054 | |
1055 | 1055 | /** |
@@ -1058,8 +1058,8 @@ discard block |
||
1058 | 1058 | * @since 1.0.19 |
1059 | 1059 | * @param float $value minimum total. |
1060 | 1060 | */ |
1061 | - public function set_min_total( $value ) { |
|
1062 | - $this->set_prop( 'min_total', (float) wpinv_sanitize_amount( $value ) ); |
|
1061 | + public function set_min_total($value) { |
|
1062 | + $this->set_prop('min_total', (float) wpinv_sanitize_amount($value)); |
|
1063 | 1063 | } |
1064 | 1064 | |
1065 | 1065 | /** |
@@ -1068,8 +1068,8 @@ discard block |
||
1068 | 1068 | * @since 1.0.19 |
1069 | 1069 | * @param float $value minimum total. |
1070 | 1070 | */ |
1071 | - public function set_minimum_total( $value ) { |
|
1072 | - $this->set_min_total( $value ); |
|
1071 | + public function set_minimum_total($value) { |
|
1072 | + $this->set_min_total($value); |
|
1073 | 1073 | } |
1074 | 1074 | |
1075 | 1075 | /** |
@@ -1078,8 +1078,8 @@ discard block |
||
1078 | 1078 | * @since 1.0.19 |
1079 | 1079 | * @param float $value maximum total. |
1080 | 1080 | */ |
1081 | - public function set_max_total( $value ) { |
|
1082 | - $this->set_prop( 'max_total', (float) wpinv_sanitize_amount( $value ) ); |
|
1081 | + public function set_max_total($value) { |
|
1082 | + $this->set_prop('max_total', (float) wpinv_sanitize_amount($value)); |
|
1083 | 1083 | } |
1084 | 1084 | |
1085 | 1085 | /** |
@@ -1088,23 +1088,23 @@ discard block |
||
1088 | 1088 | * @since 1.0.19 |
1089 | 1089 | * @param float $value maximum total. |
1090 | 1090 | */ |
1091 | - public function set_maximum_total( $value ) { |
|
1092 | - $this->set_max_total( $value ); |
|
1091 | + public function set_maximum_total($value) { |
|
1092 | + $this->set_max_total($value); |
|
1093 | 1093 | } |
1094 | 1094 | |
1095 | 1095 | /** |
1096 | 1096 | * @deprecated |
1097 | 1097 | */ |
1098 | - public function refresh(){} |
|
1098 | + public function refresh() {} |
|
1099 | 1099 | |
1100 | 1100 | /** |
1101 | 1101 | * @deprecated |
1102 | 1102 | * |
1103 | 1103 | */ |
1104 | - public function update_status( $status = 'publish' ){ |
|
1104 | + public function update_status($status = 'publish') { |
|
1105 | 1105 | |
1106 | - if ( $this->exists() && $this->get_status() != $status ) { |
|
1107 | - $this->set_status( $status ); |
|
1106 | + if ($this->exists() && $this->get_status() != $status) { |
|
1107 | + $this->set_status($status); |
|
1108 | 1108 | $this->save(); |
1109 | 1109 | } |
1110 | 1110 | |
@@ -1124,9 +1124,9 @@ discard block |
||
1124 | 1124 | * |
1125 | 1125 | * @since 1.0.15 |
1126 | 1126 | */ |
1127 | - public function exists(){ |
|
1127 | + public function exists() { |
|
1128 | 1128 | $id = $this->get_id(); |
1129 | - return ! empty( $id ); |
|
1129 | + return !empty($id); |
|
1130 | 1130 | } |
1131 | 1131 | |
1132 | 1132 | /** |
@@ -1137,7 +1137,7 @@ discard block |
||
1137 | 1137 | * @since 1.0.15 |
1138 | 1138 | * @return bool |
1139 | 1139 | */ |
1140 | - public function is_type( $type ) { |
|
1140 | + public function is_type($type) { |
|
1141 | 1141 | return $this->get_type() == $type; |
1142 | 1142 | } |
1143 | 1143 | |
@@ -1159,7 +1159,7 @@ discard block |
||
1159 | 1159 | */ |
1160 | 1160 | public function has_limit() { |
1161 | 1161 | $limit = $this->get_max_uses(); |
1162 | - return ! empty( $limit ); |
|
1162 | + return !empty($limit); |
|
1163 | 1163 | } |
1164 | 1164 | |
1165 | 1165 | /** |
@@ -1180,13 +1180,13 @@ discard block |
||
1180 | 1180 | */ |
1181 | 1181 | public function has_exceeded_limit() { |
1182 | 1182 | |
1183 | - if ( ! $this->has_limit() || ! $this->has_uses() ) { |
|
1184 | - $exceeded = false ; |
|
1183 | + if (!$this->has_limit() || !$this->has_uses()) { |
|
1184 | + $exceeded = false; |
|
1185 | 1185 | } else { |
1186 | 1186 | $exceeded = (int) $this->get_max_uses() <= $this->get_uses(); |
1187 | 1187 | } |
1188 | 1188 | |
1189 | - return apply_filters( 'wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code() ); |
|
1189 | + return apply_filters('wpinv_is_discount_maxed_out', $exceeded, $this->get_id(), $this, $this->get_code()); |
|
1190 | 1190 | } |
1191 | 1191 | |
1192 | 1192 | /** |
@@ -1197,7 +1197,7 @@ discard block |
||
1197 | 1197 | */ |
1198 | 1198 | public function has_expiration_date() { |
1199 | 1199 | $date = $this->get_expiration_date(); |
1200 | - return ! empty( $date ); |
|
1200 | + return !empty($date); |
|
1201 | 1201 | } |
1202 | 1202 | |
1203 | 1203 | /** |
@@ -1207,8 +1207,8 @@ discard block |
||
1207 | 1207 | * @return bool |
1208 | 1208 | */ |
1209 | 1209 | public function is_expired() { |
1210 | - $expired = $this->has_expiration_date() ? current_time( 'timestamp' ) > strtotime( $this->get_expiration_date() ) : false; |
|
1211 | - return apply_filters( 'wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code() ); |
|
1210 | + $expired = $this->has_expiration_date() ? current_time('timestamp') > strtotime($this->get_expiration_date()) : false; |
|
1211 | + return apply_filters('wpinv_is_discount_expired', $expired, $this->get_id(), $this, $this->get_code()); |
|
1212 | 1212 | } |
1213 | 1213 | |
1214 | 1214 | /** |
@@ -1219,7 +1219,7 @@ discard block |
||
1219 | 1219 | */ |
1220 | 1220 | public function has_start_date() { |
1221 | 1221 | $date = $this->get_start_date(); |
1222 | - return ! empty( $date ); |
|
1222 | + return !empty($date); |
|
1223 | 1223 | } |
1224 | 1224 | |
1225 | 1225 | /** |
@@ -1229,8 +1229,8 @@ discard block |
||
1229 | 1229 | * @return bool |
1230 | 1230 | */ |
1231 | 1231 | public function has_started() { |
1232 | - $started = $this->has_start_date() ? true : current_time( 'timestamp' ) > strtotime( $this->get_start_date() ); |
|
1233 | - return apply_filters( 'wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code() ); |
|
1232 | + $started = $this->has_start_date() ? true : current_time('timestamp') > strtotime($this->get_start_date()); |
|
1233 | + return apply_filters('wpinv_is_discount_started', $started, $this->get_id(), $this, $this->get_code()); |
|
1234 | 1234 | } |
1235 | 1235 | |
1236 | 1236 | /** |
@@ -1241,7 +1241,7 @@ discard block |
||
1241 | 1241 | */ |
1242 | 1242 | public function has_allowed_items() { |
1243 | 1243 | $allowed_items = $this->get_allowed_items(); |
1244 | - return ! empty( $allowed_items ); |
|
1244 | + return !empty($allowed_items); |
|
1245 | 1245 | } |
1246 | 1246 | |
1247 | 1247 | /** |
@@ -1252,7 +1252,7 @@ discard block |
||
1252 | 1252 | */ |
1253 | 1253 | public function has_excluded_items() { |
1254 | 1254 | $excluded_items = $this->get_excluded_items(); |
1255 | - return ! empty( $excluded_items ); |
|
1255 | + return !empty($excluded_items); |
|
1256 | 1256 | } |
1257 | 1257 | |
1258 | 1258 | /** |
@@ -1262,17 +1262,17 @@ discard block |
||
1262 | 1262 | * @since 1.0.15 |
1263 | 1263 | * @return boolean |
1264 | 1264 | */ |
1265 | - public function is_valid_for_items( $item_ids ) { |
|
1265 | + public function is_valid_for_items($item_ids) { |
|
1266 | 1266 | |
1267 | - $item_ids = wp_parse_id_list( $item_ids ); |
|
1268 | - $included = array_intersect( $item_ids, $this->get_allowed_items() ); |
|
1269 | - $excluded = array_intersect( $item_ids, $this->get_excluded_items() ); |
|
1267 | + $item_ids = wp_parse_id_list($item_ids); |
|
1268 | + $included = array_intersect($item_ids, $this->get_allowed_items()); |
|
1269 | + $excluded = array_intersect($item_ids, $this->get_excluded_items()); |
|
1270 | 1270 | |
1271 | - if ( $this->has_excluded_items() && ! empty( $excluded ) ) { |
|
1271 | + if ($this->has_excluded_items() && !empty($excluded)) { |
|
1272 | 1272 | return false; |
1273 | 1273 | } |
1274 | 1274 | |
1275 | - if ( $this->has_allowed_items() && empty( $included ) ) { |
|
1275 | + if ($this->has_allowed_items() && empty($included)) { |
|
1276 | 1276 | return false; |
1277 | 1277 | } |
1278 | 1278 | |
@@ -1286,8 +1286,8 @@ discard block |
||
1286 | 1286 | * @since 1.0.15 |
1287 | 1287 | * @return boolean |
1288 | 1288 | */ |
1289 | - public function is_valid_for_amount( $amount ) { |
|
1290 | - return $this->is_minimum_amount_met( $amount ) && $this->is_maximum_amount_met( $amount ); |
|
1289 | + public function is_valid_for_amount($amount) { |
|
1290 | + return $this->is_minimum_amount_met($amount) && $this->is_maximum_amount_met($amount); |
|
1291 | 1291 | } |
1292 | 1292 | |
1293 | 1293 | /** |
@@ -1298,7 +1298,7 @@ discard block |
||
1298 | 1298 | */ |
1299 | 1299 | public function has_minimum_amount() { |
1300 | 1300 | $minimum = $this->get_minimum_total(); |
1301 | - return ! empty( $minimum ); |
|
1301 | + return !empty($minimum); |
|
1302 | 1302 | } |
1303 | 1303 | |
1304 | 1304 | /** |
@@ -1308,10 +1308,10 @@ discard block |
||
1308 | 1308 | * @since 1.0.15 |
1309 | 1309 | * @return boolean |
1310 | 1310 | */ |
1311 | - public function is_minimum_amount_met( $amount ) { |
|
1312 | - $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
1313 | - $min_met= ! ( $this->has_minimum_amount() && $amount < floatval( wpinv_sanitize_amount( $this->get_minimum_total() ) ) ); |
|
1314 | - return apply_filters( 'wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
1311 | + public function is_minimum_amount_met($amount) { |
|
1312 | + $amount = floatval(wpinv_sanitize_amount($amount)); |
|
1313 | + $min_met = !($this->has_minimum_amount() && $amount < floatval(wpinv_sanitize_amount($this->get_minimum_total()))); |
|
1314 | + return apply_filters('wpinv_is_discount_min_met', $min_met, $this->get_id(), $this, $this->get_code(), $amount); |
|
1315 | 1315 | } |
1316 | 1316 | |
1317 | 1317 | /** |
@@ -1322,7 +1322,7 @@ discard block |
||
1322 | 1322 | */ |
1323 | 1323 | public function has_maximum_amount() { |
1324 | 1324 | $maximum = $this->get_maximum_total(); |
1325 | - return ! empty( $maximum ); |
|
1325 | + return !empty($maximum); |
|
1326 | 1326 | } |
1327 | 1327 | |
1328 | 1328 | /** |
@@ -1332,10 +1332,10 @@ discard block |
||
1332 | 1332 | * @since 1.0.15 |
1333 | 1333 | * @return boolean |
1334 | 1334 | */ |
1335 | - public function is_maximum_amount_met( $amount ) { |
|
1336 | - $amount = floatval( wpinv_sanitize_amount( $amount ) ); |
|
1337 | - $max_met= ! ( $this->has_maximum_amount() && $amount > floatval( wpinv_sanitize_amount( $this->get_maximum_total() ) ) ); |
|
1338 | - return apply_filters( 'wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount ); |
|
1335 | + public function is_maximum_amount_met($amount) { |
|
1336 | + $amount = floatval(wpinv_sanitize_amount($amount)); |
|
1337 | + $max_met = !($this->has_maximum_amount() && $amount > floatval(wpinv_sanitize_amount($this->get_maximum_total()))); |
|
1338 | + return apply_filters('wpinv_is_discount_max_met', $max_met, $this->get_id(), $this, $this->get_code(), $amount); |
|
1339 | 1339 | } |
1340 | 1340 | |
1341 | 1341 | /** |
@@ -1346,7 +1346,7 @@ discard block |
||
1346 | 1346 | */ |
1347 | 1347 | public function is_recurring() { |
1348 | 1348 | $recurring = $this->get_is_recurring(); |
1349 | - return ! empty( $recurring ); |
|
1349 | + return !empty($recurring); |
|
1350 | 1350 | } |
1351 | 1351 | |
1352 | 1352 | /** |
@@ -1357,7 +1357,7 @@ discard block |
||
1357 | 1357 | */ |
1358 | 1358 | public function is_single_use() { |
1359 | 1359 | $usage = $this->get_is_single_use(); |
1360 | - return ! empty( $usage ); |
|
1360 | + return !empty($usage); |
|
1361 | 1361 | } |
1362 | 1362 | |
1363 | 1363 | /** |
@@ -1367,37 +1367,37 @@ discard block |
||
1367 | 1367 | * @since 1.0.15 |
1368 | 1368 | * @return boolean |
1369 | 1369 | */ |
1370 | - public function is_valid_for_user( $user ) { |
|
1370 | + public function is_valid_for_user($user) { |
|
1371 | 1371 | |
1372 | 1372 | // Ensure that the discount is single use. |
1373 | - if ( empty( $user ) || ! $this->is_single_use() ) { |
|
1373 | + if (empty($user) || !$this->is_single_use()) { |
|
1374 | 1374 | return true; |
1375 | 1375 | } |
1376 | 1376 | |
1377 | 1377 | // Prepare the user id. |
1378 | 1378 | $user_id = 0; |
1379 | - if ( is_numeric( $user ) ) { |
|
1380 | - $user_id = absint( $user ); |
|
1381 | - } else if ( is_email( $user ) && $user_data = get_user_by( 'email', $user ) ) { |
|
1379 | + if (is_numeric($user)) { |
|
1380 | + $user_id = absint($user); |
|
1381 | + } else if (is_email($user) && $user_data = get_user_by('email', $user)) { |
|
1382 | 1382 | $user_id = $user_data->ID; |
1383 | - } else if ( $user_data = get_user_by( 'login', $user ) ) { |
|
1383 | + } else if ($user_data = get_user_by('login', $user)) { |
|
1384 | 1384 | $user_id = $user_data->ID; |
1385 | 1385 | } |
1386 | 1386 | |
1387 | 1387 | // Ensure that we have a user. |
1388 | - if ( empty( $user_id ) ) { |
|
1388 | + if (empty($user_id)) { |
|
1389 | 1389 | return true; |
1390 | 1390 | } |
1391 | 1391 | |
1392 | 1392 | // Get all payments with matching user id. |
1393 | - $payments = wpinv_get_invoices( array( 'user' => $user_id, 'limit' => false, 'paginate' => false ) ); |
|
1394 | - $code = strtolower( $this->get_code() ); |
|
1393 | + $payments = wpinv_get_invoices(array('user' => $user_id, 'limit' => false, 'paginate' => false)); |
|
1394 | + $code = strtolower($this->get_code()); |
|
1395 | 1395 | |
1396 | 1396 | // For each payment... |
1397 | - foreach ( $payments as $payment ) { |
|
1397 | + foreach ($payments as $payment) { |
|
1398 | 1398 | |
1399 | 1399 | // Only check for paid invoices. |
1400 | - if ( $payment->is_paid() && strtolower( $payment->get_discount_code() ) == $code ) { |
|
1400 | + if ($payment->is_paid() && strtolower($payment->get_discount_code()) == $code) { |
|
1401 | 1401 | return false; |
1402 | 1402 | } |
1403 | 1403 | |
@@ -1423,24 +1423,24 @@ discard block |
||
1423 | 1423 | * @param int $by The number of usages to increas by. |
1424 | 1424 | * @return int |
1425 | 1425 | */ |
1426 | - public function increase_usage( $by = 1 ) { |
|
1426 | + public function increase_usage($by = 1) { |
|
1427 | 1427 | |
1428 | 1428 | // Abort if zero. |
1429 | - if ( empty( $by ) ) { |
|
1429 | + if (empty($by)) { |
|
1430 | 1430 | return; |
1431 | 1431 | } |
1432 | 1432 | |
1433 | 1433 | // Increase the usage. |
1434 | - $this->set_uses( $this->get_uses() + (int) $by ); |
|
1434 | + $this->set_uses($this->get_uses() + (int) $by); |
|
1435 | 1435 | |
1436 | 1436 | // Save the discount. |
1437 | 1437 | $this->save(); |
1438 | 1438 | |
1439 | 1439 | // Fire relevant hooks. |
1440 | - if( (int) $by > 0 ) { |
|
1441 | - do_action( 'wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
1440 | + if ((int) $by > 0) { |
|
1441 | + do_action('wpinv_discount_increase_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint($by)); |
|
1442 | 1442 | } else { |
1443 | - do_action( 'wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint( $by ) ); |
|
1443 | + do_action('wpinv_discount_decrease_use_count', $this->get_uses(), $this->get_id(), $this->get_code(), absint($by)); |
|
1444 | 1444 | } |
1445 | 1445 | |
1446 | 1446 | // Return the number of times the discount has been used. |
@@ -1464,7 +1464,7 @@ discard block |
||
1464 | 1464 | * @param float $amount |
1465 | 1465 | * @return float |
1466 | 1466 | */ |
1467 | - public function get_discounted_amount( $amount ) { |
|
1467 | + public function get_discounted_amount($amount) { |
|
1468 | 1468 | |
1469 | 1469 | // Convert amount to float. |
1470 | 1470 | $amount = (float) $amount; |
@@ -1472,29 +1472,29 @@ discard block |
||
1472 | 1472 | // Get discount amount. |
1473 | 1473 | $discount_amount = $this->get_amount(); |
1474 | 1474 | |
1475 | - if ( empty( $discount_amount ) ) { |
|
1475 | + if (empty($discount_amount)) { |
|
1476 | 1476 | return 0; |
1477 | 1477 | } |
1478 | 1478 | |
1479 | 1479 | // Format the amount. |
1480 | - $discount_amount = floatval( wpinv_sanitize_amount( $discount_amount ) ); |
|
1480 | + $discount_amount = floatval(wpinv_sanitize_amount($discount_amount)); |
|
1481 | 1481 | |
1482 | 1482 | // If this is a percentage discount. |
1483 | - if ( $this->is_type( 'percent' ) ) { |
|
1484 | - $discount_amount = $amount * ( $discount_amount / 100 ); |
|
1483 | + if ($this->is_type('percent')) { |
|
1484 | + $discount_amount = $amount * ($discount_amount / 100); |
|
1485 | 1485 | } |
1486 | 1486 | |
1487 | 1487 | // Discount can not be less than zero... |
1488 | - if ( $discount_amount < 0 ) { |
|
1488 | + if ($discount_amount < 0) { |
|
1489 | 1489 | $discount_amount = 0; |
1490 | 1490 | } |
1491 | 1491 | |
1492 | 1492 | // ... or more than the amount. |
1493 | - if ( $discount_amount > $amount ) { |
|
1493 | + if ($discount_amount > $amount) { |
|
1494 | 1494 | $discount_amount = $amount; |
1495 | 1495 | } |
1496 | 1496 | |
1497 | - return apply_filters( 'wpinv_discount_total_discount_amount', $discount_amount, $amount, $this ); |
|
1497 | + return apply_filters('wpinv_discount_total_discount_amount', $discount_amount, $amount, $this); |
|
1498 | 1498 | } |
1499 | 1499 | |
1500 | 1500 | } |
@@ -7,44 +7,44 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // Make sure that the form is active. |
13 | -if ( ! $form->is_active() ) { |
|
13 | +if (!$form->is_active()) { |
|
14 | 14 | echo aui()->alert( |
15 | 15 | array( |
16 | 16 | 'type' => 'warning', |
17 | - 'content' => __( 'This payment form is no longer active', 'invoicing' ), |
|
17 | + 'content' => __('This payment form is no longer active', 'invoicing'), |
|
18 | 18 | ) |
19 | 19 | ); |
20 | 20 | return; |
21 | 21 | } |
22 | 22 | |
23 | 23 | // Fires before displaying a payment form. |
24 | -do_action( 'getpaid_before_payment_form', $form ); |
|
24 | +do_action('getpaid_before_payment_form', $form); |
|
25 | 25 | ?> |
26 | 26 | |
27 | -<form class='getpaid-payment-form getpaid-payment-form-<?php echo absint( $form->get_id() ); ?> bsui position-relative' method='POST' data-key='<?php echo uniqid('gpf'); ?>'> |
|
27 | +<form class='getpaid-payment-form getpaid-payment-form-<?php echo absint($form->get_id()); ?> bsui position-relative' method='POST' data-key='<?php echo uniqid('gpf'); ?>'> |
|
28 | 28 | |
29 | 29 | |
30 | 30 | <?php |
31 | 31 | |
32 | 32 | // Fires when printing the top of a payment form. |
33 | - do_action( 'getpaid_payment_form_top', $form ); |
|
33 | + do_action('getpaid_payment_form_top', $form); |
|
34 | 34 | |
35 | 35 | // And the optional invoice id. |
36 | - if ( ! empty( $form->invoice ) ) { |
|
37 | - echo getpaid_hidden_field( 'invoice_id', $form->invoice->get_id() ); |
|
36 | + if (!empty($form->invoice)) { |
|
37 | + echo getpaid_hidden_field('invoice_id', $form->invoice->get_id()); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | // We also want to include the form id. |
41 | - echo getpaid_hidden_field( 'form_id', $form->get_id() ); |
|
41 | + echo getpaid_hidden_field('form_id', $form->get_id()); |
|
42 | 42 | |
43 | 43 | // And an indication that this is a payment form submission. |
44 | - echo getpaid_hidden_field( 'getpaid_payment_form_submission', '1' ); |
|
44 | + echo getpaid_hidden_field('getpaid_payment_form_submission', '1'); |
|
45 | 45 | |
46 | 46 | // Fires before displaying payment form elements. |
47 | - do_action( 'getpaid_payment_form_before_elements', $form ); |
|
47 | + do_action('getpaid_payment_form_before_elements', $form); |
|
48 | 48 | |
49 | 49 | // Display the elements. |
50 | 50 | ?> |
@@ -52,13 +52,13 @@ discard block |
||
52 | 52 | <div class="row"> |
53 | 53 | <?php |
54 | 54 | |
55 | - foreach ( $form->get_elements() as $element ) { |
|
55 | + foreach ($form->get_elements() as $element) { |
|
56 | 56 | |
57 | - if ( isset( $element['type'] ) ) { |
|
58 | - $grid_class = esc_attr( getpaid_get_form_element_grid_class( $element ) ); |
|
57 | + if (isset($element['type'])) { |
|
58 | + $grid_class = esc_attr(getpaid_get_form_element_grid_class($element)); |
|
59 | 59 | echo "<div class='$grid_class'>"; |
60 | - do_action( 'getpaid_payment_form_element', $element, $form ); |
|
61 | - do_action( "getpaid_payment_form_element_{$element['type']}_template", $element, $form ); |
|
60 | + do_action('getpaid_payment_form_element', $element, $form); |
|
61 | + do_action("getpaid_payment_form_element_{$element['type']}_template", $element, $form); |
|
62 | 62 | echo "</div>"; |
63 | 63 | } |
64 | 64 | |
@@ -70,16 +70,16 @@ discard block |
||
70 | 70 | |
71 | 71 | <?php |
72 | 72 | // Fires after displaying payment form elements. |
73 | - do_action( 'getpaid_payment_form_after_elements', $form ); |
|
73 | + do_action('getpaid_payment_form_after_elements', $form); |
|
74 | 74 | |
75 | 75 | echo "<div class='getpaid-payment-form-errors alert alert-danger d-none'></div>"; |
76 | 76 | |
77 | - if ( wpinv_current_user_can_manage_invoicing() ) { |
|
77 | + if (wpinv_current_user_can_manage_invoicing()) { |
|
78 | 78 | |
79 | 79 | edit_post_link( |
80 | - __( 'Edit this form.', 'invoicing' ), |
|
80 | + __('Edit this form.', 'invoicing'), |
|
81 | 81 | '<small class="form-text text-muted">', |
82 | - ' ' . __( 'This is only visible to website administators.', 'invoicing' ) . '</small>', |
|
82 | + ' ' . __('This is only visible to website administators.', 'invoicing') . '</small>', |
|
83 | 83 | $form->get_id(), |
84 | 84 | 'text-danger' |
85 | 85 | ); |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | |
92 | 92 | <div class="loading_div overlay overlay-black position-absolute row m-0 rounded overflow-hidden" style="height: 100%;width: 100%;top: 0px;z-index: 2;display:none;"> |
93 | 93 | <div class="spinner-border mx-auto align-self-center text-white" role="status"> |
94 | - <span class="sr-only"><?php _e( 'Loading...', 'invoicing' );?></span> |
|
94 | + <span class="sr-only"><?php _e('Loading...', 'invoicing'); ?></span> |
|
95 | 95 | </div> |
96 | 96 | </div> |
97 | 97 | |
@@ -100,4 +100,4 @@ discard block |
||
100 | 100 | <?php |
101 | 101 | |
102 | 102 | // Fires after displaying a payment form. |
103 | -do_action( 'getpaid_after_payment_form', $form ); |
|
103 | +do_action('getpaid_after_payment_form', $form); |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if (!defined('ABSPATH')) { |
|
10 | 10 | exit; // Exit if accessed directly |
11 | 11 | } |
12 | 12 | |
@@ -20,14 +20,14 @@ discard block |
||
20 | 20 | * |
21 | 21 | * @param WP_Post $post |
22 | 22 | */ |
23 | - public static function output( $post ) { |
|
23 | + public static function output($post) { |
|
24 | 24 | ?> |
25 | 25 | <div id="wpinv-form-builder" class="bsui"> |
26 | 26 | <div class="row"> |
27 | 27 | <div class="col-sm-4"> |
28 | 28 | |
29 | 29 | <!-- Builder tabs --> |
30 | - <button class="button button-primary" v-if="active_tab!='new_item'" @click.prevent="active_tab='new_item'"><?php _e( 'Go Back', 'invoicing' ); ?></button> |
|
30 | + <button class="button button-primary" v-if="active_tab!='new_item'" @click.prevent="active_tab='new_item'"><?php _e('Go Back', 'invoicing'); ?></button> |
|
31 | 31 | |
32 | 32 | <!-- Builder tab content --> |
33 | 33 | <div class="mt-4"> |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | <!-- Available builder elements --> |
36 | 36 | <div class="wpinv-form-builder-tab-pane" v-if="active_tab=='new_item'"> |
37 | 37 | <div class="wpinv-form-builder-add-field-types"> |
38 | - <small class='form-text text-muted'><?php _e( 'Add an element by dragging it to the payment form.', 'invoicing' ); ?></small> |
|
38 | + <small class='form-text text-muted'><?php _e('Add an element by dragging it to the payment form.', 'invoicing'); ?></small> |
|
39 | 39 | <draggable class="section mt-2" style="display: flex; flex-flow: wrap; justify-content: space-between;" v-model="elements" :group="{ name: 'fields', pull: 'clone', put: false }" :sort="false" :clone="addDraggedField" tag="ul" filter=".wpinv-undraggable"> |
40 | 40 | <li v-for="element in elements" class= "wpinv-payment-form-left-fields-field" @click.prevent="addField(element)" :class="{ 'd-none': element.defaults.premade }"> |
41 | 41 | <button class="button btn text-dark"> |
@@ -50,18 +50,18 @@ discard block |
||
50 | 50 | <!-- Edit an element --> |
51 | 51 | <div class="wpinv-form-builder-tab-pane" v-if="active_tab=='edit_item'" style="font-size: 14px;"> |
52 | 52 | <div class="wpinv-form-builder-edit-field-wrapper"> |
53 | - <?php do_action( 'wpinv_payment_form_edit_element_template', 'active_form_element', $post ); ?> |
|
54 | - <?php do_action( 'getpaid_payment_form_edit_element_template', $post ); ?> |
|
53 | + <?php do_action('wpinv_payment_form_edit_element_template', 'active_form_element', $post); ?> |
|
54 | + <?php do_action('getpaid_payment_form_edit_element_template', $post); ?> |
|
55 | 55 | <div class='form-group'> |
56 | - <label :for="active_form_element.id + '_grid_width'"><?php esc_html_e( 'Width', 'invoicing' ) ?></label> |
|
56 | + <label :for="active_form_element.id + '_grid_width'"><?php esc_html_e('Width', 'invoicing') ?></label> |
|
57 | 57 | <select class='form-control custom-select' :id="active_form_element.id + '_grid_width'" v-model='gridWidth'> |
58 | - <option value='full'><?php esc_html_e( 'Full Width', 'invoicing' ); ?></option> |
|
59 | - <option value='half'><?php esc_html_e( 'Half Width', 'invoicing' ); ?></option> |
|
60 | - <option value='third'><?php esc_html_e( '1/3 Width', 'invoicing' ); ?></option> |
|
58 | + <option value='full'><?php esc_html_e('Full Width', 'invoicing'); ?></option> |
|
59 | + <option value='half'><?php esc_html_e('Half Width', 'invoicing'); ?></option> |
|
60 | + <option value='third'><?php esc_html_e('1/3 Width', 'invoicing'); ?></option> |
|
61 | 61 | </select> |
62 | 62 | </div> |
63 | 63 | <div> |
64 | - <button type="button" class="button button-link button-link-delete" @click.prevent="removeField(active_form_element)" v-show="! active_form_element.premade"><?php _e( 'Delete Element', 'invoicing' ); ?></button> |
|
64 | + <button type="button" class="button button-link button-link-delete" @click.prevent="removeField(active_form_element)" v-show="! active_form_element.premade"><?php _e('Delete Element', 'invoicing'); ?></button> |
|
65 | 65 | </div> |
66 | 66 | </div> |
67 | 67 | </div> |
@@ -70,15 +70,15 @@ discard block |
||
70 | 70 | |
71 | 71 | </div> |
72 | 72 | <div class="col-sm-8 border-left"> |
73 | - <small class='form-text text-muted' v-if='form_elements.length'><?php _e( 'Click on any element to edit or delete it.', 'invoicing' ); ?></small> |
|
74 | - <p class='form-text text-muted' v-if='! form_elements.length'><?php _e( 'This form is empty. Add new elements by dragging them from the right.', 'invoicing' ); ?></p> |
|
73 | + <small class='form-text text-muted' v-if='form_elements.length'><?php _e('Click on any element to edit or delete it.', 'invoicing'); ?></small> |
|
74 | + <p class='form-text text-muted' v-if='! form_elements.length'><?php _e('This form is empty. Add new elements by dragging them from the right.', 'invoicing'); ?></p> |
|
75 | 75 | |
76 | 76 | <div class="container-fluid"> |
77 | 77 | <draggable class="section row" v-model="form_elements" @add="highlightLastDroppedField" group="fields" tag="div" style="min-height: 100%; font-size: 14px;"> |
78 | 78 | <div v-for="form_element in form_elements" class="wpinv-form-builder-element-preview" :class="[{ active: active_form_element==form_element && active_tab=='edit_item' }, form_element.type, grid_class( form_element ) ]" @click="active_tab = 'edit_item'; active_form_element = form_element"> |
79 | 79 | <div class="wpinv-form-builder-element-preview-inner"> |
80 | 80 | <div class="wpinv-payment-form-field-preview-overlay"></div> |
81 | - <?php do_action( 'wpinv_payment_form_render_element_template', 'form_element', $post ); ?> |
|
81 | + <?php do_action('wpinv_payment_form_render_element_template', 'form_element', $post); ?> |
|
82 | 82 | </div> |
83 | 83 | </div> |
84 | 84 | </draggable> |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | </div> |
93 | 93 | <?php |
94 | 94 | |
95 | - wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
95 | + wp_nonce_field('getpaid_meta_nonce', 'getpaid_meta_nonce'); |
|
96 | 96 | } |
97 | 97 | |
98 | 98 | /** |
@@ -100,33 +100,33 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @param int $post_id |
102 | 102 | */ |
103 | - public static function save( $post_id ) { |
|
103 | + public static function save($post_id) { |
|
104 | 104 | |
105 | 105 | // Prepare the form. |
106 | - $form = new GetPaid_Payment_Form( $post_id ); |
|
106 | + $form = new GetPaid_Payment_Form($post_id); |
|
107 | 107 | |
108 | 108 | // Fetch form items. |
109 | - $form_items = json_decode( wp_unslash( $_POST['wpinv_form_items'] ), true ); |
|
109 | + $form_items = json_decode(wp_unslash($_POST['wpinv_form_items']), true); |
|
110 | 110 | |
111 | 111 | // Ensure that we have an array... |
112 | - if ( empty( $form_items ) ) { |
|
112 | + if (empty($form_items)) { |
|
113 | 113 | $form_items = array(); |
114 | 114 | } |
115 | 115 | |
116 | 116 | // Add it to the form. |
117 | - $form->set_items( self::item_to_objects( $form_items ) ); |
|
117 | + $form->set_items(self::item_to_objects($form_items)); |
|
118 | 118 | |
119 | 119 | // Save form elements. |
120 | - $form_elements = json_decode( wp_unslash( $_POST['wpinv_form_elements'] ), true ); |
|
121 | - if ( empty( $form_elements ) ) { |
|
120 | + $form_elements = json_decode(wp_unslash($_POST['wpinv_form_elements']), true); |
|
121 | + if (empty($form_elements)) { |
|
122 | 122 | $form_elements = array(); |
123 | 123 | } |
124 | 124 | |
125 | - $form->set_elements( $form_elements ); |
|
125 | + $form->set_elements($form_elements); |
|
126 | 126 | |
127 | 127 | // Persist data to the datastore. |
128 | 128 | $form->save(); |
129 | - do_action( 'getpaid_payment_form_metabox_save', $post_id, $form ); |
|
129 | + do_action('getpaid_payment_form_metabox_save', $post_id, $form); |
|
130 | 130 | |
131 | 131 | } |
132 | 132 | |
@@ -135,14 +135,14 @@ discard block |
||
135 | 135 | * |
136 | 136 | * @param array $items |
137 | 137 | */ |
138 | - public static function item_to_objects( $items ) { |
|
138 | + public static function item_to_objects($items) { |
|
139 | 139 | |
140 | 140 | $objects = array(); |
141 | 141 | |
142 | - foreach ( $items as $item ) { |
|
143 | - $_item = new GetPaid_Form_Item( $item['id'] ); |
|
144 | - $_item->set_allow_quantities( (bool) $item['allow_quantities'] ); |
|
145 | - $_item->set_is_required( (bool) $item['required'] ); |
|
142 | + foreach ($items as $item) { |
|
143 | + $_item = new GetPaid_Form_Item($item['id']); |
|
144 | + $_item->set_allow_quantities((bool) $item['allow_quantities']); |
|
145 | + $_item->set_is_required((bool) $item['required']); |
|
146 | 146 | $objects[] = $_item; |
147 | 147 | } |
148 | 148 |