@@ -10,61 +10,61 @@ discard block |
||
10 | 10 | * @var array $columns |
11 | 11 | */ |
12 | 12 | |
13 | -defined( 'ABSPATH' ) || exit; |
|
13 | +defined('ABSPATH') || exit; |
|
14 | 14 | |
15 | -do_action( 'getpaid_before_invoice_line_item', $invoice, $item ); |
|
15 | +do_action('getpaid_before_invoice_line_item', $invoice, $item); |
|
16 | 16 | |
17 | 17 | ?> |
18 | 18 | |
19 | -<div class='getpaid-invoice-item item-<?php echo (int) $item->get_id(); ?> item-type-<?php echo sanitize_html_class( $item->get_type() ); ?> border-bottom'> |
|
19 | +<div class='getpaid-invoice-item item-<?php echo (int) $item->get_id(); ?> item-type-<?php echo sanitize_html_class($item->get_type()); ?> border-bottom'> |
|
20 | 20 | |
21 | 21 | <div class="form-row"> |
22 | 22 | |
23 | - <?php foreach ( array_keys( $columns ) as $column ): ?> |
|
23 | + <?php foreach (array_keys($columns) as $column): ?> |
|
24 | 24 | |
25 | - <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm' ?> getpaid-invoice-item-<?php echo sanitize_html_class( $column ); ?>"> |
|
25 | + <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm' ?> getpaid-invoice-item-<?php echo sanitize_html_class($column); ?>"> |
|
26 | 26 | |
27 | 27 | <?php |
28 | 28 | |
29 | 29 | // Fires before printing a line item column. |
30 | - do_action( "getpaid_invoice_line_item_before_$column", $item, $invoice ); |
|
30 | + do_action("getpaid_invoice_line_item_before_$column", $item, $invoice); |
|
31 | 31 | |
32 | 32 | // Item name. |
33 | - if ( 'name' == $column ) { |
|
33 | + if ('name' == $column) { |
|
34 | 34 | |
35 | 35 | // Display the name. |
36 | - echo '<div class="mb-1">' . sanitize_text_field( $item->get_name() ) . '</div>'; |
|
36 | + echo '<div class="mb-1">' . sanitize_text_field($item->get_name()) . '</div>'; |
|
37 | 37 | |
38 | 38 | // And an optional description. |
39 | 39 | $description = $item->get_description(); |
40 | 40 | |
41 | - if ( ! empty( $description ) ) { |
|
42 | - $description = wp_kses_post( $description ); |
|
41 | + if (!empty($description)) { |
|
42 | + $description = wp_kses_post($description); |
|
43 | 43 | echo "<small class='form-text text-muted pr-2 m-0'>$description</small>"; |
44 | 44 | } |
45 | 45 | |
46 | 46 | // Price help text. |
47 | - $description = getpaid_item_recurring_price_help_text( $item, $invoice->get_currency() ); |
|
48 | - if ( $description ) { |
|
47 | + $description = getpaid_item_recurring_price_help_text($item, $invoice->get_currency()); |
|
48 | + if ($description) { |
|
49 | 49 | echo "<small class='form-text text-muted pr-2 m-0'>$description</small>"; |
50 | 50 | } |
51 | 51 | |
52 | 52 | // Fires before printing the line item actions. |
53 | - do_action( "getpaid_before_invoice_line_item_actions", $item, $invoice ); |
|
53 | + do_action("getpaid_before_invoice_line_item_actions", $item, $invoice); |
|
54 | 54 | |
55 | - $actions = apply_filters( 'getpaid-invoice-page-line-item-actions', array(), $item, $invoice ); |
|
55 | + $actions = apply_filters('getpaid-invoice-page-line-item-actions', array(), $item, $invoice); |
|
56 | 56 | |
57 | - if ( ! empty( $actions ) ) { |
|
57 | + if (!empty($actions)) { |
|
58 | 58 | |
59 | - $sanitized = array(); |
|
60 | - foreach ( $actions as $key => $action ) { |
|
61 | - $key = sanitize_html_class( $key ); |
|
62 | - $action = wp_kses_post( $action ); |
|
59 | + $sanitized = array(); |
|
60 | + foreach ($actions as $key => $action) { |
|
61 | + $key = sanitize_html_class($key); |
|
62 | + $action = wp_kses_post($action); |
|
63 | 63 | $sanitized[] = "<span class='$key'>$action</span>"; |
64 | 64 | } |
65 | 65 | |
66 | 66 | echo "<small class='form-text getpaid-line-item-actions'>"; |
67 | - echo implode( ' | ', $sanitized ); |
|
67 | + echo implode(' | ', $sanitized); |
|
68 | 68 | echo '</small>'; |
69 | 69 | |
70 | 70 | } |
@@ -72,35 +72,35 @@ discard block |
||
72 | 72 | } |
73 | 73 | |
74 | 74 | // Item price. |
75 | - if ( 'price' == $column ) { |
|
75 | + if ('price' == $column) { |
|
76 | 76 | |
77 | 77 | // Display the item price (or recurring price if this is a renewal invoice) |
78 | 78 | $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
79 | - echo wpinv_price( $price, $invoice->get_currency() ); |
|
79 | + echo wpinv_price($price, $invoice->get_currency()); |
|
80 | 80 | |
81 | 81 | } |
82 | 82 | |
83 | 83 | // Tax rate. |
84 | - if ( 'tax_rate' == $column ) { |
|
85 | - echo round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) . '%'; |
|
84 | + if ('tax_rate' == $column) { |
|
85 | + echo round(getpaid_get_invoice_tax_rate($invoice, $item), 2) . '%'; |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | // Item quantity. |
89 | - if ( 'quantity' == $column ) { |
|
89 | + if ('quantity' == $column) { |
|
90 | 90 | echo (float) $item->get_quantity(); |
91 | 91 | } |
92 | 92 | |
93 | 93 | // Item sub total. |
94 | - if ( 'subtotal' == $column ) { |
|
94 | + if ('subtotal' == $column) { |
|
95 | 95 | $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
96 | - echo wpinv_price( $subtotal, $invoice->get_currency() ); |
|
96 | + echo wpinv_price($subtotal, $invoice->get_currency()); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | // Fires when printing a line item column. |
100 | - do_action( "getpaid_invoice_line_item_$column", $item, $invoice ); |
|
100 | + do_action("getpaid_invoice_line_item_$column", $item, $invoice); |
|
101 | 101 | |
102 | 102 | // Fires after printing a line item column. |
103 | - do_action( "getpaid_invoice_line_item_after_$column", $item, $invoice ); |
|
103 | + do_action("getpaid_invoice_line_item_after_$column", $item, $invoice); |
|
104 | 104 | |
105 | 105 | ?> |
106 | 106 |
@@ -9,9 +9,9 @@ discard block |
||
9 | 9 | * @var array $fee |
10 | 10 | */ |
11 | 11 | |
12 | -defined( 'ABSPATH' ) || exit; |
|
12 | +defined('ABSPATH') || exit; |
|
13 | 13 | |
14 | -do_action( 'getpaid_before_invoice_fee_item', $invoice, $fee ); |
|
14 | +do_action('getpaid_before_invoice_fee_item', $invoice, $fee); |
|
15 | 15 | |
16 | 16 | ?> |
17 | 17 | |
@@ -19,66 +19,66 @@ discard block |
||
19 | 19 | |
20 | 20 | <div class="form-row"> |
21 | 21 | |
22 | - <?php foreach ( array_keys( $columns ) as $column ): ?> |
|
22 | + <?php foreach (array_keys($columns) as $column): ?> |
|
23 | 23 | |
24 | - <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm' ?> getpaid-invoice-item-<?php echo sanitize_html_class( $column ); ?>"> |
|
24 | + <div class="<?php echo 'name' == $column ? 'col-12 col-sm-6' : 'col-12 col-sm' ?> getpaid-invoice-item-<?php echo sanitize_html_class($column); ?>"> |
|
25 | 25 | |
26 | 26 | <?php |
27 | 27 | |
28 | 28 | // Fires before printing a fee item column. |
29 | - do_action( "getpaid_invoice_fee_item_before_$column", $fee, $invoice ); |
|
29 | + do_action("getpaid_invoice_fee_item_before_$column", $fee, $invoice); |
|
30 | 30 | |
31 | 31 | // Item name. |
32 | - if ( 'name' == $column ) { |
|
32 | + if ('name' == $column) { |
|
33 | 33 | |
34 | 34 | // Display the name. |
35 | - echo '<div class="mb-1">' . sanitize_text_field( $fee['name'] ) . '</div>'; |
|
35 | + echo '<div class="mb-1">' . sanitize_text_field($fee['name']) . '</div>'; |
|
36 | 36 | |
37 | 37 | // And an optional description. |
38 | - $description = esc_html__( 'Fee', 'invoicing' ); |
|
38 | + $description = esc_html__('Fee', 'invoicing'); |
|
39 | 39 | echo "<small class='form-text text-muted pr-2 m-0'>$description</small>"; |
40 | 40 | |
41 | 41 | } |
42 | 42 | |
43 | 43 | // Item price. |
44 | - if ( 'price' == $column ) { |
|
44 | + if ('price' == $column) { |
|
45 | 45 | |
46 | 46 | // Display the item price (or recurring price if this is a renewal invoice) |
47 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
48 | - echo wpinv_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
47 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
48 | + echo wpinv_price($fee['recurring_fee'], $invoice->get_currency()); |
|
49 | 49 | } else { |
50 | - echo wpinv_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
50 | + echo wpinv_price($fee['initial_fee'], $invoice->get_currency()); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | } |
54 | 54 | |
55 | 55 | // Item quantity. |
56 | - if ( 'quantity' == $column ) { |
|
56 | + if ('quantity' == $column) { |
|
57 | 57 | echo "—"; |
58 | 58 | } |
59 | 59 | |
60 | 60 | // Item tax. |
61 | - if ( 'tax_rate' == $column ) { |
|
61 | + if ('tax_rate' == $column) { |
|
62 | 62 | echo "—"; |
63 | 63 | } |
64 | 64 | |
65 | 65 | // Item sub total. |
66 | - if ( 'subtotal' == $column ) { |
|
66 | + if ('subtotal' == $column) { |
|
67 | 67 | |
68 | 68 | // Display the item price (or recurring price if this is a renewal invoice) |
69 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
70 | - echo wpinv_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
69 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
70 | + echo wpinv_price($fee['recurring_fee'], $invoice->get_currency()); |
|
71 | 71 | } else { |
72 | - echo wpinv_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
72 | + echo wpinv_price($fee['initial_fee'], $invoice->get_currency()); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | } |
76 | 76 | |
77 | 77 | // Fires when printing a fee item column. |
78 | - do_action( "getpaid_invoice_fee_item_$column", $fee, $invoice ); |
|
78 | + do_action("getpaid_invoice_fee_item_$column", $fee, $invoice); |
|
79 | 79 | |
80 | 80 | // Fires after printing a fee item column. |
81 | - do_action( "getpaid_invoice_fee_item_after_$column", $fee, $invoice ); |
|
81 | + do_action("getpaid_invoice_fee_item_after_$column", $fee, $invoice); |
|
82 | 82 | |
83 | 83 | ?> |
84 | 84 |
@@ -10,68 +10,68 @@ discard block |
||
10 | 10 | * @var array $columns |
11 | 11 | */ |
12 | 12 | |
13 | -defined( 'ABSPATH' ) || exit; |
|
13 | +defined('ABSPATH') || exit; |
|
14 | 14 | |
15 | 15 | ?> |
16 | 16 | |
17 | -<?php do_action( 'getpaid_before_email_fee_item', $invoice, $fee ); ?> |
|
17 | +<?php do_action('getpaid_before_email_fee_item', $invoice, $fee); ?> |
|
18 | 18 | |
19 | 19 | <tr class="wpinv_cart_item item-fee"> |
20 | 20 | |
21 | - <?php foreach ( array_keys( $columns ) as $column ): ?> |
|
21 | + <?php foreach (array_keys($columns) as $column): ?> |
|
22 | 22 | |
23 | - <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class( $column ); ?>"> |
|
23 | + <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class($column); ?>"> |
|
24 | 24 | |
25 | 25 | <?php |
26 | 26 | |
27 | 27 | // Fires before printing a fee item column. |
28 | - do_action( "getpaid_email_fee_item_before_$column", $fee, $invoice ); |
|
28 | + do_action("getpaid_email_fee_item_before_$column", $fee, $invoice); |
|
29 | 29 | |
30 | 30 | // Item name. |
31 | - if ( 'name' == $column ) { |
|
31 | + if ('name' == $column) { |
|
32 | 32 | |
33 | 33 | // Display the name. |
34 | - echo '<div class="wpinv_email_cart_item_title">' . sanitize_text_field( $fee['name'] ) . '</div>'; |
|
34 | + echo '<div class="wpinv_email_cart_item_title">' . sanitize_text_field($fee['name']) . '</div>'; |
|
35 | 35 | |
36 | 36 | // And an optional description. |
37 | - $description = esc_html__( 'Fee', 'invoicing' ); |
|
37 | + $description = esc_html__('Fee', 'invoicing'); |
|
38 | 38 | echo "<p class='small'>$description</p>"; |
39 | 39 | |
40 | 40 | } |
41 | 41 | |
42 | 42 | // Item price. |
43 | - if ( 'price' == $column ) { |
|
43 | + if ('price' == $column) { |
|
44 | 44 | |
45 | 45 | // Display the item price (or recurring price if this is a renewal invoice) |
46 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
47 | - echo wpinv_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
46 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
47 | + echo wpinv_price($fee['recurring_fee'], $invoice->get_currency()); |
|
48 | 48 | } else { |
49 | - echo wpinv_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
49 | + echo wpinv_price($fee['initial_fee'], $invoice->get_currency()); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | } |
53 | 53 | |
54 | 54 | // Item quantity. |
55 | - if ( 'quantity' == $column ) { |
|
55 | + if ('quantity' == $column) { |
|
56 | 56 | echo "—"; |
57 | 57 | } |
58 | 58 | |
59 | 59 | // Item tax. |
60 | - if ( 'tax_rate' == $column ) { |
|
60 | + if ('tax_rate' == $column) { |
|
61 | 61 | echo "—"; |
62 | 62 | } |
63 | 63 | |
64 | 64 | // Item sub total. |
65 | - if ( 'subtotal' == $column ) { |
|
66 | - if ( $invoice->is_recurring() && $invoice->is_renewal() ) { |
|
67 | - echo wpinv_price( $fee['recurring_fee'], $invoice->get_currency() ); |
|
65 | + if ('subtotal' == $column) { |
|
66 | + if ($invoice->is_recurring() && $invoice->is_renewal()) { |
|
67 | + echo wpinv_price($fee['recurring_fee'], $invoice->get_currency()); |
|
68 | 68 | } else { |
69 | - echo wpinv_price( $fee['initial_fee'], $invoice->get_currency() ); |
|
69 | + echo wpinv_price($fee['initial_fee'], $invoice->get_currency()); |
|
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
73 | 73 | // Fires when printing a line item column. |
74 | - do_action( "getpaid_email_fee_item_$column", $fee, $invoice ); |
|
74 | + do_action("getpaid_email_fee_item_$column", $fee, $invoice); |
|
75 | 75 | |
76 | 76 | ?> |
77 | 77 | |
@@ -81,4 +81,4 @@ discard block |
||
81 | 81 | |
82 | 82 | </tr> |
83 | 83 | |
84 | -<?php do_action( 'getpaid_after_email_fee_item', $invoice, $fee ); ?> |
|
84 | +<?php do_action('getpaid_after_email_fee_item', $invoice, $fee); ?> |
@@ -10,72 +10,72 @@ discard block |
||
10 | 10 | * @var array $columns |
11 | 11 | */ |
12 | 12 | |
13 | -defined( 'ABSPATH' ) || exit; |
|
13 | +defined('ABSPATH') || exit; |
|
14 | 14 | |
15 | 15 | ?> |
16 | 16 | |
17 | -<?php do_action( 'getpaid_before_email_line_item', $invoice, $item ); ?> |
|
17 | +<?php do_action('getpaid_before_email_line_item', $invoice, $item); ?> |
|
18 | 18 | |
19 | -<tr class="wpinv_cart_item item-type-<?php echo sanitize_html_class( $item->get_type() ); ?>"> |
|
19 | +<tr class="wpinv_cart_item item-type-<?php echo sanitize_html_class($item->get_type()); ?>"> |
|
20 | 20 | |
21 | - <?php foreach ( array_keys( $columns ) as $column ): ?> |
|
21 | + <?php foreach (array_keys($columns) as $column): ?> |
|
22 | 22 | |
23 | - <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class( $column ); ?>"> |
|
23 | + <td class="<?php echo 'name' == $column ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class($column); ?>"> |
|
24 | 24 | |
25 | 25 | <?php |
26 | 26 | |
27 | 27 | // Fires before printing a line item column. |
28 | - do_action( "getpaid_email_line_item_before_$column", $item, $invoice ); |
|
28 | + do_action("getpaid_email_line_item_before_$column", $item, $invoice); |
|
29 | 29 | |
30 | 30 | // Item name. |
31 | - if ( 'name' == $column ) { |
|
31 | + if ('name' == $column) { |
|
32 | 32 | |
33 | 33 | // Display the name. |
34 | - echo '<div class="wpinv_email_cart_item_title">' . sanitize_text_field( $item->get_name() ) . '</div>'; |
|
34 | + echo '<div class="wpinv_email_cart_item_title">' . sanitize_text_field($item->get_name()) . '</div>'; |
|
35 | 35 | |
36 | 36 | // And an optional description. |
37 | 37 | $description = $item->get_description(); |
38 | 38 | |
39 | - if ( ! empty( $description ) ) { |
|
40 | - $description = wp_kses_post( $description ); |
|
39 | + if (!empty($description)) { |
|
40 | + $description = wp_kses_post($description); |
|
41 | 41 | echo "<p class='small'>$description</p>"; |
42 | 42 | } |
43 | 43 | |
44 | 44 | // Price help text |
45 | - $description = getpaid_item_recurring_price_help_text( $item, $invoice->get_currency() ); |
|
46 | - if ( $description ) { |
|
45 | + $description = getpaid_item_recurring_price_help_text($item, $invoice->get_currency()); |
|
46 | + if ($description) { |
|
47 | 47 | echo "<p class='small'>$description</p>"; |
48 | 48 | } |
49 | 49 | |
50 | 50 | } |
51 | 51 | |
52 | 52 | // Item price. |
53 | - if ( 'price' == $column ) { |
|
53 | + if ('price' == $column) { |
|
54 | 54 | |
55 | 55 | // Display the item price (or recurring price if this is a renewal invoice) |
56 | 56 | $price = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
57 | - echo wpinv_price( $price, $invoice->get_currency() ); |
|
57 | + echo wpinv_price($price, $invoice->get_currency()); |
|
58 | 58 | |
59 | 59 | } |
60 | 60 | |
61 | 61 | // Item quantity. |
62 | - if ( 'quantity' == $column ) { |
|
62 | + if ('quantity' == $column) { |
|
63 | 63 | echo (float) $item->get_quantity(); |
64 | 64 | } |
65 | 65 | |
66 | 66 | // Tax rate. |
67 | - if ( 'tax_rate' == $column ) { |
|
68 | - echo round( getpaid_get_invoice_tax_rate( $invoice, $item ), 2 ) . '%'; |
|
67 | + if ('tax_rate' == $column) { |
|
68 | + echo round(getpaid_get_invoice_tax_rate($invoice, $item), 2) . '%'; |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | // Item sub total. |
72 | - if ( 'subtotal' == $column ) { |
|
72 | + if ('subtotal' == $column) { |
|
73 | 73 | $subtotal = $invoice->is_renewal() ? $item->get_recurring_sub_total() : $item->get_sub_total(); |
74 | - echo wpinv_price( $subtotal, $invoice->get_currency() ); |
|
74 | + echo wpinv_price($subtotal, $invoice->get_currency()); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | // Fires when printing a line item column. |
78 | - do_action( "getpaid_email_line_item_$column", $item, $invoice ); |
|
78 | + do_action("getpaid_email_line_item_$column", $item, $invoice); |
|
79 | 79 | |
80 | 80 | ?> |
81 | 81 | |
@@ -85,4 +85,4 @@ discard block |
||
85 | 85 | |
86 | 86 | </tr> |
87 | 87 | |
88 | -<?php do_action( 'getpaid_after_email_line_item', $invoice, $item ); ?> |
|
88 | +<?php do_action('getpaid_after_email_line_item', $invoice, $item); ?> |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @package Invoicing |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Retrieves the current invoice. |
@@ -14,15 +14,15 @@ discard block |
||
14 | 14 | function getpaid_get_current_invoice_id() { |
15 | 15 | |
16 | 16 | // Ensure that we have an invoice key. |
17 | - if ( empty( $_GET['invoice_key'] ) ) { |
|
17 | + if (empty($_GET['invoice_key'])) { |
|
18 | 18 | return 0; |
19 | 19 | } |
20 | 20 | |
21 | 21 | // Retrieve an invoice using the key. |
22 | - $invoice = new WPInv_Invoice( $_GET['invoice_key'] ); |
|
22 | + $invoice = new WPInv_Invoice($_GET['invoice_key']); |
|
23 | 23 | |
24 | 24 | // Compare the invoice key and the parsed key. |
25 | - if ( $invoice->get_id() != 0 && $invoice->get_key() == $_GET['invoice_key'] ) { |
|
25 | + if ($invoice->get_id() != 0 && $invoice->get_key() == $_GET['invoice_key']) { |
|
26 | 26 | return $invoice->get_id(); |
27 | 27 | } |
28 | 28 | |
@@ -32,42 +32,42 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * Checks if the current user cna view an invoice. |
34 | 34 | */ |
35 | -function wpinv_user_can_view_invoice( $invoice ) { |
|
36 | - $invoice = new WPInv_Invoice( $invoice ); |
|
35 | +function wpinv_user_can_view_invoice($invoice) { |
|
36 | + $invoice = new WPInv_Invoice($invoice); |
|
37 | 37 | |
38 | 38 | // Abort if the invoice does not exist. |
39 | - if ( 0 == $invoice->get_id() ) { |
|
39 | + if (0 == $invoice->get_id()) { |
|
40 | 40 | return false; |
41 | 41 | } |
42 | 42 | |
43 | 43 | // Don't allow trash, draft status |
44 | - if ( $invoice->is_draft() ) { |
|
44 | + if ($invoice->is_draft()) { |
|
45 | 45 | return false; |
46 | 46 | } |
47 | 47 | |
48 | 48 | // If users are not required to login to check out, compare the invoice keys. |
49 | - if ( ! wpinv_require_login_to_checkout() && isset( $_GET['invoice_key'] ) && trim( $_GET['invoice_key'] ) == $invoice->get_key() ) { |
|
49 | + if (!wpinv_require_login_to_checkout() && isset($_GET['invoice_key']) && trim($_GET['invoice_key']) == $invoice->get_key()) { |
|
50 | 50 | return true; |
51 | 51 | } |
52 | 52 | |
53 | 53 | // Always enable for admins.. |
54 | - if ( wpinv_current_user_can_manage_invoicing() || current_user_can( 'view_invoices', $invoice->get_id() ) ) { // Admin user |
|
54 | + if (wpinv_current_user_can_manage_invoicing() || current_user_can('view_invoices', $invoice->get_id())) { // Admin user |
|
55 | 55 | return true; |
56 | 56 | } |
57 | 57 | |
58 | 58 | // Else, ensure that this is their invoice. |
59 | - if ( is_user_logged_in() && $invoice->get_user_id() == get_current_user_id() ) { |
|
59 | + if (is_user_logged_in() && $invoice->get_user_id() == get_current_user_id()) { |
|
60 | 60 | return true; |
61 | 61 | } |
62 | 62 | |
63 | - return apply_filters( 'wpinv_current_user_can_view_invoice', false, $invoice ); |
|
63 | + return apply_filters('wpinv_current_user_can_view_invoice', false, $invoice); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Checks if the current user cna view an invoice receipt. |
68 | 68 | */ |
69 | -function wpinv_can_view_receipt( $invoice ) { |
|
70 | - return (bool) apply_filters( 'wpinv_can_view_receipt', wpinv_user_can_view_invoice( $invoice ), $invoice ); |
|
69 | +function wpinv_can_view_receipt($invoice) { |
|
70 | + return (bool) apply_filters('wpinv_can_view_receipt', wpinv_user_can_view_invoice($invoice), $invoice); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -77,16 +77,16 @@ discard block |
||
77 | 77 | */ |
78 | 78 | function getpaid_get_invoice_post_types() { |
79 | 79 | $post_types = array( |
80 | - 'wpi_quote' => __( 'Quote', 'invoicing' ), |
|
81 | - 'wpi_invoice' => __( 'Invoice', 'invoicing' ), |
|
80 | + 'wpi_quote' => __('Quote', 'invoicing'), |
|
81 | + 'wpi_invoice' => __('Invoice', 'invoicing'), |
|
82 | 82 | ); |
83 | 83 | |
84 | 84 | // Ensure the quotes addon is installed. |
85 | - if ( ! defined( 'WPINV_QUOTES_VERSION' ) ) { |
|
86 | - unset( $post_types['wpi_quote'] ); |
|
85 | + if (!defined('WPINV_QUOTES_VERSION')) { |
|
86 | + unset($post_types['wpi_quote']); |
|
87 | 87 | } |
88 | 88 | |
89 | - return apply_filters( 'getpaid_invoice_post_types', $post_types ); |
|
89 | + return apply_filters('getpaid_invoice_post_types', $post_types); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -95,8 +95,8 @@ discard block |
||
95 | 95 | * |
96 | 96 | * @param string $post_type The post type to check for. |
97 | 97 | */ |
98 | -function getpaid_is_invoice_post_type( $post_type ) { |
|
99 | - return is_scalar( $post_type ) && ! empty( $post_type ) && array_key_exists( $post_type, getpaid_get_invoice_post_types() ); |
|
98 | +function getpaid_is_invoice_post_type($post_type) { |
|
99 | + return is_scalar($post_type) && !empty($post_type) && array_key_exists($post_type, getpaid_get_invoice_post_types()); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | /** |
@@ -106,9 +106,9 @@ discard block |
||
106 | 106 | * @param bool $wp_error Whether to return false or WP_Error on failure. |
107 | 107 | * @return int|WP_Error|WPInv_Invoice The value 0 or WP_Error on failure. The WPInv_Invoice object on success. |
108 | 108 | */ |
109 | -function wpinv_create_invoice( $data = array(), $deprecated = null, $wp_error = false ) { |
|
110 | - $data[ 'invoice_id' ] = 0; |
|
111 | - return wpinv_insert_invoice( $data, $wp_error ); |
|
109 | +function wpinv_create_invoice($data = array(), $deprecated = null, $wp_error = false) { |
|
110 | + $data['invoice_id'] = 0; |
|
111 | + return wpinv_insert_invoice($data, $wp_error); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -118,36 +118,36 @@ discard block |
||
118 | 118 | * @param bool $wp_error Whether to return false or WP_Error on failure. |
119 | 119 | * @return int|WP_Error|WPInv_Invoice The value 0 or WP_Error on failure. The WPInv_Invoice object on success. |
120 | 120 | */ |
121 | -function wpinv_update_invoice( $data = array(), $wp_error = false ) { |
|
121 | +function wpinv_update_invoice($data = array(), $wp_error = false) { |
|
122 | 122 | |
123 | 123 | // Backwards compatibility. |
124 | - if ( ! empty( $data['ID'] ) ) { |
|
124 | + if (!empty($data['ID'])) { |
|
125 | 125 | $data['invoice_id'] = $data['ID']; |
126 | 126 | } |
127 | 127 | |
128 | 128 | // Do we have an invoice id? |
129 | - if ( empty( $data['invoice_id'] ) ) { |
|
130 | - return $wp_error ? new WP_Error( 'invalid_invoice_id', __( 'Invalid invoice ID.', 'invoicing' ) ) : 0; |
|
129 | + if (empty($data['invoice_id'])) { |
|
130 | + return $wp_error ? new WP_Error('invalid_invoice_id', __('Invalid invoice ID.', 'invoicing')) : 0; |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | // Retrieve the invoice. |
134 | - $invoice = wpinv_get_invoice( $data['invoice_id'] ); |
|
134 | + $invoice = wpinv_get_invoice($data['invoice_id']); |
|
135 | 135 | |
136 | 136 | // And abort if it does not exist. |
137 | - if ( empty( $invoice ) ) { |
|
138 | - return $wp_error ? new WP_Error( 'missing_invoice', __( 'Invoice not found.', 'invoicing' ) ) : 0; |
|
137 | + if (empty($invoice)) { |
|
138 | + return $wp_error ? new WP_Error('missing_invoice', __('Invoice not found.', 'invoicing')) : 0; |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | // Do not update totals for paid / refunded invoices. |
142 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
142 | + if ($invoice->is_paid() || $invoice->is_refunded()) { |
|
143 | 143 | |
144 | - if ( ! empty( $data['items'] ) || ! empty( $data['cart_details'] ) ) { |
|
145 | - return $wp_error ? new WP_Error( 'paid_invoice', __( 'You can not update cart items for invoices that have already been paid for.', 'invoicing' ) ) : 0; |
|
144 | + if (!empty($data['items']) || !empty($data['cart_details'])) { |
|
145 | + return $wp_error ? new WP_Error('paid_invoice', __('You can not update cart items for invoices that have already been paid for.', 'invoicing')) : 0; |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | } |
149 | 149 | |
150 | - return wpinv_insert_invoice( $data, $wp_error ); |
|
150 | + return wpinv_insert_invoice($data, $wp_error); |
|
151 | 151 | |
152 | 152 | } |
153 | 153 | |
@@ -158,34 +158,34 @@ discard block |
||
158 | 158 | * @param bool $wp_error Whether to return false or WP_Error on failure. |
159 | 159 | * @return int|WP_Error|WPInv_Invoice The value 0 or WP_Error on failure. The WPInv_Invoice object on success. |
160 | 160 | */ |
161 | -function wpinv_insert_invoice( $data = array(), $wp_error = false ) { |
|
161 | +function wpinv_insert_invoice($data = array(), $wp_error = false) { |
|
162 | 162 | |
163 | 163 | // Ensure that we have invoice data. |
164 | - if ( empty( $data ) ) { |
|
164 | + if (empty($data)) { |
|
165 | 165 | return false; |
166 | 166 | } |
167 | 167 | |
168 | 168 | // The invoice id will be provided when updating an invoice. |
169 | - $data['invoice_id'] = ! empty( $data['invoice_id'] ) ? (int) $data['invoice_id'] : false; |
|
169 | + $data['invoice_id'] = !empty($data['invoice_id']) ? (int) $data['invoice_id'] : false; |
|
170 | 170 | |
171 | 171 | // Retrieve the invoice. |
172 | - $invoice = new WPInv_Invoice( $data['invoice_id'] ); |
|
172 | + $invoice = new WPInv_Invoice($data['invoice_id']); |
|
173 | 173 | |
174 | 174 | // Do we have an error? |
175 | - if ( ! empty( $invoice->last_error ) ) { |
|
176 | - return $wp_error ? new WP_Error( 'invalid_invoice_id', $invoice->last_error ) : 0; |
|
175 | + if (!empty($invoice->last_error)) { |
|
176 | + return $wp_error ? new WP_Error('invalid_invoice_id', $invoice->last_error) : 0; |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | // Backwards compatibility (billing address). |
180 | - if ( ! empty( $data['user_info'] ) ) { |
|
180 | + if (!empty($data['user_info'])) { |
|
181 | 181 | |
182 | - foreach ( $data['user_info'] as $key => $value ) { |
|
182 | + foreach ($data['user_info'] as $key => $value) { |
|
183 | 183 | |
184 | - if ( $key == 'discounts' ) { |
|
184 | + if ($key == 'discounts') { |
|
185 | 185 | $value = (array) $value; |
186 | - $data[ 'discount_code' ] = empty( $value ) ? null : $value[0]; |
|
186 | + $data['discount_code'] = empty($value) ? null : $value[0]; |
|
187 | 187 | } else { |
188 | - $data[ $key ] = $value; |
|
188 | + $data[$key] = $value; |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | } |
@@ -193,30 +193,30 @@ discard block |
||
193 | 193 | } |
194 | 194 | |
195 | 195 | // Backwards compatibility. |
196 | - if ( ! empty( $data['payment_details'] ) ) { |
|
196 | + if (!empty($data['payment_details'])) { |
|
197 | 197 | |
198 | - foreach ( $data['payment_details'] as $key => $value ) { |
|
199 | - $data[ $key ] = $value; |
|
198 | + foreach ($data['payment_details'] as $key => $value) { |
|
199 | + $data[$key] = $value; |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | } |
203 | 203 | |
204 | 204 | // Set up the owner of the invoice. |
205 | - $user_id = ! empty( $data['user_id'] ) ? wpinv_clean( $data['user_id'] ) : get_current_user_id(); |
|
205 | + $user_id = !empty($data['user_id']) ? wpinv_clean($data['user_id']) : get_current_user_id(); |
|
206 | 206 | |
207 | 207 | // Make sure the user exists. |
208 | - if ( ! get_userdata( $user_id ) ) { |
|
209 | - return $wp_error ? new WP_Error( 'wpinv_invalid_user', __( 'There is no user with that ID.', 'invoicing' ) ) : 0; |
|
208 | + if (!get_userdata($user_id)) { |
|
209 | + return $wp_error ? new WP_Error('wpinv_invalid_user', __('There is no user with that ID.', 'invoicing')) : 0; |
|
210 | 210 | } |
211 | 211 | |
212 | - $address = wpinv_get_user_address( $user_id ); |
|
212 | + $address = wpinv_get_user_address($user_id); |
|
213 | 213 | |
214 | - foreach ( $address as $key => $value ) { |
|
214 | + foreach ($address as $key => $value) { |
|
215 | 215 | |
216 | - if ( $value == '' ) { |
|
217 | - $address[ $key ] = null; |
|
216 | + if ($value == '') { |
|
217 | + $address[$key] = null; |
|
218 | 218 | } else { |
219 | - $address[ $key ] = wpinv_clean( $value ); |
|
219 | + $address[$key] = wpinv_clean($value); |
|
220 | 220 | } |
221 | 221 | |
222 | 222 | } |
@@ -227,103 +227,103 @@ discard block |
||
227 | 227 | array( |
228 | 228 | |
229 | 229 | // Basic info. |
230 | - 'template' => isset( $data['template'] ) ? wpinv_clean( $data['template'] ) : null, |
|
231 | - 'email_cc' => isset( $data['email_cc'] ) ? wpinv_clean( $data['email_cc'] ) : null, |
|
232 | - 'date_created' => isset( $data['created_date'] ) ? wpinv_clean( $data['created_date'] ) : null, |
|
233 | - 'due_date' => isset( $data['due_date'] ) ? wpinv_clean( $data['due_date'] ) : null, |
|
234 | - 'date_completed' => isset( $data['date_completed'] ) ? wpinv_clean( $data['date_completed'] ) : null, |
|
235 | - 'number' => isset( $data['number'] ) ? wpinv_clean( $data['number'] ) : null, |
|
236 | - 'key' => isset( $data['key'] ) ? wpinv_clean( $data['key'] ) : null, |
|
237 | - 'status' => isset( $data['status'] ) ? wpinv_clean( $data['status'] ) : null, |
|
238 | - 'post_type' => isset( $data['post_type'] ) ? wpinv_clean( $data['post_type'] ) : null, |
|
239 | - 'user_ip' => isset( $data['ip'] ) ? wpinv_clean( $data['ip'] ) : wpinv_get_ip(), |
|
240 | - 'parent_id' => isset( $data['parent'] ) ? intval( $data['parent'] ) : null, |
|
241 | - 'mode' => isset( $data['mode'] ) ? wpinv_clean( $data['mode'] ) : null, |
|
242 | - 'description' => isset( $data['description'] ) ? wp_kses_post( $data['description'] ) : null, |
|
230 | + 'template' => isset($data['template']) ? wpinv_clean($data['template']) : null, |
|
231 | + 'email_cc' => isset($data['email_cc']) ? wpinv_clean($data['email_cc']) : null, |
|
232 | + 'date_created' => isset($data['created_date']) ? wpinv_clean($data['created_date']) : null, |
|
233 | + 'due_date' => isset($data['due_date']) ? wpinv_clean($data['due_date']) : null, |
|
234 | + 'date_completed' => isset($data['date_completed']) ? wpinv_clean($data['date_completed']) : null, |
|
235 | + 'number' => isset($data['number']) ? wpinv_clean($data['number']) : null, |
|
236 | + 'key' => isset($data['key']) ? wpinv_clean($data['key']) : null, |
|
237 | + 'status' => isset($data['status']) ? wpinv_clean($data['status']) : null, |
|
238 | + 'post_type' => isset($data['post_type']) ? wpinv_clean($data['post_type']) : null, |
|
239 | + 'user_ip' => isset($data['ip']) ? wpinv_clean($data['ip']) : wpinv_get_ip(), |
|
240 | + 'parent_id' => isset($data['parent']) ? intval($data['parent']) : null, |
|
241 | + 'mode' => isset($data['mode']) ? wpinv_clean($data['mode']) : null, |
|
242 | + 'description' => isset($data['description']) ? wp_kses_post($data['description']) : null, |
|
243 | 243 | |
244 | 244 | // Payment info. |
245 | - 'disable_taxes' => ! empty( $data['disable_taxes'] ), |
|
246 | - 'currency' => isset( $data['currency'] ) ? wpinv_clean( $data['currency'] ) : wpinv_get_currency(), |
|
247 | - 'gateway' => isset( $data['gateway'] ) ? wpinv_clean( $data['gateway'] ) : null, |
|
248 | - 'transaction_id' => isset( $data['transaction_id'] ) ? wpinv_clean( $data['transaction_id'] ) : null, |
|
249 | - 'discount_code' => isset( $data['discount_code'] ) ? wpinv_clean( $data['discount_code'] ) : null, |
|
250 | - 'payment_form' => isset( $data['payment_form'] ) ? intval( $data['payment_form'] ) : null, |
|
251 | - 'submission_id' => isset( $data['submission_id'] ) ? wpinv_clean( $data['submission_id'] ) : null, |
|
252 | - 'subscription_id' => isset( $data['subscription_id'] ) ? wpinv_clean( $data['subscription_id'] ) : null, |
|
253 | - 'is_viewed' => isset( $data['is_viewed'] ) ? wpinv_clean( $data['is_viewed'] ) : null, |
|
254 | - 'fees' => isset( $data['fees'] ) ? wpinv_clean( $data['fees'] ) : null, |
|
255 | - 'discounts' => isset( $data['discounts'] ) ? wpinv_clean( $data['discounts'] ) : null, |
|
256 | - 'taxes' => isset( $data['taxes'] ) ? wpinv_clean( $data['taxes'] ) : null, |
|
245 | + 'disable_taxes' => !empty($data['disable_taxes']), |
|
246 | + 'currency' => isset($data['currency']) ? wpinv_clean($data['currency']) : wpinv_get_currency(), |
|
247 | + 'gateway' => isset($data['gateway']) ? wpinv_clean($data['gateway']) : null, |
|
248 | + 'transaction_id' => isset($data['transaction_id']) ? wpinv_clean($data['transaction_id']) : null, |
|
249 | + 'discount_code' => isset($data['discount_code']) ? wpinv_clean($data['discount_code']) : null, |
|
250 | + 'payment_form' => isset($data['payment_form']) ? intval($data['payment_form']) : null, |
|
251 | + 'submission_id' => isset($data['submission_id']) ? wpinv_clean($data['submission_id']) : null, |
|
252 | + 'subscription_id' => isset($data['subscription_id']) ? wpinv_clean($data['subscription_id']) : null, |
|
253 | + 'is_viewed' => isset($data['is_viewed']) ? wpinv_clean($data['is_viewed']) : null, |
|
254 | + 'fees' => isset($data['fees']) ? wpinv_clean($data['fees']) : null, |
|
255 | + 'discounts' => isset($data['discounts']) ? wpinv_clean($data['discounts']) : null, |
|
256 | + 'taxes' => isset($data['taxes']) ? wpinv_clean($data['taxes']) : null, |
|
257 | 257 | |
258 | 258 | |
259 | 259 | // Billing details. |
260 | 260 | 'user_id' => $data['user_id'], |
261 | - 'first_name' => isset( $data['first_name'] ) ? wpinv_clean( $data['first_name'] ) : $address['first_name'], |
|
262 | - 'last_name' => isset( $data['last_name'] ) ? wpinv_clean( $data['last_name'] ) : $address['last_name'], |
|
263 | - 'address' => isset( $data['address'] ) ? wpinv_clean( $data['address'] ) : $address['address'] , |
|
264 | - 'vat_number' => isset( $data['vat_number'] ) ? wpinv_clean( $data['vat_number'] ) : $address['vat_number'], |
|
265 | - 'company' => isset( $data['company'] ) ? wpinv_clean( $data['company'] ) : $address['company'], |
|
266 | - 'zip' => isset( $data['zip'] ) ? wpinv_clean( $data['zip'] ) : $address['zip'], |
|
267 | - 'state' => isset( $data['state'] ) ? wpinv_clean( $data['state'] ) : $address['state'], |
|
268 | - 'city' => isset( $data['city'] ) ? wpinv_clean( $data['city'] ) : $address['city'], |
|
269 | - 'country' => isset( $data['country'] ) ? wpinv_clean( $data['country'] ) : $address['country'], |
|
270 | - 'phone' => isset( $data['phone'] ) ? wpinv_clean( $data['phone'] ) : $address['phone'], |
|
271 | - 'address_confirmed' => ! empty( $data['address_confirmed'] ), |
|
261 | + 'first_name' => isset($data['first_name']) ? wpinv_clean($data['first_name']) : $address['first_name'], |
|
262 | + 'last_name' => isset($data['last_name']) ? wpinv_clean($data['last_name']) : $address['last_name'], |
|
263 | + 'address' => isset($data['address']) ? wpinv_clean($data['address']) : $address['address'], |
|
264 | + 'vat_number' => isset($data['vat_number']) ? wpinv_clean($data['vat_number']) : $address['vat_number'], |
|
265 | + 'company' => isset($data['company']) ? wpinv_clean($data['company']) : $address['company'], |
|
266 | + 'zip' => isset($data['zip']) ? wpinv_clean($data['zip']) : $address['zip'], |
|
267 | + 'state' => isset($data['state']) ? wpinv_clean($data['state']) : $address['state'], |
|
268 | + 'city' => isset($data['city']) ? wpinv_clean($data['city']) : $address['city'], |
|
269 | + 'country' => isset($data['country']) ? wpinv_clean($data['country']) : $address['country'], |
|
270 | + 'phone' => isset($data['phone']) ? wpinv_clean($data['phone']) : $address['phone'], |
|
271 | + 'address_confirmed' => !empty($data['address_confirmed']), |
|
272 | 272 | |
273 | 273 | ) |
274 | 274 | |
275 | 275 | ); |
276 | 276 | |
277 | 277 | // Backwards compatibililty. |
278 | - if ( ! empty( $data['cart_details'] ) && is_array( $data['cart_details'] ) ) { |
|
278 | + if (!empty($data['cart_details']) && is_array($data['cart_details'])) { |
|
279 | 279 | $data['items'] = array(); |
280 | 280 | |
281 | - foreach( $data['cart_details'] as $_item ) { |
|
281 | + foreach ($data['cart_details'] as $_item) { |
|
282 | 282 | |
283 | 283 | // Ensure that we have an item id. |
284 | - if ( empty( $_item['id'] ) ) { |
|
284 | + if (empty($_item['id'])) { |
|
285 | 285 | continue; |
286 | 286 | } |
287 | 287 | |
288 | 288 | // Retrieve the item. |
289 | - $item = new GetPaid_Form_Item( $_item['id'] ); |
|
289 | + $item = new GetPaid_Form_Item($_item['id']); |
|
290 | 290 | |
291 | 291 | // Ensure that it is purchasable. |
292 | - if ( ! $item->can_purchase() ) { |
|
292 | + if (!$item->can_purchase()) { |
|
293 | 293 | continue; |
294 | 294 | } |
295 | 295 | |
296 | 296 | // Set quantity. |
297 | - if ( ! empty( $_item['quantity'] ) && is_numeric( $_item['quantity'] ) ) { |
|
298 | - $item->set_quantity( $_item['quantity'] ); |
|
297 | + if (!empty($_item['quantity']) && is_numeric($_item['quantity'])) { |
|
298 | + $item->set_quantity($_item['quantity']); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | // Set price. |
302 | - if ( isset( $_item['item_price'] ) ) { |
|
303 | - $item->set_price( $_item['item_price'] ); |
|
302 | + if (isset($_item['item_price'])) { |
|
303 | + $item->set_price($_item['item_price']); |
|
304 | 304 | } |
305 | 305 | |
306 | - if ( isset( $_item['custom_price'] ) ) { |
|
307 | - $item->set_price( $_item['custom_price'] ); |
|
306 | + if (isset($_item['custom_price'])) { |
|
307 | + $item->set_price($_item['custom_price']); |
|
308 | 308 | } |
309 | 309 | |
310 | 310 | // Set name. |
311 | - if ( ! empty( $_item['name'] ) ) { |
|
312 | - $item->set_name( $_item['name'] ); |
|
311 | + if (!empty($_item['name'])) { |
|
312 | + $item->set_name($_item['name']); |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | // Set description. |
316 | - if ( isset( $_item['description'] ) ) { |
|
317 | - $item->set_custom_description( $_item['description'] ); |
|
316 | + if (isset($_item['description'])) { |
|
317 | + $item->set_custom_description($_item['description']); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | // Set meta. |
321 | - if ( isset( $_item['meta'] ) && is_array( $_item['meta'] ) ) { |
|
321 | + if (isset($_item['meta']) && is_array($_item['meta'])) { |
|
322 | 322 | |
323 | - $item->set_item_meta( $_item['meta'] ); |
|
323 | + $item->set_item_meta($_item['meta']); |
|
324 | 324 | |
325 | - if ( isset( $_item['meta']['description'] ) ) { |
|
326 | - $item->set_custom_description( $_item['meta']['description'] ); |
|
325 | + if (isset($_item['meta']['description'])) { |
|
326 | + $item->set_custom_description($_item['meta']['description']); |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | } |
@@ -334,14 +334,14 @@ discard block |
||
334 | 334 | } |
335 | 335 | |
336 | 336 | // Add invoice items. |
337 | - if ( ! empty( $data['items'] ) && is_array( $data['items'] ) ) { |
|
337 | + if (!empty($data['items']) && is_array($data['items'])) { |
|
338 | 338 | |
339 | - $invoice->set_items( array() ); |
|
339 | + $invoice->set_items(array()); |
|
340 | 340 | |
341 | - foreach ( $data['items'] as $item ) { |
|
341 | + foreach ($data['items'] as $item) { |
|
342 | 342 | |
343 | - if ( is_object( $item ) && is_a( $item, 'GetPaid_Form_Item' ) && $item->can_purchase() ) { |
|
344 | - $invoice->add_item( $item ); |
|
343 | + if (is_object($item) && is_a($item, 'GetPaid_Form_Item') && $item->can_purchase()) { |
|
344 | + $invoice->add_item($item); |
|
345 | 345 | } |
346 | 346 | |
347 | 347 | } |
@@ -352,30 +352,30 @@ discard block |
||
352 | 352 | $invoice->recalculate_total(); |
353 | 353 | $invoice->save(); |
354 | 354 | |
355 | - if ( ! $invoice->get_id() ) { |
|
356 | - return $wp_error ? new WP_Error( 'wpinv_insert_invoice_error', __( 'An error occured when saving your invoice.', 'invoicing' ) ) : 0; |
|
355 | + if (!$invoice->get_id()) { |
|
356 | + return $wp_error ? new WP_Error('wpinv_insert_invoice_error', __('An error occured when saving your invoice.', 'invoicing')) : 0; |
|
357 | 357 | } |
358 | 358 | |
359 | 359 | // Add private note. |
360 | - if ( ! empty( $data['private_note'] ) ) { |
|
361 | - $invoice->add_note( $data['private_note'] ); |
|
360 | + if (!empty($data['private_note'])) { |
|
361 | + $invoice->add_note($data['private_note']); |
|
362 | 362 | } |
363 | 363 | |
364 | 364 | // User notes. |
365 | - if ( !empty( $data['user_note'] ) ) { |
|
366 | - $invoice->add_note( $data['user_note'], true ); |
|
365 | + if (!empty($data['user_note'])) { |
|
366 | + $invoice->add_note($data['user_note'], true); |
|
367 | 367 | } |
368 | 368 | |
369 | 369 | // Created via. |
370 | - if ( isset( $data['created_via'] ) ) { |
|
371 | - update_post_meta( $invoice->get_id(), 'wpinv_created_via', $data['created_via'] ); |
|
370 | + if (isset($data['created_via'])) { |
|
371 | + update_post_meta($invoice->get_id(), 'wpinv_created_via', $data['created_via']); |
|
372 | 372 | } |
373 | 373 | |
374 | 374 | // Backwards compatiblity. |
375 | - if ( $invoice->is_quote() ) { |
|
375 | + if ($invoice->is_quote()) { |
|
376 | 376 | |
377 | - if ( isset( $data['valid_until'] ) ) { |
|
378 | - update_post_meta( $invoice->get_id(), 'wpinv_quote_valid_until', $data['valid_until'] ); |
|
377 | + if (isset($data['valid_until'])) { |
|
378 | + update_post_meta($invoice->get_id(), 'wpinv_quote_valid_until', $data['valid_until']); |
|
379 | 379 | } |
380 | 380 | |
381 | 381 | } |
@@ -390,18 +390,18 @@ discard block |
||
390 | 390 | * @param $bool $deprecated |
391 | 391 | * @return WPInv_Invoice|null |
392 | 392 | */ |
393 | -function wpinv_get_invoice( $invoice = 0, $deprecated = false ) { |
|
393 | +function wpinv_get_invoice($invoice = 0, $deprecated = false) { |
|
394 | 394 | |
395 | 395 | // If we are retrieving the invoice from the cart... |
396 | - if ( $deprecated && empty( $invoice ) ) { |
|
396 | + if ($deprecated && empty($invoice)) { |
|
397 | 397 | $invoice = (int) getpaid_get_current_invoice_id(); |
398 | 398 | } |
399 | 399 | |
400 | 400 | // Retrieve the invoice. |
401 | - $invoice = new WPInv_Invoice( $invoice ); |
|
401 | + $invoice = new WPInv_Invoice($invoice); |
|
402 | 402 | |
403 | 403 | // Check if it exists. |
404 | - if ( $invoice->get_id() != 0 ) { |
|
404 | + if ($invoice->get_id() != 0) { |
|
405 | 405 | return $invoice; |
406 | 406 | } |
407 | 407 | |
@@ -414,15 +414,15 @@ discard block |
||
414 | 414 | * @param array $args Args to search for. |
415 | 415 | * @return WPInv_Invoice[]|int[]|object |
416 | 416 | */ |
417 | -function wpinv_get_invoices( $args ) { |
|
417 | +function wpinv_get_invoices($args) { |
|
418 | 418 | |
419 | 419 | // Prepare args. |
420 | 420 | $args = wp_parse_args( |
421 | 421 | $args, |
422 | 422 | array( |
423 | - 'status' => array_keys( wpinv_get_invoice_statuses() ), |
|
423 | + 'status' => array_keys(wpinv_get_invoice_statuses()), |
|
424 | 424 | 'type' => 'wpi_invoice', |
425 | - 'limit' => get_option( 'posts_per_page' ), |
|
425 | + 'limit' => get_option('posts_per_page'), |
|
426 | 426 | 'return' => 'objects', |
427 | 427 | ) |
428 | 428 | ); |
@@ -440,24 +440,24 @@ discard block |
||
440 | 440 | 'post__in' => 'include', |
441 | 441 | ); |
442 | 442 | |
443 | - foreach ( $map_legacy as $to => $from ) { |
|
444 | - if ( isset( $args[ $from ] ) ) { |
|
445 | - $args[ $to ] = $args[ $from ]; |
|
446 | - unset( $args[ $from ] ); |
|
443 | + foreach ($map_legacy as $to => $from) { |
|
444 | + if (isset($args[$from])) { |
|
445 | + $args[$to] = $args[$from]; |
|
446 | + unset($args[$from]); |
|
447 | 447 | } |
448 | 448 | } |
449 | 449 | |
450 | 450 | // Backwards compatibility. |
451 | - if ( ! empty( $args['email'] ) && empty( $args['user'] ) ) { |
|
451 | + if (!empty($args['email']) && empty($args['user'])) { |
|
452 | 452 | $args['user'] = $args['email']; |
453 | - unset( $args['email'] ); |
|
453 | + unset($args['email']); |
|
454 | 454 | } |
455 | 455 | |
456 | 456 | // Handle cases where the user is set as an email. |
457 | - if ( ! empty( $args['author'] ) && is_email( $args['author'] ) ) { |
|
458 | - $user = get_user_by( 'email', $args['user'] ); |
|
457 | + if (!empty($args['author']) && is_email($args['author'])) { |
|
458 | + $user = get_user_by('email', $args['user']); |
|
459 | 459 | |
460 | - if ( $user ) { |
|
460 | + if ($user) { |
|
461 | 461 | $args['author'] = $user->user_email; |
462 | 462 | } |
463 | 463 | |
@@ -468,31 +468,31 @@ discard block |
||
468 | 468 | |
469 | 469 | // Show all posts. |
470 | 470 | $paginate = true; |
471 | - if ( isset( $args['paginate'] ) ) { |
|
471 | + if (isset($args['paginate'])) { |
|
472 | 472 | |
473 | 473 | $paginate = $args['paginate']; |
474 | - $args['no_found_rows'] = empty( $args['paginate'] ); |
|
475 | - unset( $args['paginate'] ); |
|
474 | + $args['no_found_rows'] = empty($args['paginate']); |
|
475 | + unset($args['paginate']); |
|
476 | 476 | |
477 | 477 | } |
478 | 478 | |
479 | 479 | // Whether to return objects or fields. |
480 | 480 | $return = $args['return']; |
481 | - unset( $args['return'] ); |
|
481 | + unset($args['return']); |
|
482 | 482 | |
483 | 483 | // Get invoices. |
484 | - $invoices = new WP_Query( apply_filters( 'wpinv_get_invoices_args', $args ) ); |
|
484 | + $invoices = new WP_Query(apply_filters('wpinv_get_invoices_args', $args)); |
|
485 | 485 | |
486 | 486 | // Prepare the results. |
487 | - if ( 'objects' === $return ) { |
|
488 | - $results = array_map( 'wpinv_get_invoice', $invoices->posts ); |
|
489 | - } elseif ( 'self' === $return ) { |
|
487 | + if ('objects' === $return) { |
|
488 | + $results = array_map('wpinv_get_invoice', $invoices->posts); |
|
489 | + } elseif ('self' === $return) { |
|
490 | 490 | return $invoices; |
491 | 491 | } else { |
492 | 492 | $results = $invoices->posts; |
493 | 493 | } |
494 | 494 | |
495 | - if ( $paginate ) { |
|
495 | + if ($paginate) { |
|
496 | 496 | return (object) array( |
497 | 497 | 'invoices' => $results, |
498 | 498 | 'total' => $invoices->found_posts, |
@@ -510,8 +510,8 @@ discard block |
||
510 | 510 | * @param string $transaction_id The transaction id to check. |
511 | 511 | * @return int Invoice id on success or 0 on failure |
512 | 512 | */ |
513 | -function wpinv_get_id_by_transaction_id( $transaction_id ) { |
|
514 | - return WPInv_Invoice::get_invoice_id_by_field( $transaction_id, 'transaction_id' ); |
|
513 | +function wpinv_get_id_by_transaction_id($transaction_id) { |
|
514 | + return WPInv_Invoice::get_invoice_id_by_field($transaction_id, 'transaction_id'); |
|
515 | 515 | } |
516 | 516 | |
517 | 517 | /** |
@@ -520,8 +520,8 @@ discard block |
||
520 | 520 | * @param string $invoice_number The invoice number to check. |
521 | 521 | * @return int Invoice id on success or 0 on failure |
522 | 522 | */ |
523 | -function wpinv_get_id_by_invoice_number( $invoice_number ) { |
|
524 | - return WPInv_Invoice::get_invoice_id_by_field( $invoice_number, 'number' ); |
|
523 | +function wpinv_get_id_by_invoice_number($invoice_number) { |
|
524 | + return WPInv_Invoice::get_invoice_id_by_field($invoice_number, 'number'); |
|
525 | 525 | } |
526 | 526 | |
527 | 527 | /** |
@@ -530,8 +530,8 @@ discard block |
||
530 | 530 | * @param string $invoice_key The invoice key to check. |
531 | 531 | * @return int Invoice id on success or 0 on failure |
532 | 532 | */ |
533 | -function wpinv_get_invoice_id_by_key( $invoice_key ) { |
|
534 | - return WPInv_Invoice::get_invoice_id_by_field( $invoice_key, 'key' ); |
|
533 | +function wpinv_get_invoice_id_by_key($invoice_key) { |
|
534 | + return WPInv_Invoice::get_invoice_id_by_field($invoice_key, 'key'); |
|
535 | 535 | } |
536 | 536 | |
537 | 537 | /** |
@@ -541,19 +541,19 @@ discard block |
||
541 | 541 | * @param string $type Optionally filter by type i.e customer|system |
542 | 542 | * @return array|null |
543 | 543 | */ |
544 | -function wpinv_get_invoice_notes( $invoice = 0, $type = '' ) { |
|
544 | +function wpinv_get_invoice_notes($invoice = 0, $type = '') { |
|
545 | 545 | |
546 | 546 | // Prepare the invoice. |
547 | - $invoice = wpinv_get_invoice( $invoice ); |
|
548 | - if ( empty( $invoice ) ) { |
|
547 | + $invoice = wpinv_get_invoice($invoice); |
|
548 | + if (empty($invoice)) { |
|
549 | 549 | return NULL; |
550 | 550 | } |
551 | 551 | |
552 | 552 | // Fetch notes. |
553 | - $notes = getpaid_notes()->get_invoice_notes( $invoice->get_id(), $type ); |
|
553 | + $notes = getpaid_notes()->get_invoice_notes($invoice->get_id(), $type); |
|
554 | 554 | |
555 | 555 | // Filter the notes. |
556 | - return apply_filters( 'wpinv_invoice_notes', $notes, $invoice->get_id(), $type ); |
|
556 | + return apply_filters('wpinv_invoice_notes', $notes, $invoice->get_id(), $type); |
|
557 | 557 | } |
558 | 558 | |
559 | 559 | /** |
@@ -561,10 +561,10 @@ discard block |
||
561 | 561 | * |
562 | 562 | * @param string $post_type |
563 | 563 | */ |
564 | -function wpinv_get_user_invoices_columns( $post_type = 'wpi_invoice' ) { |
|
564 | +function wpinv_get_user_invoices_columns($post_type = 'wpi_invoice') { |
|
565 | 565 | |
566 | - $label = getpaid_get_post_type_label( $post_type, false ); |
|
567 | - $label = empty( $label ) ? __( 'Invoice', 'invoicing' ) : sanitize_text_field( $label ); |
|
566 | + $label = getpaid_get_post_type_label($post_type, false); |
|
567 | + $label = empty($label) ? __('Invoice', 'invoicing') : sanitize_text_field($label); |
|
568 | 568 | $columns = array( |
569 | 569 | |
570 | 570 | 'invoice-number' => array( |
@@ -573,22 +573,22 @@ discard block |
||
573 | 573 | ), |
574 | 574 | |
575 | 575 | 'created-date' => array( |
576 | - 'title' => __( 'Created Date', 'invoicing' ), |
|
576 | + 'title' => __('Created Date', 'invoicing'), |
|
577 | 577 | 'class' => 'text-left' |
578 | 578 | ), |
579 | 579 | |
580 | 580 | 'payment-date' => array( |
581 | - 'title' => __( 'Payment Date', 'invoicing' ), |
|
581 | + 'title' => __('Payment Date', 'invoicing'), |
|
582 | 582 | 'class' => 'text-left' |
583 | 583 | ), |
584 | 584 | |
585 | 585 | 'invoice-status' => array( |
586 | - 'title' => __( 'Status', 'invoicing' ), |
|
586 | + 'title' => __('Status', 'invoicing'), |
|
587 | 587 | 'class' => 'text-center' |
588 | 588 | ), |
589 | 589 | |
590 | 590 | 'invoice-total' => array( |
591 | - 'title' => __( 'Total', 'invoicing' ), |
|
591 | + 'title' => __('Total', 'invoicing'), |
|
592 | 592 | 'class' => 'text-right' |
593 | 593 | ), |
594 | 594 | |
@@ -599,7 +599,7 @@ discard block |
||
599 | 599 | |
600 | 600 | ); |
601 | 601 | |
602 | - return apply_filters( 'wpinv_user_invoices_columns', $columns, $post_type ); |
|
602 | + return apply_filters('wpinv_user_invoices_columns', $columns, $post_type); |
|
603 | 603 | } |
604 | 604 | |
605 | 605 | /** |
@@ -609,59 +609,59 @@ discard block |
||
609 | 609 | |
610 | 610 | // Find the invoice. |
611 | 611 | $invoice_id = getpaid_get_current_invoice_id(); |
612 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
612 | + $invoice = new WPInv_Invoice($invoice_id); |
|
613 | 613 | |
614 | 614 | // Abort if non was found. |
615 | - if ( empty( $invoice_id ) || $invoice->is_draft() ) { |
|
615 | + if (empty($invoice_id) || $invoice->is_draft()) { |
|
616 | 616 | |
617 | 617 | return aui()->alert( |
618 | 618 | array( |
619 | 619 | 'type' => 'warning', |
620 | - 'content' => __( 'We could not find your invoice', 'invoicing' ), |
|
620 | + 'content' => __('We could not find your invoice', 'invoicing'), |
|
621 | 621 | ) |
622 | 622 | ); |
623 | 623 | |
624 | 624 | } |
625 | 625 | |
626 | 626 | // Can the user view this invoice? |
627 | - if ( ! wpinv_can_view_receipt( $invoice_id ) ) { |
|
627 | + if (!wpinv_can_view_receipt($invoice_id)) { |
|
628 | 628 | |
629 | 629 | return aui()->alert( |
630 | 630 | array( |
631 | 631 | 'type' => 'warning', |
632 | - 'content' => __( 'You are not allowed to view this receipt', 'invoicing' ), |
|
632 | + 'content' => __('You are not allowed to view this receipt', 'invoicing'), |
|
633 | 633 | ) |
634 | 634 | ); |
635 | 635 | |
636 | 636 | } |
637 | 637 | |
638 | 638 | // Load the template. |
639 | - return wpinv_get_template_html( 'invoice-receipt.php', compact( 'invoice' ) ); |
|
639 | + return wpinv_get_template_html('invoice-receipt.php', compact('invoice')); |
|
640 | 640 | |
641 | 641 | } |
642 | 642 | |
643 | 643 | /** |
644 | 644 | * Displays the invoice history. |
645 | 645 | */ |
646 | -function getpaid_invoice_history( $user_id = 0, $post_type = 'wpi_invoice' ) { |
|
646 | +function getpaid_invoice_history($user_id = 0, $post_type = 'wpi_invoice') { |
|
647 | 647 | |
648 | 648 | // Ensure that we have a user id. |
649 | - if ( empty( $user_id ) || ! is_numeric( $user_id ) ) { |
|
649 | + if (empty($user_id) || !is_numeric($user_id)) { |
|
650 | 650 | $user_id = get_current_user_id(); |
651 | 651 | } |
652 | 652 | |
653 | - $label = getpaid_get_post_type_label( $post_type ); |
|
654 | - $label = empty( $label ) ? __( 'Invoices', 'invoicing' ) : sanitize_text_field( $label ); |
|
653 | + $label = getpaid_get_post_type_label($post_type); |
|
654 | + $label = empty($label) ? __('Invoices', 'invoicing') : sanitize_text_field($label); |
|
655 | 655 | |
656 | 656 | // View user id. |
657 | - if ( empty( $user_id ) ) { |
|
657 | + if (empty($user_id)) { |
|
658 | 658 | |
659 | 659 | return aui()->alert( |
660 | 660 | array( |
661 | 661 | 'type' => 'warning', |
662 | 662 | 'content' => sprintf( |
663 | - __( 'You must be logged in to view your %s.', 'invoicing' ), |
|
664 | - strtolower( $label ) |
|
663 | + __('You must be logged in to view your %s.', 'invoicing'), |
|
664 | + strtolower($label) |
|
665 | 665 | ) |
666 | 666 | ) |
667 | 667 | ); |
@@ -672,23 +672,23 @@ discard block |
||
672 | 672 | $invoices = wpinv_get_invoices( |
673 | 673 | |
674 | 674 | array( |
675 | - 'page' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
675 | + 'page' => (get_query_var('paged')) ? absint(get_query_var('paged')) : 1, |
|
676 | 676 | 'user' => $user_id, |
677 | 677 | 'paginate' => true, |
678 | 678 | 'type' => $post_type, |
679 | - 'status' => array_keys( wpinv_get_invoice_statuses( false, false, $post_type ) ), |
|
679 | + 'status' => array_keys(wpinv_get_invoice_statuses(false, false, $post_type)), |
|
680 | 680 | ) |
681 | 681 | |
682 | 682 | ); |
683 | 683 | |
684 | - if ( empty( $invoices->total ) ) { |
|
684 | + if (empty($invoices->total)) { |
|
685 | 685 | |
686 | 686 | return aui()->alert( |
687 | 687 | array( |
688 | 688 | 'type' => 'info', |
689 | 689 | 'content' => sprintf( |
690 | - __( 'No %s found.', 'invoicing' ), |
|
691 | - strtolower( $label ) |
|
690 | + __('No %s found.', 'invoicing'), |
|
691 | + strtolower($label) |
|
692 | 692 | ) |
693 | 693 | ) |
694 | 694 | ); |
@@ -696,38 +696,38 @@ discard block |
||
696 | 696 | } |
697 | 697 | |
698 | 698 | // Load the template. |
699 | - return wpinv_get_template_html( 'invoice-history.php', compact( 'invoices', 'post_type' ) ); |
|
699 | + return wpinv_get_template_html('invoice-history.php', compact('invoices', 'post_type')); |
|
700 | 700 | |
701 | 701 | } |
702 | 702 | |
703 | 703 | /** |
704 | 704 | * Formats an invoice number given an invoice type. |
705 | 705 | */ |
706 | -function wpinv_format_invoice_number( $number, $type = '' ) { |
|
706 | +function wpinv_format_invoice_number($number, $type = '') { |
|
707 | 707 | |
708 | 708 | // Allow other plugins to overide this. |
709 | - $check = apply_filters( 'wpinv_pre_format_invoice_number', null, $number, $type ); |
|
710 | - if ( null !== $check ) { |
|
709 | + $check = apply_filters('wpinv_pre_format_invoice_number', null, $number, $type); |
|
710 | + if (null !== $check) { |
|
711 | 711 | return $check; |
712 | 712 | } |
713 | 713 | |
714 | 714 | // Ensure that we have a numeric number. |
715 | - if ( ! is_numeric( $number ) ) { |
|
715 | + if (!is_numeric($number)) { |
|
716 | 716 | return $number; |
717 | 717 | } |
718 | 718 | |
719 | 719 | // Format the number. |
720 | - $padd = absint( (int) wpinv_get_option( 'invoice_number_padd', 5 ) ); |
|
721 | - $prefix = sanitize_text_field( (string) wpinv_get_option( 'invoice_number_prefix', 'INV-' ) ); |
|
722 | - $prefix = sanitize_text_field( apply_filters( 'getpaid_invoice_type_prefix', $prefix, $type ) ); |
|
723 | - $postfix = sanitize_text_field( (string) wpinv_get_option( 'invoice_number_postfix' ) ); |
|
724 | - $postfix = sanitize_text_field( apply_filters( 'getpaid_invoice_type_postfix', $postfix, $type ) ); |
|
725 | - $formatted_number = zeroise( absint( $number ), $padd ); |
|
720 | + $padd = absint((int) wpinv_get_option('invoice_number_padd', 5)); |
|
721 | + $prefix = sanitize_text_field((string) wpinv_get_option('invoice_number_prefix', 'INV-')); |
|
722 | + $prefix = sanitize_text_field(apply_filters('getpaid_invoice_type_prefix', $prefix, $type)); |
|
723 | + $postfix = sanitize_text_field((string) wpinv_get_option('invoice_number_postfix')); |
|
724 | + $postfix = sanitize_text_field(apply_filters('getpaid_invoice_type_postfix', $postfix, $type)); |
|
725 | + $formatted_number = zeroise(absint($number), $padd); |
|
726 | 726 | |
727 | 727 | // Add the prefix and post fix. |
728 | 728 | $formatted_number = $prefix . $formatted_number . $postfix; |
729 | 729 | |
730 | - return apply_filters( 'wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd ); |
|
730 | + return apply_filters('wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd); |
|
731 | 731 | } |
732 | 732 | |
733 | 733 | /** |
@@ -736,58 +736,58 @@ discard block |
||
736 | 736 | * @param string $type. |
737 | 737 | * @return int|null|bool |
738 | 738 | */ |
739 | -function wpinv_get_next_invoice_number( $type = '' ) { |
|
739 | +function wpinv_get_next_invoice_number($type = '') { |
|
740 | 740 | |
741 | 741 | // Allow plugins to overide this. |
742 | - $check = apply_filters( 'wpinv_get_pre_next_invoice_number', null, $type ); |
|
743 | - if ( null !== $check ) { |
|
742 | + $check = apply_filters('wpinv_get_pre_next_invoice_number', null, $type); |
|
743 | + if (null !== $check) { |
|
744 | 744 | return $check; |
745 | 745 | } |
746 | 746 | |
747 | 747 | // Ensure sequential invoice numbers is active. |
748 | - if ( ! wpinv_sequential_number_active() ) { |
|
748 | + if (!wpinv_sequential_number_active()) { |
|
749 | 749 | return false; |
750 | 750 | } |
751 | 751 | |
752 | 752 | // Retrieve the current number and the start number. |
753 | - $number = (int) get_option( 'wpinv_last_invoice_number', 0 ); |
|
754 | - $start = absint( (int) wpinv_get_option( 'invoice_sequence_start', 1 ) ); |
|
753 | + $number = (int) get_option('wpinv_last_invoice_number', 0); |
|
754 | + $start = absint((int) wpinv_get_option('invoice_sequence_start', 1)); |
|
755 | 755 | |
756 | 756 | // Ensure that we are starting at a positive integer. |
757 | - $start = max( $start, 1 ); |
|
757 | + $start = max($start, 1); |
|
758 | 758 | |
759 | 759 | // If this is the first invoice, use the start number. |
760 | - $number = max( $start, $number ); |
|
760 | + $number = max($start, $number); |
|
761 | 761 | |
762 | 762 | // Format the invoice number. |
763 | - $formatted_number = wpinv_format_invoice_number( $number, $type ); |
|
763 | + $formatted_number = wpinv_format_invoice_number($number, $type); |
|
764 | 764 | |
765 | 765 | // Ensure that this number is unique. |
766 | - $invoice_id = WPInv_Invoice::get_invoice_id_by_field( $formatted_number, 'number' ); |
|
766 | + $invoice_id = WPInv_Invoice::get_invoice_id_by_field($formatted_number, 'number'); |
|
767 | 767 | |
768 | 768 | // We found a match. Nice. |
769 | - if ( empty( $invoice_id ) ) { |
|
770 | - update_option( 'wpinv_last_invoice_number', $number ); |
|
771 | - return apply_filters( 'wpinv_get_next_invoice_number', $number ); |
|
769 | + if (empty($invoice_id)) { |
|
770 | + update_option('wpinv_last_invoice_number', $number); |
|
771 | + return apply_filters('wpinv_get_next_invoice_number', $number); |
|
772 | 772 | } |
773 | 773 | |
774 | - update_option( 'wpinv_last_invoice_number', $number + 1 ); |
|
775 | - return wpinv_get_next_invoice_number( $type ); |
|
774 | + update_option('wpinv_last_invoice_number', $number + 1); |
|
775 | + return wpinv_get_next_invoice_number($type); |
|
776 | 776 | |
777 | 777 | } |
778 | 778 | |
779 | 779 | /** |
780 | 780 | * The prefix used for invoice paths. |
781 | 781 | */ |
782 | -function wpinv_post_name_prefix( $post_type = 'wpi_invoice' ) { |
|
783 | - return apply_filters( 'wpinv_post_name_prefix', 'inv-', $post_type ); |
|
782 | +function wpinv_post_name_prefix($post_type = 'wpi_invoice') { |
|
783 | + return apply_filters('wpinv_post_name_prefix', 'inv-', $post_type); |
|
784 | 784 | } |
785 | 785 | |
786 | -function wpinv_generate_post_name( $post_ID ) { |
|
787 | - $prefix = wpinv_post_name_prefix( get_post_type( $post_ID ) ); |
|
788 | - $post_name = sanitize_title( $prefix . $post_ID ); |
|
786 | +function wpinv_generate_post_name($post_ID) { |
|
787 | + $prefix = wpinv_post_name_prefix(get_post_type($post_ID)); |
|
788 | + $post_name = sanitize_title($prefix . $post_ID); |
|
789 | 789 | |
790 | - return apply_filters( 'wpinv_generate_post_name', $post_name, $post_ID, $prefix ); |
|
790 | + return apply_filters('wpinv_generate_post_name', $post_name, $post_ID, $prefix); |
|
791 | 791 | } |
792 | 792 | |
793 | 793 | /** |
@@ -795,8 +795,8 @@ discard block |
||
795 | 795 | * |
796 | 796 | * @param int|string|object|WPInv_Invoice|WPInv_Legacy_Invoice|WP_Post $invoice Invoice id, key, transaction id, number or object. |
797 | 797 | */ |
798 | -function wpinv_is_invoice_viewed( $invoice ) { |
|
799 | - $invoice = new WPInv_Invoice( $invoice ); |
|
798 | +function wpinv_is_invoice_viewed($invoice) { |
|
799 | + $invoice = new WPInv_Invoice($invoice); |
|
800 | 800 | return (bool) $invoice->get_is_viewed(); |
801 | 801 | } |
802 | 802 | |
@@ -805,17 +805,17 @@ discard block |
||
805 | 805 | * |
806 | 806 | * @param int|string|object|WPInv_Invoice|WPInv_Legacy_Invoice|WP_Post $invoice Invoice id, key, transaction id, number or object. |
807 | 807 | */ |
808 | -function getpaid_maybe_mark_invoice_as_viewed( $invoice ) { |
|
809 | - $invoice = new WPInv_Invoice( $invoice ); |
|
808 | +function getpaid_maybe_mark_invoice_as_viewed($invoice) { |
|
809 | + $invoice = new WPInv_Invoice($invoice); |
|
810 | 810 | |
811 | - if ( get_current_user_id() == $invoice->get_user_id() && ! $invoice->get_is_viewed() ) { |
|
812 | - $invoice->set_is_viewed( true ); |
|
811 | + if (get_current_user_id() == $invoice->get_user_id() && !$invoice->get_is_viewed()) { |
|
812 | + $invoice->set_is_viewed(true); |
|
813 | 813 | $invoice->save(); |
814 | 814 | } |
815 | 815 | |
816 | 816 | } |
817 | -add_action( 'wpinv_invoice_print_before_display', 'getpaid_maybe_mark_invoice_as_viewed' ); |
|
818 | -add_action( 'wpinv_before_receipt', 'getpaid_maybe_mark_invoice_as_viewed' ); |
|
817 | +add_action('wpinv_invoice_print_before_display', 'getpaid_maybe_mark_invoice_as_viewed'); |
|
818 | +add_action('wpinv_before_receipt', 'getpaid_maybe_mark_invoice_as_viewed'); |
|
819 | 819 | |
820 | 820 | /** |
821 | 821 | * Processes an invoice refund. |
@@ -824,27 +824,27 @@ discard block |
||
824 | 824 | * @param array $status_transition |
825 | 825 | * @todo: descrease customer/store earnings |
826 | 826 | */ |
827 | -function getpaid_maybe_process_refund( $invoice, $status_transition ) { |
|
827 | +function getpaid_maybe_process_refund($invoice, $status_transition) { |
|
828 | 828 | |
829 | - if ( empty( $status_transition['from'] ) || ! in_array( $status_transition['from'], array( 'publish', 'wpi-processing', 'wpi-renewal' ) ) ) { |
|
829 | + if (empty($status_transition['from']) || !in_array($status_transition['from'], array('publish', 'wpi-processing', 'wpi-renewal'))) { |
|
830 | 830 | return; |
831 | 831 | } |
832 | 832 | |
833 | 833 | $discount_code = $invoice->get_discount_code(); |
834 | - if ( ! empty( $discount_code ) ) { |
|
835 | - $discount = wpinv_get_discount_obj( $discount_code ); |
|
834 | + if (!empty($discount_code)) { |
|
835 | + $discount = wpinv_get_discount_obj($discount_code); |
|
836 | 836 | |
837 | - if ( $discount->exists() ) { |
|
837 | + if ($discount->exists()) { |
|
838 | 838 | $discount->increase_usage( -1 ); |
839 | 839 | } |
840 | 840 | |
841 | 841 | } |
842 | 842 | |
843 | - do_action( 'wpinv_pre_refund_invoice', $invoice, $invoice->get_id() ); |
|
844 | - do_action( 'wpinv_refund_invoice', $invoice, $invoice->get_id() ); |
|
845 | - do_action( 'wpinv_post_refund_invoice', $invoice, $invoice->get_id() ); |
|
843 | + do_action('wpinv_pre_refund_invoice', $invoice, $invoice->get_id()); |
|
844 | + do_action('wpinv_refund_invoice', $invoice, $invoice->get_id()); |
|
845 | + do_action('wpinv_post_refund_invoice', $invoice, $invoice->get_id()); |
|
846 | 846 | } |
847 | -add_action( 'getpaid_invoice_status_wpi-refunded', 'getpaid_maybe_process_refund', 10, 2 ); |
|
847 | +add_action('getpaid_invoice_status_wpi-refunded', 'getpaid_maybe_process_refund', 10, 2); |
|
848 | 848 | |
849 | 849 | |
850 | 850 | /** |
@@ -852,49 +852,49 @@ discard block |
||
852 | 852 | * |
853 | 853 | * @param int $invoice_id |
854 | 854 | */ |
855 | -function getpaid_process_invoice_payment( $invoice_id ) { |
|
855 | +function getpaid_process_invoice_payment($invoice_id) { |
|
856 | 856 | |
857 | 857 | // Fetch the invoice. |
858 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
858 | + $invoice = new WPInv_Invoice($invoice_id); |
|
859 | 859 | |
860 | 860 | // We only want to do this once. |
861 | - if ( 1 == get_post_meta( $invoice->get_id(), 'wpinv_processed_payment', true ) ) { |
|
861 | + if (1 == get_post_meta($invoice->get_id(), 'wpinv_processed_payment', true)) { |
|
862 | 862 | return; |
863 | 863 | } |
864 | 864 | |
865 | - update_post_meta( $invoice->get_id(), 'wpinv_processed_payment', 1 ); |
|
865 | + update_post_meta($invoice->get_id(), 'wpinv_processed_payment', 1); |
|
866 | 866 | |
867 | 867 | // Fires when processing a payment. |
868 | - do_action( 'getpaid_process_payment', $invoice ); |
|
868 | + do_action('getpaid_process_payment', $invoice); |
|
869 | 869 | |
870 | 870 | // Fire an action for each invoice item. |
871 | - foreach( $invoice->get_items() as $item ) { |
|
872 | - do_action( 'getpaid_process_item_payment', $item, $invoice ); |
|
871 | + foreach ($invoice->get_items() as $item) { |
|
872 | + do_action('getpaid_process_item_payment', $item, $invoice); |
|
873 | 873 | } |
874 | 874 | |
875 | 875 | // Increase discount usage. |
876 | 876 | $discount_code = $invoice->get_discount_code(); |
877 | - if ( ! empty( $discount_code ) && ! $invoice->is_renewal() ) { |
|
878 | - $discount = wpinv_get_discount_obj( $discount_code ); |
|
877 | + if (!empty($discount_code) && !$invoice->is_renewal()) { |
|
878 | + $discount = wpinv_get_discount_obj($discount_code); |
|
879 | 879 | |
880 | - if ( $discount->exists() ) { |
|
880 | + if ($discount->exists()) { |
|
881 | 881 | $discount->increase_usage(); |
882 | 882 | } |
883 | 883 | |
884 | 884 | } |
885 | 885 | |
886 | 886 | // Record reverse vat. |
887 | - if ( 'invoice' == $invoice->get_type() && wpinv_use_taxes() && ! $invoice->get_disable_taxes() ) { |
|
887 | + if ('invoice' == $invoice->get_type() && wpinv_use_taxes() && !$invoice->get_disable_taxes()) { |
|
888 | 888 | |
889 | 889 | $taxes = $invoice->get_total_tax(); |
890 | - if ( empty( $taxes ) && GetPaid_Payment_Form_Submission_Taxes::is_eu_transaction( $invoice->get_country() ) ) { |
|
891 | - $invoice->add_note( __( 'VAT was reverse charged', 'invoicing' ), false, false, true ); |
|
890 | + if (empty($taxes) && GetPaid_Payment_Form_Submission_Taxes::is_eu_transaction($invoice->get_country())) { |
|
891 | + $invoice->add_note(__('VAT was reverse charged', 'invoicing'), false, false, true); |
|
892 | 892 | } |
893 | 893 | |
894 | 894 | } |
895 | 895 | |
896 | 896 | } |
897 | -add_action( 'getpaid_invoice_payment_status_changed', 'getpaid_process_invoice_payment' ); |
|
897 | +add_action('getpaid_invoice_payment_status_changed', 'getpaid_process_invoice_payment'); |
|
898 | 898 | |
899 | 899 | /** |
900 | 900 | * Returns an array of invoice item columns |
@@ -902,13 +902,13 @@ discard block |
||
902 | 902 | * @param int|WPInv_Invoice $invoice |
903 | 903 | * @return array |
904 | 904 | */ |
905 | -function getpaid_invoice_item_columns( $invoice ) { |
|
905 | +function getpaid_invoice_item_columns($invoice) { |
|
906 | 906 | |
907 | 907 | // Prepare the invoice. |
908 | - $invoice = new WPInv_Invoice( $invoice ); |
|
908 | + $invoice = new WPInv_Invoice($invoice); |
|
909 | 909 | |
910 | 910 | // Abort if there is no invoice. |
911 | - if ( 0 == $invoice->get_id() ) { |
|
911 | + if (0 == $invoice->get_id()) { |
|
912 | 912 | return array(); |
913 | 913 | } |
914 | 914 | |
@@ -916,57 +916,57 @@ discard block |
||
916 | 916 | $columns = apply_filters( |
917 | 917 | 'getpaid_invoice_item_columns', |
918 | 918 | array( |
919 | - 'name' => __( 'Item', 'invoicing' ), |
|
920 | - 'price' => __( 'Price', 'invoicing' ), |
|
921 | - 'tax_rate' => __( 'Tax Rate', 'invoicing' ), |
|
922 | - 'quantity' => __( 'Quantity', 'invoicing' ), |
|
923 | - 'subtotal' => __( 'Item Subtotal', 'invoicing' ), |
|
919 | + 'name' => __('Item', 'invoicing'), |
|
920 | + 'price' => __('Price', 'invoicing'), |
|
921 | + 'tax_rate' => __('Tax Rate', 'invoicing'), |
|
922 | + 'quantity' => __('Quantity', 'invoicing'), |
|
923 | + 'subtotal' => __('Item Subtotal', 'invoicing'), |
|
924 | 924 | ), |
925 | 925 | $invoice |
926 | 926 | ); |
927 | 927 | |
928 | 928 | // Quantities. |
929 | - if ( isset( $columns[ 'quantity' ] ) ) { |
|
929 | + if (isset($columns['quantity'])) { |
|
930 | 930 | |
931 | - if ( 'hours' == $invoice->get_template() ) { |
|
932 | - $columns[ 'quantity' ] = __( 'Hours', 'invoicing' ); |
|
931 | + if ('hours' == $invoice->get_template()) { |
|
932 | + $columns['quantity'] = __('Hours', 'invoicing'); |
|
933 | 933 | } |
934 | 934 | |
935 | - if ( ! wpinv_item_quantities_enabled() || 'amount' == $invoice->get_template() ) { |
|
936 | - unset( $columns[ 'quantity' ] ); |
|
935 | + if (!wpinv_item_quantities_enabled() || 'amount' == $invoice->get_template()) { |
|
936 | + unset($columns['quantity']); |
|
937 | 937 | } |
938 | 938 | |
939 | 939 | } |
940 | 940 | |
941 | 941 | |
942 | 942 | // Price. |
943 | - if ( isset( $columns[ 'price' ] ) ) { |
|
943 | + if (isset($columns['price'])) { |
|
944 | 944 | |
945 | - if ( 'amount' == $invoice->get_template() ) { |
|
946 | - $columns[ 'price' ] = __( 'Amount', 'invoicing' ); |
|
945 | + if ('amount' == $invoice->get_template()) { |
|
946 | + $columns['price'] = __('Amount', 'invoicing'); |
|
947 | 947 | } |
948 | 948 | |
949 | - if ( 'hours' == $invoice->get_template() ) { |
|
950 | - $columns[ 'price' ] = __( 'Rate', 'invoicing' ); |
|
949 | + if ('hours' == $invoice->get_template()) { |
|
950 | + $columns['price'] = __('Rate', 'invoicing'); |
|
951 | 951 | } |
952 | 952 | |
953 | 953 | } |
954 | 954 | |
955 | 955 | |
956 | 956 | // Sub total. |
957 | - if ( isset( $columns[ 'subtotal' ] ) ) { |
|
957 | + if (isset($columns['subtotal'])) { |
|
958 | 958 | |
959 | - if ( 'amount' == $invoice->get_template() ) { |
|
960 | - unset( $columns[ 'subtotal' ] ); |
|
959 | + if ('amount' == $invoice->get_template()) { |
|
960 | + unset($columns['subtotal']); |
|
961 | 961 | } |
962 | 962 | |
963 | 963 | } |
964 | 964 | |
965 | 965 | // Tax rates. |
966 | - if ( isset( $columns[ 'tax_rate' ] ) ) { |
|
966 | + if (isset($columns['tax_rate'])) { |
|
967 | 967 | |
968 | - if ( 0 == $invoice->get_tax() ) { |
|
969 | - unset( $columns[ 'tax_rate' ] ); |
|
968 | + if (0 == $invoice->get_tax()) { |
|
969 | + unset($columns['tax_rate']); |
|
970 | 970 | } |
971 | 971 | |
972 | 972 | } |
@@ -980,38 +980,38 @@ discard block |
||
980 | 980 | * @param int|WPInv_Invoice $invoice |
981 | 981 | * @return array |
982 | 982 | */ |
983 | -function getpaid_invoice_totals_rows( $invoice ) { |
|
983 | +function getpaid_invoice_totals_rows($invoice) { |
|
984 | 984 | |
985 | 985 | // Prepare the invoice. |
986 | - $invoice = new WPInv_Invoice( $invoice ); |
|
986 | + $invoice = new WPInv_Invoice($invoice); |
|
987 | 987 | |
988 | 988 | // Abort if there is no invoice. |
989 | - if ( 0 == $invoice->get_id() ) { |
|
989 | + if (0 == $invoice->get_id()) { |
|
990 | 990 | return array(); |
991 | 991 | } |
992 | 992 | |
993 | 993 | $totals = apply_filters( |
994 | 994 | 'getpaid_invoice_totals_rows', |
995 | 995 | array( |
996 | - 'subtotal' => __( 'Subtotal', 'invoicing' ), |
|
997 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
998 | - 'fee' => __( 'Fee', 'invoicing' ), |
|
999 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
1000 | - 'total' => __( 'Total', 'invoicing' ), |
|
996 | + 'subtotal' => __('Subtotal', 'invoicing'), |
|
997 | + 'tax' => __('Tax', 'invoicing'), |
|
998 | + 'fee' => __('Fee', 'invoicing'), |
|
999 | + 'discount' => __('Discount', 'invoicing'), |
|
1000 | + 'total' => __('Total', 'invoicing'), |
|
1001 | 1001 | ), |
1002 | 1002 | $invoice |
1003 | 1003 | ); |
1004 | 1004 | |
1005 | - if ( ( $invoice->get_disable_taxes() || ! wpinv_use_taxes() ) && isset( $totals['tax'] ) ) { |
|
1006 | - unset( $totals['tax'] ); |
|
1005 | + if (($invoice->get_disable_taxes() || !wpinv_use_taxes()) && isset($totals['tax'])) { |
|
1006 | + unset($totals['tax']); |
|
1007 | 1007 | } |
1008 | 1008 | |
1009 | - if ( 0 == $invoice->get_total_fees() && isset( $totals['fee'] ) ) { |
|
1010 | - unset( $totals['fee'] ); |
|
1009 | + if (0 == $invoice->get_total_fees() && isset($totals['fee'])) { |
|
1010 | + unset($totals['fee']); |
|
1011 | 1011 | } |
1012 | 1012 | |
1013 | - if ( 0 == $invoice->get_total_discount() && isset( $totals['discount'] ) ) { |
|
1014 | - unset( $totals['discount'] ); |
|
1013 | + if (0 == $invoice->get_total_discount() && isset($totals['discount'])) { |
|
1014 | + unset($totals['discount']); |
|
1015 | 1015 | } |
1016 | 1016 | |
1017 | 1017 | return $totals; |
@@ -1022,47 +1022,47 @@ discard block |
||
1022 | 1022 | * |
1023 | 1023 | * @param WPInv_Invoice $invoice |
1024 | 1024 | */ |
1025 | -function getpaid_new_invoice( $invoice ) { |
|
1025 | +function getpaid_new_invoice($invoice) { |
|
1026 | 1026 | |
1027 | - if ( ! $invoice->get_status() ) { |
|
1027 | + if (!$invoice->get_status()) { |
|
1028 | 1028 | return; |
1029 | 1029 | } |
1030 | 1030 | |
1031 | 1031 | // Add an invoice created note. |
1032 | 1032 | $invoice->add_note( |
1033 | 1033 | sprintf( |
1034 | - __( '%s created with the status "%s".', 'invoicing' ), |
|
1035 | - ucfirst( $invoice->get_invoice_quote_type() ), |
|
1036 | - wpinv_status_nicename( $invoice->get_status(), $invoice ) |
|
1034 | + __('%s created with the status "%s".', 'invoicing'), |
|
1035 | + ucfirst($invoice->get_invoice_quote_type()), |
|
1036 | + wpinv_status_nicename($invoice->get_status(), $invoice) |
|
1037 | 1037 | ) |
1038 | 1038 | ); |
1039 | 1039 | |
1040 | 1040 | } |
1041 | -add_action( 'getpaid_new_invoice', 'getpaid_new_invoice' ); |
|
1041 | +add_action('getpaid_new_invoice', 'getpaid_new_invoice'); |
|
1042 | 1042 | |
1043 | 1043 | /** |
1044 | 1044 | * This function updates invoice caches. |
1045 | 1045 | * |
1046 | 1046 | * @param WPInv_Invoice $invoice |
1047 | 1047 | */ |
1048 | -function getpaid_update_invoice_caches( $invoice ) { |
|
1048 | +function getpaid_update_invoice_caches($invoice) { |
|
1049 | 1049 | |
1050 | 1050 | // Cache invoice number. |
1051 | - wp_cache_set( $invoice->get_number(), $invoice->get_id(), "getpaid_invoice_numbers_to_invoice_ids" ); |
|
1051 | + wp_cache_set($invoice->get_number(), $invoice->get_id(), "getpaid_invoice_numbers_to_invoice_ids"); |
|
1052 | 1052 | |
1053 | 1053 | // Cache invoice key. |
1054 | - wp_cache_set( $invoice->get_key(), $invoice->get_id(), "getpaid_invoice_keys_to_invoice_ids" ); |
|
1054 | + wp_cache_set($invoice->get_key(), $invoice->get_id(), "getpaid_invoice_keys_to_invoice_ids"); |
|
1055 | 1055 | |
1056 | 1056 | // (Maybe) cache transaction id. |
1057 | 1057 | $transaction_id = $invoice->get_transaction_id(); |
1058 | 1058 | |
1059 | - if ( ! empty( $transaction_id ) ) { |
|
1060 | - wp_cache_set( $transaction_id, $invoice->get_id(), "getpaid_invoice_transaction_ids_to_invoice_ids" ); |
|
1059 | + if (!empty($transaction_id)) { |
|
1060 | + wp_cache_set($transaction_id, $invoice->get_id(), "getpaid_invoice_transaction_ids_to_invoice_ids"); |
|
1061 | 1061 | } |
1062 | 1062 | |
1063 | 1063 | } |
1064 | -add_action( 'getpaid_new_invoice', 'getpaid_update_invoice_caches', 5 ); |
|
1065 | -add_action( 'getpaid_update_invoice', 'getpaid_update_invoice_caches', 5 ); |
|
1064 | +add_action('getpaid_new_invoice', 'getpaid_update_invoice_caches', 5); |
|
1065 | +add_action('getpaid_update_invoice', 'getpaid_update_invoice_caches', 5); |
|
1066 | 1066 | |
1067 | 1067 | /** |
1068 | 1068 | * Duplicates an invoice. |
@@ -1072,7 +1072,7 @@ discard block |
||
1072 | 1072 | * @param WPInv_Invoice $old_invoice The invoice to duplicate |
1073 | 1073 | * @return WPInv_Invoice The new invoice. |
1074 | 1074 | */ |
1075 | -function getpaid_duplicate_invoice( $old_invoice ) { |
|
1075 | +function getpaid_duplicate_invoice($old_invoice) { |
|
1076 | 1076 | |
1077 | 1077 | // Create the new invoice. |
1078 | 1078 | $invoice = new WPInv_Invoice(); |
@@ -1133,123 +1133,123 @@ discard block |
||
1133 | 1133 | * @param WPInv_Invoice $invoice |
1134 | 1134 | * @return array |
1135 | 1135 | */ |
1136 | -function getpaid_get_invoice_meta( $invoice ) { |
|
1136 | +function getpaid_get_invoice_meta($invoice) { |
|
1137 | 1137 | |
1138 | 1138 | // Load the invoice meta. |
1139 | 1139 | $meta = array( |
1140 | 1140 | |
1141 | 1141 | 'number' => array( |
1142 | 1142 | 'label' => sprintf( |
1143 | - __( '%s Number', 'invoicing' ), |
|
1144 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
1143 | + __('%s Number', 'invoicing'), |
|
1144 | + ucfirst($invoice->get_invoice_quote_type()) |
|
1145 | 1145 | ), |
1146 | - 'value' => sanitize_text_field( $invoice->get_number() ), |
|
1146 | + 'value' => sanitize_text_field($invoice->get_number()), |
|
1147 | 1147 | ), |
1148 | 1148 | |
1149 | 1149 | 'status' => array( |
1150 | 1150 | 'label' => sprintf( |
1151 | - __( '%s Status', 'invoicing' ), |
|
1152 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
1151 | + __('%s Status', 'invoicing'), |
|
1152 | + ucfirst($invoice->get_invoice_quote_type()) |
|
1153 | 1153 | ), |
1154 | 1154 | 'value' => $invoice->get_status_label_html(), |
1155 | 1155 | ), |
1156 | 1156 | |
1157 | 1157 | 'date' => array( |
1158 | 1158 | 'label' => sprintf( |
1159 | - __( '%s Date', 'invoicing' ), |
|
1160 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
1159 | + __('%s Date', 'invoicing'), |
|
1160 | + ucfirst($invoice->get_invoice_quote_type()) |
|
1161 | 1161 | ), |
1162 | - 'value' => getpaid_format_date( $invoice->get_created_date() ), |
|
1162 | + 'value' => getpaid_format_date($invoice->get_created_date()), |
|
1163 | 1163 | ), |
1164 | 1164 | |
1165 | 1165 | 'date_paid' => array( |
1166 | - 'label' => __( 'Paid On', 'invoicing' ), |
|
1167 | - 'value' => getpaid_format_date( $invoice->get_completed_date() ), |
|
1166 | + 'label' => __('Paid On', 'invoicing'), |
|
1167 | + 'value' => getpaid_format_date($invoice->get_completed_date()), |
|
1168 | 1168 | ), |
1169 | 1169 | |
1170 | 1170 | 'gateway' => array( |
1171 | - 'label' => __( 'Payment Method', 'invoicing' ), |
|
1172 | - 'value' => sanitize_text_field( $invoice->get_gateway_title() ), |
|
1171 | + 'label' => __('Payment Method', 'invoicing'), |
|
1172 | + 'value' => sanitize_text_field($invoice->get_gateway_title()), |
|
1173 | 1173 | ), |
1174 | 1174 | |
1175 | 1175 | 'transaction_id' => array( |
1176 | - 'label' => __( 'Transaction ID', 'invoicing' ), |
|
1177 | - 'value' => sanitize_text_field( $invoice->get_transaction_id() ), |
|
1176 | + 'label' => __('Transaction ID', 'invoicing'), |
|
1177 | + 'value' => sanitize_text_field($invoice->get_transaction_id()), |
|
1178 | 1178 | ), |
1179 | 1179 | |
1180 | 1180 | 'due_date' => array( |
1181 | - 'label' => __( 'Due Date', 'invoicing' ), |
|
1182 | - 'value' => getpaid_format_date( $invoice->get_due_date() ), |
|
1181 | + 'label' => __('Due Date', 'invoicing'), |
|
1182 | + 'value' => getpaid_format_date($invoice->get_due_date()), |
|
1183 | 1183 | ), |
1184 | 1184 | |
1185 | 1185 | 'vat_number' => array( |
1186 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
1187 | - 'value' => sanitize_text_field( $invoice->get_vat_number() ), |
|
1186 | + 'label' => __('VAT Number', 'invoicing'), |
|
1187 | + 'value' => sanitize_text_field($invoice->get_vat_number()), |
|
1188 | 1188 | ), |
1189 | 1189 | |
1190 | 1190 | ); |
1191 | 1191 | |
1192 | 1192 | // If it is not paid, remove the date of payment. |
1193 | - if ( ! $invoice->is_paid() ) { |
|
1194 | - unset( $meta[ 'date_paid' ] ); |
|
1195 | - unset( $meta[ 'transaction_id' ] ); |
|
1193 | + if (!$invoice->is_paid()) { |
|
1194 | + unset($meta['date_paid']); |
|
1195 | + unset($meta['transaction_id']); |
|
1196 | 1196 | } |
1197 | 1197 | |
1198 | - if ( ! $invoice->is_paid() || 'none' == $invoice->get_gateway() ) { |
|
1199 | - unset( $meta[ 'gateway' ] ); |
|
1198 | + if (!$invoice->is_paid() || 'none' == $invoice->get_gateway()) { |
|
1199 | + unset($meta['gateway']); |
|
1200 | 1200 | } |
1201 | 1201 | |
1202 | 1202 | // Only display the due date if due dates are enabled. |
1203 | - if ( ! $invoice->needs_payment() || ! wpinv_get_option( 'overdue_active' ) ) { |
|
1204 | - unset( $meta[ 'due_date' ] ); |
|
1203 | + if (!$invoice->needs_payment() || !wpinv_get_option('overdue_active')) { |
|
1204 | + unset($meta['due_date']); |
|
1205 | 1205 | } |
1206 | 1206 | |
1207 | 1207 | // Only display the vat number if taxes are enabled. |
1208 | - if ( ! wpinv_use_taxes() ) { |
|
1209 | - unset( $meta[ 'vat_number' ] ); |
|
1208 | + if (!wpinv_use_taxes()) { |
|
1209 | + unset($meta['vat_number']); |
|
1210 | 1210 | } |
1211 | 1211 | |
1212 | - if ( $invoice->is_recurring() ) { |
|
1212 | + if ($invoice->is_recurring()) { |
|
1213 | 1213 | |
1214 | 1214 | // Link to the parent invoice. |
1215 | - if ( $invoice->is_renewal() ) { |
|
1215 | + if ($invoice->is_renewal()) { |
|
1216 | 1216 | |
1217 | - $meta[ 'parent' ] = array( |
|
1217 | + $meta['parent'] = array( |
|
1218 | 1218 | |
1219 | 1219 | 'label' => sprintf( |
1220 | - __( 'Parent %s', 'invoicing' ), |
|
1221 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
1220 | + __('Parent %s', 'invoicing'), |
|
1221 | + ucfirst($invoice->get_invoice_quote_type()) |
|
1222 | 1222 | ), |
1223 | 1223 | |
1224 | - 'value' => wpinv_invoice_link( $invoice->get_parent_id() ), |
|
1224 | + 'value' => wpinv_invoice_link($invoice->get_parent_id()), |
|
1225 | 1225 | |
1226 | 1226 | ); |
1227 | 1227 | |
1228 | 1228 | } |
1229 | 1229 | |
1230 | - $subscription = wpinv_get_subscription( $invoice ); |
|
1230 | + $subscription = wpinv_get_subscription($invoice); |
|
1231 | 1231 | |
1232 | - if ( ! empty ( $subscription ) ) { |
|
1232 | + if (!empty ($subscription)) { |
|
1233 | 1233 | |
1234 | 1234 | // Display the renewal date. |
1235 | - if ( $subscription->is_active() && 'cancelled' != $subscription->get_status() ) { |
|
1235 | + if ($subscription->is_active() && 'cancelled' != $subscription->get_status()) { |
|
1236 | 1236 | |
1237 | - $meta[ 'renewal_date' ] = array( |
|
1237 | + $meta['renewal_date'] = array( |
|
1238 | 1238 | |
1239 | - 'label' => __( 'Renews On', 'invoicing' ), |
|
1240 | - 'value' => getpaid_format_date( $subscription->get_expiration() ), |
|
1239 | + 'label' => __('Renews On', 'invoicing'), |
|
1240 | + 'value' => getpaid_format_date($subscription->get_expiration()), |
|
1241 | 1241 | |
1242 | 1242 | ); |
1243 | 1243 | |
1244 | 1244 | } |
1245 | 1245 | |
1246 | - if ( $invoice->is_parent() ) { |
|
1246 | + if ($invoice->is_parent()) { |
|
1247 | 1247 | |
1248 | 1248 | // Display the recurring amount. |
1249 | - $meta[ 'recurring_total' ] = array( |
|
1249 | + $meta['recurring_total'] = array( |
|
1250 | 1250 | |
1251 | - 'label' => __( 'Recurring Amount', 'invoicing' ), |
|
1252 | - 'value' => wpinv_price( $subscription->get_recurring_amount(), $invoice->get_currency() ), |
|
1251 | + 'label' => __('Recurring Amount', 'invoicing'), |
|
1252 | + 'value' => wpinv_price($subscription->get_recurring_amount(), $invoice->get_currency()), |
|
1253 | 1253 | |
1254 | 1254 | ); |
1255 | 1255 | |
@@ -1259,15 +1259,15 @@ discard block |
||
1259 | 1259 | } |
1260 | 1260 | |
1261 | 1261 | // Add the invoice total to the meta. |
1262 | - $meta[ 'invoice_total' ] = array( |
|
1262 | + $meta['invoice_total'] = array( |
|
1263 | 1263 | |
1264 | - 'label' => __( 'Total Amount', 'invoicing' ), |
|
1265 | - 'value' => wpinv_price( $invoice->get_total(), $invoice->get_currency() ), |
|
1264 | + 'label' => __('Total Amount', 'invoicing'), |
|
1265 | + 'value' => wpinv_price($invoice->get_total(), $invoice->get_currency()), |
|
1266 | 1266 | |
1267 | 1267 | ); |
1268 | 1268 | |
1269 | 1269 | // Provide a way for third party plugins to filter the meta. |
1270 | - $meta = apply_filters( 'getpaid_invoice_meta_data', $meta, $invoice ); |
|
1270 | + $meta = apply_filters('getpaid_invoice_meta_data', $meta, $invoice); |
|
1271 | 1271 | |
1272 | 1272 | return $meta; |
1273 | 1273 | |
@@ -1306,12 +1306,12 @@ discard block |
||
1306 | 1306 | * @param GetPaid_Form_Item $item |
1307 | 1307 | * @return float |
1308 | 1308 | */ |
1309 | -function getpaid_get_invoice_tax_rate( $invoice, $item ) { |
|
1309 | +function getpaid_get_invoice_tax_rate($invoice, $item) { |
|
1310 | 1310 | |
1311 | - $rates = getpaid_get_item_tax_rates( $item, $invoice->get_country(), $invoice->get_state() ); |
|
1312 | - $rates = getpaid_filter_item_tax_rates( $item, $rates ); |
|
1313 | - $rates = wp_list_pluck( $rates, 'rate' ); |
|
1311 | + $rates = getpaid_get_item_tax_rates($item, $invoice->get_country(), $invoice->get_state()); |
|
1312 | + $rates = getpaid_filter_item_tax_rates($item, $rates); |
|
1313 | + $rates = wp_list_pluck($rates, 'rate'); |
|
1314 | 1314 | |
1315 | - return array_sum( $rates ); |
|
1315 | + return array_sum($rates); |
|
1316 | 1316 | |
1317 | 1317 | } |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @package Invoicing |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Invoice class. |
@@ -143,40 +143,40 @@ discard block |
||
143 | 143 | * |
144 | 144 | * @param int|string|object|WPInv_Invoice|WPInv_Legacy_Invoice|WP_Post $invoice Invoice id, key, transaction id, number or object to read. |
145 | 145 | */ |
146 | - public function __construct( $invoice = 0 ) { |
|
146 | + public function __construct($invoice = 0) { |
|
147 | 147 | |
148 | - parent::__construct( $invoice ); |
|
148 | + parent::__construct($invoice); |
|
149 | 149 | |
150 | - if ( ! empty( $invoice ) && is_numeric( $invoice ) && getpaid_is_invoice_post_type( get_post_type( (int) $invoice ) ) ) { |
|
151 | - $this->set_id( (int) $invoice ); |
|
152 | - } elseif ( $invoice instanceof self ) { |
|
153 | - $this->set_id( $invoice->get_id() ); |
|
154 | - } elseif ( ! empty( $invoice->ID ) ) { |
|
155 | - $this->set_id( $invoice->ID ); |
|
156 | - } elseif ( is_array( $invoice ) ) { |
|
157 | - $this->set_props( $invoice ); |
|
150 | + if (!empty($invoice) && is_numeric($invoice) && getpaid_is_invoice_post_type(get_post_type((int) $invoice))) { |
|
151 | + $this->set_id((int) $invoice); |
|
152 | + } elseif ($invoice instanceof self) { |
|
153 | + $this->set_id($invoice->get_id()); |
|
154 | + } elseif (!empty($invoice->ID)) { |
|
155 | + $this->set_id($invoice->ID); |
|
156 | + } elseif (is_array($invoice)) { |
|
157 | + $this->set_props($invoice); |
|
158 | 158 | |
159 | - if ( isset( $invoice['ID'] ) ) { |
|
160 | - $this->set_id( $invoice['ID'] ); |
|
159 | + if (isset($invoice['ID'])) { |
|
160 | + $this->set_id($invoice['ID']); |
|
161 | 161 | } |
162 | 162 | |
163 | - } elseif ( is_string( $invoice ) && $invoice_id = self::get_invoice_id_by_field( $invoice, 'key' ) ) { |
|
164 | - $this->set_id( $invoice_id ); |
|
165 | - } elseif ( is_string( $invoice ) && $invoice_id = self::get_invoice_id_by_field( $invoice, 'number' ) ) { |
|
166 | - $this->set_id( $invoice_id ); |
|
167 | - } elseif ( is_string( $invoice ) && $invoice_id = self::get_invoice_id_by_field( $invoice, 'transaction_id' ) ) { |
|
168 | - $this->set_id( $invoice_id ); |
|
163 | + } elseif (is_string($invoice) && $invoice_id = self::get_invoice_id_by_field($invoice, 'key')) { |
|
164 | + $this->set_id($invoice_id); |
|
165 | + } elseif (is_string($invoice) && $invoice_id = self::get_invoice_id_by_field($invoice, 'number')) { |
|
166 | + $this->set_id($invoice_id); |
|
167 | + } elseif (is_string($invoice) && $invoice_id = self::get_invoice_id_by_field($invoice, 'transaction_id')) { |
|
168 | + $this->set_id($invoice_id); |
|
169 | 169 | } else { |
170 | - $this->set_object_read( true ); |
|
170 | + $this->set_object_read(true); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | // Load the datastore. |
174 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
174 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
175 | 175 | |
176 | - if ( $this->get_id() > 0 ) { |
|
177 | - $this->post = get_post( $this->get_id() ); |
|
176 | + if ($this->get_id() > 0) { |
|
177 | + $this->post = get_post($this->get_id()); |
|
178 | 178 | $this->ID = $this->get_id(); |
179 | - $this->data_store->read( $this ); |
|
179 | + $this->data_store->read($this); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | } |
@@ -191,38 +191,38 @@ discard block |
||
191 | 191 | * @since 1.0.15 |
192 | 192 | * @return int |
193 | 193 | */ |
194 | - public static function get_invoice_id_by_field( $value, $field = 'key' ) { |
|
194 | + public static function get_invoice_id_by_field($value, $field = 'key') { |
|
195 | 195 | global $wpdb; |
196 | 196 | |
197 | 197 | // Trim the value. |
198 | - $value = trim( $value ); |
|
198 | + $value = trim($value); |
|
199 | 199 | |
200 | - if ( empty( $value ) ) { |
|
200 | + if (empty($value)) { |
|
201 | 201 | return 0; |
202 | 202 | } |
203 | 203 | |
204 | 204 | // Valid fields. |
205 | - $fields = array( 'key', 'number', 'transaction_id' ); |
|
205 | + $fields = array('key', 'number', 'transaction_id'); |
|
206 | 206 | |
207 | 207 | // Ensure a field has been passed. |
208 | - if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
208 | + if (empty($field) || !in_array($field, $fields)) { |
|
209 | 209 | return 0; |
210 | 210 | } |
211 | 211 | |
212 | 212 | // Maybe retrieve from the cache. |
213 | - $invoice_id = wp_cache_get( $value, "getpaid_invoice_{$field}s_to_invoice_ids" ); |
|
214 | - if ( false !== $invoice_id ) { |
|
213 | + $invoice_id = wp_cache_get($value, "getpaid_invoice_{$field}s_to_invoice_ids"); |
|
214 | + if (false !== $invoice_id) { |
|
215 | 215 | return $invoice_id; |
216 | 216 | } |
217 | 217 | |
218 | 218 | // Fetch from the db. |
219 | 219 | $table = $wpdb->prefix . 'getpaid_invoices'; |
220 | 220 | $invoice_id = (int) $wpdb->get_var( |
221 | - $wpdb->prepare( "SELECT `post_id` FROM $table WHERE `$field`=%s LIMIT 1", $value ) |
|
221 | + $wpdb->prepare("SELECT `post_id` FROM $table WHERE `$field`=%s LIMIT 1", $value) |
|
222 | 222 | ); |
223 | 223 | |
224 | 224 | // Update the cache with our data |
225 | - wp_cache_set( $value, $invoice_id, "getpaid_invoice_{$field}s_to_invoice_ids" ); |
|
225 | + wp_cache_set($value, $invoice_id, "getpaid_invoice_{$field}s_to_invoice_ids"); |
|
226 | 226 | |
227 | 227 | return $invoice_id; |
228 | 228 | } |
@@ -230,8 +230,8 @@ discard block |
||
230 | 230 | /** |
231 | 231 | * Checks if an invoice key is set. |
232 | 232 | */ |
233 | - public function _isset( $key ) { |
|
234 | - return isset( $this->data[$key] ) || method_exists( $this, "get_$key" ); |
|
233 | + public function _isset($key) { |
|
234 | + return isset($this->data[$key]) || method_exists($this, "get_$key"); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | /* |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | * @param string $context View or edit context. |
257 | 257 | * @return int |
258 | 258 | */ |
259 | - public function get_parent_id( $context = 'view' ) { |
|
260 | - return (int) $this->get_prop( 'parent_id', $context ); |
|
259 | + public function get_parent_id($context = 'view') { |
|
260 | + return (int) $this->get_prop('parent_id', $context); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | /** |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @return WPInv_Invoice |
268 | 268 | */ |
269 | 269 | public function get_parent_payment() { |
270 | - return new WPInv_Invoice( $this->get_parent_id() ); |
|
270 | + return new WPInv_Invoice($this->get_parent_id()); |
|
271 | 271 | } |
272 | 272 | |
273 | 273 | /** |
@@ -287,8 +287,8 @@ discard block |
||
287 | 287 | * @param string $context View or edit context. |
288 | 288 | * @return string |
289 | 289 | */ |
290 | - public function get_status( $context = 'view' ) { |
|
291 | - return $this->get_prop( 'status', $context ); |
|
290 | + public function get_status($context = 'view') { |
|
291 | + return $this->get_prop('status', $context); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | /** |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | * @return array |
299 | 299 | */ |
300 | 300 | public function get_all_statuses() { |
301 | - return wpinv_get_invoice_statuses( true, true, $this ); |
|
301 | + return wpinv_get_invoice_statuses(true, true, $this); |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | /** |
@@ -310,9 +310,9 @@ discard block |
||
310 | 310 | public function get_status_nicename() { |
311 | 311 | $statuses = $this->get_all_statuses(); |
312 | 312 | |
313 | - $status = isset( $statuses[ $this->get_status() ] ) ? $statuses[ $this->get_status() ] : $this->get_status(); |
|
313 | + $status = isset($statuses[$this->get_status()]) ? $statuses[$this->get_status()] : $this->get_status(); |
|
314 | 314 | |
315 | - return apply_filters( 'wpinv_get_invoice_status_nicename', $status, $this ); |
|
315 | + return apply_filters('wpinv_get_invoice_status_nicename', $status, $this); |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | /** |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | */ |
324 | 324 | public function get_status_class() { |
325 | 325 | $statuses = getpaid_get_invoice_status_classes(); |
326 | - return isset( $statuses[ $this->get_status() ] ) ? $statuses[ $this->get_status() ] : 'badge-dark'; |
|
326 | + return isset($statuses[$this->get_status()]) ? $statuses[$this->get_status()] : 'badge-dark'; |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | /** |
@@ -334,9 +334,9 @@ discard block |
||
334 | 334 | */ |
335 | 335 | public function get_status_label_html() { |
336 | 336 | |
337 | - $status_label = sanitize_text_field( $this->get_status_nicename() ); |
|
338 | - $status = sanitize_html_class( $this->get_status() ); |
|
339 | - $class = esc_attr( $this->get_status_class() ); |
|
337 | + $status_label = sanitize_text_field($this->get_status_nicename()); |
|
338 | + $status = sanitize_html_class($this->get_status()); |
|
339 | + $class = esc_attr($this->get_status_class()); |
|
340 | 340 | |
341 | 341 | return "<span class='bsui'><span class='badge $class $status'>$status_label</span></span>"; |
342 | 342 | } |
@@ -348,23 +348,23 @@ discard block |
||
348 | 348 | * @param string $context View or edit context. |
349 | 349 | * @return string |
350 | 350 | */ |
351 | - public function get_version( $context = 'view' ) { |
|
352 | - return $this->get_prop( 'version', $context ); |
|
351 | + public function get_version($context = 'view') { |
|
352 | + return $this->get_prop('version', $context); |
|
353 | 353 | } |
354 | 354 | |
355 | 355 | /** |
356 | 356 | * @deprecated |
357 | 357 | */ |
358 | - public function get_invoice_date( $format = true ) { |
|
359 | - $date = getpaid_format_date( $this->get_date_completed() ); |
|
360 | - $date = empty( $date ) ? $this->get_date_created() : $this->get_date_completed(); |
|
361 | - $formatted = getpaid_format_date( $date ); |
|
358 | + public function get_invoice_date($format = true) { |
|
359 | + $date = getpaid_format_date($this->get_date_completed()); |
|
360 | + $date = empty($date) ? $this->get_date_created() : $this->get_date_completed(); |
|
361 | + $formatted = getpaid_format_date($date); |
|
362 | 362 | |
363 | - if ( $format ) { |
|
363 | + if ($format) { |
|
364 | 364 | return $formatted; |
365 | 365 | } |
366 | 366 | |
367 | - return empty( $formatted ) ? '' : $date; |
|
367 | + return empty($formatted) ? '' : $date; |
|
368 | 368 | |
369 | 369 | } |
370 | 370 | |
@@ -375,8 +375,8 @@ discard block |
||
375 | 375 | * @param string $context View or edit context. |
376 | 376 | * @return string |
377 | 377 | */ |
378 | - public function get_date_created( $context = 'view' ) { |
|
379 | - return $this->get_prop( 'date_created', $context ); |
|
378 | + public function get_date_created($context = 'view') { |
|
379 | + return $this->get_prop('date_created', $context); |
|
380 | 380 | } |
381 | 381 | |
382 | 382 | /** |
@@ -386,8 +386,8 @@ discard block |
||
386 | 386 | * @param string $context View or edit context. |
387 | 387 | * @return string |
388 | 388 | */ |
389 | - public function get_created_date( $context = 'view' ) { |
|
390 | - return $this->get_date_created( $context ); |
|
389 | + public function get_created_date($context = 'view') { |
|
390 | + return $this->get_date_created($context); |
|
391 | 391 | } |
392 | 392 | |
393 | 393 | /** |
@@ -397,11 +397,11 @@ discard block |
||
397 | 397 | * @param string $context View or edit context. |
398 | 398 | * @return string |
399 | 399 | */ |
400 | - public function get_date_created_gmt( $context = 'view' ) { |
|
401 | - $date = $this->get_date_created( $context ); |
|
400 | + public function get_date_created_gmt($context = 'view') { |
|
401 | + $date = $this->get_date_created($context); |
|
402 | 402 | |
403 | - if ( $date ) { |
|
404 | - $date = get_gmt_from_date( $date ); |
|
403 | + if ($date) { |
|
404 | + $date = get_gmt_from_date($date); |
|
405 | 405 | } |
406 | 406 | return $date; |
407 | 407 | } |
@@ -413,8 +413,8 @@ discard block |
||
413 | 413 | * @param string $context View or edit context. |
414 | 414 | * @return string |
415 | 415 | */ |
416 | - public function get_date_modified( $context = 'view' ) { |
|
417 | - return $this->get_prop( 'date_modified', $context ); |
|
416 | + public function get_date_modified($context = 'view') { |
|
417 | + return $this->get_prop('date_modified', $context); |
|
418 | 418 | } |
419 | 419 | |
420 | 420 | /** |
@@ -424,8 +424,8 @@ discard block |
||
424 | 424 | * @param string $context View or edit context. |
425 | 425 | * @return string |
426 | 426 | */ |
427 | - public function get_modified_date( $context = 'view' ) { |
|
428 | - return $this->get_date_modified( $context ); |
|
427 | + public function get_modified_date($context = 'view') { |
|
428 | + return $this->get_date_modified($context); |
|
429 | 429 | } |
430 | 430 | |
431 | 431 | /** |
@@ -435,11 +435,11 @@ discard block |
||
435 | 435 | * @param string $context View or edit context. |
436 | 436 | * @return string |
437 | 437 | */ |
438 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
439 | - $date = $this->get_date_modified( $context ); |
|
438 | + public function get_date_modified_gmt($context = 'view') { |
|
439 | + $date = $this->get_date_modified($context); |
|
440 | 440 | |
441 | - if ( $date ) { |
|
442 | - $date = get_gmt_from_date( $date ); |
|
441 | + if ($date) { |
|
442 | + $date = get_gmt_from_date($date); |
|
443 | 443 | } |
444 | 444 | return $date; |
445 | 445 | } |
@@ -451,8 +451,8 @@ discard block |
||
451 | 451 | * @param string $context View or edit context. |
452 | 452 | * @return string |
453 | 453 | */ |
454 | - public function get_due_date( $context = 'view' ) { |
|
455 | - return $this->get_prop( 'due_date', $context ); |
|
454 | + public function get_due_date($context = 'view') { |
|
455 | + return $this->get_prop('due_date', $context); |
|
456 | 456 | } |
457 | 457 | |
458 | 458 | /** |
@@ -462,8 +462,8 @@ discard block |
||
462 | 462 | * @param string $context View or edit context. |
463 | 463 | * @return string |
464 | 464 | */ |
465 | - public function get_date_due( $context = 'view' ) { |
|
466 | - return $this->get_due_date( $context ); |
|
465 | + public function get_date_due($context = 'view') { |
|
466 | + return $this->get_due_date($context); |
|
467 | 467 | } |
468 | 468 | |
469 | 469 | /** |
@@ -473,11 +473,11 @@ discard block |
||
473 | 473 | * @param string $context View or edit context. |
474 | 474 | * @return string |
475 | 475 | */ |
476 | - public function get_due_date_gmt( $context = 'view' ) { |
|
477 | - $date = $this->get_due_date( $context ); |
|
476 | + public function get_due_date_gmt($context = 'view') { |
|
477 | + $date = $this->get_due_date($context); |
|
478 | 478 | |
479 | - if ( $date ) { |
|
480 | - $date = get_gmt_from_date( $date ); |
|
479 | + if ($date) { |
|
480 | + $date = get_gmt_from_date($date); |
|
481 | 481 | } |
482 | 482 | return $date; |
483 | 483 | } |
@@ -489,8 +489,8 @@ discard block |
||
489 | 489 | * @param string $context View or edit context. |
490 | 490 | * @return string |
491 | 491 | */ |
492 | - public function get_gmt_date_due( $context = 'view' ) { |
|
493 | - return $this->get_due_date_gmt( $context ); |
|
492 | + public function get_gmt_date_due($context = 'view') { |
|
493 | + return $this->get_due_date_gmt($context); |
|
494 | 494 | } |
495 | 495 | |
496 | 496 | /** |
@@ -500,8 +500,8 @@ discard block |
||
500 | 500 | * @param string $context View or edit context. |
501 | 501 | * @return string |
502 | 502 | */ |
503 | - public function get_completed_date( $context = 'view' ) { |
|
504 | - return $this->get_prop( 'completed_date', $context ); |
|
503 | + public function get_completed_date($context = 'view') { |
|
504 | + return $this->get_prop('completed_date', $context); |
|
505 | 505 | } |
506 | 506 | |
507 | 507 | /** |
@@ -511,8 +511,8 @@ discard block |
||
511 | 511 | * @param string $context View or edit context. |
512 | 512 | * @return string |
513 | 513 | */ |
514 | - public function get_date_completed( $context = 'view' ) { |
|
515 | - return $this->get_completed_date( $context ); |
|
514 | + public function get_date_completed($context = 'view') { |
|
515 | + return $this->get_completed_date($context); |
|
516 | 516 | } |
517 | 517 | |
518 | 518 | /** |
@@ -522,11 +522,11 @@ discard block |
||
522 | 522 | * @param string $context View or edit context. |
523 | 523 | * @return string |
524 | 524 | */ |
525 | - public function get_completed_date_gmt( $context = 'view' ) { |
|
526 | - $date = $this->get_completed_date( $context ); |
|
525 | + public function get_completed_date_gmt($context = 'view') { |
|
526 | + $date = $this->get_completed_date($context); |
|
527 | 527 | |
528 | - if ( $date ) { |
|
529 | - $date = get_gmt_from_date( $date ); |
|
528 | + if ($date) { |
|
529 | + $date = get_gmt_from_date($date); |
|
530 | 530 | } |
531 | 531 | return $date; |
532 | 532 | } |
@@ -538,8 +538,8 @@ discard block |
||
538 | 538 | * @param string $context View or edit context. |
539 | 539 | * @return string |
540 | 540 | */ |
541 | - public function get_gmt_completed_date( $context = 'view' ) { |
|
542 | - return $this->get_completed_date_gmt( $context ); |
|
541 | + public function get_gmt_completed_date($context = 'view') { |
|
542 | + return $this->get_completed_date_gmt($context); |
|
543 | 543 | } |
544 | 544 | |
545 | 545 | /** |
@@ -549,12 +549,12 @@ discard block |
||
549 | 549 | * @param string $context View or edit context. |
550 | 550 | * @return string |
551 | 551 | */ |
552 | - public function get_number( $context = 'view' ) { |
|
553 | - $number = $this->get_prop( 'number', $context ); |
|
552 | + public function get_number($context = 'view') { |
|
553 | + $number = $this->get_prop('number', $context); |
|
554 | 554 | |
555 | - if ( empty( $number ) ) { |
|
555 | + if (empty($number)) { |
|
556 | 556 | $number = $this->generate_number(); |
557 | - $this->set_number( $this->generate_number() ); |
|
557 | + $this->set_number($this->generate_number()); |
|
558 | 558 | } |
559 | 559 | |
560 | 560 | return $number; |
@@ -568,8 +568,8 @@ discard block |
||
568 | 568 | public function maybe_set_number() { |
569 | 569 | $number = $this->get_number(); |
570 | 570 | |
571 | - if ( empty( $number ) || $this->get_id() == $number ) { |
|
572 | - $this->set_number( $this->generate_number() ); |
|
571 | + if (empty($number) || $this->get_id() == $number) { |
|
572 | + $this->set_number($this->generate_number()); |
|
573 | 573 | } |
574 | 574 | |
575 | 575 | } |
@@ -581,8 +581,8 @@ discard block |
||
581 | 581 | * @param string $context View or edit context. |
582 | 582 | * @return string |
583 | 583 | */ |
584 | - public function get_key( $context = 'view' ) { |
|
585 | - return $this->get_prop( 'key', $context ); |
|
584 | + public function get_key($context = 'view') { |
|
585 | + return $this->get_prop('key', $context); |
|
586 | 586 | } |
587 | 587 | |
588 | 588 | /** |
@@ -593,9 +593,9 @@ discard block |
||
593 | 593 | public function maybe_set_key() { |
594 | 594 | $key = $this->get_key(); |
595 | 595 | |
596 | - if ( empty( $key ) ) { |
|
597 | - $key = $this->generate_key( $this->get_type() . '_' ); |
|
598 | - $this->set_key( $key ); |
|
596 | + if (empty($key)) { |
|
597 | + $key = $this->generate_key($this->get_type() . '_'); |
|
598 | + $this->set_key($key); |
|
599 | 599 | } |
600 | 600 | |
601 | 601 | } |
@@ -607,8 +607,8 @@ discard block |
||
607 | 607 | * @param string $context View or edit context. |
608 | 608 | * @return string |
609 | 609 | */ |
610 | - public function get_type( $context = 'view' ) { |
|
611 | - return $this->get_prop( 'type', $context ); |
|
610 | + public function get_type($context = 'view') { |
|
611 | + return $this->get_prop('type', $context); |
|
612 | 612 | } |
613 | 613 | |
614 | 614 | /** |
@@ -618,7 +618,7 @@ discard block |
||
618 | 618 | * @return string |
619 | 619 | */ |
620 | 620 | public function get_invoice_quote_type() { |
621 | - return getpaid_get_post_type_label( $this->get_post_type(), false ); |
|
621 | + return getpaid_get_post_type_label($this->get_post_type(), false); |
|
622 | 622 | } |
623 | 623 | |
624 | 624 | /** |
@@ -628,8 +628,8 @@ discard block |
||
628 | 628 | * @param string $context View or edit context. |
629 | 629 | * @return string |
630 | 630 | */ |
631 | - public function get_label( $context = 'view' ) { |
|
632 | - return getpaid_get_post_type_label( $this->get_post_type( $context ), false ); |
|
631 | + public function get_label($context = 'view') { |
|
632 | + return getpaid_get_post_type_label($this->get_post_type($context), false); |
|
633 | 633 | } |
634 | 634 | |
635 | 635 | /** |
@@ -639,8 +639,8 @@ discard block |
||
639 | 639 | * @param string $context View or edit context. |
640 | 640 | * @return string |
641 | 641 | */ |
642 | - public function get_post_type( $context = 'view' ) { |
|
643 | - return $this->get_prop( 'post_type', $context ); |
|
642 | + public function get_post_type($context = 'view') { |
|
643 | + return $this->get_prop('post_type', $context); |
|
644 | 644 | } |
645 | 645 | |
646 | 646 | /** |
@@ -650,8 +650,8 @@ discard block |
||
650 | 650 | * @param string $context View or edit context. |
651 | 651 | * @return string |
652 | 652 | */ |
653 | - public function get_mode( $context = 'view' ) { |
|
654 | - return $this->get_prop( 'mode', $context ); |
|
653 | + public function get_mode($context = 'view') { |
|
654 | + return $this->get_prop('mode', $context); |
|
655 | 655 | } |
656 | 656 | |
657 | 657 | /** |
@@ -661,13 +661,13 @@ discard block |
||
661 | 661 | * @param string $context View or edit context. |
662 | 662 | * @return string |
663 | 663 | */ |
664 | - public function get_path( $context = 'view' ) { |
|
665 | - $path = $this->get_prop( 'path', $context ); |
|
664 | + public function get_path($context = 'view') { |
|
665 | + $path = $this->get_prop('path', $context); |
|
666 | 666 | $prefix = $this->get_type(); |
667 | 667 | |
668 | - if ( 0 !== strpos( $path, $prefix ) ) { |
|
669 | - $path = sanitize_title( $prefix . '-' . $this->get_id() ); |
|
670 | - $this->set_path( $path ); |
|
668 | + if (0 !== strpos($path, $prefix)) { |
|
669 | + $path = sanitize_title($prefix . '-' . $this->get_id()); |
|
670 | + $this->set_path($path); |
|
671 | 671 | } |
672 | 672 | |
673 | 673 | return $path; |
@@ -680,8 +680,8 @@ discard block |
||
680 | 680 | * @param string $context View or edit context. |
681 | 681 | * @return string |
682 | 682 | */ |
683 | - public function get_name( $context = 'view' ) { |
|
684 | - return $this->get_prop( 'title', $context ); |
|
683 | + public function get_name($context = 'view') { |
|
684 | + return $this->get_prop('title', $context); |
|
685 | 685 | } |
686 | 686 | |
687 | 687 | /** |
@@ -691,8 +691,8 @@ discard block |
||
691 | 691 | * @param string $context View or edit context. |
692 | 692 | * @return string |
693 | 693 | */ |
694 | - public function get_title( $context = 'view' ) { |
|
695 | - return $this->get_name( $context ); |
|
694 | + public function get_title($context = 'view') { |
|
695 | + return $this->get_name($context); |
|
696 | 696 | } |
697 | 697 | |
698 | 698 | /** |
@@ -702,8 +702,8 @@ discard block |
||
702 | 702 | * @param string $context View or edit context. |
703 | 703 | * @return string |
704 | 704 | */ |
705 | - public function get_description( $context = 'view' ) { |
|
706 | - return $this->get_prop( 'description', $context ); |
|
705 | + public function get_description($context = 'view') { |
|
706 | + return $this->get_prop('description', $context); |
|
707 | 707 | } |
708 | 708 | |
709 | 709 | /** |
@@ -713,8 +713,8 @@ discard block |
||
713 | 713 | * @param string $context View or edit context. |
714 | 714 | * @return string |
715 | 715 | */ |
716 | - public function get_excerpt( $context = 'view' ) { |
|
717 | - return $this->get_description( $context ); |
|
716 | + public function get_excerpt($context = 'view') { |
|
717 | + return $this->get_description($context); |
|
718 | 718 | } |
719 | 719 | |
720 | 720 | /** |
@@ -724,8 +724,8 @@ discard block |
||
724 | 724 | * @param string $context View or edit context. |
725 | 725 | * @return string |
726 | 726 | */ |
727 | - public function get_summary( $context = 'view' ) { |
|
728 | - return $this->get_description( $context ); |
|
727 | + public function get_summary($context = 'view') { |
|
728 | + return $this->get_description($context); |
|
729 | 729 | } |
730 | 730 | |
731 | 731 | /** |
@@ -735,25 +735,25 @@ discard block |
||
735 | 735 | * @param string $context View or edit context. |
736 | 736 | * @return array |
737 | 737 | */ |
738 | - public function get_user_info( $context = 'view' ) { |
|
738 | + public function get_user_info($context = 'view') { |
|
739 | 739 | |
740 | 740 | $user_info = array( |
741 | - 'user_id' => $this->get_user_id( $context ), |
|
742 | - 'email' => $this->get_email( $context ), |
|
743 | - 'first_name' => $this->get_first_name( $context ), |
|
744 | - 'last_name' => $this->get_last_name( $context ), |
|
745 | - 'address' => $this->get_address( $context ), |
|
746 | - 'phone' => $this->get_phone( $context ), |
|
747 | - 'city' => $this->get_city( $context ), |
|
748 | - 'country' => $this->get_country( $context ), |
|
749 | - 'state' => $this->get_state( $context ), |
|
750 | - 'zip' => $this->get_zip( $context ), |
|
751 | - 'company' => $this->get_company( $context ), |
|
752 | - 'vat_number' => $this->get_vat_number( $context ), |
|
753 | - 'discount' => $this->get_discount_code( $context ), |
|
741 | + 'user_id' => $this->get_user_id($context), |
|
742 | + 'email' => $this->get_email($context), |
|
743 | + 'first_name' => $this->get_first_name($context), |
|
744 | + 'last_name' => $this->get_last_name($context), |
|
745 | + 'address' => $this->get_address($context), |
|
746 | + 'phone' => $this->get_phone($context), |
|
747 | + 'city' => $this->get_city($context), |
|
748 | + 'country' => $this->get_country($context), |
|
749 | + 'state' => $this->get_state($context), |
|
750 | + 'zip' => $this->get_zip($context), |
|
751 | + 'company' => $this->get_company($context), |
|
752 | + 'vat_number' => $this->get_vat_number($context), |
|
753 | + 'discount' => $this->get_discount_code($context), |
|
754 | 754 | ); |
755 | 755 | |
756 | - return apply_filters( 'wpinv_user_info', $user_info, $this->get_id(), $this ); |
|
756 | + return apply_filters('wpinv_user_info', $user_info, $this->get_id(), $this); |
|
757 | 757 | |
758 | 758 | } |
759 | 759 | |
@@ -764,8 +764,8 @@ discard block |
||
764 | 764 | * @param string $context View or edit context. |
765 | 765 | * @return int |
766 | 766 | */ |
767 | - public function get_author( $context = 'view' ) { |
|
768 | - return (int) $this->get_prop( 'author', $context ); |
|
767 | + public function get_author($context = 'view') { |
|
768 | + return (int) $this->get_prop('author', $context); |
|
769 | 769 | } |
770 | 770 | |
771 | 771 | /** |
@@ -775,8 +775,8 @@ discard block |
||
775 | 775 | * @param string $context View or edit context. |
776 | 776 | * @return int |
777 | 777 | */ |
778 | - public function get_user_id( $context = 'view' ) { |
|
779 | - return $this->get_author( $context ); |
|
778 | + public function get_user_id($context = 'view') { |
|
779 | + return $this->get_author($context); |
|
780 | 780 | } |
781 | 781 | |
782 | 782 | /** |
@@ -786,8 +786,8 @@ discard block |
||
786 | 786 | * @param string $context View or edit context. |
787 | 787 | * @return int |
788 | 788 | */ |
789 | - public function get_customer_id( $context = 'view' ) { |
|
790 | - return $this->get_author( $context ); |
|
789 | + public function get_customer_id($context = 'view') { |
|
790 | + return $this->get_author($context); |
|
791 | 791 | } |
792 | 792 | |
793 | 793 | /** |
@@ -797,8 +797,8 @@ discard block |
||
797 | 797 | * @param string $context View or edit context. |
798 | 798 | * @return string |
799 | 799 | */ |
800 | - public function get_ip( $context = 'view' ) { |
|
801 | - return $this->get_prop( 'user_ip', $context ); |
|
800 | + public function get_ip($context = 'view') { |
|
801 | + return $this->get_prop('user_ip', $context); |
|
802 | 802 | } |
803 | 803 | |
804 | 804 | /** |
@@ -808,8 +808,8 @@ discard block |
||
808 | 808 | * @param string $context View or edit context. |
809 | 809 | * @return string |
810 | 810 | */ |
811 | - public function get_user_ip( $context = 'view' ) { |
|
812 | - return $this->get_ip( $context ); |
|
811 | + public function get_user_ip($context = 'view') { |
|
812 | + return $this->get_ip($context); |
|
813 | 813 | } |
814 | 814 | |
815 | 815 | /** |
@@ -819,8 +819,8 @@ discard block |
||
819 | 819 | * @param string $context View or edit context. |
820 | 820 | * @return string |
821 | 821 | */ |
822 | - public function get_customer_ip( $context = 'view' ) { |
|
823 | - return $this->get_ip( $context ); |
|
822 | + public function get_customer_ip($context = 'view') { |
|
823 | + return $this->get_ip($context); |
|
824 | 824 | } |
825 | 825 | |
826 | 826 | /** |
@@ -830,8 +830,8 @@ discard block |
||
830 | 830 | * @param string $context View or edit context. |
831 | 831 | * @return string |
832 | 832 | */ |
833 | - public function get_first_name( $context = 'view' ) { |
|
834 | - return $this->get_prop( 'first_name', $context ); |
|
833 | + public function get_first_name($context = 'view') { |
|
834 | + return $this->get_prop('first_name', $context); |
|
835 | 835 | } |
836 | 836 | |
837 | 837 | /** |
@@ -841,8 +841,8 @@ discard block |
||
841 | 841 | * @param string $context View or edit context. |
842 | 842 | * @return string |
843 | 843 | */ |
844 | - public function get_user_first_name( $context = 'view' ) { |
|
845 | - return $this->get_first_name( $context ); |
|
844 | + public function get_user_first_name($context = 'view') { |
|
845 | + return $this->get_first_name($context); |
|
846 | 846 | } |
847 | 847 | |
848 | 848 | /** |
@@ -852,8 +852,8 @@ discard block |
||
852 | 852 | * @param string $context View or edit context. |
853 | 853 | * @return string |
854 | 854 | */ |
855 | - public function get_customer_first_name( $context = 'view' ) { |
|
856 | - return $this->get_first_name( $context ); |
|
855 | + public function get_customer_first_name($context = 'view') { |
|
856 | + return $this->get_first_name($context); |
|
857 | 857 | } |
858 | 858 | |
859 | 859 | /** |
@@ -863,8 +863,8 @@ discard block |
||
863 | 863 | * @param string $context View or edit context. |
864 | 864 | * @return string |
865 | 865 | */ |
866 | - public function get_last_name( $context = 'view' ) { |
|
867 | - return $this->get_prop( 'last_name', $context ); |
|
866 | + public function get_last_name($context = 'view') { |
|
867 | + return $this->get_prop('last_name', $context); |
|
868 | 868 | } |
869 | 869 | |
870 | 870 | /** |
@@ -874,8 +874,8 @@ discard block |
||
874 | 874 | * @param string $context View or edit context. |
875 | 875 | * @return string |
876 | 876 | */ |
877 | - public function get_user_last_name( $context = 'view' ) { |
|
878 | - return $this->get_last_name( $context ); |
|
877 | + public function get_user_last_name($context = 'view') { |
|
878 | + return $this->get_last_name($context); |
|
879 | 879 | } |
880 | 880 | |
881 | 881 | /** |
@@ -885,8 +885,8 @@ discard block |
||
885 | 885 | * @param string $context View or edit context. |
886 | 886 | * @return string |
887 | 887 | */ |
888 | - public function get_customer_last_name( $context = 'view' ) { |
|
889 | - return $this->get_last_name( $context ); |
|
888 | + public function get_customer_last_name($context = 'view') { |
|
889 | + return $this->get_last_name($context); |
|
890 | 890 | } |
891 | 891 | |
892 | 892 | /** |
@@ -896,8 +896,8 @@ discard block |
||
896 | 896 | * @param string $context View or edit context. |
897 | 897 | * @return string |
898 | 898 | */ |
899 | - public function get_full_name( $context = 'view' ) { |
|
900 | - return trim( $this->get_first_name( $context ) . ' ' . $this->get_last_name( $context ) ); |
|
899 | + public function get_full_name($context = 'view') { |
|
900 | + return trim($this->get_first_name($context) . ' ' . $this->get_last_name($context)); |
|
901 | 901 | } |
902 | 902 | |
903 | 903 | /** |
@@ -907,8 +907,8 @@ discard block |
||
907 | 907 | * @param string $context View or edit context. |
908 | 908 | * @return string |
909 | 909 | */ |
910 | - public function get_user_full_name( $context = 'view' ) { |
|
911 | - return $this->get_full_name( $context ); |
|
910 | + public function get_user_full_name($context = 'view') { |
|
911 | + return $this->get_full_name($context); |
|
912 | 912 | } |
913 | 913 | |
914 | 914 | /** |
@@ -918,8 +918,8 @@ discard block |
||
918 | 918 | * @param string $context View or edit context. |
919 | 919 | * @return string |
920 | 920 | */ |
921 | - public function get_customer_full_name( $context = 'view' ) { |
|
922 | - return $this->get_full_name( $context ); |
|
921 | + public function get_customer_full_name($context = 'view') { |
|
922 | + return $this->get_full_name($context); |
|
923 | 923 | } |
924 | 924 | |
925 | 925 | /** |
@@ -929,8 +929,8 @@ discard block |
||
929 | 929 | * @param string $context View or edit context. |
930 | 930 | * @return string |
931 | 931 | */ |
932 | - public function get_phone( $context = 'view' ) { |
|
933 | - return $this->get_prop( 'phone', $context ); |
|
932 | + public function get_phone($context = 'view') { |
|
933 | + return $this->get_prop('phone', $context); |
|
934 | 934 | } |
935 | 935 | |
936 | 936 | /** |
@@ -940,8 +940,8 @@ discard block |
||
940 | 940 | * @param string $context View or edit context. |
941 | 941 | * @return string |
942 | 942 | */ |
943 | - public function get_phone_number( $context = 'view' ) { |
|
944 | - return $this->get_phone( $context ); |
|
943 | + public function get_phone_number($context = 'view') { |
|
944 | + return $this->get_phone($context); |
|
945 | 945 | } |
946 | 946 | |
947 | 947 | /** |
@@ -951,8 +951,8 @@ discard block |
||
951 | 951 | * @param string $context View or edit context. |
952 | 952 | * @return string |
953 | 953 | */ |
954 | - public function get_user_phone( $context = 'view' ) { |
|
955 | - return $this->get_phone( $context ); |
|
954 | + public function get_user_phone($context = 'view') { |
|
955 | + return $this->get_phone($context); |
|
956 | 956 | } |
957 | 957 | |
958 | 958 | /** |
@@ -962,8 +962,8 @@ discard block |
||
962 | 962 | * @param string $context View or edit context. |
963 | 963 | * @return string |
964 | 964 | */ |
965 | - public function get_customer_phone( $context = 'view' ) { |
|
966 | - return $this->get_phone( $context ); |
|
965 | + public function get_customer_phone($context = 'view') { |
|
966 | + return $this->get_phone($context); |
|
967 | 967 | } |
968 | 968 | |
969 | 969 | /** |
@@ -973,8 +973,8 @@ discard block |
||
973 | 973 | * @param string $context View or edit context. |
974 | 974 | * @return string |
975 | 975 | */ |
976 | - public function get_email( $context = 'view' ) { |
|
977 | - return $this->get_prop( 'email', $context ); |
|
976 | + public function get_email($context = 'view') { |
|
977 | + return $this->get_prop('email', $context); |
|
978 | 978 | } |
979 | 979 | |
980 | 980 | /** |
@@ -984,8 +984,8 @@ discard block |
||
984 | 984 | * @param string $context View or edit context. |
985 | 985 | * @return string |
986 | 986 | */ |
987 | - public function get_email_address( $context = 'view' ) { |
|
988 | - return $this->get_email( $context ); |
|
987 | + public function get_email_address($context = 'view') { |
|
988 | + return $this->get_email($context); |
|
989 | 989 | } |
990 | 990 | |
991 | 991 | /** |
@@ -995,8 +995,8 @@ discard block |
||
995 | 995 | * @param string $context View or edit context. |
996 | 996 | * @return string |
997 | 997 | */ |
998 | - public function get_user_email( $context = 'view' ) { |
|
999 | - return $this->get_email( $context ); |
|
998 | + public function get_user_email($context = 'view') { |
|
999 | + return $this->get_email($context); |
|
1000 | 1000 | } |
1001 | 1001 | |
1002 | 1002 | /** |
@@ -1006,8 +1006,8 @@ discard block |
||
1006 | 1006 | * @param string $context View or edit context. |
1007 | 1007 | * @return string |
1008 | 1008 | */ |
1009 | - public function get_customer_email( $context = 'view' ) { |
|
1010 | - return $this->get_email( $context ); |
|
1009 | + public function get_customer_email($context = 'view') { |
|
1010 | + return $this->get_email($context); |
|
1011 | 1011 | } |
1012 | 1012 | |
1013 | 1013 | /** |
@@ -1017,9 +1017,9 @@ discard block |
||
1017 | 1017 | * @param string $context View or edit context. |
1018 | 1018 | * @return string |
1019 | 1019 | */ |
1020 | - public function get_country( $context = 'view' ) { |
|
1021 | - $country = $this->get_prop( 'country', $context ); |
|
1022 | - return empty( $country ) ? wpinv_get_default_country() : $country; |
|
1020 | + public function get_country($context = 'view') { |
|
1021 | + $country = $this->get_prop('country', $context); |
|
1022 | + return empty($country) ? wpinv_get_default_country() : $country; |
|
1023 | 1023 | } |
1024 | 1024 | |
1025 | 1025 | /** |
@@ -1029,8 +1029,8 @@ discard block |
||
1029 | 1029 | * @param string $context View or edit context. |
1030 | 1030 | * @return string |
1031 | 1031 | */ |
1032 | - public function get_user_country( $context = 'view' ) { |
|
1033 | - return $this->get_country( $context ); |
|
1032 | + public function get_user_country($context = 'view') { |
|
1033 | + return $this->get_country($context); |
|
1034 | 1034 | } |
1035 | 1035 | |
1036 | 1036 | /** |
@@ -1040,8 +1040,8 @@ discard block |
||
1040 | 1040 | * @param string $context View or edit context. |
1041 | 1041 | * @return string |
1042 | 1042 | */ |
1043 | - public function get_customer_country( $context = 'view' ) { |
|
1044 | - return $this->get_country( $context ); |
|
1043 | + public function get_customer_country($context = 'view') { |
|
1044 | + return $this->get_country($context); |
|
1045 | 1045 | } |
1046 | 1046 | |
1047 | 1047 | /** |
@@ -1051,9 +1051,9 @@ discard block |
||
1051 | 1051 | * @param string $context View or edit context. |
1052 | 1052 | * @return string |
1053 | 1053 | */ |
1054 | - public function get_state( $context = 'view' ) { |
|
1055 | - $state = $this->get_prop( 'state', $context ); |
|
1056 | - return empty( $state ) ? wpinv_get_default_state() : $state; |
|
1054 | + public function get_state($context = 'view') { |
|
1055 | + $state = $this->get_prop('state', $context); |
|
1056 | + return empty($state) ? wpinv_get_default_state() : $state; |
|
1057 | 1057 | } |
1058 | 1058 | |
1059 | 1059 | /** |
@@ -1063,8 +1063,8 @@ discard block |
||
1063 | 1063 | * @param string $context View or edit context. |
1064 | 1064 | * @return string |
1065 | 1065 | */ |
1066 | - public function get_user_state( $context = 'view' ) { |
|
1067 | - return $this->get_state( $context ); |
|
1066 | + public function get_user_state($context = 'view') { |
|
1067 | + return $this->get_state($context); |
|
1068 | 1068 | } |
1069 | 1069 | |
1070 | 1070 | /** |
@@ -1074,8 +1074,8 @@ discard block |
||
1074 | 1074 | * @param string $context View or edit context. |
1075 | 1075 | * @return string |
1076 | 1076 | */ |
1077 | - public function get_customer_state( $context = 'view' ) { |
|
1078 | - return $this->get_state( $context ); |
|
1077 | + public function get_customer_state($context = 'view') { |
|
1078 | + return $this->get_state($context); |
|
1079 | 1079 | } |
1080 | 1080 | |
1081 | 1081 | /** |
@@ -1085,8 +1085,8 @@ discard block |
||
1085 | 1085 | * @param string $context View or edit context. |
1086 | 1086 | * @return string |
1087 | 1087 | */ |
1088 | - public function get_city( $context = 'view' ) { |
|
1089 | - return $this->get_prop( 'city', $context ); |
|
1088 | + public function get_city($context = 'view') { |
|
1089 | + return $this->get_prop('city', $context); |
|
1090 | 1090 | } |
1091 | 1091 | |
1092 | 1092 | /** |
@@ -1096,8 +1096,8 @@ discard block |
||
1096 | 1096 | * @param string $context View or edit context. |
1097 | 1097 | * @return string |
1098 | 1098 | */ |
1099 | - public function get_user_city( $context = 'view' ) { |
|
1100 | - return $this->get_city( $context ); |
|
1099 | + public function get_user_city($context = 'view') { |
|
1100 | + return $this->get_city($context); |
|
1101 | 1101 | } |
1102 | 1102 | |
1103 | 1103 | /** |
@@ -1107,8 +1107,8 @@ discard block |
||
1107 | 1107 | * @param string $context View or edit context. |
1108 | 1108 | * @return string |
1109 | 1109 | */ |
1110 | - public function get_customer_city( $context = 'view' ) { |
|
1111 | - return $this->get_city( $context ); |
|
1110 | + public function get_customer_city($context = 'view') { |
|
1111 | + return $this->get_city($context); |
|
1112 | 1112 | } |
1113 | 1113 | |
1114 | 1114 | /** |
@@ -1118,8 +1118,8 @@ discard block |
||
1118 | 1118 | * @param string $context View or edit context. |
1119 | 1119 | * @return string |
1120 | 1120 | */ |
1121 | - public function get_zip( $context = 'view' ) { |
|
1122 | - return $this->get_prop( 'zip', $context ); |
|
1121 | + public function get_zip($context = 'view') { |
|
1122 | + return $this->get_prop('zip', $context); |
|
1123 | 1123 | } |
1124 | 1124 | |
1125 | 1125 | /** |
@@ -1129,8 +1129,8 @@ discard block |
||
1129 | 1129 | * @param string $context View or edit context. |
1130 | 1130 | * @return string |
1131 | 1131 | */ |
1132 | - public function get_user_zip( $context = 'view' ) { |
|
1133 | - return $this->get_zip( $context ); |
|
1132 | + public function get_user_zip($context = 'view') { |
|
1133 | + return $this->get_zip($context); |
|
1134 | 1134 | } |
1135 | 1135 | |
1136 | 1136 | /** |
@@ -1140,8 +1140,8 @@ discard block |
||
1140 | 1140 | * @param string $context View or edit context. |
1141 | 1141 | * @return string |
1142 | 1142 | */ |
1143 | - public function get_customer_zip( $context = 'view' ) { |
|
1144 | - return $this->get_zip( $context ); |
|
1143 | + public function get_customer_zip($context = 'view') { |
|
1144 | + return $this->get_zip($context); |
|
1145 | 1145 | } |
1146 | 1146 | |
1147 | 1147 | /** |
@@ -1151,8 +1151,8 @@ discard block |
||
1151 | 1151 | * @param string $context View or edit context. |
1152 | 1152 | * @return string |
1153 | 1153 | */ |
1154 | - public function get_company( $context = 'view' ) { |
|
1155 | - return $this->get_prop( 'company', $context ); |
|
1154 | + public function get_company($context = 'view') { |
|
1155 | + return $this->get_prop('company', $context); |
|
1156 | 1156 | } |
1157 | 1157 | |
1158 | 1158 | /** |
@@ -1162,8 +1162,8 @@ discard block |
||
1162 | 1162 | * @param string $context View or edit context. |
1163 | 1163 | * @return string |
1164 | 1164 | */ |
1165 | - public function get_user_company( $context = 'view' ) { |
|
1166 | - return $this->get_company( $context ); |
|
1165 | + public function get_user_company($context = 'view') { |
|
1166 | + return $this->get_company($context); |
|
1167 | 1167 | } |
1168 | 1168 | |
1169 | 1169 | /** |
@@ -1173,8 +1173,8 @@ discard block |
||
1173 | 1173 | * @param string $context View or edit context. |
1174 | 1174 | * @return string |
1175 | 1175 | */ |
1176 | - public function get_customer_company( $context = 'view' ) { |
|
1177 | - return $this->get_company( $context ); |
|
1176 | + public function get_customer_company($context = 'view') { |
|
1177 | + return $this->get_company($context); |
|
1178 | 1178 | } |
1179 | 1179 | |
1180 | 1180 | /** |
@@ -1184,8 +1184,8 @@ discard block |
||
1184 | 1184 | * @param string $context View or edit context. |
1185 | 1185 | * @return string |
1186 | 1186 | */ |
1187 | - public function get_vat_number( $context = 'view' ) { |
|
1188 | - return $this->get_prop( 'vat_number', $context ); |
|
1187 | + public function get_vat_number($context = 'view') { |
|
1188 | + return $this->get_prop('vat_number', $context); |
|
1189 | 1189 | } |
1190 | 1190 | |
1191 | 1191 | /** |
@@ -1195,8 +1195,8 @@ discard block |
||
1195 | 1195 | * @param string $context View or edit context. |
1196 | 1196 | * @return string |
1197 | 1197 | */ |
1198 | - public function get_user_vat_number( $context = 'view' ) { |
|
1199 | - return $this->get_vat_number( $context ); |
|
1198 | + public function get_user_vat_number($context = 'view') { |
|
1199 | + return $this->get_vat_number($context); |
|
1200 | 1200 | } |
1201 | 1201 | |
1202 | 1202 | /** |
@@ -1206,8 +1206,8 @@ discard block |
||
1206 | 1206 | * @param string $context View or edit context. |
1207 | 1207 | * @return string |
1208 | 1208 | */ |
1209 | - public function get_customer_vat_number( $context = 'view' ) { |
|
1210 | - return $this->get_vat_number( $context ); |
|
1209 | + public function get_customer_vat_number($context = 'view') { |
|
1210 | + return $this->get_vat_number($context); |
|
1211 | 1211 | } |
1212 | 1212 | |
1213 | 1213 | /** |
@@ -1217,8 +1217,8 @@ discard block |
||
1217 | 1217 | * @param string $context View or edit context. |
1218 | 1218 | * @return string |
1219 | 1219 | */ |
1220 | - public function get_vat_rate( $context = 'view' ) { |
|
1221 | - return $this->get_prop( 'vat_rate', $context ); |
|
1220 | + public function get_vat_rate($context = 'view') { |
|
1221 | + return $this->get_prop('vat_rate', $context); |
|
1222 | 1222 | } |
1223 | 1223 | |
1224 | 1224 | /** |
@@ -1228,8 +1228,8 @@ discard block |
||
1228 | 1228 | * @param string $context View or edit context. |
1229 | 1229 | * @return string |
1230 | 1230 | */ |
1231 | - public function get_user_vat_rate( $context = 'view' ) { |
|
1232 | - return $this->get_vat_rate( $context ); |
|
1231 | + public function get_user_vat_rate($context = 'view') { |
|
1232 | + return $this->get_vat_rate($context); |
|
1233 | 1233 | } |
1234 | 1234 | |
1235 | 1235 | /** |
@@ -1239,8 +1239,8 @@ discard block |
||
1239 | 1239 | * @param string $context View or edit context. |
1240 | 1240 | * @return string |
1241 | 1241 | */ |
1242 | - public function get_customer_vat_rate( $context = 'view' ) { |
|
1243 | - return $this->get_vat_rate( $context ); |
|
1242 | + public function get_customer_vat_rate($context = 'view') { |
|
1243 | + return $this->get_vat_rate($context); |
|
1244 | 1244 | } |
1245 | 1245 | |
1246 | 1246 | /** |
@@ -1250,8 +1250,8 @@ discard block |
||
1250 | 1250 | * @param string $context View or edit context. |
1251 | 1251 | * @return string |
1252 | 1252 | */ |
1253 | - public function get_address( $context = 'view' ) { |
|
1254 | - return $this->get_prop( 'address', $context ); |
|
1253 | + public function get_address($context = 'view') { |
|
1254 | + return $this->get_prop('address', $context); |
|
1255 | 1255 | } |
1256 | 1256 | |
1257 | 1257 | /** |
@@ -1261,8 +1261,8 @@ discard block |
||
1261 | 1261 | * @param string $context View or edit context. |
1262 | 1262 | * @return string |
1263 | 1263 | */ |
1264 | - public function get_user_address( $context = 'view' ) { |
|
1265 | - return $this->get_address( $context ); |
|
1264 | + public function get_user_address($context = 'view') { |
|
1265 | + return $this->get_address($context); |
|
1266 | 1266 | } |
1267 | 1267 | |
1268 | 1268 | /** |
@@ -1272,8 +1272,8 @@ discard block |
||
1272 | 1272 | * @param string $context View or edit context. |
1273 | 1273 | * @return string |
1274 | 1274 | */ |
1275 | - public function get_customer_address( $context = 'view' ) { |
|
1276 | - return $this->get_address( $context ); |
|
1275 | + public function get_customer_address($context = 'view') { |
|
1276 | + return $this->get_address($context); |
|
1277 | 1277 | } |
1278 | 1278 | |
1279 | 1279 | /** |
@@ -1283,8 +1283,8 @@ discard block |
||
1283 | 1283 | * @param string $context View or edit context. |
1284 | 1284 | * @return bool |
1285 | 1285 | */ |
1286 | - public function get_is_viewed( $context = 'view' ) { |
|
1287 | - return (bool) $this->get_prop( 'is_viewed', $context ); |
|
1286 | + public function get_is_viewed($context = 'view') { |
|
1287 | + return (bool) $this->get_prop('is_viewed', $context); |
|
1288 | 1288 | } |
1289 | 1289 | |
1290 | 1290 | /** |
@@ -1294,8 +1294,8 @@ discard block |
||
1294 | 1294 | * @param string $context View or edit context. |
1295 | 1295 | * @return bool |
1296 | 1296 | */ |
1297 | - public function get_email_cc( $context = 'view' ) { |
|
1298 | - return $this->get_prop( 'email_cc', $context ); |
|
1297 | + public function get_email_cc($context = 'view') { |
|
1298 | + return $this->get_prop('email_cc', $context); |
|
1299 | 1299 | } |
1300 | 1300 | |
1301 | 1301 | /** |
@@ -1305,8 +1305,8 @@ discard block |
||
1305 | 1305 | * @param string $context View or edit context. |
1306 | 1306 | * @return bool |
1307 | 1307 | */ |
1308 | - public function get_template( $context = 'view' ) { |
|
1309 | - return $this->get_prop( 'template', $context ); |
|
1308 | + public function get_template($context = 'view') { |
|
1309 | + return $this->get_prop('template', $context); |
|
1310 | 1310 | } |
1311 | 1311 | |
1312 | 1312 | /** |
@@ -1316,8 +1316,8 @@ discard block |
||
1316 | 1316 | * @param string $context View or edit context. |
1317 | 1317 | * @return bool |
1318 | 1318 | */ |
1319 | - public function get_created_via( $context = 'view' ) { |
|
1320 | - return $this->get_prop( 'created_via', $context ); |
|
1319 | + public function get_created_via($context = 'view') { |
|
1320 | + return $this->get_prop('created_via', $context); |
|
1321 | 1321 | } |
1322 | 1322 | |
1323 | 1323 | /** |
@@ -1327,8 +1327,8 @@ discard block |
||
1327 | 1327 | * @param string $context View or edit context. |
1328 | 1328 | * @return bool |
1329 | 1329 | */ |
1330 | - public function get_address_confirmed( $context = 'view' ) { |
|
1331 | - return (bool) $this->get_prop( 'address_confirmed', $context ); |
|
1330 | + public function get_address_confirmed($context = 'view') { |
|
1331 | + return (bool) $this->get_prop('address_confirmed', $context); |
|
1332 | 1332 | } |
1333 | 1333 | |
1334 | 1334 | /** |
@@ -1338,8 +1338,8 @@ discard block |
||
1338 | 1338 | * @param string $context View or edit context. |
1339 | 1339 | * @return bool |
1340 | 1340 | */ |
1341 | - public function get_user_address_confirmed( $context = 'view' ) { |
|
1342 | - return $this->get_address_confirmed( $context ); |
|
1341 | + public function get_user_address_confirmed($context = 'view') { |
|
1342 | + return $this->get_address_confirmed($context); |
|
1343 | 1343 | } |
1344 | 1344 | |
1345 | 1345 | /** |
@@ -1349,8 +1349,8 @@ discard block |
||
1349 | 1349 | * @param string $context View or edit context. |
1350 | 1350 | * @return bool |
1351 | 1351 | */ |
1352 | - public function get_customer_address_confirmed( $context = 'view' ) { |
|
1353 | - return $this->get_address_confirmed( $context ); |
|
1352 | + public function get_customer_address_confirmed($context = 'view') { |
|
1353 | + return $this->get_address_confirmed($context); |
|
1354 | 1354 | } |
1355 | 1355 | |
1356 | 1356 | /** |
@@ -1360,12 +1360,12 @@ discard block |
||
1360 | 1360 | * @param string $context View or edit context. |
1361 | 1361 | * @return float |
1362 | 1362 | */ |
1363 | - public function get_subtotal( $context = 'view' ) { |
|
1364 | - $subtotal = (float) $this->get_prop( 'subtotal', $context ); |
|
1363 | + public function get_subtotal($context = 'view') { |
|
1364 | + $subtotal = (float) $this->get_prop('subtotal', $context); |
|
1365 | 1365 | |
1366 | 1366 | // Backwards compatibility. |
1367 | - if ( is_bool( $context ) && $context ) { |
|
1368 | - return wpinv_price( $subtotal, $this->get_currency() ); |
|
1367 | + if (is_bool($context) && $context) { |
|
1368 | + return wpinv_price($subtotal, $this->get_currency()); |
|
1369 | 1369 | } |
1370 | 1370 | |
1371 | 1371 | return $subtotal; |
@@ -1378,8 +1378,8 @@ discard block |
||
1378 | 1378 | * @param string $context View or edit context. |
1379 | 1379 | * @return float |
1380 | 1380 | */ |
1381 | - public function get_total_discount( $context = 'view' ) { |
|
1382 | - return wpinv_round_amount( wpinv_sanitize_amount( $this->get_prop( 'total_discount', $context ) ) ); |
|
1381 | + public function get_total_discount($context = 'view') { |
|
1382 | + return wpinv_round_amount(wpinv_sanitize_amount($this->get_prop('total_discount', $context))); |
|
1383 | 1383 | } |
1384 | 1384 | |
1385 | 1385 | /** |
@@ -1389,18 +1389,18 @@ discard block |
||
1389 | 1389 | * @param string $context View or edit context. |
1390 | 1390 | * @return float |
1391 | 1391 | */ |
1392 | - public function get_total_tax( $context = 'view' ) { |
|
1393 | - return wpinv_round_amount( wpinv_sanitize_amount( $this->get_prop( 'total_tax', $context ) ) ); |
|
1392 | + public function get_total_tax($context = 'view') { |
|
1393 | + return wpinv_round_amount(wpinv_sanitize_amount($this->get_prop('total_tax', $context))); |
|
1394 | 1394 | } |
1395 | 1395 | |
1396 | 1396 | /** |
1397 | 1397 | * @deprecated |
1398 | 1398 | */ |
1399 | - public function get_final_tax( $currency = false ) { |
|
1399 | + public function get_final_tax($currency = false) { |
|
1400 | 1400 | $tax = $this->get_total_tax(); |
1401 | 1401 | |
1402 | - if ( $currency ) { |
|
1403 | - return wpinv_price( $tax, $this->get_currency() ); |
|
1402 | + if ($currency) { |
|
1403 | + return wpinv_price($tax, $this->get_currency()); |
|
1404 | 1404 | } |
1405 | 1405 | |
1406 | 1406 | return $tax; |
@@ -1413,8 +1413,8 @@ discard block |
||
1413 | 1413 | * @param string $context View or edit context. |
1414 | 1414 | * @return float |
1415 | 1415 | */ |
1416 | - public function get_total_fees( $context = 'view' ) { |
|
1417 | - return wpinv_round_amount( wpinv_sanitize_amount( $this->get_prop( 'total_fees', $context ) ) ); |
|
1416 | + public function get_total_fees($context = 'view') { |
|
1417 | + return wpinv_round_amount(wpinv_sanitize_amount($this->get_prop('total_fees', $context))); |
|
1418 | 1418 | } |
1419 | 1419 | |
1420 | 1420 | /** |
@@ -1424,8 +1424,8 @@ discard block |
||
1424 | 1424 | * @param string $context View or edit context. |
1425 | 1425 | * @return float |
1426 | 1426 | */ |
1427 | - public function get_fees_total( $context = 'view' ) { |
|
1428 | - return $this->get_total_fees( $context ); |
|
1427 | + public function get_fees_total($context = 'view') { |
|
1428 | + return $this->get_total_fees($context); |
|
1429 | 1429 | } |
1430 | 1430 | |
1431 | 1431 | /** |
@@ -1434,8 +1434,8 @@ discard block |
||
1434 | 1434 | * @since 1.0.19 |
1435 | 1435 | * @return float |
1436 | 1436 | */ |
1437 | - public function get_total( $context = 'view' ) { |
|
1438 | - return wpinv_round_amount( wpinv_sanitize_amount( $this->get_prop( 'total', $context ) ) ); |
|
1437 | + public function get_total($context = 'view') { |
|
1438 | + return wpinv_round_amount(wpinv_sanitize_amount($this->get_prop('total', $context))); |
|
1439 | 1439 | } |
1440 | 1440 | |
1441 | 1441 | /** |
@@ -1457,7 +1457,7 @@ discard block |
||
1457 | 1457 | */ |
1458 | 1458 | public function get_initial_total() { |
1459 | 1459 | |
1460 | - if ( empty( $this->totals ) ) { |
|
1460 | + if (empty($this->totals)) { |
|
1461 | 1461 | $this->recalculate_total(); |
1462 | 1462 | } |
1463 | 1463 | |
@@ -1467,12 +1467,12 @@ discard block |
||
1467 | 1467 | $subtotal = $this->totals['subtotal']['initial']; |
1468 | 1468 | $total = $tax + $fee - $discount + $subtotal; |
1469 | 1469 | |
1470 | - if ( 0 > $total ) { |
|
1470 | + if (0 > $total) { |
|
1471 | 1471 | $total = 0; |
1472 | 1472 | } |
1473 | 1473 | |
1474 | - $total = wpinv_round_amount( wpinv_sanitize_amount( $total ) ); |
|
1475 | - return apply_filters( 'wpinv_get_initial_invoice_total', $total, $this ); |
|
1474 | + $total = wpinv_round_amount(wpinv_sanitize_amount($total)); |
|
1475 | + return apply_filters('wpinv_get_initial_invoice_total', $total, $this); |
|
1476 | 1476 | } |
1477 | 1477 | |
1478 | 1478 | /** |
@@ -1484,7 +1484,7 @@ discard block |
||
1484 | 1484 | */ |
1485 | 1485 | public function get_recurring_total() { |
1486 | 1486 | |
1487 | - if ( empty( $this->totals ) ) { |
|
1487 | + if (empty($this->totals)) { |
|
1488 | 1488 | $this->recalculate_total(); |
1489 | 1489 | } |
1490 | 1490 | |
@@ -1494,12 +1494,12 @@ discard block |
||
1494 | 1494 | $subtotal = $this->totals['subtotal']['recurring']; |
1495 | 1495 | $total = $tax + $fee - $discount + $subtotal; |
1496 | 1496 | |
1497 | - if ( 0 > $total ) { |
|
1497 | + if (0 > $total) { |
|
1498 | 1498 | $total = 0; |
1499 | 1499 | } |
1500 | 1500 | |
1501 | - $total = wpinv_round_amount( wpinv_sanitize_amount( $total ) ); |
|
1502 | - return apply_filters( 'wpinv_get_recurring_invoice_total', $total, $this ); |
|
1501 | + $total = wpinv_round_amount(wpinv_sanitize_amount($total)); |
|
1502 | + return apply_filters('wpinv_get_recurring_invoice_total', $total, $this); |
|
1503 | 1503 | } |
1504 | 1504 | |
1505 | 1505 | /** |
@@ -1510,10 +1510,10 @@ discard block |
||
1510 | 1510 | * @param string $currency Whether to include the currency. |
1511 | 1511 | * @return float|string |
1512 | 1512 | */ |
1513 | - public function get_recurring_details( $field = '', $currency = false ) { |
|
1513 | + public function get_recurring_details($field = '', $currency = false) { |
|
1514 | 1514 | |
1515 | 1515 | // Maybe recalculate totals. |
1516 | - if ( empty( $this->totals ) ) { |
|
1516 | + if (empty($this->totals)) { |
|
1517 | 1517 | $this->recalculate_total(); |
1518 | 1518 | } |
1519 | 1519 | |
@@ -1533,8 +1533,8 @@ discard block |
||
1533 | 1533 | $currency |
1534 | 1534 | ); |
1535 | 1535 | |
1536 | - if ( isset( $data[$field] ) ) { |
|
1537 | - return ( $currency ? wpinv_price( $data[$field], $this->get_currency() ) : $data[$field] ); |
|
1536 | + if (isset($data[$field])) { |
|
1537 | + return ($currency ? wpinv_price($data[$field], $this->get_currency()) : $data[$field]); |
|
1538 | 1538 | } |
1539 | 1539 | |
1540 | 1540 | return $data; |
@@ -1547,8 +1547,8 @@ discard block |
||
1547 | 1547 | * @param string $context View or edit context. |
1548 | 1548 | * @return array |
1549 | 1549 | */ |
1550 | - public function get_fees( $context = 'view' ) { |
|
1551 | - return wpinv_parse_list( $this->get_prop( 'fees', $context ) ); |
|
1550 | + public function get_fees($context = 'view') { |
|
1551 | + return wpinv_parse_list($this->get_prop('fees', $context)); |
|
1552 | 1552 | } |
1553 | 1553 | |
1554 | 1554 | /** |
@@ -1558,8 +1558,8 @@ discard block |
||
1558 | 1558 | * @param string $context View or edit context. |
1559 | 1559 | * @return array |
1560 | 1560 | */ |
1561 | - public function get_discounts( $context = 'view' ) { |
|
1562 | - return wpinv_parse_list( $this->get_prop( 'discounts', $context ) ); |
|
1561 | + public function get_discounts($context = 'view') { |
|
1562 | + return wpinv_parse_list($this->get_prop('discounts', $context)); |
|
1563 | 1563 | } |
1564 | 1564 | |
1565 | 1565 | /** |
@@ -1569,8 +1569,8 @@ discard block |
||
1569 | 1569 | * @param string $context View or edit context. |
1570 | 1570 | * @return array |
1571 | 1571 | */ |
1572 | - public function get_taxes( $context = 'view' ) { |
|
1573 | - return wpinv_parse_list( $this->get_prop( 'taxes', $context ) ); |
|
1572 | + public function get_taxes($context = 'view') { |
|
1573 | + return wpinv_parse_list($this->get_prop('taxes', $context)); |
|
1574 | 1574 | } |
1575 | 1575 | |
1576 | 1576 | /** |
@@ -1580,8 +1580,8 @@ discard block |
||
1580 | 1580 | * @param string $context View or edit context. |
1581 | 1581 | * @return GetPaid_Form_Item[] |
1582 | 1582 | */ |
1583 | - public function get_items( $context = 'view' ) { |
|
1584 | - return $this->get_prop( 'items', $context ); |
|
1583 | + public function get_items($context = 'view') { |
|
1584 | + return $this->get_prop('items', $context); |
|
1585 | 1585 | } |
1586 | 1586 | |
1587 | 1587 | /** |
@@ -1591,7 +1591,7 @@ discard block |
||
1591 | 1591 | * @return string |
1592 | 1592 | */ |
1593 | 1593 | public function get_item_ids() { |
1594 | - return implode( ', ', wp_list_pluck( $this->get_cart_details(), 'item_id' ) ); |
|
1594 | + return implode(', ', wp_list_pluck($this->get_cart_details(), 'item_id')); |
|
1595 | 1595 | } |
1596 | 1596 | |
1597 | 1597 | /** |
@@ -1601,8 +1601,8 @@ discard block |
||
1601 | 1601 | * @param string $context View or edit context. |
1602 | 1602 | * @return int |
1603 | 1603 | */ |
1604 | - public function get_payment_form( $context = 'view' ) { |
|
1605 | - return intval( $this->get_prop( 'payment_form', $context ) ); |
|
1604 | + public function get_payment_form($context = 'view') { |
|
1605 | + return intval($this->get_prop('payment_form', $context)); |
|
1606 | 1606 | } |
1607 | 1607 | |
1608 | 1608 | /** |
@@ -1612,8 +1612,8 @@ discard block |
||
1612 | 1612 | * @param string $context View or edit context. |
1613 | 1613 | * @return string |
1614 | 1614 | */ |
1615 | - public function get_submission_id( $context = 'view' ) { |
|
1616 | - return $this->get_prop( 'submission_id', $context ); |
|
1615 | + public function get_submission_id($context = 'view') { |
|
1616 | + return $this->get_prop('submission_id', $context); |
|
1617 | 1617 | } |
1618 | 1618 | |
1619 | 1619 | /** |
@@ -1623,8 +1623,8 @@ discard block |
||
1623 | 1623 | * @param string $context View or edit context. |
1624 | 1624 | * @return string |
1625 | 1625 | */ |
1626 | - public function get_discount_code( $context = 'view' ) { |
|
1627 | - return $this->get_prop( 'discount_code', $context ); |
|
1626 | + public function get_discount_code($context = 'view') { |
|
1627 | + return $this->get_prop('discount_code', $context); |
|
1628 | 1628 | } |
1629 | 1629 | |
1630 | 1630 | /** |
@@ -1634,8 +1634,8 @@ discard block |
||
1634 | 1634 | * @param string $context View or edit context. |
1635 | 1635 | * @return string |
1636 | 1636 | */ |
1637 | - public function get_gateway( $context = 'view' ) { |
|
1638 | - return $this->get_prop( 'gateway', $context ); |
|
1637 | + public function get_gateway($context = 'view') { |
|
1638 | + return $this->get_prop('gateway', $context); |
|
1639 | 1639 | } |
1640 | 1640 | |
1641 | 1641 | /** |
@@ -1645,8 +1645,8 @@ discard block |
||
1645 | 1645 | * @return string |
1646 | 1646 | */ |
1647 | 1647 | public function get_gateway_title() { |
1648 | - $title = wpinv_get_gateway_checkout_label( $this->get_gateway() ); |
|
1649 | - return apply_filters( 'wpinv_gateway_title', $title, $this->get_id(), $this ); |
|
1648 | + $title = wpinv_get_gateway_checkout_label($this->get_gateway()); |
|
1649 | + return apply_filters('wpinv_gateway_title', $title, $this->get_id(), $this); |
|
1650 | 1650 | } |
1651 | 1651 | |
1652 | 1652 | /** |
@@ -1656,8 +1656,8 @@ discard block |
||
1656 | 1656 | * @param string $context View or edit context. |
1657 | 1657 | * @return string |
1658 | 1658 | */ |
1659 | - public function get_transaction_id( $context = 'view' ) { |
|
1660 | - return $this->get_prop( 'transaction_id', $context ); |
|
1659 | + public function get_transaction_id($context = 'view') { |
|
1660 | + return $this->get_prop('transaction_id', $context); |
|
1661 | 1661 | } |
1662 | 1662 | |
1663 | 1663 | /** |
@@ -1667,9 +1667,9 @@ discard block |
||
1667 | 1667 | * @param string $context View or edit context. |
1668 | 1668 | * @return string |
1669 | 1669 | */ |
1670 | - public function get_currency( $context = 'view' ) { |
|
1671 | - $currency = $this->get_prop( 'currency', $context ); |
|
1672 | - return empty( $currency ) ? wpinv_get_currency() : $currency; |
|
1670 | + public function get_currency($context = 'view') { |
|
1671 | + $currency = $this->get_prop('currency', $context); |
|
1672 | + return empty($currency) ? wpinv_get_currency() : $currency; |
|
1673 | 1673 | } |
1674 | 1674 | |
1675 | 1675 | /** |
@@ -1679,8 +1679,8 @@ discard block |
||
1679 | 1679 | * @param string $context View or edit context. |
1680 | 1680 | * @return bool |
1681 | 1681 | */ |
1682 | - public function get_disable_taxes( $context = 'view' ) { |
|
1683 | - return (bool) $this->get_prop( 'disable_taxes', $context ); |
|
1682 | + public function get_disable_taxes($context = 'view') { |
|
1683 | + return (bool) $this->get_prop('disable_taxes', $context); |
|
1684 | 1684 | } |
1685 | 1685 | |
1686 | 1686 | /** |
@@ -1690,8 +1690,8 @@ discard block |
||
1690 | 1690 | * @param string $context View or edit context. |
1691 | 1691 | * @return int |
1692 | 1692 | */ |
1693 | - public function get_subscription_id( $context = 'view' ) { |
|
1694 | - return $this->is_renewal() ? $this->get_parent()->get_subscription_id( $context ) : $this->get_prop( 'subscription_id', $context ); |
|
1693 | + public function get_subscription_id($context = 'view') { |
|
1694 | + return $this->is_renewal() ? $this->get_parent()->get_subscription_id($context) : $this->get_prop('subscription_id', $context); |
|
1695 | 1695 | } |
1696 | 1696 | |
1697 | 1697 | /** |
@@ -1701,12 +1701,12 @@ discard block |
||
1701 | 1701 | * @param string $context View or edit context. |
1702 | 1702 | * @return int |
1703 | 1703 | */ |
1704 | - public function get_remote_subscription_id( $context = 'view' ) { |
|
1705 | - $subscription_id = $this->get_prop( 'remote_subscription_id', $context ); |
|
1704 | + public function get_remote_subscription_id($context = 'view') { |
|
1705 | + $subscription_id = $this->get_prop('remote_subscription_id', $context); |
|
1706 | 1706 | |
1707 | - if ( empty( $subscription_id ) && $this->is_renewal() ) { |
|
1707 | + if (empty($subscription_id) && $this->is_renewal()) { |
|
1708 | 1708 | $parent = $this->get_parent(); |
1709 | - return $parent->get_remote_subscription_id( $context ); |
|
1709 | + return $parent->get_remote_subscription_id($context); |
|
1710 | 1710 | } |
1711 | 1711 | |
1712 | 1712 | return $subscription_id; |
@@ -1719,20 +1719,20 @@ discard block |
||
1719 | 1719 | * @param string $context View or edit context. |
1720 | 1720 | * @return array |
1721 | 1721 | */ |
1722 | - public function get_payment_meta( $context = 'view' ) { |
|
1722 | + public function get_payment_meta($context = 'view') { |
|
1723 | 1723 | |
1724 | 1724 | return array( |
1725 | - 'price' => $this->get_total( $context ), |
|
1726 | - 'date' => $this->get_date_created( $context ), |
|
1727 | - 'user_email' => $this->get_email( $context ), |
|
1728 | - 'invoice_key' => $this->get_key( $context ), |
|
1729 | - 'currency' => $this->get_currency( $context ), |
|
1730 | - 'items' => $this->get_items( $context ), |
|
1731 | - 'user_info' => $this->get_user_info( $context ), |
|
1725 | + 'price' => $this->get_total($context), |
|
1726 | + 'date' => $this->get_date_created($context), |
|
1727 | + 'user_email' => $this->get_email($context), |
|
1728 | + 'invoice_key' => $this->get_key($context), |
|
1729 | + 'currency' => $this->get_currency($context), |
|
1730 | + 'items' => $this->get_items($context), |
|
1731 | + 'user_info' => $this->get_user_info($context), |
|
1732 | 1732 | 'cart_details' => $this->get_cart_details(), |
1733 | - 'status' => $this->get_status( $context ), |
|
1734 | - 'fees' => $this->get_fees( $context ), |
|
1735 | - 'taxes' => $this->get_taxes( $context ), |
|
1733 | + 'status' => $this->get_status($context), |
|
1734 | + 'fees' => $this->get_fees($context), |
|
1735 | + 'taxes' => $this->get_taxes($context), |
|
1736 | 1736 | ); |
1737 | 1737 | |
1738 | 1738 | } |
@@ -1747,9 +1747,9 @@ discard block |
||
1747 | 1747 | $items = $this->get_items(); |
1748 | 1748 | $cart_details = array(); |
1749 | 1749 | |
1750 | - foreach ( $items as $item ) { |
|
1750 | + foreach ($items as $item) { |
|
1751 | 1751 | $item->invoice_id = $this->get_id(); |
1752 | - $cart_details[] = $item->prepare_data_for_saving(); |
|
1752 | + $cart_details[] = $item->prepare_data_for_saving(); |
|
1753 | 1753 | } |
1754 | 1754 | |
1755 | 1755 | return $cart_details; |
@@ -1760,11 +1760,11 @@ discard block |
||
1760 | 1760 | * |
1761 | 1761 | * @return null|GetPaid_Form_Item|int |
1762 | 1762 | */ |
1763 | - public function get_recurring( $object = false ) { |
|
1763 | + public function get_recurring($object = false) { |
|
1764 | 1764 | |
1765 | 1765 | // Are we returning an object? |
1766 | - if ( $object ) { |
|
1767 | - return $this->get_item( $this->recurring_item ); |
|
1766 | + if ($object) { |
|
1767 | + return $this->get_item($this->recurring_item); |
|
1768 | 1768 | } |
1769 | 1769 | |
1770 | 1770 | return $this->recurring_item; |
@@ -1779,15 +1779,15 @@ discard block |
||
1779 | 1779 | public function get_subscription_name() { |
1780 | 1780 | |
1781 | 1781 | // Retrieve the recurring name |
1782 | - $item = $this->get_recurring( true ); |
|
1782 | + $item = $this->get_recurring(true); |
|
1783 | 1783 | |
1784 | 1784 | // Abort if it does not exist. |
1785 | - if ( empty( $item ) ) { |
|
1785 | + if (empty($item)) { |
|
1786 | 1786 | return ''; |
1787 | 1787 | } |
1788 | 1788 | |
1789 | 1789 | // Return the item name. |
1790 | - return apply_filters( 'wpinv_invoice_get_subscription_name', $item->get_name(), $this ); |
|
1790 | + return apply_filters('wpinv_invoice_get_subscription_name', $item->get_name(), $this); |
|
1791 | 1791 | } |
1792 | 1792 | |
1793 | 1793 | /** |
@@ -1797,9 +1797,9 @@ discard block |
||
1797 | 1797 | * @return string |
1798 | 1798 | */ |
1799 | 1799 | public function get_view_url() { |
1800 | - $invoice_url = get_permalink( $this->get_id() ); |
|
1801 | - $invoice_url = add_query_arg( 'invoice_key', $this->get_key(), $invoice_url ); |
|
1802 | - return apply_filters( 'wpinv_get_view_url', $invoice_url, $this ); |
|
1800 | + $invoice_url = get_permalink($this->get_id()); |
|
1801 | + $invoice_url = add_query_arg('invoice_key', $this->get_key(), $invoice_url); |
|
1802 | + return apply_filters('wpinv_get_view_url', $invoice_url, $this); |
|
1803 | 1803 | } |
1804 | 1804 | |
1805 | 1805 | /** |
@@ -1808,25 +1808,25 @@ discard block |
||
1808 | 1808 | * @since 1.0.19 |
1809 | 1809 | * @return string |
1810 | 1810 | */ |
1811 | - public function get_checkout_payment_url( $deprecated = false, $secret = false ) { |
|
1811 | + public function get_checkout_payment_url($deprecated = false, $secret = false) { |
|
1812 | 1812 | |
1813 | 1813 | // Retrieve the checkout url. |
1814 | 1814 | $pay_url = wpinv_get_checkout_uri(); |
1815 | 1815 | |
1816 | 1816 | // Maybe force ssl. |
1817 | - if ( is_ssl() ) { |
|
1818 | - $pay_url = str_replace( 'http:', 'https:', $pay_url ); |
|
1817 | + if (is_ssl()) { |
|
1818 | + $pay_url = str_replace('http:', 'https:', $pay_url); |
|
1819 | 1819 | } |
1820 | 1820 | |
1821 | 1821 | // Add the invoice key. |
1822 | - $pay_url = add_query_arg( 'invoice_key', $this->get_key(), $pay_url ); |
|
1822 | + $pay_url = add_query_arg('invoice_key', $this->get_key(), $pay_url); |
|
1823 | 1823 | |
1824 | 1824 | // (Maybe?) add a secret |
1825 | - if ( $secret ) { |
|
1826 | - $pay_url = add_query_arg( array( '_wpipay' => md5( $this->get_user_id() . '::' . $this->get_email() . '::' . $this->get_key() ) ), $pay_url ); |
|
1825 | + if ($secret) { |
|
1826 | + $pay_url = add_query_arg(array('_wpipay' => md5($this->get_user_id() . '::' . $this->get_email() . '::' . $this->get_key())), $pay_url); |
|
1827 | 1827 | } |
1828 | 1828 | |
1829 | - return apply_filters( 'wpinv_get_checkout_payment_url', $pay_url, $this, $deprecated, $secret ); |
|
1829 | + return apply_filters('wpinv_get_checkout_payment_url', $pay_url, $this, $deprecated, $secret); |
|
1830 | 1830 | } |
1831 | 1831 | |
1832 | 1832 | /** |
@@ -1841,14 +1841,14 @@ discard block |
||
1841 | 1841 | $receipt_url = wpinv_get_success_page_uri(); |
1842 | 1842 | |
1843 | 1843 | // Maybe force ssl. |
1844 | - if ( is_ssl() ) { |
|
1845 | - $receipt_url = str_replace( 'http:', 'https:', $receipt_url ); |
|
1844 | + if (is_ssl()) { |
|
1845 | + $receipt_url = str_replace('http:', 'https:', $receipt_url); |
|
1846 | 1846 | } |
1847 | 1847 | |
1848 | 1848 | // Add the invoice key. |
1849 | - $receipt_url = add_query_arg( 'invoice_key', $this->get_key(), $receipt_url ); |
|
1849 | + $receipt_url = add_query_arg('invoice_key', $this->get_key(), $receipt_url); |
|
1850 | 1850 | |
1851 | - return apply_filters( 'getpaid_get_invoice_receipt_url', $receipt_url, $this ); |
|
1851 | + return apply_filters('getpaid_get_invoice_receipt_url', $receipt_url, $this); |
|
1852 | 1852 | } |
1853 | 1853 | |
1854 | 1854 | /** |
@@ -1861,7 +1861,7 @@ discard block |
||
1861 | 1861 | |
1862 | 1862 | $type = $this->get_type(); |
1863 | 1863 | $status = "wpi-$type-pending"; |
1864 | - return str_replace( '-invoice', '', $status ); |
|
1864 | + return str_replace('-invoice', '', $status); |
|
1865 | 1865 | |
1866 | 1866 | } |
1867 | 1867 | |
@@ -1875,8 +1875,8 @@ discard block |
||
1875 | 1875 | * @param string $context View or edit context. |
1876 | 1876 | * @return mixed Value of the given invoice property (if set). |
1877 | 1877 | */ |
1878 | - public function get( $key, $context = 'view' ) { |
|
1879 | - return $this->get_prop( $key, $context ); |
|
1878 | + public function get($key, $context = 'view') { |
|
1879 | + return $this->get_prop($key, $context); |
|
1880 | 1880 | } |
1881 | 1881 | |
1882 | 1882 | /* |
@@ -1899,11 +1899,11 @@ discard block |
||
1899 | 1899 | * @param mixed $value new value. |
1900 | 1900 | * @return mixed Value of the given invoice property (if set). |
1901 | 1901 | */ |
1902 | - public function set( $key, $value ) { |
|
1902 | + public function set($key, $value) { |
|
1903 | 1903 | |
1904 | 1904 | $setter = "set_$key"; |
1905 | - if ( is_callable( array( $this, $setter ) ) ) { |
|
1906 | - $this->{$setter}( $value ); |
|
1905 | + if (is_callable(array($this, $setter))) { |
|
1906 | + $this->{$setter}($value); |
|
1907 | 1907 | } |
1908 | 1908 | |
1909 | 1909 | } |
@@ -1917,45 +1917,45 @@ discard block |
||
1917 | 1917 | * @param bool $manual_update Is this a manual status change?. |
1918 | 1918 | * @return array details of change. |
1919 | 1919 | */ |
1920 | - public function set_status( $new_status, $note = '', $manual_update = false ) { |
|
1920 | + public function set_status($new_status, $note = '', $manual_update = false) { |
|
1921 | 1921 | $old_status = $this->get_status(); |
1922 | 1922 | |
1923 | 1923 | $statuses = $this->get_all_statuses(); |
1924 | 1924 | |
1925 | - if ( isset( $statuses[ 'draft' ] ) ) { |
|
1926 | - unset( $statuses[ 'draft' ] ); |
|
1925 | + if (isset($statuses['draft'])) { |
|
1926 | + unset($statuses['draft']); |
|
1927 | 1927 | } |
1928 | 1928 | |
1929 | - $this->set_prop( 'status', $new_status ); |
|
1929 | + $this->set_prop('status', $new_status); |
|
1930 | 1930 | |
1931 | 1931 | // If setting the status, ensure it's set to a valid status. |
1932 | - if ( true === $this->object_read ) { |
|
1932 | + if (true === $this->object_read) { |
|
1933 | 1933 | |
1934 | 1934 | // Only allow valid new status. |
1935 | - if ( ! array_key_exists( $new_status, $statuses ) ) { |
|
1935 | + if (!array_key_exists($new_status, $statuses)) { |
|
1936 | 1936 | $new_status = $this->get_default_status(); |
1937 | 1937 | } |
1938 | 1938 | |
1939 | 1939 | // If the old status is set but unknown (e.g. draft) assume its pending for action usage. |
1940 | - if ( $old_status && ! array_key_exists( $new_status, $statuses ) ) { |
|
1940 | + if ($old_status && !array_key_exists($new_status, $statuses)) { |
|
1941 | 1941 | $old_status = $this->get_default_status(); |
1942 | 1942 | } |
1943 | 1943 | |
1944 | 1944 | // Paid - Renewal (i.e when duplicating a parent invoice ) |
1945 | - if ( $new_status == 'wpi-pending' && $old_status == 'publish' && ! $this->get_id() ) { |
|
1945 | + if ($new_status == 'wpi-pending' && $old_status == 'publish' && !$this->get_id()) { |
|
1946 | 1946 | $old_status = 'wpi-pending'; |
1947 | 1947 | } |
1948 | 1948 | |
1949 | - if ( $old_status !== $new_status ) { |
|
1949 | + if ($old_status !== $new_status) { |
|
1950 | 1950 | $this->status_transition = array( |
1951 | - 'from' => ! empty( $this->status_transition['from'] ) ? $this->status_transition['from'] : $old_status, |
|
1951 | + 'from' => !empty($this->status_transition['from']) ? $this->status_transition['from'] : $old_status, |
|
1952 | 1952 | 'to' => $new_status, |
1953 | 1953 | 'note' => $note, |
1954 | 1954 | 'manual' => (bool) $manual_update, |
1955 | 1955 | ); |
1956 | 1956 | |
1957 | - if ( $manual_update ) { |
|
1958 | - do_action( 'getpaid_' . $this->object_type .'_edit_status', $this->get_id(), $new_status ); |
|
1957 | + if ($manual_update) { |
|
1958 | + do_action('getpaid_' . $this->object_type . '_edit_status', $this->get_id(), $new_status); |
|
1959 | 1959 | } |
1960 | 1960 | |
1961 | 1961 | $this->maybe_set_date_paid(); |
@@ -1980,8 +1980,8 @@ discard block |
||
1980 | 1980 | */ |
1981 | 1981 | public function maybe_set_date_paid() { |
1982 | 1982 | |
1983 | - if ( ! $this->get_date_completed( 'edit' ) && $this->is_paid() ) { |
|
1984 | - $this->set_date_completed( current_time( 'mysql' ) ); |
|
1983 | + if (!$this->get_date_completed('edit') && $this->is_paid()) { |
|
1984 | + $this->set_date_completed(current_time('mysql')); |
|
1985 | 1985 | } |
1986 | 1986 | } |
1987 | 1987 | |
@@ -1990,11 +1990,11 @@ discard block |
||
1990 | 1990 | * |
1991 | 1991 | * @since 1.0.19 |
1992 | 1992 | */ |
1993 | - public function set_parent_id( $value ) { |
|
1994 | - if ( $value && ( $value === $this->get_id() ) ) { |
|
1993 | + public function set_parent_id($value) { |
|
1994 | + if ($value && ($value === $this->get_id())) { |
|
1995 | 1995 | return; |
1996 | 1996 | } |
1997 | - $this->set_prop( 'parent_id', absint( $value ) ); |
|
1997 | + $this->set_prop('parent_id', absint($value)); |
|
1998 | 1998 | } |
1999 | 1999 | |
2000 | 2000 | /** |
@@ -2002,8 +2002,8 @@ discard block |
||
2002 | 2002 | * |
2003 | 2003 | * @since 1.0.19 |
2004 | 2004 | */ |
2005 | - public function set_version( $value ) { |
|
2006 | - $this->set_prop( 'version', $value ); |
|
2005 | + public function set_version($value) { |
|
2006 | + $this->set_prop('version', $value); |
|
2007 | 2007 | } |
2008 | 2008 | |
2009 | 2009 | /** |
@@ -2013,15 +2013,15 @@ discard block |
||
2013 | 2013 | * @param string $value Value to set. |
2014 | 2014 | * @return bool Whether or not the date was set. |
2015 | 2015 | */ |
2016 | - public function set_date_created( $value ) { |
|
2017 | - $date = strtotime( $value ); |
|
2016 | + public function set_date_created($value) { |
|
2017 | + $date = strtotime($value); |
|
2018 | 2018 | |
2019 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
2020 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
2019 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
2020 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
2021 | 2021 | return true; |
2022 | 2022 | } |
2023 | 2023 | |
2024 | - $this->set_prop( 'date_created', '' ); |
|
2024 | + $this->set_prop('date_created', ''); |
|
2025 | 2025 | return false; |
2026 | 2026 | |
2027 | 2027 | } |
@@ -2033,15 +2033,15 @@ discard block |
||
2033 | 2033 | * @param string $value Value to set. |
2034 | 2034 | * @return bool Whether or not the date was set. |
2035 | 2035 | */ |
2036 | - public function set_due_date( $value ) { |
|
2037 | - $date = strtotime( $value ); |
|
2036 | + public function set_due_date($value) { |
|
2037 | + $date = strtotime($value); |
|
2038 | 2038 | |
2039 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
2040 | - $this->set_prop( 'due_date', date( 'Y-m-d H:i:s', $date ) ); |
|
2039 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
2040 | + $this->set_prop('due_date', date('Y-m-d H:i:s', $date)); |
|
2041 | 2041 | return true; |
2042 | 2042 | } |
2043 | 2043 | |
2044 | - $this->set_prop( 'due_date', '' ); |
|
2044 | + $this->set_prop('due_date', ''); |
|
2045 | 2045 | return false; |
2046 | 2046 | |
2047 | 2047 | } |
@@ -2052,8 +2052,8 @@ discard block |
||
2052 | 2052 | * @since 1.0.19 |
2053 | 2053 | * @param string $value New name. |
2054 | 2054 | */ |
2055 | - public function set_date_due( $value ) { |
|
2056 | - $this->set_due_date( $value ); |
|
2055 | + public function set_date_due($value) { |
|
2056 | + $this->set_due_date($value); |
|
2057 | 2057 | } |
2058 | 2058 | |
2059 | 2059 | /** |
@@ -2063,15 +2063,15 @@ discard block |
||
2063 | 2063 | * @param string $value Value to set. |
2064 | 2064 | * @return bool Whether or not the date was set. |
2065 | 2065 | */ |
2066 | - public function set_completed_date( $value ) { |
|
2067 | - $date = strtotime( $value ); |
|
2066 | + public function set_completed_date($value) { |
|
2067 | + $date = strtotime($value); |
|
2068 | 2068 | |
2069 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
2070 | - $this->set_prop( 'completed_date', date( 'Y-m-d H:i:s', $date ) ); |
|
2069 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
2070 | + $this->set_prop('completed_date', date('Y-m-d H:i:s', $date)); |
|
2071 | 2071 | return true; |
2072 | 2072 | } |
2073 | 2073 | |
2074 | - $this->set_prop( 'completed_date', '' ); |
|
2074 | + $this->set_prop('completed_date', ''); |
|
2075 | 2075 | return false; |
2076 | 2076 | |
2077 | 2077 | } |
@@ -2082,8 +2082,8 @@ discard block |
||
2082 | 2082 | * @since 1.0.19 |
2083 | 2083 | * @param string $value New name. |
2084 | 2084 | */ |
2085 | - public function set_date_completed( $value ) { |
|
2086 | - $this->set_completed_date( $value ); |
|
2085 | + public function set_date_completed($value) { |
|
2086 | + $this->set_completed_date($value); |
|
2087 | 2087 | } |
2088 | 2088 | |
2089 | 2089 | /** |
@@ -2093,15 +2093,15 @@ discard block |
||
2093 | 2093 | * @param string $value Value to set. |
2094 | 2094 | * @return bool Whether or not the date was set. |
2095 | 2095 | */ |
2096 | - public function set_date_modified( $value ) { |
|
2097 | - $date = strtotime( $value ); |
|
2096 | + public function set_date_modified($value) { |
|
2097 | + $date = strtotime($value); |
|
2098 | 2098 | |
2099 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
2100 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
2099 | + if ($date && $value !== '0000-00-00 00:00:00') { |
|
2100 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
2101 | 2101 | return true; |
2102 | 2102 | } |
2103 | 2103 | |
2104 | - $this->set_prop( 'date_modified', '' ); |
|
2104 | + $this->set_prop('date_modified', ''); |
|
2105 | 2105 | return false; |
2106 | 2106 | |
2107 | 2107 | } |
@@ -2112,9 +2112,9 @@ discard block |
||
2112 | 2112 | * @since 1.0.19 |
2113 | 2113 | * @param string $value New number. |
2114 | 2114 | */ |
2115 | - public function set_number( $value ) { |
|
2116 | - $number = sanitize_text_field( $value ); |
|
2117 | - $this->set_prop( 'number', $number ); |
|
2115 | + public function set_number($value) { |
|
2116 | + $number = sanitize_text_field($value); |
|
2117 | + $this->set_prop('number', $number); |
|
2118 | 2118 | } |
2119 | 2119 | |
2120 | 2120 | /** |
@@ -2123,9 +2123,9 @@ discard block |
||
2123 | 2123 | * @since 1.0.19 |
2124 | 2124 | * @param string $value Type. |
2125 | 2125 | */ |
2126 | - public function set_type( $value ) { |
|
2127 | - $type = sanitize_text_field( str_replace( 'wpi_', '', $value ) ); |
|
2128 | - $this->set_prop( 'type', $type ); |
|
2126 | + public function set_type($value) { |
|
2127 | + $type = sanitize_text_field(str_replace('wpi_', '', $value)); |
|
2128 | + $this->set_prop('type', $type); |
|
2129 | 2129 | } |
2130 | 2130 | |
2131 | 2131 | /** |
@@ -2134,10 +2134,10 @@ discard block |
||
2134 | 2134 | * @since 1.0.19 |
2135 | 2135 | * @param string $value Post type. |
2136 | 2136 | */ |
2137 | - public function set_post_type( $value ) { |
|
2138 | - if ( getpaid_is_invoice_post_type( $value ) ) { |
|
2139 | - $this->set_type( $value ); |
|
2140 | - $this->set_prop( 'post_type', $value ); |
|
2137 | + public function set_post_type($value) { |
|
2138 | + if (getpaid_is_invoice_post_type($value)) { |
|
2139 | + $this->set_type($value); |
|
2140 | + $this->set_prop('post_type', $value); |
|
2141 | 2141 | } |
2142 | 2142 | } |
2143 | 2143 | |
@@ -2147,9 +2147,9 @@ discard block |
||
2147 | 2147 | * @since 1.0.19 |
2148 | 2148 | * @param string $value New key. |
2149 | 2149 | */ |
2150 | - public function set_key( $value ) { |
|
2151 | - $key = sanitize_text_field( $value ); |
|
2152 | - $this->set_prop( 'key', $key ); |
|
2150 | + public function set_key($value) { |
|
2151 | + $key = sanitize_text_field($value); |
|
2152 | + $this->set_prop('key', $key); |
|
2153 | 2153 | } |
2154 | 2154 | |
2155 | 2155 | /** |
@@ -2158,9 +2158,9 @@ discard block |
||
2158 | 2158 | * @since 1.0.19 |
2159 | 2159 | * @param string $value mode. |
2160 | 2160 | */ |
2161 | - public function set_mode( $value ) { |
|
2162 | - if ( in_array( $value, array( 'live', 'test' ) ) ) { |
|
2163 | - $this->set_prop( 'mode', $value ); |
|
2161 | + public function set_mode($value) { |
|
2162 | + if (in_array($value, array('live', 'test'))) { |
|
2163 | + $this->set_prop('mode', $value); |
|
2164 | 2164 | } |
2165 | 2165 | } |
2166 | 2166 | |
@@ -2170,8 +2170,8 @@ discard block |
||
2170 | 2170 | * @since 1.0.19 |
2171 | 2171 | * @param string $value path. |
2172 | 2172 | */ |
2173 | - public function set_path( $value ) { |
|
2174 | - $this->set_prop( 'path', $value ); |
|
2173 | + public function set_path($value) { |
|
2174 | + $this->set_prop('path', $value); |
|
2175 | 2175 | } |
2176 | 2176 | |
2177 | 2177 | /** |
@@ -2180,9 +2180,9 @@ discard block |
||
2180 | 2180 | * @since 1.0.19 |
2181 | 2181 | * @param string $value New name. |
2182 | 2182 | */ |
2183 | - public function set_name( $value ) { |
|
2184 | - $name = sanitize_text_field( $value ); |
|
2185 | - $this->set_prop( 'name', $name ); |
|
2183 | + public function set_name($value) { |
|
2184 | + $name = sanitize_text_field($value); |
|
2185 | + $this->set_prop('name', $name); |
|
2186 | 2186 | } |
2187 | 2187 | |
2188 | 2188 | /** |
@@ -2191,8 +2191,8 @@ discard block |
||
2191 | 2191 | * @since 1.0.19 |
2192 | 2192 | * @param string $value New name. |
2193 | 2193 | */ |
2194 | - public function set_title( $value ) { |
|
2195 | - $this->set_name( $value ); |
|
2194 | + public function set_title($value) { |
|
2195 | + $this->set_name($value); |
|
2196 | 2196 | } |
2197 | 2197 | |
2198 | 2198 | /** |
@@ -2201,9 +2201,9 @@ discard block |
||
2201 | 2201 | * @since 1.0.19 |
2202 | 2202 | * @param string $value New description. |
2203 | 2203 | */ |
2204 | - public function set_description( $value ) { |
|
2205 | - $description = wp_kses_post( $value ); |
|
2206 | - $this->set_prop( 'description', $description ); |
|
2204 | + public function set_description($value) { |
|
2205 | + $description = wp_kses_post($value); |
|
2206 | + $this->set_prop('description', $description); |
|
2207 | 2207 | } |
2208 | 2208 | |
2209 | 2209 | /** |
@@ -2212,8 +2212,8 @@ discard block |
||
2212 | 2212 | * @since 1.0.19 |
2213 | 2213 | * @param string $value New description. |
2214 | 2214 | */ |
2215 | - public function set_excerpt( $value ) { |
|
2216 | - $this->set_description( $value ); |
|
2215 | + public function set_excerpt($value) { |
|
2216 | + $this->set_description($value); |
|
2217 | 2217 | } |
2218 | 2218 | |
2219 | 2219 | /** |
@@ -2222,8 +2222,8 @@ discard block |
||
2222 | 2222 | * @since 1.0.19 |
2223 | 2223 | * @param string $value New description. |
2224 | 2224 | */ |
2225 | - public function set_summary( $value ) { |
|
2226 | - $this->set_description( $value ); |
|
2225 | + public function set_summary($value) { |
|
2226 | + $this->set_description($value); |
|
2227 | 2227 | } |
2228 | 2228 | |
2229 | 2229 | /** |
@@ -2232,12 +2232,12 @@ discard block |
||
2232 | 2232 | * @since 1.0.19 |
2233 | 2233 | * @param int $value New author. |
2234 | 2234 | */ |
2235 | - public function set_author( $value ) { |
|
2236 | - $user = get_user_by( 'id', (int) $value ); |
|
2235 | + public function set_author($value) { |
|
2236 | + $user = get_user_by('id', (int) $value); |
|
2237 | 2237 | |
2238 | - if ( $user && $user->ID ) { |
|
2239 | - $this->set_prop( 'author', $user->ID ); |
|
2240 | - $this->set_prop( 'email', $user->user_email ); |
|
2238 | + if ($user && $user->ID) { |
|
2239 | + $this->set_prop('author', $user->ID); |
|
2240 | + $this->set_prop('email', $user->user_email); |
|
2241 | 2241 | } |
2242 | 2242 | |
2243 | 2243 | } |
@@ -2248,8 +2248,8 @@ discard block |
||
2248 | 2248 | * @since 1.0.19 |
2249 | 2249 | * @param int $value New user id. |
2250 | 2250 | */ |
2251 | - public function set_user_id( $value ) { |
|
2252 | - $this->set_author( $value ); |
|
2251 | + public function set_user_id($value) { |
|
2252 | + $this->set_author($value); |
|
2253 | 2253 | } |
2254 | 2254 | |
2255 | 2255 | /** |
@@ -2258,8 +2258,8 @@ discard block |
||
2258 | 2258 | * @since 1.0.19 |
2259 | 2259 | * @param int $value New user id. |
2260 | 2260 | */ |
2261 | - public function set_customer_id( $value ) { |
|
2262 | - $this->set_author( $value ); |
|
2261 | + public function set_customer_id($value) { |
|
2262 | + $this->set_author($value); |
|
2263 | 2263 | } |
2264 | 2264 | |
2265 | 2265 | /** |
@@ -2268,8 +2268,8 @@ discard block |
||
2268 | 2268 | * @since 1.0.19 |
2269 | 2269 | * @param string $value ip address. |
2270 | 2270 | */ |
2271 | - public function set_ip( $value ) { |
|
2272 | - $this->set_prop( 'ip', $value ); |
|
2271 | + public function set_ip($value) { |
|
2272 | + $this->set_prop('ip', $value); |
|
2273 | 2273 | } |
2274 | 2274 | |
2275 | 2275 | /** |
@@ -2278,8 +2278,8 @@ discard block |
||
2278 | 2278 | * @since 1.0.19 |
2279 | 2279 | * @param string $value ip address. |
2280 | 2280 | */ |
2281 | - public function set_user_ip( $value ) { |
|
2282 | - $this->set_ip( $value ); |
|
2281 | + public function set_user_ip($value) { |
|
2282 | + $this->set_ip($value); |
|
2283 | 2283 | } |
2284 | 2284 | |
2285 | 2285 | /** |
@@ -2288,8 +2288,8 @@ discard block |
||
2288 | 2288 | * @since 1.0.19 |
2289 | 2289 | * @param string $value first name. |
2290 | 2290 | */ |
2291 | - public function set_first_name( $value ) { |
|
2292 | - $this->set_prop( 'first_name', $value ); |
|
2291 | + public function set_first_name($value) { |
|
2292 | + $this->set_prop('first_name', $value); |
|
2293 | 2293 | } |
2294 | 2294 | |
2295 | 2295 | /** |
@@ -2298,8 +2298,8 @@ discard block |
||
2298 | 2298 | * @since 1.0.19 |
2299 | 2299 | * @param string $value first name. |
2300 | 2300 | */ |
2301 | - public function set_user_first_name( $value ) { |
|
2302 | - $this->set_first_name( $value ); |
|
2301 | + public function set_user_first_name($value) { |
|
2302 | + $this->set_first_name($value); |
|
2303 | 2303 | } |
2304 | 2304 | |
2305 | 2305 | /** |
@@ -2308,8 +2308,8 @@ discard block |
||
2308 | 2308 | * @since 1.0.19 |
2309 | 2309 | * @param string $value first name. |
2310 | 2310 | */ |
2311 | - public function set_customer_first_name( $value ) { |
|
2312 | - $this->set_first_name( $value ); |
|
2311 | + public function set_customer_first_name($value) { |
|
2312 | + $this->set_first_name($value); |
|
2313 | 2313 | } |
2314 | 2314 | |
2315 | 2315 | /** |
@@ -2318,8 +2318,8 @@ discard block |
||
2318 | 2318 | * @since 1.0.19 |
2319 | 2319 | * @param string $value last name. |
2320 | 2320 | */ |
2321 | - public function set_last_name( $value ) { |
|
2322 | - $this->set_prop( 'last_name', $value ); |
|
2321 | + public function set_last_name($value) { |
|
2322 | + $this->set_prop('last_name', $value); |
|
2323 | 2323 | } |
2324 | 2324 | |
2325 | 2325 | /** |
@@ -2328,8 +2328,8 @@ discard block |
||
2328 | 2328 | * @since 1.0.19 |
2329 | 2329 | * @param string $value last name. |
2330 | 2330 | */ |
2331 | - public function set_user_last_name( $value ) { |
|
2332 | - $this->set_last_name( $value ); |
|
2331 | + public function set_user_last_name($value) { |
|
2332 | + $this->set_last_name($value); |
|
2333 | 2333 | } |
2334 | 2334 | |
2335 | 2335 | /** |
@@ -2338,8 +2338,8 @@ discard block |
||
2338 | 2338 | * @since 1.0.19 |
2339 | 2339 | * @param string $value last name. |
2340 | 2340 | */ |
2341 | - public function set_customer_last_name( $value ) { |
|
2342 | - $this->set_last_name( $value ); |
|
2341 | + public function set_customer_last_name($value) { |
|
2342 | + $this->set_last_name($value); |
|
2343 | 2343 | } |
2344 | 2344 | |
2345 | 2345 | /** |
@@ -2348,8 +2348,8 @@ discard block |
||
2348 | 2348 | * @since 1.0.19 |
2349 | 2349 | * @param string $value phone. |
2350 | 2350 | */ |
2351 | - public function set_phone( $value ) { |
|
2352 | - $this->set_prop( 'phone', $value ); |
|
2351 | + public function set_phone($value) { |
|
2352 | + $this->set_prop('phone', $value); |
|
2353 | 2353 | } |
2354 | 2354 | |
2355 | 2355 | /** |
@@ -2358,8 +2358,8 @@ discard block |
||
2358 | 2358 | * @since 1.0.19 |
2359 | 2359 | * @param string $value phone. |
2360 | 2360 | */ |
2361 | - public function set_user_phone( $value ) { |
|
2362 | - $this->set_phone( $value ); |
|
2361 | + public function set_user_phone($value) { |
|
2362 | + $this->set_phone($value); |
|
2363 | 2363 | } |
2364 | 2364 | |
2365 | 2365 | /** |
@@ -2368,8 +2368,8 @@ discard block |
||
2368 | 2368 | * @since 1.0.19 |
2369 | 2369 | * @param string $value phone. |
2370 | 2370 | */ |
2371 | - public function set_customer_phone( $value ) { |
|
2372 | - $this->set_phone( $value ); |
|
2371 | + public function set_customer_phone($value) { |
|
2372 | + $this->set_phone($value); |
|
2373 | 2373 | } |
2374 | 2374 | |
2375 | 2375 | /** |
@@ -2378,8 +2378,8 @@ discard block |
||
2378 | 2378 | * @since 1.0.19 |
2379 | 2379 | * @param string $value phone. |
2380 | 2380 | */ |
2381 | - public function set_phone_number( $value ) { |
|
2382 | - $this->set_phone( $value ); |
|
2381 | + public function set_phone_number($value) { |
|
2382 | + $this->set_phone($value); |
|
2383 | 2383 | } |
2384 | 2384 | |
2385 | 2385 | /** |
@@ -2388,8 +2388,8 @@ discard block |
||
2388 | 2388 | * @since 1.0.19 |
2389 | 2389 | * @param string $value email address. |
2390 | 2390 | */ |
2391 | - public function set_email( $value ) { |
|
2392 | - $this->set_prop( 'email', $value ); |
|
2391 | + public function set_email($value) { |
|
2392 | + $this->set_prop('email', $value); |
|
2393 | 2393 | } |
2394 | 2394 | |
2395 | 2395 | /** |
@@ -2398,8 +2398,8 @@ discard block |
||
2398 | 2398 | * @since 1.0.19 |
2399 | 2399 | * @param string $value email address. |
2400 | 2400 | */ |
2401 | - public function set_user_email( $value ) { |
|
2402 | - $this->set_email( $value ); |
|
2401 | + public function set_user_email($value) { |
|
2402 | + $this->set_email($value); |
|
2403 | 2403 | } |
2404 | 2404 | |
2405 | 2405 | /** |
@@ -2408,8 +2408,8 @@ discard block |
||
2408 | 2408 | * @since 1.0.19 |
2409 | 2409 | * @param string $value email address. |
2410 | 2410 | */ |
2411 | - public function set_email_address( $value ) { |
|
2412 | - $this->set_email( $value ); |
|
2411 | + public function set_email_address($value) { |
|
2412 | + $this->set_email($value); |
|
2413 | 2413 | } |
2414 | 2414 | |
2415 | 2415 | /** |
@@ -2418,8 +2418,8 @@ discard block |
||
2418 | 2418 | * @since 1.0.19 |
2419 | 2419 | * @param string $value email address. |
2420 | 2420 | */ |
2421 | - public function set_customer_email( $value ) { |
|
2422 | - $this->set_email( $value ); |
|
2421 | + public function set_customer_email($value) { |
|
2422 | + $this->set_email($value); |
|
2423 | 2423 | } |
2424 | 2424 | |
2425 | 2425 | /** |
@@ -2428,8 +2428,8 @@ discard block |
||
2428 | 2428 | * @since 1.0.19 |
2429 | 2429 | * @param string $value country. |
2430 | 2430 | */ |
2431 | - public function set_country( $value ) { |
|
2432 | - $this->set_prop( 'country', $value ); |
|
2431 | + public function set_country($value) { |
|
2432 | + $this->set_prop('country', $value); |
|
2433 | 2433 | } |
2434 | 2434 | |
2435 | 2435 | /** |
@@ -2438,8 +2438,8 @@ discard block |
||
2438 | 2438 | * @since 1.0.19 |
2439 | 2439 | * @param string $value country. |
2440 | 2440 | */ |
2441 | - public function set_user_country( $value ) { |
|
2442 | - $this->set_country( $value ); |
|
2441 | + public function set_user_country($value) { |
|
2442 | + $this->set_country($value); |
|
2443 | 2443 | } |
2444 | 2444 | |
2445 | 2445 | /** |
@@ -2448,8 +2448,8 @@ discard block |
||
2448 | 2448 | * @since 1.0.19 |
2449 | 2449 | * @param string $value country. |
2450 | 2450 | */ |
2451 | - public function set_customer_country( $value ) { |
|
2452 | - $this->set_country( $value ); |
|
2451 | + public function set_customer_country($value) { |
|
2452 | + $this->set_country($value); |
|
2453 | 2453 | } |
2454 | 2454 | |
2455 | 2455 | /** |
@@ -2458,8 +2458,8 @@ discard block |
||
2458 | 2458 | * @since 1.0.19 |
2459 | 2459 | * @param string $value state. |
2460 | 2460 | */ |
2461 | - public function set_state( $value ) { |
|
2462 | - $this->set_prop( 'state', $value ); |
|
2461 | + public function set_state($value) { |
|
2462 | + $this->set_prop('state', $value); |
|
2463 | 2463 | } |
2464 | 2464 | |
2465 | 2465 | /** |
@@ -2468,8 +2468,8 @@ discard block |
||
2468 | 2468 | * @since 1.0.19 |
2469 | 2469 | * @param string $value state. |
2470 | 2470 | */ |
2471 | - public function set_user_state( $value ) { |
|
2472 | - $this->set_state( $value ); |
|
2471 | + public function set_user_state($value) { |
|
2472 | + $this->set_state($value); |
|
2473 | 2473 | } |
2474 | 2474 | |
2475 | 2475 | /** |
@@ -2478,8 +2478,8 @@ discard block |
||
2478 | 2478 | * @since 1.0.19 |
2479 | 2479 | * @param string $value state. |
2480 | 2480 | */ |
2481 | - public function set_customer_state( $value ) { |
|
2482 | - $this->set_state( $value ); |
|
2481 | + public function set_customer_state($value) { |
|
2482 | + $this->set_state($value); |
|
2483 | 2483 | } |
2484 | 2484 | |
2485 | 2485 | /** |
@@ -2488,8 +2488,8 @@ discard block |
||
2488 | 2488 | * @since 1.0.19 |
2489 | 2489 | * @param string $value city. |
2490 | 2490 | */ |
2491 | - public function set_city( $value ) { |
|
2492 | - $this->set_prop( 'city', $value ); |
|
2491 | + public function set_city($value) { |
|
2492 | + $this->set_prop('city', $value); |
|
2493 | 2493 | } |
2494 | 2494 | |
2495 | 2495 | /** |
@@ -2498,8 +2498,8 @@ discard block |
||
2498 | 2498 | * @since 1.0.19 |
2499 | 2499 | * @param string $value city. |
2500 | 2500 | */ |
2501 | - public function set_user_city( $value ) { |
|
2502 | - $this->set_city( $value ); |
|
2501 | + public function set_user_city($value) { |
|
2502 | + $this->set_city($value); |
|
2503 | 2503 | } |
2504 | 2504 | |
2505 | 2505 | /** |
@@ -2508,8 +2508,8 @@ discard block |
||
2508 | 2508 | * @since 1.0.19 |
2509 | 2509 | * @param string $value city. |
2510 | 2510 | */ |
2511 | - public function set_customer_city( $value ) { |
|
2512 | - $this->set_city( $value ); |
|
2511 | + public function set_customer_city($value) { |
|
2512 | + $this->set_city($value); |
|
2513 | 2513 | } |
2514 | 2514 | |
2515 | 2515 | /** |
@@ -2518,8 +2518,8 @@ discard block |
||
2518 | 2518 | * @since 1.0.19 |
2519 | 2519 | * @param string $value zip. |
2520 | 2520 | */ |
2521 | - public function set_zip( $value ) { |
|
2522 | - $this->set_prop( 'zip', $value ); |
|
2521 | + public function set_zip($value) { |
|
2522 | + $this->set_prop('zip', $value); |
|
2523 | 2523 | } |
2524 | 2524 | |
2525 | 2525 | /** |
@@ -2528,8 +2528,8 @@ discard block |
||
2528 | 2528 | * @since 1.0.19 |
2529 | 2529 | * @param string $value zip. |
2530 | 2530 | */ |
2531 | - public function set_user_zip( $value ) { |
|
2532 | - $this->set_zip( $value ); |
|
2531 | + public function set_user_zip($value) { |
|
2532 | + $this->set_zip($value); |
|
2533 | 2533 | } |
2534 | 2534 | |
2535 | 2535 | /** |
@@ -2538,8 +2538,8 @@ discard block |
||
2538 | 2538 | * @since 1.0.19 |
2539 | 2539 | * @param string $value zip. |
2540 | 2540 | */ |
2541 | - public function set_customer_zip( $value ) { |
|
2542 | - $this->set_zip( $value ); |
|
2541 | + public function set_customer_zip($value) { |
|
2542 | + $this->set_zip($value); |
|
2543 | 2543 | } |
2544 | 2544 | |
2545 | 2545 | /** |
@@ -2548,8 +2548,8 @@ discard block |
||
2548 | 2548 | * @since 1.0.19 |
2549 | 2549 | * @param string $value company. |
2550 | 2550 | */ |
2551 | - public function set_company( $value ) { |
|
2552 | - $this->set_prop( 'company', $value ); |
|
2551 | + public function set_company($value) { |
|
2552 | + $this->set_prop('company', $value); |
|
2553 | 2553 | } |
2554 | 2554 | |
2555 | 2555 | /** |
@@ -2558,8 +2558,8 @@ discard block |
||
2558 | 2558 | * @since 1.0.19 |
2559 | 2559 | * @param string $value company. |
2560 | 2560 | */ |
2561 | - public function set_user_company( $value ) { |
|
2562 | - $this->set_company( $value ); |
|
2561 | + public function set_user_company($value) { |
|
2562 | + $this->set_company($value); |
|
2563 | 2563 | } |
2564 | 2564 | |
2565 | 2565 | /** |
@@ -2568,8 +2568,8 @@ discard block |
||
2568 | 2568 | * @since 1.0.19 |
2569 | 2569 | * @param string $value company. |
2570 | 2570 | */ |
2571 | - public function set_customer_company( $value ) { |
|
2572 | - $this->set_company( $value ); |
|
2571 | + public function set_customer_company($value) { |
|
2572 | + $this->set_company($value); |
|
2573 | 2573 | } |
2574 | 2574 | |
2575 | 2575 | /** |
@@ -2578,8 +2578,8 @@ discard block |
||
2578 | 2578 | * @since 1.0.19 |
2579 | 2579 | * @param string $value var number. |
2580 | 2580 | */ |
2581 | - public function set_vat_number( $value ) { |
|
2582 | - $this->set_prop( 'vat_number', $value ); |
|
2581 | + public function set_vat_number($value) { |
|
2582 | + $this->set_prop('vat_number', $value); |
|
2583 | 2583 | } |
2584 | 2584 | |
2585 | 2585 | /** |
@@ -2588,8 +2588,8 @@ discard block |
||
2588 | 2588 | * @since 1.0.19 |
2589 | 2589 | * @param string $value var number. |
2590 | 2590 | */ |
2591 | - public function set_user_vat_number( $value ) { |
|
2592 | - $this->set_vat_number( $value ); |
|
2591 | + public function set_user_vat_number($value) { |
|
2592 | + $this->set_vat_number($value); |
|
2593 | 2593 | } |
2594 | 2594 | |
2595 | 2595 | /** |
@@ -2598,8 +2598,8 @@ discard block |
||
2598 | 2598 | * @since 1.0.19 |
2599 | 2599 | * @param string $value var number. |
2600 | 2600 | */ |
2601 | - public function set_customer_vat_number( $value ) { |
|
2602 | - $this->set_vat_number( $value ); |
|
2601 | + public function set_customer_vat_number($value) { |
|
2602 | + $this->set_vat_number($value); |
|
2603 | 2603 | } |
2604 | 2604 | |
2605 | 2605 | /** |
@@ -2608,8 +2608,8 @@ discard block |
||
2608 | 2608 | * @since 1.0.19 |
2609 | 2609 | * @param string $value var rate. |
2610 | 2610 | */ |
2611 | - public function set_vat_rate( $value ) { |
|
2612 | - $this->set_prop( 'vat_rate', $value ); |
|
2611 | + public function set_vat_rate($value) { |
|
2612 | + $this->set_prop('vat_rate', $value); |
|
2613 | 2613 | } |
2614 | 2614 | |
2615 | 2615 | /** |
@@ -2618,8 +2618,8 @@ discard block |
||
2618 | 2618 | * @since 1.0.19 |
2619 | 2619 | * @param string $value var number. |
2620 | 2620 | */ |
2621 | - public function set_user_vat_rate( $value ) { |
|
2622 | - $this->set_vat_rate( $value ); |
|
2621 | + public function set_user_vat_rate($value) { |
|
2622 | + $this->set_vat_rate($value); |
|
2623 | 2623 | } |
2624 | 2624 | |
2625 | 2625 | /** |
@@ -2628,8 +2628,8 @@ discard block |
||
2628 | 2628 | * @since 1.0.19 |
2629 | 2629 | * @param string $value var number. |
2630 | 2630 | */ |
2631 | - public function set_customer_vat_rate( $value ) { |
|
2632 | - $this->set_vat_rate( $value ); |
|
2631 | + public function set_customer_vat_rate($value) { |
|
2632 | + $this->set_vat_rate($value); |
|
2633 | 2633 | } |
2634 | 2634 | |
2635 | 2635 | /** |
@@ -2638,8 +2638,8 @@ discard block |
||
2638 | 2638 | * @since 1.0.19 |
2639 | 2639 | * @param string $value address. |
2640 | 2640 | */ |
2641 | - public function set_address( $value ) { |
|
2642 | - $this->set_prop( 'address', $value ); |
|
2641 | + public function set_address($value) { |
|
2642 | + $this->set_prop('address', $value); |
|
2643 | 2643 | } |
2644 | 2644 | |
2645 | 2645 | /** |
@@ -2648,8 +2648,8 @@ discard block |
||
2648 | 2648 | * @since 1.0.19 |
2649 | 2649 | * @param string $value address. |
2650 | 2650 | */ |
2651 | - public function set_user_address( $value ) { |
|
2652 | - $this->set_address( $value ); |
|
2651 | + public function set_user_address($value) { |
|
2652 | + $this->set_address($value); |
|
2653 | 2653 | } |
2654 | 2654 | |
2655 | 2655 | /** |
@@ -2658,8 +2658,8 @@ discard block |
||
2658 | 2658 | * @since 1.0.19 |
2659 | 2659 | * @param string $value address. |
2660 | 2660 | */ |
2661 | - public function set_customer_address( $value ) { |
|
2662 | - $this->set_address( $value ); |
|
2661 | + public function set_customer_address($value) { |
|
2662 | + $this->set_address($value); |
|
2663 | 2663 | } |
2664 | 2664 | |
2665 | 2665 | /** |
@@ -2668,8 +2668,8 @@ discard block |
||
2668 | 2668 | * @since 1.0.19 |
2669 | 2669 | * @param int|bool $value confirmed. |
2670 | 2670 | */ |
2671 | - public function set_is_viewed( $value ) { |
|
2672 | - $this->set_prop( 'is_viewed', $value ); |
|
2671 | + public function set_is_viewed($value) { |
|
2672 | + $this->set_prop('is_viewed', $value); |
|
2673 | 2673 | } |
2674 | 2674 | |
2675 | 2675 | /** |
@@ -2678,8 +2678,8 @@ discard block |
||
2678 | 2678 | * @since 1.0.19 |
2679 | 2679 | * @param string $value email recipients. |
2680 | 2680 | */ |
2681 | - public function set_email_cc( $value ) { |
|
2682 | - $this->set_prop( 'email_cc', $value ); |
|
2681 | + public function set_email_cc($value) { |
|
2682 | + $this->set_prop('email_cc', $value); |
|
2683 | 2683 | } |
2684 | 2684 | |
2685 | 2685 | /** |
@@ -2688,9 +2688,9 @@ discard block |
||
2688 | 2688 | * @since 1.0.19 |
2689 | 2689 | * @param string $value template. |
2690 | 2690 | */ |
2691 | - public function set_template( $value ) { |
|
2692 | - if ( in_array( $value, array( 'quantity', 'hours', 'amount' ) ) ) { |
|
2693 | - $this->set_prop( 'template', $value ); |
|
2691 | + public function set_template($value) { |
|
2692 | + if (in_array($value, array('quantity', 'hours', 'amount'))) { |
|
2693 | + $this->set_prop('template', $value); |
|
2694 | 2694 | } |
2695 | 2695 | } |
2696 | 2696 | |
@@ -2701,8 +2701,8 @@ discard block |
||
2701 | 2701 | * @param string $value source. |
2702 | 2702 | * @deprecated |
2703 | 2703 | */ |
2704 | - public function created_via( $value ) { |
|
2705 | - $this->set_created_via( sanitize_text_field( $value ) ); |
|
2704 | + public function created_via($value) { |
|
2705 | + $this->set_created_via(sanitize_text_field($value)); |
|
2706 | 2706 | } |
2707 | 2707 | |
2708 | 2708 | /** |
@@ -2711,8 +2711,8 @@ discard block |
||
2711 | 2711 | * @since 1.0.19 |
2712 | 2712 | * @param string $value source. |
2713 | 2713 | */ |
2714 | - public function set_created_via( $value ) { |
|
2715 | - $this->set_prop( 'created_via', sanitize_text_field( $value ) ); |
|
2714 | + public function set_created_via($value) { |
|
2715 | + $this->set_prop('created_via', sanitize_text_field($value)); |
|
2716 | 2716 | } |
2717 | 2717 | |
2718 | 2718 | /** |
@@ -2721,8 +2721,8 @@ discard block |
||
2721 | 2721 | * @since 1.0.19 |
2722 | 2722 | * @param int|bool $value confirmed. |
2723 | 2723 | */ |
2724 | - public function set_address_confirmed( $value ) { |
|
2725 | - $this->set_prop( 'address_confirmed', $value ); |
|
2724 | + public function set_address_confirmed($value) { |
|
2725 | + $this->set_prop('address_confirmed', $value); |
|
2726 | 2726 | } |
2727 | 2727 | |
2728 | 2728 | /** |
@@ -2731,8 +2731,8 @@ discard block |
||
2731 | 2731 | * @since 1.0.19 |
2732 | 2732 | * @param int|bool $value confirmed. |
2733 | 2733 | */ |
2734 | - public function set_user_address_confirmed( $value ) { |
|
2735 | - $this->set_address_confirmed( $value ); |
|
2734 | + public function set_user_address_confirmed($value) { |
|
2735 | + $this->set_address_confirmed($value); |
|
2736 | 2736 | } |
2737 | 2737 | |
2738 | 2738 | /** |
@@ -2741,8 +2741,8 @@ discard block |
||
2741 | 2741 | * @since 1.0.19 |
2742 | 2742 | * @param int|bool $value confirmed. |
2743 | 2743 | */ |
2744 | - public function set_customer_address_confirmed( $value ) { |
|
2745 | - $this->set_address_confirmed( $value ); |
|
2744 | + public function set_customer_address_confirmed($value) { |
|
2745 | + $this->set_address_confirmed($value); |
|
2746 | 2746 | } |
2747 | 2747 | |
2748 | 2748 | /** |
@@ -2751,8 +2751,8 @@ discard block |
||
2751 | 2751 | * @since 1.0.19 |
2752 | 2752 | * @param float $value sub total. |
2753 | 2753 | */ |
2754 | - public function set_subtotal( $value ) { |
|
2755 | - $this->set_prop( 'subtotal', max( 0, $value ) ); |
|
2754 | + public function set_subtotal($value) { |
|
2755 | + $this->set_prop('subtotal', max(0, $value)); |
|
2756 | 2756 | } |
2757 | 2757 | |
2758 | 2758 | /** |
@@ -2761,8 +2761,8 @@ discard block |
||
2761 | 2761 | * @since 1.0.19 |
2762 | 2762 | * @param float $value sub total. |
2763 | 2763 | */ |
2764 | - public function set_total( $value ) { |
|
2765 | - $this->set_prop( 'total', max( 0, $value ) ); |
|
2764 | + public function set_total($value) { |
|
2765 | + $this->set_prop('total', max(0, $value)); |
|
2766 | 2766 | } |
2767 | 2767 | |
2768 | 2768 | /** |
@@ -2771,8 +2771,8 @@ discard block |
||
2771 | 2771 | * @since 1.0.19 |
2772 | 2772 | * @param float $value discount total. |
2773 | 2773 | */ |
2774 | - public function set_total_discount( $value ) { |
|
2775 | - $this->set_prop( 'total_discount', max( 0, $value ) ); |
|
2774 | + public function set_total_discount($value) { |
|
2775 | + $this->set_prop('total_discount', max(0, $value)); |
|
2776 | 2776 | } |
2777 | 2777 | |
2778 | 2778 | /** |
@@ -2781,8 +2781,8 @@ discard block |
||
2781 | 2781 | * @since 1.0.19 |
2782 | 2782 | * @param float $value discount total. |
2783 | 2783 | */ |
2784 | - public function set_discount( $value ) { |
|
2785 | - $this->set_total_discount( $value ); |
|
2784 | + public function set_discount($value) { |
|
2785 | + $this->set_total_discount($value); |
|
2786 | 2786 | } |
2787 | 2787 | |
2788 | 2788 | /** |
@@ -2791,8 +2791,8 @@ discard block |
||
2791 | 2791 | * @since 1.0.19 |
2792 | 2792 | * @param float $value tax total. |
2793 | 2793 | */ |
2794 | - public function set_total_tax( $value ) { |
|
2795 | - $this->set_prop( 'total_tax', max( 0, $value ) ); |
|
2794 | + public function set_total_tax($value) { |
|
2795 | + $this->set_prop('total_tax', max(0, $value)); |
|
2796 | 2796 | } |
2797 | 2797 | |
2798 | 2798 | /** |
@@ -2801,8 +2801,8 @@ discard block |
||
2801 | 2801 | * @since 1.0.19 |
2802 | 2802 | * @param float $value tax total. |
2803 | 2803 | */ |
2804 | - public function set_tax_total( $value ) { |
|
2805 | - $this->set_total_tax( $value ); |
|
2804 | + public function set_tax_total($value) { |
|
2805 | + $this->set_total_tax($value); |
|
2806 | 2806 | } |
2807 | 2807 | |
2808 | 2808 | /** |
@@ -2811,8 +2811,8 @@ discard block |
||
2811 | 2811 | * @since 1.0.19 |
2812 | 2812 | * @param float $value fees total. |
2813 | 2813 | */ |
2814 | - public function set_total_fees( $value ) { |
|
2815 | - $this->set_prop( 'total_fees', max( 0, $value ) ); |
|
2814 | + public function set_total_fees($value) { |
|
2815 | + $this->set_prop('total_fees', max(0, $value)); |
|
2816 | 2816 | } |
2817 | 2817 | |
2818 | 2818 | /** |
@@ -2821,8 +2821,8 @@ discard block |
||
2821 | 2821 | * @since 1.0.19 |
2822 | 2822 | * @param float $value fees total. |
2823 | 2823 | */ |
2824 | - public function set_fees_total( $value ) { |
|
2825 | - $this->set_total_fees( $value ); |
|
2824 | + public function set_fees_total($value) { |
|
2825 | + $this->set_total_fees($value); |
|
2826 | 2826 | } |
2827 | 2827 | |
2828 | 2828 | /** |
@@ -2831,13 +2831,13 @@ discard block |
||
2831 | 2831 | * @since 1.0.19 |
2832 | 2832 | * @param array $value fees. |
2833 | 2833 | */ |
2834 | - public function set_fees( $value ) { |
|
2834 | + public function set_fees($value) { |
|
2835 | 2835 | |
2836 | - if ( ! is_array( $value ) ) { |
|
2836 | + if (!is_array($value)) { |
|
2837 | 2837 | $value = array(); |
2838 | 2838 | } |
2839 | 2839 | |
2840 | - $this->set_prop( 'fees', $value ); |
|
2840 | + $this->set_prop('fees', $value); |
|
2841 | 2841 | |
2842 | 2842 | } |
2843 | 2843 | |
@@ -2847,13 +2847,13 @@ discard block |
||
2847 | 2847 | * @since 1.0.19 |
2848 | 2848 | * @param array $value taxes. |
2849 | 2849 | */ |
2850 | - public function set_taxes( $value ) { |
|
2850 | + public function set_taxes($value) { |
|
2851 | 2851 | |
2852 | - if ( ! is_array( $value ) ) { |
|
2852 | + if (!is_array($value)) { |
|
2853 | 2853 | $value = array(); |
2854 | 2854 | } |
2855 | 2855 | |
2856 | - $this->set_prop( 'taxes', $value ); |
|
2856 | + $this->set_prop('taxes', $value); |
|
2857 | 2857 | |
2858 | 2858 | } |
2859 | 2859 | |
@@ -2863,13 +2863,13 @@ discard block |
||
2863 | 2863 | * @since 1.0.19 |
2864 | 2864 | * @param array $value discounts. |
2865 | 2865 | */ |
2866 | - public function set_discounts( $value ) { |
|
2866 | + public function set_discounts($value) { |
|
2867 | 2867 | |
2868 | - if ( ! is_array( $value ) ) { |
|
2868 | + if (!is_array($value)) { |
|
2869 | 2869 | $value = array(); |
2870 | 2870 | } |
2871 | 2871 | |
2872 | - $this->set_prop( 'discounts', $value ); |
|
2872 | + $this->set_prop('discounts', $value); |
|
2873 | 2873 | } |
2874 | 2874 | |
2875 | 2875 | /** |
@@ -2878,19 +2878,19 @@ discard block |
||
2878 | 2878 | * @since 1.0.19 |
2879 | 2879 | * @param GetPaid_Form_Item[] $value items. |
2880 | 2880 | */ |
2881 | - public function set_items( $value ) { |
|
2881 | + public function set_items($value) { |
|
2882 | 2882 | |
2883 | 2883 | // Remove existing items. |
2884 | - $this->set_prop( 'items', array() ); |
|
2884 | + $this->set_prop('items', array()); |
|
2885 | 2885 | $this->recurring_item = null; |
2886 | 2886 | |
2887 | 2887 | // Ensure that we have an array. |
2888 | - if ( ! is_array( $value ) ) { |
|
2888 | + if (!is_array($value)) { |
|
2889 | 2889 | return; |
2890 | 2890 | } |
2891 | 2891 | |
2892 | - foreach ( $value as $item ) { |
|
2893 | - $this->add_item( $item ); |
|
2892 | + foreach ($value as $item) { |
|
2893 | + $this->add_item($item); |
|
2894 | 2894 | } |
2895 | 2895 | |
2896 | 2896 | } |
@@ -2901,8 +2901,8 @@ discard block |
||
2901 | 2901 | * @since 1.0.19 |
2902 | 2902 | * @param int $value payment form. |
2903 | 2903 | */ |
2904 | - public function set_payment_form( $value ) { |
|
2905 | - $this->set_prop( 'payment_form', $value ); |
|
2904 | + public function set_payment_form($value) { |
|
2905 | + $this->set_prop('payment_form', $value); |
|
2906 | 2906 | } |
2907 | 2907 | |
2908 | 2908 | /** |
@@ -2911,8 +2911,8 @@ discard block |
||
2911 | 2911 | * @since 1.0.19 |
2912 | 2912 | * @param string $value submission id. |
2913 | 2913 | */ |
2914 | - public function set_submission_id( $value ) { |
|
2915 | - $this->set_prop( 'submission_id', $value ); |
|
2914 | + public function set_submission_id($value) { |
|
2915 | + $this->set_prop('submission_id', $value); |
|
2916 | 2916 | } |
2917 | 2917 | |
2918 | 2918 | /** |
@@ -2921,8 +2921,8 @@ discard block |
||
2921 | 2921 | * @since 1.0.19 |
2922 | 2922 | * @param string $value discount code. |
2923 | 2923 | */ |
2924 | - public function set_discount_code( $value ) { |
|
2925 | - $this->set_prop( 'discount_code', sanitize_text_field( $value ) ); |
|
2924 | + public function set_discount_code($value) { |
|
2925 | + $this->set_prop('discount_code', sanitize_text_field($value)); |
|
2926 | 2926 | } |
2927 | 2927 | |
2928 | 2928 | /** |
@@ -2931,8 +2931,8 @@ discard block |
||
2931 | 2931 | * @since 1.0.19 |
2932 | 2932 | * @param string $value gateway. |
2933 | 2933 | */ |
2934 | - public function set_gateway( $value ) { |
|
2935 | - $this->set_prop( 'gateway', $value ); |
|
2934 | + public function set_gateway($value) { |
|
2935 | + $this->set_prop('gateway', $value); |
|
2936 | 2936 | } |
2937 | 2937 | |
2938 | 2938 | /** |
@@ -2941,9 +2941,9 @@ discard block |
||
2941 | 2941 | * @since 1.0.19 |
2942 | 2942 | * @param string $value transaction id. |
2943 | 2943 | */ |
2944 | - public function set_transaction_id( $value ) { |
|
2945 | - if ( ! empty( $value ) ) { |
|
2946 | - $this->set_prop( 'transaction_id', $value ); |
|
2944 | + public function set_transaction_id($value) { |
|
2945 | + if (!empty($value)) { |
|
2946 | + $this->set_prop('transaction_id', $value); |
|
2947 | 2947 | } |
2948 | 2948 | } |
2949 | 2949 | |
@@ -2953,8 +2953,8 @@ discard block |
||
2953 | 2953 | * @since 1.0.19 |
2954 | 2954 | * @param string $value currency id. |
2955 | 2955 | */ |
2956 | - public function set_currency( $value ) { |
|
2957 | - $this->set_prop( 'currency', $value ); |
|
2956 | + public function set_currency($value) { |
|
2957 | + $this->set_prop('currency', $value); |
|
2958 | 2958 | } |
2959 | 2959 | |
2960 | 2960 | /** |
@@ -2963,8 +2963,8 @@ discard block |
||
2963 | 2963 | * @since 1.0.19 |
2964 | 2964 | * @param bool $value value. |
2965 | 2965 | */ |
2966 | - public function set_disable_taxes( $value ) { |
|
2967 | - $this->set_prop( 'disable_taxes', (bool) $value ); |
|
2966 | + public function set_disable_taxes($value) { |
|
2967 | + $this->set_prop('disable_taxes', (bool) $value); |
|
2968 | 2968 | } |
2969 | 2969 | |
2970 | 2970 | /** |
@@ -2973,8 +2973,8 @@ discard block |
||
2973 | 2973 | * @since 1.0.19 |
2974 | 2974 | * @param string $value subscription id. |
2975 | 2975 | */ |
2976 | - public function set_subscription_id( $value ) { |
|
2977 | - $this->set_prop( 'subscription_id', $value ); |
|
2976 | + public function set_subscription_id($value) { |
|
2977 | + $this->set_prop('subscription_id', $value); |
|
2978 | 2978 | } |
2979 | 2979 | |
2980 | 2980 | /** |
@@ -2983,8 +2983,8 @@ discard block |
||
2983 | 2983 | * @since 1.0.19 |
2984 | 2984 | * @param string $value subscription id. |
2985 | 2985 | */ |
2986 | - public function set_remote_subscription_id( $value ) { |
|
2987 | - $this->set_prop( 'remote_subscription_id', $value ); |
|
2986 | + public function set_remote_subscription_id($value) { |
|
2987 | + $this->set_prop('remote_subscription_id', $value); |
|
2988 | 2988 | } |
2989 | 2989 | |
2990 | 2990 | /* |
@@ -3001,28 +3001,28 @@ discard block |
||
3001 | 3001 | */ |
3002 | 3002 | public function is_parent() { |
3003 | 3003 | $parent = $this->get_parent_id(); |
3004 | - return apply_filters( 'wpinv_invoice_is_parent', empty( $parent ), $this ); |
|
3004 | + return apply_filters('wpinv_invoice_is_parent', empty($parent), $this); |
|
3005 | 3005 | } |
3006 | 3006 | |
3007 | 3007 | /** |
3008 | 3008 | * Checks if this is a renewal invoice. |
3009 | 3009 | */ |
3010 | 3010 | public function is_renewal() { |
3011 | - return ! $this->is_parent(); |
|
3011 | + return !$this->is_parent(); |
|
3012 | 3012 | } |
3013 | 3013 | |
3014 | 3014 | /** |
3015 | 3015 | * Checks if this is a recurring invoice. |
3016 | 3016 | */ |
3017 | 3017 | public function is_recurring() { |
3018 | - return $this->is_renewal() || ! empty( $this->recurring_item ); |
|
3018 | + return $this->is_renewal() || !empty($this->recurring_item); |
|
3019 | 3019 | } |
3020 | 3020 | |
3021 | 3021 | /** |
3022 | 3022 | * Checks if this is a taxable invoice. |
3023 | 3023 | */ |
3024 | 3024 | public function is_taxable() { |
3025 | - return ! $this->get_disable_taxes(); |
|
3025 | + return !$this->get_disable_taxes(); |
|
3026 | 3026 | } |
3027 | 3027 | |
3028 | 3028 | /** |
@@ -3036,45 +3036,45 @@ discard block |
||
3036 | 3036 | * Checks to see if the invoice requires payment. |
3037 | 3037 | */ |
3038 | 3038 | public function is_free() { |
3039 | - $is_free = ( (float) wpinv_round_amount( $this->get_initial_total() ) == 0 ); |
|
3039 | + $is_free = ((float) wpinv_round_amount($this->get_initial_total()) == 0); |
|
3040 | 3040 | |
3041 | - if ( $this->is_recurring() && $this->get_recurring_total() > 0 ) { |
|
3041 | + if ($this->is_recurring() && $this->get_recurring_total() > 0) { |
|
3042 | 3042 | $is_free = false; |
3043 | 3043 | } |
3044 | 3044 | |
3045 | - return apply_filters( 'wpinv_invoice_is_free', $is_free, $this ); |
|
3045 | + return apply_filters('wpinv_invoice_is_free', $is_free, $this); |
|
3046 | 3046 | } |
3047 | 3047 | |
3048 | 3048 | /** |
3049 | 3049 | * Checks if the invoice is paid. |
3050 | 3050 | */ |
3051 | 3051 | public function is_paid() { |
3052 | - $is_paid = $this->has_status( array( 'publish', 'wpi-processing', 'wpi-renewal' ) ); |
|
3053 | - return apply_filters( 'wpinv_invoice_is_paid', $is_paid, $this ); |
|
3052 | + $is_paid = $this->has_status(array('publish', 'wpi-processing', 'wpi-renewal')); |
|
3053 | + return apply_filters('wpinv_invoice_is_paid', $is_paid, $this); |
|
3054 | 3054 | } |
3055 | 3055 | |
3056 | 3056 | /** |
3057 | 3057 | * Checks if the invoice needs payment. |
3058 | 3058 | */ |
3059 | 3059 | public function needs_payment() { |
3060 | - $needs_payment = ! $this->is_paid() && ! $this->is_refunded() && ! $this->is_free(); |
|
3061 | - return apply_filters( 'wpinv_needs_payment', $needs_payment, $this ); |
|
3060 | + $needs_payment = !$this->is_paid() && !$this->is_refunded() && !$this->is_free(); |
|
3061 | + return apply_filters('wpinv_needs_payment', $needs_payment, $this); |
|
3062 | 3062 | } |
3063 | 3063 | |
3064 | 3064 | /** |
3065 | 3065 | * Checks if the invoice is refunded. |
3066 | 3066 | */ |
3067 | 3067 | public function is_refunded() { |
3068 | - $is_refunded = $this->has_status( 'wpi-refunded' ); |
|
3069 | - return apply_filters( 'wpinv_invoice_is_refunded', $is_refunded, $this ); |
|
3068 | + $is_refunded = $this->has_status('wpi-refunded'); |
|
3069 | + return apply_filters('wpinv_invoice_is_refunded', $is_refunded, $this); |
|
3070 | 3070 | } |
3071 | 3071 | |
3072 | 3072 | /** |
3073 | 3073 | * Checks if the invoice is held. |
3074 | 3074 | */ |
3075 | 3075 | public function is_held() { |
3076 | - $is_held = $this->has_status( 'wpi-onhold' ); |
|
3077 | - return apply_filters( 'wpinv_invoice_is_held', $is_held, $this ); |
|
3076 | + $is_held = $this->has_status('wpi-onhold'); |
|
3077 | + return apply_filters('wpinv_invoice_is_held', $is_held, $this); |
|
3078 | 3078 | } |
3079 | 3079 | |
3080 | 3080 | /** |
@@ -3082,30 +3082,30 @@ discard block |
||
3082 | 3082 | */ |
3083 | 3083 | public function is_due() { |
3084 | 3084 | $due_date = $this->get_due_date(); |
3085 | - return empty( $due_date ) ? false : current_time( 'timestamp' ) > strtotime( $due_date ); |
|
3085 | + return empty($due_date) ? false : current_time('timestamp') > strtotime($due_date); |
|
3086 | 3086 | } |
3087 | 3087 | |
3088 | 3088 | /** |
3089 | 3089 | * Checks if the invoice is draft. |
3090 | 3090 | */ |
3091 | 3091 | public function is_draft() { |
3092 | - return $this->has_status( 'draft, auto-draft' ); |
|
3092 | + return $this->has_status('draft, auto-draft'); |
|
3093 | 3093 | } |
3094 | 3094 | |
3095 | 3095 | /** |
3096 | 3096 | * Checks if the invoice has a given status. |
3097 | 3097 | */ |
3098 | - public function has_status( $status ) { |
|
3099 | - $status = wpinv_parse_list( $status ); |
|
3100 | - return apply_filters( 'wpinv_has_status', in_array( $this->get_status(), $status ), $status ); |
|
3098 | + public function has_status($status) { |
|
3099 | + $status = wpinv_parse_list($status); |
|
3100 | + return apply_filters('wpinv_has_status', in_array($this->get_status(), $status), $status); |
|
3101 | 3101 | } |
3102 | 3102 | |
3103 | 3103 | /** |
3104 | 3104 | * Checks if the invoice is of a given type. |
3105 | 3105 | */ |
3106 | - public function is_type( $type ) { |
|
3107 | - $type = wpinv_parse_list( $type ); |
|
3108 | - return in_array( $this->get_type(), $type ); |
|
3106 | + public function is_type($type) { |
|
3107 | + $type = wpinv_parse_list($type); |
|
3108 | + return in_array($this->get_type(), $type); |
|
3109 | 3109 | } |
3110 | 3110 | |
3111 | 3111 | /** |
@@ -3137,8 +3137,8 @@ discard block |
||
3137 | 3137 | * |
3138 | 3138 | */ |
3139 | 3139 | public function is_initial_free() { |
3140 | - $is_initial_free = ! ( (float) wpinv_round_amount( $this->get_initial_total() ) > 0 ); |
|
3141 | - return apply_filters( 'wpinv_invoice_is_initial_free', $is_initial_free, $this->get_cart_details(), $this ); |
|
3140 | + $is_initial_free = !((float) wpinv_round_amount($this->get_initial_total()) > 0); |
|
3141 | + return apply_filters('wpinv_invoice_is_initial_free', $is_initial_free, $this->get_cart_details(), $this); |
|
3142 | 3142 | } |
3143 | 3143 | |
3144 | 3144 | /** |
@@ -3148,11 +3148,11 @@ discard block |
||
3148 | 3148 | public function item_has_free_trial() { |
3149 | 3149 | |
3150 | 3150 | // Ensure we have a recurring item. |
3151 | - if ( ! $this->is_recurring() ) { |
|
3151 | + if (!$this->is_recurring()) { |
|
3152 | 3152 | return false; |
3153 | 3153 | } |
3154 | 3154 | |
3155 | - $item = $this->get_recurring( true ); |
|
3155 | + $item = $this->get_recurring(true); |
|
3156 | 3156 | return $item->has_free_trial(); |
3157 | 3157 | } |
3158 | 3158 | |
@@ -3160,7 +3160,7 @@ discard block |
||
3160 | 3160 | * Check if the free trial is a result of a discount. |
3161 | 3161 | */ |
3162 | 3162 | public function is_free_trial_from_discount() { |
3163 | - return $this->has_free_trial() && ! $this->item_has_free_trial(); |
|
3163 | + return $this->has_free_trial() && !$this->item_has_free_trial(); |
|
3164 | 3164 | } |
3165 | 3165 | |
3166 | 3166 | /** |
@@ -3168,12 +3168,12 @@ discard block |
||
3168 | 3168 | */ |
3169 | 3169 | public function discount_first_payment_only() { |
3170 | 3170 | |
3171 | - $discount = wpinv_get_discount_obj( $this->get_discount_code() ); |
|
3172 | - if ( ! $discount->exists() || ! $this->is_recurring() ) { |
|
3171 | + $discount = wpinv_get_discount_obj($this->get_discount_code()); |
|
3172 | + if (!$discount->exists() || !$this->is_recurring()) { |
|
3173 | 3173 | return true; |
3174 | 3174 | } |
3175 | 3175 | |
3176 | - return ! $discount->get_is_recurring(); |
|
3176 | + return !$discount->get_is_recurring(); |
|
3177 | 3177 | } |
3178 | 3178 | |
3179 | 3179 | /* |
@@ -3191,27 +3191,27 @@ discard block |
||
3191 | 3191 | * @param GetPaid_Form_Item|array $item |
3192 | 3192 | * @return WP_Error|Bool |
3193 | 3193 | */ |
3194 | - public function add_item( $item ) { |
|
3194 | + public function add_item($item) { |
|
3195 | 3195 | |
3196 | - if ( is_array( $item ) ) { |
|
3197 | - $item = $this->process_array_item( $item ); |
|
3196 | + if (is_array($item)) { |
|
3197 | + $item = $this->process_array_item($item); |
|
3198 | 3198 | } |
3199 | 3199 | |
3200 | - if ( is_numeric( $item ) ) { |
|
3201 | - $item = new GetPaid_Form_Item( $item ); |
|
3200 | + if (is_numeric($item)) { |
|
3201 | + $item = new GetPaid_Form_Item($item); |
|
3202 | 3202 | } |
3203 | 3203 | |
3204 | 3204 | // Make sure that it is available for purchase. |
3205 | - if ( $item->get_id() > 0 && ! $item->can_purchase() ) { |
|
3206 | - return new WP_Error( 'invalid_item', __( 'This item is not available for purchase', 'invoicing' ) ); |
|
3205 | + if ($item->get_id() > 0 && !$item->can_purchase()) { |
|
3206 | + return new WP_Error('invalid_item', __('This item is not available for purchase', 'invoicing')); |
|
3207 | 3207 | } |
3208 | 3208 | |
3209 | 3209 | // Do we have a recurring item? |
3210 | - if ( $item->is_recurring() ) { |
|
3210 | + if ($item->is_recurring()) { |
|
3211 | 3211 | |
3212 | 3212 | // An invoice can only contain one recurring item. |
3213 | - if ( ! empty( $this->recurring_item ) && $this->recurring_item != (int) $item->get_id() ) { |
|
3214 | - return new WP_Error( 'recurring_item', __( 'An invoice can only contain one recurring item', 'invoicing' ) ); |
|
3213 | + if (!empty($this->recurring_item) && $this->recurring_item != (int) $item->get_id()) { |
|
3214 | + return new WP_Error('recurring_item', __('An invoice can only contain one recurring item', 'invoicing')); |
|
3215 | 3215 | } |
3216 | 3216 | |
3217 | 3217 | $this->recurring_item = $item->get_id(); |
@@ -3221,7 +3221,7 @@ discard block |
||
3221 | 3221 | $item->invoice_id = (int) $this->get_id(); |
3222 | 3222 | |
3223 | 3223 | // Remove duplicates. |
3224 | - $this->remove_item( $item->get_id() ); |
|
3224 | + $this->remove_item($item->get_id()); |
|
3225 | 3225 | |
3226 | 3226 | // Retrieve all items. |
3227 | 3227 | $items = $this->get_items(); |
@@ -3229,7 +3229,7 @@ discard block |
||
3229 | 3229 | // Add new item. |
3230 | 3230 | $items[] = $item; |
3231 | 3231 | |
3232 | - $this->set_prop( 'items', $items ); |
|
3232 | + $this->set_prop('items', $items); |
|
3233 | 3233 | |
3234 | 3234 | return true; |
3235 | 3235 | } |
@@ -3240,26 +3240,26 @@ discard block |
||
3240 | 3240 | * @since 1.0.19 |
3241 | 3241 | * @return GetPaid_Form_Item |
3242 | 3242 | */ |
3243 | - protected function process_array_item( $array ) { |
|
3243 | + protected function process_array_item($array) { |
|
3244 | 3244 | |
3245 | - $item_id = isset( $array['item_id'] ) ? $array['item_id'] : 0; |
|
3246 | - $item = new GetPaid_Form_Item( $item_id ); |
|
3245 | + $item_id = isset($array['item_id']) ? $array['item_id'] : 0; |
|
3246 | + $item = new GetPaid_Form_Item($item_id); |
|
3247 | 3247 | |
3248 | 3248 | // Set item data. |
3249 | - foreach ( array( 'name', 'price', 'description' ) as $key ) { |
|
3250 | - if ( isset( $array[ "item_$key" ] ) ) { |
|
3249 | + foreach (array('name', 'price', 'description') as $key) { |
|
3250 | + if (isset($array["item_$key"])) { |
|
3251 | 3251 | $method = "set_$key"; |
3252 | - $item->$method( $array[ "item_$key" ] ); |
|
3252 | + $item->$method($array["item_$key"]); |
|
3253 | 3253 | } |
3254 | 3254 | } |
3255 | 3255 | |
3256 | - if ( isset( $array['quantity'] ) ) { |
|
3257 | - $item->set_quantity( $array['quantity'] ); |
|
3256 | + if (isset($array['quantity'])) { |
|
3257 | + $item->set_quantity($array['quantity']); |
|
3258 | 3258 | } |
3259 | 3259 | |
3260 | 3260 | // Set item meta. |
3261 | - if ( isset( $array['meta'] ) && is_array( $array['meta'] ) ) { |
|
3262 | - $item->set_item_meta( $array['meta'] ); |
|
3261 | + if (isset($array['meta']) && is_array($array['meta'])) { |
|
3262 | + $item->set_item_meta($array['meta']); |
|
3263 | 3263 | } |
3264 | 3264 | |
3265 | 3265 | return $item; |
@@ -3272,10 +3272,10 @@ discard block |
||
3272 | 3272 | * @since 1.0.19 |
3273 | 3273 | * @return GetPaid_Form_Item|null |
3274 | 3274 | */ |
3275 | - public function get_item( $item_id ) { |
|
3275 | + public function get_item($item_id) { |
|
3276 | 3276 | |
3277 | - foreach ( $this->get_items() as $item ) { |
|
3278 | - if ( (int) $item_id == $item->get_id() ) { |
|
3277 | + foreach ($this->get_items() as $item) { |
|
3278 | + if ((int) $item_id == $item->get_id()) { |
|
3279 | 3279 | return $item; |
3280 | 3280 | } |
3281 | 3281 | } |
@@ -3288,16 +3288,16 @@ discard block |
||
3288 | 3288 | * |
3289 | 3289 | * @since 1.0.19 |
3290 | 3290 | */ |
3291 | - public function remove_item( $item_id ) { |
|
3291 | + public function remove_item($item_id) { |
|
3292 | 3292 | $items = $this->get_items(); |
3293 | 3293 | $item_id = (int) $item_id; |
3294 | 3294 | |
3295 | - foreach ( $items as $index => $item ) { |
|
3296 | - if ( (int) $item_id == $item->get_id() ) { |
|
3297 | - unset( $items[ $index ] ); |
|
3298 | - $this->set_prop( 'items', $items ); |
|
3295 | + foreach ($items as $index => $item) { |
|
3296 | + if ((int) $item_id == $item->get_id()) { |
|
3297 | + unset($items[$index]); |
|
3298 | + $this->set_prop('items', $items); |
|
3299 | 3299 | |
3300 | - if ( $item_id == $this->recurring_item ) { |
|
3300 | + if ($item_id == $this->recurring_item) { |
|
3301 | 3301 | $this->recurring_item = null; |
3302 | 3302 | } |
3303 | 3303 | |
@@ -3312,11 +3312,11 @@ discard block |
||
3312 | 3312 | * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
3313 | 3313 | * @since 1.0.19 |
3314 | 3314 | */ |
3315 | - public function add_fee( $fee ) { |
|
3315 | + public function add_fee($fee) { |
|
3316 | 3316 | |
3317 | 3317 | $fees = $this->get_fees(); |
3318 | - $fees[ $fee['name'] ] = $fee; |
|
3319 | - $this->set_prop( 'fees', $fees ); |
|
3318 | + $fees[$fee['name']] = $fee; |
|
3319 | + $this->set_prop('fees', $fees); |
|
3320 | 3320 | |
3321 | 3321 | } |
3322 | 3322 | |
@@ -3325,9 +3325,9 @@ discard block |
||
3325 | 3325 | * |
3326 | 3326 | * @since 1.0.19 |
3327 | 3327 | */ |
3328 | - public function get_fee( $fee ) { |
|
3328 | + public function get_fee($fee) { |
|
3329 | 3329 | $fees = $this->get_fees(); |
3330 | - return isset( $fees[ $fee ] ) ? $fees[ $fee ] : null; |
|
3330 | + return isset($fees[$fee]) ? $fees[$fee] : null; |
|
3331 | 3331 | } |
3332 | 3332 | |
3333 | 3333 | /** |
@@ -3335,11 +3335,11 @@ discard block |
||
3335 | 3335 | * |
3336 | 3336 | * @since 1.0.19 |
3337 | 3337 | */ |
3338 | - public function remove_fee( $fee ) { |
|
3338 | + public function remove_fee($fee) { |
|
3339 | 3339 | $fees = $this->get_fees(); |
3340 | - if ( isset( $fees[ $fee ] ) ) { |
|
3341 | - unset( $fees[ $fee ] ); |
|
3342 | - $this->set_prop( 'fees', $fees ); |
|
3340 | + if (isset($fees[$fee])) { |
|
3341 | + unset($fees[$fee]); |
|
3342 | + $this->set_prop('fees', $fees); |
|
3343 | 3343 | } |
3344 | 3344 | } |
3345 | 3345 | |
@@ -3349,11 +3349,11 @@ discard block |
||
3349 | 3349 | * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
3350 | 3350 | * @since 1.0.19 |
3351 | 3351 | */ |
3352 | - public function add_discount( $discount ) { |
|
3352 | + public function add_discount($discount) { |
|
3353 | 3353 | |
3354 | 3354 | $discounts = $this->get_discounts(); |
3355 | - $discounts[ $discount['name'] ] = $discount; |
|
3356 | - $this->set_prop( 'discounts', $discounts ); |
|
3355 | + $discounts[$discount['name']] = $discount; |
|
3356 | + $this->set_prop('discounts', $discounts); |
|
3357 | 3357 | |
3358 | 3358 | } |
3359 | 3359 | |
@@ -3363,15 +3363,15 @@ discard block |
||
3363 | 3363 | * @since 1.0.19 |
3364 | 3364 | * @return float |
3365 | 3365 | */ |
3366 | - public function get_discount( $discount = false ) { |
|
3366 | + public function get_discount($discount = false) { |
|
3367 | 3367 | |
3368 | 3368 | // Backwards compatibilty. |
3369 | - if ( empty( $discount ) ) { |
|
3369 | + if (empty($discount)) { |
|
3370 | 3370 | return $this->get_total_discount(); |
3371 | 3371 | } |
3372 | 3372 | |
3373 | 3373 | $discounts = $this->get_discounts(); |
3374 | - return isset( $discounts[ $discount ] ) ? $discounts[ $discount ] : null; |
|
3374 | + return isset($discounts[$discount]) ? $discounts[$discount] : null; |
|
3375 | 3375 | } |
3376 | 3376 | |
3377 | 3377 | /** |
@@ -3379,15 +3379,15 @@ discard block |
||
3379 | 3379 | * |
3380 | 3380 | * @since 1.0.19 |
3381 | 3381 | */ |
3382 | - public function remove_discount( $discount ) { |
|
3382 | + public function remove_discount($discount) { |
|
3383 | 3383 | $discounts = $this->get_discounts(); |
3384 | - if ( isset( $discounts[ $discount ] ) ) { |
|
3385 | - unset( $discounts[ $discount ] ); |
|
3386 | - $this->set_prop( 'discounts', $discounts ); |
|
3384 | + if (isset($discounts[$discount])) { |
|
3385 | + unset($discounts[$discount]); |
|
3386 | + $this->set_prop('discounts', $discounts); |
|
3387 | 3387 | } |
3388 | 3388 | |
3389 | - if ( 'discount_code' == $discount ) { |
|
3390 | - foreach ( $this->get_items() as $item ) { |
|
3389 | + if ('discount_code' == $discount) { |
|
3390 | + foreach ($this->get_items() as $item) { |
|
3391 | 3391 | $item->item_discount = 0; |
3392 | 3392 | $item->recurring_item_discount = 0; |
3393 | 3393 | } |
@@ -3400,12 +3400,12 @@ discard block |
||
3400 | 3400 | * |
3401 | 3401 | * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
3402 | 3402 | */ |
3403 | - public function add_tax( $tax ) { |
|
3404 | - if ( $this->is_taxable() ) { |
|
3403 | + public function add_tax($tax) { |
|
3404 | + if ($this->is_taxable()) { |
|
3405 | 3405 | |
3406 | - $taxes = $this->get_taxes(); |
|
3407 | - $taxes[ $tax['name'] ] = $tax; |
|
3408 | - $this->set_prop( 'taxes', $tax ); |
|
3406 | + $taxes = $this->get_taxes(); |
|
3407 | + $taxes[$tax['name']] = $tax; |
|
3408 | + $this->set_prop('taxes', $tax); |
|
3409 | 3409 | |
3410 | 3410 | } |
3411 | 3411 | } |
@@ -3415,15 +3415,15 @@ discard block |
||
3415 | 3415 | * |
3416 | 3416 | * @since 1.0.19 |
3417 | 3417 | */ |
3418 | - public function get_tax( $tax = null ) { |
|
3418 | + public function get_tax($tax = null) { |
|
3419 | 3419 | |
3420 | 3420 | // Backwards compatility. |
3421 | - if ( empty( $tax ) ) { |
|
3421 | + if (empty($tax)) { |
|
3422 | 3422 | return $this->get_total_tax(); |
3423 | 3423 | } |
3424 | 3424 | |
3425 | 3425 | $taxes = $this->get_taxes(); |
3426 | - return isset( $taxes[ $tax ] ) ? $taxes[ $tax ] : null; |
|
3426 | + return isset($taxes[$tax]) ? $taxes[$tax] : null; |
|
3427 | 3427 | } |
3428 | 3428 | |
3429 | 3429 | /** |
@@ -3431,11 +3431,11 @@ discard block |
||
3431 | 3431 | * |
3432 | 3432 | * @since 1.0.19 |
3433 | 3433 | */ |
3434 | - public function remove_tax( $tax ) { |
|
3434 | + public function remove_tax($tax) { |
|
3435 | 3435 | $taxes = $this->get_taxes(); |
3436 | - if ( isset( $taxes[ $tax ] ) ) { |
|
3437 | - unset( $taxes[ $tax ] ); |
|
3438 | - $this->set_prop( 'taxes', $taxes ); |
|
3436 | + if (isset($taxes[$tax])) { |
|
3437 | + unset($taxes[$tax]); |
|
3438 | + $this->set_prop('taxes', $taxes); |
|
3439 | 3439 | } |
3440 | 3440 | } |
3441 | 3441 | |
@@ -3446,22 +3446,22 @@ discard block |
||
3446 | 3446 | * @return float The recalculated subtotal |
3447 | 3447 | */ |
3448 | 3448 | public function recalculate_subtotal() { |
3449 | - $items = $this->get_items(); |
|
3449 | + $items = $this->get_items(); |
|
3450 | 3450 | $subtotal = 0; |
3451 | 3451 | $recurring = 0; |
3452 | 3452 | |
3453 | - foreach ( $items as $item ) { |
|
3453 | + foreach ($items as $item) { |
|
3454 | 3454 | $subtotal += $item->get_sub_total(); |
3455 | 3455 | $recurring += $item->get_recurring_sub_total(); |
3456 | 3456 | } |
3457 | 3457 | |
3458 | - if ( wpinv_prices_include_tax() ) { |
|
3459 | - $subtotal = max( 0, $subtotal - $this->totals['tax']['initial'] ); |
|
3460 | - $recurring = max( 0, $recurring - $this->totals['tax']['recurring'] ); |
|
3458 | + if (wpinv_prices_include_tax()) { |
|
3459 | + $subtotal = max(0, $subtotal - $this->totals['tax']['initial']); |
|
3460 | + $recurring = max(0, $recurring - $this->totals['tax']['recurring']); |
|
3461 | 3461 | } |
3462 | 3462 | |
3463 | 3463 | $current = $this->is_renewal() ? $recurring : $subtotal; |
3464 | - $this->set_subtotal( $current ); |
|
3464 | + $this->set_subtotal($current); |
|
3465 | 3465 | |
3466 | 3466 | $this->totals['subtotal'] = array( |
3467 | 3467 | 'initial' => $subtotal, |
@@ -3482,14 +3482,14 @@ discard block |
||
3482 | 3482 | $discount = 0; |
3483 | 3483 | $recurring = 0; |
3484 | 3484 | |
3485 | - foreach ( $discounts as $data ) { |
|
3486 | - $discount += wpinv_sanitize_amount( $data['initial_discount'] ); |
|
3487 | - $recurring += wpinv_sanitize_amount( $data['recurring_discount'] ); |
|
3485 | + foreach ($discounts as $data) { |
|
3486 | + $discount += wpinv_sanitize_amount($data['initial_discount']); |
|
3487 | + $recurring += wpinv_sanitize_amount($data['recurring_discount']); |
|
3488 | 3488 | } |
3489 | 3489 | |
3490 | 3490 | $current = $this->is_renewal() ? $recurring : $discount; |
3491 | 3491 | |
3492 | - $this->set_total_discount( $current ); |
|
3492 | + $this->set_total_discount($current); |
|
3493 | 3493 | |
3494 | 3494 | $this->totals['discount'] = array( |
3495 | 3495 | 'initial' => $discount, |
@@ -3510,13 +3510,13 @@ discard block |
||
3510 | 3510 | |
3511 | 3511 | // Maybe disable taxes. |
3512 | 3512 | $vat_number = $this->get_vat_number(); |
3513 | - $skip_tax = GetPaid_Payment_Form_Submission_Taxes::is_eu_transaction( $this->get_country() ) && ! empty( $vat_number ); |
|
3513 | + $skip_tax = GetPaid_Payment_Form_Submission_Taxes::is_eu_transaction($this->get_country()) && !empty($vat_number); |
|
3514 | 3514 | |
3515 | - if ( wpinv_is_base_country( $this->get_country() ) && 'vat_too' == wpinv_get_option( 'vat_same_country_rule', 'vat_too' ) ) { |
|
3515 | + if (wpinv_is_base_country($this->get_country()) && 'vat_too' == wpinv_get_option('vat_same_country_rule', 'vat_too')) { |
|
3516 | 3516 | $skip_tax = false; |
3517 | 3517 | } |
3518 | 3518 | |
3519 | - if ( ! wpinv_use_taxes() || $this->get_disable_taxes() || ! wpinv_is_country_taxable( $this->get_country() ) || $skip_tax ) { |
|
3519 | + if (!wpinv_use_taxes() || $this->get_disable_taxes() || !wpinv_is_country_taxable($this->get_country()) || $skip_tax) { |
|
3520 | 3520 | |
3521 | 3521 | $this->totals['tax'] = array( |
3522 | 3522 | 'initial' => 0, |
@@ -3525,38 +3525,38 @@ discard block |
||
3525 | 3525 | |
3526 | 3526 | $this->tax_rate = 0; |
3527 | 3527 | |
3528 | - $this->set_taxes( array() ); |
|
3528 | + $this->set_taxes(array()); |
|
3529 | 3529 | $current = 0; |
3530 | 3530 | } else { |
3531 | 3531 | |
3532 | 3532 | $item_taxes = array(); |
3533 | 3533 | |
3534 | - foreach ( $this->get_items() as $item ) { |
|
3535 | - $rates = getpaid_get_item_tax_rates( $item, $this->get_country(), $this->get_state() ); |
|
3536 | - $rates = getpaid_filter_item_tax_rates( $item, $rates ); |
|
3537 | - $taxes = getpaid_calculate_item_taxes( getpaid_get_taxable_amount( $item, false ), $rates ); |
|
3538 | - $r_taxes = getpaid_calculate_item_taxes( getpaid_get_taxable_amount( $item, true ), $rates ); |
|
3539 | - foreach ( $taxes as $name => $amount ) { |
|
3540 | - $recurring = isset( $r_taxes[ $name ] ) ? $r_taxes[ $name ] : 0; |
|
3541 | - $tax = getpaid_prepare_item_tax( $item, $name, $amount, $recurring ); |
|
3542 | - |
|
3543 | - if ( ! isset( $item_taxes[ $name ] ) ) { |
|
3544 | - $item_taxes[ $name ] = $tax; |
|
3534 | + foreach ($this->get_items() as $item) { |
|
3535 | + $rates = getpaid_get_item_tax_rates($item, $this->get_country(), $this->get_state()); |
|
3536 | + $rates = getpaid_filter_item_tax_rates($item, $rates); |
|
3537 | + $taxes = getpaid_calculate_item_taxes(getpaid_get_taxable_amount($item, false), $rates); |
|
3538 | + $r_taxes = getpaid_calculate_item_taxes(getpaid_get_taxable_amount($item, true), $rates); |
|
3539 | + foreach ($taxes as $name => $amount) { |
|
3540 | + $recurring = isset($r_taxes[$name]) ? $r_taxes[$name] : 0; |
|
3541 | + $tax = getpaid_prepare_item_tax($item, $name, $amount, $recurring); |
|
3542 | + |
|
3543 | + if (!isset($item_taxes[$name])) { |
|
3544 | + $item_taxes[$name] = $tax; |
|
3545 | 3545 | continue; |
3546 | 3546 | } |
3547 | 3547 | |
3548 | - $item_taxes[ $name ]['initial_tax'] += $tax['initial_tax']; |
|
3549 | - $item_taxes[ $name ]['recurring_tax'] += $tax['recurring_tax']; |
|
3548 | + $item_taxes[$name]['initial_tax'] += $tax['initial_tax']; |
|
3549 | + $item_taxes[$name]['recurring_tax'] += $tax['recurring_tax']; |
|
3550 | 3550 | |
3551 | 3551 | } |
3552 | 3552 | |
3553 | 3553 | } |
3554 | 3554 | |
3555 | - $item_taxes = array_replace( $this->get_taxes(), $item_taxes ); |
|
3556 | - $this->set_taxes( $item_taxes ); |
|
3555 | + $item_taxes = array_replace($this->get_taxes(), $item_taxes); |
|
3556 | + $this->set_taxes($item_taxes); |
|
3557 | 3557 | |
3558 | - $initial_tax = array_sum( wp_list_pluck( $item_taxes, 'initial_tax' ) ); |
|
3559 | - $recurring_tax = array_sum( wp_list_pluck( $item_taxes, 'recurring_tax' ) ); |
|
3558 | + $initial_tax = array_sum(wp_list_pluck($item_taxes, 'initial_tax')); |
|
3559 | + $recurring_tax = array_sum(wp_list_pluck($item_taxes, 'recurring_tax')); |
|
3560 | 3560 | |
3561 | 3561 | $current = $this->is_renewal() ? $recurring_tax : $initial_tax; |
3562 | 3562 | |
@@ -3567,7 +3567,7 @@ discard block |
||
3567 | 3567 | |
3568 | 3568 | } |
3569 | 3569 | |
3570 | - $this->set_total_tax( $current ); |
|
3570 | + $this->set_total_tax($current); |
|
3571 | 3571 | |
3572 | 3572 | return $current; |
3573 | 3573 | |
@@ -3584,20 +3584,20 @@ discard block |
||
3584 | 3584 | $fee = 0; |
3585 | 3585 | $recurring = 0; |
3586 | 3586 | |
3587 | - foreach ( $fees as $data ) { |
|
3588 | - $fee += wpinv_sanitize_amount( $data['initial_fee'] ); |
|
3589 | - $recurring += wpinv_sanitize_amount( $data['recurring_fee'] ); |
|
3587 | + foreach ($fees as $data) { |
|
3588 | + $fee += wpinv_sanitize_amount($data['initial_fee']); |
|
3589 | + $recurring += wpinv_sanitize_amount($data['recurring_fee']); |
|
3590 | 3590 | } |
3591 | 3591 | |
3592 | 3592 | $current = $this->is_renewal() ? $recurring : $fee; |
3593 | - $this->set_total_fees( $current ); |
|
3593 | + $this->set_total_fees($current); |
|
3594 | 3594 | |
3595 | 3595 | $this->totals['fee'] = array( |
3596 | 3596 | 'initial' => $fee, |
3597 | 3597 | 'recurring' => $recurring, |
3598 | 3598 | ); |
3599 | 3599 | |
3600 | - $this->set_total_fees( $fee ); |
|
3600 | + $this->set_total_fees($fee); |
|
3601 | 3601 | return $current; |
3602 | 3602 | } |
3603 | 3603 | |
@@ -3612,7 +3612,7 @@ discard block |
||
3612 | 3612 | $this->recalculate_total_discount(); |
3613 | 3613 | $this->recalculate_total_tax(); |
3614 | 3614 | $this->recalculate_subtotal(); |
3615 | - $this->set_total( $this->get_total_tax() + $this->get_total_fees() + $this->get_subtotal() - $this->get_total_discount() ); |
|
3615 | + $this->set_total($this->get_total_tax() + $this->get_total_fees() + $this->get_subtotal() - $this->get_total_discount()); |
|
3616 | 3616 | return $this->get_total(); |
3617 | 3617 | } |
3618 | 3618 | |
@@ -3621,7 +3621,7 @@ discard block |
||
3621 | 3621 | */ |
3622 | 3622 | public function recalculate_totals() { |
3623 | 3623 | $this->recalculate_total(); |
3624 | - $this->save( true ); |
|
3624 | + $this->save(true); |
|
3625 | 3625 | return $this; |
3626 | 3626 | } |
3627 | 3627 | |
@@ -3639,10 +3639,10 @@ discard block |
||
3639 | 3639 | * @return int|false The new note's ID on success, false on failure. |
3640 | 3640 | * |
3641 | 3641 | */ |
3642 | - public function add_note( $note = '', $customer_type = false, $added_by_user = false, $system = false ) { |
|
3642 | + public function add_note($note = '', $customer_type = false, $added_by_user = false, $system = false) { |
|
3643 | 3643 | |
3644 | 3644 | // Bail if no note specified or this invoice is not yet saved. |
3645 | - if ( ! $note || $this->get_id() == 0 || ( ! is_user_logged_in() && ! $system ) ) { |
|
3645 | + if (!$note || $this->get_id() == 0 || (!is_user_logged_in() && !$system)) { |
|
3646 | 3646 | return false; |
3647 | 3647 | } |
3648 | 3648 | |
@@ -3650,23 +3650,23 @@ discard block |
||
3650 | 3650 | $author_email = '[email protected]'; |
3651 | 3651 | |
3652 | 3652 | // If this is an admin comment or it has been added by the user. |
3653 | - if ( is_user_logged_in() && ( ! $system || $added_by_user ) ) { |
|
3654 | - $user = get_user_by( 'id', get_current_user_id() ); |
|
3653 | + if (is_user_logged_in() && (!$system || $added_by_user)) { |
|
3654 | + $user = get_user_by('id', get_current_user_id()); |
|
3655 | 3655 | $author = $user->display_name; |
3656 | 3656 | $author_email = $user->user_email; |
3657 | 3657 | } |
3658 | 3658 | |
3659 | - return getpaid_notes()->add_invoice_note( $this, $note, $author, $author_email, $customer_type ); |
|
3659 | + return getpaid_notes()->add_invoice_note($this, $note, $author, $author_email, $customer_type); |
|
3660 | 3660 | |
3661 | 3661 | } |
3662 | 3662 | |
3663 | 3663 | /** |
3664 | 3664 | * Generates a unique key for the invoice. |
3665 | 3665 | */ |
3666 | - public function generate_key( $string = '' ) { |
|
3667 | - $auth_key = defined( 'AUTH_KEY' ) ? AUTH_KEY : ''; |
|
3666 | + public function generate_key($string = '') { |
|
3667 | + $auth_key = defined('AUTH_KEY') ? AUTH_KEY : ''; |
|
3668 | 3668 | return strtolower( |
3669 | - $string . md5( $this->get_id() . date( 'Y-m-d H:i:s' ) . $auth_key . uniqid( 'wpinv', true ) ) |
|
3669 | + $string . md5($this->get_id() . date('Y-m-d H:i:s') . $auth_key . uniqid('wpinv', true)) |
|
3670 | 3670 | ); |
3671 | 3671 | } |
3672 | 3672 | |
@@ -3676,11 +3676,11 @@ discard block |
||
3676 | 3676 | public function generate_number() { |
3677 | 3677 | $number = $this->get_id(); |
3678 | 3678 | |
3679 | - if ( wpinv_sequential_number_active( $this->get_post_type() ) ) { |
|
3680 | - $number = wpinv_get_next_invoice_number( $this->get_post_type() ); |
|
3679 | + if (wpinv_sequential_number_active($this->get_post_type())) { |
|
3680 | + $number = wpinv_get_next_invoice_number($this->get_post_type()); |
|
3681 | 3681 | } |
3682 | 3682 | |
3683 | - return wpinv_format_invoice_number( $number, $this->get_post_type() ); |
|
3683 | + return wpinv_format_invoice_number($number, $this->get_post_type()); |
|
3684 | 3684 | |
3685 | 3685 | } |
3686 | 3686 | |
@@ -3693,55 +3693,55 @@ discard block |
||
3693 | 3693 | // Reset status transition variable. |
3694 | 3694 | $this->status_transition = false; |
3695 | 3695 | |
3696 | - if ( $status_transition ) { |
|
3696 | + if ($status_transition) { |
|
3697 | 3697 | try { |
3698 | 3698 | |
3699 | 3699 | // Fire a hook for the status change. |
3700 | - do_action( 'getpaid_invoice_status_' . $status_transition['to'], $this, $status_transition ); |
|
3700 | + do_action('getpaid_invoice_status_' . $status_transition['to'], $this, $status_transition); |
|
3701 | 3701 | |
3702 | 3702 | // @deprecated this is deprecated and will be removed in the future. |
3703 | - do_action( 'wpinv_status_' . $status_transition['to'], $this->get_id(), $status_transition['from'] ); |
|
3703 | + do_action('wpinv_status_' . $status_transition['to'], $this->get_id(), $status_transition['from']); |
|
3704 | 3704 | |
3705 | - if ( ! empty( $status_transition['from'] ) ) { |
|
3705 | + if (!empty($status_transition['from'])) { |
|
3706 | 3706 | |
3707 | 3707 | /* translators: 1: old invoice status 2: new invoice status */ |
3708 | - $transition_note = sprintf( __( 'Status changed from %1$s to %2$s.', 'invoicing' ), wpinv_status_nicename( $status_transition['from'], $this ), wpinv_status_nicename( $status_transition['to'], $this ) ); |
|
3708 | + $transition_note = sprintf(__('Status changed from %1$s to %2$s.', 'invoicing'), wpinv_status_nicename($status_transition['from'], $this), wpinv_status_nicename($status_transition['to'], $this)); |
|
3709 | 3709 | |
3710 | 3710 | // Fire another hook. |
3711 | - do_action( 'getpaid_invoice_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this ); |
|
3712 | - do_action( 'getpaid_invoice_status_changed', $this, $status_transition['from'], $status_transition['to'] ); |
|
3711 | + do_action('getpaid_invoice_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this); |
|
3712 | + do_action('getpaid_invoice_status_changed', $this, $status_transition['from'], $status_transition['to']); |
|
3713 | 3713 | |
3714 | 3714 | // @deprecated this is deprecated and will be removed in the future. |
3715 | - do_action( 'wpinv_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $status_transition['from'] ); |
|
3715 | + do_action('wpinv_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $status_transition['from']); |
|
3716 | 3716 | |
3717 | 3717 | // Note the transition occurred. |
3718 | - $this->add_note( trim( $status_transition['note'] . ' ' . $transition_note ), false, $status_transition['manual'] ); |
|
3718 | + $this->add_note(trim($status_transition['note'] . ' ' . $transition_note), false, $status_transition['manual']); |
|
3719 | 3719 | |
3720 | 3720 | // Work out if this was for a payment, and trigger a payment_status hook instead. |
3721 | 3721 | if ( |
3722 | - in_array( $status_transition['from'], array( 'wpi-cancelled', 'wpi-pending', 'wpi-failed', 'wpi-refunded', 'wpi-onhold' ), true ) |
|
3723 | - && in_array( $status_transition['to'], array( 'publish', 'wpi-processing', 'wpi-renewal' ), true ) |
|
3722 | + in_array($status_transition['from'], array('wpi-cancelled', 'wpi-pending', 'wpi-failed', 'wpi-refunded', 'wpi-onhold'), true) |
|
3723 | + && in_array($status_transition['to'], array('publish', 'wpi-processing', 'wpi-renewal'), true) |
|
3724 | 3724 | ) { |
3725 | - do_action( 'getpaid_invoice_payment_status_changed', $this, $status_transition ); |
|
3725 | + do_action('getpaid_invoice_payment_status_changed', $this, $status_transition); |
|
3726 | 3726 | } |
3727 | 3727 | |
3728 | 3728 | // Work out if this was for a payment reversal, and trigger a payment_status_reversed hook instead. |
3729 | 3729 | if ( |
3730 | - in_array( $status_transition['from'], array( 'publish', 'wpi-processing', 'wpi-renewal' ), true ) |
|
3731 | - && in_array( $status_transition['to'], array( 'wpi-cancelled', 'wpi-pending', 'wpi-failed', 'wpi-refunded', 'wpi-onhold' ), true ) |
|
3730 | + in_array($status_transition['from'], array('publish', 'wpi-processing', 'wpi-renewal'), true) |
|
3731 | + && in_array($status_transition['to'], array('wpi-cancelled', 'wpi-pending', 'wpi-failed', 'wpi-refunded', 'wpi-onhold'), true) |
|
3732 | 3732 | ) { |
3733 | - do_action( 'getpaid_invoice_payment_status_reversed', $this, $status_transition ); |
|
3733 | + do_action('getpaid_invoice_payment_status_reversed', $this, $status_transition); |
|
3734 | 3734 | } |
3735 | 3735 | } else { |
3736 | 3736 | /* translators: %s: new invoice status */ |
3737 | - $transition_note = sprintf( __( 'Status set to %s.', 'invoicing' ), wpinv_status_nicename( $status_transition['to'], $this ) ); |
|
3737 | + $transition_note = sprintf(__('Status set to %s.', 'invoicing'), wpinv_status_nicename($status_transition['to'], $this)); |
|
3738 | 3738 | |
3739 | 3739 | // Note the transition occurred. |
3740 | - $this->add_note( trim( $status_transition['note'] . ' ' . $transition_note ), 0, $status_transition['manual'] ); |
|
3740 | + $this->add_note(trim($status_transition['note'] . ' ' . $transition_note), 0, $status_transition['manual']); |
|
3741 | 3741 | |
3742 | 3742 | } |
3743 | - } catch ( Exception $e ) { |
|
3744 | - $this->add_note( __( 'Error during status transition.', 'invoicing' ) . ' ' . $e->getMessage() ); |
|
3743 | + } catch (Exception $e) { |
|
3744 | + $this->add_note(__('Error during status transition.', 'invoicing') . ' ' . $e->getMessage()); |
|
3745 | 3745 | } |
3746 | 3746 | } |
3747 | 3747 | } |
@@ -3749,13 +3749,13 @@ discard block |
||
3749 | 3749 | /** |
3750 | 3750 | * Updates an invoice status. |
3751 | 3751 | */ |
3752 | - public function update_status( $new_status = false, $note = '', $manual = false ) { |
|
3752 | + public function update_status($new_status = false, $note = '', $manual = false) { |
|
3753 | 3753 | |
3754 | 3754 | // Fires before updating a status. |
3755 | - do_action( 'wpinv_before_invoice_status_change', $this->get_id(), $new_status, $this->get_status( 'edit' ) ); |
|
3755 | + do_action('wpinv_before_invoice_status_change', $this->get_id(), $new_status, $this->get_status('edit')); |
|
3756 | 3756 | |
3757 | 3757 | // Update the status. |
3758 | - $this->set_status( $new_status, $note, $manual ); |
|
3758 | + $this->set_status($new_status, $note, $manual); |
|
3759 | 3759 | |
3760 | 3760 | // Save the order. |
3761 | 3761 | return $this->save(); |
@@ -3766,18 +3766,18 @@ discard block |
||
3766 | 3766 | * @deprecated |
3767 | 3767 | */ |
3768 | 3768 | public function refresh_item_ids() { |
3769 | - $item_ids = implode( ',', array_unique( wp_list_pluck( $this->get_cart_details(), 'item_id' ) ) ); |
|
3770 | - update_post_meta( $this->get_id(), '_wpinv_item_ids', $item_ids ); |
|
3769 | + $item_ids = implode(',', array_unique(wp_list_pluck($this->get_cart_details(), 'item_id'))); |
|
3770 | + update_post_meta($this->get_id(), '_wpinv_item_ids', $item_ids); |
|
3771 | 3771 | } |
3772 | 3772 | |
3773 | 3773 | /** |
3774 | 3774 | * @deprecated |
3775 | 3775 | */ |
3776 | - public function update_items( $temp = false ) { |
|
3776 | + public function update_items($temp = false) { |
|
3777 | 3777 | |
3778 | - $this->set_items( $this->get_items() ); |
|
3778 | + $this->set_items($this->get_items()); |
|
3779 | 3779 | |
3780 | - if ( ! $temp ) { |
|
3780 | + if (!$temp) { |
|
3781 | 3781 | $this->save(); |
3782 | 3782 | } |
3783 | 3783 | |
@@ -3791,11 +3791,11 @@ discard block |
||
3791 | 3791 | |
3792 | 3792 | $discount_code = $this->get_discount_code(); |
3793 | 3793 | |
3794 | - if ( empty( $discount_code ) ) { |
|
3794 | + if (empty($discount_code)) { |
|
3795 | 3795 | return false; |
3796 | 3796 | } |
3797 | 3797 | |
3798 | - $discount = wpinv_get_discount_obj( $discount_code ); |
|
3798 | + $discount = wpinv_get_discount_obj($discount_code); |
|
3799 | 3799 | |
3800 | 3800 | // Ensure it is active. |
3801 | 3801 | return $discount->exists(); |
@@ -3806,7 +3806,7 @@ discard block |
||
3806 | 3806 | * Refunds an invoice. |
3807 | 3807 | */ |
3808 | 3808 | public function refund() { |
3809 | - $this->set_status( 'wpi-refunded' ); |
|
3809 | + $this->set_status('wpi-refunded'); |
|
3810 | 3810 | $this->save(); |
3811 | 3811 | } |
3812 | 3812 | |
@@ -3815,53 +3815,53 @@ discard block |
||
3815 | 3815 | * |
3816 | 3816 | * @param string $transaction_id |
3817 | 3817 | */ |
3818 | - public function mark_paid( $transaction_id = null, $note = '' ) { |
|
3818 | + public function mark_paid($transaction_id = null, $note = '') { |
|
3819 | 3819 | |
3820 | 3820 | // Set the transaction id. |
3821 | - if ( empty( $transaction_id ) ) { |
|
3821 | + if (empty($transaction_id)) { |
|
3822 | 3822 | $transaction_id = $this->generate_key('trans_'); |
3823 | 3823 | } |
3824 | 3824 | |
3825 | - if ( ! $this->get_transaction_id() ) { |
|
3826 | - $this->set_transaction_id( $transaction_id ); |
|
3825 | + if (!$this->get_transaction_id()) { |
|
3826 | + $this->set_transaction_id($transaction_id); |
|
3827 | 3827 | } |
3828 | 3828 | |
3829 | - if ( $this->is_paid() && 'wpi-processing' != $this->get_status() ) { |
|
3829 | + if ($this->is_paid() && 'wpi-processing' != $this->get_status()) { |
|
3830 | 3830 | return $this->save(); |
3831 | 3831 | } |
3832 | 3832 | |
3833 | 3833 | // Set the completed date. |
3834 | - $this->set_date_completed( current_time( 'mysql' ) ); |
|
3834 | + $this->set_date_completed(current_time('mysql')); |
|
3835 | 3835 | |
3836 | 3836 | // Set the new status. |
3837 | - $gateway = sanitize_text_field( $this->get_gateway_title() ); |
|
3838 | - if ( $this->is_renewal() ) { |
|
3837 | + $gateway = sanitize_text_field($this->get_gateway_title()); |
|
3838 | + if ($this->is_renewal()) { |
|
3839 | 3839 | |
3840 | - $_note = wp_sprintf( __( 'Renewed via %s', 'invoicing' ), $gateway ); |
|
3841 | - $_note = $_note . empty( $note ) ? '' : " ($note)"; |
|
3840 | + $_note = wp_sprintf(__('Renewed via %s', 'invoicing'), $gateway); |
|
3841 | + $_note = $_note . empty($note) ? '' : " ($note)"; |
|
3842 | 3842 | |
3843 | - if ( 'none' == $this->get_gateway() ) { |
|
3843 | + if ('none' == $this->get_gateway()) { |
|
3844 | 3844 | $_note = $note; |
3845 | 3845 | } |
3846 | 3846 | |
3847 | - $this->set_status( 'wpi-renewal', $_note ); |
|
3847 | + $this->set_status('wpi-renewal', $_note); |
|
3848 | 3848 | |
3849 | 3849 | } else { |
3850 | 3850 | |
3851 | - $_note = wp_sprintf( __( 'Paid via %s', 'invoicing' ), $gateway ); |
|
3852 | - $_note = $_note . empty( $note ) ? '' : " ($note)"; |
|
3851 | + $_note = wp_sprintf(__('Paid via %s', 'invoicing'), $gateway); |
|
3852 | + $_note = $_note . empty($note) ? '' : " ($note)"; |
|
3853 | 3853 | |
3854 | - if ( 'none' == $this->get_gateway() ) { |
|
3854 | + if ('none' == $this->get_gateway()) { |
|
3855 | 3855 | $_note = $note; |
3856 | 3856 | } |
3857 | 3857 | |
3858 | - $this->set_status( 'publish', $_note ); |
|
3858 | + $this->set_status('publish', $_note); |
|
3859 | 3859 | |
3860 | 3860 | } |
3861 | 3861 | |
3862 | 3862 | // Set checkout mode. |
3863 | - $mode = wpinv_is_test_mode( $this->get_gateway() ) ? 'test' : 'live'; |
|
3864 | - $this->set_mode( $mode ); |
|
3863 | + $mode = wpinv_is_test_mode($this->get_gateway()) ? 'test' : 'live'; |
|
3864 | + $this->set_mode($mode); |
|
3865 | 3865 | |
3866 | 3866 | // Save the invoice. |
3867 | 3867 | $this->save(); |
@@ -3886,9 +3886,9 @@ discard block |
||
3886 | 3886 | * Clears the subscription's cache. |
3887 | 3887 | */ |
3888 | 3888 | public function clear_cache() { |
3889 | - wp_cache_delete( $this->get_key(), 'getpaid_invoice_keys_to_invoice_ids' ); |
|
3890 | - wp_cache_delete( $this->get_number(), 'getpaid_invoice_numbers_to_invoice_ids' ); |
|
3891 | - wp_cache_delete( $this->get_transaction_id(), 'getpaid_invoice_transaction_ids_to_invoice_ids' ); |
|
3889 | + wp_cache_delete($this->get_key(), 'getpaid_invoice_keys_to_invoice_ids'); |
|
3890 | + wp_cache_delete($this->get_number(), 'getpaid_invoice_numbers_to_invoice_ids'); |
|
3891 | + wp_cache_delete($this->get_transaction_id(), 'getpaid_invoice_transaction_ids_to_invoice_ids'); |
|
3892 | 3892 | } |
3893 | 3893 | |
3894 | 3894 | } |