@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | /** |
9 | 9 | * Main Subscriptions class. |
10 | 10 | * |
@@ -14,31 +14,31 @@ discard block |
||
14 | 14 | /** |
15 | 15 | * Class constructor. |
16 | 16 | */ |
17 | - public function __construct(){ |
|
17 | + public function __construct() { |
|
18 | 18 | |
19 | 19 | // Fire gateway specific hooks when a subscription changes. |
20 | - add_action( 'getpaid_subscription_status_changed', array( $this, 'process_subscription_status_change' ), 10, 3 ); |
|
20 | + add_action('getpaid_subscription_status_changed', array($this, 'process_subscription_status_change'), 10, 3); |
|
21 | 21 | |
22 | 22 | // De-activate a subscription whenever the invoice changes payment statuses. |
23 | - add_action( 'getpaid_invoice_status_wpi-refunded', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 ); |
|
24 | - add_action( 'getpaid_invoice_status_wpi-failed', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 ); |
|
25 | - add_action( 'getpaid_invoice_status_wpi-cancelled', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 ); |
|
26 | - add_action( 'getpaid_invoice_status_wpi-pending', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 ); |
|
23 | + add_action('getpaid_invoice_status_wpi-refunded', array($this, 'maybe_deactivate_invoice_subscription'), 20); |
|
24 | + add_action('getpaid_invoice_status_wpi-failed', array($this, 'maybe_deactivate_invoice_subscription'), 20); |
|
25 | + add_action('getpaid_invoice_status_wpi-cancelled', array($this, 'maybe_deactivate_invoice_subscription'), 20); |
|
26 | + add_action('getpaid_invoice_status_wpi-pending', array($this, 'maybe_deactivate_invoice_subscription'), 20); |
|
27 | 27 | |
28 | 28 | // Handles subscription cancelations. |
29 | - add_action( 'getpaid_authenticated_action_subscription_cancel', array( $this, 'user_cancel_single_subscription' ) ); |
|
29 | + add_action('getpaid_authenticated_action_subscription_cancel', array($this, 'user_cancel_single_subscription')); |
|
30 | 30 | |
31 | 31 | // Create a subscription whenever an invoice is created, (and update it when it is updated). |
32 | - add_action( 'getpaid_new_invoice', array( $this, 'maybe_create_invoice_subscription' ), 5 ); |
|
33 | - add_action( 'getpaid_update_invoice', array( $this, 'maybe_update_invoice_subscription' ), 5 ); |
|
32 | + add_action('getpaid_new_invoice', array($this, 'maybe_create_invoice_subscription'), 5); |
|
33 | + add_action('getpaid_update_invoice', array($this, 'maybe_update_invoice_subscription'), 5); |
|
34 | 34 | |
35 | 35 | // Handles admin subscription update actions. |
36 | - add_action( 'getpaid_authenticated_admin_action_update_single_subscription', array( $this, 'admin_update_single_subscription' ) ); |
|
37 | - add_action( 'getpaid_authenticated_admin_action_subscription_manual_renew', array( $this, 'admin_renew_single_subscription' ) ); |
|
38 | - add_action( 'getpaid_authenticated_admin_action_subscription_manual_delete', array( $this, 'admin_delete_single_subscription' ) ); |
|
36 | + add_action('getpaid_authenticated_admin_action_update_single_subscription', array($this, 'admin_update_single_subscription')); |
|
37 | + add_action('getpaid_authenticated_admin_action_subscription_manual_renew', array($this, 'admin_renew_single_subscription')); |
|
38 | + add_action('getpaid_authenticated_admin_action_subscription_manual_delete', array($this, 'admin_delete_single_subscription')); |
|
39 | 39 | |
40 | 40 | // Filter invoice item row actions. |
41 | - add_action( 'getpaid-invoice-page-line-item-actions', array( $this, 'filter_invoice_line_item_actions' ), 10, 3 ); |
|
41 | + add_action('getpaid-invoice-page-line-item-actions', array($this, 'filter_invoice_line_item_actions'), 10, 3); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -47,19 +47,19 @@ discard block |
||
47 | 47 | * @param WPInv_Invoice $invoice |
48 | 48 | * @return WPInv_Subscription|bool |
49 | 49 | */ |
50 | - public function get_invoice_subscription( $invoice ) { |
|
50 | + public function get_invoice_subscription($invoice) { |
|
51 | 51 | $subscription_id = $invoice->get_subscription_id(); |
52 | 52 | |
53 | 53 | // Fallback to the parent invoice if the child invoice has no subscription id. |
54 | - if ( empty( $subscription_id ) && $invoice->is_renewal() ) { |
|
54 | + if (empty($subscription_id) && $invoice->is_renewal()) { |
|
55 | 55 | $subscription_id = $invoice->get_parent_payment()->get_subscription_id(); |
56 | 56 | } |
57 | 57 | |
58 | 58 | // Fetch the subscription. |
59 | - $subscription = new WPInv_Subscription( $subscription_id ); |
|
59 | + $subscription = new WPInv_Subscription($subscription_id); |
|
60 | 60 | |
61 | 61 | // Return subscription or use a fallback for backwards compatibility. |
62 | - return $subscription->exists() ? $subscription : wpinv_get_invoice_subscription( $invoice ); |
|
62 | + return $subscription->exists() ? $subscription : wpinv_get_invoice_subscription($invoice); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -67,21 +67,21 @@ discard block |
||
67 | 67 | * |
68 | 68 | * @param WPInv_Invoice $invoice |
69 | 69 | */ |
70 | - public function maybe_deactivate_invoice_subscription( $invoice ) { |
|
70 | + public function maybe_deactivate_invoice_subscription($invoice) { |
|
71 | 71 | |
72 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
72 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
73 | 73 | |
74 | - if ( empty( $subscriptions ) ) { |
|
74 | + if (empty($subscriptions)) { |
|
75 | 75 | return; |
76 | 76 | } |
77 | 77 | |
78 | - if ( ! is_array( $subscriptions ) ) { |
|
79 | - $subscriptions = array( $subscriptions ); |
|
78 | + if (!is_array($subscriptions)) { |
|
79 | + $subscriptions = array($subscriptions); |
|
80 | 80 | } |
81 | 81 | |
82 | - foreach ( $subscriptions as $subscription ) { |
|
83 | - if ( $subscription->is_active() ) { |
|
84 | - $subscription->set_status( 'pending' ); |
|
82 | + foreach ($subscriptions as $subscription) { |
|
83 | + if ($subscription->is_active()) { |
|
84 | + $subscription->set_status('pending'); |
|
85 | 85 | $subscription->save(); |
86 | 86 | } |
87 | 87 | } |
@@ -95,15 +95,15 @@ discard block |
||
95 | 95 | * @param string $from |
96 | 96 | * @param string $to |
97 | 97 | */ |
98 | - public function process_subscription_status_change( $subscription, $from, $to ) { |
|
98 | + public function process_subscription_status_change($subscription, $from, $to) { |
|
99 | 99 | |
100 | 100 | $gateway = $subscription->get_gateway(); |
101 | 101 | |
102 | - if ( ! empty( $gateway ) ) { |
|
103 | - $gateway = sanitize_key( $gateway ); |
|
104 | - $from = sanitize_key( $from ); |
|
105 | - $to = sanitize_key( $to ); |
|
106 | - do_action( "getpaid_{$gateway}_subscription_$to", $subscription, $from ); |
|
102 | + if (!empty($gateway)) { |
|
103 | + $gateway = sanitize_key($gateway); |
|
104 | + $from = sanitize_key($from); |
|
105 | + $to = sanitize_key($to); |
|
106 | + do_action("getpaid_{$gateway}_subscription_$to", $subscription, $from); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | } |
@@ -116,8 +116,8 @@ discard block |
||
116 | 116 | * @deprecated |
117 | 117 | * @return mixed|string|void |
118 | 118 | */ |
119 | - public static function wpinv_get_pretty_subscription_frequency( $period, $frequency_count = 1 ) { |
|
120 | - return getpaid_get_subscription_period_label( $period, $frequency_count ); |
|
119 | + public static function wpinv_get_pretty_subscription_frequency($period, $frequency_count = 1) { |
|
120 | + return getpaid_get_subscription_period_label($period, $frequency_count); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -127,33 +127,33 @@ discard block |
||
127 | 127 | * @since 1.0.0 |
128 | 128 | * @return void |
129 | 129 | */ |
130 | - public function user_cancel_single_subscription( $data ) { |
|
130 | + public function user_cancel_single_subscription($data) { |
|
131 | 131 | |
132 | 132 | // Ensure there is a subscription to cancel. |
133 | - if ( empty( $data['subscription'] ) ) { |
|
133 | + if (empty($data['subscription'])) { |
|
134 | 134 | return; |
135 | 135 | } |
136 | 136 | |
137 | - $subscription = new WPInv_Subscription( (int) $data['subscription'] ); |
|
137 | + $subscription = new WPInv_Subscription((int) $data['subscription']); |
|
138 | 138 | |
139 | 139 | // Ensure that it exists and that it belongs to the current user. |
140 | - if ( ! $subscription->exists() || $subscription->get_customer_id() != get_current_user_id() ) { |
|
141 | - wpinv_set_error( 'invalid_subscription', __( 'You do not have permission to cancel this subscription', 'invoicing' ) ); |
|
140 | + if (!$subscription->exists() || $subscription->get_customer_id() != get_current_user_id()) { |
|
141 | + wpinv_set_error('invalid_subscription', __('You do not have permission to cancel this subscription', 'invoicing')); |
|
142 | 142 | |
143 | 143 | // Can it be cancelled. |
144 | - } else if ( ! $subscription->can_cancel() ) { |
|
145 | - wpinv_set_error( 'cannot_cancel', __( 'This subscription cannot be cancelled as it is not active.', 'invoicing' ) ); |
|
144 | + } else if (!$subscription->can_cancel()) { |
|
145 | + wpinv_set_error('cannot_cancel', __('This subscription cannot be cancelled as it is not active.', 'invoicing')); |
|
146 | 146 | |
147 | 147 | // Cancel it. |
148 | 148 | } else { |
149 | 149 | |
150 | 150 | $subscription->cancel(); |
151 | - wpinv_set_error( 'cancelled', __( 'This subscription has been cancelled.', 'invoicing' ), 'info' ); |
|
151 | + wpinv_set_error('cancelled', __('This subscription has been cancelled.', 'invoicing'), 'info'); |
|
152 | 152 | } |
153 | 153 | |
154 | - $redirect = remove_query_arg( array( 'getpaid-action', 'getpaid-nonce' ) ); |
|
154 | + $redirect = remove_query_arg(array('getpaid-action', 'getpaid-nonce')); |
|
155 | 155 | |
156 | - wp_safe_redirect( $redirect ); |
|
156 | + wp_safe_redirect($redirect); |
|
157 | 157 | exit; |
158 | 158 | |
159 | 159 | } |
@@ -165,41 +165,41 @@ discard block |
||
165 | 165 | * @param WPInv_Invoice $invoice |
166 | 166 | * @since 1.0.0 |
167 | 167 | */ |
168 | - public function maybe_create_invoice_subscription( $invoice ) { |
|
168 | + public function maybe_create_invoice_subscription($invoice) { |
|
169 | 169 | global $getpaid_subscriptions_skip_invoice_update; |
170 | 170 | |
171 | 171 | // Abort if it is not recurring. |
172 | - if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_free() || ! $invoice->is_recurring() || $invoice->is_renewal() ) { |
|
172 | + if (!$invoice->is_type('invoice') || $invoice->is_free() || !$invoice->is_recurring() || $invoice->is_renewal()) { |
|
173 | 173 | return; |
174 | 174 | } |
175 | 175 | |
176 | 176 | // Either group the subscriptions or only process a single suscription. |
177 | - if ( getpaid_should_group_subscriptions( $invoice ) ) { |
|
177 | + if (getpaid_should_group_subscriptions($invoice)) { |
|
178 | 178 | |
179 | 179 | $subscription_groups = array(); |
180 | 180 | $is_first = true; |
181 | 181 | |
182 | - foreach ( getpaid_calculate_subscription_totals( $invoice ) as $group_key => $totals ) { |
|
183 | - $subscription_groups[ $group_key ] = $this->create_invoice_subscription_group( $totals, $invoice, 0, $is_first ); |
|
182 | + foreach (getpaid_calculate_subscription_totals($invoice) as $group_key => $totals) { |
|
183 | + $subscription_groups[$group_key] = $this->create_invoice_subscription_group($totals, $invoice, 0, $is_first); |
|
184 | 184 | |
185 | - if ( $is_first ) { |
|
185 | + if ($is_first) { |
|
186 | 186 | $getpaid_subscriptions_skip_invoice_update = true; |
187 | - $invoice->set_subscription_id( $subscription_groups[ $group_key ]['subscription_id'] ); |
|
187 | + $invoice->set_subscription_id($subscription_groups[$group_key]['subscription_id']); |
|
188 | 188 | $invoice->save(); |
189 | 189 | $getpaid_subscriptions_skip_invoice_update = false; |
190 | 190 | } |
191 | 191 | |
192 | - $is_first = false; |
|
192 | + $is_first = false; |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | // Cache subscription groups. |
196 | - update_post_meta( $invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups ); |
|
196 | + update_post_meta($invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups); |
|
197 | 197 | return true; |
198 | 198 | |
199 | 199 | } |
200 | 200 | |
201 | 201 | $subscription = new WPInv_Subscription(); |
202 | - return $this->update_invoice_subscription( $subscription, $invoice ); |
|
202 | + return $this->update_invoice_subscription($subscription, $invoice); |
|
203 | 203 | |
204 | 204 | } |
205 | 205 | |
@@ -214,47 +214,47 @@ discard block |
||
214 | 214 | * |
215 | 215 | * @since 2.3.0 |
216 | 216 | */ |
217 | - public function create_invoice_subscription_group( $totals, $invoice, $subscription_id = 0, $is_first = false ) { |
|
217 | + public function create_invoice_subscription_group($totals, $invoice, $subscription_id = 0, $is_first = false) { |
|
218 | 218 | |
219 | - $subscription = new WPInv_Subscription( (int) $subscription_id ); |
|
219 | + $subscription = new WPInv_Subscription((int) $subscription_id); |
|
220 | 220 | $initial_amt = $totals['initial_total']; |
221 | 221 | $recurring_amt = $totals['recurring_total']; |
222 | 222 | $fees = array(); |
223 | 223 | |
224 | 224 | // Maybe add recurring fees. |
225 | - if ( $is_first ) { |
|
225 | + if ($is_first) { |
|
226 | 226 | |
227 | - foreach ( $invoice->get_fees() as $fee ) { |
|
228 | - if ( ! empty( $fee['recurring_fee'] ) ) { |
|
229 | - $initial_amt += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
230 | - $recurring_amt += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
227 | + foreach ($invoice->get_fees() as $fee) { |
|
228 | + if (!empty($fee['recurring_fee'])) { |
|
229 | + $initial_amt += wpinv_sanitize_amount($fee['initial_fee']); |
|
230 | + $recurring_amt += wpinv_sanitize_amount($fee['recurring_fee']); |
|
231 | 231 | $fees[] = $fee; |
232 | 232 | } |
233 | 233 | } |
234 | 234 | |
235 | 235 | } |
236 | 236 | |
237 | - $subscription->set_customer_id( $invoice->get_customer_id() ); |
|
238 | - $subscription->set_parent_invoice_id( $invoice->get_id() ); |
|
239 | - $subscription->set_initial_amount( $initial_amt ); |
|
240 | - $subscription->set_recurring_amount( $recurring_amt ); |
|
241 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
242 | - $subscription->set_status( $invoice->is_paid() ? 'active' : 'pending' ); |
|
243 | - $subscription->set_product_id( $totals['item_id'] ); |
|
244 | - $subscription->set_period( $totals['period'] ); |
|
245 | - $subscription->set_frequency( $totals['interval'] ); |
|
246 | - $subscription->set_bill_times( $totals['recurring_limit'] ); |
|
247 | - $subscription->set_next_renewal_date( $totals['renews_on'] ); |
|
237 | + $subscription->set_customer_id($invoice->get_customer_id()); |
|
238 | + $subscription->set_parent_invoice_id($invoice->get_id()); |
|
239 | + $subscription->set_initial_amount($initial_amt); |
|
240 | + $subscription->set_recurring_amount($recurring_amt); |
|
241 | + $subscription->set_date_created(current_time('mysql')); |
|
242 | + $subscription->set_status($invoice->is_paid() ? 'active' : 'pending'); |
|
243 | + $subscription->set_product_id($totals['item_id']); |
|
244 | + $subscription->set_period($totals['period']); |
|
245 | + $subscription->set_frequency($totals['interval']); |
|
246 | + $subscription->set_bill_times($totals['recurring_limit']); |
|
247 | + $subscription->set_next_renewal_date($totals['renews_on']); |
|
248 | 248 | |
249 | 249 | // Trial periods. |
250 | - if ( ! empty( $totals['trialling'] ) ) { |
|
251 | - $subscription->set_trial_period( $totals['trialling'] ); |
|
252 | - $subscription->set_status( 'trialling' ); |
|
250 | + if (!empty($totals['trialling'])) { |
|
251 | + $subscription->set_trial_period($totals['trialling']); |
|
252 | + $subscription->set_status('trialling'); |
|
253 | 253 | |
254 | 254 | // If initial amount is free, treat it as a free trial even if the subscription item does not have a free trial. |
255 | - } else if ( empty( $initial_amt ) ) { |
|
256 | - $subscription->set_trial_period( $totals['interval'] . ' ' . $totals['period'] ); |
|
257 | - $subscription->set_status( 'trialling' ); |
|
255 | + } else if (empty($initial_amt)) { |
|
256 | + $subscription->set_trial_period($totals['interval'] . ' ' . $totals['period']); |
|
257 | + $subscription->set_status('trialling'); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | $subscription->save(); |
@@ -272,87 +272,87 @@ discard block |
||
272 | 272 | * @param WPInv_Invoice $invoice |
273 | 273 | * @since 1.0.19 |
274 | 274 | */ |
275 | - public function maybe_update_invoice_subscription( $invoice ) { |
|
275 | + public function maybe_update_invoice_subscription($invoice) { |
|
276 | 276 | global $getpaid_subscriptions_skip_invoice_update; |
277 | 277 | |
278 | 278 | // Avoid infinite loops. |
279 | - if ( ! empty( $getpaid_subscriptions_skip_invoice_update ) ) { |
|
279 | + if (!empty($getpaid_subscriptions_skip_invoice_update)) { |
|
280 | 280 | return; |
281 | 281 | } |
282 | 282 | |
283 | 283 | // Do not process renewals. |
284 | - if ( $invoice->is_renewal() ) { |
|
284 | + if ($invoice->is_renewal()) { |
|
285 | 285 | return; |
286 | 286 | } |
287 | 287 | |
288 | 288 | // Delete existing subscriptions if available and the invoice is not recurring. |
289 | - if ( ! $invoice->is_recurring() ) { |
|
290 | - $this->delete_invoice_subscriptions( $invoice ); |
|
289 | + if (!$invoice->is_recurring()) { |
|
290 | + $this->delete_invoice_subscriptions($invoice); |
|
291 | 291 | return; |
292 | 292 | } |
293 | 293 | |
294 | 294 | // Fetch existing subscriptions. |
295 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
295 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
296 | 296 | |
297 | 297 | // Create new ones if no existing subscriptions. |
298 | - if ( empty( $subscriptions ) ) { |
|
299 | - return $this->maybe_create_invoice_subscription( $invoice ); |
|
298 | + if (empty($subscriptions)) { |
|
299 | + return $this->maybe_create_invoice_subscription($invoice); |
|
300 | 300 | } |
301 | 301 | |
302 | 302 | // Abort if an invoice is paid and already has a subscription. |
303 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
303 | + if ($invoice->is_paid() || $invoice->is_refunded()) { |
|
304 | 304 | return; |
305 | 305 | } |
306 | 306 | |
307 | - $is_grouped = is_array( $subscriptions ); |
|
308 | - $should_group = getpaid_should_group_subscriptions( $invoice ); |
|
307 | + $is_grouped = is_array($subscriptions); |
|
308 | + $should_group = getpaid_should_group_subscriptions($invoice); |
|
309 | 309 | |
310 | 310 | // Ensure that the subscriptions are only grouped if there are more than 1 recurring items. |
311 | - if ( $is_grouped != $should_group ) { |
|
312 | - $this->delete_invoice_subscriptions( $invoice ); |
|
313 | - delete_post_meta( $invoice->get_id(), 'getpaid_subscription_groups' ); |
|
314 | - return $this->maybe_create_invoice_subscription( $invoice ); |
|
311 | + if ($is_grouped != $should_group) { |
|
312 | + $this->delete_invoice_subscriptions($invoice); |
|
313 | + delete_post_meta($invoice->get_id(), 'getpaid_subscription_groups'); |
|
314 | + return $this->maybe_create_invoice_subscription($invoice); |
|
315 | 315 | } |
316 | 316 | |
317 | 317 | // If there is only one recurring item... |
318 | - if ( ! $is_grouped ) { |
|
319 | - return $this->update_invoice_subscription( $subscriptions, $invoice ); |
|
318 | + if (!$is_grouped) { |
|
319 | + return $this->update_invoice_subscription($subscriptions, $invoice); |
|
320 | 320 | } |
321 | 321 | |
322 | 322 | // Process subscription groups. |
323 | - $current_groups = getpaid_get_invoice_subscription_groups( $invoice->get_id() ); |
|
323 | + $current_groups = getpaid_get_invoice_subscription_groups($invoice->get_id()); |
|
324 | 324 | $subscription_groups = array(); |
325 | 325 | $is_first = true; |
326 | 326 | |
327 | 327 | // Create new subscription groups. |
328 | - foreach ( getpaid_calculate_subscription_totals( $invoice ) as $group_key => $totals ) { |
|
329 | - $subscription_id = isset( $current_groups[ $group_key ] ) ? $current_groups[ $group_key ]['subscription_id'] : 0; |
|
330 | - $subscription_groups[ $group_key ] = $this->create_invoice_subscription_group( $totals, $invoice, $subscription_id, $is_first ); |
|
328 | + foreach (getpaid_calculate_subscription_totals($invoice) as $group_key => $totals) { |
|
329 | + $subscription_id = isset($current_groups[$group_key]) ? $current_groups[$group_key]['subscription_id'] : 0; |
|
330 | + $subscription_groups[$group_key] = $this->create_invoice_subscription_group($totals, $invoice, $subscription_id, $is_first); |
|
331 | 331 | |
332 | - if ( $is_first && $invoice->get_subscription_id() !== $subscription_groups[ $group_key ]['subscription_id'] ) { |
|
332 | + if ($is_first && $invoice->get_subscription_id() !== $subscription_groups[$group_key]['subscription_id']) { |
|
333 | 333 | $getpaid_subscriptions_skip_invoice_update = true; |
334 | - $invoice->set_subscription_id( $subscription_groups[ $group_key ]['subscription_id'] ); |
|
334 | + $invoice->set_subscription_id($subscription_groups[$group_key]['subscription_id']); |
|
335 | 335 | $invoice->save(); |
336 | 336 | $getpaid_subscriptions_skip_invoice_update = false; |
337 | 337 | } |
338 | 338 | |
339 | - $is_first = false; |
|
339 | + $is_first = false; |
|
340 | 340 | } |
341 | 341 | |
342 | 342 | // Delete non-existent subscription groups. |
343 | - foreach ( $current_groups as $group_key => $data ) { |
|
344 | - if ( ! isset( $subscription_groups[ $group_key ] ) ) { |
|
345 | - $subscription = new WPInv_Subscription( (int) $data['subscription_id'] ); |
|
343 | + foreach ($current_groups as $group_key => $data) { |
|
344 | + if (!isset($subscription_groups[$group_key])) { |
|
345 | + $subscription = new WPInv_Subscription((int) $data['subscription_id']); |
|
346 | 346 | |
347 | - if ( $subscription->exists() ) { |
|
348 | - $subscription->delete( true ); |
|
347 | + if ($subscription->exists()) { |
|
348 | + $subscription->delete(true); |
|
349 | 349 | } |
350 | 350 | |
351 | 351 | } |
352 | 352 | } |
353 | 353 | |
354 | 354 | // Cache subscription groups. |
355 | - update_post_meta( $invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups ); |
|
355 | + update_post_meta($invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups); |
|
356 | 356 | return true; |
357 | 357 | |
358 | 358 | } |
@@ -362,20 +362,20 @@ discard block |
||
362 | 362 | * |
363 | 363 | * @param WPInv_Invoice $invoice |
364 | 364 | */ |
365 | - public function delete_invoice_subscriptions( $invoice ) { |
|
365 | + public function delete_invoice_subscriptions($invoice) { |
|
366 | 366 | |
367 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
367 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
368 | 368 | |
369 | - if ( empty( $subscriptions ) ) { |
|
369 | + if (empty($subscriptions)) { |
|
370 | 370 | return; |
371 | 371 | } |
372 | 372 | |
373 | - if ( ! is_array( $subscriptions ) ) { |
|
374 | - $subscriptions = array( $subscriptions ); |
|
373 | + if (!is_array($subscriptions)) { |
|
374 | + $subscriptions = array($subscriptions); |
|
375 | 375 | } |
376 | 376 | |
377 | - foreach ( $subscriptions as $subscription ) { |
|
378 | - $subscription->delete( true ); |
|
377 | + foreach ($subscriptions as $subscription) { |
|
378 | + $subscription->delete(true); |
|
379 | 379 | } |
380 | 380 | |
381 | 381 | } |
@@ -388,57 +388,57 @@ discard block |
||
388 | 388 | * @param WPInv_Invoice $invoice |
389 | 389 | * @since 1.0.19 |
390 | 390 | */ |
391 | - public function update_invoice_subscription( $subscription, $invoice ) { |
|
391 | + public function update_invoice_subscription($subscription, $invoice) { |
|
392 | 392 | |
393 | 393 | // Delete the subscription if an invoice is free or nolonger recurring. |
394 | - if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_free() || ! $invoice->is_recurring() ) { |
|
394 | + if (!$invoice->is_type('invoice') || $invoice->is_free() || !$invoice->is_recurring()) { |
|
395 | 395 | return $subscription->delete(); |
396 | 396 | } |
397 | 397 | |
398 | - $subscription->set_customer_id( $invoice->get_customer_id() ); |
|
399 | - $subscription->set_parent_invoice_id( $invoice->get_id() ); |
|
400 | - $subscription->set_initial_amount( $invoice->get_initial_total() ); |
|
401 | - $subscription->set_recurring_amount( $invoice->get_recurring_total() ); |
|
402 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
403 | - $subscription->set_status( $invoice->is_paid() ? 'active' : 'pending' ); |
|
398 | + $subscription->set_customer_id($invoice->get_customer_id()); |
|
399 | + $subscription->set_parent_invoice_id($invoice->get_id()); |
|
400 | + $subscription->set_initial_amount($invoice->get_initial_total()); |
|
401 | + $subscription->set_recurring_amount($invoice->get_recurring_total()); |
|
402 | + $subscription->set_date_created(current_time('mysql')); |
|
403 | + $subscription->set_status($invoice->is_paid() ? 'active' : 'pending'); |
|
404 | 404 | |
405 | 405 | // Get the recurring item and abort if it does not exist. |
406 | - $subscription_item = $invoice->get_recurring( true ); |
|
407 | - if ( ! $subscription_item->get_id() ) { |
|
406 | + $subscription_item = $invoice->get_recurring(true); |
|
407 | + if (!$subscription_item->get_id()) { |
|
408 | 408 | $invoice->set_subscription_id(0); |
409 | 409 | $invoice->save(); |
410 | 410 | return $subscription->delete(); |
411 | 411 | } |
412 | 412 | |
413 | - $subscription->set_product_id( $subscription_item->get_id() ); |
|
414 | - $subscription->set_period( $subscription_item->get_recurring_period( true ) ); |
|
415 | - $subscription->set_frequency( $subscription_item->get_recurring_interval() ); |
|
416 | - $subscription->set_bill_times( $subscription_item->get_recurring_limit() ); |
|
413 | + $subscription->set_product_id($subscription_item->get_id()); |
|
414 | + $subscription->set_period($subscription_item->get_recurring_period(true)); |
|
415 | + $subscription->set_frequency($subscription_item->get_recurring_interval()); |
|
416 | + $subscription->set_bill_times($subscription_item->get_recurring_limit()); |
|
417 | 417 | |
418 | 418 | // Calculate the next renewal date. |
419 | - $period = $subscription_item->get_recurring_period( true ); |
|
419 | + $period = $subscription_item->get_recurring_period(true); |
|
420 | 420 | $interval = $subscription_item->get_recurring_interval(); |
421 | 421 | |
422 | 422 | // If the subscription item has a trial period... |
423 | - if ( $subscription_item->has_free_trial() ) { |
|
424 | - $period = $subscription_item->get_trial_period( true ); |
|
423 | + if ($subscription_item->has_free_trial()) { |
|
424 | + $period = $subscription_item->get_trial_period(true); |
|
425 | 425 | $interval = $subscription_item->get_trial_interval(); |
426 | - $subscription->set_trial_period( $interval . ' ' . $period ); |
|
427 | - $subscription->set_status( 'trialling' ); |
|
426 | + $subscription->set_trial_period($interval . ' ' . $period); |
|
427 | + $subscription->set_status('trialling'); |
|
428 | 428 | } |
429 | 429 | |
430 | 430 | // If initial amount is free, treat it as a free trial even if the subscription item does not have a free trial. |
431 | - if ( $invoice->has_free_trial() ) { |
|
432 | - $subscription->set_trial_period( $interval . ' ' . $period ); |
|
433 | - $subscription->set_status( 'trialling' ); |
|
431 | + if ($invoice->has_free_trial()) { |
|
432 | + $subscription->set_trial_period($interval . ' ' . $period); |
|
433 | + $subscription->set_status('trialling'); |
|
434 | 434 | } |
435 | 435 | |
436 | 436 | // Calculate the next renewal date. |
437 | - $expiration = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", strtotime( $subscription->get_date_created() ) ) ); |
|
437 | + $expiration = date('Y-m-d H:i:s', strtotime("+$interval $period", strtotime($subscription->get_date_created()))); |
|
438 | 438 | |
439 | - $subscription->set_next_renewal_date( $expiration ); |
|
439 | + $subscription->set_next_renewal_date($expiration); |
|
440 | 440 | $subscription->save(); |
441 | - $invoice->set_subscription_id( $subscription->get_id() ); |
|
441 | + $invoice->set_subscription_id($subscription->get_id()); |
|
442 | 442 | return $subscription->get_id(); |
443 | 443 | |
444 | 444 | } |
@@ -449,27 +449,27 @@ discard block |
||
449 | 449 | * @param array $data |
450 | 450 | * @since 1.0.19 |
451 | 451 | */ |
452 | - public function admin_update_single_subscription( $args ) { |
|
452 | + public function admin_update_single_subscription($args) { |
|
453 | 453 | |
454 | 454 | // Ensure the subscription exists and that a status has been given. |
455 | - if ( empty( $args['subscription_id'] ) ) { |
|
455 | + if (empty($args['subscription_id'])) { |
|
456 | 456 | return; |
457 | 457 | } |
458 | 458 | |
459 | 459 | // Retrieve the subscriptions. |
460 | - $subscription = new WPInv_Subscription( $args['subscription_id'] ); |
|
460 | + $subscription = new WPInv_Subscription($args['subscription_id']); |
|
461 | 461 | |
462 | - if ( $subscription->get_id() ) { |
|
462 | + if ($subscription->get_id()) { |
|
463 | 463 | |
464 | 464 | $subscription->set_props( |
465 | 465 | array( |
466 | - 'status' => isset( $args['subscription_status'] ) ? $args['subscription_status'] : null, |
|
467 | - 'profile_id' => isset( $args['wpinv_subscription_profile_id'] ) ? $args['wpinv_subscription_profile_id'] : null, |
|
466 | + 'status' => isset($args['subscription_status']) ? $args['subscription_status'] : null, |
|
467 | + 'profile_id' => isset($args['wpinv_subscription_profile_id']) ? $args['wpinv_subscription_profile_id'] : null, |
|
468 | 468 | ) |
469 | 469 | ); |
470 | 470 | |
471 | 471 | $subscription->save(); |
472 | - getpaid_admin()->show_info( __( 'Subscription updated', 'invoicing' ) ); |
|
472 | + getpaid_admin()->show_info(__('Subscription updated', 'invoicing')); |
|
473 | 473 | |
474 | 474 | } |
475 | 475 | |
@@ -481,27 +481,27 @@ discard block |
||
481 | 481 | * @param array $data |
482 | 482 | * @since 1.0.19 |
483 | 483 | */ |
484 | - public function admin_renew_single_subscription( $args ) { |
|
484 | + public function admin_renew_single_subscription($args) { |
|
485 | 485 | |
486 | 486 | // Ensure the subscription exists and that a status has been given. |
487 | - if ( empty( $args['id'] ) ) { |
|
487 | + if (empty($args['id'])) { |
|
488 | 488 | return; |
489 | 489 | } |
490 | 490 | |
491 | 491 | // Retrieve the subscriptions. |
492 | - $subscription = new WPInv_Subscription( $args['id'] ); |
|
492 | + $subscription = new WPInv_Subscription($args['id']); |
|
493 | 493 | |
494 | - if ( $subscription->get_id() ) { |
|
494 | + if ($subscription->get_id()) { |
|
495 | 495 | |
496 | - do_action( 'getpaid_admin_renew_subscription', $subscription ); |
|
496 | + do_action('getpaid_admin_renew_subscription', $subscription); |
|
497 | 497 | |
498 | - $args = array( 'transaction_id', $subscription->get_parent_invoice()->generate_key( 'renewal_' ) ); |
|
498 | + $args = array('transaction_id', $subscription->get_parent_invoice()->generate_key('renewal_')); |
|
499 | 499 | |
500 | - if ( ! $subscription->add_payment( $args ) ) { |
|
501 | - getpaid_admin()->show_error( __( 'We are unable to renew this subscription as the parent invoice does not exist.', 'invoicing' ) ); |
|
500 | + if (!$subscription->add_payment($args)) { |
|
501 | + getpaid_admin()->show_error(__('We are unable to renew this subscription as the parent invoice does not exist.', 'invoicing')); |
|
502 | 502 | } else { |
503 | 503 | $subscription->renew(); |
504 | - getpaid_admin()->show_info( __( 'This subscription has been renewed and extended.', 'invoicing' ) ); |
|
504 | + getpaid_admin()->show_info(__('This subscription has been renewed and extended.', 'invoicing')); |
|
505 | 505 | } |
506 | 506 | |
507 | 507 | wp_safe_redirect( |
@@ -524,20 +524,20 @@ discard block |
||
524 | 524 | * @param array $data |
525 | 525 | * @since 1.0.19 |
526 | 526 | */ |
527 | - public function admin_delete_single_subscription( $args ) { |
|
527 | + public function admin_delete_single_subscription($args) { |
|
528 | 528 | |
529 | 529 | // Ensure the subscription exists and that a status has been given. |
530 | - if ( empty( $args['id'] ) ) { |
|
530 | + if (empty($args['id'])) { |
|
531 | 531 | return; |
532 | 532 | } |
533 | 533 | |
534 | 534 | // Retrieve the subscriptions. |
535 | - $subscription = new WPInv_Subscription( $args['id'] ); |
|
535 | + $subscription = new WPInv_Subscription($args['id']); |
|
536 | 536 | |
537 | - if ( $subscription->delete() ) { |
|
538 | - getpaid_admin()->show_info( __( 'This subscription has been deleted.', 'invoicing' ) ); |
|
537 | + if ($subscription->delete()) { |
|
538 | + getpaid_admin()->show_info(__('This subscription has been deleted.', 'invoicing')); |
|
539 | 539 | } else { |
540 | - getpaid_admin()->show_error( __( 'We are unable to delete this subscription. Please try again.', 'invoicing' ) ); |
|
540 | + getpaid_admin()->show_error(__('We are unable to delete this subscription. Please try again.', 'invoicing')); |
|
541 | 541 | } |
542 | 542 | |
543 | 543 | $redirected = wp_safe_redirect( |
@@ -550,7 +550,7 @@ discard block |
||
550 | 550 | ) |
551 | 551 | ); |
552 | 552 | |
553 | - if ( $redirected ) { |
|
553 | + if ($redirected) { |
|
554 | 554 | exit; |
555 | 555 | } |
556 | 556 | |
@@ -563,16 +563,16 @@ discard block |
||
563 | 563 | * @param WPInv_Item $item |
564 | 564 | * @param WPInv_Invoice $invoice |
565 | 565 | */ |
566 | - public function filter_invoice_line_item_actions( $actions, $item, $invoice ) { |
|
566 | + public function filter_invoice_line_item_actions($actions, $item, $invoice) { |
|
567 | 567 | |
568 | 568 | // Abort if this invoice uses subscription groups. |
569 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
570 | - if ( ! $invoice->is_recurring() || ! is_object( $subscriptions ) ) { |
|
569 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
570 | + if (!$invoice->is_recurring() || !is_object($subscriptions)) { |
|
571 | 571 | return $actions; |
572 | 572 | } |
573 | 573 | |
574 | 574 | // Fetch item subscription. |
575 | - $args = array( |
|
575 | + $args = array( |
|
576 | 576 | 'invoice_in' => $invoice->is_parent() ? $invoice->get_id() : $invoice->get_parent_id(), |
577 | 577 | 'product_in' => $item->get_id(), |
578 | 578 | 'number' => 1, |
@@ -580,13 +580,13 @@ discard block |
||
580 | 580 | 'fields' => 'id', |
581 | 581 | ); |
582 | 582 | |
583 | - $subscription = new GetPaid_Subscriptions_Query( $args ); |
|
583 | + $subscription = new GetPaid_Subscriptions_Query($args); |
|
584 | 584 | $subscription = $subscription->get_results(); |
585 | 585 | |
586 | 586 | // In case we found a match... |
587 | - if ( ! empty( $subscription ) ) { |
|
588 | - $url = esc_url( add_query_arg( 'subscription', (int) $subscription[0], get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ) ); |
|
589 | - $actions['subscription'] = "<a href='$url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
587 | + if (!empty($subscription)) { |
|
588 | + $url = esc_url(add_query_arg('subscription', (int) $subscription[0], get_permalink((int) wpinv_get_option('invoice_subscription_page')))); |
|
589 | + $actions['subscription'] = "<a href='$url' class='text-decoration-none'>" . __('Manage Subscription', 'invoicing') . '</a>'; |
|
590 | 590 | } |
591 | 591 | |
592 | 592 | return $actions; |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
141 | 141 | */ |
142 | 142 | function wpinv_get_template_html( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
143 | - return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
143 | + return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @return string |
159 | 159 | */ |
160 | 160 | function wpinv_get_theme_template_dir_name() { |
161 | - return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
161 | + return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -175,122 +175,122 @@ discard block |
||
175 | 175 | } |
176 | 176 | |
177 | 177 | function wpinv_get_template_part( $slug, $name = null, $load = true ) { |
178 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
178 | + do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
179 | 179 | |
180 | - // Setup possible parts |
|
181 | - $templates = array(); |
|
182 | - if ( isset( $name ) ) |
|
183 | - $templates[] = $slug . '-' . $name . '.php'; |
|
184 | - $templates[] = $slug . '.php'; |
|
180 | + // Setup possible parts |
|
181 | + $templates = array(); |
|
182 | + if ( isset( $name ) ) |
|
183 | + $templates[] = $slug . '-' . $name . '.php'; |
|
184 | + $templates[] = $slug . '.php'; |
|
185 | 185 | |
186 | - // Allow template parts to be filtered |
|
187 | - $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
186 | + // Allow template parts to be filtered |
|
187 | + $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
188 | 188 | |
189 | - // Return the part that is found |
|
190 | - return wpinv_locate_tmpl( $templates, $load, false ); |
|
189 | + // Return the part that is found |
|
190 | + return wpinv_locate_tmpl( $templates, $load, false ); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | function wpinv_locate_tmpl( $template_names, $load = false, $require_once = true ) { |
194 | - // No file found yet |
|
195 | - $located = false; |
|
194 | + // No file found yet |
|
195 | + $located = false; |
|
196 | 196 | |
197 | - // Try to find a template file |
|
198 | - foreach ( (array)$template_names as $template_name ) { |
|
197 | + // Try to find a template file |
|
198 | + foreach ( (array)$template_names as $template_name ) { |
|
199 | 199 | |
200 | - // Continue if template is empty |
|
201 | - if ( empty( $template_name ) ) |
|
202 | - continue; |
|
200 | + // Continue if template is empty |
|
201 | + if ( empty( $template_name ) ) |
|
202 | + continue; |
|
203 | 203 | |
204 | - // Trim off any slashes from the template name |
|
205 | - $template_name = ltrim( $template_name, '/' ); |
|
204 | + // Trim off any slashes from the template name |
|
205 | + $template_name = ltrim( $template_name, '/' ); |
|
206 | 206 | |
207 | - // try locating this template file by looping through the template paths |
|
208 | - foreach( wpinv_get_theme_template_paths() as $template_path ) { |
|
207 | + // try locating this template file by looping through the template paths |
|
208 | + foreach( wpinv_get_theme_template_paths() as $template_path ) { |
|
209 | 209 | |
210 | - if( file_exists( $template_path . $template_name ) ) { |
|
211 | - $located = $template_path . $template_name; |
|
212 | - break; |
|
213 | - } |
|
214 | - } |
|
210 | + if( file_exists( $template_path . $template_name ) ) { |
|
211 | + $located = $template_path . $template_name; |
|
212 | + break; |
|
213 | + } |
|
214 | + } |
|
215 | 215 | |
216 | - if( !empty( $located ) ) { |
|
217 | - break; |
|
218 | - } |
|
219 | - } |
|
216 | + if( !empty( $located ) ) { |
|
217 | + break; |
|
218 | + } |
|
219 | + } |
|
220 | 220 | |
221 | - if ( ( true == $load ) && ! empty( $located ) ) |
|
222 | - load_template( $located, $require_once ); |
|
221 | + if ( ( true == $load ) && ! empty( $located ) ) |
|
222 | + load_template( $located, $require_once ); |
|
223 | 223 | |
224 | - return $located; |
|
224 | + return $located; |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | function wpinv_get_theme_template_paths() { |
228 | - $template_dir = wpinv_get_theme_template_dir_name(); |
|
228 | + $template_dir = wpinv_get_theme_template_dir_name(); |
|
229 | 229 | |
230 | - $file_paths = array( |
|
231 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
232 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
233 | - 100 => wpinv_get_templates_dir() |
|
234 | - ); |
|
230 | + $file_paths = array( |
|
231 | + 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
232 | + 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
233 | + 100 => wpinv_get_templates_dir() |
|
234 | + ); |
|
235 | 235 | |
236 | - $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
236 | + $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
237 | 237 | |
238 | - // sort the file paths based on priority |
|
239 | - ksort( $file_paths, SORT_NUMERIC ); |
|
238 | + // sort the file paths based on priority |
|
239 | + ksort( $file_paths, SORT_NUMERIC ); |
|
240 | 240 | |
241 | - return array_map( 'trailingslashit', $file_paths ); |
|
241 | + return array_map( 'trailingslashit', $file_paths ); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | function wpinv_checkout_meta_tags() { |
245 | 245 | |
246 | - $pages = array(); |
|
247 | - $pages[] = wpinv_get_option( 'success_page' ); |
|
248 | - $pages[] = wpinv_get_option( 'failure_page' ); |
|
249 | - $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
250 | - $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
246 | + $pages = array(); |
|
247 | + $pages[] = wpinv_get_option( 'success_page' ); |
|
248 | + $pages[] = wpinv_get_option( 'failure_page' ); |
|
249 | + $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
250 | + $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
251 | 251 | |
252 | - if( !wpinv_is_checkout() && !is_page( $pages ) ) { |
|
253 | - return; |
|
254 | - } |
|
252 | + if( !wpinv_is_checkout() && !is_page( $pages ) ) { |
|
253 | + return; |
|
254 | + } |
|
255 | 255 | |
256 | - echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
256 | + echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
257 | 257 | } |
258 | 258 | add_action( 'wp_head', 'wpinv_checkout_meta_tags' ); |
259 | 259 | |
260 | 260 | function wpinv_add_body_classes( $class ) { |
261 | - $classes = (array)$class; |
|
261 | + $classes = (array)$class; |
|
262 | 262 | |
263 | - if( wpinv_is_checkout() ) { |
|
264 | - $classes[] = 'wpinv-checkout'; |
|
265 | - $classes[] = 'wpinv-page'; |
|
266 | - } |
|
263 | + if( wpinv_is_checkout() ) { |
|
264 | + $classes[] = 'wpinv-checkout'; |
|
265 | + $classes[] = 'wpinv-page'; |
|
266 | + } |
|
267 | 267 | |
268 | - if( wpinv_is_success_page() ) { |
|
269 | - $classes[] = 'wpinv-success'; |
|
270 | - $classes[] = 'wpinv-page'; |
|
271 | - } |
|
268 | + if( wpinv_is_success_page() ) { |
|
269 | + $classes[] = 'wpinv-success'; |
|
270 | + $classes[] = 'wpinv-page'; |
|
271 | + } |
|
272 | 272 | |
273 | - if( wpinv_is_failed_transaction_page() ) { |
|
274 | - $classes[] = 'wpinv-failed-transaction'; |
|
275 | - $classes[] = 'wpinv-page'; |
|
276 | - } |
|
273 | + if( wpinv_is_failed_transaction_page() ) { |
|
274 | + $classes[] = 'wpinv-failed-transaction'; |
|
275 | + $classes[] = 'wpinv-page'; |
|
276 | + } |
|
277 | 277 | |
278 | - if( wpinv_is_invoice_history_page() ) { |
|
279 | - $classes[] = 'wpinv-history'; |
|
280 | - $classes[] = 'wpinv-page'; |
|
281 | - } |
|
278 | + if( wpinv_is_invoice_history_page() ) { |
|
279 | + $classes[] = 'wpinv-history'; |
|
280 | + $classes[] = 'wpinv-page'; |
|
281 | + } |
|
282 | 282 | |
283 | - if( wpinv_is_subscriptions_history_page() ) { |
|
284 | - $classes[] = 'wpinv-subscription'; |
|
285 | - $classes[] = 'wpinv-page'; |
|
286 | - } |
|
283 | + if( wpinv_is_subscriptions_history_page() ) { |
|
284 | + $classes[] = 'wpinv-subscription'; |
|
285 | + $classes[] = 'wpinv-page'; |
|
286 | + } |
|
287 | 287 | |
288 | - if( wpinv_is_test_mode() ) { |
|
289 | - $classes[] = 'wpinv-test-mode'; |
|
290 | - $classes[] = 'wpinv-page'; |
|
291 | - } |
|
288 | + if( wpinv_is_test_mode() ) { |
|
289 | + $classes[] = 'wpinv-test-mode'; |
|
290 | + $classes[] = 'wpinv-page'; |
|
291 | + } |
|
292 | 292 | |
293 | - return array_unique( $classes ); |
|
293 | + return array_unique( $classes ); |
|
294 | 294 | } |
295 | 295 | add_filter( 'body_class', 'wpinv_add_body_classes' ); |
296 | 296 | |
@@ -821,21 +821,21 @@ discard block |
||
821 | 821 | |
822 | 822 | $formatted_address = str_ireplace( array_keys( $replacements ), $replacements, $format ); |
823 | 823 | |
824 | - // Remove unavailable tags. |
|
824 | + // Remove unavailable tags. |
|
825 | 825 | $formatted_address = preg_replace( "/\{\{\w+\}\}/", '', $formatted_address ); |
826 | 826 | |
827 | 827 | // Clean up white space. |
828 | - $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
828 | + $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
829 | 829 | $formatted_address = preg_replace( '/\n\n+/', "\n", $formatted_address ); |
830 | 830 | |
831 | 831 | // Break newlines apart and remove empty lines/trim commas and white space. |
832 | - $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
832 | + $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
833 | 833 | |
834 | 834 | // Add html breaks. |
835 | - $formatted_address = implode( $separator, $formatted_address ); |
|
835 | + $formatted_address = implode( $separator, $formatted_address ); |
|
836 | 836 | |
837 | - // We're done! |
|
838 | - return $formatted_address; |
|
837 | + // We're done! |
|
838 | + return $formatted_address; |
|
839 | 839 | |
840 | 840 | } |
841 | 841 | |
@@ -881,7 +881,7 @@ discard block |
||
881 | 881 | function getpaid_display_invoice_subscriptions( $invoice ) { |
882 | 882 | |
883 | 883 | // Subscriptions. |
884 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
884 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
885 | 885 | |
886 | 886 | if ( empty( $subscriptions ) || ! $invoice->is_recurring() ) { |
887 | 887 | return; |
@@ -1089,7 +1089,7 @@ discard block |
||
1089 | 1089 | } |
1090 | 1090 | |
1091 | 1091 | function wpinv_empty_cart_message() { |
1092 | - return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
1092 | + return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
1093 | 1093 | } |
1094 | 1094 | |
1095 | 1095 | /** |
@@ -1281,10 +1281,10 @@ discard block |
||
1281 | 1281 | |
1282 | 1282 | if ( 0 == count( $form->get_items() ) ) { |
1283 | 1283 | echo aui()->alert( |
1284 | - array( |
|
1285 | - 'type' => 'warning', |
|
1286 | - 'content' => __( 'No published items found', 'invoicing' ), |
|
1287 | - ) |
|
1284 | + array( |
|
1285 | + 'type' => 'warning', |
|
1286 | + 'content' => __( 'No published items found', 'invoicing' ), |
|
1287 | + ) |
|
1288 | 1288 | ); |
1289 | 1289 | return; |
1290 | 1290 | } |
@@ -1302,21 +1302,21 @@ discard block |
||
1302 | 1302 | $invoice = wpinv_get_invoice( $invoice_id ); |
1303 | 1303 | |
1304 | 1304 | if ( empty( $invoice ) ) { |
1305 | - echo aui()->alert( |
|
1306 | - array( |
|
1307 | - 'type' => 'warning', |
|
1308 | - 'content' => __( 'Invoice not found', 'invoicing' ), |
|
1309 | - ) |
|
1305 | + echo aui()->alert( |
|
1306 | + array( |
|
1307 | + 'type' => 'warning', |
|
1308 | + 'content' => __( 'Invoice not found', 'invoicing' ), |
|
1309 | + ) |
|
1310 | 1310 | ); |
1311 | 1311 | return; |
1312 | 1312 | } |
1313 | 1313 | |
1314 | 1314 | if ( $invoice->is_paid() ) { |
1315 | - echo aui()->alert( |
|
1316 | - array( |
|
1317 | - 'type' => 'warning', |
|
1318 | - 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
1319 | - ) |
|
1315 | + echo aui()->alert( |
|
1316 | + array( |
|
1317 | + 'type' => 'warning', |
|
1318 | + 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
1319 | + ) |
|
1320 | 1320 | ); |
1321 | 1321 | return; |
1322 | 1322 | } |
@@ -1378,7 +1378,7 @@ discard block |
||
1378 | 1378 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-form='$form'>$label</button>"; |
1379 | 1379 | } |
1380 | 1380 | |
1381 | - if ( ! empty( $items ) ) { |
|
1381 | + if ( ! empty( $items ) ) { |
|
1382 | 1382 | $items = esc_attr( $items ); |
1383 | 1383 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-item='$items'>$label</button>"; |
1384 | 1384 | } |
@@ -4,99 +4,99 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Displays an invoice. |
11 | 11 | * |
12 | 12 | * @param WPInv_Invoice $invoice. |
13 | 13 | */ |
14 | -function getpaid_invoice( $invoice ) { |
|
15 | - if ( ! empty( $invoice ) ) { |
|
16 | - wpinv_get_template( 'invoice/invoice.php', compact( 'invoice' ) ); |
|
14 | +function getpaid_invoice($invoice) { |
|
15 | + if (!empty($invoice)) { |
|
16 | + wpinv_get_template('invoice/invoice.php', compact('invoice')); |
|
17 | 17 | } |
18 | 18 | } |
19 | -add_action( 'getpaid_invoice', 'getpaid_invoice', 10 ); |
|
19 | +add_action('getpaid_invoice', 'getpaid_invoice', 10); |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * Displays the invoice footer. |
23 | 23 | */ |
24 | -function getpaid_invoice_footer( $invoice ) { |
|
25 | - if ( ! empty( $invoice ) ) { |
|
26 | - wpinv_get_template( 'invoice/footer.php', compact( 'invoice' ) ); |
|
24 | +function getpaid_invoice_footer($invoice) { |
|
25 | + if (!empty($invoice)) { |
|
26 | + wpinv_get_template('invoice/footer.php', compact('invoice')); |
|
27 | 27 | } |
28 | 28 | } |
29 | -add_action( 'getpaid_invoice_footer', 'getpaid_invoice_footer', 10 ); |
|
29 | +add_action('getpaid_invoice_footer', 'getpaid_invoice_footer', 10); |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * Displays the invoice top bar. |
33 | 33 | */ |
34 | -function getpaid_invoice_header( $invoice ) { |
|
35 | - if ( ! empty( $invoice ) ) { |
|
36 | - wpinv_get_template( 'invoice/header.php', compact( 'invoice' ) ); |
|
34 | +function getpaid_invoice_header($invoice) { |
|
35 | + if (!empty($invoice)) { |
|
36 | + wpinv_get_template('invoice/header.php', compact('invoice')); |
|
37 | 37 | } |
38 | 38 | } |
39 | -add_action( 'getpaid_invoice_header', 'getpaid_invoice_header', 10 ); |
|
39 | +add_action('getpaid_invoice_header', 'getpaid_invoice_header', 10); |
|
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Displays actions on the left side of the header. |
43 | 43 | */ |
44 | -function getpaid_invoice_header_left_actions( $invoice ) { |
|
45 | - if ( ! empty( $invoice ) ) { |
|
46 | - wpinv_get_template( 'invoice/header-left-actions.php', compact( 'invoice' ) ); |
|
44 | +function getpaid_invoice_header_left_actions($invoice) { |
|
45 | + if (!empty($invoice)) { |
|
46 | + wpinv_get_template('invoice/header-left-actions.php', compact('invoice')); |
|
47 | 47 | } |
48 | 48 | } |
49 | -add_action( 'getpaid_invoice_header_left', 'getpaid_invoice_header_left_actions', 10 ); |
|
49 | +add_action('getpaid_invoice_header_left', 'getpaid_invoice_header_left_actions', 10); |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Displays actions on the right side of the invoice top bar. |
53 | 53 | */ |
54 | -function getpaid_invoice_header_right_actions( $invoice ) { |
|
55 | - if ( ! empty( $invoice ) ) { |
|
56 | - wpinv_get_template( 'invoice/header-right-actions.php', compact( 'invoice' ) ); |
|
54 | +function getpaid_invoice_header_right_actions($invoice) { |
|
55 | + if (!empty($invoice)) { |
|
56 | + wpinv_get_template('invoice/header-right-actions.php', compact('invoice')); |
|
57 | 57 | } |
58 | 58 | } |
59 | -add_action( 'getpaid_invoice_header_right', 'getpaid_invoice_header_right_actions', 10 ); |
|
59 | +add_action('getpaid_invoice_header_right', 'getpaid_invoice_header_right_actions', 10); |
|
60 | 60 | |
61 | 61 | /** |
62 | 62 | * Displays the invoice title, logo etc. |
63 | 63 | */ |
64 | -function getpaid_invoice_details_top( $invoice ) { |
|
65 | - if ( ! empty( $invoice ) ) { |
|
66 | - wpinv_get_template( 'invoice/details-top.php', compact( 'invoice' ) ); |
|
64 | +function getpaid_invoice_details_top($invoice) { |
|
65 | + if (!empty($invoice)) { |
|
66 | + wpinv_get_template('invoice/details-top.php', compact('invoice')); |
|
67 | 67 | } |
68 | 68 | } |
69 | -add_action( 'getpaid_invoice_details', 'getpaid_invoice_details_top', 10 ); |
|
69 | +add_action('getpaid_invoice_details', 'getpaid_invoice_details_top', 10); |
|
70 | 70 | |
71 | 71 | /** |
72 | 72 | * Displays the company logo. |
73 | 73 | */ |
74 | -function getpaid_invoice_logo( $invoice ) { |
|
75 | - if ( ! empty( $invoice ) ) { |
|
76 | - wpinv_get_template( 'invoice/invoice-logo.php', compact( 'invoice' ) ); |
|
74 | +function getpaid_invoice_logo($invoice) { |
|
75 | + if (!empty($invoice)) { |
|
76 | + wpinv_get_template('invoice/invoice-logo.php', compact('invoice')); |
|
77 | 77 | } |
78 | 78 | } |
79 | -add_action( 'getpaid_invoice_details_top_left', 'getpaid_invoice_logo' ); |
|
79 | +add_action('getpaid_invoice_details_top_left', 'getpaid_invoice_logo'); |
|
80 | 80 | |
81 | 81 | /** |
82 | 82 | * Displays the type of invoice. |
83 | 83 | */ |
84 | -function getpaid_invoice_type( $invoice ) { |
|
85 | - if ( ! empty( $invoice ) ) { |
|
86 | - wpinv_get_template( 'invoice/invoice-type.php', compact( 'invoice' ) ); |
|
84 | +function getpaid_invoice_type($invoice) { |
|
85 | + if (!empty($invoice)) { |
|
86 | + wpinv_get_template('invoice/invoice-type.php', compact('invoice')); |
|
87 | 87 | } |
88 | 88 | } |
89 | -add_action( 'getpaid_invoice_details_top_right', 'getpaid_invoice_type' ); |
|
89 | +add_action('getpaid_invoice_details_top_right', 'getpaid_invoice_type'); |
|
90 | 90 | |
91 | 91 | /** |
92 | 92 | * Displays the invoice details. |
93 | 93 | */ |
94 | -function getpaid_invoice_details_main( $invoice ) { |
|
95 | - if ( ! empty( $invoice ) ) { |
|
96 | - wpinv_get_template( 'invoice/details.php', compact( 'invoice' ) ); |
|
94 | +function getpaid_invoice_details_main($invoice) { |
|
95 | + if (!empty($invoice)) { |
|
96 | + wpinv_get_template('invoice/details.php', compact('invoice')); |
|
97 | 97 | } |
98 | 98 | } |
99 | -add_action( 'getpaid_invoice_details', 'getpaid_invoice_details_main', 50 ); |
|
99 | +add_action('getpaid_invoice_details', 'getpaid_invoice_details_main', 50); |
|
100 | 100 | |
101 | 101 | /** |
102 | 102 | * Returns a path to the templates directory. |
@@ -125,8 +125,8 @@ discard block |
||
125 | 125 | * @param string $template_path The templates directory relative to the theme's root dir. Defaults to 'invoicing'. |
126 | 126 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
127 | 127 | */ |
128 | -function wpinv_get_template( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
|
129 | - getpaid_template()->display_template( $template_name, $args, $template_path, $default_path ); |
|
128 | +function wpinv_get_template($template_name, $args = array(), $template_path = '', $default_path = '') { |
|
129 | + getpaid_template()->display_template($template_name, $args, $template_path, $default_path); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | * @param string $template_path The templates directory relative to the theme's root dir. Defaults to 'invoicing'. |
140 | 140 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
141 | 141 | */ |
142 | -function wpinv_get_template_html( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
|
143 | - return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
142 | +function wpinv_get_template_html($template_name, $args = array(), $template_path = '', $default_path = '') { |
|
143 | + return getpaid_template()->get_template($template_name, $args, $template_path, $default_path); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | * @return string |
150 | 150 | */ |
151 | 151 | function wpinv_template_path() { |
152 | - return apply_filters( 'wpinv_template_path', wpinv_get_theme_template_dir_name() ); |
|
152 | + return apply_filters('wpinv_template_path', wpinv_get_theme_template_dir_name()); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | * @return string |
159 | 159 | */ |
160 | 160 | function wpinv_get_theme_template_dir_name() { |
161 | - return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
161 | + return trailingslashit(apply_filters('wpinv_templates_dir', 'invoicing')); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -170,56 +170,56 @@ discard block |
||
170 | 170 | * @param string $template_path The template path relative to the theme's root dir. Defaults to 'invoicing'. |
171 | 171 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
172 | 172 | */ |
173 | -function wpinv_locate_template( $template_name, $template_path = '', $default_path = '' ) { |
|
174 | - return getpaid_template()->locate_template( $template_name, $template_path, $default_path ); |
|
173 | +function wpinv_locate_template($template_name, $template_path = '', $default_path = '') { |
|
174 | + return getpaid_template()->locate_template($template_name, $template_path, $default_path); |
|
175 | 175 | } |
176 | 176 | |
177 | -function wpinv_get_template_part( $slug, $name = null, $load = true ) { |
|
178 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
177 | +function wpinv_get_template_part($slug, $name = null, $load = true) { |
|
178 | + do_action('get_template_part_' . $slug, $slug, $name); |
|
179 | 179 | |
180 | 180 | // Setup possible parts |
181 | 181 | $templates = array(); |
182 | - if ( isset( $name ) ) |
|
182 | + if (isset($name)) |
|
183 | 183 | $templates[] = $slug . '-' . $name . '.php'; |
184 | 184 | $templates[] = $slug . '.php'; |
185 | 185 | |
186 | 186 | // Allow template parts to be filtered |
187 | - $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
187 | + $templates = apply_filters('wpinv_get_template_part', $templates, $slug, $name); |
|
188 | 188 | |
189 | 189 | // Return the part that is found |
190 | - return wpinv_locate_tmpl( $templates, $load, false ); |
|
190 | + return wpinv_locate_tmpl($templates, $load, false); |
|
191 | 191 | } |
192 | 192 | |
193 | -function wpinv_locate_tmpl( $template_names, $load = false, $require_once = true ) { |
|
193 | +function wpinv_locate_tmpl($template_names, $load = false, $require_once = true) { |
|
194 | 194 | // No file found yet |
195 | 195 | $located = false; |
196 | 196 | |
197 | 197 | // Try to find a template file |
198 | - foreach ( (array)$template_names as $template_name ) { |
|
198 | + foreach ((array) $template_names as $template_name) { |
|
199 | 199 | |
200 | 200 | // Continue if template is empty |
201 | - if ( empty( $template_name ) ) |
|
201 | + if (empty($template_name)) |
|
202 | 202 | continue; |
203 | 203 | |
204 | 204 | // Trim off any slashes from the template name |
205 | - $template_name = ltrim( $template_name, '/' ); |
|
205 | + $template_name = ltrim($template_name, '/'); |
|
206 | 206 | |
207 | 207 | // try locating this template file by looping through the template paths |
208 | - foreach( wpinv_get_theme_template_paths() as $template_path ) { |
|
208 | + foreach (wpinv_get_theme_template_paths() as $template_path) { |
|
209 | 209 | |
210 | - if( file_exists( $template_path . $template_name ) ) { |
|
210 | + if (file_exists($template_path . $template_name)) { |
|
211 | 211 | $located = $template_path . $template_name; |
212 | 212 | break; |
213 | 213 | } |
214 | 214 | } |
215 | 215 | |
216 | - if( !empty( $located ) ) { |
|
216 | + if (!empty($located)) { |
|
217 | 217 | break; |
218 | 218 | } |
219 | 219 | } |
220 | 220 | |
221 | - if ( ( true == $load ) && ! empty( $located ) ) |
|
222 | - load_template( $located, $require_once ); |
|
221 | + if ((true == $load) && !empty($located)) |
|
222 | + load_template($located, $require_once); |
|
223 | 223 | |
224 | 224 | return $located; |
225 | 225 | } |
@@ -228,127 +228,127 @@ discard block |
||
228 | 228 | $template_dir = wpinv_get_theme_template_dir_name(); |
229 | 229 | |
230 | 230 | $file_paths = array( |
231 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
232 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
231 | + 1 => trailingslashit(get_stylesheet_directory()) . $template_dir, |
|
232 | + 10 => trailingslashit(get_template_directory()) . $template_dir, |
|
233 | 233 | 100 => wpinv_get_templates_dir() |
234 | 234 | ); |
235 | 235 | |
236 | - $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
236 | + $file_paths = apply_filters('wpinv_template_paths', $file_paths); |
|
237 | 237 | |
238 | 238 | // sort the file paths based on priority |
239 | - ksort( $file_paths, SORT_NUMERIC ); |
|
239 | + ksort($file_paths, SORT_NUMERIC); |
|
240 | 240 | |
241 | - return array_map( 'trailingslashit', $file_paths ); |
|
241 | + return array_map('trailingslashit', $file_paths); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | function wpinv_checkout_meta_tags() { |
245 | 245 | |
246 | 246 | $pages = array(); |
247 | - $pages[] = wpinv_get_option( 'success_page' ); |
|
248 | - $pages[] = wpinv_get_option( 'failure_page' ); |
|
249 | - $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
250 | - $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
247 | + $pages[] = wpinv_get_option('success_page'); |
|
248 | + $pages[] = wpinv_get_option('failure_page'); |
|
249 | + $pages[] = wpinv_get_option('invoice_history_page'); |
|
250 | + $pages[] = wpinv_get_option('invoice_subscription_page'); |
|
251 | 251 | |
252 | - if( !wpinv_is_checkout() && !is_page( $pages ) ) { |
|
252 | + if (!wpinv_is_checkout() && !is_page($pages)) { |
|
253 | 253 | return; |
254 | 254 | } |
255 | 255 | |
256 | 256 | echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
257 | 257 | } |
258 | -add_action( 'wp_head', 'wpinv_checkout_meta_tags' ); |
|
258 | +add_action('wp_head', 'wpinv_checkout_meta_tags'); |
|
259 | 259 | |
260 | -function wpinv_add_body_classes( $class ) { |
|
261 | - $classes = (array)$class; |
|
260 | +function wpinv_add_body_classes($class) { |
|
261 | + $classes = (array) $class; |
|
262 | 262 | |
263 | - if( wpinv_is_checkout() ) { |
|
263 | + if (wpinv_is_checkout()) { |
|
264 | 264 | $classes[] = 'wpinv-checkout'; |
265 | 265 | $classes[] = 'wpinv-page'; |
266 | 266 | } |
267 | 267 | |
268 | - if( wpinv_is_success_page() ) { |
|
268 | + if (wpinv_is_success_page()) { |
|
269 | 269 | $classes[] = 'wpinv-success'; |
270 | 270 | $classes[] = 'wpinv-page'; |
271 | 271 | } |
272 | 272 | |
273 | - if( wpinv_is_failed_transaction_page() ) { |
|
273 | + if (wpinv_is_failed_transaction_page()) { |
|
274 | 274 | $classes[] = 'wpinv-failed-transaction'; |
275 | 275 | $classes[] = 'wpinv-page'; |
276 | 276 | } |
277 | 277 | |
278 | - if( wpinv_is_invoice_history_page() ) { |
|
278 | + if (wpinv_is_invoice_history_page()) { |
|
279 | 279 | $classes[] = 'wpinv-history'; |
280 | 280 | $classes[] = 'wpinv-page'; |
281 | 281 | } |
282 | 282 | |
283 | - if( wpinv_is_subscriptions_history_page() ) { |
|
283 | + if (wpinv_is_subscriptions_history_page()) { |
|
284 | 284 | $classes[] = 'wpinv-subscription'; |
285 | 285 | $classes[] = 'wpinv-page'; |
286 | 286 | } |
287 | 287 | |
288 | - if( wpinv_is_test_mode() ) { |
|
288 | + if (wpinv_is_test_mode()) { |
|
289 | 289 | $classes[] = 'wpinv-test-mode'; |
290 | 290 | $classes[] = 'wpinv-page'; |
291 | 291 | } |
292 | 292 | |
293 | - return array_unique( $classes ); |
|
293 | + return array_unique($classes); |
|
294 | 294 | } |
295 | -add_filter( 'body_class', 'wpinv_add_body_classes' ); |
|
295 | +add_filter('body_class', 'wpinv_add_body_classes'); |
|
296 | 296 | |
297 | -function wpinv_html_year_dropdown( $name = 'year', $selected = 0, $years_before = 5, $years_after = 0 ) { |
|
298 | - $current = date( 'Y' ); |
|
299 | - $start_year = $current - absint( $years_before ); |
|
300 | - $end_year = $current + absint( $years_after ); |
|
301 | - $selected = empty( $selected ) ? date( 'Y' ) : $selected; |
|
297 | +function wpinv_html_year_dropdown($name = 'year', $selected = 0, $years_before = 5, $years_after = 0) { |
|
298 | + $current = date('Y'); |
|
299 | + $start_year = $current - absint($years_before); |
|
300 | + $end_year = $current + absint($years_after); |
|
301 | + $selected = empty($selected) ? date('Y') : $selected; |
|
302 | 302 | $options = array(); |
303 | 303 | |
304 | - while ( $start_year <= $end_year ) { |
|
305 | - $options[ absint( $start_year ) ] = $start_year; |
|
304 | + while ($start_year <= $end_year) { |
|
305 | + $options[absint($start_year)] = $start_year; |
|
306 | 306 | $start_year++; |
307 | 307 | } |
308 | 308 | |
309 | - $output = wpinv_html_select( array( |
|
309 | + $output = wpinv_html_select(array( |
|
310 | 310 | 'name' => $name, |
311 | 311 | 'selected' => $selected, |
312 | 312 | 'options' => $options, |
313 | 313 | 'show_option_all' => false, |
314 | 314 | 'show_option_none' => false |
315 | - ) ); |
|
315 | + )); |
|
316 | 316 | |
317 | 317 | return $output; |
318 | 318 | } |
319 | 319 | |
320 | -function wpinv_html_month_dropdown( $name = 'month', $selected = 0 ) { |
|
320 | +function wpinv_html_month_dropdown($name = 'month', $selected = 0) { |
|
321 | 321 | |
322 | 322 | $options = array( |
323 | - '1' => __( 'January', 'invoicing' ), |
|
324 | - '2' => __( 'February', 'invoicing' ), |
|
325 | - '3' => __( 'March', 'invoicing' ), |
|
326 | - '4' => __( 'April', 'invoicing' ), |
|
327 | - '5' => __( 'May', 'invoicing' ), |
|
328 | - '6' => __( 'June', 'invoicing' ), |
|
329 | - '7' => __( 'July', 'invoicing' ), |
|
330 | - '8' => __( 'August', 'invoicing' ), |
|
331 | - '9' => __( 'September', 'invoicing' ), |
|
332 | - '10' => __( 'October', 'invoicing' ), |
|
333 | - '11' => __( 'November', 'invoicing' ), |
|
334 | - '12' => __( 'December', 'invoicing' ), |
|
323 | + '1' => __('January', 'invoicing'), |
|
324 | + '2' => __('February', 'invoicing'), |
|
325 | + '3' => __('March', 'invoicing'), |
|
326 | + '4' => __('April', 'invoicing'), |
|
327 | + '5' => __('May', 'invoicing'), |
|
328 | + '6' => __('June', 'invoicing'), |
|
329 | + '7' => __('July', 'invoicing'), |
|
330 | + '8' => __('August', 'invoicing'), |
|
331 | + '9' => __('September', 'invoicing'), |
|
332 | + '10' => __('October', 'invoicing'), |
|
333 | + '11' => __('November', 'invoicing'), |
|
334 | + '12' => __('December', 'invoicing'), |
|
335 | 335 | ); |
336 | 336 | |
337 | 337 | // If no month is selected, default to the current month |
338 | - $selected = empty( $selected ) ? date( 'n' ) : $selected; |
|
338 | + $selected = empty($selected) ? date('n') : $selected; |
|
339 | 339 | |
340 | - $output = wpinv_html_select( array( |
|
340 | + $output = wpinv_html_select(array( |
|
341 | 341 | 'name' => $name, |
342 | 342 | 'selected' => $selected, |
343 | 343 | 'options' => $options, |
344 | 344 | 'show_option_all' => false, |
345 | 345 | 'show_option_none' => false |
346 | - ) ); |
|
346 | + )); |
|
347 | 347 | |
348 | 348 | return $output; |
349 | 349 | } |
350 | 350 | |
351 | -function wpinv_html_select( $args = array() ) { |
|
351 | +function wpinv_html_select($args = array()) { |
|
352 | 352 | $defaults = array( |
353 | 353 | 'options' => array(), |
354 | 354 | 'name' => null, |
@@ -357,8 +357,8 @@ discard block |
||
357 | 357 | 'selected' => 0, |
358 | 358 | 'placeholder' => null, |
359 | 359 | 'multiple' => false, |
360 | - 'show_option_all' => _x( 'All', 'all dropdown items', 'invoicing' ), |
|
361 | - 'show_option_none' => _x( 'None', 'no dropdown items', 'invoicing' ), |
|
360 | + 'show_option_all' => _x('All', 'all dropdown items', 'invoicing'), |
|
361 | + 'show_option_none' => _x('None', 'no dropdown items', 'invoicing'), |
|
362 | 362 | 'data' => array(), |
363 | 363 | 'onchange' => null, |
364 | 364 | 'required' => false, |
@@ -366,74 +366,74 @@ discard block |
||
366 | 366 | 'readonly' => false, |
367 | 367 | ); |
368 | 368 | |
369 | - $args = wp_parse_args( $args, $defaults ); |
|
369 | + $args = wp_parse_args($args, $defaults); |
|
370 | 370 | |
371 | 371 | $data_elements = ''; |
372 | - foreach ( $args['data'] as $key => $value ) { |
|
373 | - $data_elements .= ' data-' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
372 | + foreach ($args['data'] as $key => $value) { |
|
373 | + $data_elements .= ' data-' . esc_attr($key) . '="' . esc_attr($value) . '"'; |
|
374 | 374 | } |
375 | 375 | |
376 | - if( $args['multiple'] ) { |
|
376 | + if ($args['multiple']) { |
|
377 | 377 | $multiple = ' MULTIPLE'; |
378 | 378 | } else { |
379 | 379 | $multiple = ''; |
380 | 380 | } |
381 | 381 | |
382 | - if( $args['placeholder'] ) { |
|
382 | + if ($args['placeholder']) { |
|
383 | 383 | $placeholder = $args['placeholder']; |
384 | 384 | } else { |
385 | 385 | $placeholder = ''; |
386 | 386 | } |
387 | 387 | |
388 | 388 | $options = ''; |
389 | - if( !empty( $args['onchange'] ) ) { |
|
390 | - $options .= ' onchange="' . esc_attr( $args['onchange'] ) . '"'; |
|
389 | + if (!empty($args['onchange'])) { |
|
390 | + $options .= ' onchange="' . esc_attr($args['onchange']) . '"'; |
|
391 | 391 | } |
392 | 392 | |
393 | - if( !empty( $args['required'] ) ) { |
|
393 | + if (!empty($args['required'])) { |
|
394 | 394 | $options .= ' required="required"'; |
395 | 395 | } |
396 | 396 | |
397 | - if( !empty( $args['disabled'] ) ) { |
|
397 | + if (!empty($args['disabled'])) { |
|
398 | 398 | $options .= ' disabled'; |
399 | 399 | } |
400 | 400 | |
401 | - if( !empty( $args['readonly'] ) ) { |
|
401 | + if (!empty($args['readonly'])) { |
|
402 | 402 | $options .= ' readonly'; |
403 | 403 | } |
404 | 404 | |
405 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
406 | - $output = '<select name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['id'] ) . '" class="wpinv-select ' . $class . '"' . $multiple . ' data-placeholder="' . $placeholder . '" ' . trim( $options ) . $data_elements . '>'; |
|
405 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
406 | + $output = '<select name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['id']) . '" class="wpinv-select ' . $class . '"' . $multiple . ' data-placeholder="' . $placeholder . '" ' . trim($options) . $data_elements . '>'; |
|
407 | 407 | |
408 | - if ( $args['show_option_all'] ) { |
|
409 | - if( $args['multiple'] ) { |
|
410 | - $selected = selected( true, in_array( 0, $args['selected'] ), false ); |
|
408 | + if ($args['show_option_all']) { |
|
409 | + if ($args['multiple']) { |
|
410 | + $selected = selected(true, in_array(0, $args['selected']), false); |
|
411 | 411 | } else { |
412 | - $selected = selected( $args['selected'], 0, false ); |
|
412 | + $selected = selected($args['selected'], 0, false); |
|
413 | 413 | } |
414 | - $output .= '<option value="all"' . $selected . '>' . esc_html( $args['show_option_all'] ) . '</option>'; |
|
414 | + $output .= '<option value="all"' . $selected . '>' . esc_html($args['show_option_all']) . '</option>'; |
|
415 | 415 | } |
416 | 416 | |
417 | - if ( !empty( $args['options'] ) ) { |
|
417 | + if (!empty($args['options'])) { |
|
418 | 418 | |
419 | - if ( $args['show_option_none'] ) { |
|
420 | - if( $args['multiple'] ) { |
|
421 | - $selected = selected( true, in_array( "", $args['selected'] ), false ); |
|
419 | + if ($args['show_option_none']) { |
|
420 | + if ($args['multiple']) { |
|
421 | + $selected = selected(true, in_array("", $args['selected']), false); |
|
422 | 422 | } else { |
423 | - $selected = selected( $args['selected'] === "", true, false ); |
|
423 | + $selected = selected($args['selected'] === "", true, false); |
|
424 | 424 | } |
425 | - $output .= '<option value=""' . $selected . '>' . esc_html( $args['show_option_none'] ) . '</option>'; |
|
425 | + $output .= '<option value=""' . $selected . '>' . esc_html($args['show_option_none']) . '</option>'; |
|
426 | 426 | } |
427 | 427 | |
428 | - foreach( $args['options'] as $key => $option ) { |
|
428 | + foreach ($args['options'] as $key => $option) { |
|
429 | 429 | |
430 | - if( $args['multiple'] && is_array( $args['selected'] ) ) { |
|
431 | - $selected = selected( true, (bool)in_array( $key, $args['selected'] ), false ); |
|
430 | + if ($args['multiple'] && is_array($args['selected'])) { |
|
431 | + $selected = selected(true, (bool) in_array($key, $args['selected']), false); |
|
432 | 432 | } else { |
433 | - $selected = selected( $args['selected'], $key, false ); |
|
433 | + $selected = selected($args['selected'], $key, false); |
|
434 | 434 | } |
435 | 435 | |
436 | - $output .= '<option value="' . esc_attr( $key ) . '"' . $selected . '>' . esc_html( $option ) . '</option>'; |
|
436 | + $output .= '<option value="' . esc_attr($key) . '"' . $selected . '>' . esc_html($option) . '</option>'; |
|
437 | 437 | } |
438 | 438 | } |
439 | 439 | |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | return $output; |
443 | 443 | } |
444 | 444 | |
445 | -function wpinv_item_dropdown( $args = array() ) { |
|
445 | +function wpinv_item_dropdown($args = array()) { |
|
446 | 446 | $defaults = array( |
447 | 447 | 'name' => 'wpi_item', |
448 | 448 | 'id' => 'wpi_item', |
@@ -450,14 +450,14 @@ discard block |
||
450 | 450 | 'multiple' => false, |
451 | 451 | 'selected' => 0, |
452 | 452 | 'number' => 100, |
453 | - 'placeholder' => __( 'Choose a item', 'invoicing' ), |
|
454 | - 'data' => array( 'search-type' => 'item' ), |
|
453 | + 'placeholder' => __('Choose a item', 'invoicing'), |
|
454 | + 'data' => array('search-type' => 'item'), |
|
455 | 455 | 'show_option_all' => false, |
456 | 456 | 'show_option_none' => false, |
457 | 457 | 'show_recurring' => false, |
458 | 458 | ); |
459 | 459 | |
460 | - $args = wp_parse_args( $args, $defaults ); |
|
460 | + $args = wp_parse_args($args, $defaults); |
|
461 | 461 | |
462 | 462 | $item_args = array( |
463 | 463 | 'post_type' => 'wpi_item', |
@@ -466,44 +466,44 @@ discard block |
||
466 | 466 | 'posts_per_page' => $args['number'] |
467 | 467 | ); |
468 | 468 | |
469 | - $item_args = apply_filters( 'wpinv_item_dropdown_query_args', $item_args, $args, $defaults ); |
|
469 | + $item_args = apply_filters('wpinv_item_dropdown_query_args', $item_args, $args, $defaults); |
|
470 | 470 | |
471 | - $items = get_posts( $item_args ); |
|
471 | + $items = get_posts($item_args); |
|
472 | 472 | $options = array(); |
473 | - if ( $items ) { |
|
474 | - foreach ( $items as $item ) { |
|
475 | - $title = esc_html( $item->post_title ); |
|
473 | + if ($items) { |
|
474 | + foreach ($items as $item) { |
|
475 | + $title = esc_html($item->post_title); |
|
476 | 476 | |
477 | - if ( !empty( $args['show_recurring'] ) ) { |
|
478 | - $title .= wpinv_get_item_suffix( $item->ID, false ); |
|
477 | + if (!empty($args['show_recurring'])) { |
|
478 | + $title .= wpinv_get_item_suffix($item->ID, false); |
|
479 | 479 | } |
480 | 480 | |
481 | - $options[ absint( $item->ID ) ] = $title; |
|
481 | + $options[absint($item->ID)] = $title; |
|
482 | 482 | } |
483 | 483 | } |
484 | 484 | |
485 | 485 | // This ensures that any selected items are included in the drop down |
486 | - if( is_array( $args['selected'] ) ) { |
|
487 | - foreach( $args['selected'] as $item ) { |
|
488 | - if( ! in_array( $item, $options ) ) { |
|
489 | - $title = get_the_title( $item ); |
|
490 | - if ( !empty( $args['show_recurring'] ) ) { |
|
491 | - $title .= wpinv_get_item_suffix( $item, false ); |
|
486 | + if (is_array($args['selected'])) { |
|
487 | + foreach ($args['selected'] as $item) { |
|
488 | + if (!in_array($item, $options)) { |
|
489 | + $title = get_the_title($item); |
|
490 | + if (!empty($args['show_recurring'])) { |
|
491 | + $title .= wpinv_get_item_suffix($item, false); |
|
492 | 492 | } |
493 | 493 | $options[$item] = $title; |
494 | 494 | } |
495 | 495 | } |
496 | - } elseif ( is_numeric( $args['selected'] ) && $args['selected'] !== 0 ) { |
|
497 | - if ( ! in_array( $args['selected'], $options ) ) { |
|
498 | - $title = get_the_title( $args['selected'] ); |
|
499 | - if ( !empty( $args['show_recurring'] ) ) { |
|
500 | - $title .= wpinv_get_item_suffix( $args['selected'], false ); |
|
496 | + } elseif (is_numeric($args['selected']) && $args['selected'] !== 0) { |
|
497 | + if (!in_array($args['selected'], $options)) { |
|
498 | + $title = get_the_title($args['selected']); |
|
499 | + if (!empty($args['show_recurring'])) { |
|
500 | + $title .= wpinv_get_item_suffix($args['selected'], false); |
|
501 | 501 | } |
502 | - $options[$args['selected']] = get_the_title( $args['selected'] ); |
|
502 | + $options[$args['selected']] = get_the_title($args['selected']); |
|
503 | 503 | } |
504 | 504 | } |
505 | 505 | |
506 | - $output = wpinv_html_select( array( |
|
506 | + $output = wpinv_html_select(array( |
|
507 | 507 | 'name' => $args['name'], |
508 | 508 | 'selected' => $args['selected'], |
509 | 509 | 'id' => $args['id'], |
@@ -514,7 +514,7 @@ discard block |
||
514 | 514 | 'show_option_all' => $args['show_option_all'], |
515 | 515 | 'show_option_none' => $args['show_option_none'], |
516 | 516 | 'data' => $args['data'], |
517 | - ) ); |
|
517 | + )); |
|
518 | 518 | |
519 | 519 | return $output; |
520 | 520 | } |
@@ -534,16 +534,16 @@ discard block |
||
534 | 534 | ); |
535 | 535 | |
536 | 536 | $options = array(); |
537 | - if ( $items ) { |
|
538 | - foreach ( $items as $item ) { |
|
539 | - $options[ $item->ID ] = esc_html( $item->post_title ) . wpinv_get_item_suffix( $item->ID, false ); |
|
537 | + if ($items) { |
|
538 | + foreach ($items as $item) { |
|
539 | + $options[$item->ID] = esc_html($item->post_title) . wpinv_get_item_suffix($item->ID, false); |
|
540 | 540 | } |
541 | 541 | } |
542 | 542 | |
543 | 543 | return $options; |
544 | 544 | } |
545 | 545 | |
546 | -function wpinv_html_checkbox( $args = array() ) { |
|
546 | +function wpinv_html_checkbox($args = array()) { |
|
547 | 547 | $defaults = array( |
548 | 548 | 'name' => null, |
549 | 549 | 'current' => null, |
@@ -554,17 +554,17 @@ discard block |
||
554 | 554 | ) |
555 | 555 | ); |
556 | 556 | |
557 | - $args = wp_parse_args( $args, $defaults ); |
|
557 | + $args = wp_parse_args($args, $defaults); |
|
558 | 558 | |
559 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
559 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
560 | 560 | $options = ''; |
561 | - if ( ! empty( $args['options']['disabled'] ) ) { |
|
561 | + if (!empty($args['options']['disabled'])) { |
|
562 | 562 | $options .= ' disabled="disabled"'; |
563 | - } elseif ( ! empty( $args['options']['readonly'] ) ) { |
|
563 | + } elseif (!empty($args['options']['readonly'])) { |
|
564 | 564 | $options .= ' readonly'; |
565 | 565 | } |
566 | 566 | |
567 | - $output = '<input type="checkbox"' . $options . ' name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['name'] ) . '" class="' . $class . ' ' . esc_attr( $args['name'] ) . '" ' . checked( 1, $args['current'], false ) . ' />'; |
|
567 | + $output = '<input type="checkbox"' . $options . ' name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['name']) . '" class="' . $class . ' ' . esc_attr($args['name']) . '" ' . checked(1, $args['current'], false) . ' />'; |
|
568 | 568 | |
569 | 569 | return $output; |
570 | 570 | } |
@@ -572,9 +572,9 @@ discard block |
||
572 | 572 | /** |
573 | 573 | * Displays a hidden field. |
574 | 574 | */ |
575 | -function getpaid_hidden_field( $name, $value ) { |
|
576 | - $name = sanitize_text_field( $name ); |
|
577 | - $value = esc_attr( $value ); |
|
575 | +function getpaid_hidden_field($name, $value) { |
|
576 | + $name = sanitize_text_field($name); |
|
577 | + $value = esc_attr($value); |
|
578 | 578 | |
579 | 579 | echo "<input type='hidden' name='$name' value='$value' />"; |
580 | 580 | } |
@@ -582,31 +582,31 @@ discard block |
||
582 | 582 | /** |
583 | 583 | * Displays a submit field. |
584 | 584 | */ |
585 | -function getpaid_submit_field( $value, $name = 'submit', $class = 'btn-primary' ) { |
|
586 | - $name = sanitize_text_field( $name ); |
|
587 | - $value = esc_attr( $value ); |
|
588 | - $class = esc_attr( $class ); |
|
585 | +function getpaid_submit_field($value, $name = 'submit', $class = 'btn-primary') { |
|
586 | + $name = sanitize_text_field($name); |
|
587 | + $value = esc_attr($value); |
|
588 | + $class = esc_attr($class); |
|
589 | 589 | |
590 | 590 | echo "<input type='submit' name='$name' value='$value' class='btn $class' />"; |
591 | 591 | } |
592 | 592 | |
593 | -function wpinv_html_text( $args = array() ) { |
|
593 | +function wpinv_html_text($args = array()) { |
|
594 | 594 | // Backwards compatibility |
595 | - if ( func_num_args() > 1 ) { |
|
595 | + if (func_num_args() > 1) { |
|
596 | 596 | $args = func_get_args(); |
597 | 597 | |
598 | 598 | $name = $args[0]; |
599 | - $value = isset( $args[1] ) ? $args[1] : ''; |
|
600 | - $label = isset( $args[2] ) ? $args[2] : ''; |
|
601 | - $desc = isset( $args[3] ) ? $args[3] : ''; |
|
599 | + $value = isset($args[1]) ? $args[1] : ''; |
|
600 | + $label = isset($args[2]) ? $args[2] : ''; |
|
601 | + $desc = isset($args[3]) ? $args[3] : ''; |
|
602 | 602 | } |
603 | 603 | |
604 | 604 | $defaults = array( |
605 | 605 | 'id' => '', |
606 | - 'name' => isset( $name ) ? $name : 'text', |
|
607 | - 'value' => isset( $value ) ? $value : null, |
|
608 | - 'label' => isset( $label ) ? $label : null, |
|
609 | - 'desc' => isset( $desc ) ? $desc : null, |
|
606 | + 'name' => isset($name) ? $name : 'text', |
|
607 | + 'value' => isset($value) ? $value : null, |
|
608 | + 'label' => isset($label) ? $label : null, |
|
609 | + 'desc' => isset($desc) ? $desc : null, |
|
610 | 610 | 'placeholder' => '', |
611 | 611 | 'class' => 'regular-text', |
612 | 612 | 'disabled' => false, |
@@ -616,41 +616,41 @@ discard block |
||
616 | 616 | 'data' => false |
617 | 617 | ); |
618 | 618 | |
619 | - $args = wp_parse_args( $args, $defaults ); |
|
619 | + $args = wp_parse_args($args, $defaults); |
|
620 | 620 | |
621 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
621 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
622 | 622 | $options = ''; |
623 | - if( $args['required'] ) { |
|
623 | + if ($args['required']) { |
|
624 | 624 | $options .= ' required="required"'; |
625 | 625 | } |
626 | - if( $args['readonly'] ) { |
|
626 | + if ($args['readonly']) { |
|
627 | 627 | $options .= ' readonly'; |
628 | 628 | } |
629 | - if( $args['readonly'] ) { |
|
629 | + if ($args['readonly']) { |
|
630 | 630 | $options .= ' readonly'; |
631 | 631 | } |
632 | 632 | |
633 | 633 | $data = ''; |
634 | - if ( !empty( $args['data'] ) ) { |
|
635 | - foreach ( $args['data'] as $key => $value ) { |
|
636 | - $data .= 'data-' . wpinv_sanitize_key( $key ) . '="' . esc_attr( $value ) . '" '; |
|
634 | + if (!empty($args['data'])) { |
|
635 | + foreach ($args['data'] as $key => $value) { |
|
636 | + $data .= 'data-' . wpinv_sanitize_key($key) . '="' . esc_attr($value) . '" '; |
|
637 | 637 | } |
638 | 638 | } |
639 | 639 | |
640 | - $output = '<span id="wpinv-' . wpinv_sanitize_key( $args['name'] ) . '-wrap">'; |
|
641 | - $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key( $args['id'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
642 | - if ( ! empty( $args['desc'] ) ) { |
|
643 | - $output .= '<span class="wpinv-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
640 | + $output = '<span id="wpinv-' . wpinv_sanitize_key($args['name']) . '-wrap">'; |
|
641 | + $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key($args['id']) . '">' . esc_html($args['label']) . '</label>'; |
|
642 | + if (!empty($args['desc'])) { |
|
643 | + $output .= '<span class="wpinv-description">' . esc_html($args['desc']) . '</span>'; |
|
644 | 644 | } |
645 | 645 | |
646 | - $output .= '<input type="text" name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( $args['id'] ) . '" autocomplete="' . esc_attr( $args['autocomplete'] ) . '" value="' . esc_attr( $args['value'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" class="' . $class . '" ' . $data . ' ' . trim( $options ) . '/>'; |
|
646 | + $output .= '<input type="text" name="' . esc_attr($args['name']) . '" id="' . esc_attr($args['id']) . '" autocomplete="' . esc_attr($args['autocomplete']) . '" value="' . esc_attr($args['value']) . '" placeholder="' . esc_attr($args['placeholder']) . '" class="' . $class . '" ' . $data . ' ' . trim($options) . '/>'; |
|
647 | 647 | |
648 | 648 | $output .= '</span>'; |
649 | 649 | |
650 | 650 | return $output; |
651 | 651 | } |
652 | 652 | |
653 | -function wpinv_html_textarea( $args = array() ) { |
|
653 | +function wpinv_html_textarea($args = array()) { |
|
654 | 654 | $defaults = array( |
655 | 655 | 'name' => 'textarea', |
656 | 656 | 'value' => null, |
@@ -661,31 +661,31 @@ discard block |
||
661 | 661 | 'placeholder' => '', |
662 | 662 | ); |
663 | 663 | |
664 | - $args = wp_parse_args( $args, $defaults ); |
|
664 | + $args = wp_parse_args($args, $defaults); |
|
665 | 665 | |
666 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
666 | + $class = implode(' ', array_map('sanitize_html_class', explode(' ', $args['class']))); |
|
667 | 667 | $disabled = ''; |
668 | - if( $args['disabled'] ) { |
|
668 | + if ($args['disabled']) { |
|
669 | 669 | $disabled = ' disabled="disabled"'; |
670 | 670 | } |
671 | 671 | |
672 | - $output = '<span id="wpinv-' . wpinv_sanitize_key( $args['name'] ) . '-wrap">'; |
|
673 | - $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key( $args['name'] ) . '">' . esc_html( $args['label'] ) . '</label>'; |
|
674 | - $output .= '<textarea name="' . esc_attr( $args['name'] ) . '" placeholder="' . esc_attr( $args['placeholder'] ) . '" id="' . wpinv_sanitize_key( $args['name'] ) . '" class="' . $class . '"' . $disabled . '>' . esc_attr( $args['value'] ) . '</textarea>'; |
|
672 | + $output = '<span id="wpinv-' . wpinv_sanitize_key($args['name']) . '-wrap">'; |
|
673 | + $output .= '<label class="wpinv-label" for="' . wpinv_sanitize_key($args['name']) . '">' . esc_html($args['label']) . '</label>'; |
|
674 | + $output .= '<textarea name="' . esc_attr($args['name']) . '" placeholder="' . esc_attr($args['placeholder']) . '" id="' . wpinv_sanitize_key($args['name']) . '" class="' . $class . '"' . $disabled . '>' . esc_attr($args['value']) . '</textarea>'; |
|
675 | 675 | |
676 | - if ( ! empty( $args['desc'] ) ) { |
|
677 | - $output .= '<span class="wpinv-description">' . esc_html( $args['desc'] ) . '</span>'; |
|
676 | + if (!empty($args['desc'])) { |
|
677 | + $output .= '<span class="wpinv-description">' . esc_html($args['desc']) . '</span>'; |
|
678 | 678 | } |
679 | 679 | $output .= '</span>'; |
680 | 680 | |
681 | 681 | return $output; |
682 | 682 | } |
683 | 683 | |
684 | -function wpinv_html_ajax_user_search( $args = array() ) { |
|
684 | +function wpinv_html_ajax_user_search($args = array()) { |
|
685 | 685 | $defaults = array( |
686 | 686 | 'name' => 'user_id', |
687 | 687 | 'value' => null, |
688 | - 'placeholder' => __( 'Enter username', 'invoicing' ), |
|
688 | + 'placeholder' => __('Enter username', 'invoicing'), |
|
689 | 689 | 'label' => null, |
690 | 690 | 'desc' => null, |
691 | 691 | 'class' => '', |
@@ -694,13 +694,13 @@ discard block |
||
694 | 694 | 'data' => false |
695 | 695 | ); |
696 | 696 | |
697 | - $args = wp_parse_args( $args, $defaults ); |
|
697 | + $args = wp_parse_args($args, $defaults); |
|
698 | 698 | |
699 | 699 | $args['class'] = 'wpinv-ajax-user-search ' . $args['class']; |
700 | 700 | |
701 | 701 | $output = '<span class="wpinv_user_search_wrap">'; |
702 | - $output .= wpinv_html_text( $args ); |
|
703 | - $output .= '<span class="wpinv_user_search_results hidden"><a class="wpinv-ajax-user-cancel" title="' . __( 'Cancel', 'invoicing' ) . '" aria-label="' . __( 'Cancel', 'invoicing' ) . '" href="#">x</a><span></span></span>'; |
|
702 | + $output .= wpinv_html_text($args); |
|
703 | + $output .= '<span class="wpinv_user_search_results hidden"><a class="wpinv-ajax-user-cancel" title="' . __('Cancel', 'invoicing') . '" aria-label="' . __('Cancel', 'invoicing') . '" href="#">x</a><span></span></span>'; |
|
704 | 704 | $output .= '</span>'; |
705 | 705 | |
706 | 706 | return $output; |
@@ -711,20 +711,20 @@ discard block |
||
711 | 711 | * |
712 | 712 | * @param string $template the template that is currently being used. |
713 | 713 | */ |
714 | -function wpinv_template( $template ) { |
|
714 | +function wpinv_template($template) { |
|
715 | 715 | global $post; |
716 | 716 | |
717 | - if ( ! is_admin() && ( is_single() || is_404() ) && ! empty( $post->ID ) && getpaid_is_invoice_post_type( get_post_type( $post->ID ) ) ) { |
|
717 | + if (!is_admin() && (is_single() || is_404()) && !empty($post->ID) && getpaid_is_invoice_post_type(get_post_type($post->ID))) { |
|
718 | 718 | |
719 | 719 | // If the user can view this invoice, display it. |
720 | - if ( wpinv_user_can_view_invoice( $post->ID ) ) { |
|
720 | + if (wpinv_user_can_view_invoice($post->ID)) { |
|
721 | 721 | |
722 | - return wpinv_get_template_part( 'wpinv-invoice-print', false, false ); |
|
722 | + return wpinv_get_template_part('wpinv-invoice-print', false, false); |
|
723 | 723 | |
724 | 724 | // Else display an error message. |
725 | 725 | } else { |
726 | 726 | |
727 | - return wpinv_get_template_part( 'wpinv-invalid-access', false, false ); |
|
727 | + return wpinv_get_template_part('wpinv-invalid-access', false, false); |
|
728 | 728 | |
729 | 729 | } |
730 | 730 | |
@@ -732,24 +732,24 @@ discard block |
||
732 | 732 | |
733 | 733 | return $template; |
734 | 734 | } |
735 | -add_filter( 'template_include', 'wpinv_template', 10, 1 ); |
|
735 | +add_filter('template_include', 'wpinv_template', 10, 1); |
|
736 | 736 | |
737 | 737 | function wpinv_get_business_address() { |
738 | 738 | $business_address = wpinv_store_address(); |
739 | - $business_address = !empty( $business_address ) ? wpautop( wp_kses_post( $business_address ) ) : ''; |
|
739 | + $business_address = !empty($business_address) ? wpautop(wp_kses_post($business_address)) : ''; |
|
740 | 740 | |
741 | 741 | $business_address = $business_address ? '<div class="address">' . $business_address . '</div>' : ''; |
742 | 742 | |
743 | - return apply_filters( 'wpinv_get_business_address', $business_address ); |
|
743 | + return apply_filters('wpinv_get_business_address', $business_address); |
|
744 | 744 | } |
745 | 745 | |
746 | 746 | /** |
747 | 747 | * Displays the company address. |
748 | 748 | */ |
749 | 749 | function wpinv_display_from_address() { |
750 | - wpinv_get_template( 'invoice/company-address.php' ); |
|
750 | + wpinv_get_template('invoice/company-address.php'); |
|
751 | 751 | } |
752 | -add_action( 'getpaid_invoice_details_left', 'wpinv_display_from_address', 10 ); |
|
752 | +add_action('getpaid_invoice_details_left', 'wpinv_display_from_address', 10); |
|
753 | 753 | |
754 | 754 | /** |
755 | 755 | * Generates a watermark text for an invoice. |
@@ -757,9 +757,9 @@ discard block |
||
757 | 757 | * @param WPInv_Invoice $invoice |
758 | 758 | * @return string |
759 | 759 | */ |
760 | -function wpinv_watermark( $invoice ) { |
|
761 | - $watermark = wpinv_get_watermark( $invoice ); |
|
762 | - return apply_filters( 'wpinv_get_watermark', $watermark, $invoice ); |
|
760 | +function wpinv_watermark($invoice) { |
|
761 | + $watermark = wpinv_get_watermark($invoice); |
|
762 | + return apply_filters('wpinv_get_watermark', $watermark, $invoice); |
|
763 | 763 | } |
764 | 764 | |
765 | 765 | /** |
@@ -768,37 +768,37 @@ discard block |
||
768 | 768 | * @param WPInv_Invoice $invoice |
769 | 769 | * @return string |
770 | 770 | */ |
771 | -function wpinv_get_watermark( $invoice ) { |
|
771 | +function wpinv_get_watermark($invoice) { |
|
772 | 772 | return $invoice->get_status_nicename(); |
773 | 773 | } |
774 | 774 | |
775 | 775 | /** |
776 | 776 | * @deprecated |
777 | 777 | */ |
778 | -function wpinv_display_invoice_details( $invoice ) { |
|
779 | - return getpaid_invoice_meta( $invoice ); |
|
778 | +function wpinv_display_invoice_details($invoice) { |
|
779 | + return getpaid_invoice_meta($invoice); |
|
780 | 780 | } |
781 | 781 | |
782 | 782 | /** |
783 | 783 | * Displays invoice meta. |
784 | 784 | */ |
785 | -function getpaid_invoice_meta( $invoice ) { |
|
785 | +function getpaid_invoice_meta($invoice) { |
|
786 | 786 | |
787 | - $invoice = new WPInv_Invoice( $invoice ); |
|
787 | + $invoice = new WPInv_Invoice($invoice); |
|
788 | 788 | |
789 | 789 | // Ensure that we have an invoice. |
790 | - if ( 0 == $invoice->get_id() ) { |
|
790 | + if (0 == $invoice->get_id()) { |
|
791 | 791 | return; |
792 | 792 | } |
793 | 793 | |
794 | 794 | // Get the invoice meta. |
795 | - $meta = getpaid_get_invoice_meta( $invoice ); |
|
795 | + $meta = getpaid_get_invoice_meta($invoice); |
|
796 | 796 | |
797 | 797 | // Display the meta. |
798 | - wpinv_get_template( 'invoice/invoice-meta.php', compact( 'invoice', 'meta' ) ); |
|
798 | + wpinv_get_template('invoice/invoice-meta.php', compact('invoice', 'meta')); |
|
799 | 799 | |
800 | 800 | } |
801 | -add_action( 'getpaid_invoice_details_right', 'getpaid_invoice_meta', 10 ); |
|
801 | +add_action('getpaid_invoice_details_right', 'getpaid_invoice_meta', 10); |
|
802 | 802 | |
803 | 803 | /** |
804 | 804 | * Retrieves the address markup to use on Invoices. |
@@ -810,29 +810,29 @@ discard block |
||
810 | 810 | * @param string $separator How to separate address lines. |
811 | 811 | * @return string |
812 | 812 | */ |
813 | -function wpinv_get_invoice_address_markup( $billing_details, $separator = '<br/>' ) { |
|
813 | +function wpinv_get_invoice_address_markup($billing_details, $separator = '<br/>') { |
|
814 | 814 | |
815 | 815 | // Retrieve the address markup... |
816 | - $country= empty( $billing_details['country'] ) ? '' : $billing_details['country']; |
|
817 | - $format = wpinv_get_full_address_format( $country ); |
|
816 | + $country = empty($billing_details['country']) ? '' : $billing_details['country']; |
|
817 | + $format = wpinv_get_full_address_format($country); |
|
818 | 818 | |
819 | 819 | // ... and the replacements. |
820 | - $replacements = wpinv_get_invoice_address_replacements( $billing_details ); |
|
820 | + $replacements = wpinv_get_invoice_address_replacements($billing_details); |
|
821 | 821 | |
822 | - $formatted_address = str_ireplace( array_keys( $replacements ), $replacements, $format ); |
|
822 | + $formatted_address = str_ireplace(array_keys($replacements), $replacements, $format); |
|
823 | 823 | |
824 | 824 | // Remove unavailable tags. |
825 | - $formatted_address = preg_replace( "/\{\{\w+\}\}/", '', $formatted_address ); |
|
825 | + $formatted_address = preg_replace("/\{\{\w+\}\}/", '', $formatted_address); |
|
826 | 826 | |
827 | 827 | // Clean up white space. |
828 | - $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
829 | - $formatted_address = preg_replace( '/\n\n+/', "\n", $formatted_address ); |
|
828 | + $formatted_address = preg_replace('/ +/', ' ', trim($formatted_address)); |
|
829 | + $formatted_address = preg_replace('/\n\n+/', "\n", $formatted_address); |
|
830 | 830 | |
831 | 831 | // Break newlines apart and remove empty lines/trim commas and white space. |
832 | - $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
832 | + $formatted_address = array_filter(array_map('wpinv_trim_formatted_address_line', explode("\n", $formatted_address))); |
|
833 | 833 | |
834 | 834 | // Add html breaks. |
835 | - $formatted_address = implode( $separator, $formatted_address ); |
|
835 | + $formatted_address = implode($separator, $formatted_address); |
|
836 | 836 | |
837 | 837 | // We're done! |
838 | 838 | return $formatted_address; |
@@ -844,116 +844,116 @@ discard block |
||
844 | 844 | * |
845 | 845 | * @param WPInv_Invoice $invoice |
846 | 846 | */ |
847 | -function wpinv_display_to_address( $invoice = 0 ) { |
|
848 | - if ( ! empty( $invoice ) ) { |
|
849 | - wpinv_get_template( 'invoice/billing-address.php', compact( 'invoice' ) ); |
|
847 | +function wpinv_display_to_address($invoice = 0) { |
|
848 | + if (!empty($invoice)) { |
|
849 | + wpinv_get_template('invoice/billing-address.php', compact('invoice')); |
|
850 | 850 | } |
851 | 851 | } |
852 | -add_action( 'getpaid_invoice_details_left', 'wpinv_display_to_address', 40 ); |
|
852 | +add_action('getpaid_invoice_details_left', 'wpinv_display_to_address', 40); |
|
853 | 853 | |
854 | 854 | |
855 | 855 | /** |
856 | 856 | * Displays invoice line items. |
857 | 857 | */ |
858 | -function wpinv_display_line_items( $invoice_id = 0 ) { |
|
858 | +function wpinv_display_line_items($invoice_id = 0) { |
|
859 | 859 | |
860 | 860 | // Prepare the invoice. |
861 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
861 | + $invoice = new WPInv_Invoice($invoice_id); |
|
862 | 862 | |
863 | 863 | // Abort if there is no invoice. |
864 | - if ( 0 == $invoice->get_id() ) { |
|
864 | + if (0 == $invoice->get_id()) { |
|
865 | 865 | return; |
866 | 866 | } |
867 | 867 | |
868 | 868 | // Line item columns. |
869 | - $columns = getpaid_invoice_item_columns( $invoice ); |
|
870 | - $columns = apply_filters( 'getpaid_invoice_line_items_table_columns', $columns, $invoice ); |
|
869 | + $columns = getpaid_invoice_item_columns($invoice); |
|
870 | + $columns = apply_filters('getpaid_invoice_line_items_table_columns', $columns, $invoice); |
|
871 | 871 | |
872 | - wpinv_get_template( 'invoice/line-items.php', compact( 'invoice', 'columns' ) ); |
|
872 | + wpinv_get_template('invoice/line-items.php', compact('invoice', 'columns')); |
|
873 | 873 | } |
874 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_line_items', 10 ); |
|
874 | +add_action('getpaid_invoice_line_items', 'wpinv_display_line_items', 10); |
|
875 | 875 | |
876 | 876 | /** |
877 | 877 | * Displays invoice subscriptions. |
878 | 878 | * |
879 | 879 | * @param WPInv_Invoice $invoice |
880 | 880 | */ |
881 | -function getpaid_display_invoice_subscriptions( $invoice ) { |
|
881 | +function getpaid_display_invoice_subscriptions($invoice) { |
|
882 | 882 | |
883 | 883 | // Subscriptions. |
884 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
884 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
885 | 885 | |
886 | - if ( empty( $subscriptions ) || ! $invoice->is_recurring() ) { |
|
886 | + if (empty($subscriptions) || !$invoice->is_recurring()) { |
|
887 | 887 | return; |
888 | 888 | } |
889 | 889 | |
890 | - $main_subscription = getpaid_get_invoice_subscription( $invoice ); |
|
890 | + $main_subscription = getpaid_get_invoice_subscription($invoice); |
|
891 | 891 | |
892 | 892 | // Display related subscriptions. |
893 | - if ( is_array( $subscriptions ) ) { |
|
894 | - printf( '<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__( 'Related Subscriptions', 'invoicing' ) ); |
|
895 | - getpaid_admin_subscription_related_subscriptions_metabox( $main_subscription, false ); |
|
893 | + if (is_array($subscriptions)) { |
|
894 | + printf('<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__('Related Subscriptions', 'invoicing')); |
|
895 | + getpaid_admin_subscription_related_subscriptions_metabox($main_subscription, false); |
|
896 | 896 | } |
897 | 897 | |
898 | - printf( '<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__( 'Related Invoices', 'invoicing' ) ); |
|
899 | - getpaid_admin_subscription_invoice_details_metabox( $main_subscription, false ); |
|
898 | + printf('<h2 class="mt-5 mb-1 h4">%s</h2>', esc_html__('Related Invoices', 'invoicing')); |
|
899 | + getpaid_admin_subscription_invoice_details_metabox($main_subscription, false); |
|
900 | 900 | |
901 | 901 | } |
902 | -add_action( 'getpaid_invoice_line_items', 'getpaid_display_invoice_subscriptions', 15 ); |
|
902 | +add_action('getpaid_invoice_line_items', 'getpaid_display_invoice_subscriptions', 15); |
|
903 | 903 | |
904 | 904 | /** |
905 | 905 | * Displays invoice notices on invoices. |
906 | 906 | */ |
907 | 907 | function wpinv_display_invoice_notice() { |
908 | 908 | |
909 | - $label = wpinv_get_option( 'vat_invoice_notice_label' ); |
|
910 | - $notice = wpinv_get_option( 'vat_invoice_notice' ); |
|
909 | + $label = wpinv_get_option('vat_invoice_notice_label'); |
|
910 | + $notice = wpinv_get_option('vat_invoice_notice'); |
|
911 | 911 | |
912 | - if ( empty( $label ) && empty( $notice ) ) { |
|
912 | + if (empty($label) && empty($notice)) { |
|
913 | 913 | return; |
914 | 914 | } |
915 | 915 | |
916 | 916 | echo '<div class="mt-4 mb-4 wpinv-vat-notice">'; |
917 | 917 | |
918 | - if ( ! empty( $label ) ) { |
|
919 | - $label = sanitize_text_field( $label ); |
|
918 | + if (!empty($label)) { |
|
919 | + $label = sanitize_text_field($label); |
|
920 | 920 | echo "<h5>$label</h5>"; |
921 | 921 | } |
922 | 922 | |
923 | - if ( ! empty( $notice ) ) { |
|
924 | - echo '<small class="form-text text-muted">' . wpautop( wptexturize( $notice ) ) . '</small>'; |
|
923 | + if (!empty($notice)) { |
|
924 | + echo '<small class="form-text text-muted">' . wpautop(wptexturize($notice)) . '</small>'; |
|
925 | 925 | } |
926 | 926 | |
927 | 927 | echo '</div>'; |
928 | 928 | } |
929 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_invoice_notice', 100 ); |
|
929 | +add_action('getpaid_invoice_line_items', 'wpinv_display_invoice_notice', 100); |
|
930 | 930 | |
931 | 931 | /** |
932 | 932 | * @param WPInv_Invoice $invoice |
933 | 933 | */ |
934 | -function wpinv_display_invoice_notes( $invoice ) { |
|
934 | +function wpinv_display_invoice_notes($invoice) { |
|
935 | 935 | |
936 | 936 | // Retrieve the notes. |
937 | - $notes = wpinv_get_invoice_notes( $invoice->get_id(), 'customer' ); |
|
937 | + $notes = wpinv_get_invoice_notes($invoice->get_id(), 'customer'); |
|
938 | 938 | |
939 | 939 | // Abort if we have non. |
940 | - if ( empty( $notes ) ) { |
|
940 | + if (empty($notes)) { |
|
941 | 941 | return; |
942 | 942 | } |
943 | 943 | |
944 | 944 | // Echo the note. |
945 | 945 | echo '<div class="getpaid-invoice-notes-wrapper position-relative my-4">'; |
946 | - echo '<h2 class="getpaid-invoice-notes-title mb-1 p-0 h4">' . __( 'Notes', 'invoicing' ) .'</h2>'; |
|
946 | + echo '<h2 class="getpaid-invoice-notes-title mb-1 p-0 h4">' . __('Notes', 'invoicing') . '</h2>'; |
|
947 | 947 | echo '<ul class="getpaid-invoice-notes text-break overflow-auto list-unstyled p-0 m-0">'; |
948 | 948 | |
949 | - foreach( $notes as $note ) { |
|
950 | - wpinv_get_invoice_note_line_item( $note ); |
|
949 | + foreach ($notes as $note) { |
|
950 | + wpinv_get_invoice_note_line_item($note); |
|
951 | 951 | } |
952 | 952 | |
953 | 953 | echo '</ul>'; |
954 | 954 | echo '</div>'; |
955 | 955 | } |
956 | -add_action( 'getpaid_invoice_line_items', 'wpinv_display_invoice_notes', 60 ); |
|
956 | +add_action('getpaid_invoice_line_items', 'wpinv_display_invoice_notes', 60); |
|
957 | 957 | |
958 | 958 | /** |
959 | 959 | * Loads scripts on our invoice templates. |
@@ -961,31 +961,31 @@ discard block |
||
961 | 961 | function wpinv_display_style() { |
962 | 962 | |
963 | 963 | // Make sure that all scripts have been loaded. |
964 | - if ( ! did_action( 'wp_enqueue_scripts' ) ) { |
|
965 | - do_action( 'wp_enqueue_scripts' ); |
|
964 | + if (!did_action('wp_enqueue_scripts')) { |
|
965 | + do_action('wp_enqueue_scripts'); |
|
966 | 966 | } |
967 | 967 | |
968 | 968 | // Register the invoices style. |
969 | - wp_register_style( 'wpinv-single-style', WPINV_PLUGIN_URL . 'assets/css/invoice.css', array(), filemtime( WPINV_PLUGIN_DIR . 'assets/css/invoice.css' ) ); |
|
969 | + wp_register_style('wpinv-single-style', WPINV_PLUGIN_URL . 'assets/css/invoice.css', array(), filemtime(WPINV_PLUGIN_DIR . 'assets/css/invoice.css')); |
|
970 | 970 | |
971 | 971 | // Load required styles |
972 | - wp_print_styles( 'wpinv-single-style' ); |
|
973 | - wp_print_styles( 'ayecode-ui' ); |
|
972 | + wp_print_styles('wpinv-single-style'); |
|
973 | + wp_print_styles('ayecode-ui'); |
|
974 | 974 | |
975 | 975 | // Maybe load custom css. |
976 | - $custom_css = wpinv_get_option( 'template_custom_css' ); |
|
976 | + $custom_css = wpinv_get_option('template_custom_css'); |
|
977 | 977 | |
978 | - if ( isset( $custom_css ) && ! empty( $custom_css ) ) { |
|
979 | - $custom_css = wp_kses( $custom_css, array( '\'', '\"' ) ); |
|
980 | - $custom_css = str_replace( '>', '>', $custom_css ); |
|
978 | + if (isset($custom_css) && !empty($custom_css)) { |
|
979 | + $custom_css = wp_kses($custom_css, array('\'', '\"')); |
|
980 | + $custom_css = str_replace('>', '>', $custom_css); |
|
981 | 981 | echo '<style type="text/css">'; |
982 | 982 | echo $custom_css; |
983 | 983 | echo '</style>'; |
984 | 984 | } |
985 | 985 | |
986 | 986 | } |
987 | -add_action( 'wpinv_invoice_print_head', 'wpinv_display_style' ); |
|
988 | -add_action( 'wpinv_invalid_invoice_head', 'wpinv_display_style' ); |
|
987 | +add_action('wpinv_invoice_print_head', 'wpinv_display_style'); |
|
988 | +add_action('wpinv_invalid_invoice_head', 'wpinv_display_style'); |
|
989 | 989 | |
990 | 990 | |
991 | 991 | /** |
@@ -997,41 +997,41 @@ discard block |
||
997 | 997 | // Retrieve the current invoice. |
998 | 998 | $invoice_id = getpaid_get_current_invoice_id(); |
999 | 999 | |
1000 | - if ( empty( $invoice_id ) ) { |
|
1000 | + if (empty($invoice_id)) { |
|
1001 | 1001 | |
1002 | 1002 | return aui()->alert( |
1003 | 1003 | array( |
1004 | 1004 | 'type' => 'warning', |
1005 | - 'content' => __( 'Invalid invoice', 'invoicing' ), |
|
1005 | + 'content' => __('Invalid invoice', 'invoicing'), |
|
1006 | 1006 | ) |
1007 | 1007 | ); |
1008 | 1008 | |
1009 | 1009 | } |
1010 | 1010 | |
1011 | 1011 | // Can the user view this invoice? |
1012 | - if ( ! wpinv_user_can_view_invoice( $invoice_id ) ) { |
|
1012 | + if (!wpinv_user_can_view_invoice($invoice_id)) { |
|
1013 | 1013 | |
1014 | 1014 | return aui()->alert( |
1015 | 1015 | array( |
1016 | 1016 | 'type' => 'warning', |
1017 | - 'content' => __( 'You are not allowed to view this invoice', 'invoicing' ), |
|
1017 | + 'content' => __('You are not allowed to view this invoice', 'invoicing'), |
|
1018 | 1018 | ) |
1019 | 1019 | ); |
1020 | 1020 | |
1021 | 1021 | } |
1022 | 1022 | |
1023 | 1023 | // Ensure that it is not yet paid for. |
1024 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
1024 | + $invoice = new WPInv_Invoice($invoice_id); |
|
1025 | 1025 | |
1026 | 1026 | // Maybe mark it as viewed. |
1027 | - getpaid_maybe_mark_invoice_as_viewed( $invoice ); |
|
1027 | + getpaid_maybe_mark_invoice_as_viewed($invoice); |
|
1028 | 1028 | |
1029 | - if ( $invoice->is_paid() ) { |
|
1029 | + if ($invoice->is_paid()) { |
|
1030 | 1030 | |
1031 | 1031 | return aui()->alert( |
1032 | 1032 | array( |
1033 | 1033 | 'type' => 'success', |
1034 | - 'content' => __( 'This invoice has already been paid.', 'invoicing' ), |
|
1034 | + 'content' => __('This invoice has already been paid.', 'invoicing'), |
|
1035 | 1035 | ) |
1036 | 1036 | ); |
1037 | 1037 | |
@@ -1041,15 +1041,15 @@ discard block |
||
1041 | 1041 | $wpi_checkout_id = $invoice_id; |
1042 | 1042 | |
1043 | 1043 | // Retrieve appropriate payment form. |
1044 | - $payment_form = new GetPaid_Payment_Form( $invoice->get_meta( 'force_payment_form' ) ); |
|
1045 | - $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
1044 | + $payment_form = new GetPaid_Payment_Form($invoice->get_meta('force_payment_form')); |
|
1045 | + $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
1046 | 1046 | |
1047 | - if ( ! $payment_form->exists() ) { |
|
1047 | + if (!$payment_form->exists()) { |
|
1048 | 1048 | |
1049 | 1049 | return aui()->alert( |
1050 | 1050 | array( |
1051 | 1051 | 'type' => 'warning', |
1052 | - 'content' => __( 'Error loading the payment form', 'invoicing' ), |
|
1052 | + 'content' => __('Error loading the payment form', 'invoicing'), |
|
1053 | 1053 | ) |
1054 | 1054 | ); |
1055 | 1055 | |
@@ -1058,29 +1058,29 @@ discard block |
||
1058 | 1058 | // Set the invoice. |
1059 | 1059 | $payment_form->invoice = $invoice; |
1060 | 1060 | |
1061 | - if ( ! $payment_form->is_default() ) { |
|
1061 | + if (!$payment_form->is_default()) { |
|
1062 | 1062 | |
1063 | 1063 | $items = array(); |
1064 | 1064 | $item_ids = array(); |
1065 | 1065 | |
1066 | - foreach ( $invoice->get_items() as $item ) { |
|
1067 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
1066 | + foreach ($invoice->get_items() as $item) { |
|
1067 | + if (!in_array($item->get_id(), $item_ids)) { |
|
1068 | 1068 | $item_ids[] = $item->get_id(); |
1069 | 1069 | $items[] = $item; |
1070 | 1070 | } |
1071 | 1071 | } |
1072 | 1072 | |
1073 | - foreach ( $payment_form->get_items() as $item ) { |
|
1074 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
1073 | + foreach ($payment_form->get_items() as $item) { |
|
1074 | + if (!in_array($item->get_id(), $item_ids)) { |
|
1075 | 1075 | $item_ids[] = $item->get_id(); |
1076 | 1076 | $items[] = $item; |
1077 | 1077 | } |
1078 | 1078 | } |
1079 | 1079 | |
1080 | - $payment_form->set_items( $items ); |
|
1080 | + $payment_form->set_items($items); |
|
1081 | 1081 | |
1082 | 1082 | } else { |
1083 | - $payment_form->set_items( $invoice->get_items() ); |
|
1083 | + $payment_form->set_items($invoice->get_items()); |
|
1084 | 1084 | } |
1085 | 1085 | |
1086 | 1086 | // Generate the html. |
@@ -1089,7 +1089,7 @@ discard block |
||
1089 | 1089 | } |
1090 | 1090 | |
1091 | 1091 | function wpinv_empty_cart_message() { |
1092 | - return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
1092 | + return apply_filters('wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __('Your cart is empty.', 'invoicing') . '</span>'); |
|
1093 | 1093 | } |
1094 | 1094 | |
1095 | 1095 | /** |
@@ -1106,71 +1106,71 @@ discard block |
||
1106 | 1106 | ) |
1107 | 1107 | ); |
1108 | 1108 | } |
1109 | -add_action( 'wpinv_cart_empty', 'wpinv_empty_checkout_cart' ); |
|
1109 | +add_action('wpinv_cart_empty', 'wpinv_empty_checkout_cart'); |
|
1110 | 1110 | |
1111 | 1111 | /** |
1112 | 1112 | * Filters the receipt page. |
1113 | 1113 | */ |
1114 | -function wpinv_filter_success_page_content( $content ) { |
|
1114 | +function wpinv_filter_success_page_content($content) { |
|
1115 | 1115 | |
1116 | 1116 | // Ensure this is our page. |
1117 | - if ( isset( $_GET['payment-confirm'] ) && wpinv_is_success_page() ) { |
|
1117 | + if (isset($_GET['payment-confirm']) && wpinv_is_success_page()) { |
|
1118 | 1118 | |
1119 | - $gateway = sanitize_text_field( $_GET['payment-confirm'] ); |
|
1120 | - return apply_filters( "wpinv_payment_confirm_$gateway", $content ); |
|
1119 | + $gateway = sanitize_text_field($_GET['payment-confirm']); |
|
1120 | + return apply_filters("wpinv_payment_confirm_$gateway", $content); |
|
1121 | 1121 | |
1122 | 1122 | } |
1123 | 1123 | |
1124 | 1124 | return $content; |
1125 | 1125 | } |
1126 | -add_filter( 'the_content', 'wpinv_filter_success_page_content', 99999 ); |
|
1126 | +add_filter('the_content', 'wpinv_filter_success_page_content', 99999); |
|
1127 | 1127 | |
1128 | -function wpinv_invoice_link( $invoice_id ) { |
|
1129 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
1128 | +function wpinv_invoice_link($invoice_id) { |
|
1129 | + $invoice = wpinv_get_invoice($invoice_id); |
|
1130 | 1130 | |
1131 | - if ( empty( $invoice ) ) { |
|
1131 | + if (empty($invoice)) { |
|
1132 | 1132 | return NULL; |
1133 | 1133 | } |
1134 | 1134 | |
1135 | - $invoice_link = '<a href="' . esc_url( $invoice->get_view_url() ) . '">' . $invoice->get_number() . '</a>'; |
|
1135 | + $invoice_link = '<a href="' . esc_url($invoice->get_view_url()) . '">' . $invoice->get_number() . '</a>'; |
|
1136 | 1136 | |
1137 | - return apply_filters( 'wpinv_get_invoice_link', $invoice_link, $invoice ); |
|
1137 | + return apply_filters('wpinv_get_invoice_link', $invoice_link, $invoice); |
|
1138 | 1138 | } |
1139 | 1139 | |
1140 | -function wpinv_get_invoice_note_line_item( $note, $echo = true ) { |
|
1141 | - if ( empty( $note ) ) { |
|
1140 | +function wpinv_get_invoice_note_line_item($note, $echo = true) { |
|
1141 | + if (empty($note)) { |
|
1142 | 1142 | return NULL; |
1143 | 1143 | } |
1144 | 1144 | |
1145 | - if ( is_int( $note ) ) { |
|
1146 | - $note = get_comment( $note ); |
|
1145 | + if (is_int($note)) { |
|
1146 | + $note = get_comment($note); |
|
1147 | 1147 | } |
1148 | 1148 | |
1149 | - if ( !( is_object( $note ) && is_a( $note, 'WP_Comment' ) ) ) { |
|
1149 | + if (!(is_object($note) && is_a($note, 'WP_Comment'))) { |
|
1150 | 1150 | return NULL; |
1151 | 1151 | } |
1152 | 1152 | |
1153 | - $note_classes = array( 'note' ); |
|
1154 | - $note_classes[] = get_comment_meta( $note->comment_ID, '_wpi_customer_note', true ) ? 'customer-note' : ''; |
|
1153 | + $note_classes = array('note'); |
|
1154 | + $note_classes[] = get_comment_meta($note->comment_ID, '_wpi_customer_note', true) ? 'customer-note' : ''; |
|
1155 | 1155 | $note_classes[] = $note->comment_author === 'System' ? 'system-note' : ''; |
1156 | - $note_classes = apply_filters( 'wpinv_invoice_note_class', array_filter( $note_classes ), $note ); |
|
1157 | - $note_classes = !empty( $note_classes ) ? implode( ' ', $note_classes ) : ''; |
|
1156 | + $note_classes = apply_filters('wpinv_invoice_note_class', array_filter($note_classes), $note); |
|
1157 | + $note_classes = !empty($note_classes) ? implode(' ', $note_classes) : ''; |
|
1158 | 1158 | |
1159 | 1159 | ob_start(); |
1160 | 1160 | ?> |
1161 | - <li rel="<?php echo absint( $note->comment_ID ) ; ?>" class="<?php echo esc_attr( $note_classes ); ?> mb-2"> |
|
1161 | + <li rel="<?php echo absint($note->comment_ID); ?>" class="<?php echo esc_attr($note_classes); ?> mb-2"> |
|
1162 | 1162 | <div class="note_content"> |
1163 | 1163 | |
1164 | - <?php echo wptexturize( wp_kses_post( $note->comment_content ) ); ?> |
|
1164 | + <?php echo wptexturize(wp_kses_post($note->comment_content)); ?> |
|
1165 | 1165 | |
1166 | - <?php if ( ! is_admin() ) : ?> |
|
1166 | + <?php if (!is_admin()) : ?> |
|
1167 | 1167 | <em class="small form-text text-muted mt-0"> |
1168 | 1168 | <?php |
1169 | 1169 | printf( |
1170 | - __( '%1$s - %2$s at %3$s', 'invoicing' ), |
|
1170 | + __('%1$s - %2$s at %3$s', 'invoicing'), |
|
1171 | 1171 | $note->comment_author, |
1172 | - getpaid_format_date_value( $note->comment_date ), |
|
1173 | - date_i18n( get_option( 'time_format' ), strtotime( $note->comment_date ) ) |
|
1172 | + getpaid_format_date_value($note->comment_date), |
|
1173 | + date_i18n(get_option('time_format'), strtotime($note->comment_date)) |
|
1174 | 1174 | ); |
1175 | 1175 | ?> |
1176 | 1176 | </em> |
@@ -1178,21 +1178,21 @@ discard block |
||
1178 | 1178 | |
1179 | 1179 | </div> |
1180 | 1180 | |
1181 | - <?php if ( is_admin() ) : ?> |
|
1181 | + <?php if (is_admin()) : ?> |
|
1182 | 1182 | |
1183 | 1183 | <p class="meta px-4 py-2"> |
1184 | - <abbr class="exact-date" title="<?php echo esc_attr( $note->comment_date ); ?>"> |
|
1184 | + <abbr class="exact-date" title="<?php echo esc_attr($note->comment_date); ?>"> |
|
1185 | 1185 | <?php |
1186 | 1186 | printf( |
1187 | - __( '%1$s - %2$s at %3$s', 'invoicing' ), |
|
1187 | + __('%1$s - %2$s at %3$s', 'invoicing'), |
|
1188 | 1188 | $note->comment_author, |
1189 | - getpaid_format_date_value( $note->comment_date ), |
|
1190 | - date_i18n( get_option( 'time_format' ), strtotime( $note->comment_date ) ) |
|
1189 | + getpaid_format_date_value($note->comment_date), |
|
1190 | + date_i18n(get_option('time_format'), strtotime($note->comment_date)) |
|
1191 | 1191 | ); |
1192 | 1192 | ?> |
1193 | 1193 | </abbr> |
1194 | - <?php if ( $note->comment_author !== 'System' && wpinv_current_user_can_manage_invoicing() ) { ?> |
|
1195 | - <a href="#" class="delete_note"><?php _e( 'Delete note', 'invoicing' ); ?></a> |
|
1194 | + <?php if ($note->comment_author !== 'System' && wpinv_current_user_can_manage_invoicing()) { ?> |
|
1195 | + <a href="#" class="delete_note"><?php _e('Delete note', 'invoicing'); ?></a> |
|
1196 | 1196 | <?php } ?> |
1197 | 1197 | </p> |
1198 | 1198 | |
@@ -1201,9 +1201,9 @@ discard block |
||
1201 | 1201 | </li> |
1202 | 1202 | <?php |
1203 | 1203 | $note_content = ob_get_clean(); |
1204 | - $note_content = apply_filters( 'wpinv_get_invoice_note_line_item', $note_content, $note, $echo ); |
|
1204 | + $note_content = apply_filters('wpinv_get_invoice_note_line_item', $note_content, $note, $echo); |
|
1205 | 1205 | |
1206 | - if ( $echo ) { |
|
1206 | + if ($echo) { |
|
1207 | 1207 | echo $note_content; |
1208 | 1208 | } else { |
1209 | 1209 | return $note_content; |
@@ -1217,21 +1217,21 @@ discard block |
||
1217 | 1217 | * @return string |
1218 | 1218 | */ |
1219 | 1219 | function wpinv_get_policy_text() { |
1220 | - $privacy_page_id = get_option( 'wp_page_for_privacy_policy', 0 ); |
|
1220 | + $privacy_page_id = get_option('wp_page_for_privacy_policy', 0); |
|
1221 | 1221 | |
1222 | - $text = wpinv_get_option('invoicing_privacy_checkout_message', sprintf( __( 'Your personal data will be used to process your invoice, payment and for other purposes described in our %s.', 'invoicing' ), '[wpinv_privacy_policy]' )); |
|
1222 | + $text = wpinv_get_option('invoicing_privacy_checkout_message', sprintf(__('Your personal data will be used to process your invoice, payment and for other purposes described in our %s.', 'invoicing'), '[wpinv_privacy_policy]')); |
|
1223 | 1223 | |
1224 | - if(!$privacy_page_id){ |
|
1225 | - $privacy_page_id = wpinv_get_option( 'privacy_page', 0 ); |
|
1224 | + if (!$privacy_page_id) { |
|
1225 | + $privacy_page_id = wpinv_get_option('privacy_page', 0); |
|
1226 | 1226 | } |
1227 | 1227 | |
1228 | - $privacy_link = $privacy_page_id ? '<a href="' . esc_url( get_permalink( $privacy_page_id ) ) . '" class="wpinv-privacy-policy-link" target="_blank">' . __( 'privacy policy', 'invoicing' ) . '</a>' : __( 'privacy policy', 'invoicing' ); |
|
1228 | + $privacy_link = $privacy_page_id ? '<a href="' . esc_url(get_permalink($privacy_page_id)) . '" class="wpinv-privacy-policy-link" target="_blank">' . __('privacy policy', 'invoicing') . '</a>' : __('privacy policy', 'invoicing'); |
|
1229 | 1229 | |
1230 | 1230 | $find_replace = array( |
1231 | 1231 | '[wpinv_privacy_policy]' => $privacy_link, |
1232 | 1232 | ); |
1233 | 1233 | |
1234 | - $privacy_text = str_replace( array_keys( $find_replace ), array_values( $find_replace ), $text ); |
|
1234 | + $privacy_text = str_replace(array_keys($find_replace), array_values($find_replace), $text); |
|
1235 | 1235 | |
1236 | 1236 | return wp_kses_post(wpautop($privacy_text)); |
1237 | 1237 | } |
@@ -1239,21 +1239,21 @@ discard block |
||
1239 | 1239 | function wpinv_oxygen_fix_conflict() { |
1240 | 1240 | global $ct_ignore_post_types; |
1241 | 1241 | |
1242 | - if ( ! is_array( $ct_ignore_post_types ) ) { |
|
1242 | + if (!is_array($ct_ignore_post_types)) { |
|
1243 | 1243 | $ct_ignore_post_types = array(); |
1244 | 1244 | } |
1245 | 1245 | |
1246 | - $post_types = array( 'wpi_discount', 'wpi_invoice', 'wpi_item', 'wpi_payment_form' ); |
|
1246 | + $post_types = array('wpi_discount', 'wpi_invoice', 'wpi_item', 'wpi_payment_form'); |
|
1247 | 1247 | |
1248 | - foreach ( $post_types as $post_type ) { |
|
1248 | + foreach ($post_types as $post_type) { |
|
1249 | 1249 | $ct_ignore_post_types[] = $post_type; |
1250 | 1250 | |
1251 | 1251 | // Ignore post type |
1252 | - add_filter( 'pre_option_oxygen_vsb_ignore_post_type_' . $post_type, '__return_true', 999 ); |
|
1252 | + add_filter('pre_option_oxygen_vsb_ignore_post_type_' . $post_type, '__return_true', 999); |
|
1253 | 1253 | } |
1254 | 1254 | |
1255 | - remove_filter( 'template_include', 'wpinv_template', 10, 1 ); |
|
1256 | - add_filter( 'template_include', 'wpinv_template', 999, 1 ); |
|
1255 | + remove_filter('template_include', 'wpinv_template', 10, 1); |
|
1256 | + add_filter('template_include', 'wpinv_template', 999, 1); |
|
1257 | 1257 | } |
1258 | 1258 | |
1259 | 1259 | /** |
@@ -1261,10 +1261,10 @@ discard block |
||
1261 | 1261 | * |
1262 | 1262 | * @param GetPaid_Payment_Form $form |
1263 | 1263 | */ |
1264 | -function getpaid_display_payment_form( $form ) { |
|
1264 | +function getpaid_display_payment_form($form) { |
|
1265 | 1265 | |
1266 | - if ( is_numeric( $form ) ) { |
|
1267 | - $form = new GetPaid_Payment_Form( $form ); |
|
1266 | + if (is_numeric($form)) { |
|
1267 | + $form = new GetPaid_Payment_Form($form); |
|
1268 | 1268 | } |
1269 | 1269 | |
1270 | 1270 | $form->display(); |
@@ -1274,55 +1274,55 @@ discard block |
||
1274 | 1274 | /** |
1275 | 1275 | * Helper function to display a item payment form on the frontend. |
1276 | 1276 | */ |
1277 | -function getpaid_display_item_payment_form( $items ) { |
|
1277 | +function getpaid_display_item_payment_form($items) { |
|
1278 | 1278 | |
1279 | - $form = new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
1280 | - $form->set_items( $items ); |
|
1279 | + $form = new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
1280 | + $form->set_items($items); |
|
1281 | 1281 | |
1282 | - if ( 0 == count( $form->get_items() ) ) { |
|
1282 | + if (0 == count($form->get_items())) { |
|
1283 | 1283 | echo aui()->alert( |
1284 | 1284 | array( |
1285 | 1285 | 'type' => 'warning', |
1286 | - 'content' => __( 'No published items found', 'invoicing' ), |
|
1286 | + 'content' => __('No published items found', 'invoicing'), |
|
1287 | 1287 | ) |
1288 | 1288 | ); |
1289 | 1289 | return; |
1290 | 1290 | } |
1291 | 1291 | |
1292 | - $form_items = esc_attr( getpaid_convert_items_to_string( $items ) ); |
|
1292 | + $form_items = esc_attr(getpaid_convert_items_to_string($items)); |
|
1293 | 1293 | $form_items = "<input type='hidden' name='getpaid-form-items' value='$form_items' />"; |
1294 | - $form->display( $form_items ); |
|
1294 | + $form->display($form_items); |
|
1295 | 1295 | } |
1296 | 1296 | |
1297 | 1297 | /** |
1298 | 1298 | * Helper function to display an invoice payment form on the frontend. |
1299 | 1299 | */ |
1300 | -function getpaid_display_invoice_payment_form( $invoice_id ) { |
|
1300 | +function getpaid_display_invoice_payment_form($invoice_id) { |
|
1301 | 1301 | |
1302 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
1302 | + $invoice = wpinv_get_invoice($invoice_id); |
|
1303 | 1303 | |
1304 | - if ( empty( $invoice ) ) { |
|
1304 | + if (empty($invoice)) { |
|
1305 | 1305 | echo aui()->alert( |
1306 | 1306 | array( |
1307 | 1307 | 'type' => 'warning', |
1308 | - 'content' => __( 'Invoice not found', 'invoicing' ), |
|
1308 | + 'content' => __('Invoice not found', 'invoicing'), |
|
1309 | 1309 | ) |
1310 | 1310 | ); |
1311 | 1311 | return; |
1312 | 1312 | } |
1313 | 1313 | |
1314 | - if ( $invoice->is_paid() ) { |
|
1314 | + if ($invoice->is_paid()) { |
|
1315 | 1315 | echo aui()->alert( |
1316 | 1316 | array( |
1317 | 1317 | 'type' => 'warning', |
1318 | - 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
1318 | + 'content' => __('Invoice has already been paid', 'invoicing'), |
|
1319 | 1319 | ) |
1320 | 1320 | ); |
1321 | 1321 | return; |
1322 | 1322 | } |
1323 | 1323 | |
1324 | - $form = new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
1325 | - $form->set_items( $invoice->get_items() ); |
|
1324 | + $form = new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
1325 | + $form->set_items($invoice->get_items()); |
|
1326 | 1326 | |
1327 | 1327 | $form->display(); |
1328 | 1328 | } |
@@ -1330,23 +1330,23 @@ discard block |
||
1330 | 1330 | /** |
1331 | 1331 | * Helper function to convert item string to array. |
1332 | 1332 | */ |
1333 | -function getpaid_convert_items_to_array( $items ) { |
|
1334 | - $items = array_filter( array_map( 'trim', explode( ',', $items ) ) ); |
|
1333 | +function getpaid_convert_items_to_array($items) { |
|
1334 | + $items = array_filter(array_map('trim', explode(',', $items))); |
|
1335 | 1335 | $prepared = array(); |
1336 | 1336 | |
1337 | - foreach ( $items as $item ) { |
|
1338 | - $data = array_map( 'trim', explode( '|', $item ) ); |
|
1337 | + foreach ($items as $item) { |
|
1338 | + $data = array_map('trim', explode('|', $item)); |
|
1339 | 1339 | |
1340 | - if ( empty( $data[0] ) || ! is_numeric( $data[0] ) ) { |
|
1340 | + if (empty($data[0]) || !is_numeric($data[0])) { |
|
1341 | 1341 | continue; |
1342 | 1342 | } |
1343 | 1343 | |
1344 | 1344 | $quantity = 1; |
1345 | - if ( isset( $data[1] ) && is_numeric( $data[1] ) ) { |
|
1345 | + if (isset($data[1]) && is_numeric($data[1])) { |
|
1346 | 1346 | $quantity = (float) $data[1]; |
1347 | 1347 | } |
1348 | 1348 | |
1349 | - $prepared[ $data[0] ] = $quantity; |
|
1349 | + $prepared[$data[0]] = $quantity; |
|
1350 | 1350 | |
1351 | 1351 | } |
1352 | 1352 | |
@@ -1356,13 +1356,13 @@ discard block |
||
1356 | 1356 | /** |
1357 | 1357 | * Helper function to convert item array to string. |
1358 | 1358 | */ |
1359 | -function getpaid_convert_items_to_string( $items ) { |
|
1359 | +function getpaid_convert_items_to_string($items) { |
|
1360 | 1360 | $prepared = array(); |
1361 | 1361 | |
1362 | - foreach ( $items as $item => $quantity ) { |
|
1362 | + foreach ($items as $item => $quantity) { |
|
1363 | 1363 | $prepared[] = "$item|$quantity"; |
1364 | 1364 | } |
1365 | - return implode( ',', $prepared ); |
|
1365 | + return implode(',', $prepared); |
|
1366 | 1366 | } |
1367 | 1367 | |
1368 | 1368 | /** |
@@ -1370,21 +1370,21 @@ discard block |
||
1370 | 1370 | * |
1371 | 1371 | * Provide a label and one of $form, $items or $invoice. |
1372 | 1372 | */ |
1373 | -function getpaid_get_payment_button( $label, $form = null, $items = null, $invoice = null ) { |
|
1374 | - $label = sanitize_text_field( $label ); |
|
1373 | +function getpaid_get_payment_button($label, $form = null, $items = null, $invoice = null) { |
|
1374 | + $label = sanitize_text_field($label); |
|
1375 | 1375 | |
1376 | - if ( ! empty( $form ) ) { |
|
1377 | - $form = esc_attr( $form ); |
|
1376 | + if (!empty($form)) { |
|
1377 | + $form = esc_attr($form); |
|
1378 | 1378 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-form='$form'>$label</button>"; |
1379 | 1379 | } |
1380 | 1380 | |
1381 | - if ( ! empty( $items ) ) { |
|
1382 | - $items = esc_attr( $items ); |
|
1381 | + if (!empty($items)) { |
|
1382 | + $items = esc_attr($items); |
|
1383 | 1383 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-item='$items'>$label</button>"; |
1384 | 1384 | } |
1385 | 1385 | |
1386 | - if ( ! empty( $invoice ) ) { |
|
1387 | - $invoice = esc_attr( $invoice ); |
|
1386 | + if (!empty($invoice)) { |
|
1387 | + $invoice = esc_attr($invoice); |
|
1388 | 1388 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-invoice='$invoice'>$label</button>"; |
1389 | 1389 | } |
1390 | 1390 | |
@@ -1395,17 +1395,17 @@ discard block |
||
1395 | 1395 | * |
1396 | 1396 | * @param WPInv_Invoice $invoice |
1397 | 1397 | */ |
1398 | -function getpaid_the_invoice_description( $invoice ) { |
|
1398 | +function getpaid_the_invoice_description($invoice) { |
|
1399 | 1399 | $description = $invoice->get_description(); |
1400 | 1400 | |
1401 | - if ( empty( $description ) ) { |
|
1401 | + if (empty($description)) { |
|
1402 | 1402 | return; |
1403 | 1403 | } |
1404 | 1404 | |
1405 | - $description = wp_kses_post( $description ); |
|
1405 | + $description = wp_kses_post($description); |
|
1406 | 1406 | echo "<small class='getpaid-invoice-description text-dark p-2 form-text' style='margin-bottom: 20px; border-left: 2px solid #2196F3;'><em>$description</em></small>"; |
1407 | 1407 | } |
1408 | -add_action( 'getpaid_invoice_line_items', 'getpaid_the_invoice_description', 100 ); |
|
1408 | +add_action('getpaid_invoice_line_items', 'getpaid_the_invoice_description', 100); |
|
1409 | 1409 | |
1410 | 1410 | /** |
1411 | 1411 | * Render element on a form. |
@@ -1413,60 +1413,60 @@ discard block |
||
1413 | 1413 | * @param array $element |
1414 | 1414 | * @param GetPaid_Payment_Form $form |
1415 | 1415 | */ |
1416 | -function getpaid_payment_form_element( $element, $form ) { |
|
1416 | +function getpaid_payment_form_element($element, $form) { |
|
1417 | 1417 | |
1418 | 1418 | // Set up the args. |
1419 | - $element_type = trim( $element['type'] ); |
|
1419 | + $element_type = trim($element['type']); |
|
1420 | 1420 | $element['form'] = $form; |
1421 | - extract( $element ); |
|
1421 | + extract($element); |
|
1422 | 1422 | |
1423 | 1423 | // Try to locate the appropriate template. |
1424 | - $located = wpinv_locate_template( "payment-forms/elements/$element_type.php" ); |
|
1424 | + $located = wpinv_locate_template("payment-forms/elements/$element_type.php"); |
|
1425 | 1425 | |
1426 | 1426 | // Abort if this is not our element. |
1427 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
1427 | + if (empty($located) || !file_exists($located)) { |
|
1428 | 1428 | return; |
1429 | 1429 | } |
1430 | 1430 | |
1431 | 1431 | // Generate the class and id of the element. |
1432 | - $wrapper_class = 'getpaid-payment-form-element-' . trim( esc_attr( $element_type ) ); |
|
1433 | - $id = isset( $id ) ? $id : uniqid( 'gp' ); |
|
1432 | + $wrapper_class = 'getpaid-payment-form-element-' . trim(esc_attr($element_type)); |
|
1433 | + $id = isset($id) ? $id : uniqid('gp'); |
|
1434 | 1434 | |
1435 | 1435 | // Echo the opening wrapper. |
1436 | 1436 | echo "<div class='getpaid-payment-form-element $wrapper_class'>"; |
1437 | 1437 | |
1438 | 1438 | // Fires before displaying a given element type's content. |
1439 | - do_action( "getpaid_before_payment_form_{$element_type}_element", $element, $form ); |
|
1439 | + do_action("getpaid_before_payment_form_{$element_type}_element", $element, $form); |
|
1440 | 1440 | |
1441 | 1441 | // Include the template for the element. |
1442 | 1442 | include $located; |
1443 | 1443 | |
1444 | 1444 | // Fires after displaying a given element type's content. |
1445 | - do_action( "getpaid_payment_form_{$element_type}_element", $element, $form ); |
|
1445 | + do_action("getpaid_payment_form_{$element_type}_element", $element, $form); |
|
1446 | 1446 | |
1447 | 1447 | // Echo the closing wrapper. |
1448 | 1448 | echo '</div>'; |
1449 | 1449 | } |
1450 | -add_action( 'getpaid_payment_form_element', 'getpaid_payment_form_element', 10, 2 ); |
|
1450 | +add_action('getpaid_payment_form_element', 'getpaid_payment_form_element', 10, 2); |
|
1451 | 1451 | |
1452 | 1452 | /** |
1453 | 1453 | * Render an element's edit page. |
1454 | 1454 | * |
1455 | 1455 | * @param WP_Post $post |
1456 | 1456 | */ |
1457 | -function getpaid_payment_form_edit_element_template( $post ) { |
|
1457 | +function getpaid_payment_form_edit_element_template($post) { |
|
1458 | 1458 | |
1459 | 1459 | // Retrieve all elements. |
1460 | - $all_elements = wp_list_pluck( wpinv_get_data( 'payment-form-elements' ), 'type' ); |
|
1460 | + $all_elements = wp_list_pluck(wpinv_get_data('payment-form-elements'), 'type'); |
|
1461 | 1461 | |
1462 | - foreach ( $all_elements as $element ) { |
|
1462 | + foreach ($all_elements as $element) { |
|
1463 | 1463 | |
1464 | 1464 | // Try to locate the appropriate template. |
1465 | - $element = sanitize_key( $element ); |
|
1466 | - $located = wpinv_locate_template( "payment-forms-admin/edit/$element.php" ); |
|
1465 | + $element = sanitize_key($element); |
|
1466 | + $located = wpinv_locate_template("payment-forms-admin/edit/$element.php"); |
|
1467 | 1467 | |
1468 | 1468 | // Continue if this is not our element. |
1469 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
1469 | + if (empty($located) || !file_exists($located)) { |
|
1470 | 1470 | continue; |
1471 | 1471 | } |
1472 | 1472 | |
@@ -1477,7 +1477,7 @@ discard block |
||
1477 | 1477 | } |
1478 | 1478 | |
1479 | 1479 | } |
1480 | -add_action( 'getpaid_payment_form_edit_element_template', 'getpaid_payment_form_edit_element_template' ); |
|
1480 | +add_action('getpaid_payment_form_edit_element_template', 'getpaid_payment_form_edit_element_template'); |
|
1481 | 1481 | |
1482 | 1482 | /** |
1483 | 1483 | * Render an element's preview. |
@@ -1486,16 +1486,16 @@ discard block |
||
1486 | 1486 | function getpaid_payment_form_render_element_preview_template() { |
1487 | 1487 | |
1488 | 1488 | // Retrieve all elements. |
1489 | - $all_elements = wp_list_pluck( wpinv_get_data( 'payment-form-elements' ), 'type' ); |
|
1489 | + $all_elements = wp_list_pluck(wpinv_get_data('payment-form-elements'), 'type'); |
|
1490 | 1490 | |
1491 | - foreach ( $all_elements as $element ) { |
|
1491 | + foreach ($all_elements as $element) { |
|
1492 | 1492 | |
1493 | 1493 | // Try to locate the appropriate template. |
1494 | - $element = sanitize_key( $element ); |
|
1495 | - $located = wpinv_locate_template( "payment-forms-admin/previews/$element.php" ); |
|
1494 | + $element = sanitize_key($element); |
|
1495 | + $located = wpinv_locate_template("payment-forms-admin/previews/$element.php"); |
|
1496 | 1496 | |
1497 | 1497 | // Continue if this is not our element. |
1498 | - if ( empty( $located ) || ! file_exists( $located ) ) { |
|
1498 | + if (empty($located) || !file_exists($located)) { |
|
1499 | 1499 | continue; |
1500 | 1500 | } |
1501 | 1501 | |
@@ -1506,7 +1506,7 @@ discard block |
||
1506 | 1506 | } |
1507 | 1507 | |
1508 | 1508 | } |
1509 | -add_action( 'wpinv_payment_form_render_element_template', 'getpaid_payment_form_render_element_preview_template' ); |
|
1509 | +add_action('wpinv_payment_form_render_element_template', 'getpaid_payment_form_render_element_preview_template'); |
|
1510 | 1510 | |
1511 | 1511 | /** |
1512 | 1512 | * Shows a list of gateways that support recurring payments. |
@@ -1514,17 +1514,17 @@ discard block |
||
1514 | 1514 | function wpinv_get_recurring_gateways_text() { |
1515 | 1515 | $gateways = array(); |
1516 | 1516 | |
1517 | - foreach ( wpinv_get_payment_gateways() as $key => $gateway ) { |
|
1518 | - if ( wpinv_gateway_support_subscription( $key ) ) { |
|
1519 | - $gateways[] = sanitize_text_field( $gateway['admin_label'] ); |
|
1517 | + foreach (wpinv_get_payment_gateways() as $key => $gateway) { |
|
1518 | + if (wpinv_gateway_support_subscription($key)) { |
|
1519 | + $gateways[] = sanitize_text_field($gateway['admin_label']); |
|
1520 | 1520 | } |
1521 | 1521 | } |
1522 | 1522 | |
1523 | - if ( empty( $gateways ) ) { |
|
1524 | - return "<span class='form-text text-danger'>" . __( 'No active gateways support subscription payments.', 'invoicing' ) ."</span>"; |
|
1523 | + if (empty($gateways)) { |
|
1524 | + return "<span class='form-text text-danger'>" . __('No active gateways support subscription payments.', 'invoicing') . "</span>"; |
|
1525 | 1525 | } |
1526 | 1526 | |
1527 | - return "<span class='form-text text-muted'>" . wp_sprintf( __( 'Subscription payments only supported by: %s', 'invoicing' ), implode( ', ', $gateways ) ) ."</span>"; |
|
1527 | + return "<span class='form-text text-muted'>" . wp_sprintf(__('Subscription payments only supported by: %s', 'invoicing'), implode(', ', $gateways)) . "</span>"; |
|
1528 | 1528 | |
1529 | 1529 | } |
1530 | 1530 | |
@@ -1534,7 +1534,7 @@ discard block |
||
1534 | 1534 | * @return GetPaid_Template |
1535 | 1535 | */ |
1536 | 1536 | function getpaid_template() { |
1537 | - return getpaid()->get( 'template' ); |
|
1537 | + return getpaid()->get('template'); |
|
1538 | 1538 | } |
1539 | 1539 | |
1540 | 1540 | /** |
@@ -1543,8 +1543,8 @@ discard block |
||
1543 | 1543 | * @param array args |
1544 | 1544 | * @return string |
1545 | 1545 | */ |
1546 | -function getpaid_paginate_links( $args ) { |
|
1547 | - return str_replace( 'page-link dots', 'page-link text-dark', aui()->pagination( $args ) ); |
|
1546 | +function getpaid_paginate_links($args) { |
|
1547 | + return str_replace('page-link dots', 'page-link text-dark', aui()->pagination($args)); |
|
1548 | 1548 | } |
1549 | 1549 | |
1550 | 1550 | /** |
@@ -1554,21 +1554,21 @@ discard block |
||
1554 | 1554 | * @param string state |
1555 | 1555 | * @return string |
1556 | 1556 | */ |
1557 | -function getpaid_get_states_select_markup( $country, $state, $placeholder, $label, $help_text, $required = false, $wrapper_class = 'col-12', $field_name = 'wpinv_state' ) { |
|
1557 | +function getpaid_get_states_select_markup($country, $state, $placeholder, $label, $help_text, $required = false, $wrapper_class = 'col-12', $field_name = 'wpinv_state') { |
|
1558 | 1558 | |
1559 | - $states = wpinv_get_country_states( $country ); |
|
1560 | - $uniqid = uniqid( '_' ); |
|
1559 | + $states = wpinv_get_country_states($country); |
|
1560 | + $uniqid = uniqid('_'); |
|
1561 | 1561 | |
1562 | - if ( ! empty( $states ) ) { |
|
1562 | + if (!empty($states)) { |
|
1563 | 1563 | |
1564 | - return aui()->select( array( |
|
1564 | + return aui()->select(array( |
|
1565 | 1565 | 'options' => $states, |
1566 | - 'name' => esc_attr( $field_name ), |
|
1567 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
1568 | - 'value' => sanitize_text_field( $state ), |
|
1566 | + 'name' => esc_attr($field_name), |
|
1567 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
1568 | + 'value' => sanitize_text_field($state), |
|
1569 | 1569 | 'placeholder' => $placeholder, |
1570 | 1570 | 'required' => $required, |
1571 | - 'label' => wp_kses_post( $label ), |
|
1571 | + 'label' => wp_kses_post($label), |
|
1572 | 1572 | 'label_type' => 'vertical', |
1573 | 1573 | 'help_text' => $help_text, |
1574 | 1574 | 'class' => 'getpaid-address-field wpinv_state', |
@@ -1583,14 +1583,14 @@ discard block |
||
1583 | 1583 | |
1584 | 1584 | return aui()->input( |
1585 | 1585 | array( |
1586 | - 'name' => esc_attr( $field_name ), |
|
1587 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
1586 | + 'name' => esc_attr($field_name), |
|
1587 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
1588 | 1588 | 'placeholder' => $placeholder, |
1589 | 1589 | 'required' => $required, |
1590 | - 'label' => wp_kses_post( $label ), |
|
1590 | + 'label' => wp_kses_post($label), |
|
1591 | 1591 | 'label_type' => 'vertical', |
1592 | 1592 | 'help_text' => $help_text, |
1593 | - 'value' => sanitize_text_field( $state ), |
|
1593 | + 'value' => sanitize_text_field($state), |
|
1594 | 1594 | 'class' => 'getpaid-address-field wpinv_state', |
1595 | 1595 | 'wrap_class' => "$wrapper_class getpaid-address-field-wrapper__state", |
1596 | 1596 | 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__state', |
@@ -1608,16 +1608,16 @@ discard block |
||
1608 | 1608 | * @param array $element |
1609 | 1609 | * @return string |
1610 | 1610 | */ |
1611 | -function getpaid_get_form_element_grid_class( $element ) { |
|
1611 | +function getpaid_get_form_element_grid_class($element) { |
|
1612 | 1612 | |
1613 | 1613 | $class = "col-12"; |
1614 | - $width = empty( $element['grid_width'] ) ? 'full' : $element['grid_width']; |
|
1614 | + $width = empty($element['grid_width']) ? 'full' : $element['grid_width']; |
|
1615 | 1615 | |
1616 | - if ( $width == 'half' ) { |
|
1616 | + if ($width == 'half') { |
|
1617 | 1617 | $class = "col-12 col-md-6"; |
1618 | 1618 | } |
1619 | 1619 | |
1620 | - if ( $width == 'third' ) { |
|
1620 | + if ($width == 'third') { |
|
1621 | 1621 | $class = "col-12 col-md-4"; |
1622 | 1622 | } |
1623 | 1623 |
@@ -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,121 +1133,121 @@ 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() && ! $invoice->is_refunded() ) { |
|
1194 | - unset( $meta[ 'date_paid' ] ); |
|
1195 | - unset( $meta[ 'transaction_id' ] ); |
|
1193 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
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 | 1212 | // Link to the parent invoice. |
1213 | - if ( $invoice->get_parent_id() > 0 ) { |
|
1213 | + if ($invoice->get_parent_id() > 0) { |
|
1214 | 1214 | |
1215 | - $meta[ 'parent' ] = array( |
|
1215 | + $meta['parent'] = array( |
|
1216 | 1216 | |
1217 | 1217 | 'label' => sprintf( |
1218 | - __( 'Parent %s', 'invoicing' ), |
|
1219 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
1218 | + __('Parent %s', 'invoicing'), |
|
1219 | + ucfirst($invoice->get_invoice_quote_type()) |
|
1220 | 1220 | ), |
1221 | 1221 | |
1222 | - 'value' => wpinv_invoice_link( $invoice->get_parent_id() ), |
|
1222 | + 'value' => wpinv_invoice_link($invoice->get_parent_id()), |
|
1223 | 1223 | |
1224 | 1224 | ); |
1225 | 1225 | |
1226 | 1226 | } |
1227 | 1227 | |
1228 | 1228 | |
1229 | - if ( $invoice->is_recurring() ) { |
|
1229 | + if ($invoice->is_recurring()) { |
|
1230 | 1230 | |
1231 | - $subscription = getpaid_get_invoice_subscriptions( $invoice ); |
|
1232 | - if ( ! empty ( $subscription ) && ! is_array( $subscription ) && $subscription->exists() ) { |
|
1231 | + $subscription = getpaid_get_invoice_subscriptions($invoice); |
|
1232 | + if (!empty ($subscription) && !is_array($subscription) && $subscription->exists()) { |
|
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( |
|
1238 | - 'label' => __( 'Renews On', 'invoicing' ), |
|
1239 | - 'value' => getpaid_format_date( $subscription->get_expiration() ), |
|
1237 | + $meta['renewal_date'] = array( |
|
1238 | + 'label' => __('Renews On', 'invoicing'), |
|
1239 | + 'value' => getpaid_format_date($subscription->get_expiration()), |
|
1240 | 1240 | ); |
1241 | 1241 | |
1242 | 1242 | } |
1243 | 1243 | |
1244 | - if ( $invoice->is_parent() ) { |
|
1244 | + if ($invoice->is_parent()) { |
|
1245 | 1245 | |
1246 | 1246 | // Display the recurring amount. |
1247 | - $meta[ 'recurring_total' ] = array( |
|
1247 | + $meta['recurring_total'] = array( |
|
1248 | 1248 | |
1249 | - 'label' => __( 'Recurring Amount', 'invoicing' ), |
|
1250 | - 'value' => wpinv_price( $subscription->get_recurring_amount(), $invoice->get_currency() ), |
|
1249 | + 'label' => __('Recurring Amount', 'invoicing'), |
|
1250 | + 'value' => wpinv_price($subscription->get_recurring_amount(), $invoice->get_currency()), |
|
1251 | 1251 | |
1252 | 1252 | ); |
1253 | 1253 | |
@@ -1257,15 +1257,15 @@ discard block |
||
1257 | 1257 | } |
1258 | 1258 | |
1259 | 1259 | // Add the invoice total to the meta. |
1260 | - $meta[ 'invoice_total' ] = array( |
|
1260 | + $meta['invoice_total'] = array( |
|
1261 | 1261 | |
1262 | - 'label' => __( 'Total Amount', 'invoicing' ), |
|
1263 | - 'value' => wpinv_price( $invoice->get_total(), $invoice->get_currency() ), |
|
1262 | + 'label' => __('Total Amount', 'invoicing'), |
|
1263 | + 'value' => wpinv_price($invoice->get_total(), $invoice->get_currency()), |
|
1264 | 1264 | |
1265 | 1265 | ); |
1266 | 1266 | |
1267 | 1267 | // Provide a way for third party plugins to filter the meta. |
1268 | - $meta = apply_filters( 'getpaid_invoice_meta_data', $meta, $invoice ); |
|
1268 | + $meta = apply_filters('getpaid_invoice_meta_data', $meta, $invoice); |
|
1269 | 1269 | |
1270 | 1270 | return $meta; |
1271 | 1271 | |
@@ -1304,12 +1304,12 @@ discard block |
||
1304 | 1304 | * @param GetPaid_Form_Item $item |
1305 | 1305 | * @return float |
1306 | 1306 | */ |
1307 | -function getpaid_get_invoice_tax_rate( $invoice, $item ) { |
|
1307 | +function getpaid_get_invoice_tax_rate($invoice, $item) { |
|
1308 | 1308 | |
1309 | - $rates = getpaid_get_item_tax_rates( $item, $invoice->get_country(), $invoice->get_state() ); |
|
1310 | - $rates = getpaid_filter_item_tax_rates( $item, $rates ); |
|
1311 | - $rates = wp_list_pluck( $rates, 'rate' ); |
|
1309 | + $rates = getpaid_get_item_tax_rates($item, $invoice->get_country(), $invoice->get_state()); |
|
1310 | + $rates = getpaid_filter_item_tax_rates($item, $rates); |
|
1311 | + $rates = wp_list_pluck($rates, 'rate'); |
|
1312 | 1312 | |
1313 | - return array_sum( $rates ); |
|
1313 | + return array_sum($rates); |
|
1314 | 1314 | |
1315 | 1315 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,42 +21,42 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the invoice. |
27 | - $invoice = new WPInv_Invoice( $post ); |
|
27 | + $invoice = new WPInv_Invoice($post); |
|
28 | 28 | |
29 | 29 | // Invoice items. |
30 | 30 | $items = $invoice->get_items(); |
31 | 31 | |
32 | 32 | // New item url. |
33 | - $new_item = admin_url( 'post-new.php?post_type=wpi_item' ); |
|
33 | + $new_item = admin_url('post-new.php?post_type=wpi_item'); |
|
34 | 34 | |
35 | 35 | $totals = array( |
36 | 36 | |
37 | 37 | 'subtotal' => array( |
38 | - 'label' => __( 'Items Subtotal', 'invoicing' ), |
|
39 | - 'value' => wpinv_price( $invoice->get_subtotal(), $invoice->get_currency() ), |
|
38 | + 'label' => __('Items Subtotal', 'invoicing'), |
|
39 | + 'value' => wpinv_price($invoice->get_subtotal(), $invoice->get_currency()), |
|
40 | 40 | ), |
41 | 41 | |
42 | 42 | 'discount' => array( |
43 | - 'label' => __( 'Total Discount', 'invoicing' ), |
|
44 | - 'value' => wpinv_price( $invoice->get_total_discount(), $invoice->get_currency() ), |
|
43 | + 'label' => __('Total Discount', 'invoicing'), |
|
44 | + 'value' => wpinv_price($invoice->get_total_discount(), $invoice->get_currency()), |
|
45 | 45 | ), |
46 | 46 | |
47 | 47 | 'tax' => array( |
48 | - 'label' => __( 'Total Tax', 'invoicing' ), |
|
49 | - 'value' => wpinv_price( $invoice->get_total_tax(), $invoice->get_currency() ), |
|
48 | + 'label' => __('Total Tax', 'invoicing'), |
|
49 | + 'value' => wpinv_price($invoice->get_total_tax(), $invoice->get_currency()), |
|
50 | 50 | ), |
51 | 51 | |
52 | 52 | 'total' => array( |
53 | - 'label' => __( 'Invoice Total', 'invoicing' ), |
|
54 | - 'value' => wpinv_price( $invoice->get_total(), $invoice->get_currency() ), |
|
53 | + 'label' => __('Invoice Total', 'invoicing'), |
|
54 | + 'value' => wpinv_price($invoice->get_total(), $invoice->get_currency()), |
|
55 | 55 | ) |
56 | 56 | ); |
57 | 57 | |
58 | - if ( ! wpinv_use_taxes() ) { |
|
59 | - unset( $totals['tax'] ); |
|
58 | + if (!wpinv_use_taxes()) { |
|
59 | + unset($totals['tax']); |
|
60 | 60 | } |
61 | 61 | ?> |
62 | 62 | |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | } |
73 | 73 | </style> |
74 | 74 | |
75 | - <div class="bsui getpaid-invoice-items-inner <?php echo sanitize_html_class( $invoice->get_template( 'edit' ) ); ?> <?php echo empty( $items ) ? 'no-items' : 'has-items'; ?> <?php echo $invoice->is_paid() || $invoice->is_refunded() ? 'not-editable' : 'editable'; ?>" style="margin-top: 1.5rem"> |
|
75 | + <div class="bsui getpaid-invoice-items-inner <?php echo sanitize_html_class($invoice->get_template('edit')); ?> <?php echo empty($items) ? 'no-items' : 'has-items'; ?> <?php echo $invoice->is_paid() || $invoice->is_refunded() ? 'not-editable' : 'editable'; ?>" style="margin-top: 1.5rem"> |
|
76 | 76 | |
77 | - <?php if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) : ?> |
|
78 | - <?php do_action( 'wpinv_meta_box_before_invoice_template_row', $invoice->get_id() ); ?> |
|
77 | + <?php if (!$invoice->is_paid() && !$invoice->is_refunded()) : ?> |
|
78 | + <?php do_action('wpinv_meta_box_before_invoice_template_row', $invoice->get_id()); ?> |
|
79 | 79 | |
80 | 80 | <div class="row"> |
81 | 81 | <div class="col-12 col-sm-6"> |
@@ -84,15 +84,15 @@ discard block |
||
84 | 84 | array( |
85 | 85 | 'id' => 'wpinv_template', |
86 | 86 | 'name' => 'wpinv_template', |
87 | - 'label' => __( 'Template', 'invoicing' ), |
|
87 | + 'label' => __('Template', 'invoicing'), |
|
88 | 88 | 'label_type' => 'vertical', |
89 | - 'placeholder' => __( 'Choose a template', 'invoicing' ), |
|
89 | + 'placeholder' => __('Choose a template', 'invoicing'), |
|
90 | 90 | 'class' => 'form-control-sm', |
91 | - 'value' => $invoice->get_template( 'edit' ), |
|
91 | + 'value' => $invoice->get_template('edit'), |
|
92 | 92 | 'options' => array( |
93 | - 'quantity' => __( 'Quantity', 'invoicing' ), |
|
94 | - 'hours' => __( 'Hours', 'invoicing' ), |
|
95 | - 'amount' => __( 'Amount Only', 'invoicing' ), |
|
93 | + 'quantity' => __('Quantity', 'invoicing'), |
|
94 | + 'hours' => __('Hours', 'invoicing'), |
|
95 | + 'amount' => __('Amount Only', 'invoicing'), |
|
96 | 96 | ), |
97 | 97 | 'data-allow-clear' => 'false', |
98 | 98 | 'select2' => true, |
@@ -108,11 +108,11 @@ discard block |
||
108 | 108 | array( |
109 | 109 | 'id' => 'wpinv_currency', |
110 | 110 | 'name' => 'wpinv_currency', |
111 | - 'label' => __( 'Currency', 'invoicing' ), |
|
111 | + 'label' => __('Currency', 'invoicing'), |
|
112 | 112 | 'label_type' => 'vertical', |
113 | - 'placeholder' => __( 'Select Invoice Currency', 'invoicing' ), |
|
113 | + 'placeholder' => __('Select Invoice Currency', 'invoicing'), |
|
114 | 114 | 'class' => 'form-control-sm', |
115 | - 'value' => $invoice->get_currency( 'edit' ), |
|
115 | + 'value' => $invoice->get_currency('edit'), |
|
116 | 116 | 'required' => false, |
117 | 117 | 'data-allow-clear' => 'false', |
118 | 118 | 'select2' => true, |
@@ -124,24 +124,24 @@ discard block |
||
124 | 124 | </div> |
125 | 125 | </div> |
126 | 126 | |
127 | - <?php do_action( 'wpinv_meta_box_invoice_template_row', $invoice->get_id() ); ?> |
|
127 | + <?php do_action('wpinv_meta_box_invoice_template_row', $invoice->get_id()); ?> |
|
128 | 128 | <?php endif; ?> |
129 | 129 | |
130 | 130 | <table cellpadding="0" cellspacing="0" class="getpaid_invoice_items"> |
131 | 131 | <thead> |
132 | 132 | <tr> |
133 | - <th class="getpaid-item" colspan="2"><?php _e( 'Item', 'invoicing' ) ?></th> |
|
133 | + <th class="getpaid-item" colspan="2"><?php _e('Item', 'invoicing') ?></th> |
|
134 | 134 | <th class="getpaid-quantity hide-if-amount text-right"> |
135 | - <span class="getpaid-hide-if-hours"><?php _e( 'Quantity', 'invoicing' ) ?></span> |
|
136 | - <span class="getpaid-hide-if-quantity"><?php _e( 'Hours', 'invoicing' ) ?></span> |
|
135 | + <span class="getpaid-hide-if-hours"><?php _e('Quantity', 'invoicing') ?></span> |
|
136 | + <span class="getpaid-hide-if-quantity"><?php _e('Hours', 'invoicing') ?></span> |
|
137 | 137 | </th> |
138 | 138 | <th class="getpaid-price hide-if-amount text-right"> |
139 | - <span class="getpaid-hide-if-hours"><?php _e( 'Price', 'invoicing' ) ?></span> |
|
140 | - <span class="getpaid-hide-if-quantity"><?php _e( 'Rate', 'invoicing' ) ?></span> |
|
139 | + <span class="getpaid-hide-if-hours"><?php _e('Price', 'invoicing') ?></span> |
|
140 | + <span class="getpaid-hide-if-quantity"><?php _e('Rate', 'invoicing') ?></span> |
|
141 | 141 | </th> |
142 | 142 | <th class="getpaid-item-subtotal text-right"> |
143 | - <span class="getpaid-hide-if-hours getpaid-hide-if-quantity"><?php _e( 'Amount', 'invoicing' ) ?></span> |
|
144 | - <span class="hide-if-amount"><?php _e( 'Total', 'invoicing' ) ?></span> |
|
143 | + <span class="getpaid-hide-if-hours getpaid-hide-if-quantity"><?php _e('Amount', 'invoicing') ?></span> |
|
144 | + <span class="hide-if-amount"><?php _e('Total', 'invoicing') ?></span> |
|
145 | 145 | </th> |
146 | 146 | <th class="getpaid-item-actions hide-if-not-editable" width="70px"> </th> |
147 | 147 | </tr> |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | <tbody class="getpaid_invoice_line_items"> |
150 | 150 | <tr class="hide-if-has-items hide-if-not-editable"> |
151 | 151 | <td colspan="2" class="pt-4 pb-4"> |
152 | - <button type="button" class="button button-primary add-invoice-item" data-toggle="modal" data-target="#getpaid-add-items-to-invoice"><?php _e( 'Add Existing Items', 'invoicing' ) ?></button> |
|
153 | - <a href="<?php echo esc_url( $new_item ); ?>" target="_blank" class="button button-secondary"><?php _e( 'Create New Item', 'invoicing' ) ?></a> |
|
152 | + <button type="button" class="button button-primary add-invoice-item" data-toggle="modal" data-target="#getpaid-add-items-to-invoice"><?php _e('Add Existing Items', 'invoicing') ?></button> |
|
153 | + <a href="<?php echo esc_url($new_item); ?>" target="_blank" class="button button-secondary"><?php _e('Create New Item', 'invoicing') ?></a> |
|
154 | 154 | </td> |
155 | 155 | <td class="hide-if-amount"> </th> |
156 | 156 | <td class="hide-if-amount"> </th> |
@@ -182,11 +182,11 @@ discard block |
||
182 | 182 | <div class="col-12 col-sm-6 offset-sm-6"> |
183 | 183 | <table class="getpaid-invoice-totals text-right w-100"> |
184 | 184 | <tbody> |
185 | - <?php foreach ( apply_filters( 'getpaid_invoice_subtotal_rows', $totals, $invoice ) as $key => $data ) : ?> |
|
186 | - <tr class="getpaid-totals-<?php echo sanitize_html_class( $key ); ?>"> |
|
187 | - <td class="label"><?php echo sanitize_text_field( $data['label'] ) ?>:</td> |
|
185 | + <?php foreach (apply_filters('getpaid_invoice_subtotal_rows', $totals, $invoice) as $key => $data) : ?> |
|
186 | + <tr class="getpaid-totals-<?php echo sanitize_html_class($key); ?>"> |
|
187 | + <td class="label"><?php echo sanitize_text_field($data['label']) ?>:</td> |
|
188 | 188 | <td width="1%"></td> |
189 | - <td class="value"><?php echo wp_kses_post( $data['value'] ) ?></td> |
|
189 | + <td class="value"><?php echo wp_kses_post($data['value']) ?></td> |
|
190 | 190 | </tr> |
191 | 191 | <?php endforeach; ?> |
192 | 192 | </tbody> |
@@ -199,18 +199,18 @@ discard block |
||
199 | 199 | <div class="getpaid-invoice-item-actions hide-if-no-items hide-if-not-editable"> |
200 | 200 | <div class="row"> |
201 | 201 | <div class="text-left col-12 col-sm-8"> |
202 | - <button type="button" class="button add-invoice-item" data-toggle="modal" data-target="#getpaid-add-items-to-invoice"><?php _e( 'Add Existing Item', 'invoicing' ) ?></button> |
|
203 | - <a href="<?php echo esc_url( $new_item ); ?>" target="_blank" class="button button-secondary"><?php _e( 'Create New Item', 'invoicing' ) ?></a> |
|
204 | - <?php do_action( 'getpaid-invoice-items-actions', $invoice ); ?> |
|
202 | + <button type="button" class="button add-invoice-item" data-toggle="modal" data-target="#getpaid-add-items-to-invoice"><?php _e('Add Existing Item', 'invoicing') ?></button> |
|
203 | + <a href="<?php echo esc_url($new_item); ?>" target="_blank" class="button button-secondary"><?php _e('Create New Item', 'invoicing') ?></a> |
|
204 | + <?php do_action('getpaid-invoice-items-actions', $invoice); ?> |
|
205 | 205 | </div> |
206 | 206 | <div class="text-right col-12 col-sm-4"> |
207 | - <button type="button" class="button button-primary recalculate-totals-button"><?php _e( 'Recalculate Totals', 'invoicing' ) ?></button> |
|
207 | + <button type="button" class="button button-primary recalculate-totals-button"><?php _e('Recalculate Totals', 'invoicing') ?></button> |
|
208 | 208 | </div> |
209 | 209 | </div> |
210 | 210 | </div> |
211 | 211 | |
212 | 212 | <div class="getpaid-invoice-item-actions hide-if-editable"> |
213 | - <p class="description m-2 text-right text-muted"><?php _e( 'This invoice is no longer editable', 'invoicing' ); ?></p> |
|
213 | + <p class="description m-2 text-right text-muted"><?php _e('This invoice is no longer editable', 'invoicing'); ?></p> |
|
214 | 214 | </div> |
215 | 215 | |
216 | 216 | <!-- Add items to an invoice --> |
@@ -218,8 +218,8 @@ discard block |
||
218 | 218 | <div class="modal-dialog modal-dialog-centered" role="document"> |
219 | 219 | <div class="modal-content"> |
220 | 220 | <div class="modal-header"> |
221 | - <h5 class="modal-title" id="getpaid-add-item-to-invoice-label"><?php _e( "Add Item(s)", 'invoicing' ); ?></h5> |
|
222 | - <button type="button" class="close" data-dismiss="modal" aria-label="<?php _e( "Close", 'invoicing' ); ?>"> |
|
221 | + <h5 class="modal-title" id="getpaid-add-item-to-invoice-label"><?php _e("Add Item(s)", 'invoicing'); ?></h5> |
|
222 | + <button type="button" class="close" data-dismiss="modal" aria-label="<?php _e("Close", 'invoicing'); ?>"> |
|
223 | 223 | <span aria-hidden="true">×</span> |
224 | 224 | </button> |
225 | 225 | </div> |
@@ -227,17 +227,17 @@ discard block |
||
227 | 227 | <table class="widefat"> |
228 | 228 | <thead> |
229 | 229 | <tr> |
230 | - <th class="pl-0 text-left"><?php _e( 'Item', 'invoicing' ) ?></th> |
|
230 | + <th class="pl-0 text-left"><?php _e('Item', 'invoicing') ?></th> |
|
231 | 231 | <th class="pr-0 text-right hide-if-amount"> |
232 | - <span class="getpaid-hide-if-hours"><?php _e( 'Quantity', 'invoicing' ) ?></span> |
|
233 | - <span class="getpaid-hide-if-quantity"><?php _e( 'Hours', 'invoicing' ) ?></span> |
|
232 | + <span class="getpaid-hide-if-hours"><?php _e('Quantity', 'invoicing') ?></span> |
|
233 | + <span class="getpaid-hide-if-quantity"><?php _e('Hours', 'invoicing') ?></span> |
|
234 | 234 | </th> |
235 | 235 | </tr> |
236 | 236 | </thead> |
237 | 237 | <tbody> |
238 | 238 | <tr> |
239 | 239 | <td class="pl-0 text-left"> |
240 | - <select class="getpaid-item-search regular-text" data-placeholder="<?php esc_attr_e( 'Search for an item…', 'invoicing' ); ?>"></select> |
|
240 | + <select class="getpaid-item-search regular-text" data-placeholder="<?php esc_attr_e('Search for an item…', 'invoicing'); ?>"></select> |
|
241 | 241 | </td> |
242 | 242 | <td class="pr-0 text-right hide-if-amount"> |
243 | 243 | <input type="number" class="w100" step="1" min="1" autocomplete="off" value="1" placeholder="1"> |
@@ -247,8 +247,8 @@ discard block |
||
247 | 247 | </table> |
248 | 248 | </div> |
249 | 249 | <div class="modal-footer"> |
250 | - <button type="button" class="btn btn-secondary getpaid-cancel" data-dismiss="modal"><?php _e( 'Cancel', 'invoicing' ); ?></button> |
|
251 | - <button type="button" class="btn btn-primary getpaid-add" data-dismiss="modal"><?php _e( 'Add', 'invoicing' ); ?></button> |
|
250 | + <button type="button" class="btn btn-secondary getpaid-cancel" data-dismiss="modal"><?php _e('Cancel', 'invoicing'); ?></button> |
|
251 | + <button type="button" class="btn btn-primary getpaid-add" data-dismiss="modal"><?php _e('Add', 'invoicing'); ?></button> |
|
252 | 252 | </div> |
253 | 253 | </div> |
254 | 254 | </div> |
@@ -259,8 +259,8 @@ discard block |
||
259 | 259 | <div class="modal-dialog modal-dialog-centered" role="document"> |
260 | 260 | <div class="modal-content"> |
261 | 261 | <div class="modal-header"> |
262 | - <h5 class="modal-title" id="getpaid-edit-invoice-item-label"><?php _e( "Edit Item", 'invoicing' ); ?></h5> |
|
263 | - <button type="button" class="close" data-dismiss="modal" aria-label="<?php _e( "Close", 'invoicing' ); ?>"> |
|
262 | + <h5 class="modal-title" id="getpaid-edit-invoice-item-label"><?php _e("Edit Item", 'invoicing'); ?></h5> |
|
263 | + <button type="button" class="close" data-dismiss="modal" aria-label="<?php _e("Close", 'invoicing'); ?>"> |
|
264 | 264 | <span aria-hidden="true">×</span> |
265 | 265 | </button> |
266 | 266 | </div> |
@@ -268,27 +268,27 @@ discard block |
||
268 | 268 | <div class="getpaid-edit-item-div"> |
269 | 269 | <input type="hidden" name="id" class="form-control form-control-sm item-id"> |
270 | 270 | <label class="form-group w-100"> |
271 | - <span><?php _e( 'Name', 'invoicing' ); ?></span> |
|
272 | - <input type="text" name="name" placeholder="<?php esc_attr_e( 'Item Name', 'invoicing' ); ?>" class="form-control form-control-sm item-name"> |
|
271 | + <span><?php _e('Name', 'invoicing'); ?></span> |
|
272 | + <input type="text" name="name" placeholder="<?php esc_attr_e('Item Name', 'invoicing'); ?>" class="form-control form-control-sm item-name"> |
|
273 | 273 | </label> |
274 | 274 | <label class="form-group w-100"> |
275 | - <span class="getpaid-hide-if-hours getpaid-hide-if-quantity item-price"><?php _e( 'Amount', 'invoicing' ); ?></span> |
|
276 | - <span class="hide-if-amount"><?php _e( 'Price', 'invoicing' ); ?></span> |
|
277 | - <input type="text" name="price" placeholder="<?php wpinv_sanitize_amount( 0 ); ?>" class="form-control form-control-sm item-price"> |
|
275 | + <span class="getpaid-hide-if-hours getpaid-hide-if-quantity item-price"><?php _e('Amount', 'invoicing'); ?></span> |
|
276 | + <span class="hide-if-amount"><?php _e('Price', 'invoicing'); ?></span> |
|
277 | + <input type="text" name="price" placeholder="<?php wpinv_sanitize_amount(0); ?>" class="form-control form-control-sm item-price"> |
|
278 | 278 | </label> |
279 | 279 | <label class="form-group w-100 hide-if-amount"> |
280 | - <span><?php _e( 'Quantity', 'invoicing' ); ?></span> |
|
280 | + <span><?php _e('Quantity', 'invoicing'); ?></span> |
|
281 | 281 | <input type="text" name="quantity" placeholder="1" class="form-control form-control-sm item-quantity"> |
282 | 282 | </label> |
283 | 283 | <label class="form-group w-100"> |
284 | - <span><?php _e( 'Item Description', 'invoicing' ); ?></span> |
|
285 | - <textarea name="description" placeholder="<?php esc_attr_e( 'Enter a description for this item', 'invoicing' ); ?>" class="form-control item-description"></textarea> |
|
284 | + <span><?php _e('Item Description', 'invoicing'); ?></span> |
|
285 | + <textarea name="description" placeholder="<?php esc_attr_e('Enter a description for this item', 'invoicing'); ?>" class="form-control item-description"></textarea> |
|
286 | 286 | </label> |
287 | 287 | </div> |
288 | 288 | </div> |
289 | 289 | <div class="modal-footer"> |
290 | - <button type="button" class="btn btn-secondary getpaid-cancel" data-dismiss="modal"><?php _e( 'Cancel', 'invoicing' ); ?></button> |
|
291 | - <button type="button" class="btn btn-primary getpaid-save" data-dismiss="modal"><?php _e( 'Save', 'invoicing' ); ?></button> |
|
290 | + <button type="button" class="btn btn-secondary getpaid-cancel" data-dismiss="modal"><?php _e('Cancel', 'invoicing'); ?></button> |
|
291 | + <button type="button" class="btn btn-primary getpaid-save" data-dismiss="modal"><?php _e('Save', 'invoicing'); ?></button> |
|
292 | 292 | </div> |
293 | 293 | </div> |
294 | 294 | </div> |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | if ( ! defined( 'ABSPATH' ) ) exit; |
7 | 7 | |
8 | 8 | if ( ! class_exists( 'WP_List_Table' ) ) { |
9 | - include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
9 | + include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |
@@ -14,406 +14,406 @@ discard block |
||
14 | 14 | */ |
15 | 15 | class WPInv_Subscriptions_List_Table extends WP_List_Table { |
16 | 16 | |
17 | - /** |
|
18 | - * URL of this page |
|
19 | - * |
|
20 | - * @var string |
|
21 | - * @since 1.0.19 |
|
22 | - */ |
|
23 | - public $base_url; |
|
24 | - |
|
25 | - /** |
|
26 | - * Query |
|
27 | - * |
|
28 | - * @var GetPaid_Subscriptions_Query |
|
29 | - * @since 1.0.19 |
|
30 | - */ |
|
31 | - public $query; |
|
32 | - |
|
33 | - /** |
|
34 | - * Total subscriptions |
|
35 | - * |
|
36 | - * @var string |
|
37 | - * @since 1.0.0 |
|
38 | - */ |
|
39 | - public $total_count; |
|
40 | - |
|
41 | - /** |
|
42 | - * Current status subscriptions |
|
43 | - * |
|
44 | - * @var string |
|
45 | - * @since 1.0.0 |
|
46 | - */ |
|
47 | - public $current_total_count; |
|
48 | - |
|
49 | - /** |
|
50 | - * Status counts |
|
51 | - * |
|
52 | - * @var array |
|
53 | - * @since 1.0.19 |
|
54 | - */ |
|
55 | - public $status_counts; |
|
56 | - |
|
57 | - /** |
|
58 | - * Number of results to show per page |
|
59 | - * |
|
60 | - * @var int |
|
61 | - * @since 1.0.0 |
|
62 | - */ |
|
63 | - public $per_page = 10; |
|
64 | - |
|
65 | - /** |
|
66 | - * Constructor function. |
|
67 | - */ |
|
68 | - public function __construct() { |
|
69 | - |
|
70 | - parent::__construct( |
|
71 | - array( |
|
72 | - 'singular' => 'subscription', |
|
73 | - 'plural' => 'subscriptions', |
|
74 | - ) |
|
75 | - ); |
|
76 | - |
|
77 | - $this->process_bulk_action(); |
|
78 | - |
|
79 | - $this->prepare_query(); |
|
80 | - |
|
81 | - $this->base_url = remove_query_arg( 'status' ); |
|
82 | - |
|
83 | - } |
|
84 | - |
|
85 | - /** |
|
86 | - * Prepares the display query |
|
87 | - */ |
|
88 | - public function prepare_query() { |
|
89 | - |
|
90 | - // Prepare query args. |
|
91 | - $query = array( |
|
92 | - 'number' => $this->per_page, |
|
93 | - 'paged' => $this->get_paged(), |
|
94 | - 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? $_GET['status'] : 'all', |
|
95 | - 'orderby' => ( isset( $_GET['orderby'] ) ) ? $_GET['orderby'] : 'id', |
|
96 | - 'order' => ( isset( $_GET['order'] ) ) ? $_GET['order'] : 'DESC', |
|
97 | - ); |
|
98 | - |
|
99 | - // Prepare class properties. |
|
100 | - $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
101 | - $this->total_count = $this->query->get_total(); |
|
102 | - $this->current_total_count = $this->query->get_total(); |
|
103 | - $this->items = $this->query->get_results(); |
|
104 | - $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
105 | - |
|
106 | - if ( 'all' != $query['status'] ) { |
|
107 | - unset( $query['status'] ); |
|
108 | - $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
109 | - } |
|
110 | - |
|
111 | - } |
|
112 | - |
|
113 | - /** |
|
114 | - * Gets the list of views available on this table. |
|
115 | - * |
|
116 | - * The format is an associative array: |
|
117 | - * - `'id' => 'link'` |
|
118 | - * |
|
119 | - * @since 1.0.0 |
|
120 | - * |
|
121 | - * @return array |
|
122 | - */ |
|
123 | - public function get_views() { |
|
124 | - |
|
125 | - $current = isset( $_GET['status'] ) ? $_GET['status'] : 'all'; |
|
126 | - $views = array( |
|
127 | - |
|
128 | - 'all' => sprintf( |
|
129 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
130 | - esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
131 | - $current === 'all' ? ' class="current"' : '', |
|
132 | - __('All','invoicing' ), |
|
133 | - $this->total_count |
|
134 | - ) |
|
135 | - |
|
136 | - ); |
|
137 | - |
|
138 | - foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
139 | - |
|
140 | - $views[ $status ] = sprintf( |
|
141 | - '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
142 | - esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
143 | - $current === $status ? ' class="current"' : '', |
|
144 | - sanitize_text_field( getpaid_get_subscription_status_label( $status ) ), |
|
145 | - $count |
|
146 | - ); |
|
147 | - |
|
148 | - } |
|
149 | - |
|
150 | - return $views; |
|
151 | - |
|
152 | - } |
|
153 | - |
|
154 | - /** |
|
155 | - * Render most columns |
|
156 | - * |
|
157 | - * @access private |
|
158 | - * @since 1.0.0 |
|
159 | - * @return string |
|
160 | - */ |
|
161 | - public function column_default( $item, $column_name ) { |
|
162 | - return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
163 | - } |
|
164 | - |
|
165 | - /** |
|
166 | - * This is how checkbox column renders. |
|
167 | - * |
|
168 | - * @param WPInv_Subscription $item |
|
169 | - * @return string |
|
170 | - */ |
|
171 | - public function column_cb( $item ) { |
|
172 | - return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
173 | - } |
|
174 | - |
|
175 | - /** |
|
176 | - * Status column |
|
177 | - * |
|
178 | - * @param WPInv_Subscription $item |
|
179 | - * @since 1.0.0 |
|
180 | - * @return string |
|
181 | - */ |
|
182 | - public function column_status( $item ) { |
|
183 | - return $item->get_status_label_html(); |
|
184 | - } |
|
185 | - |
|
186 | - /** |
|
187 | - * Subscription column |
|
188 | - * |
|
189 | - * @param WPInv_Subscription $item |
|
190 | - * @since 1.0.0 |
|
191 | - * @return string |
|
192 | - */ |
|
193 | - public function column_subscription( $item ) { |
|
194 | - |
|
195 | - $username = __( '(Missing User)', 'invoicing' ); |
|
196 | - |
|
197 | - $user = get_userdata( $item->get_customer_id() ); |
|
198 | - if ( $user ) { |
|
199 | - |
|
200 | - $username = sprintf( |
|
201 | - '<a href="user-edit.php?user_id=%s">%s</a>', |
|
202 | - absint( $user->ID ), |
|
203 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
204 | - ); |
|
205 | - |
|
206 | - } |
|
207 | - |
|
208 | - // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
209 | - $column_content = sprintf( |
|
210 | - _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
211 | - '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
212 | - '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
213 | - $username |
|
214 | - ); |
|
215 | - |
|
216 | - $row_actions = array(); |
|
217 | - |
|
218 | - // View subscription. |
|
219 | - $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
220 | - $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
221 | - |
|
222 | - // View invoice. |
|
223 | - $invoice = get_post( $item->get_parent_invoice_id() ); |
|
224 | - |
|
225 | - if ( ! empty( $invoice ) ) { |
|
226 | - $invoice_url = get_edit_post_link( $invoice ); |
|
227 | - $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
228 | - } |
|
229 | - |
|
230 | - $delete_url = esc_url( |
|
231 | - wp_nonce_url( |
|
232 | - add_query_arg( |
|
233 | - array( |
|
234 | - 'getpaid-admin-action' => 'subscription_manual_delete', |
|
235 | - 'id' => $item->get_id(), |
|
236 | - ) |
|
237 | - ), |
|
238 | - 'getpaid-nonce', |
|
239 | - 'getpaid-nonce' |
|
240 | - ) |
|
241 | - ); |
|
242 | - $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
243 | - |
|
244 | - $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
245 | - |
|
246 | - return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
247 | - } |
|
248 | - |
|
249 | - /** |
|
250 | - * Renewal date column |
|
251 | - * |
|
252 | - * @param WPInv_Subscription $item |
|
253 | - * @since 1.0.0 |
|
254 | - * @return string |
|
255 | - */ |
|
256 | - public function column_renewal_date( $item ) { |
|
257 | - return getpaid_format_date_value( $item->get_expiration() ); |
|
258 | - } |
|
259 | - |
|
260 | - /** |
|
261 | - * Start date column |
|
262 | - * |
|
263 | - * @param WPInv_Subscription $item |
|
264 | - * @since 1.0.0 |
|
265 | - * @return string |
|
266 | - */ |
|
267 | - public function column_start_date( $item ) { |
|
268 | - return getpaid_format_date_value( $item->get_date_created() ); |
|
269 | - } |
|
270 | - |
|
271 | - /** |
|
272 | - * Amount column |
|
273 | - * |
|
274 | - * @param WPInv_Subscription $item |
|
275 | - * @since 1.0.19 |
|
276 | - * @return string |
|
277 | - */ |
|
278 | - public static function column_amount( $item ) { |
|
279 | - $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
280 | - return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
281 | - } |
|
282 | - |
|
283 | - /** |
|
284 | - * Billing Times column |
|
285 | - * |
|
286 | - * @param WPInv_Subscription $item |
|
287 | - * @since 1.0.0 |
|
288 | - * @return string |
|
289 | - */ |
|
290 | - public function column_renewals( $item ) { |
|
291 | - $max_bills = $item->get_bill_times(); |
|
292 | - return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
293 | - } |
|
294 | - |
|
295 | - /** |
|
296 | - * Product ID column |
|
297 | - * |
|
298 | - * @param WPInv_Subscription $item |
|
299 | - * @since 1.0.0 |
|
300 | - * @return string |
|
301 | - */ |
|
302 | - public function column_item( $item ) { |
|
303 | - $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
304 | - |
|
305 | - if ( empty( $subscription_group ) ) { |
|
306 | - return $this->generate_item_markup( $item->get_product_id() ); |
|
307 | - } |
|
308 | - |
|
309 | - $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
310 | - return implode( ' | ', $markup ); |
|
311 | - |
|
312 | - } |
|
313 | - |
|
314 | - /** |
|
315 | - * Generates the items markup. |
|
316 | - * |
|
317 | - * @param int $item_id |
|
318 | - * @since 1.0.0 |
|
319 | - * @return string |
|
320 | - */ |
|
321 | - public static function generate_item_markup( $item_id ) { |
|
322 | - $item = get_post( $item_id ); |
|
323 | - |
|
324 | - if ( ! empty( $item ) ) { |
|
325 | - $link = get_edit_post_link( $item ); |
|
326 | - $link = esc_url( $link ); |
|
327 | - $name = esc_html( get_the_title( $item ) ); |
|
328 | - return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
329 | - } else { |
|
330 | - return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
331 | - } |
|
332 | - |
|
333 | - } |
|
334 | - |
|
335 | - /** |
|
336 | - * Retrieve the current page number |
|
337 | - * |
|
338 | - * @return int |
|
339 | - */ |
|
340 | - public function get_paged() { |
|
341 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
342 | - } |
|
343 | - |
|
344 | - /** |
|
345 | - * Setup the final data for the table |
|
346 | - * |
|
347 | - */ |
|
348 | - public function prepare_items() { |
|
349 | - |
|
350 | - $columns = $this->get_columns(); |
|
351 | - $hidden = array(); |
|
352 | - $sortable = $this->get_sortable_columns(); |
|
353 | - |
|
354 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
355 | - |
|
356 | - $this->set_pagination_args( |
|
357 | - array( |
|
358 | - 'total_items' => $this->current_total_count, |
|
359 | - 'per_page' => $this->per_page, |
|
360 | - 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
361 | - ) |
|
362 | - ); |
|
363 | - } |
|
364 | - |
|
365 | - /** |
|
366 | - * Table columns |
|
367 | - * |
|
368 | - * @return array |
|
369 | - */ |
|
370 | - public function get_columns(){ |
|
371 | - $columns = array( |
|
372 | - 'cb' => '<input type="checkbox" />', |
|
373 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
374 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
375 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
376 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
377 | - 'item' => __( 'Items', 'invoicing' ), |
|
378 | - 'status' => __( 'Status', 'invoicing' ), |
|
379 | - ); |
|
380 | - |
|
381 | - return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
382 | - } |
|
383 | - |
|
384 | - /** |
|
385 | - * Sortable table columns. |
|
386 | - * |
|
387 | - * @return array |
|
388 | - */ |
|
389 | - public function get_sortable_columns() { |
|
390 | - $sortable = array( |
|
391 | - 'subscription' => array( 'id', true ), |
|
392 | - 'start_date' => array( 'created', true ), |
|
393 | - 'renewal_date' => array( 'expiration', true ), |
|
394 | - 'renewals' => array( 'bill_times', true ), |
|
395 | - 'item' => array( 'product_id', true ), |
|
396 | - 'status' => array( 'status', true ), |
|
397 | - ); |
|
398 | - |
|
399 | - return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
400 | - } |
|
401 | - |
|
402 | - /** |
|
403 | - * Whether the table has items to display or not |
|
404 | - * |
|
405 | - * @return bool |
|
406 | - */ |
|
407 | - public function has_items() { |
|
408 | - return ! empty( $this->current_total_count ); |
|
409 | - } |
|
410 | - |
|
411 | - /** |
|
412 | - * Processes bulk actions. |
|
413 | - * |
|
414 | - */ |
|
415 | - public function process_bulk_action() { |
|
416 | - |
|
417 | - } |
|
17 | + /** |
|
18 | + * URL of this page |
|
19 | + * |
|
20 | + * @var string |
|
21 | + * @since 1.0.19 |
|
22 | + */ |
|
23 | + public $base_url; |
|
24 | + |
|
25 | + /** |
|
26 | + * Query |
|
27 | + * |
|
28 | + * @var GetPaid_Subscriptions_Query |
|
29 | + * @since 1.0.19 |
|
30 | + */ |
|
31 | + public $query; |
|
32 | + |
|
33 | + /** |
|
34 | + * Total subscriptions |
|
35 | + * |
|
36 | + * @var string |
|
37 | + * @since 1.0.0 |
|
38 | + */ |
|
39 | + public $total_count; |
|
40 | + |
|
41 | + /** |
|
42 | + * Current status subscriptions |
|
43 | + * |
|
44 | + * @var string |
|
45 | + * @since 1.0.0 |
|
46 | + */ |
|
47 | + public $current_total_count; |
|
48 | + |
|
49 | + /** |
|
50 | + * Status counts |
|
51 | + * |
|
52 | + * @var array |
|
53 | + * @since 1.0.19 |
|
54 | + */ |
|
55 | + public $status_counts; |
|
56 | + |
|
57 | + /** |
|
58 | + * Number of results to show per page |
|
59 | + * |
|
60 | + * @var int |
|
61 | + * @since 1.0.0 |
|
62 | + */ |
|
63 | + public $per_page = 10; |
|
64 | + |
|
65 | + /** |
|
66 | + * Constructor function. |
|
67 | + */ |
|
68 | + public function __construct() { |
|
69 | + |
|
70 | + parent::__construct( |
|
71 | + array( |
|
72 | + 'singular' => 'subscription', |
|
73 | + 'plural' => 'subscriptions', |
|
74 | + ) |
|
75 | + ); |
|
76 | + |
|
77 | + $this->process_bulk_action(); |
|
78 | + |
|
79 | + $this->prepare_query(); |
|
80 | + |
|
81 | + $this->base_url = remove_query_arg( 'status' ); |
|
82 | + |
|
83 | + } |
|
84 | + |
|
85 | + /** |
|
86 | + * Prepares the display query |
|
87 | + */ |
|
88 | + public function prepare_query() { |
|
89 | + |
|
90 | + // Prepare query args. |
|
91 | + $query = array( |
|
92 | + 'number' => $this->per_page, |
|
93 | + 'paged' => $this->get_paged(), |
|
94 | + 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? $_GET['status'] : 'all', |
|
95 | + 'orderby' => ( isset( $_GET['orderby'] ) ) ? $_GET['orderby'] : 'id', |
|
96 | + 'order' => ( isset( $_GET['order'] ) ) ? $_GET['order'] : 'DESC', |
|
97 | + ); |
|
98 | + |
|
99 | + // Prepare class properties. |
|
100 | + $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
101 | + $this->total_count = $this->query->get_total(); |
|
102 | + $this->current_total_count = $this->query->get_total(); |
|
103 | + $this->items = $this->query->get_results(); |
|
104 | + $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
105 | + |
|
106 | + if ( 'all' != $query['status'] ) { |
|
107 | + unset( $query['status'] ); |
|
108 | + $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
109 | + } |
|
110 | + |
|
111 | + } |
|
112 | + |
|
113 | + /** |
|
114 | + * Gets the list of views available on this table. |
|
115 | + * |
|
116 | + * The format is an associative array: |
|
117 | + * - `'id' => 'link'` |
|
118 | + * |
|
119 | + * @since 1.0.0 |
|
120 | + * |
|
121 | + * @return array |
|
122 | + */ |
|
123 | + public function get_views() { |
|
124 | + |
|
125 | + $current = isset( $_GET['status'] ) ? $_GET['status'] : 'all'; |
|
126 | + $views = array( |
|
127 | + |
|
128 | + 'all' => sprintf( |
|
129 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
130 | + esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
131 | + $current === 'all' ? ' class="current"' : '', |
|
132 | + __('All','invoicing' ), |
|
133 | + $this->total_count |
|
134 | + ) |
|
135 | + |
|
136 | + ); |
|
137 | + |
|
138 | + foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
139 | + |
|
140 | + $views[ $status ] = sprintf( |
|
141 | + '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
|
142 | + esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
143 | + $current === $status ? ' class="current"' : '', |
|
144 | + sanitize_text_field( getpaid_get_subscription_status_label( $status ) ), |
|
145 | + $count |
|
146 | + ); |
|
147 | + |
|
148 | + } |
|
149 | + |
|
150 | + return $views; |
|
151 | + |
|
152 | + } |
|
153 | + |
|
154 | + /** |
|
155 | + * Render most columns |
|
156 | + * |
|
157 | + * @access private |
|
158 | + * @since 1.0.0 |
|
159 | + * @return string |
|
160 | + */ |
|
161 | + public function column_default( $item, $column_name ) { |
|
162 | + return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
163 | + } |
|
164 | + |
|
165 | + /** |
|
166 | + * This is how checkbox column renders. |
|
167 | + * |
|
168 | + * @param WPInv_Subscription $item |
|
169 | + * @return string |
|
170 | + */ |
|
171 | + public function column_cb( $item ) { |
|
172 | + return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
173 | + } |
|
174 | + |
|
175 | + /** |
|
176 | + * Status column |
|
177 | + * |
|
178 | + * @param WPInv_Subscription $item |
|
179 | + * @since 1.0.0 |
|
180 | + * @return string |
|
181 | + */ |
|
182 | + public function column_status( $item ) { |
|
183 | + return $item->get_status_label_html(); |
|
184 | + } |
|
185 | + |
|
186 | + /** |
|
187 | + * Subscription column |
|
188 | + * |
|
189 | + * @param WPInv_Subscription $item |
|
190 | + * @since 1.0.0 |
|
191 | + * @return string |
|
192 | + */ |
|
193 | + public function column_subscription( $item ) { |
|
194 | + |
|
195 | + $username = __( '(Missing User)', 'invoicing' ); |
|
196 | + |
|
197 | + $user = get_userdata( $item->get_customer_id() ); |
|
198 | + if ( $user ) { |
|
199 | + |
|
200 | + $username = sprintf( |
|
201 | + '<a href="user-edit.php?user_id=%s">%s</a>', |
|
202 | + absint( $user->ID ), |
|
203 | + ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
204 | + ); |
|
205 | + |
|
206 | + } |
|
207 | + |
|
208 | + // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
|
209 | + $column_content = sprintf( |
|
210 | + _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
211 | + '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
212 | + '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
213 | + $username |
|
214 | + ); |
|
215 | + |
|
216 | + $row_actions = array(); |
|
217 | + |
|
218 | + // View subscription. |
|
219 | + $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
220 | + $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
221 | + |
|
222 | + // View invoice. |
|
223 | + $invoice = get_post( $item->get_parent_invoice_id() ); |
|
224 | + |
|
225 | + if ( ! empty( $invoice ) ) { |
|
226 | + $invoice_url = get_edit_post_link( $invoice ); |
|
227 | + $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
228 | + } |
|
229 | + |
|
230 | + $delete_url = esc_url( |
|
231 | + wp_nonce_url( |
|
232 | + add_query_arg( |
|
233 | + array( |
|
234 | + 'getpaid-admin-action' => 'subscription_manual_delete', |
|
235 | + 'id' => $item->get_id(), |
|
236 | + ) |
|
237 | + ), |
|
238 | + 'getpaid-nonce', |
|
239 | + 'getpaid-nonce' |
|
240 | + ) |
|
241 | + ); |
|
242 | + $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
243 | + |
|
244 | + $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
245 | + |
|
246 | + return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
247 | + } |
|
248 | + |
|
249 | + /** |
|
250 | + * Renewal date column |
|
251 | + * |
|
252 | + * @param WPInv_Subscription $item |
|
253 | + * @since 1.0.0 |
|
254 | + * @return string |
|
255 | + */ |
|
256 | + public function column_renewal_date( $item ) { |
|
257 | + return getpaid_format_date_value( $item->get_expiration() ); |
|
258 | + } |
|
259 | + |
|
260 | + /** |
|
261 | + * Start date column |
|
262 | + * |
|
263 | + * @param WPInv_Subscription $item |
|
264 | + * @since 1.0.0 |
|
265 | + * @return string |
|
266 | + */ |
|
267 | + public function column_start_date( $item ) { |
|
268 | + return getpaid_format_date_value( $item->get_date_created() ); |
|
269 | + } |
|
270 | + |
|
271 | + /** |
|
272 | + * Amount column |
|
273 | + * |
|
274 | + * @param WPInv_Subscription $item |
|
275 | + * @since 1.0.19 |
|
276 | + * @return string |
|
277 | + */ |
|
278 | + public static function column_amount( $item ) { |
|
279 | + $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
280 | + return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
|
281 | + } |
|
282 | + |
|
283 | + /** |
|
284 | + * Billing Times column |
|
285 | + * |
|
286 | + * @param WPInv_Subscription $item |
|
287 | + * @since 1.0.0 |
|
288 | + * @return string |
|
289 | + */ |
|
290 | + public function column_renewals( $item ) { |
|
291 | + $max_bills = $item->get_bill_times(); |
|
292 | + return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
293 | + } |
|
294 | + |
|
295 | + /** |
|
296 | + * Product ID column |
|
297 | + * |
|
298 | + * @param WPInv_Subscription $item |
|
299 | + * @since 1.0.0 |
|
300 | + * @return string |
|
301 | + */ |
|
302 | + public function column_item( $item ) { |
|
303 | + $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
304 | + |
|
305 | + if ( empty( $subscription_group ) ) { |
|
306 | + return $this->generate_item_markup( $item->get_product_id() ); |
|
307 | + } |
|
308 | + |
|
309 | + $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
310 | + return implode( ' | ', $markup ); |
|
311 | + |
|
312 | + } |
|
313 | + |
|
314 | + /** |
|
315 | + * Generates the items markup. |
|
316 | + * |
|
317 | + * @param int $item_id |
|
318 | + * @since 1.0.0 |
|
319 | + * @return string |
|
320 | + */ |
|
321 | + public static function generate_item_markup( $item_id ) { |
|
322 | + $item = get_post( $item_id ); |
|
323 | + |
|
324 | + if ( ! empty( $item ) ) { |
|
325 | + $link = get_edit_post_link( $item ); |
|
326 | + $link = esc_url( $link ); |
|
327 | + $name = esc_html( get_the_title( $item ) ); |
|
328 | + return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
|
329 | + } else { |
|
330 | + return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
331 | + } |
|
332 | + |
|
333 | + } |
|
334 | + |
|
335 | + /** |
|
336 | + * Retrieve the current page number |
|
337 | + * |
|
338 | + * @return int |
|
339 | + */ |
|
340 | + public function get_paged() { |
|
341 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
342 | + } |
|
343 | + |
|
344 | + /** |
|
345 | + * Setup the final data for the table |
|
346 | + * |
|
347 | + */ |
|
348 | + public function prepare_items() { |
|
349 | + |
|
350 | + $columns = $this->get_columns(); |
|
351 | + $hidden = array(); |
|
352 | + $sortable = $this->get_sortable_columns(); |
|
353 | + |
|
354 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
355 | + |
|
356 | + $this->set_pagination_args( |
|
357 | + array( |
|
358 | + 'total_items' => $this->current_total_count, |
|
359 | + 'per_page' => $this->per_page, |
|
360 | + 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
361 | + ) |
|
362 | + ); |
|
363 | + } |
|
364 | + |
|
365 | + /** |
|
366 | + * Table columns |
|
367 | + * |
|
368 | + * @return array |
|
369 | + */ |
|
370 | + public function get_columns(){ |
|
371 | + $columns = array( |
|
372 | + 'cb' => '<input type="checkbox" />', |
|
373 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
374 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
375 | + 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
376 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
377 | + 'item' => __( 'Items', 'invoicing' ), |
|
378 | + 'status' => __( 'Status', 'invoicing' ), |
|
379 | + ); |
|
380 | + |
|
381 | + return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
382 | + } |
|
383 | + |
|
384 | + /** |
|
385 | + * Sortable table columns. |
|
386 | + * |
|
387 | + * @return array |
|
388 | + */ |
|
389 | + public function get_sortable_columns() { |
|
390 | + $sortable = array( |
|
391 | + 'subscription' => array( 'id', true ), |
|
392 | + 'start_date' => array( 'created', true ), |
|
393 | + 'renewal_date' => array( 'expiration', true ), |
|
394 | + 'renewals' => array( 'bill_times', true ), |
|
395 | + 'item' => array( 'product_id', true ), |
|
396 | + 'status' => array( 'status', true ), |
|
397 | + ); |
|
398 | + |
|
399 | + return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
400 | + } |
|
401 | + |
|
402 | + /** |
|
403 | + * Whether the table has items to display or not |
|
404 | + * |
|
405 | + * @return bool |
|
406 | + */ |
|
407 | + public function has_items() { |
|
408 | + return ! empty( $this->current_total_count ); |
|
409 | + } |
|
410 | + |
|
411 | + /** |
|
412 | + * Processes bulk actions. |
|
413 | + * |
|
414 | + */ |
|
415 | + public function process_bulk_action() { |
|
416 | + |
|
417 | + } |
|
418 | 418 | |
419 | 419 | } |
@@ -3,9 +3,9 @@ discard block |
||
3 | 3 | * Displays a list of all subscriptions rules |
4 | 4 | */ |
5 | 5 | |
6 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
6 | +if (!defined('ABSPATH')) exit; |
|
7 | 7 | |
8 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
8 | +if (!class_exists('WP_List_Table')) { |
|
9 | 9 | include_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
10 | 10 | } |
11 | 11 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | |
79 | 79 | $this->prepare_query(); |
80 | 80 | |
81 | - $this->base_url = remove_query_arg( 'status' ); |
|
81 | + $this->base_url = remove_query_arg('status'); |
|
82 | 82 | |
83 | 83 | } |
84 | 84 | |
@@ -91,21 +91,21 @@ discard block |
||
91 | 91 | $query = array( |
92 | 92 | 'number' => $this->per_page, |
93 | 93 | 'paged' => $this->get_paged(), |
94 | - 'status' => ( isset( $_GET['status'] ) && array_key_exists( $_GET['status'], getpaid_get_subscription_statuses() ) ) ? $_GET['status'] : 'all', |
|
95 | - 'orderby' => ( isset( $_GET['orderby'] ) ) ? $_GET['orderby'] : 'id', |
|
96 | - 'order' => ( isset( $_GET['order'] ) ) ? $_GET['order'] : 'DESC', |
|
94 | + 'status' => (isset($_GET['status']) && array_key_exists($_GET['status'], getpaid_get_subscription_statuses())) ? $_GET['status'] : 'all', |
|
95 | + 'orderby' => (isset($_GET['orderby'])) ? $_GET['orderby'] : 'id', |
|
96 | + 'order' => (isset($_GET['order'])) ? $_GET['order'] : 'DESC', |
|
97 | 97 | ); |
98 | 98 | |
99 | 99 | // Prepare class properties. |
100 | - $this->query = new GetPaid_Subscriptions_Query( $query ); |
|
100 | + $this->query = new GetPaid_Subscriptions_Query($query); |
|
101 | 101 | $this->total_count = $this->query->get_total(); |
102 | 102 | $this->current_total_count = $this->query->get_total(); |
103 | 103 | $this->items = $this->query->get_results(); |
104 | - $this->status_counts = getpaid_get_subscription_status_counts( $query ); |
|
104 | + $this->status_counts = getpaid_get_subscription_status_counts($query); |
|
105 | 105 | |
106 | - if ( 'all' != $query['status'] ) { |
|
107 | - unset( $query['status'] ); |
|
108 | - $this->total_count = getpaid_get_subscriptions( $query, 'count' ); |
|
106 | + if ('all' != $query['status']) { |
|
107 | + unset($query['status']); |
|
108 | + $this->total_count = getpaid_get_subscriptions($query, 'count'); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | } |
@@ -122,26 +122,26 @@ discard block |
||
122 | 122 | */ |
123 | 123 | public function get_views() { |
124 | 124 | |
125 | - $current = isset( $_GET['status'] ) ? $_GET['status'] : 'all'; |
|
125 | + $current = isset($_GET['status']) ? $_GET['status'] : 'all'; |
|
126 | 126 | $views = array( |
127 | 127 | |
128 | 128 | 'all' => sprintf( |
129 | 129 | '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
130 | - esc_url( add_query_arg( 'status', false, $this->base_url ) ), |
|
130 | + esc_url(add_query_arg('status', false, $this->base_url)), |
|
131 | 131 | $current === 'all' ? ' class="current"' : '', |
132 | - __('All','invoicing' ), |
|
132 | + __('All', 'invoicing'), |
|
133 | 133 | $this->total_count |
134 | 134 | ) |
135 | 135 | |
136 | 136 | ); |
137 | 137 | |
138 | - foreach ( array_filter( $this->status_counts ) as $status => $count ) { |
|
138 | + foreach (array_filter($this->status_counts) as $status => $count) { |
|
139 | 139 | |
140 | - $views[ $status ] = sprintf( |
|
140 | + $views[$status] = sprintf( |
|
141 | 141 | '<a href="%s" %s>%s <span class="count">(%d)</span></a>', |
142 | - esc_url( add_query_arg( 'status', urlencode( $status ), $this->base_url ) ), |
|
142 | + esc_url(add_query_arg('status', urlencode($status), $this->base_url)), |
|
143 | 143 | $current === $status ? ' class="current"' : '', |
144 | - sanitize_text_field( getpaid_get_subscription_status_label( $status ) ), |
|
144 | + sanitize_text_field(getpaid_get_subscription_status_label($status)), |
|
145 | 145 | $count |
146 | 146 | ); |
147 | 147 | |
@@ -158,8 +158,8 @@ discard block |
||
158 | 158 | * @since 1.0.0 |
159 | 159 | * @return string |
160 | 160 | */ |
161 | - public function column_default( $item, $column_name ) { |
|
162 | - return apply_filters( "getpaid_subscriptions_table_column_$column_name", $item->$column_name ); |
|
161 | + public function column_default($item, $column_name) { |
|
162 | + return apply_filters("getpaid_subscriptions_table_column_$column_name", $item->$column_name); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -168,8 +168,8 @@ discard block |
||
168 | 168 | * @param WPInv_Subscription $item |
169 | 169 | * @return string |
170 | 170 | */ |
171 | - public function column_cb( $item ) { |
|
172 | - return sprintf( '<input type="checkbox" name="id[]" value="%s" />', esc_html( $item->get_id() ) ); |
|
171 | + public function column_cb($item) { |
|
172 | + return sprintf('<input type="checkbox" name="id[]" value="%s" />', esc_html($item->get_id())); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | /** |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * @since 1.0.0 |
180 | 180 | * @return string |
181 | 181 | */ |
182 | - public function column_status( $item ) { |
|
182 | + public function column_status($item) { |
|
183 | 183 | return $item->get_status_label_html(); |
184 | 184 | } |
185 | 185 | |
@@ -190,44 +190,44 @@ discard block |
||
190 | 190 | * @since 1.0.0 |
191 | 191 | * @return string |
192 | 192 | */ |
193 | - public function column_subscription( $item ) { |
|
193 | + public function column_subscription($item) { |
|
194 | 194 | |
195 | - $username = __( '(Missing User)', 'invoicing' ); |
|
195 | + $username = __('(Missing User)', 'invoicing'); |
|
196 | 196 | |
197 | - $user = get_userdata( $item->get_customer_id() ); |
|
198 | - if ( $user ) { |
|
197 | + $user = get_userdata($item->get_customer_id()); |
|
198 | + if ($user) { |
|
199 | 199 | |
200 | 200 | $username = sprintf( |
201 | 201 | '<a href="user-edit.php?user_id=%s">%s</a>', |
202 | - absint( $user->ID ), |
|
203 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
202 | + absint($user->ID), |
|
203 | + !empty($user->display_name) ? sanitize_text_field($user->display_name) : sanitize_email($user->user_email) |
|
204 | 204 | ); |
205 | 205 | |
206 | 206 | } |
207 | 207 | |
208 | 208 | // translators: $1: is opening link, $2: is subscription id number, $3: is closing link tag, $4: is user's name |
209 | 209 | $column_content = sprintf( |
210 | - _x( '%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing' ), |
|
211 | - '<a href="' . esc_url( admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $item->get_id() ) ) ) . '">', |
|
212 | - '<strong>' . esc_attr( $item->get_id() ) . '</strong>', '</a>', |
|
210 | + _x('%1$s#%2$s%3$s for %4$s', 'Subscription title on admin table. (e.g.: #211 for John Doe)', 'invoicing'), |
|
211 | + '<a href="' . esc_url(admin_url('admin.php?page=wpinv-subscriptions&id=' . absint($item->get_id()))) . '">', |
|
212 | + '<strong>' . esc_attr($item->get_id()) . '</strong>', '</a>', |
|
213 | 213 | $username |
214 | 214 | ); |
215 | 215 | |
216 | 216 | $row_actions = array(); |
217 | 217 | |
218 | 218 | // View subscription. |
219 | - $view_url = esc_url( add_query_arg( 'id', $item->get_id(), admin_url( 'admin.php?page=wpinv-subscriptions' ) )); |
|
220 | - $row_actions['view'] = '<a href="' . $view_url . '">' . __( 'View Subscription', 'invoicing' ) . '</a>'; |
|
219 | + $view_url = esc_url(add_query_arg('id', $item->get_id(), admin_url('admin.php?page=wpinv-subscriptions'))); |
|
220 | + $row_actions['view'] = '<a href="' . $view_url . '">' . __('View Subscription', 'invoicing') . '</a>'; |
|
221 | 221 | |
222 | 222 | // View invoice. |
223 | - $invoice = get_post( $item->get_parent_invoice_id() ); |
|
223 | + $invoice = get_post($item->get_parent_invoice_id()); |
|
224 | 224 | |
225 | - if ( ! empty( $invoice ) ) { |
|
226 | - $invoice_url = get_edit_post_link( $invoice ); |
|
227 | - $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __( 'View Invoice', 'invoicing' ) . '</a>'; |
|
225 | + if (!empty($invoice)) { |
|
226 | + $invoice_url = get_edit_post_link($invoice); |
|
227 | + $row_actions['invoice'] = '<a href="' . $invoice_url . '">' . __('View Invoice', 'invoicing') . '</a>'; |
|
228 | 228 | } |
229 | 229 | |
230 | - $delete_url = esc_url( |
|
230 | + $delete_url = esc_url( |
|
231 | 231 | wp_nonce_url( |
232 | 232 | add_query_arg( |
233 | 233 | array( |
@@ -239,11 +239,11 @@ discard block |
||
239 | 239 | 'getpaid-nonce' |
240 | 240 | ) |
241 | 241 | ); |
242 | - $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __( 'Delete Subscription', 'invoicing' ) . '</a>'; |
|
242 | + $row_actions['delete'] = '<a class="text-danger" href="' . $delete_url . '">' . __('Delete Subscription', 'invoicing') . '</a>'; |
|
243 | 243 | |
244 | - $row_actions = $this->row_actions( apply_filters( 'getpaid_subscription_table_row_actions', $row_actions, $item ) ); |
|
244 | + $row_actions = $this->row_actions(apply_filters('getpaid_subscription_table_row_actions', $row_actions, $item)); |
|
245 | 245 | |
246 | - return "<strong>$column_content</strong>" . $this->column_amount( $item ) . $row_actions; |
|
246 | + return "<strong>$column_content</strong>" . $this->column_amount($item) . $row_actions; |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | /** |
@@ -253,8 +253,8 @@ discard block |
||
253 | 253 | * @since 1.0.0 |
254 | 254 | * @return string |
255 | 255 | */ |
256 | - public function column_renewal_date( $item ) { |
|
257 | - return getpaid_format_date_value( $item->get_expiration() ); |
|
256 | + public function column_renewal_date($item) { |
|
257 | + return getpaid_format_date_value($item->get_expiration()); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | /** |
@@ -264,8 +264,8 @@ discard block |
||
264 | 264 | * @since 1.0.0 |
265 | 265 | * @return string |
266 | 266 | */ |
267 | - public function column_start_date( $item ) { |
|
268 | - return getpaid_format_date_value( $item->get_date_created() ); |
|
267 | + public function column_start_date($item) { |
|
268 | + return getpaid_format_date_value($item->get_date_created()); |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | /** |
@@ -275,8 +275,8 @@ discard block |
||
275 | 275 | * @since 1.0.19 |
276 | 276 | * @return string |
277 | 277 | */ |
278 | - public static function column_amount( $item ) { |
|
279 | - $amount = getpaid_get_formatted_subscription_amount( $item ); |
|
278 | + public static function column_amount($item) { |
|
279 | + $amount = getpaid_get_formatted_subscription_amount($item); |
|
280 | 280 | return "<span class='text-muted form-text mt-2 mb-2'>$amount</span>"; |
281 | 281 | } |
282 | 282 | |
@@ -287,9 +287,9 @@ discard block |
||
287 | 287 | * @since 1.0.0 |
288 | 288 | * @return string |
289 | 289 | */ |
290 | - public function column_renewals( $item ) { |
|
290 | + public function column_renewals($item) { |
|
291 | 291 | $max_bills = $item->get_bill_times(); |
292 | - return $item->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
292 | + return $item->get_times_billed() . ' / ' . (empty($max_bills) ? "∞" : $max_bills); |
|
293 | 293 | } |
294 | 294 | |
295 | 295 | /** |
@@ -299,15 +299,15 @@ discard block |
||
299 | 299 | * @since 1.0.0 |
300 | 300 | * @return string |
301 | 301 | */ |
302 | - public function column_item( $item ) { |
|
303 | - $subscription_group = getpaid_get_invoice_subscription_group( $item->get_parent_invoice_id(), $item->get_id() ); |
|
302 | + public function column_item($item) { |
|
303 | + $subscription_group = getpaid_get_invoice_subscription_group($item->get_parent_invoice_id(), $item->get_id()); |
|
304 | 304 | |
305 | - if ( empty( $subscription_group ) ) { |
|
306 | - return $this->generate_item_markup( $item->get_product_id() ); |
|
305 | + if (empty($subscription_group)) { |
|
306 | + return $this->generate_item_markup($item->get_product_id()); |
|
307 | 307 | } |
308 | 308 | |
309 | - $markup = array_map( array( $this, 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
310 | - return implode( ' | ', $markup ); |
|
309 | + $markup = array_map(array($this, 'generate_item_markup'), array_keys($subscription_group['items'])); |
|
310 | + return implode(' | ', $markup); |
|
311 | 311 | |
312 | 312 | } |
313 | 313 | |
@@ -318,16 +318,16 @@ discard block |
||
318 | 318 | * @since 1.0.0 |
319 | 319 | * @return string |
320 | 320 | */ |
321 | - public static function generate_item_markup( $item_id ) { |
|
322 | - $item = get_post( $item_id ); |
|
321 | + public static function generate_item_markup($item_id) { |
|
322 | + $item = get_post($item_id); |
|
323 | 323 | |
324 | - if ( ! empty( $item ) ) { |
|
325 | - $link = get_edit_post_link( $item ); |
|
326 | - $link = esc_url( $link ); |
|
327 | - $name = esc_html( get_the_title( $item ) ); |
|
324 | + if (!empty($item)) { |
|
325 | + $link = get_edit_post_link($item); |
|
326 | + $link = esc_url($link); |
|
327 | + $name = esc_html(get_the_title($item)); |
|
328 | 328 | return wpinv_current_user_can_manage_invoicing() ? "<a href='$link'>$name</a>" : $name; |
329 | 329 | } else { |
330 | - return sprintf( __( 'Item #%s', 'invoicing' ), $item_id ); |
|
330 | + return sprintf(__('Item #%s', 'invoicing'), $item_id); |
|
331 | 331 | } |
332 | 332 | |
333 | 333 | } |
@@ -338,7 +338,7 @@ discard block |
||
338 | 338 | * @return int |
339 | 339 | */ |
340 | 340 | public function get_paged() { |
341 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
341 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
342 | 342 | } |
343 | 343 | |
344 | 344 | /** |
@@ -351,13 +351,13 @@ discard block |
||
351 | 351 | $hidden = array(); |
352 | 352 | $sortable = $this->get_sortable_columns(); |
353 | 353 | |
354 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
354 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
355 | 355 | |
356 | 356 | $this->set_pagination_args( |
357 | 357 | array( |
358 | 358 | 'total_items' => $this->current_total_count, |
359 | 359 | 'per_page' => $this->per_page, |
360 | - 'total_pages' => ceil( $this->current_total_count / $this->per_page ) |
|
360 | + 'total_pages' => ceil($this->current_total_count / $this->per_page) |
|
361 | 361 | ) |
362 | 362 | ); |
363 | 363 | } |
@@ -367,18 +367,18 @@ discard block |
||
367 | 367 | * |
368 | 368 | * @return array |
369 | 369 | */ |
370 | - public function get_columns(){ |
|
370 | + public function get_columns() { |
|
371 | 371 | $columns = array( |
372 | 372 | 'cb' => '<input type="checkbox" />', |
373 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
374 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
375 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
376 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
377 | - 'item' => __( 'Items', 'invoicing' ), |
|
378 | - 'status' => __( 'Status', 'invoicing' ), |
|
373 | + 'subscription' => __('Subscription', 'invoicing'), |
|
374 | + 'start_date' => __('Start Date', 'invoicing'), |
|
375 | + 'renewal_date' => __('Next Payment', 'invoicing'), |
|
376 | + 'renewals' => __('Payments', 'invoicing'), |
|
377 | + 'item' => __('Items', 'invoicing'), |
|
378 | + 'status' => __('Status', 'invoicing'), |
|
379 | 379 | ); |
380 | 380 | |
381 | - return apply_filters( 'manage_getpaid_subscriptions_table_columns', $columns ); |
|
381 | + return apply_filters('manage_getpaid_subscriptions_table_columns', $columns); |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | /** |
@@ -388,15 +388,15 @@ discard block |
||
388 | 388 | */ |
389 | 389 | public function get_sortable_columns() { |
390 | 390 | $sortable = array( |
391 | - 'subscription' => array( 'id', true ), |
|
392 | - 'start_date' => array( 'created', true ), |
|
393 | - 'renewal_date' => array( 'expiration', true ), |
|
394 | - 'renewals' => array( 'bill_times', true ), |
|
395 | - 'item' => array( 'product_id', true ), |
|
396 | - 'status' => array( 'status', true ), |
|
391 | + 'subscription' => array('id', true), |
|
392 | + 'start_date' => array('created', true), |
|
393 | + 'renewal_date' => array('expiration', true), |
|
394 | + 'renewals' => array('bill_times', true), |
|
395 | + 'item' => array('product_id', true), |
|
396 | + 'status' => array('status', true), |
|
397 | 397 | ); |
398 | 398 | |
399 | - return apply_filters( 'manage_getpaid_subscriptions_sortable_table_columns', $sortable ); |
|
399 | + return apply_filters('manage_getpaid_subscriptions_sortable_table_columns', $sortable); |
|
400 | 400 | } |
401 | 401 | |
402 | 402 | /** |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | * @return bool |
406 | 406 | */ |
407 | 407 | public function has_items() { |
408 | - return ! empty( $this->current_total_count ); |
|
408 | + return !empty($this->current_total_count); |
|
409 | 409 | } |
410 | 410 | |
411 | 411 | /** |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | */ |
15 | 15 | function wpinv_subscriptions_page() { |
16 | 16 | |
17 | - ?> |
|
17 | + ?> |
|
18 | 18 | |
19 | 19 | <div class="wrap"> |
20 | 20 | <h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
@@ -22,27 +22,27 @@ discard block |
||
22 | 22 | |
23 | 23 | <?php |
24 | 24 | |
25 | - // Verify user permissions. |
|
26 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
25 | + // Verify user permissions. |
|
26 | + if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
27 | 27 | |
28 | - echo aui()->alert( |
|
29 | - array( |
|
30 | - 'type' => 'danger', |
|
31 | - 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
32 | - ) |
|
33 | - ); |
|
28 | + echo aui()->alert( |
|
29 | + array( |
|
30 | + 'type' => 'danger', |
|
31 | + 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
32 | + ) |
|
33 | + ); |
|
34 | 34 | |
35 | - } else if ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
35 | + } else if ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
36 | 36 | |
37 | - // Display a single subscription. |
|
38 | - wpinv_recurring_subscription_details(); |
|
39 | - } else { |
|
37 | + // Display a single subscription. |
|
38 | + wpinv_recurring_subscription_details(); |
|
39 | + } else { |
|
40 | 40 | |
41 | - // Display a list of available subscriptions. |
|
42 | - getpaid_print_subscriptions_list(); |
|
43 | - } |
|
41 | + // Display a list of available subscriptions. |
|
42 | + getpaid_print_subscriptions_list(); |
|
43 | + } |
|
44 | 44 | |
45 | - ?> |
|
45 | + ?> |
|
46 | 46 | |
47 | 47 | </div> |
48 | 48 | </div> |
@@ -59,10 +59,10 @@ discard block |
||
59 | 59 | */ |
60 | 60 | function getpaid_print_subscriptions_list() { |
61 | 61 | |
62 | - $subscribers_table = new WPInv_Subscriptions_List_Table(); |
|
63 | - $subscribers_table->prepare_items(); |
|
62 | + $subscribers_table = new WPInv_Subscriptions_List_Table(); |
|
63 | + $subscribers_table->prepare_items(); |
|
64 | 64 | |
65 | - ?> |
|
65 | + ?> |
|
66 | 66 | <form id="subscribers-filter" class="bsui" method="get"> |
67 | 67 | <input type="hidden" name="page" value="wpinv-subscriptions" /> |
68 | 68 | <?php $subscribers_table->views(); ?> |
@@ -80,41 +80,41 @@ discard block |
||
80 | 80 | */ |
81 | 81 | function wpinv_recurring_subscription_details() { |
82 | 82 | |
83 | - // Fetch the subscription. |
|
84 | - $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
85 | - if ( ! $sub->exists() ) { |
|
83 | + // Fetch the subscription. |
|
84 | + $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
85 | + if ( ! $sub->exists() ) { |
|
86 | 86 | |
87 | - echo aui()->alert( |
|
88 | - array( |
|
89 | - 'type' => 'danger', |
|
90 | - 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
91 | - ) |
|
92 | - ); |
|
87 | + echo aui()->alert( |
|
88 | + array( |
|
89 | + 'type' => 'danger', |
|
90 | + 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
91 | + ) |
|
92 | + ); |
|
93 | 93 | |
94 | - return; |
|
95 | - } |
|
94 | + return; |
|
95 | + } |
|
96 | 96 | |
97 | - // Use metaboxes to display the subscription details. |
|
98 | - add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
99 | - add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
97 | + // Use metaboxes to display the subscription details. |
|
98 | + add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
99 | + add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
100 | 100 | |
101 | - $subscription_id = $sub->get_id(); |
|
102 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
103 | - $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
101 | + $subscription_id = $sub->get_id(); |
|
102 | + $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
103 | + $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
104 | 104 | |
105 | - if ( 1 < count( $subscription_groups ) ) { |
|
106 | - add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
107 | - } |
|
105 | + if ( 1 < count( $subscription_groups ) ) { |
|
106 | + add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
107 | + } |
|
108 | 108 | |
109 | - if ( ! empty( $subscription_group ) ) { |
|
110 | - add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
111 | - } |
|
109 | + if ( ! empty( $subscription_group ) ) { |
|
110 | + add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
111 | + } |
|
112 | 112 | |
113 | - add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
113 | + add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
114 | 114 | |
115 | - do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
115 | + do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
116 | 116 | |
117 | - ?> |
|
117 | + ?> |
|
118 | 118 | |
119 | 119 | <form method="post" action="<?php echo admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $sub->get_id() ) ); ?>"> |
120 | 120 | |
@@ -154,45 +154,45 @@ discard block |
||
154 | 154 | */ |
155 | 155 | function getpaid_admin_subscription_details_metabox( $sub ) { |
156 | 156 | |
157 | - // Subscription items. |
|
158 | - $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
159 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
160 | - |
|
161 | - // Prepare subscription detail columns. |
|
162 | - $fields = apply_filters( |
|
163 | - 'getpaid_subscription_admin_page_fields', |
|
164 | - array( |
|
165 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
166 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
167 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
168 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
169 | - 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
170 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
171 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
172 | - 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
173 | - 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
174 | - 'status' => __( 'Status', 'invoicing' ), |
|
175 | - ) |
|
176 | - ); |
|
177 | - |
|
178 | - if ( ! $sub->is_active() ) { |
|
179 | - |
|
180 | - if ( isset( $fields['renews_on'] ) ) { |
|
181 | - unset( $fields['renews_on'] ); |
|
182 | - } |
|
183 | - |
|
184 | - if ( isset( $fields['gateway'] ) ) { |
|
185 | - unset( $fields['gateway'] ); |
|
186 | - } |
|
187 | - |
|
188 | - } |
|
189 | - |
|
190 | - $profile_id = $sub->get_profile_id(); |
|
191 | - if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
192 | - unset( $fields['profile_id'] ); |
|
193 | - } |
|
194 | - |
|
195 | - ?> |
|
157 | + // Subscription items. |
|
158 | + $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
159 | + $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
160 | + |
|
161 | + // Prepare subscription detail columns. |
|
162 | + $fields = apply_filters( |
|
163 | + 'getpaid_subscription_admin_page_fields', |
|
164 | + array( |
|
165 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
166 | + 'customer' => __( 'Customer', 'invoicing' ), |
|
167 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
168 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
169 | + 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
170 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
171 | + 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
172 | + 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
173 | + 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
174 | + 'status' => __( 'Status', 'invoicing' ), |
|
175 | + ) |
|
176 | + ); |
|
177 | + |
|
178 | + if ( ! $sub->is_active() ) { |
|
179 | + |
|
180 | + if ( isset( $fields['renews_on'] ) ) { |
|
181 | + unset( $fields['renews_on'] ); |
|
182 | + } |
|
183 | + |
|
184 | + if ( isset( $fields['gateway'] ) ) { |
|
185 | + unset( $fields['gateway'] ); |
|
186 | + } |
|
187 | + |
|
188 | + } |
|
189 | + |
|
190 | + $profile_id = $sub->get_profile_id(); |
|
191 | + if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
192 | + unset( $fields['profile_id'] ); |
|
193 | + } |
|
194 | + |
|
195 | + ?> |
|
196 | 196 | |
197 | 197 | <table class="table table-borderless" style="font-size: 14px;"> |
198 | 198 | <tbody> |
@@ -226,20 +226,20 @@ discard block |
||
226 | 226 | */ |
227 | 227 | function getpaid_admin_subscription_metabox_display_customer( $subscription ) { |
228 | 228 | |
229 | - $username = __( '(Missing User)', 'invoicing' ); |
|
229 | + $username = __( '(Missing User)', 'invoicing' ); |
|
230 | 230 | |
231 | - $user = get_userdata( $subscription->get_customer_id() ); |
|
232 | - if ( $user ) { |
|
231 | + $user = get_userdata( $subscription->get_customer_id() ); |
|
232 | + if ( $user ) { |
|
233 | 233 | |
234 | - $username = sprintf( |
|
235 | - '<a href="user-edit.php?user_id=%s">%s</a>', |
|
236 | - absint( $user->ID ), |
|
237 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
238 | - ); |
|
234 | + $username = sprintf( |
|
235 | + '<a href="user-edit.php?user_id=%s">%s</a>', |
|
236 | + absint( $user->ID ), |
|
237 | + ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
238 | + ); |
|
239 | 239 | |
240 | - } |
|
240 | + } |
|
241 | 241 | |
242 | - echo $username; |
|
242 | + echo $username; |
|
243 | 243 | } |
244 | 244 | add_action( 'getpaid_subscription_admin_display_customer', 'getpaid_admin_subscription_metabox_display_customer' ); |
245 | 245 | |
@@ -249,8 +249,8 @@ discard block |
||
249 | 249 | * @param WPInv_Subscription $subscription |
250 | 250 | */ |
251 | 251 | function getpaid_admin_subscription_metabox_display_amount( $subscription ) { |
252 | - $amount = sanitize_text_field( getpaid_get_formatted_subscription_amount( $subscription ) ); |
|
253 | - echo "<span>$amount</span>"; |
|
252 | + $amount = sanitize_text_field( getpaid_get_formatted_subscription_amount( $subscription ) ); |
|
253 | + echo "<span>$amount</span>"; |
|
254 | 254 | } |
255 | 255 | add_action( 'getpaid_subscription_admin_display_amount', 'getpaid_admin_subscription_metabox_display_amount' ); |
256 | 256 | |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | * @param WPInv_Subscription $subscription |
261 | 261 | */ |
262 | 262 | function getpaid_admin_subscription_metabox_display_id( $subscription ) { |
263 | - echo '#' . absint( $subscription->get_id() ); |
|
263 | + echo '#' . absint( $subscription->get_id() ); |
|
264 | 264 | } |
265 | 265 | add_action( 'getpaid_subscription_admin_display_subscription', 'getpaid_admin_subscription_metabox_display_id' ); |
266 | 266 | |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | * @param WPInv_Subscription $subscription |
271 | 271 | */ |
272 | 272 | function getpaid_admin_subscription_metabox_display_start_date( $subscription ) { |
273 | - echo getpaid_format_date_value( $subscription->get_date_created() ); |
|
273 | + echo getpaid_format_date_value( $subscription->get_date_created() ); |
|
274 | 274 | } |
275 | 275 | add_action( 'getpaid_subscription_admin_display_start_date', 'getpaid_admin_subscription_metabox_display_start_date' ); |
276 | 276 | |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | * @param WPInv_Subscription $subscription |
281 | 281 | */ |
282 | 282 | function getpaid_admin_subscription_metabox_display_renews_on( $subscription ) { |
283 | - echo getpaid_format_date_value( $subscription->get_expiration() ); |
|
283 | + echo getpaid_format_date_value( $subscription->get_expiration() ); |
|
284 | 284 | } |
285 | 285 | add_action( 'getpaid_subscription_admin_display_renews_on', 'getpaid_admin_subscription_metabox_display_renews_on' ); |
286 | 286 | |
@@ -290,8 +290,8 @@ discard block |
||
290 | 290 | * @param WPInv_Subscription $subscription |
291 | 291 | */ |
292 | 292 | function getpaid_admin_subscription_metabox_display_renewals( $subscription ) { |
293 | - $max_bills = $subscription->get_bill_times(); |
|
294 | - echo $subscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
293 | + $max_bills = $subscription->get_bill_times(); |
|
294 | + echo $subscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
295 | 295 | } |
296 | 296 | add_action( 'getpaid_subscription_admin_display_renewals', 'getpaid_admin_subscription_metabox_display_renewals' ); |
297 | 297 | /** |
@@ -302,13 +302,13 @@ discard block |
||
302 | 302 | */ |
303 | 303 | function getpaid_admin_subscription_metabox_display_item( $subscription, $subscription_group = false ) { |
304 | 304 | |
305 | - if ( empty( $subscription_group ) ) { |
|
306 | - echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
307 | - return; |
|
308 | - } |
|
305 | + if ( empty( $subscription_group ) ) { |
|
306 | + echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
307 | + return; |
|
308 | + } |
|
309 | 309 | |
310 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
311 | - echo implode( ' | ', $markup ); |
|
310 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
311 | + echo implode( ' | ', $markup ); |
|
312 | 312 | |
313 | 313 | } |
314 | 314 | add_action( 'getpaid_subscription_admin_display_item', 'getpaid_admin_subscription_metabox_display_item', 10, 2 ); |
@@ -320,13 +320,13 @@ discard block |
||
320 | 320 | */ |
321 | 321 | function getpaid_admin_subscription_metabox_display_gateway( $subscription ) { |
322 | 322 | |
323 | - $gateway = $subscription->get_gateway(); |
|
323 | + $gateway = $subscription->get_gateway(); |
|
324 | 324 | |
325 | - if ( ! empty( $gateway ) ) { |
|
326 | - echo sanitize_text_field( wpinv_get_gateway_admin_label( $gateway ) ); |
|
327 | - } else { |
|
328 | - echo "—"; |
|
329 | - } |
|
325 | + if ( ! empty( $gateway ) ) { |
|
326 | + echo sanitize_text_field( wpinv_get_gateway_admin_label( $gateway ) ); |
|
327 | + } else { |
|
328 | + echo "—"; |
|
329 | + } |
|
330 | 330 | |
331 | 331 | } |
332 | 332 | add_action( 'getpaid_subscription_admin_display_gateway', 'getpaid_admin_subscription_metabox_display_gateway' ); |
@@ -337,7 +337,7 @@ discard block |
||
337 | 337 | * @param WPInv_Subscription $subscription |
338 | 338 | */ |
339 | 339 | function getpaid_admin_subscription_metabox_display_status( $subscription ) { |
340 | - echo $subscription->get_status_label_html(); |
|
340 | + echo $subscription->get_status_label_html(); |
|
341 | 341 | } |
342 | 342 | add_action( 'getpaid_subscription_admin_display_status', 'getpaid_admin_subscription_metabox_display_status' ); |
343 | 343 | |
@@ -348,29 +348,29 @@ discard block |
||
348 | 348 | */ |
349 | 349 | function getpaid_admin_subscription_metabox_display_profile_id( $subscription ) { |
350 | 350 | |
351 | - $profile_id = $subscription->get_profile_id(); |
|
352 | - |
|
353 | - $input = aui()->input( |
|
354 | - array( |
|
355 | - 'type' => 'text', |
|
356 | - 'id' => 'wpinv_subscription_profile_id', |
|
357 | - 'name' => 'wpinv_subscription_profile_id', |
|
358 | - 'label' => __( 'Profile Id', 'invoicing' ), |
|
359 | - 'label_type' => 'hidden', |
|
360 | - 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
361 | - 'value' => sanitize_text_field( $profile_id ), |
|
362 | - 'input_group_right' => '', |
|
363 | - 'no_wrap' => true, |
|
364 | - ) |
|
365 | - ); |
|
366 | - |
|
367 | - echo str_ireplace( 'form-control', 'regular-text', $input ); |
|
368 | - |
|
369 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
370 | - if ( ! empty( $url ) ) { |
|
371 | - $url = esc_url_raw( $url ); |
|
372 | - echo ' <a href="' . $url . '" title="' . __( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
373 | - } |
|
351 | + $profile_id = $subscription->get_profile_id(); |
|
352 | + |
|
353 | + $input = aui()->input( |
|
354 | + array( |
|
355 | + 'type' => 'text', |
|
356 | + 'id' => 'wpinv_subscription_profile_id', |
|
357 | + 'name' => 'wpinv_subscription_profile_id', |
|
358 | + 'label' => __( 'Profile Id', 'invoicing' ), |
|
359 | + 'label_type' => 'hidden', |
|
360 | + 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
361 | + 'value' => sanitize_text_field( $profile_id ), |
|
362 | + 'input_group_right' => '', |
|
363 | + 'no_wrap' => true, |
|
364 | + ) |
|
365 | + ); |
|
366 | + |
|
367 | + echo str_ireplace( 'form-control', 'regular-text', $input ); |
|
368 | + |
|
369 | + $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
370 | + if ( ! empty( $url ) ) { |
|
371 | + $url = esc_url_raw( $url ); |
|
372 | + echo ' <a href="' . $url . '" title="' . __( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
373 | + } |
|
374 | 374 | |
375 | 375 | } |
376 | 376 | add_action( 'getpaid_subscription_admin_display_profile_id', 'getpaid_admin_subscription_metabox_display_profile_id' ); |
@@ -382,39 +382,39 @@ discard block |
||
382 | 382 | */ |
383 | 383 | function getpaid_admin_subscription_update_metabox( $subscription ) { |
384 | 384 | |
385 | - ?> |
|
385 | + ?> |
|
386 | 386 | <div class="mt-3"> |
387 | 387 | |
388 | 388 | <?php |
389 | - echo aui()->select( |
|
390 | - array( |
|
391 | - 'options' => getpaid_get_subscription_statuses(), |
|
392 | - 'name' => 'subscription_status', |
|
393 | - 'id' => 'subscription_status_update_select', |
|
394 | - 'required' => true, |
|
395 | - 'no_wrap' => false, |
|
396 | - 'label' => __( 'Subscription Status', 'invoicing' ), |
|
397 | - 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
398 | - 'select2' => true, |
|
399 | - 'value' => $subscription->get_status( 'edit' ), |
|
400 | - ) |
|
401 | - ); |
|
402 | - ?> |
|
389 | + echo aui()->select( |
|
390 | + array( |
|
391 | + 'options' => getpaid_get_subscription_statuses(), |
|
392 | + 'name' => 'subscription_status', |
|
393 | + 'id' => 'subscription_status_update_select', |
|
394 | + 'required' => true, |
|
395 | + 'no_wrap' => false, |
|
396 | + 'label' => __( 'Subscription Status', 'invoicing' ), |
|
397 | + 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
398 | + 'select2' => true, |
|
399 | + 'value' => $subscription->get_status( 'edit' ), |
|
400 | + ) |
|
401 | + ); |
|
402 | + ?> |
|
403 | 403 | |
404 | 404 | <div class="mt-2 px-3 py-2 bg-light border-top" style="margin: -12px;"> |
405 | 405 | |
406 | 406 | <?php |
407 | - submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
407 | + submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
408 | 408 | |
409 | - $url = esc_url( wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ) ); |
|
410 | - $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
411 | - $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
409 | + $url = esc_url( wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ) ); |
|
410 | + $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
411 | + $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
412 | 412 | |
413 | - if ( $subscription->is_active() ) { |
|
414 | - echo "<a href='$url' class='float-right text-muted' onclick='return confirm(\"$title\")'>$anchor</a>"; |
|
415 | - } |
|
413 | + if ( $subscription->is_active() ) { |
|
414 | + echo "<a href='$url' class='float-right text-muted' onclick='return confirm(\"$title\")'>$anchor</a>"; |
|
415 | + } |
|
416 | 416 | |
417 | - echo '</div></div>'; |
|
417 | + echo '</div></div>'; |
|
418 | 418 | } |
419 | 419 | |
420 | 420 | /** |
@@ -425,33 +425,33 @@ discard block |
||
425 | 425 | */ |
426 | 426 | function getpaid_admin_subscription_invoice_details_metabox( $subscription, $strict = true ) { |
427 | 427 | |
428 | - $columns = apply_filters( |
|
429 | - 'getpaid_subscription_related_invoices_columns', |
|
430 | - array( |
|
431 | - 'invoice' => __( 'Invoice', 'invoicing' ), |
|
432 | - 'relationship' => __( 'Relationship', 'invoicing' ), |
|
433 | - 'date' => __( 'Date', 'invoicing' ), |
|
434 | - 'status' => __( 'Status', 'invoicing' ), |
|
435 | - 'total' => __( 'Total', 'invoicing' ), |
|
436 | - ), |
|
437 | - $subscription |
|
438 | - ); |
|
439 | - |
|
440 | - // Prepare the invoices. |
|
441 | - $payments = $subscription->get_child_payments( ! is_admin() ); |
|
442 | - $parent = $subscription->get_parent_invoice(); |
|
443 | - |
|
444 | - if ( $parent->exists() ) { |
|
445 | - $payments = array_merge( array( $parent ), $payments ); |
|
446 | - } |
|
447 | - |
|
448 | - $table_class = 'w-100 bg-white'; |
|
449 | - |
|
450 | - if ( ! is_admin() ) { |
|
451 | - $table_class = 'table table-bordered'; |
|
452 | - } |
|
453 | - |
|
454 | - ?> |
|
428 | + $columns = apply_filters( |
|
429 | + 'getpaid_subscription_related_invoices_columns', |
|
430 | + array( |
|
431 | + 'invoice' => __( 'Invoice', 'invoicing' ), |
|
432 | + 'relationship' => __( 'Relationship', 'invoicing' ), |
|
433 | + 'date' => __( 'Date', 'invoicing' ), |
|
434 | + 'status' => __( 'Status', 'invoicing' ), |
|
435 | + 'total' => __( 'Total', 'invoicing' ), |
|
436 | + ), |
|
437 | + $subscription |
|
438 | + ); |
|
439 | + |
|
440 | + // Prepare the invoices. |
|
441 | + $payments = $subscription->get_child_payments( ! is_admin() ); |
|
442 | + $parent = $subscription->get_parent_invoice(); |
|
443 | + |
|
444 | + if ( $parent->exists() ) { |
|
445 | + $payments = array_merge( array( $parent ), $payments ); |
|
446 | + } |
|
447 | + |
|
448 | + $table_class = 'w-100 bg-white'; |
|
449 | + |
|
450 | + if ( ! is_admin() ) { |
|
451 | + $table_class = 'table table-bordered'; |
|
452 | + } |
|
453 | + |
|
454 | + ?> |
|
455 | 455 | <div class="m-0" style="overflow: auto;"> |
456 | 456 | |
457 | 457 | <table class="<?php echo $table_class; ?>"> |
@@ -459,14 +459,14 @@ discard block |
||
459 | 459 | <thead> |
460 | 460 | <tr> |
461 | 461 | <?php |
462 | - foreach ( $columns as $key => $label ) { |
|
463 | - $key = esc_attr( $key ); |
|
464 | - $label = sanitize_text_field( $label ); |
|
465 | - $class = 'text-left'; |
|
466 | - |
|
467 | - echo "<th class='subscription-invoice-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
468 | - } |
|
469 | - ?> |
|
462 | + foreach ( $columns as $key => $label ) { |
|
463 | + $key = esc_attr( $key ); |
|
464 | + $label = sanitize_text_field( $label ); |
|
465 | + $class = 'text-left'; |
|
466 | + |
|
467 | + echo "<th class='subscription-invoice-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
468 | + } |
|
469 | + ?> |
|
470 | 470 | </tr> |
471 | 471 | </thead> |
472 | 472 | |
@@ -482,73 +482,73 @@ discard block |
||
482 | 482 | |
483 | 483 | <?php |
484 | 484 | |
485 | - foreach( $payments as $payment ) : |
|
485 | + foreach( $payments as $payment ) : |
|
486 | 486 | |
487 | - // Ensure that we have an invoice. |
|
488 | - $payment = new WPInv_Invoice( $payment ); |
|
487 | + // Ensure that we have an invoice. |
|
488 | + $payment = new WPInv_Invoice( $payment ); |
|
489 | 489 | |
490 | - // Abort if the invoice is invalid... |
|
491 | - if ( ! $payment->exists() ) { |
|
492 | - continue; |
|
493 | - } |
|
490 | + // Abort if the invoice is invalid... |
|
491 | + if ( ! $payment->exists() ) { |
|
492 | + continue; |
|
493 | + } |
|
494 | 494 | |
495 | - // ... or belongs to a different subscription. |
|
496 | - if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
497 | - continue; |
|
498 | - } |
|
495 | + // ... or belongs to a different subscription. |
|
496 | + if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
497 | + continue; |
|
498 | + } |
|
499 | 499 | |
500 | - echo '<tr>'; |
|
500 | + echo '<tr>'; |
|
501 | 501 | |
502 | - foreach ( array_keys( $columns ) as $key ) { |
|
502 | + foreach ( array_keys( $columns ) as $key ) { |
|
503 | 503 | |
504 | - $class = 'text-left'; |
|
504 | + $class = 'text-left'; |
|
505 | 505 | |
506 | - echo "<td class='p-2 $class'>"; |
|
506 | + echo "<td class='p-2 $class'>"; |
|
507 | 507 | |
508 | - switch( $key ) { |
|
508 | + switch( $key ) { |
|
509 | 509 | |
510 | - case 'total': |
|
511 | - echo '<strong>' . wpinv_price( $payment->get_total(), $payment->get_currency() ) . '</strong>'; |
|
512 | - break; |
|
510 | + case 'total': |
|
511 | + echo '<strong>' . wpinv_price( $payment->get_total(), $payment->get_currency() ) . '</strong>'; |
|
512 | + break; |
|
513 | 513 | |
514 | - case 'relationship': |
|
515 | - echo $payment->is_renewal() ? __( 'Renewal Invoice', 'invoicing' ) : __( 'Initial Invoice', 'invoicing' ); |
|
516 | - break; |
|
514 | + case 'relationship': |
|
515 | + echo $payment->is_renewal() ? __( 'Renewal Invoice', 'invoicing' ) : __( 'Initial Invoice', 'invoicing' ); |
|
516 | + break; |
|
517 | 517 | |
518 | - case 'date': |
|
519 | - echo getpaid_format_date_value( $payment->get_date_created() ); |
|
520 | - break; |
|
518 | + case 'date': |
|
519 | + echo getpaid_format_date_value( $payment->get_date_created() ); |
|
520 | + break; |
|
521 | 521 | |
522 | - case 'status': |
|
522 | + case 'status': |
|
523 | 523 | |
524 | - $status = $payment->get_status_nicename(); |
|
525 | - if ( is_admin() ) { |
|
526 | - $status = $payment->get_status_label_html(); |
|
527 | - } |
|
524 | + $status = $payment->get_status_nicename(); |
|
525 | + if ( is_admin() ) { |
|
526 | + $status = $payment->get_status_label_html(); |
|
527 | + } |
|
528 | 528 | |
529 | - echo $status; |
|
530 | - break; |
|
529 | + echo $status; |
|
530 | + break; |
|
531 | 531 | |
532 | - case 'invoice': |
|
533 | - $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
532 | + case 'invoice': |
|
533 | + $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
534 | 534 | |
535 | - if ( ! is_admin() ) { |
|
536 | - $link = esc_url( $payment->get_view_url() ); |
|
537 | - } |
|
535 | + if ( ! is_admin() ) { |
|
536 | + $link = esc_url( $payment->get_view_url() ); |
|
537 | + } |
|
538 | 538 | |
539 | - $invoice = sanitize_text_field( $payment->get_number() ); |
|
540 | - echo "<a href='$link'>$invoice</a>"; |
|
541 | - break; |
|
542 | - } |
|
539 | + $invoice = sanitize_text_field( $payment->get_number() ); |
|
540 | + echo "<a href='$link'>$invoice</a>"; |
|
541 | + break; |
|
542 | + } |
|
543 | 543 | |
544 | - echo '</td>'; |
|
544 | + echo '</td>'; |
|
545 | 545 | |
546 | - } |
|
546 | + } |
|
547 | 547 | |
548 | - echo '</tr>'; |
|
548 | + echo '</tr>'; |
|
549 | 549 | |
550 | - endforeach; |
|
551 | - ?> |
|
550 | + endforeach; |
|
551 | + ?> |
|
552 | 552 | |
553 | 553 | </tbody> |
554 | 554 | |
@@ -566,42 +566,42 @@ discard block |
||
566 | 566 | */ |
567 | 567 | function getpaid_admin_subscription_item_details_metabox( $subscription ) { |
568 | 568 | |
569 | - // Fetch the subscription group. |
|
570 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
569 | + // Fetch the subscription group. |
|
570 | + $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
571 | 571 | |
572 | - if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
573 | - return; |
|
574 | - } |
|
572 | + if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
573 | + return; |
|
574 | + } |
|
575 | 575 | |
576 | - // Prepare table columns. |
|
577 | - $columns = apply_filters( |
|
578 | - 'getpaid_subscription_item_details_columns', |
|
579 | - array( |
|
580 | - 'item_name' => __( 'Item', 'invoicing' ), |
|
581 | - 'price' => __( 'Price', 'invoicing' ), |
|
582 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
583 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
584 | - 'initial' => __( 'Initial Amount', 'invoicing' ), |
|
585 | - 'recurring' => __( 'Recurring Amount', 'invoicing' ), |
|
586 | - ), |
|
587 | - $subscription |
|
588 | - ); |
|
576 | + // Prepare table columns. |
|
577 | + $columns = apply_filters( |
|
578 | + 'getpaid_subscription_item_details_columns', |
|
579 | + array( |
|
580 | + 'item_name' => __( 'Item', 'invoicing' ), |
|
581 | + 'price' => __( 'Price', 'invoicing' ), |
|
582 | + 'tax' => __( 'Tax', 'invoicing' ), |
|
583 | + 'discount' => __( 'Discount', 'invoicing' ), |
|
584 | + 'initial' => __( 'Initial Amount', 'invoicing' ), |
|
585 | + 'recurring' => __( 'Recurring Amount', 'invoicing' ), |
|
586 | + ), |
|
587 | + $subscription |
|
588 | + ); |
|
589 | 589 | |
590 | - // Prepare the invoices. |
|
590 | + // Prepare the invoices. |
|
591 | 591 | |
592 | - $invoice = $subscription->get_parent_invoice(); |
|
592 | + $invoice = $subscription->get_parent_invoice(); |
|
593 | 593 | |
594 | - if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
595 | - unset( $columns['tax'] ); |
|
596 | - } |
|
594 | + if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
595 | + unset( $columns['tax'] ); |
|
596 | + } |
|
597 | 597 | |
598 | - $table_class = 'w-100 bg-white'; |
|
598 | + $table_class = 'w-100 bg-white'; |
|
599 | 599 | |
600 | - if ( ! is_admin() ) { |
|
601 | - $table_class = 'table table-bordered'; |
|
602 | - } |
|
600 | + if ( ! is_admin() ) { |
|
601 | + $table_class = 'table table-bordered'; |
|
602 | + } |
|
603 | 603 | |
604 | - ?> |
|
604 | + ?> |
|
605 | 605 | <div class="m-0" style="overflow: auto;"> |
606 | 606 | |
607 | 607 | <table class="<?php echo $table_class; ?>"> |
@@ -610,14 +610,14 @@ discard block |
||
610 | 610 | <tr> |
611 | 611 | <?php |
612 | 612 | |
613 | - foreach ( $columns as $key => $label ) { |
|
614 | - $key = esc_attr( $key ); |
|
615 | - $label = sanitize_text_field( $label ); |
|
616 | - $class = 'text-left'; |
|
613 | + foreach ( $columns as $key => $label ) { |
|
614 | + $key = esc_attr( $key ); |
|
615 | + $label = sanitize_text_field( $label ); |
|
616 | + $class = 'text-left'; |
|
617 | 617 | |
618 | - echo "<th class='subscription-item-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
619 | - } |
|
620 | - ?> |
|
618 | + echo "<th class='subscription-item-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
619 | + } |
|
620 | + ?> |
|
621 | 621 | </tr> |
622 | 622 | </thead> |
623 | 623 | |
@@ -625,106 +625,106 @@ discard block |
||
625 | 625 | |
626 | 626 | <?php |
627 | 627 | |
628 | - foreach( $subscription_group['items'] as $subscription_group_item ) : |
|
628 | + foreach( $subscription_group['items'] as $subscription_group_item ) : |
|
629 | 629 | |
630 | - echo '<tr>'; |
|
630 | + echo '<tr>'; |
|
631 | 631 | |
632 | - foreach ( array_keys( $columns ) as $key ) { |
|
632 | + foreach ( array_keys( $columns ) as $key ) { |
|
633 | 633 | |
634 | - $class = 'text-left'; |
|
634 | + $class = 'text-left'; |
|
635 | 635 | |
636 | - echo "<td class='p-2 $class'>"; |
|
636 | + echo "<td class='p-2 $class'>"; |
|
637 | 637 | |
638 | - switch( $key ) { |
|
638 | + switch( $key ) { |
|
639 | 639 | |
640 | - case 'item_name': |
|
641 | - $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
642 | - $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
640 | + case 'item_name': |
|
641 | + $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
642 | + $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
643 | 643 | |
644 | - if ( $invoice->get_template() == 'amount' || 1 === (int) $subscription_group_item['quantity'] ) { |
|
645 | - echo sanitize_text_field( $item_name ); |
|
646 | - } else { |
|
647 | - printf( '%1$s x %2$d', sanitize_text_field( $item_name ), (int) $subscription_group_item['quantity'] ); |
|
648 | - } |
|
644 | + if ( $invoice->get_template() == 'amount' || 1 === (int) $subscription_group_item['quantity'] ) { |
|
645 | + echo sanitize_text_field( $item_name ); |
|
646 | + } else { |
|
647 | + printf( '%1$s x %2$d', sanitize_text_field( $item_name ), (int) $subscription_group_item['quantity'] ); |
|
648 | + } |
|
649 | 649 | |
650 | - break; |
|
650 | + break; |
|
651 | 651 | |
652 | - case 'price': |
|
653 | - echo wpinv_price( $subscription_group_item['price'], $invoice->get_currency() ); |
|
654 | - break; |
|
652 | + case 'price': |
|
653 | + echo wpinv_price( $subscription_group_item['price'], $invoice->get_currency() ); |
|
654 | + break; |
|
655 | 655 | |
656 | - case 'tax': |
|
657 | - echo wpinv_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
658 | - break; |
|
656 | + case 'tax': |
|
657 | + echo wpinv_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
658 | + break; |
|
659 | 659 | |
660 | - case 'discount': |
|
661 | - echo wpinv_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
662 | - break; |
|
660 | + case 'discount': |
|
661 | + echo wpinv_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
662 | + break; |
|
663 | 663 | |
664 | - case 'initial': |
|
665 | - echo wpinv_price( $subscription_group_item['subtotal'], $invoice->get_currency() ); |
|
666 | - break; |
|
664 | + case 'initial': |
|
665 | + echo wpinv_price( $subscription_group_item['subtotal'], $invoice->get_currency() ); |
|
666 | + break; |
|
667 | 667 | |
668 | - case 'recurring': |
|
669 | - echo '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>'; |
|
670 | - break; |
|
668 | + case 'recurring': |
|
669 | + echo '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>'; |
|
670 | + break; |
|
671 | 671 | |
672 | - } |
|
672 | + } |
|
673 | 673 | |
674 | - echo '</td>'; |
|
674 | + echo '</td>'; |
|
675 | 675 | |
676 | - } |
|
676 | + } |
|
677 | 677 | |
678 | - echo '</tr>'; |
|
678 | + echo '</tr>'; |
|
679 | 679 | |
680 | - endforeach; |
|
680 | + endforeach; |
|
681 | 681 | |
682 | - foreach( $subscription_group['fees'] as $subscription_group_fee ) : |
|
682 | + foreach( $subscription_group['fees'] as $subscription_group_fee ) : |
|
683 | 683 | |
684 | - echo '<tr>'; |
|
684 | + echo '<tr>'; |
|
685 | 685 | |
686 | - foreach ( array_keys( $columns ) as $key ) { |
|
686 | + foreach ( array_keys( $columns ) as $key ) { |
|
687 | 687 | |
688 | - $class = 'text-left'; |
|
688 | + $class = 'text-left'; |
|
689 | 689 | |
690 | - echo "<td class='p-2 $class'>"; |
|
690 | + echo "<td class='p-2 $class'>"; |
|
691 | 691 | |
692 | - switch( $key ) { |
|
692 | + switch( $key ) { |
|
693 | 693 | |
694 | - case 'item_name': |
|
695 | - echo sanitize_text_field( $subscription_group_fee['name'] ); |
|
696 | - break; |
|
694 | + case 'item_name': |
|
695 | + echo sanitize_text_field( $subscription_group_fee['name'] ); |
|
696 | + break; |
|
697 | 697 | |
698 | - case 'price': |
|
699 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
700 | - break; |
|
698 | + case 'price': |
|
699 | + echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
700 | + break; |
|
701 | 701 | |
702 | - case 'tax': |
|
703 | - echo "—"; |
|
704 | - break; |
|
702 | + case 'tax': |
|
703 | + echo "—"; |
|
704 | + break; |
|
705 | 705 | |
706 | - case 'discount': |
|
707 | - echo "—"; |
|
708 | - break; |
|
706 | + case 'discount': |
|
707 | + echo "—"; |
|
708 | + break; |
|
709 | 709 | |
710 | - case 'initial': |
|
711 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
712 | - break; |
|
710 | + case 'initial': |
|
711 | + echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
712 | + break; |
|
713 | 713 | |
714 | - case 'recurring': |
|
715 | - echo '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>'; |
|
716 | - break; |
|
714 | + case 'recurring': |
|
715 | + echo '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>'; |
|
716 | + break; |
|
717 | 717 | |
718 | - } |
|
718 | + } |
|
719 | 719 | |
720 | - echo '</td>'; |
|
720 | + echo '</td>'; |
|
721 | 721 | |
722 | - } |
|
722 | + } |
|
723 | 723 | |
724 | - echo '</tr>'; |
|
724 | + echo '</tr>'; |
|
725 | 725 | |
726 | - endforeach; |
|
727 | - ?> |
|
726 | + endforeach; |
|
727 | + ?> |
|
728 | 728 | |
729 | 729 | </tbody> |
730 | 730 | |
@@ -743,34 +743,34 @@ discard block |
||
743 | 743 | */ |
744 | 744 | function getpaid_admin_subscription_related_subscriptions_metabox( $subscription, $skip_current = true ) { |
745 | 745 | |
746 | - // Fetch the subscription groups. |
|
747 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
748 | - |
|
749 | - if ( empty( $subscription_groups ) ) { |
|
750 | - return; |
|
751 | - } |
|
752 | - |
|
753 | - // Prepare table columns. |
|
754 | - $columns = apply_filters( |
|
755 | - 'getpaid_subscription_related_subscriptions_columns', |
|
756 | - array( |
|
757 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
758 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
759 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
760 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
761 | - 'item' => __( 'Items', 'invoicing' ), |
|
762 | - 'status' => __( 'Status', 'invoicing' ), |
|
763 | - ), |
|
764 | - $subscription |
|
765 | - ); |
|
766 | - |
|
767 | - $table_class = 'w-100 bg-white'; |
|
768 | - |
|
769 | - if ( ! is_admin() ) { |
|
770 | - $table_class = 'table table-bordered'; |
|
771 | - } |
|
772 | - |
|
773 | - ?> |
|
746 | + // Fetch the subscription groups. |
|
747 | + $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
748 | + |
|
749 | + if ( empty( $subscription_groups ) ) { |
|
750 | + return; |
|
751 | + } |
|
752 | + |
|
753 | + // Prepare table columns. |
|
754 | + $columns = apply_filters( |
|
755 | + 'getpaid_subscription_related_subscriptions_columns', |
|
756 | + array( |
|
757 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
758 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
759 | + 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
760 | + 'renewals' => __( 'Payments', 'invoicing' ), |
|
761 | + 'item' => __( 'Items', 'invoicing' ), |
|
762 | + 'status' => __( 'Status', 'invoicing' ), |
|
763 | + ), |
|
764 | + $subscription |
|
765 | + ); |
|
766 | + |
|
767 | + $table_class = 'w-100 bg-white'; |
|
768 | + |
|
769 | + if ( ! is_admin() ) { |
|
770 | + $table_class = 'table table-bordered'; |
|
771 | + } |
|
772 | + |
|
773 | + ?> |
|
774 | 774 | <div class="m-0" style="overflow: auto;"> |
775 | 775 | |
776 | 776 | <table class="<?php echo $table_class; ?>"> |
@@ -779,14 +779,14 @@ discard block |
||
779 | 779 | <tr> |
780 | 780 | <?php |
781 | 781 | |
782 | - foreach ( $columns as $key => $label ) { |
|
783 | - $key = esc_attr( $key ); |
|
784 | - $label = sanitize_text_field( $label ); |
|
785 | - $class = 'text-left'; |
|
782 | + foreach ( $columns as $key => $label ) { |
|
783 | + $key = esc_attr( $key ); |
|
784 | + $label = sanitize_text_field( $label ); |
|
785 | + $class = 'text-left'; |
|
786 | 786 | |
787 | - echo "<th class='related-subscription-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
788 | - } |
|
789 | - ?> |
|
787 | + echo "<th class='related-subscription-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
|
788 | + } |
|
789 | + ?> |
|
790 | 790 | </tr> |
791 | 791 | </thead> |
792 | 792 | |
@@ -794,74 +794,74 @@ discard block |
||
794 | 794 | |
795 | 795 | <?php |
796 | 796 | |
797 | - foreach( $subscription_groups as $subscription_group ) : |
|
797 | + foreach( $subscription_groups as $subscription_group ) : |
|
798 | 798 | |
799 | - // Do not list current subscription. |
|
800 | - if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
801 | - continue; |
|
802 | - } |
|
799 | + // Do not list current subscription. |
|
800 | + if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
801 | + continue; |
|
802 | + } |
|
803 | 803 | |
804 | - // Ensure the subscription exists. |
|
805 | - $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
804 | + // Ensure the subscription exists. |
|
805 | + $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
806 | 806 | |
807 | - if ( ! $_suscription->exists() ) { |
|
808 | - continue; |
|
809 | - } |
|
807 | + if ( ! $_suscription->exists() ) { |
|
808 | + continue; |
|
809 | + } |
|
810 | 810 | |
811 | - echo '<tr>'; |
|
811 | + echo '<tr>'; |
|
812 | 812 | |
813 | - foreach ( array_keys( $columns ) as $key ) { |
|
813 | + foreach ( array_keys( $columns ) as $key ) { |
|
814 | 814 | |
815 | - $class = 'text-left'; |
|
815 | + $class = 'text-left'; |
|
816 | 816 | |
817 | - echo "<td class='p-2 $class'>"; |
|
817 | + echo "<td class='p-2 $class'>"; |
|
818 | 818 | |
819 | - switch( $key ) { |
|
819 | + switch( $key ) { |
|
820 | 820 | |
821 | - case 'status': |
|
822 | - echo $_suscription->get_status_label_html(); |
|
823 | - break; |
|
821 | + case 'status': |
|
822 | + echo $_suscription->get_status_label_html(); |
|
823 | + break; |
|
824 | 824 | |
825 | - case 'item': |
|
826 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
827 | - echo implode( ' | ', $markup ); |
|
828 | - break; |
|
825 | + case 'item': |
|
826 | + $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
827 | + echo implode( ' | ', $markup ); |
|
828 | + break; |
|
829 | 829 | |
830 | - case 'renewals': |
|
831 | - $max_bills = $_suscription->get_bill_times(); |
|
832 | - echo $_suscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
833 | - break; |
|
830 | + case 'renewals': |
|
831 | + $max_bills = $_suscription->get_bill_times(); |
|
832 | + echo $_suscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
833 | + break; |
|
834 | 834 | |
835 | - case 'renewal_date': |
|
836 | - echo $_suscription->is_active() ? getpaid_format_date_value( $_suscription->get_expiration() ) : "—"; |
|
837 | - break; |
|
835 | + case 'renewal_date': |
|
836 | + echo $_suscription->is_active() ? getpaid_format_date_value( $_suscription->get_expiration() ) : "—"; |
|
837 | + break; |
|
838 | 838 | |
839 | - case 'start_date': |
|
840 | - echo getpaid_format_date_value( $_suscription->get_date_created() ); |
|
841 | - break; |
|
839 | + case 'start_date': |
|
840 | + echo getpaid_format_date_value( $_suscription->get_date_created() ); |
|
841 | + break; |
|
842 | 842 | |
843 | - case 'subscription': |
|
844 | - $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
845 | - printf( |
|
846 | - '%1$s#%2$s%3$s', |
|
847 | - '<a href="' . esc_url( $url ) . '">', |
|
848 | - '<strong>' . intval( $_suscription->get_id() ) . '</strong>', |
|
849 | - '</a>' |
|
850 | - ); |
|
843 | + case 'subscription': |
|
844 | + $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
845 | + printf( |
|
846 | + '%1$s#%2$s%3$s', |
|
847 | + '<a href="' . esc_url( $url ) . '">', |
|
848 | + '<strong>' . intval( $_suscription->get_id() ) . '</strong>', |
|
849 | + '</a>' |
|
850 | + ); |
|
851 | 851 | |
852 | - echo WPInv_Subscriptions_List_Table::column_amount( $_suscription ); |
|
853 | - break; |
|
852 | + echo WPInv_Subscriptions_List_Table::column_amount( $_suscription ); |
|
853 | + break; |
|
854 | 854 | |
855 | - } |
|
855 | + } |
|
856 | 856 | |
857 | - echo '</td>'; |
|
857 | + echo '</td>'; |
|
858 | 858 | |
859 | - } |
|
859 | + } |
|
860 | 860 | |
861 | - echo '</tr>'; |
|
861 | + echo '</tr>'; |
|
862 | 862 | |
863 | - endforeach; |
|
864 | - ?> |
|
863 | + endforeach; |
|
864 | + ?> |
|
865 | 865 | |
866 | 866 | </tbody> |
867 | 867 |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | * Contains functions that display the subscriptions admin page. |
4 | 4 | */ |
5 | 5 | |
6 | -defined( 'ABSPATH' ) || exit; |
|
6 | +defined('ABSPATH') || exit; |
|
7 | 7 | |
8 | 8 | /** |
9 | 9 | * Render the Subscriptions page |
@@ -17,22 +17,22 @@ discard block |
||
17 | 17 | ?> |
18 | 18 | |
19 | 19 | <div class="wrap"> |
20 | - <h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
|
20 | + <h1><?php echo esc_html(get_admin_page_title()); ?></h1> |
|
21 | 21 | <div class="bsui"> |
22 | 22 | |
23 | 23 | <?php |
24 | 24 | |
25 | 25 | // Verify user permissions. |
26 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
26 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
27 | 27 | |
28 | 28 | echo aui()->alert( |
29 | 29 | array( |
30 | 30 | 'type' => 'danger', |
31 | - 'content' => __( 'You are not permitted to view this page.', 'invoicing' ), |
|
31 | + 'content' => __('You are not permitted to view this page.', 'invoicing'), |
|
32 | 32 | ) |
33 | 33 | ); |
34 | 34 | |
35 | - } else if ( ! empty( $_GET['id'] ) && is_numeric( $_GET['id'] ) ) { |
|
35 | + } else if (!empty($_GET['id']) && is_numeric($_GET['id'])) { |
|
36 | 36 | |
37 | 37 | // Display a single subscription. |
38 | 38 | wpinv_recurring_subscription_details(); |
@@ -81,13 +81,13 @@ discard block |
||
81 | 81 | function wpinv_recurring_subscription_details() { |
82 | 82 | |
83 | 83 | // Fetch the subscription. |
84 | - $sub = new WPInv_Subscription( (int) $_GET['id'] ); |
|
85 | - if ( ! $sub->exists() ) { |
|
84 | + $sub = new WPInv_Subscription((int) $_GET['id']); |
|
85 | + if (!$sub->exists()) { |
|
86 | 86 | |
87 | 87 | echo aui()->alert( |
88 | 88 | array( |
89 | 89 | 'type' => 'danger', |
90 | - 'content' => __( 'Subscription not found.', 'invoicing' ), |
|
90 | + 'content' => __('Subscription not found.', 'invoicing'), |
|
91 | 91 | ) |
92 | 92 | ); |
93 | 93 | |
@@ -95,45 +95,45 @@ discard block |
||
95 | 95 | } |
96 | 96 | |
97 | 97 | // Use metaboxes to display the subscription details. |
98 | - add_meta_box( 'getpaid_admin_subscription_details_metabox', __( 'Subscription Details', 'invoicing' ), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high' ); |
|
99 | - add_meta_box( 'getpaid_admin_subscription_update_metabox', __( 'Change Status', 'invoicing' ), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side' ); |
|
98 | + add_meta_box('getpaid_admin_subscription_details_metabox', __('Subscription Details', 'invoicing'), 'getpaid_admin_subscription_details_metabox', get_current_screen(), 'normal', 'high'); |
|
99 | + add_meta_box('getpaid_admin_subscription_update_metabox', __('Change Status', 'invoicing'), 'getpaid_admin_subscription_update_metabox', get_current_screen(), 'side'); |
|
100 | 100 | |
101 | 101 | $subscription_id = $sub->get_id(); |
102 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $sub->get_parent_invoice_id() ); |
|
103 | - $subscription_group = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) ); |
|
102 | + $subscription_groups = getpaid_get_invoice_subscription_groups($sub->get_parent_invoice_id()); |
|
103 | + $subscription_group = wp_list_filter($subscription_groups, compact('subscription_id')); |
|
104 | 104 | |
105 | - if ( 1 < count( $subscription_groups ) ) { |
|
106 | - add_meta_box( 'getpaid_admin_subscription_related_subscriptions_metabox', __( 'Related Subscriptions', 'invoicing' ), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced' ); |
|
105 | + if (1 < count($subscription_groups)) { |
|
106 | + add_meta_box('getpaid_admin_subscription_related_subscriptions_metabox', __('Related Subscriptions', 'invoicing'), 'getpaid_admin_subscription_related_subscriptions_metabox', get_current_screen(), 'advanced'); |
|
107 | 107 | } |
108 | 108 | |
109 | - if ( ! empty( $subscription_group ) ) { |
|
110 | - add_meta_box( 'getpaid_admin_subscription_item_details_metabox', __( 'Subscription Items', 'invoicing' ), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low' ); |
|
109 | + if (!empty($subscription_group)) { |
|
110 | + add_meta_box('getpaid_admin_subscription_item_details_metabox', __('Subscription Items', 'invoicing'), 'getpaid_admin_subscription_item_details_metabox', get_current_screen(), 'normal', 'low'); |
|
111 | 111 | } |
112 | 112 | |
113 | - add_meta_box( 'getpaid_admin_subscription_invoice_details_metabox', __( 'Related Invoices', 'invoicing' ), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced' ); |
|
113 | + add_meta_box('getpaid_admin_subscription_invoice_details_metabox', __('Related Invoices', 'invoicing'), 'getpaid_admin_subscription_invoice_details_metabox', get_current_screen(), 'advanced'); |
|
114 | 114 | |
115 | - do_action( 'getpaid_admin_single_subscription_register_metabox', $sub ); |
|
115 | + do_action('getpaid_admin_single_subscription_register_metabox', $sub); |
|
116 | 116 | |
117 | 117 | ?> |
118 | 118 | |
119 | - <form method="post" action="<?php echo admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $sub->get_id() ) ); ?>"> |
|
119 | + <form method="post" action="<?php echo admin_url('admin.php?page=wpinv-subscriptions&id=' . absint($sub->get_id())); ?>"> |
|
120 | 120 | |
121 | - <?php wp_nonce_field( 'getpaid-nonce', 'getpaid-nonce' ); ?> |
|
122 | - <?php wp_nonce_field( 'meta-box-order', 'meta-box-order-nonce', false ); ?> |
|
123 | - <?php wp_nonce_field( 'closedpostboxes', 'closedpostboxesnonce', false ); ?> |
|
121 | + <?php wp_nonce_field('getpaid-nonce', 'getpaid-nonce'); ?> |
|
122 | + <?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false); ?> |
|
123 | + <?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false); ?> |
|
124 | 124 | <input type="hidden" name="getpaid-admin-action" value="update_single_subscription" /> |
125 | - <input type="hidden" name="subscription_id" value="<?php echo (int) $sub->get_id() ;?>" /> |
|
125 | + <input type="hidden" name="subscription_id" value="<?php echo (int) $sub->get_id(); ?>" /> |
|
126 | 126 | |
127 | 127 | <div id="poststuff"> |
128 | 128 | <div id="post-body" class="metabox-holder columns-<?php echo 1 == get_current_screen()->get_columns() ? '1' : '2'; ?>"> |
129 | 129 | |
130 | 130 | <div id="postbox-container-1" class="postbox-container"> |
131 | - <?php do_meta_boxes( get_current_screen(), 'side', $sub ); ?> |
|
131 | + <?php do_meta_boxes(get_current_screen(), 'side', $sub); ?> |
|
132 | 132 | </div> |
133 | 133 | |
134 | 134 | <div id="postbox-container-2" class="postbox-container"> |
135 | - <?php do_meta_boxes( get_current_screen(), 'normal', $sub ); ?> |
|
136 | - <?php do_meta_boxes( get_current_screen(), 'advanced', $sub ); ?> |
|
135 | + <?php do_meta_boxes(get_current_screen(), 'normal', $sub); ?> |
|
136 | + <?php do_meta_boxes(get_current_screen(), 'advanced', $sub); ?> |
|
137 | 137 | </div> |
138 | 138 | |
139 | 139 | </div> |
@@ -152,44 +152,44 @@ discard block |
||
152 | 152 | * |
153 | 153 | * @param WPInv_Subscription $sub |
154 | 154 | */ |
155 | -function getpaid_admin_subscription_details_metabox( $sub ) { |
|
155 | +function getpaid_admin_subscription_details_metabox($sub) { |
|
156 | 156 | |
157 | 157 | // Subscription items. |
158 | - $subscription_group = getpaid_get_invoice_subscription_group( $sub->get_parent_invoice_id(), $sub->get_id() ); |
|
159 | - $items_count = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] ); |
|
158 | + $subscription_group = getpaid_get_invoice_subscription_group($sub->get_parent_invoice_id(), $sub->get_id()); |
|
159 | + $items_count = empty($subscription_group) ? 1 : count($subscription_group['items']); |
|
160 | 160 | |
161 | 161 | // Prepare subscription detail columns. |
162 | 162 | $fields = apply_filters( |
163 | 163 | 'getpaid_subscription_admin_page_fields', |
164 | 164 | array( |
165 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
166 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
167 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
168 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
169 | - 'renews_on' => __( 'Next Payment', 'invoicing' ), |
|
170 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
171 | - 'item' => _n( 'Item', 'Items', $items_count, 'invoicing' ), |
|
172 | - 'gateway' => __( 'Payment Method', 'invoicing' ), |
|
173 | - 'profile_id' => __( 'Profile ID', 'invoicing' ), |
|
174 | - 'status' => __( 'Status', 'invoicing' ), |
|
165 | + 'subscription' => __('Subscription', 'invoicing'), |
|
166 | + 'customer' => __('Customer', 'invoicing'), |
|
167 | + 'amount' => __('Amount', 'invoicing'), |
|
168 | + 'start_date' => __('Start Date', 'invoicing'), |
|
169 | + 'renews_on' => __('Next Payment', 'invoicing'), |
|
170 | + 'renewals' => __('Payments', 'invoicing'), |
|
171 | + 'item' => _n('Item', 'Items', $items_count, 'invoicing'), |
|
172 | + 'gateway' => __('Payment Method', 'invoicing'), |
|
173 | + 'profile_id' => __('Profile ID', 'invoicing'), |
|
174 | + 'status' => __('Status', 'invoicing'), |
|
175 | 175 | ) |
176 | 176 | ); |
177 | 177 | |
178 | - if ( ! $sub->is_active() ) { |
|
178 | + if (!$sub->is_active()) { |
|
179 | 179 | |
180 | - if ( isset( $fields['renews_on'] ) ) { |
|
181 | - unset( $fields['renews_on'] ); |
|
180 | + if (isset($fields['renews_on'])) { |
|
181 | + unset($fields['renews_on']); |
|
182 | 182 | } |
183 | 183 | |
184 | - if ( isset( $fields['gateway'] ) ) { |
|
185 | - unset( $fields['gateway'] ); |
|
184 | + if (isset($fields['gateway'])) { |
|
185 | + unset($fields['gateway']); |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | } |
189 | 189 | |
190 | 190 | $profile_id = $sub->get_profile_id(); |
191 | - if ( empty( $profile_id ) && isset( $fields['profile_id'] ) ) { |
|
192 | - unset( $fields['profile_id'] ); |
|
191 | + if (empty($profile_id) && isset($fields['profile_id'])) { |
|
192 | + unset($fields['profile_id']); |
|
193 | 193 | } |
194 | 194 | |
195 | 195 | ?> |
@@ -197,16 +197,16 @@ discard block |
||
197 | 197 | <table class="table table-borderless" style="font-size: 14px;"> |
198 | 198 | <tbody> |
199 | 199 | |
200 | - <?php foreach ( $fields as $key => $label ) : ?> |
|
200 | + <?php foreach ($fields as $key => $label) : ?> |
|
201 | 201 | |
202 | - <tr class="getpaid-subscription-meta-<?php echo sanitize_html_class( $key ); ?>"> |
|
202 | + <tr class="getpaid-subscription-meta-<?php echo sanitize_html_class($key); ?>"> |
|
203 | 203 | |
204 | 204 | <th class="w-25" style="font-weight: 500;"> |
205 | - <?php echo sanitize_text_field( $label ); ?> |
|
205 | + <?php echo sanitize_text_field($label); ?> |
|
206 | 206 | </th> |
207 | 207 | |
208 | 208 | <td class="w-75 text-muted"> |
209 | - <?php do_action( 'getpaid_subscription_admin_display_' . sanitize_text_field( $key ), $sub, $subscription_group ); ?> |
|
209 | + <?php do_action('getpaid_subscription_admin_display_' . sanitize_text_field($key), $sub, $subscription_group); ?> |
|
210 | 210 | </td> |
211 | 211 | |
212 | 212 | </tr> |
@@ -224,129 +224,129 @@ discard block |
||
224 | 224 | * |
225 | 225 | * @param WPInv_Subscription $subscription |
226 | 226 | */ |
227 | -function getpaid_admin_subscription_metabox_display_customer( $subscription ) { |
|
227 | +function getpaid_admin_subscription_metabox_display_customer($subscription) { |
|
228 | 228 | |
229 | - $username = __( '(Missing User)', 'invoicing' ); |
|
229 | + $username = __('(Missing User)', 'invoicing'); |
|
230 | 230 | |
231 | - $user = get_userdata( $subscription->get_customer_id() ); |
|
232 | - if ( $user ) { |
|
231 | + $user = get_userdata($subscription->get_customer_id()); |
|
232 | + if ($user) { |
|
233 | 233 | |
234 | 234 | $username = sprintf( |
235 | 235 | '<a href="user-edit.php?user_id=%s">%s</a>', |
236 | - absint( $user->ID ), |
|
237 | - ! empty( $user->display_name ) ? sanitize_text_field( $user->display_name ) : sanitize_email( $user->user_email ) |
|
236 | + absint($user->ID), |
|
237 | + !empty($user->display_name) ? sanitize_text_field($user->display_name) : sanitize_email($user->user_email) |
|
238 | 238 | ); |
239 | 239 | |
240 | 240 | } |
241 | 241 | |
242 | 242 | echo $username; |
243 | 243 | } |
244 | -add_action( 'getpaid_subscription_admin_display_customer', 'getpaid_admin_subscription_metabox_display_customer' ); |
|
244 | +add_action('getpaid_subscription_admin_display_customer', 'getpaid_admin_subscription_metabox_display_customer'); |
|
245 | 245 | |
246 | 246 | /** |
247 | 247 | * Displays the subscription amount. |
248 | 248 | * |
249 | 249 | * @param WPInv_Subscription $subscription |
250 | 250 | */ |
251 | -function getpaid_admin_subscription_metabox_display_amount( $subscription ) { |
|
252 | - $amount = sanitize_text_field( getpaid_get_formatted_subscription_amount( $subscription ) ); |
|
251 | +function getpaid_admin_subscription_metabox_display_amount($subscription) { |
|
252 | + $amount = sanitize_text_field(getpaid_get_formatted_subscription_amount($subscription)); |
|
253 | 253 | echo "<span>$amount</span>"; |
254 | 254 | } |
255 | -add_action( 'getpaid_subscription_admin_display_amount', 'getpaid_admin_subscription_metabox_display_amount' ); |
|
255 | +add_action('getpaid_subscription_admin_display_amount', 'getpaid_admin_subscription_metabox_display_amount'); |
|
256 | 256 | |
257 | 257 | /** |
258 | 258 | * Displays the subscription id. |
259 | 259 | * |
260 | 260 | * @param WPInv_Subscription $subscription |
261 | 261 | */ |
262 | -function getpaid_admin_subscription_metabox_display_id( $subscription ) { |
|
263 | - echo '#' . absint( $subscription->get_id() ); |
|
262 | +function getpaid_admin_subscription_metabox_display_id($subscription) { |
|
263 | + echo '#' . absint($subscription->get_id()); |
|
264 | 264 | } |
265 | -add_action( 'getpaid_subscription_admin_display_subscription', 'getpaid_admin_subscription_metabox_display_id' ); |
|
265 | +add_action('getpaid_subscription_admin_display_subscription', 'getpaid_admin_subscription_metabox_display_id'); |
|
266 | 266 | |
267 | 267 | /** |
268 | 268 | * Displays the subscription renewal date. |
269 | 269 | * |
270 | 270 | * @param WPInv_Subscription $subscription |
271 | 271 | */ |
272 | -function getpaid_admin_subscription_metabox_display_start_date( $subscription ) { |
|
273 | - echo getpaid_format_date_value( $subscription->get_date_created() ); |
|
272 | +function getpaid_admin_subscription_metabox_display_start_date($subscription) { |
|
273 | + echo getpaid_format_date_value($subscription->get_date_created()); |
|
274 | 274 | } |
275 | -add_action( 'getpaid_subscription_admin_display_start_date', 'getpaid_admin_subscription_metabox_display_start_date' ); |
|
275 | +add_action('getpaid_subscription_admin_display_start_date', 'getpaid_admin_subscription_metabox_display_start_date'); |
|
276 | 276 | |
277 | 277 | /** |
278 | 278 | * Displays the subscription renewal date. |
279 | 279 | * |
280 | 280 | * @param WPInv_Subscription $subscription |
281 | 281 | */ |
282 | -function getpaid_admin_subscription_metabox_display_renews_on( $subscription ) { |
|
283 | - echo getpaid_format_date_value( $subscription->get_expiration() ); |
|
282 | +function getpaid_admin_subscription_metabox_display_renews_on($subscription) { |
|
283 | + echo getpaid_format_date_value($subscription->get_expiration()); |
|
284 | 284 | } |
285 | -add_action( 'getpaid_subscription_admin_display_renews_on', 'getpaid_admin_subscription_metabox_display_renews_on' ); |
|
285 | +add_action('getpaid_subscription_admin_display_renews_on', 'getpaid_admin_subscription_metabox_display_renews_on'); |
|
286 | 286 | |
287 | 287 | /** |
288 | 288 | * Displays the subscription renewal count. |
289 | 289 | * |
290 | 290 | * @param WPInv_Subscription $subscription |
291 | 291 | */ |
292 | -function getpaid_admin_subscription_metabox_display_renewals( $subscription ) { |
|
292 | +function getpaid_admin_subscription_metabox_display_renewals($subscription) { |
|
293 | 293 | $max_bills = $subscription->get_bill_times(); |
294 | - echo $subscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
294 | + echo $subscription->get_times_billed() . ' / ' . (empty($max_bills) ? "∞" : $max_bills); |
|
295 | 295 | } |
296 | -add_action( 'getpaid_subscription_admin_display_renewals', 'getpaid_admin_subscription_metabox_display_renewals' ); |
|
296 | +add_action('getpaid_subscription_admin_display_renewals', 'getpaid_admin_subscription_metabox_display_renewals'); |
|
297 | 297 | /** |
298 | 298 | * Displays the subscription item. |
299 | 299 | * |
300 | 300 | * @param WPInv_Subscription $subscription |
301 | 301 | * @param false|array $subscription_group |
302 | 302 | */ |
303 | -function getpaid_admin_subscription_metabox_display_item( $subscription, $subscription_group = false ) { |
|
303 | +function getpaid_admin_subscription_metabox_display_item($subscription, $subscription_group = false) { |
|
304 | 304 | |
305 | - if ( empty( $subscription_group ) ) { |
|
306 | - echo WPInv_Subscriptions_List_Table::generate_item_markup( $subscription->get_product_id() ); |
|
305 | + if (empty($subscription_group)) { |
|
306 | + echo WPInv_Subscriptions_List_Table::generate_item_markup($subscription->get_product_id()); |
|
307 | 307 | return; |
308 | 308 | } |
309 | 309 | |
310 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
311 | - echo implode( ' | ', $markup ); |
|
310 | + $markup = array_map(array('WPInv_Subscriptions_List_Table', 'generate_item_markup'), array_keys($subscription_group['items'])); |
|
311 | + echo implode(' | ', $markup); |
|
312 | 312 | |
313 | 313 | } |
314 | -add_action( 'getpaid_subscription_admin_display_item', 'getpaid_admin_subscription_metabox_display_item', 10, 2 ); |
|
314 | +add_action('getpaid_subscription_admin_display_item', 'getpaid_admin_subscription_metabox_display_item', 10, 2); |
|
315 | 315 | |
316 | 316 | /** |
317 | 317 | * Displays the subscription gateway. |
318 | 318 | * |
319 | 319 | * @param WPInv_Subscription $subscription |
320 | 320 | */ |
321 | -function getpaid_admin_subscription_metabox_display_gateway( $subscription ) { |
|
321 | +function getpaid_admin_subscription_metabox_display_gateway($subscription) { |
|
322 | 322 | |
323 | 323 | $gateway = $subscription->get_gateway(); |
324 | 324 | |
325 | - if ( ! empty( $gateway ) ) { |
|
326 | - echo sanitize_text_field( wpinv_get_gateway_admin_label( $gateway ) ); |
|
325 | + if (!empty($gateway)) { |
|
326 | + echo sanitize_text_field(wpinv_get_gateway_admin_label($gateway)); |
|
327 | 327 | } else { |
328 | 328 | echo "—"; |
329 | 329 | } |
330 | 330 | |
331 | 331 | } |
332 | -add_action( 'getpaid_subscription_admin_display_gateway', 'getpaid_admin_subscription_metabox_display_gateway' ); |
|
332 | +add_action('getpaid_subscription_admin_display_gateway', 'getpaid_admin_subscription_metabox_display_gateway'); |
|
333 | 333 | |
334 | 334 | /** |
335 | 335 | * Displays the subscription status. |
336 | 336 | * |
337 | 337 | * @param WPInv_Subscription $subscription |
338 | 338 | */ |
339 | -function getpaid_admin_subscription_metabox_display_status( $subscription ) { |
|
339 | +function getpaid_admin_subscription_metabox_display_status($subscription) { |
|
340 | 340 | echo $subscription->get_status_label_html(); |
341 | 341 | } |
342 | -add_action( 'getpaid_subscription_admin_display_status', 'getpaid_admin_subscription_metabox_display_status' ); |
|
342 | +add_action('getpaid_subscription_admin_display_status', 'getpaid_admin_subscription_metabox_display_status'); |
|
343 | 343 | |
344 | 344 | /** |
345 | 345 | * Displays the subscription profile id. |
346 | 346 | * |
347 | 347 | * @param WPInv_Subscription $subscription |
348 | 348 | */ |
349 | -function getpaid_admin_subscription_metabox_display_profile_id( $subscription ) { |
|
349 | +function getpaid_admin_subscription_metabox_display_profile_id($subscription) { |
|
350 | 350 | |
351 | 351 | $profile_id = $subscription->get_profile_id(); |
352 | 352 | |
@@ -355,32 +355,32 @@ discard block |
||
355 | 355 | 'type' => 'text', |
356 | 356 | 'id' => 'wpinv_subscription_profile_id', |
357 | 357 | 'name' => 'wpinv_subscription_profile_id', |
358 | - 'label' => __( 'Profile Id', 'invoicing' ), |
|
358 | + 'label' => __('Profile Id', 'invoicing'), |
|
359 | 359 | 'label_type' => 'hidden', |
360 | - 'placeholder' => __( 'Profile Id', 'invoicing' ), |
|
361 | - 'value' => sanitize_text_field( $profile_id ), |
|
360 | + 'placeholder' => __('Profile Id', 'invoicing'), |
|
361 | + 'value' => sanitize_text_field($profile_id), |
|
362 | 362 | 'input_group_right' => '', |
363 | 363 | 'no_wrap' => true, |
364 | 364 | ) |
365 | 365 | ); |
366 | 366 | |
367 | - echo str_ireplace( 'form-control', 'regular-text', $input ); |
|
367 | + echo str_ireplace('form-control', 'regular-text', $input); |
|
368 | 368 | |
369 | - $url = apply_filters( 'getpaid_remote_subscription_profile_url', '', $subscription ); |
|
370 | - if ( ! empty( $url ) ) { |
|
371 | - $url = esc_url_raw( $url ); |
|
372 | - echo ' <a href="' . $url . '" title="' . __( 'View in Gateway', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
369 | + $url = apply_filters('getpaid_remote_subscription_profile_url', '', $subscription); |
|
370 | + if (!empty($url)) { |
|
371 | + $url = esc_url_raw($url); |
|
372 | + echo ' <a href="' . $url . '" title="' . __('View in Gateway', 'invoicing') . '" target="_blank"><i class="fas fa-external-link-alt fa-xs fa-fw align-top"></i></a>'; |
|
373 | 373 | } |
374 | 374 | |
375 | 375 | } |
376 | -add_action( 'getpaid_subscription_admin_display_profile_id', 'getpaid_admin_subscription_metabox_display_profile_id' ); |
|
376 | +add_action('getpaid_subscription_admin_display_profile_id', 'getpaid_admin_subscription_metabox_display_profile_id'); |
|
377 | 377 | |
378 | 378 | /** |
379 | 379 | * Displays the subscriptions update metabox. |
380 | 380 | * |
381 | 381 | * @param WPInv_Subscription $subscription |
382 | 382 | */ |
383 | -function getpaid_admin_subscription_update_metabox( $subscription ) { |
|
383 | +function getpaid_admin_subscription_update_metabox($subscription) { |
|
384 | 384 | |
385 | 385 | ?> |
386 | 386 | <div class="mt-3"> |
@@ -393,10 +393,10 @@ discard block |
||
393 | 393 | 'id' => 'subscription_status_update_select', |
394 | 394 | 'required' => true, |
395 | 395 | 'no_wrap' => false, |
396 | - 'label' => __( 'Subscription Status', 'invoicing' ), |
|
397 | - 'help_text' => __( 'Updating the status will trigger related actions and hooks', 'invoicing' ), |
|
396 | + 'label' => __('Subscription Status', 'invoicing'), |
|
397 | + 'help_text' => __('Updating the status will trigger related actions and hooks', 'invoicing'), |
|
398 | 398 | 'select2' => true, |
399 | - 'value' => $subscription->get_status( 'edit' ), |
|
399 | + 'value' => $subscription->get_status('edit'), |
|
400 | 400 | ) |
401 | 401 | ); |
402 | 402 | ?> |
@@ -404,13 +404,13 @@ discard block |
||
404 | 404 | <div class="mt-2 px-3 py-2 bg-light border-top" style="margin: -12px;"> |
405 | 405 | |
406 | 406 | <?php |
407 | - submit_button( __( 'Update', 'invoicing' ), 'primary', 'submit', false ); |
|
407 | + submit_button(__('Update', 'invoicing'), 'primary', 'submit', false); |
|
408 | 408 | |
409 | - $url = esc_url( wp_nonce_url( add_query_arg( 'getpaid-admin-action', 'subscription_manual_renew' ), 'getpaid-nonce', 'getpaid-nonce' ) ); |
|
410 | - $anchor = __( 'Renew Subscription', 'invoicing' ); |
|
411 | - $title = esc_attr__( 'Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing' ); |
|
409 | + $url = esc_url(wp_nonce_url(add_query_arg('getpaid-admin-action', 'subscription_manual_renew'), 'getpaid-nonce', 'getpaid-nonce')); |
|
410 | + $anchor = __('Renew Subscription', 'invoicing'); |
|
411 | + $title = esc_attr__('Are you sure you want to extend the subscription and generate a new invoice that will be automatically marked as paid?', 'invoicing'); |
|
412 | 412 | |
413 | - if ( $subscription->is_active() ) { |
|
413 | + if ($subscription->is_active()) { |
|
414 | 414 | echo "<a href='$url' class='float-right text-muted' onclick='return confirm(\"$title\")'>$anchor</a>"; |
415 | 415 | } |
416 | 416 | |
@@ -423,31 +423,31 @@ discard block |
||
423 | 423 | * @param WPInv_Subscription $subscription |
424 | 424 | * @param bool $strict Whether or not to skip invoices of sibling subscriptions |
425 | 425 | */ |
426 | -function getpaid_admin_subscription_invoice_details_metabox( $subscription, $strict = true ) { |
|
426 | +function getpaid_admin_subscription_invoice_details_metabox($subscription, $strict = true) { |
|
427 | 427 | |
428 | 428 | $columns = apply_filters( |
429 | 429 | 'getpaid_subscription_related_invoices_columns', |
430 | 430 | array( |
431 | - 'invoice' => __( 'Invoice', 'invoicing' ), |
|
432 | - 'relationship' => __( 'Relationship', 'invoicing' ), |
|
433 | - 'date' => __( 'Date', 'invoicing' ), |
|
434 | - 'status' => __( 'Status', 'invoicing' ), |
|
435 | - 'total' => __( 'Total', 'invoicing' ), |
|
431 | + 'invoice' => __('Invoice', 'invoicing'), |
|
432 | + 'relationship' => __('Relationship', 'invoicing'), |
|
433 | + 'date' => __('Date', 'invoicing'), |
|
434 | + 'status' => __('Status', 'invoicing'), |
|
435 | + 'total' => __('Total', 'invoicing'), |
|
436 | 436 | ), |
437 | 437 | $subscription |
438 | 438 | ); |
439 | 439 | |
440 | 440 | // Prepare the invoices. |
441 | - $payments = $subscription->get_child_payments( ! is_admin() ); |
|
441 | + $payments = $subscription->get_child_payments(!is_admin()); |
|
442 | 442 | $parent = $subscription->get_parent_invoice(); |
443 | 443 | |
444 | - if ( $parent->exists() ) { |
|
445 | - $payments = array_merge( array( $parent ), $payments ); |
|
444 | + if ($parent->exists()) { |
|
445 | + $payments = array_merge(array($parent), $payments); |
|
446 | 446 | } |
447 | 447 | |
448 | 448 | $table_class = 'w-100 bg-white'; |
449 | 449 | |
450 | - if ( ! is_admin() ) { |
|
450 | + if (!is_admin()) { |
|
451 | 451 | $table_class = 'table table-bordered'; |
452 | 452 | } |
453 | 453 | |
@@ -459,9 +459,9 @@ discard block |
||
459 | 459 | <thead> |
460 | 460 | <tr> |
461 | 461 | <?php |
462 | - foreach ( $columns as $key => $label ) { |
|
463 | - $key = esc_attr( $key ); |
|
464 | - $label = sanitize_text_field( $label ); |
|
462 | + foreach ($columns as $key => $label) { |
|
463 | + $key = esc_attr($key); |
|
464 | + $label = sanitize_text_field($label); |
|
465 | 465 | $class = 'text-left'; |
466 | 466 | |
467 | 467 | echo "<th class='subscription-invoice-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
@@ -472,57 +472,57 @@ discard block |
||
472 | 472 | |
473 | 473 | <tbody> |
474 | 474 | |
475 | - <?php if ( empty( $payments ) ) : ?> |
|
475 | + <?php if (empty($payments)) : ?> |
|
476 | 476 | <tr> |
477 | 477 | <td colspan="<?php echo count($columns); ?>" class="p-2 text-left text-muted"> |
478 | - <?php _e( 'This subscription has no invoices.', 'invoicing' ); ?> |
|
478 | + <?php _e('This subscription has no invoices.', 'invoicing'); ?> |
|
479 | 479 | </td> |
480 | 480 | </tr> |
481 | 481 | <?php endif; ?> |
482 | 482 | |
483 | 483 | <?php |
484 | 484 | |
485 | - foreach( $payments as $payment ) : |
|
485 | + foreach ($payments as $payment) : |
|
486 | 486 | |
487 | 487 | // Ensure that we have an invoice. |
488 | - $payment = new WPInv_Invoice( $payment ); |
|
488 | + $payment = new WPInv_Invoice($payment); |
|
489 | 489 | |
490 | 490 | // Abort if the invoice is invalid... |
491 | - if ( ! $payment->exists() ) { |
|
491 | + if (!$payment->exists()) { |
|
492 | 492 | continue; |
493 | 493 | } |
494 | 494 | |
495 | 495 | // ... or belongs to a different subscription. |
496 | - if ( $strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id() ) { |
|
496 | + if ($strict && $payment->is_renewal() && $payment->get_subscription_id() && $payment->get_subscription_id() != $subscription->get_id()) { |
|
497 | 497 | continue; |
498 | 498 | } |
499 | 499 | |
500 | 500 | echo '<tr>'; |
501 | 501 | |
502 | - foreach ( array_keys( $columns ) as $key ) { |
|
502 | + foreach (array_keys($columns) as $key) { |
|
503 | 503 | |
504 | 504 | $class = 'text-left'; |
505 | 505 | |
506 | 506 | echo "<td class='p-2 $class'>"; |
507 | 507 | |
508 | - switch( $key ) { |
|
508 | + switch ($key) { |
|
509 | 509 | |
510 | 510 | case 'total': |
511 | - echo '<strong>' . wpinv_price( $payment->get_total(), $payment->get_currency() ) . '</strong>'; |
|
511 | + echo '<strong>' . wpinv_price($payment->get_total(), $payment->get_currency()) . '</strong>'; |
|
512 | 512 | break; |
513 | 513 | |
514 | 514 | case 'relationship': |
515 | - echo $payment->is_renewal() ? __( 'Renewal Invoice', 'invoicing' ) : __( 'Initial Invoice', 'invoicing' ); |
|
515 | + echo $payment->is_renewal() ? __('Renewal Invoice', 'invoicing') : __('Initial Invoice', 'invoicing'); |
|
516 | 516 | break; |
517 | 517 | |
518 | 518 | case 'date': |
519 | - echo getpaid_format_date_value( $payment->get_date_created() ); |
|
519 | + echo getpaid_format_date_value($payment->get_date_created()); |
|
520 | 520 | break; |
521 | 521 | |
522 | 522 | case 'status': |
523 | 523 | |
524 | 524 | $status = $payment->get_status_nicename(); |
525 | - if ( is_admin() ) { |
|
525 | + if (is_admin()) { |
|
526 | 526 | $status = $payment->get_status_label_html(); |
527 | 527 | } |
528 | 528 | |
@@ -530,13 +530,13 @@ discard block |
||
530 | 530 | break; |
531 | 531 | |
532 | 532 | case 'invoice': |
533 | - $link = esc_url( get_edit_post_link( $payment->get_id() ) ); |
|
533 | + $link = esc_url(get_edit_post_link($payment->get_id())); |
|
534 | 534 | |
535 | - if ( ! is_admin() ) { |
|
536 | - $link = esc_url( $payment->get_view_url() ); |
|
535 | + if (!is_admin()) { |
|
536 | + $link = esc_url($payment->get_view_url()); |
|
537 | 537 | } |
538 | 538 | |
539 | - $invoice = sanitize_text_field( $payment->get_number() ); |
|
539 | + $invoice = sanitize_text_field($payment->get_number()); |
|
540 | 540 | echo "<a href='$link'>$invoice</a>"; |
541 | 541 | break; |
542 | 542 | } |
@@ -564,12 +564,12 @@ discard block |
||
564 | 564 | * |
565 | 565 | * @param WPInv_Subscription $subscription |
566 | 566 | */ |
567 | -function getpaid_admin_subscription_item_details_metabox( $subscription ) { |
|
567 | +function getpaid_admin_subscription_item_details_metabox($subscription) { |
|
568 | 568 | |
569 | 569 | // Fetch the subscription group. |
570 | - $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_payment_id(), $subscription->get_id() ); |
|
570 | + $subscription_group = getpaid_get_invoice_subscription_group($subscription->get_parent_payment_id(), $subscription->get_id()); |
|
571 | 571 | |
572 | - if ( empty( $subscription_group ) || empty( $subscription_group['items'] ) ) { |
|
572 | + if (empty($subscription_group) || empty($subscription_group['items'])) { |
|
573 | 573 | return; |
574 | 574 | } |
575 | 575 | |
@@ -577,12 +577,12 @@ discard block |
||
577 | 577 | $columns = apply_filters( |
578 | 578 | 'getpaid_subscription_item_details_columns', |
579 | 579 | array( |
580 | - 'item_name' => __( 'Item', 'invoicing' ), |
|
581 | - 'price' => __( 'Price', 'invoicing' ), |
|
582 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
583 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
584 | - 'initial' => __( 'Initial Amount', 'invoicing' ), |
|
585 | - 'recurring' => __( 'Recurring Amount', 'invoicing' ), |
|
580 | + 'item_name' => __('Item', 'invoicing'), |
|
581 | + 'price' => __('Price', 'invoicing'), |
|
582 | + 'tax' => __('Tax', 'invoicing'), |
|
583 | + 'discount' => __('Discount', 'invoicing'), |
|
584 | + 'initial' => __('Initial Amount', 'invoicing'), |
|
585 | + 'recurring' => __('Recurring Amount', 'invoicing'), |
|
586 | 586 | ), |
587 | 587 | $subscription |
588 | 588 | ); |
@@ -591,13 +591,13 @@ discard block |
||
591 | 591 | |
592 | 592 | $invoice = $subscription->get_parent_invoice(); |
593 | 593 | |
594 | - if ( ( ! wpinv_use_taxes() || ! $invoice->is_taxable() ) && isset( $columns['tax'] ) ) { |
|
595 | - unset( $columns['tax'] ); |
|
594 | + if ((!wpinv_use_taxes() || !$invoice->is_taxable()) && isset($columns['tax'])) { |
|
595 | + unset($columns['tax']); |
|
596 | 596 | } |
597 | 597 | |
598 | 598 | $table_class = 'w-100 bg-white'; |
599 | 599 | |
600 | - if ( ! is_admin() ) { |
|
600 | + if (!is_admin()) { |
|
601 | 601 | $table_class = 'table table-bordered'; |
602 | 602 | } |
603 | 603 | |
@@ -610,9 +610,9 @@ discard block |
||
610 | 610 | <tr> |
611 | 611 | <?php |
612 | 612 | |
613 | - foreach ( $columns as $key => $label ) { |
|
614 | - $key = esc_attr( $key ); |
|
615 | - $label = sanitize_text_field( $label ); |
|
613 | + foreach ($columns as $key => $label) { |
|
614 | + $key = esc_attr($key); |
|
615 | + $label = sanitize_text_field($label); |
|
616 | 616 | $class = 'text-left'; |
617 | 617 | |
618 | 618 | echo "<th class='subscription-item-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
@@ -625,48 +625,48 @@ discard block |
||
625 | 625 | |
626 | 626 | <?php |
627 | 627 | |
628 | - foreach( $subscription_group['items'] as $subscription_group_item ) : |
|
628 | + foreach ($subscription_group['items'] as $subscription_group_item) : |
|
629 | 629 | |
630 | 630 | echo '<tr>'; |
631 | 631 | |
632 | - foreach ( array_keys( $columns ) as $key ) { |
|
632 | + foreach (array_keys($columns) as $key) { |
|
633 | 633 | |
634 | 634 | $class = 'text-left'; |
635 | 635 | |
636 | 636 | echo "<td class='p-2 $class'>"; |
637 | 637 | |
638 | - switch( $key ) { |
|
638 | + switch ($key) { |
|
639 | 639 | |
640 | 640 | case 'item_name': |
641 | - $item_name = get_the_title( $subscription_group_item['item_id'] ); |
|
642 | - $item_name = empty( $item_name ) ? $subscription_group_item['item_name'] : $item_name; |
|
641 | + $item_name = get_the_title($subscription_group_item['item_id']); |
|
642 | + $item_name = empty($item_name) ? $subscription_group_item['item_name'] : $item_name; |
|
643 | 643 | |
644 | - if ( $invoice->get_template() == 'amount' || 1 === (int) $subscription_group_item['quantity'] ) { |
|
645 | - echo sanitize_text_field( $item_name ); |
|
644 | + if ($invoice->get_template() == 'amount' || 1 === (int) $subscription_group_item['quantity']) { |
|
645 | + echo sanitize_text_field($item_name); |
|
646 | 646 | } else { |
647 | - printf( '%1$s x %2$d', sanitize_text_field( $item_name ), (int) $subscription_group_item['quantity'] ); |
|
647 | + printf('%1$s x %2$d', sanitize_text_field($item_name), (int) $subscription_group_item['quantity']); |
|
648 | 648 | } |
649 | 649 | |
650 | 650 | break; |
651 | 651 | |
652 | 652 | case 'price': |
653 | - echo wpinv_price( $subscription_group_item['price'], $invoice->get_currency() ); |
|
653 | + echo wpinv_price($subscription_group_item['price'], $invoice->get_currency()); |
|
654 | 654 | break; |
655 | 655 | |
656 | 656 | case 'tax': |
657 | - echo wpinv_price( $subscription_group_item['tax'], $invoice->get_currency() ); |
|
657 | + echo wpinv_price($subscription_group_item['tax'], $invoice->get_currency()); |
|
658 | 658 | break; |
659 | 659 | |
660 | 660 | case 'discount': |
661 | - echo wpinv_price( $subscription_group_item['discount'], $invoice->get_currency() ); |
|
661 | + echo wpinv_price($subscription_group_item['discount'], $invoice->get_currency()); |
|
662 | 662 | break; |
663 | 663 | |
664 | 664 | case 'initial': |
665 | - echo wpinv_price( $subscription_group_item['subtotal'], $invoice->get_currency() ); |
|
665 | + echo wpinv_price($subscription_group_item['subtotal'], $invoice->get_currency()); |
|
666 | 666 | break; |
667 | 667 | |
668 | 668 | case 'recurring': |
669 | - echo '<strong>' . wpinv_price( $subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency() ) . '</strong>'; |
|
669 | + echo '<strong>' . wpinv_price($subscription_group_item['price'] * $subscription_group_item['quantity'], $invoice->get_currency()) . '</strong>'; |
|
670 | 670 | break; |
671 | 671 | |
672 | 672 | } |
@@ -679,24 +679,24 @@ discard block |
||
679 | 679 | |
680 | 680 | endforeach; |
681 | 681 | |
682 | - foreach( $subscription_group['fees'] as $subscription_group_fee ) : |
|
682 | + foreach ($subscription_group['fees'] as $subscription_group_fee) : |
|
683 | 683 | |
684 | 684 | echo '<tr>'; |
685 | 685 | |
686 | - foreach ( array_keys( $columns ) as $key ) { |
|
686 | + foreach (array_keys($columns) as $key) { |
|
687 | 687 | |
688 | 688 | $class = 'text-left'; |
689 | 689 | |
690 | 690 | echo "<td class='p-2 $class'>"; |
691 | 691 | |
692 | - switch( $key ) { |
|
692 | + switch ($key) { |
|
693 | 693 | |
694 | 694 | case 'item_name': |
695 | - echo sanitize_text_field( $subscription_group_fee['name'] ); |
|
695 | + echo sanitize_text_field($subscription_group_fee['name']); |
|
696 | 696 | break; |
697 | 697 | |
698 | 698 | case 'price': |
699 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
699 | + echo wpinv_price($subscription_group_fee['initial_fee'], $invoice->get_currency()); |
|
700 | 700 | break; |
701 | 701 | |
702 | 702 | case 'tax': |
@@ -708,11 +708,11 @@ discard block |
||
708 | 708 | break; |
709 | 709 | |
710 | 710 | case 'initial': |
711 | - echo wpinv_price( $subscription_group_fee['initial_fee'], $invoice->get_currency() ); |
|
711 | + echo wpinv_price($subscription_group_fee['initial_fee'], $invoice->get_currency()); |
|
712 | 712 | break; |
713 | 713 | |
714 | 714 | case 'recurring': |
715 | - echo '<strong>' . wpinv_price( $subscription_group_fee['recurring_fee'], $invoice->get_currency() ) . '</strong>'; |
|
715 | + echo '<strong>' . wpinv_price($subscription_group_fee['recurring_fee'], $invoice->get_currency()) . '</strong>'; |
|
716 | 716 | break; |
717 | 717 | |
718 | 718 | } |
@@ -741,12 +741,12 @@ discard block |
||
741 | 741 | * @param WPInv_Subscription $subscription |
742 | 742 | * @param bool $skip_current |
743 | 743 | */ |
744 | -function getpaid_admin_subscription_related_subscriptions_metabox( $subscription, $skip_current = true ) { |
|
744 | +function getpaid_admin_subscription_related_subscriptions_metabox($subscription, $skip_current = true) { |
|
745 | 745 | |
746 | 746 | // Fetch the subscription groups. |
747 | - $subscription_groups = getpaid_get_invoice_subscription_groups( $subscription->get_parent_payment_id() ); |
|
747 | + $subscription_groups = getpaid_get_invoice_subscription_groups($subscription->get_parent_payment_id()); |
|
748 | 748 | |
749 | - if ( empty( $subscription_groups ) ) { |
|
749 | + if (empty($subscription_groups)) { |
|
750 | 750 | return; |
751 | 751 | } |
752 | 752 | |
@@ -754,19 +754,19 @@ discard block |
||
754 | 754 | $columns = apply_filters( |
755 | 755 | 'getpaid_subscription_related_subscriptions_columns', |
756 | 756 | array( |
757 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
758 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
759 | - 'renewal_date' => __( 'Next Payment', 'invoicing' ), |
|
760 | - 'renewals' => __( 'Payments', 'invoicing' ), |
|
761 | - 'item' => __( 'Items', 'invoicing' ), |
|
762 | - 'status' => __( 'Status', 'invoicing' ), |
|
757 | + 'subscription' => __('Subscription', 'invoicing'), |
|
758 | + 'start_date' => __('Start Date', 'invoicing'), |
|
759 | + 'renewal_date' => __('Next Payment', 'invoicing'), |
|
760 | + 'renewals' => __('Payments', 'invoicing'), |
|
761 | + 'item' => __('Items', 'invoicing'), |
|
762 | + 'status' => __('Status', 'invoicing'), |
|
763 | 763 | ), |
764 | 764 | $subscription |
765 | 765 | ); |
766 | 766 | |
767 | 767 | $table_class = 'w-100 bg-white'; |
768 | 768 | |
769 | - if ( ! is_admin() ) { |
|
769 | + if (!is_admin()) { |
|
770 | 770 | $table_class = 'table table-bordered'; |
771 | 771 | } |
772 | 772 | |
@@ -779,9 +779,9 @@ discard block |
||
779 | 779 | <tr> |
780 | 780 | <?php |
781 | 781 | |
782 | - foreach ( $columns as $key => $label ) { |
|
783 | - $key = esc_attr( $key ); |
|
784 | - $label = sanitize_text_field( $label ); |
|
782 | + foreach ($columns as $key => $label) { |
|
783 | + $key = esc_attr($key); |
|
784 | + $label = sanitize_text_field($label); |
|
785 | 785 | $class = 'text-left'; |
786 | 786 | |
787 | 787 | echo "<th class='related-subscription-field-$key bg-light p-2 $class color-dark font-weight-bold'>$label</th>"; |
@@ -794,62 +794,62 @@ discard block |
||
794 | 794 | |
795 | 795 | <?php |
796 | 796 | |
797 | - foreach( $subscription_groups as $subscription_group ) : |
|
797 | + foreach ($subscription_groups as $subscription_group) : |
|
798 | 798 | |
799 | 799 | // Do not list current subscription. |
800 | - if ( $skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id() ) { |
|
800 | + if ($skip_current && (int) $subscription_group['subscription_id'] === $subscription->get_id()) { |
|
801 | 801 | continue; |
802 | 802 | } |
803 | 803 | |
804 | 804 | // Ensure the subscription exists. |
805 | - $_suscription = new WPInv_Subscription( $subscription_group['subscription_id'] ); |
|
805 | + $_suscription = new WPInv_Subscription($subscription_group['subscription_id']); |
|
806 | 806 | |
807 | - if ( ! $_suscription->exists() ) { |
|
807 | + if (!$_suscription->exists()) { |
|
808 | 808 | continue; |
809 | 809 | } |
810 | 810 | |
811 | 811 | echo '<tr>'; |
812 | 812 | |
813 | - foreach ( array_keys( $columns ) as $key ) { |
|
813 | + foreach (array_keys($columns) as $key) { |
|
814 | 814 | |
815 | 815 | $class = 'text-left'; |
816 | 816 | |
817 | 817 | echo "<td class='p-2 $class'>"; |
818 | 818 | |
819 | - switch( $key ) { |
|
819 | + switch ($key) { |
|
820 | 820 | |
821 | 821 | case 'status': |
822 | 822 | echo $_suscription->get_status_label_html(); |
823 | 823 | break; |
824 | 824 | |
825 | 825 | case 'item': |
826 | - $markup = array_map( array( 'WPInv_Subscriptions_List_Table', 'generate_item_markup' ), array_keys( $subscription_group['items'] ) ); |
|
827 | - echo implode( ' | ', $markup ); |
|
826 | + $markup = array_map(array('WPInv_Subscriptions_List_Table', 'generate_item_markup'), array_keys($subscription_group['items'])); |
|
827 | + echo implode(' | ', $markup); |
|
828 | 828 | break; |
829 | 829 | |
830 | 830 | case 'renewals': |
831 | 831 | $max_bills = $_suscription->get_bill_times(); |
832 | - echo $_suscription->get_times_billed() . ' / ' . ( empty( $max_bills ) ? "∞" : $max_bills ); |
|
832 | + echo $_suscription->get_times_billed() . ' / ' . (empty($max_bills) ? "∞" : $max_bills); |
|
833 | 833 | break; |
834 | 834 | |
835 | 835 | case 'renewal_date': |
836 | - echo $_suscription->is_active() ? getpaid_format_date_value( $_suscription->get_expiration() ) : "—"; |
|
836 | + echo $_suscription->is_active() ? getpaid_format_date_value($_suscription->get_expiration()) : "—"; |
|
837 | 837 | break; |
838 | 838 | |
839 | 839 | case 'start_date': |
840 | - echo getpaid_format_date_value( $_suscription->get_date_created() ); |
|
840 | + echo getpaid_format_date_value($_suscription->get_date_created()); |
|
841 | 841 | break; |
842 | 842 | |
843 | 843 | case 'subscription': |
844 | - $url = is_admin() ? admin_url( 'admin.php?page=wpinv-subscriptions&id=' . absint( $_suscription->get_id() ) ) : $_suscription->get_view_url(); |
|
844 | + $url = is_admin() ? admin_url('admin.php?page=wpinv-subscriptions&id=' . absint($_suscription->get_id())) : $_suscription->get_view_url(); |
|
845 | 845 | printf( |
846 | 846 | '%1$s#%2$s%3$s', |
847 | - '<a href="' . esc_url( $url ) . '">', |
|
848 | - '<strong>' . intval( $_suscription->get_id() ) . '</strong>', |
|
847 | + '<a href="' . esc_url($url) . '">', |
|
848 | + '<strong>' . intval($_suscription->get_id()) . '</strong>', |
|
849 | 849 | '</a>' |
850 | 850 | ); |
851 | 851 | |
852 | - echo WPInv_Subscriptions_List_Table::column_amount( $_suscription ); |
|
852 | + echo WPInv_Subscriptions_List_Table::column_amount($_suscription); |
|
853 | 853 | break; |
854 | 854 | |
855 | 855 | } |
@@ -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 | * WPInv_Ajax class. |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | * Hook in ajax handlers. |
18 | 18 | */ |
19 | 19 | public static function init() { |
20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
20 | + add_action('init', array(__CLASS__, 'define_ajax'), 0); |
|
21 | + add_action('template_redirect', array(__CLASS__, 'do_wpinv_ajax'), 0); |
|
22 | 22 | self::add_ajax_events(); |
23 | 23 | } |
24 | 24 | |
@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function define_ajax() { |
29 | 29 | |
30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
30 | + if (!empty($_GET['wpinv-ajax'])) { |
|
31 | + getpaid_maybe_define_constant('DOING_AJAX', true); |
|
32 | + getpaid_maybe_define_constant('WPInv_DOING_AJAX', true); |
|
33 | + if (!WP_DEBUG || (WP_DEBUG && !WP_DEBUG_DISPLAY)) { |
|
34 | + /** @scrutinizer ignore-unhandled */ @ini_set('display_errors', 0); |
|
35 | 35 | } |
36 | 36 | $GLOBALS['wpdb']->hide_errors(); |
37 | 37 | } |
@@ -44,13 +44,13 @@ discard block |
||
44 | 44 | * @since 1.0.18 |
45 | 45 | */ |
46 | 46 | private static function wpinv_ajax_headers() { |
47 | - if ( ! headers_sent() ) { |
|
47 | + if (!headers_sent()) { |
|
48 | 48 | send_origin_headers(); |
49 | 49 | send_nosniff_header(); |
50 | 50 | nocache_headers(); |
51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | - header( 'X-Robots-Tag: noindex' ); |
|
53 | - status_header( 200 ); |
|
51 | + header('Content-Type: text/html; charset=' . get_option('blog_charset')); |
|
52 | + header('X-Robots-Tag: noindex'); |
|
53 | + status_header(200); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
@@ -60,16 +60,16 @@ discard block |
||
60 | 60 | public static function do_wpinv_ajax() { |
61 | 61 | global $wp_query; |
62 | 62 | |
63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
63 | + if (!empty($_GET['wpinv-ajax'])) { |
|
64 | + $wp_query->set('wpinv-ajax', sanitize_text_field(wp_unslash($_GET['wpinv-ajax']))); |
|
65 | 65 | } |
66 | 66 | |
67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
67 | + $action = $wp_query->get('wpinv-ajax'); |
|
68 | 68 | |
69 | - if ( $action ) { |
|
69 | + if ($action) { |
|
70 | 70 | self::wpinv_ajax_headers(); |
71 | - $action = sanitize_text_field( $action ); |
|
72 | - do_action( 'wpinv_ajax_' . $action ); |
|
71 | + $action = sanitize_text_field($action); |
|
72 | + do_action('wpinv_ajax_' . $action); |
|
73 | 73 | wp_die(); |
74 | 74 | } |
75 | 75 | |
@@ -102,36 +102,36 @@ discard block |
||
102 | 102 | 'payment_form_refresh_prices' => true, |
103 | 103 | ); |
104 | 104 | |
105 | - foreach ( $ajax_events as $ajax_event => $nopriv ) { |
|
106 | - add_action( 'wp_ajax_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
107 | - add_action( 'wp_ajax_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
105 | + foreach ($ajax_events as $ajax_event => $nopriv) { |
|
106 | + add_action('wp_ajax_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
107 | + add_action('wp_ajax_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
108 | 108 | |
109 | - if ( $nopriv ) { |
|
110 | - add_action( 'wp_ajax_nopriv_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
111 | - add_action( 'wp_ajax_nopriv_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
112 | - add_action( 'wpinv_ajax_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
109 | + if ($nopriv) { |
|
110 | + add_action('wp_ajax_nopriv_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
111 | + add_action('wp_ajax_nopriv_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
112 | + add_action('wpinv_ajax_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
113 | 113 | } |
114 | 114 | } |
115 | 115 | } |
116 | 116 | |
117 | 117 | public static function add_note() { |
118 | - check_ajax_referer( 'add-invoice-note', '_nonce' ); |
|
118 | + check_ajax_referer('add-invoice-note', '_nonce'); |
|
119 | 119 | |
120 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
120 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
121 | 121 | die(-1); |
122 | 122 | } |
123 | 123 | |
124 | - $post_id = absint( $_POST['post_id'] ); |
|
125 | - $note = wp_kses_post( trim( stripslashes( $_POST['note'] ) ) ); |
|
126 | - $note_type = sanitize_text_field( $_POST['note_type'] ); |
|
124 | + $post_id = absint($_POST['post_id']); |
|
125 | + $note = wp_kses_post(trim(stripslashes($_POST['note']))); |
|
126 | + $note_type = sanitize_text_field($_POST['note_type']); |
|
127 | 127 | |
128 | 128 | $is_customer_note = $note_type == 'customer' ? 1 : 0; |
129 | 129 | |
130 | - if ( $post_id > 0 ) { |
|
131 | - $note_id = wpinv_insert_payment_note( $post_id, $note, $is_customer_note ); |
|
130 | + if ($post_id > 0) { |
|
131 | + $note_id = wpinv_insert_payment_note($post_id, $note, $is_customer_note); |
|
132 | 132 | |
133 | - if ( $note_id > 0 && !is_wp_error( $note_id ) ) { |
|
134 | - wpinv_get_invoice_note_line_item( $note_id ); |
|
133 | + if ($note_id > 0 && !is_wp_error($note_id)) { |
|
134 | + wpinv_get_invoice_note_line_item($note_id); |
|
135 | 135 | } |
136 | 136 | } |
137 | 137 | |
@@ -139,16 +139,16 @@ discard block |
||
139 | 139 | } |
140 | 140 | |
141 | 141 | public static function delete_note() { |
142 | - check_ajax_referer( 'delete-invoice-note', '_nonce' ); |
|
142 | + check_ajax_referer('delete-invoice-note', '_nonce'); |
|
143 | 143 | |
144 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
144 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
145 | 145 | die(-1); |
146 | 146 | } |
147 | 147 | |
148 | - $note_id = (int)$_POST['note_id']; |
|
148 | + $note_id = (int) $_POST['note_id']; |
|
149 | 149 | |
150 | - if ( $note_id > 0 ) { |
|
151 | - wp_delete_comment( $note_id, true ); |
|
150 | + if ($note_id > 0) { |
|
151 | + wp_delete_comment($note_id, true); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | die(); |
@@ -166,34 +166,34 @@ discard block |
||
166 | 166 | public static function get_billing_details() { |
167 | 167 | |
168 | 168 | // Verify nonce. |
169 | - check_ajax_referer( 'wpinv-nonce' ); |
|
169 | + check_ajax_referer('wpinv-nonce'); |
|
170 | 170 | |
171 | 171 | // Can the user manage the plugin? |
172 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
172 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
173 | 173 | die(-1); |
174 | 174 | } |
175 | 175 | |
176 | 176 | // Do we have a user id? |
177 | 177 | $user_id = $_GET['user_id']; |
178 | 178 | |
179 | - if ( empty( $user_id ) || ! is_numeric( $user_id ) ) { |
|
179 | + if (empty($user_id) || !is_numeric($user_id)) { |
|
180 | 180 | die(-1); |
181 | 181 | } |
182 | 182 | |
183 | 183 | // Fetch the billing details. |
184 | - $billing_details = wpinv_get_user_address( $user_id ); |
|
185 | - $billing_details = apply_filters( 'wpinv_ajax_billing_details', $billing_details, $user_id ); |
|
184 | + $billing_details = wpinv_get_user_address($user_id); |
|
185 | + $billing_details = apply_filters('wpinv_ajax_billing_details', $billing_details, $user_id); |
|
186 | 186 | |
187 | 187 | // unset the user id and email. |
188 | - $to_ignore = array( 'user_id', 'email' ); |
|
188 | + $to_ignore = array('user_id', 'email'); |
|
189 | 189 | |
190 | - foreach ( $to_ignore as $key ) { |
|
191 | - if ( isset( $billing_details[ $key ] ) ) { |
|
192 | - unset( $billing_details[ $key ] ); |
|
190 | + foreach ($to_ignore as $key) { |
|
191 | + if (isset($billing_details[$key])) { |
|
192 | + unset($billing_details[$key]); |
|
193 | 193 | } |
194 | 194 | } |
195 | 195 | |
196 | - wp_send_json_success( $billing_details ); |
|
196 | + wp_send_json_success($billing_details); |
|
197 | 197 | |
198 | 198 | } |
199 | 199 | |
@@ -203,47 +203,47 @@ discard block |
||
203 | 203 | public static function check_new_user_email() { |
204 | 204 | |
205 | 205 | // Verify nonce. |
206 | - check_ajax_referer( 'wpinv-nonce' ); |
|
206 | + check_ajax_referer('wpinv-nonce'); |
|
207 | 207 | |
208 | 208 | // Can the user manage the plugin? |
209 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
209 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
210 | 210 | die(-1); |
211 | 211 | } |
212 | 212 | |
213 | 213 | // We need an email address. |
214 | - if ( empty( $_GET['email'] ) ) { |
|
215 | - _e( "Provide the new user's email address", 'invoicing' ); |
|
214 | + if (empty($_GET['email'])) { |
|
215 | + _e("Provide the new user's email address", 'invoicing'); |
|
216 | 216 | exit; |
217 | 217 | } |
218 | 218 | |
219 | 219 | // Ensure the email is valid. |
220 | - $email = sanitize_text_field( $_GET['email'] ); |
|
221 | - if ( ! is_email( $email ) ) { |
|
222 | - _e( 'Invalid email address', 'invoicing' ); |
|
220 | + $email = sanitize_text_field($_GET['email']); |
|
221 | + if (!is_email($email)) { |
|
222 | + _e('Invalid email address', 'invoicing'); |
|
223 | 223 | exit; |
224 | 224 | } |
225 | 225 | |
226 | 226 | // And it does not exist. |
227 | - if ( email_exists( $email ) ) { |
|
228 | - _e( 'A user with this email address already exists', 'invoicing' ); |
|
227 | + if (email_exists($email)) { |
|
228 | + _e('A user with this email address already exists', 'invoicing'); |
|
229 | 229 | exit; |
230 | 230 | } |
231 | 231 | |
232 | - wp_send_json_success( true ); |
|
232 | + wp_send_json_success(true); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | public static function run_tool() { |
236 | - check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
|
237 | - if ( !wpinv_current_user_can_manage_invoicing() ) { |
|
236 | + check_ajax_referer('wpinv-nonce', '_nonce'); |
|
237 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
238 | 238 | die(-1); |
239 | 239 | } |
240 | 240 | |
241 | - $tool = sanitize_text_field( $_POST['tool'] ); |
|
241 | + $tool = sanitize_text_field($_POST['tool']); |
|
242 | 242 | |
243 | - do_action( 'wpinv_run_tool' ); |
|
243 | + do_action('wpinv_run_tool'); |
|
244 | 244 | |
245 | - if ( !empty( $tool ) ) { |
|
246 | - do_action( 'wpinv_tool_' . $tool ); |
|
245 | + if (!empty($tool)) { |
|
246 | + do_action('wpinv_tool_' . $tool); |
|
247 | 247 | } |
248 | 248 | } |
249 | 249 | |
@@ -253,27 +253,27 @@ discard block |
||
253 | 253 | public static function get_payment_form() { |
254 | 254 | |
255 | 255 | // Check nonce. |
256 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
256 | + check_ajax_referer('getpaid_form_nonce'); |
|
257 | 257 | |
258 | 258 | // Is the request set up correctly? |
259 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
259 | + if (empty($_GET['form']) && empty($_GET['item'])) { |
|
260 | 260 | echo aui()->alert( |
261 | 261 | array( |
262 | 262 | 'type' => 'warning', |
263 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
263 | + 'content' => __('No payment form or item provided', 'invoicing'), |
|
264 | 264 | ) |
265 | 265 | ); |
266 | 266 | exit; |
267 | 267 | } |
268 | 268 | |
269 | 269 | // Payment form or button? |
270 | - if ( ! empty( $_GET['form'] ) ) { |
|
271 | - getpaid_display_payment_form( urldecode( $_GET['form'] ) ); |
|
272 | - } else if( ! empty( $_GET['invoice'] ) ) { |
|
273 | - getpaid_display_invoice_payment_form( urldecode( $_GET['invoice'] ) ); |
|
270 | + if (!empty($_GET['form'])) { |
|
271 | + getpaid_display_payment_form(urldecode($_GET['form'])); |
|
272 | + } else if (!empty($_GET['invoice'])) { |
|
273 | + getpaid_display_invoice_payment_form(urldecode($_GET['invoice'])); |
|
274 | 274 | } else { |
275 | - $items = getpaid_convert_items_to_array( urldecode( $_GET['item'] ) ); |
|
276 | - getpaid_display_item_payment_form( $items ); |
|
275 | + $items = getpaid_convert_items_to_array(urldecode($_GET['item'])); |
|
276 | + getpaid_display_item_payment_form($items); |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | exit; |
@@ -288,17 +288,17 @@ discard block |
||
288 | 288 | public static function payment_form() { |
289 | 289 | |
290 | 290 | // Check nonce. |
291 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
291 | + check_ajax_referer('getpaid_form_nonce'); |
|
292 | 292 | |
293 | 293 | // ... form fields... |
294 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
295 | - _e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
294 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
295 | + _e('Error: Reload the page and try again.', 'invoicing'); |
|
296 | 296 | exit; |
297 | 297 | } |
298 | 298 | |
299 | 299 | // Process the payment form. |
300 | - $checkout_class = apply_filters( 'getpaid_checkout_class', 'GetPaid_Checkout' ); |
|
301 | - $checkout = new $checkout_class( new GetPaid_Payment_Form_Submission() ); |
|
300 | + $checkout_class = apply_filters('getpaid_checkout_class', 'GetPaid_Checkout'); |
|
301 | + $checkout = new $checkout_class(new GetPaid_Payment_Form_Submission()); |
|
302 | 302 | $checkout->process_checkout(); |
303 | 303 | |
304 | 304 | exit; |
@@ -311,55 +311,55 @@ discard block |
||
311 | 311 | */ |
312 | 312 | public static function get_payment_form_states_field() { |
313 | 313 | |
314 | - if ( empty( $_GET['country'] ) || empty( $_GET['form'] ) ) { |
|
314 | + if (empty($_GET['country']) || empty($_GET['form'])) { |
|
315 | 315 | exit; |
316 | 316 | } |
317 | 317 | |
318 | - $elements = getpaid_get_payment_form_elements( $_GET['form'] ); |
|
318 | + $elements = getpaid_get_payment_form_elements($_GET['form']); |
|
319 | 319 | |
320 | - if ( empty( $elements ) ) { |
|
320 | + if (empty($elements)) { |
|
321 | 321 | exit; |
322 | 322 | } |
323 | 323 | |
324 | 324 | $address_fields = array(); |
325 | - foreach ( $elements as $element ) { |
|
326 | - if ( 'address' === $element['type'] ) { |
|
325 | + foreach ($elements as $element) { |
|
326 | + if ('address' === $element['type']) { |
|
327 | 327 | $address_fields = $element; |
328 | 328 | break; |
329 | 329 | } |
330 | 330 | } |
331 | 331 | |
332 | - if ( empty( $address_fields ) ) { |
|
332 | + if (empty($address_fields)) { |
|
333 | 333 | exit; |
334 | 334 | } |
335 | 335 | |
336 | - foreach ( $address_fields['fields'] as $address_field ) { |
|
336 | + foreach ($address_fields['fields'] as $address_field) { |
|
337 | 337 | |
338 | - if ( 'wpinv_state' == $address_field['name'] ) { |
|
338 | + if ('wpinv_state' == $address_field['name']) { |
|
339 | 339 | |
340 | - $wrap_class = getpaid_get_form_element_grid_class( $address_field ); |
|
341 | - $wrap_class = esc_attr( "$wrap_class getpaid-address-field-wrapper" ); |
|
342 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
343 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
344 | - $value = is_user_logged_in() ? get_user_meta( get_current_user_id(), '_wpinv_state', true ) : ''; |
|
345 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
340 | + $wrap_class = getpaid_get_form_element_grid_class($address_field); |
|
341 | + $wrap_class = esc_attr("$wrap_class getpaid-address-field-wrapper"); |
|
342 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
343 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
344 | + $value = is_user_logged_in() ? get_user_meta(get_current_user_id(), '_wpinv_state', true) : ''; |
|
345 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
346 | 346 | |
347 | - if ( ! empty( $address_field['required'] ) ) { |
|
347 | + if (!empty($address_field['required'])) { |
|
348 | 348 | $label .= "<span class='text-danger'> *</span>"; |
349 | 349 | } |
350 | 350 | |
351 | - $html = getpaid_get_states_select_markup ( |
|
352 | - sanitize_text_field( $_GET['country'] ), |
|
351 | + $html = getpaid_get_states_select_markup( |
|
352 | + sanitize_text_field($_GET['country']), |
|
353 | 353 | $value, |
354 | 354 | $placeholder, |
355 | 355 | $label, |
356 | 356 | $description, |
357 | - ! empty( $address_field['required'] ), |
|
357 | + !empty($address_field['required']), |
|
358 | 358 | $wrap_class, |
359 | - wpinv_clean( $_GET['name'] ) |
|
359 | + wpinv_clean($_GET['name']) |
|
360 | 360 | ); |
361 | 361 | |
362 | - wp_send_json_success( $html ); |
|
362 | + wp_send_json_success($html); |
|
363 | 363 | exit; |
364 | 364 | |
365 | 365 | } |
@@ -375,66 +375,66 @@ discard block |
||
375 | 375 | public static function recalculate_invoice_totals() { |
376 | 376 | |
377 | 377 | // Verify nonce. |
378 | - check_ajax_referer( 'wpinv-nonce' ); |
|
378 | + check_ajax_referer('wpinv-nonce'); |
|
379 | 379 | |
380 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
380 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
381 | 381 | exit; |
382 | 382 | } |
383 | 383 | |
384 | 384 | // We need an invoice. |
385 | - if ( empty( $_POST['post_id'] ) ) { |
|
385 | + if (empty($_POST['post_id'])) { |
|
386 | 386 | exit; |
387 | 387 | } |
388 | 388 | |
389 | 389 | // Fetch the invoice. |
390 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
390 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
391 | 391 | |
392 | 392 | // Ensure it exists. |
393 | - if ( ! $invoice->get_id() ) { |
|
393 | + if (!$invoice->get_id()) { |
|
394 | 394 | exit; |
395 | 395 | } |
396 | 396 | |
397 | 397 | // Maybe set the country, state, currency. |
398 | - foreach ( array( 'country', 'state', 'currency', 'vat_number', 'discount_code' ) as $key ) { |
|
399 | - if ( isset( $_POST[ $key ] ) ) { |
|
398 | + foreach (array('country', 'state', 'currency', 'vat_number', 'discount_code') as $key) { |
|
399 | + if (isset($_POST[$key])) { |
|
400 | 400 | $method = "set_$key"; |
401 | - $invoice->$method( sanitize_text_field( $_POST[ $key ] ) ); |
|
401 | + $invoice->$method(sanitize_text_field($_POST[$key])); |
|
402 | 402 | } |
403 | 403 | } |
404 | 404 | |
405 | 405 | // Maybe disable taxes. |
406 | - $invoice->set_disable_taxes( ! empty( $_POST['taxes'] ) ); |
|
406 | + $invoice->set_disable_taxes(!empty($_POST['taxes'])); |
|
407 | 407 | |
408 | 408 | // Discount code. |
409 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
410 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
411 | - if ( $discount->exists() ) { |
|
412 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
409 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
410 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
411 | + if ($discount->exists()) { |
|
412 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
413 | 413 | } else { |
414 | - $invoice->remove_discount( 'discount_code' ); |
|
414 | + $invoice->remove_discount('discount_code'); |
|
415 | 415 | } |
416 | 416 | } |
417 | 417 | |
418 | 418 | // Recalculate totals. |
419 | 419 | $invoice->recalculate_total(); |
420 | 420 | |
421 | - $total = wpinv_price( $invoice->get_total(), $invoice->get_currency() ); |
|
422 | - $suscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
423 | - if ( is_a( $suscriptions, 'WPInv_Subscription' ) && $invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total() ) { |
|
424 | - $recurring_total = wpinv_price( $invoice->get_recurring_total(), $invoice->get_currency() ); |
|
425 | - $total .= '<small class="form-text text-muted">' . sprintf( __( 'Recurring Price: %s', 'invoicing' ), $recurring_total ) . '</small>'; |
|
421 | + $total = wpinv_price($invoice->get_total(), $invoice->get_currency()); |
|
422 | + $suscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
423 | + if (is_a($suscriptions, 'WPInv_Subscription') && $invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total()) { |
|
424 | + $recurring_total = wpinv_price($invoice->get_recurring_total(), $invoice->get_currency()); |
|
425 | + $total .= '<small class="form-text text-muted">' . sprintf(__('Recurring Price: %s', 'invoicing'), $recurring_total) . '</small>'; |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | $totals = array( |
429 | - 'subtotal' => wpinv_price( $invoice->get_subtotal(), $invoice->get_currency() ), |
|
430 | - 'discount' => wpinv_price( $invoice->get_total_discount(), $invoice->get_currency() ), |
|
431 | - 'tax' => wpinv_price( $invoice->get_total_tax(), $invoice->get_currency() ), |
|
429 | + 'subtotal' => wpinv_price($invoice->get_subtotal(), $invoice->get_currency()), |
|
430 | + 'discount' => wpinv_price($invoice->get_total_discount(), $invoice->get_currency()), |
|
431 | + 'tax' => wpinv_price($invoice->get_total_tax(), $invoice->get_currency()), |
|
432 | 432 | 'total' => $total, |
433 | 433 | ); |
434 | 434 | |
435 | - $totals = apply_filters( 'getpaid_invoice_totals', $totals, $invoice ); |
|
435 | + $totals = apply_filters('getpaid_invoice_totals', $totals, $invoice); |
|
436 | 436 | |
437 | - wp_send_json_success( compact( 'totals' ) ); |
|
437 | + wp_send_json_success(compact('totals')); |
|
438 | 438 | } |
439 | 439 | |
440 | 440 | /** |
@@ -443,33 +443,33 @@ discard block |
||
443 | 443 | public static function get_invoice_items() { |
444 | 444 | |
445 | 445 | // Verify nonce. |
446 | - check_ajax_referer( 'wpinv-nonce' ); |
|
446 | + check_ajax_referer('wpinv-nonce'); |
|
447 | 447 | |
448 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
448 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
449 | 449 | exit; |
450 | 450 | } |
451 | 451 | |
452 | 452 | // We need an invoice and items. |
453 | - if ( empty( $_POST['post_id'] ) ) { |
|
453 | + if (empty($_POST['post_id'])) { |
|
454 | 454 | exit; |
455 | 455 | } |
456 | 456 | |
457 | 457 | // Fetch the invoice. |
458 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
458 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
459 | 459 | |
460 | 460 | // Ensure it exists. |
461 | - if ( ! $invoice->get_id() ) { |
|
461 | + if (!$invoice->get_id()) { |
|
462 | 462 | exit; |
463 | 463 | } |
464 | 464 | |
465 | 465 | // Return an array of invoice items. |
466 | 466 | $items = array(); |
467 | 467 | |
468 | - foreach ( $invoice->get_items() as $item ) { |
|
469 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency(), $invoice->is_renewal() ); |
|
468 | + foreach ($invoice->get_items() as $item) { |
|
469 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency(), $invoice->is_renewal()); |
|
470 | 470 | } |
471 | 471 | |
472 | - wp_send_json_success( compact( 'items' ) ); |
|
472 | + wp_send_json_success(compact('items')); |
|
473 | 473 | } |
474 | 474 | |
475 | 475 | /** |
@@ -478,50 +478,50 @@ discard block |
||
478 | 478 | public static function edit_invoice_item() { |
479 | 479 | |
480 | 480 | // Verify nonce. |
481 | - check_ajax_referer( 'wpinv-nonce' ); |
|
481 | + check_ajax_referer('wpinv-nonce'); |
|
482 | 482 | |
483 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
483 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
484 | 484 | exit; |
485 | 485 | } |
486 | 486 | |
487 | 487 | // We need an invoice and item details. |
488 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['data'] ) ) { |
|
488 | + if (empty($_POST['post_id']) || empty($_POST['data'])) { |
|
489 | 489 | exit; |
490 | 490 | } |
491 | 491 | |
492 | 492 | // Fetch the invoice. |
493 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
493 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
494 | 494 | |
495 | 495 | // Ensure it exists and its not been paid for. |
496 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
496 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
497 | 497 | exit; |
498 | 498 | } |
499 | 499 | |
500 | 500 | // Format the data. |
501 | - $data = wp_unslash( wp_list_pluck( $_POST['data'], 'value', 'field' ) ); |
|
501 | + $data = wp_unslash(wp_list_pluck($_POST['data'], 'value', 'field')); |
|
502 | 502 | |
503 | 503 | // Ensure that we have an item id. |
504 | - if ( empty( $data['id'] ) ) { |
|
504 | + if (empty($data['id'])) { |
|
505 | 505 | exit; |
506 | 506 | } |
507 | 507 | |
508 | 508 | // Abort if the invoice does not have the specified item. |
509 | - $item = $invoice->get_item( (int) $data['id'] ); |
|
509 | + $item = $invoice->get_item((int) $data['id']); |
|
510 | 510 | |
511 | - if ( empty( $item ) ) { |
|
511 | + if (empty($item)) { |
|
512 | 512 | exit; |
513 | 513 | } |
514 | 514 | |
515 | 515 | // Update the item. |
516 | - $item->set_price( floatval( $data['price'] ) ); |
|
517 | - $item->set_name( sanitize_text_field( $data['name'] ) ); |
|
518 | - $item->set_description( wp_kses_post( $data['description'] ) ); |
|
519 | - $item->set_quantity( intval( $data['quantity'] ) ); |
|
516 | + $item->set_price(floatval($data['price'])); |
|
517 | + $item->set_name(sanitize_text_field($data['name'])); |
|
518 | + $item->set_description(wp_kses_post($data['description'])); |
|
519 | + $item->set_quantity(intval($data['quantity'])); |
|
520 | 520 | |
521 | 521 | // Add it to the invoice. |
522 | - $error = $invoice->add_item( $item ); |
|
522 | + $error = $invoice->add_item($item); |
|
523 | 523 | $alert = false; |
524 | - if ( is_wp_error( $error ) ) { |
|
524 | + if (is_wp_error($error)) { |
|
525 | 525 | $alert = $error->get_error_message(); |
526 | 526 | } |
527 | 527 | |
@@ -534,11 +534,11 @@ discard block |
||
534 | 534 | // Return an array of invoice items. |
535 | 535 | $items = array(); |
536 | 536 | |
537 | - foreach ( $invoice->get_items() as $item ) { |
|
538 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
537 | + foreach ($invoice->get_items() as $item) { |
|
538 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
539 | 539 | } |
540 | 540 | |
541 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
541 | + wp_send_json_success(compact('items', 'alert')); |
|
542 | 542 | } |
543 | 543 | |
544 | 544 | /** |
@@ -547,33 +547,33 @@ discard block |
||
547 | 547 | public static function remove_invoice_item() { |
548 | 548 | |
549 | 549 | // Verify nonce. |
550 | - check_ajax_referer( 'wpinv-nonce' ); |
|
550 | + check_ajax_referer('wpinv-nonce'); |
|
551 | 551 | |
552 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
552 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
553 | 553 | exit; |
554 | 554 | } |
555 | 555 | |
556 | 556 | // We need an invoice and an item. |
557 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['item_id'] ) ) { |
|
557 | + if (empty($_POST['post_id']) || empty($_POST['item_id'])) { |
|
558 | 558 | exit; |
559 | 559 | } |
560 | 560 | |
561 | 561 | // Fetch the invoice. |
562 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
562 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
563 | 563 | |
564 | 564 | // Ensure it exists and its not been paid for. |
565 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
565 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
566 | 566 | exit; |
567 | 567 | } |
568 | 568 | |
569 | 569 | // Abort if the invoice does not have the specified item. |
570 | - $item = $invoice->get_item( (int) $_POST['item_id'] ); |
|
570 | + $item = $invoice->get_item((int) $_POST['item_id']); |
|
571 | 571 | |
572 | - if ( empty( $item ) ) { |
|
572 | + if (empty($item)) { |
|
573 | 573 | exit; |
574 | 574 | } |
575 | 575 | |
576 | - $invoice->remove_item( (int) $_POST['item_id'] ); |
|
576 | + $invoice->remove_item((int) $_POST['item_id']); |
|
577 | 577 | |
578 | 578 | // Update totals. |
579 | 579 | $invoice->recalculate_total(); |
@@ -584,11 +584,11 @@ discard block |
||
584 | 584 | // Return an array of invoice items. |
585 | 585 | $items = array(); |
586 | 586 | |
587 | - foreach ( $invoice->get_items() as $item ) { |
|
588 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
587 | + foreach ($invoice->get_items() as $item) { |
|
588 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
589 | 589 | } |
590 | 590 | |
591 | - wp_send_json_success( compact( 'items' ) ); |
|
591 | + wp_send_json_success(compact('items')); |
|
592 | 592 | } |
593 | 593 | |
594 | 594 | /** |
@@ -597,39 +597,39 @@ discard block |
||
597 | 597 | public static function add_invoice_items() { |
598 | 598 | |
599 | 599 | // Verify nonce. |
600 | - check_ajax_referer( 'wpinv-nonce' ); |
|
600 | + check_ajax_referer('wpinv-nonce'); |
|
601 | 601 | |
602 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
602 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
603 | 603 | exit; |
604 | 604 | } |
605 | 605 | |
606 | 606 | // We need an invoice and items. |
607 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['items'] ) ) { |
|
607 | + if (empty($_POST['post_id']) || empty($_POST['items'])) { |
|
608 | 608 | exit; |
609 | 609 | } |
610 | 610 | |
611 | 611 | // Fetch the invoice. |
612 | - $invoice = new WPInv_Invoice( trim( $_POST['post_id'] ) ); |
|
612 | + $invoice = new WPInv_Invoice(trim($_POST['post_id'])); |
|
613 | 613 | $alert = false; |
614 | 614 | |
615 | 615 | // Ensure it exists and its not been paid for. |
616 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
616 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
617 | 617 | exit; |
618 | 618 | } |
619 | 619 | |
620 | 620 | // Add the items. |
621 | - foreach ( $_POST['items'] as $data ) { |
|
621 | + foreach ($_POST['items'] as $data) { |
|
622 | 622 | |
623 | - $item = new GetPaid_Form_Item( $data[ 'id' ] ); |
|
623 | + $item = new GetPaid_Form_Item($data['id']); |
|
624 | 624 | |
625 | - if ( is_numeric( $data[ 'qty' ] ) && (float) $data[ 'qty' ] > 0 ) { |
|
626 | - $item->set_quantity( $data[ 'qty' ] ); |
|
625 | + if (is_numeric($data['qty']) && (float) $data['qty'] > 0) { |
|
626 | + $item->set_quantity($data['qty']); |
|
627 | 627 | } |
628 | 628 | |
629 | - if ( $item->get_id() > 0 ) { |
|
630 | - $error = $invoice->add_item( $item ); |
|
629 | + if ($item->get_id() > 0) { |
|
630 | + $error = $invoice->add_item($item); |
|
631 | 631 | |
632 | - if ( is_wp_error( $error ) ) { |
|
632 | + if (is_wp_error($error)) { |
|
633 | 633 | $alert = $error->get_error_message(); |
634 | 634 | } |
635 | 635 | |
@@ -644,11 +644,11 @@ discard block |
||
644 | 644 | // Return an array of invoice items. |
645 | 645 | $items = array(); |
646 | 646 | |
647 | - foreach ( $invoice->get_items() as $item ) { |
|
648 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
647 | + foreach ($invoice->get_items() as $item) { |
|
648 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
649 | 649 | } |
650 | 650 | |
651 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
651 | + wp_send_json_success(compact('items', 'alert')); |
|
652 | 652 | } |
653 | 653 | |
654 | 654 | /** |
@@ -657,15 +657,15 @@ discard block |
||
657 | 657 | public static function get_invoicing_items() { |
658 | 658 | |
659 | 659 | // Verify nonce. |
660 | - check_ajax_referer( 'wpinv-nonce' ); |
|
660 | + check_ajax_referer('wpinv-nonce'); |
|
661 | 661 | |
662 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
662 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
663 | 663 | exit; |
664 | 664 | } |
665 | 665 | |
666 | 666 | // We need a search term. |
667 | - if ( empty( $_GET['search'] ) ) { |
|
668 | - wp_send_json_success( array() ); |
|
667 | + if (empty($_GET['search'])) { |
|
668 | + wp_send_json_success(array()); |
|
669 | 669 | } |
670 | 670 | |
671 | 671 | // Retrieve items. |
@@ -674,8 +674,8 @@ discard block |
||
674 | 674 | 'orderby' => 'title', |
675 | 675 | 'order' => 'ASC', |
676 | 676 | 'posts_per_page' => -1, |
677 | - 'post_status' => array( 'publish' ), |
|
678 | - 's' => trim( $_GET['search'] ), |
|
677 | + 'post_status' => array('publish'), |
|
678 | + 's' => trim($_GET['search']), |
|
679 | 679 | 'meta_query' => array( |
680 | 680 | array( |
681 | 681 | 'key' => '_wpinv_type', |
@@ -685,22 +685,22 @@ discard block |
||
685 | 685 | ) |
686 | 686 | ); |
687 | 687 | |
688 | - $items = get_posts( apply_filters( 'getpaid_ajax_invoice_items_query_args', $item_args ) ); |
|
688 | + $items = get_posts(apply_filters('getpaid_ajax_invoice_items_query_args', $item_args)); |
|
689 | 689 | $data = array(); |
690 | 690 | |
691 | 691 | |
692 | - $is_payment_form = ( ! empty( $_GET['post_id'] ) && 'wpi_payment_form' == get_post_type( $_GET['post_id'] ) ); |
|
692 | + $is_payment_form = (!empty($_GET['post_id']) && 'wpi_payment_form' == get_post_type($_GET['post_id'])); |
|
693 | 693 | |
694 | - foreach ( $items as $item ) { |
|
695 | - $item = new GetPaid_Form_Item( $item ); |
|
694 | + foreach ($items as $item) { |
|
695 | + $item = new GetPaid_Form_Item($item); |
|
696 | 696 | $data[] = array( |
697 | 697 | 'id' => (int) $item->get_id(), |
698 | - 'text' => strip_tags( $item->get_name() ), |
|
699 | - 'form_data' => $is_payment_form ? $item->prepare_data_for_use( false ) : '', |
|
698 | + 'text' => strip_tags($item->get_name()), |
|
699 | + 'form_data' => $is_payment_form ? $item->prepare_data_for_use(false) : '', |
|
700 | 700 | ); |
701 | 701 | } |
702 | 702 | |
703 | - wp_send_json_success( $data ); |
|
703 | + wp_send_json_success($data); |
|
704 | 704 | |
705 | 705 | } |
706 | 706 | |
@@ -710,37 +710,37 @@ discard block |
||
710 | 710 | public static function get_customers() { |
711 | 711 | |
712 | 712 | // Verify nonce. |
713 | - check_ajax_referer( 'wpinv-nonce' ); |
|
713 | + check_ajax_referer('wpinv-nonce'); |
|
714 | 714 | |
715 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
715 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
716 | 716 | exit; |
717 | 717 | } |
718 | 718 | |
719 | 719 | // We need a search term. |
720 | - if ( empty( $_GET['search'] ) ) { |
|
721 | - wp_send_json_success( array() ); |
|
720 | + if (empty($_GET['search'])) { |
|
721 | + wp_send_json_success(array()); |
|
722 | 722 | } |
723 | 723 | |
724 | 724 | // Retrieve customers. |
725 | 725 | |
726 | 726 | $customer_args = array( |
727 | - 'fields' => array( 'ID', 'user_email', 'display_name' ), |
|
727 | + 'fields' => array('ID', 'user_email', 'display_name'), |
|
728 | 728 | 'orderby' => 'display_name', |
729 | - 'search' => '*' . sanitize_text_field( $_GET['search'] ) . '*', |
|
730 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
729 | + 'search' => '*' . sanitize_text_field($_GET['search']) . '*', |
|
730 | + 'search_columns' => array('user_login', 'user_email', 'display_name'), |
|
731 | 731 | ); |
732 | 732 | |
733 | - $customers = get_users( apply_filters( 'getpaid_ajax_invoice_customers_query_args', $customer_args ) ); |
|
733 | + $customers = get_users(apply_filters('getpaid_ajax_invoice_customers_query_args', $customer_args)); |
|
734 | 734 | $data = array(); |
735 | 735 | |
736 | - foreach ( $customers as $customer ) { |
|
736 | + foreach ($customers as $customer) { |
|
737 | 737 | $data[] = array( |
738 | 738 | 'id' => (int) $customer->ID, |
739 | - 'text' => strip_tags( sprintf( _x( '%1$s (%2$s)', 'user dropdown', 'invoicing' ), $customer->display_name, $customer->user_email ) ), |
|
739 | + 'text' => strip_tags(sprintf(_x('%1$s (%2$s)', 'user dropdown', 'invoicing'), $customer->display_name, $customer->user_email)), |
|
740 | 740 | ); |
741 | 741 | } |
742 | 742 | |
743 | - wp_send_json_success( $data ); |
|
743 | + wp_send_json_success($data); |
|
744 | 744 | |
745 | 745 | } |
746 | 746 | |
@@ -750,28 +750,28 @@ discard block |
||
750 | 750 | public static function get_aui_states_field() { |
751 | 751 | |
752 | 752 | // Verify nonce. |
753 | - check_ajax_referer( 'wpinv-nonce' ); |
|
753 | + check_ajax_referer('wpinv-nonce'); |
|
754 | 754 | |
755 | 755 | // We need a country. |
756 | - if ( empty( $_GET['country'] ) ) { |
|
756 | + if (empty($_GET['country'])) { |
|
757 | 757 | exit; |
758 | 758 | } |
759 | 759 | |
760 | - $states = wpinv_get_country_states( sanitize_text_field( $_GET['country'] ) ); |
|
761 | - $state = isset( $_GET['state'] ) ? sanitize_text_field( $_GET['state'] ) : wpinv_get_default_state(); |
|
762 | - $name = isset( $_GET['name'] ) ? sanitize_text_field( $_GET['name'] ) : 'wpinv_state'; |
|
763 | - $class = isset( $_GET['class'] ) ? sanitize_text_field( $_GET['class'] ) : 'form-control-sm'; |
|
760 | + $states = wpinv_get_country_states(sanitize_text_field($_GET['country'])); |
|
761 | + $state = isset($_GET['state']) ? sanitize_text_field($_GET['state']) : wpinv_get_default_state(); |
|
762 | + $name = isset($_GET['name']) ? sanitize_text_field($_GET['name']) : 'wpinv_state'; |
|
763 | + $class = isset($_GET['class']) ? sanitize_text_field($_GET['class']) : 'form-control-sm'; |
|
764 | 764 | |
765 | - if ( empty( $states ) ) { |
|
765 | + if (empty($states)) { |
|
766 | 766 | |
767 | 767 | $html = aui()->input( |
768 | 768 | array( |
769 | 769 | 'type' => 'text', |
770 | 770 | 'id' => 'wpinv_state', |
771 | 771 | 'name' => $name, |
772 | - 'label' => __( 'State', 'invoicing' ), |
|
772 | + 'label' => __('State', 'invoicing'), |
|
773 | 773 | 'label_type' => 'vertical', |
774 | - 'placeholder' => __( 'State', 'invoicing' ), |
|
774 | + 'placeholder' => __('State', 'invoicing'), |
|
775 | 775 | 'class' => $class, |
776 | 776 | 'value' => $state, |
777 | 777 | ) |
@@ -783,9 +783,9 @@ discard block |
||
783 | 783 | array( |
784 | 784 | 'id' => 'wpinv_state', |
785 | 785 | 'name' => $name, |
786 | - 'label' => __( 'State', 'invoicing' ), |
|
786 | + 'label' => __('State', 'invoicing'), |
|
787 | 787 | 'label_type' => 'vertical', |
788 | - 'placeholder' => __( 'Select a state', 'invoicing' ), |
|
788 | + 'placeholder' => __('Select a state', 'invoicing'), |
|
789 | 789 | 'class' => $class, |
790 | 790 | 'value' => $state, |
791 | 791 | 'options' => $states, |
@@ -799,7 +799,7 @@ discard block |
||
799 | 799 | wp_send_json_success( |
800 | 800 | array( |
801 | 801 | 'html' => $html, |
802 | - 'select' => ! empty ( $states ) |
|
802 | + 'select' => !empty ($states) |
|
803 | 803 | ) |
804 | 804 | ); |
805 | 805 | |
@@ -813,11 +813,11 @@ discard block |
||
813 | 813 | public static function payment_form_refresh_prices() { |
814 | 814 | |
815 | 815 | // Check nonce. |
816 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
816 | + check_ajax_referer('getpaid_form_nonce'); |
|
817 | 817 | |
818 | 818 | // ... form fields... |
819 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
820 | - _e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
819 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
820 | + _e('Error: Reload the page and try again.', 'invoicing'); |
|
821 | 821 | exit; |
822 | 822 | } |
823 | 823 | |
@@ -825,7 +825,7 @@ discard block |
||
825 | 825 | $submission = new GetPaid_Payment_Form_Submission(); |
826 | 826 | |
827 | 827 | // Do we have an error? |
828 | - if ( ! empty( $submission->last_error ) ) { |
|
828 | + if (!empty($submission->last_error)) { |
|
829 | 829 | wp_send_json_error( |
830 | 830 | array( |
831 | 831 | 'code' => $submission->last_error_code, |
@@ -835,12 +835,12 @@ discard block |
||
835 | 835 | } |
836 | 836 | |
837 | 837 | // Prepare the response. |
838 | - $response = new GetPaid_Payment_Form_Submission_Refresh_Prices( $submission ); |
|
838 | + $response = new GetPaid_Payment_Form_Submission_Refresh_Prices($submission); |
|
839 | 839 | |
840 | 840 | // Filter the response. |
841 | - $response = apply_filters( 'getpaid_payment_form_ajax_refresh_prices', $response->response, $submission ); |
|
841 | + $response = apply_filters('getpaid_payment_form_ajax_refresh_prices', $response->response, $submission); |
|
842 | 842 | |
843 | - wp_send_json_success( $response ); |
|
843 | + wp_send_json_success($response); |
|
844 | 844 | } |
845 | 845 | |
846 | 846 | } |