@@ -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,11 +77,11 @@ 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 | - return apply_filters( 'getpaid_invoice_post_types', $post_types ); |
|
84 | + return apply_filters('getpaid_invoice_post_types', $post_types); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | /** |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | * |
91 | 91 | * @param string $post_type The post type to check for. |
92 | 92 | */ |
93 | -function getpaid_is_invoice_post_type( $post_type ) { |
|
94 | - return ! empty( $post_type ) && array_key_exists( $post_type, getpaid_get_invoice_post_types() ); |
|
93 | +function getpaid_is_invoice_post_type($post_type) { |
|
94 | + return !empty($post_type) && array_key_exists($post_type, getpaid_get_invoice_post_types()); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -101,9 +101,9 @@ discard block |
||
101 | 101 | * @param bool $wp_error Whether to return false or WP_Error on failure. |
102 | 102 | * @return int|WP_Error|WPInv_Invoice The value 0 or WP_Error on failure. The WPInv_Invoice object on success. |
103 | 103 | */ |
104 | -function wpinv_create_invoice( $data = array(), $deprecated = null, $wp_error = false ) { |
|
105 | - $data[ 'invoice_id' ] = 0; |
|
106 | - return wpinv_insert_invoice( $data, $wp_error ); |
|
104 | +function wpinv_create_invoice($data = array(), $deprecated = null, $wp_error = false) { |
|
105 | + $data['invoice_id'] = 0; |
|
106 | + return wpinv_insert_invoice($data, $wp_error); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | /** |
@@ -113,36 +113,36 @@ discard block |
||
113 | 113 | * @param bool $wp_error Whether to return false or WP_Error on failure. |
114 | 114 | * @return int|WP_Error|WPInv_Invoice The value 0 or WP_Error on failure. The WPInv_Invoice object on success. |
115 | 115 | */ |
116 | -function wpinv_update_invoice( $data = array(), $wp_error = false ) { |
|
116 | +function wpinv_update_invoice($data = array(), $wp_error = false) { |
|
117 | 117 | |
118 | 118 | // Backwards compatibility. |
119 | - if ( ! empty( $data['ID'] ) ) { |
|
119 | + if (!empty($data['ID'])) { |
|
120 | 120 | $data['invoice_id'] = $data['ID']; |
121 | 121 | } |
122 | 122 | |
123 | 123 | // Do we have an invoice id? |
124 | - if ( empty( $data['invoice_id'] ) ) { |
|
125 | - return $wp_error ? new WP_Error( 'invalid_invoice_id', __( 'Invalid invoice ID.', 'invoicing' ) ) : 0; |
|
124 | + if (empty($data['invoice_id'])) { |
|
125 | + return $wp_error ? new WP_Error('invalid_invoice_id', __('Invalid invoice ID.', 'invoicing')) : 0; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | // Retrieve the invoice. |
129 | - $invoice = wpinv_get_invoice( $data['invoice_id'] ); |
|
129 | + $invoice = wpinv_get_invoice($data['invoice_id']); |
|
130 | 130 | |
131 | 131 | // And abort if it does not exist. |
132 | - if ( empty( $invoice ) ) { |
|
133 | - return $wp_error ? new WP_Error( 'missing_invoice', __( 'Invoice not found.', 'invoicing' ) ) : 0; |
|
132 | + if (empty($invoice)) { |
|
133 | + return $wp_error ? new WP_Error('missing_invoice', __('Invoice not found.', 'invoicing')) : 0; |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | // Do not update totals for paid / refunded invoices. |
137 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
137 | + if ($invoice->is_paid() || $invoice->is_refunded()) { |
|
138 | 138 | |
139 | - if ( ! empty( $data['items'] ) || ! empty( $data['cart_details'] ) ) { |
|
140 | - return $wp_error ? new WP_Error( 'paid_invoice', __( 'You can not update cart items for invoices that have already been paid for.', 'invoicing' ) ) : 0; |
|
139 | + if (!empty($data['items']) || !empty($data['cart_details'])) { |
|
140 | + return $wp_error ? new WP_Error('paid_invoice', __('You can not update cart items for invoices that have already been paid for.', 'invoicing')) : 0; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | } |
144 | 144 | |
145 | - return wpinv_insert_invoice( $data, $wp_error ); |
|
145 | + return wpinv_insert_invoice($data, $wp_error); |
|
146 | 146 | |
147 | 147 | } |
148 | 148 | |
@@ -153,34 +153,34 @@ discard block |
||
153 | 153 | * @param bool $wp_error Whether to return false or WP_Error on failure. |
154 | 154 | * @return int|WP_Error|WPInv_Invoice The value 0 or WP_Error on failure. The WPInv_Invoice object on success. |
155 | 155 | */ |
156 | -function wpinv_insert_invoice( $data = array(), $wp_error = false ) { |
|
156 | +function wpinv_insert_invoice($data = array(), $wp_error = false) { |
|
157 | 157 | |
158 | 158 | // Ensure that we have invoice data. |
159 | - if ( empty( $data ) ) { |
|
159 | + if (empty($data)) { |
|
160 | 160 | return false; |
161 | 161 | } |
162 | 162 | |
163 | 163 | // The invoice id will be provided when updating an invoice. |
164 | - $data['invoice_id'] = ! empty( $data['invoice_id'] ) ? (int) $data['invoice_id'] : false; |
|
164 | + $data['invoice_id'] = !empty($data['invoice_id']) ? (int) $data['invoice_id'] : false; |
|
165 | 165 | |
166 | 166 | // Retrieve the invoice. |
167 | - $invoice = new WPInv_Invoice( $data['invoice_id'] ); |
|
167 | + $invoice = new WPInv_Invoice($data['invoice_id']); |
|
168 | 168 | |
169 | 169 | // Do we have an error? |
170 | - if ( ! empty( $invoice->last_error ) ) { |
|
171 | - return $wp_error ? new WP_Error( 'invalid_invoice_id', $invoice->last_error ) : 0; |
|
170 | + if (!empty($invoice->last_error)) { |
|
171 | + return $wp_error ? new WP_Error('invalid_invoice_id', $invoice->last_error) : 0; |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | // Backwards compatibility (billing address). |
175 | - if ( ! empty( $data['user_info'] ) ) { |
|
175 | + if (!empty($data['user_info'])) { |
|
176 | 176 | |
177 | - foreach ( $data['user_info'] as $key => $value ) { |
|
177 | + foreach ($data['user_info'] as $key => $value) { |
|
178 | 178 | |
179 | - if ( $key == 'discounts' ) { |
|
179 | + if ($key == 'discounts') { |
|
180 | 180 | $value = (array) $value; |
181 | - $data[ 'discount_code' ] = empty( $value ) ? null : $value[0]; |
|
181 | + $data['discount_code'] = empty($value) ? null : $value[0]; |
|
182 | 182 | } else { |
183 | - $data[ $key ] = $value; |
|
183 | + $data[$key] = $value; |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | } |
@@ -188,30 +188,30 @@ discard block |
||
188 | 188 | } |
189 | 189 | |
190 | 190 | // Backwards compatibility. |
191 | - if ( ! empty( $data['payment_details'] ) ) { |
|
191 | + if (!empty($data['payment_details'])) { |
|
192 | 192 | |
193 | - foreach ( $data['payment_details'] as $key => $value ) { |
|
194 | - $data[ $key ] = $value; |
|
193 | + foreach ($data['payment_details'] as $key => $value) { |
|
194 | + $data[$key] = $value; |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | } |
198 | 198 | |
199 | 199 | // Set up the owner of the invoice. |
200 | - $user_id = ! empty( $data['user_id'] ) ? wpinv_clean( $data['user_id'] ) : get_current_user_id(); |
|
200 | + $user_id = !empty($data['user_id']) ? wpinv_clean($data['user_id']) : get_current_user_id(); |
|
201 | 201 | |
202 | 202 | // Make sure the user exists. |
203 | - if ( ! get_userdata( $user_id ) ) { |
|
204 | - return $wp_error ? new WP_Error( 'wpinv_invalid_user', __( 'There is no user with that ID.', 'invoicing' ) ) : 0; |
|
203 | + if (!get_userdata($user_id)) { |
|
204 | + return $wp_error ? new WP_Error('wpinv_invalid_user', __('There is no user with that ID.', 'invoicing')) : 0; |
|
205 | 205 | } |
206 | 206 | |
207 | - $address = wpinv_get_user_address( $user_id ); |
|
207 | + $address = wpinv_get_user_address($user_id); |
|
208 | 208 | |
209 | - foreach ( $address as $key => $value ) { |
|
209 | + foreach ($address as $key => $value) { |
|
210 | 210 | |
211 | - if ( $value == '' ) { |
|
212 | - $address[ $key ] = null; |
|
211 | + if ($value == '') { |
|
212 | + $address[$key] = null; |
|
213 | 213 | } else { |
214 | - $address[ $key ] = wpinv_clean( $value ); |
|
214 | + $address[$key] = wpinv_clean($value); |
|
215 | 215 | } |
216 | 216 | |
217 | 217 | } |
@@ -222,103 +222,103 @@ discard block |
||
222 | 222 | array( |
223 | 223 | |
224 | 224 | // Basic info. |
225 | - 'template' => isset( $data['template'] ) ? wpinv_clean( $data['template'] ) : null, |
|
226 | - 'email_cc' => isset( $data['email_cc'] ) ? wpinv_clean( $data['email_cc'] ) : null, |
|
227 | - 'date_created' => isset( $data['created_date'] ) ? wpinv_clean( $data['created_date'] ) : null, |
|
228 | - 'due_date' => isset( $data['due_date'] ) ? wpinv_clean( $data['due_date'] ) : null, |
|
229 | - 'date_completed' => isset( $data['date_completed'] ) ? wpinv_clean( $data['date_completed'] ) : null, |
|
230 | - 'number' => isset( $data['number'] ) ? wpinv_clean( $data['number'] ) : null, |
|
231 | - 'key' => isset( $data['key'] ) ? wpinv_clean( $data['key'] ) : null, |
|
232 | - 'status' => isset( $data['status'] ) ? wpinv_clean( $data['status'] ) : null, |
|
233 | - 'post_type' => isset( $data['post_type'] ) ? wpinv_clean( $data['post_type'] ) : null, |
|
234 | - 'user_ip' => isset( $data['ip'] ) ? wpinv_clean( $data['ip'] ) : wpinv_get_ip(), |
|
235 | - 'parent_id' => isset( $data['parent'] ) ? intval( $data['parent'] ) : null, |
|
236 | - 'mode' => isset( $data['mode'] ) ? wpinv_clean( $data['mode'] ) : null, |
|
237 | - 'description' => isset( $data['description'] ) ? wp_kses_post( $data['description'] ) : null, |
|
225 | + 'template' => isset($data['template']) ? wpinv_clean($data['template']) : null, |
|
226 | + 'email_cc' => isset($data['email_cc']) ? wpinv_clean($data['email_cc']) : null, |
|
227 | + 'date_created' => isset($data['created_date']) ? wpinv_clean($data['created_date']) : null, |
|
228 | + 'due_date' => isset($data['due_date']) ? wpinv_clean($data['due_date']) : null, |
|
229 | + 'date_completed' => isset($data['date_completed']) ? wpinv_clean($data['date_completed']) : null, |
|
230 | + 'number' => isset($data['number']) ? wpinv_clean($data['number']) : null, |
|
231 | + 'key' => isset($data['key']) ? wpinv_clean($data['key']) : null, |
|
232 | + 'status' => isset($data['status']) ? wpinv_clean($data['status']) : null, |
|
233 | + 'post_type' => isset($data['post_type']) ? wpinv_clean($data['post_type']) : null, |
|
234 | + 'user_ip' => isset($data['ip']) ? wpinv_clean($data['ip']) : wpinv_get_ip(), |
|
235 | + 'parent_id' => isset($data['parent']) ? intval($data['parent']) : null, |
|
236 | + 'mode' => isset($data['mode']) ? wpinv_clean($data['mode']) : null, |
|
237 | + 'description' => isset($data['description']) ? wp_kses_post($data['description']) : null, |
|
238 | 238 | |
239 | 239 | // Payment info. |
240 | - 'disable_taxes' => ! empty( $data['disable_taxes'] ), |
|
241 | - 'currency' => isset( $data['currency'] ) ? wpinv_clean( $data['currency'] ) : wpinv_get_currency(), |
|
242 | - 'gateway' => isset( $data['gateway'] ) ? wpinv_clean( $data['gateway'] ) : null, |
|
243 | - 'transaction_id' => isset( $data['transaction_id'] ) ? wpinv_clean( $data['transaction_id'] ) : null, |
|
244 | - 'discount_code' => isset( $data['discount_code'] ) ? wpinv_clean( $data['discount_code'] ) : null, |
|
245 | - 'payment_form' => isset( $data['payment_form'] ) ? intval( $data['payment_form'] ) : null, |
|
246 | - 'submission_id' => isset( $data['submission_id'] ) ? wpinv_clean( $data['submission_id'] ) : null, |
|
247 | - 'subscription_id' => isset( $data['subscription_id'] ) ? wpinv_clean( $data['subscription_id'] ) : null, |
|
248 | - 'is_viewed' => isset( $data['is_viewed'] ) ? wpinv_clean( $data['is_viewed'] ) : null, |
|
249 | - 'fees' => isset( $data['fees'] ) ? wpinv_clean( $data['fees'] ) : null, |
|
250 | - 'discounts' => isset( $data['discounts'] ) ? wpinv_clean( $data['discounts'] ) : null, |
|
251 | - 'taxes' => isset( $data['taxes'] ) ? wpinv_clean( $data['taxes'] ) : null, |
|
240 | + 'disable_taxes' => !empty($data['disable_taxes']), |
|
241 | + 'currency' => isset($data['currency']) ? wpinv_clean($data['currency']) : wpinv_get_currency(), |
|
242 | + 'gateway' => isset($data['gateway']) ? wpinv_clean($data['gateway']) : null, |
|
243 | + 'transaction_id' => isset($data['transaction_id']) ? wpinv_clean($data['transaction_id']) : null, |
|
244 | + 'discount_code' => isset($data['discount_code']) ? wpinv_clean($data['discount_code']) : null, |
|
245 | + 'payment_form' => isset($data['payment_form']) ? intval($data['payment_form']) : null, |
|
246 | + 'submission_id' => isset($data['submission_id']) ? wpinv_clean($data['submission_id']) : null, |
|
247 | + 'subscription_id' => isset($data['subscription_id']) ? wpinv_clean($data['subscription_id']) : null, |
|
248 | + 'is_viewed' => isset($data['is_viewed']) ? wpinv_clean($data['is_viewed']) : null, |
|
249 | + 'fees' => isset($data['fees']) ? wpinv_clean($data['fees']) : null, |
|
250 | + 'discounts' => isset($data['discounts']) ? wpinv_clean($data['discounts']) : null, |
|
251 | + 'taxes' => isset($data['taxes']) ? wpinv_clean($data['taxes']) : null, |
|
252 | 252 | |
253 | 253 | |
254 | 254 | // Billing details. |
255 | 255 | 'user_id' => $data['user_id'], |
256 | - 'first_name' => isset( $data['first_name'] ) ? wpinv_clean( $data['first_name'] ) : $address['first_name'], |
|
257 | - 'last_name' => isset( $data['last_name'] ) ? wpinv_clean( $data['last_name'] ) : $address['last_name'], |
|
258 | - 'address' => isset( $data['address'] ) ? wpinv_clean( $data['address'] ) : $address['address'] , |
|
259 | - 'vat_number' => isset( $data['vat_number'] ) ? wpinv_clean( $data['vat_number'] ) : $address['vat_number'], |
|
260 | - 'company' => isset( $data['company'] ) ? wpinv_clean( $data['company'] ) : $address['company'], |
|
261 | - 'zip' => isset( $data['zip'] ) ? wpinv_clean( $data['zip'] ) : $address['zip'], |
|
262 | - 'state' => isset( $data['state'] ) ? wpinv_clean( $data['state'] ) : $address['state'], |
|
263 | - 'city' => isset( $data['city'] ) ? wpinv_clean( $data['city'] ) : $address['city'], |
|
264 | - 'country' => isset( $data['country'] ) ? wpinv_clean( $data['country'] ) : $address['country'], |
|
265 | - 'phone' => isset( $data['phone'] ) ? wpinv_clean( $data['phone'] ) : $address['phone'], |
|
266 | - 'address_confirmed' => ! empty( $data['address_confirmed'] ), |
|
256 | + 'first_name' => isset($data['first_name']) ? wpinv_clean($data['first_name']) : $address['first_name'], |
|
257 | + 'last_name' => isset($data['last_name']) ? wpinv_clean($data['last_name']) : $address['last_name'], |
|
258 | + 'address' => isset($data['address']) ? wpinv_clean($data['address']) : $address['address'], |
|
259 | + 'vat_number' => isset($data['vat_number']) ? wpinv_clean($data['vat_number']) : $address['vat_number'], |
|
260 | + 'company' => isset($data['company']) ? wpinv_clean($data['company']) : $address['company'], |
|
261 | + 'zip' => isset($data['zip']) ? wpinv_clean($data['zip']) : $address['zip'], |
|
262 | + 'state' => isset($data['state']) ? wpinv_clean($data['state']) : $address['state'], |
|
263 | + 'city' => isset($data['city']) ? wpinv_clean($data['city']) : $address['city'], |
|
264 | + 'country' => isset($data['country']) ? wpinv_clean($data['country']) : $address['country'], |
|
265 | + 'phone' => isset($data['phone']) ? wpinv_clean($data['phone']) : $address['phone'], |
|
266 | + 'address_confirmed' => !empty($data['address_confirmed']), |
|
267 | 267 | |
268 | 268 | ) |
269 | 269 | |
270 | 270 | ); |
271 | 271 | |
272 | 272 | // Backwards compatibililty. |
273 | - if ( ! empty( $data['cart_details'] ) && is_array( $data['cart_details'] ) ) { |
|
273 | + if (!empty($data['cart_details']) && is_array($data['cart_details'])) { |
|
274 | 274 | $data['items'] = array(); |
275 | 275 | |
276 | - foreach( $data['cart_details'] as $_item ) { |
|
276 | + foreach ($data['cart_details'] as $_item) { |
|
277 | 277 | |
278 | 278 | // Ensure that we have an item id. |
279 | - if ( empty( $_item['id'] ) ) { |
|
279 | + if (empty($_item['id'])) { |
|
280 | 280 | continue; |
281 | 281 | } |
282 | 282 | |
283 | 283 | // Retrieve the item. |
284 | - $item = new GetPaid_Form_Item( $_item['id'] ); |
|
284 | + $item = new GetPaid_Form_Item($_item['id']); |
|
285 | 285 | |
286 | 286 | // Ensure that it is purchasable. |
287 | - if ( ! $item->can_purchase() ) { |
|
287 | + if (!$item->can_purchase()) { |
|
288 | 288 | continue; |
289 | 289 | } |
290 | 290 | |
291 | 291 | // Set quantity. |
292 | - if ( ! empty( $_item['quantity'] ) && is_numeric( $_item['quantity'] ) ) { |
|
293 | - $item->set_quantity( $_item['quantity'] ); |
|
292 | + if (!empty($_item['quantity']) && is_numeric($_item['quantity'])) { |
|
293 | + $item->set_quantity($_item['quantity']); |
|
294 | 294 | } |
295 | 295 | |
296 | 296 | // Set price. |
297 | - if ( isset( $_item['item_price'] ) ) { |
|
298 | - $item->set_price( $_item['item_price'] ); |
|
297 | + if (isset($_item['item_price'])) { |
|
298 | + $item->set_price($_item['item_price']); |
|
299 | 299 | } |
300 | 300 | |
301 | - if ( isset( $_item['custom_price'] ) ) { |
|
302 | - $item->set_price( $_item['custom_price'] ); |
|
301 | + if (isset($_item['custom_price'])) { |
|
302 | + $item->set_price($_item['custom_price']); |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | // Set name. |
306 | - if ( ! empty( $_item['name'] ) ) { |
|
307 | - $item->set_name( $_item['name'] ); |
|
306 | + if (!empty($_item['name'])) { |
|
307 | + $item->set_name($_item['name']); |
|
308 | 308 | } |
309 | 309 | |
310 | 310 | // Set description. |
311 | - if ( isset( $_item['description'] ) ) { |
|
312 | - $item->set_custom_description( $_item['description'] ); |
|
311 | + if (isset($_item['description'])) { |
|
312 | + $item->set_custom_description($_item['description']); |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | // Set meta. |
316 | - if ( isset( $_item['meta'] ) && is_array( $_item['meta'] ) ) { |
|
316 | + if (isset($_item['meta']) && is_array($_item['meta'])) { |
|
317 | 317 | |
318 | - $item->set_item_meta( $_item['meta'] ); |
|
318 | + $item->set_item_meta($_item['meta']); |
|
319 | 319 | |
320 | - if ( isset( $_item['meta']['description'] ) ) { |
|
321 | - $item->set_custom_description( $_item['meta']['description'] ); |
|
320 | + if (isset($_item['meta']['description'])) { |
|
321 | + $item->set_custom_description($_item['meta']['description']); |
|
322 | 322 | } |
323 | 323 | |
324 | 324 | } |
@@ -329,14 +329,14 @@ discard block |
||
329 | 329 | } |
330 | 330 | |
331 | 331 | // Add invoice items. |
332 | - if ( ! empty( $data['items'] ) && is_array( $data['items'] ) ) { |
|
332 | + if (!empty($data['items']) && is_array($data['items'])) { |
|
333 | 333 | |
334 | - $invoice->set_items( array() ); |
|
334 | + $invoice->set_items(array()); |
|
335 | 335 | |
336 | - foreach ( $data['items'] as $item ) { |
|
336 | + foreach ($data['items'] as $item) { |
|
337 | 337 | |
338 | - if ( is_object( $item ) && is_a( $item, 'GetPaid_Form_Item' ) && $item->can_purchase() ) { |
|
339 | - $invoice->add_item( $item ); |
|
338 | + if (is_object($item) && is_a($item, 'GetPaid_Form_Item') && $item->can_purchase()) { |
|
339 | + $invoice->add_item($item); |
|
340 | 340 | } |
341 | 341 | |
342 | 342 | } |
@@ -346,30 +346,30 @@ discard block |
||
346 | 346 | // Save the invoice. |
347 | 347 | $invoice->save(); |
348 | 348 | |
349 | - if ( ! $invoice->get_id() ) { |
|
350 | - return $wp_error ? new WP_Error( 'wpinv_insert_invoice_error', __( 'An error occured when saving your invoice.', 'invoicing' ) ) : 0; |
|
349 | + if (!$invoice->get_id()) { |
|
350 | + return $wp_error ? new WP_Error('wpinv_insert_invoice_error', __('An error occured when saving your invoice.', 'invoicing')) : 0; |
|
351 | 351 | } |
352 | 352 | |
353 | 353 | // Add private note. |
354 | - if ( ! empty( $data['private_note'] ) ) { |
|
355 | - $invoice->add_note( $data['private_note'] ); |
|
354 | + if (!empty($data['private_note'])) { |
|
355 | + $invoice->add_note($data['private_note']); |
|
356 | 356 | } |
357 | 357 | |
358 | 358 | // User notes. |
359 | - if ( !empty( $data['user_note'] ) ) { |
|
360 | - $invoice->add_note( $data['user_note'], true ); |
|
359 | + if (!empty($data['user_note'])) { |
|
360 | + $invoice->add_note($data['user_note'], true); |
|
361 | 361 | } |
362 | 362 | |
363 | 363 | // Created via. |
364 | - if ( isset( $data['created_via'] ) ) { |
|
365 | - update_post_meta( $invoice->get_id(), 'wpinv_created_via', $data['created_via'] ); |
|
364 | + if (isset($data['created_via'])) { |
|
365 | + update_post_meta($invoice->get_id(), 'wpinv_created_via', $data['created_via']); |
|
366 | 366 | } |
367 | 367 | |
368 | 368 | // Backwards compatiblity. |
369 | - if ( $invoice->is_quote() ) { |
|
369 | + if ($invoice->is_quote()) { |
|
370 | 370 | |
371 | - if ( isset( $data['valid_until'] ) ) { |
|
372 | - update_post_meta( $invoice->get_id(), 'wpinv_quote_valid_until', $data['valid_until'] ); |
|
371 | + if (isset($data['valid_until'])) { |
|
372 | + update_post_meta($invoice->get_id(), 'wpinv_quote_valid_until', $data['valid_until']); |
|
373 | 373 | } |
374 | 374 | return $invoice; |
375 | 375 | |
@@ -384,18 +384,18 @@ discard block |
||
384 | 384 | * @param $bool $deprecated |
385 | 385 | * @return WPInv_Invoice|null |
386 | 386 | */ |
387 | -function wpinv_get_invoice( $invoice = 0, $deprecated = false ) { |
|
387 | +function wpinv_get_invoice($invoice = 0, $deprecated = false) { |
|
388 | 388 | |
389 | 389 | // If we are retrieving the invoice from the cart... |
390 | - if ( $deprecated && empty( $invoice ) ) { |
|
390 | + if ($deprecated && empty($invoice)) { |
|
391 | 391 | $invoice = (int) getpaid_get_current_invoice_id(); |
392 | 392 | } |
393 | 393 | |
394 | 394 | // Retrieve the invoice. |
395 | - $invoice = new WPInv_Invoice( $invoice ); |
|
395 | + $invoice = new WPInv_Invoice($invoice); |
|
396 | 396 | |
397 | 397 | // Check if it exists. |
398 | - if ( $invoice->get_id() != 0 ) { |
|
398 | + if ($invoice->get_id() != 0) { |
|
399 | 399 | return $invoice; |
400 | 400 | } |
401 | 401 | |
@@ -408,15 +408,15 @@ discard block |
||
408 | 408 | * @param array $args Args to search for. |
409 | 409 | * @return WPInv_Invoice[]|int[]|object |
410 | 410 | */ |
411 | -function wpinv_get_invoices( $args ) { |
|
411 | +function wpinv_get_invoices($args) { |
|
412 | 412 | |
413 | 413 | // Prepare args. |
414 | 414 | $args = wp_parse_args( |
415 | 415 | $args, |
416 | 416 | array( |
417 | - 'status' => array_keys( wpinv_get_invoice_statuses() ), |
|
417 | + 'status' => array_keys(wpinv_get_invoice_statuses()), |
|
418 | 418 | 'type' => 'wpi_invoice', |
419 | - 'limit' => get_option( 'posts_per_page' ), |
|
419 | + 'limit' => get_option('posts_per_page'), |
|
420 | 420 | 'return' => 'objects', |
421 | 421 | ) |
422 | 422 | ); |
@@ -434,24 +434,24 @@ discard block |
||
434 | 434 | 'post__in' => 'include', |
435 | 435 | ); |
436 | 436 | |
437 | - foreach ( $map_legacy as $to => $from ) { |
|
438 | - if ( isset( $args[ $from ] ) ) { |
|
439 | - $args[ $to ] = $args[ $from ]; |
|
440 | - unset( $args[ $from ] ); |
|
437 | + foreach ($map_legacy as $to => $from) { |
|
438 | + if (isset($args[$from])) { |
|
439 | + $args[$to] = $args[$from]; |
|
440 | + unset($args[$from]); |
|
441 | 441 | } |
442 | 442 | } |
443 | 443 | |
444 | 444 | // Backwards compatibility. |
445 | - if ( ! empty( $args['email'] ) && empty( $args['user'] ) ) { |
|
445 | + if (!empty($args['email']) && empty($args['user'])) { |
|
446 | 446 | $args['user'] = $args['email']; |
447 | - unset( $args['email'] ); |
|
447 | + unset($args['email']); |
|
448 | 448 | } |
449 | 449 | |
450 | 450 | // Handle cases where the user is set as an email. |
451 | - if ( ! empty( $args['author'] ) && is_email( $args['author'] ) ) { |
|
452 | - $user = get_user_by( 'email', $args['user'] ); |
|
451 | + if (!empty($args['author']) && is_email($args['author'])) { |
|
452 | + $user = get_user_by('email', $args['user']); |
|
453 | 453 | |
454 | - if ( $user ) { |
|
454 | + if ($user) { |
|
455 | 455 | $args['author'] = $user->user_email; |
456 | 456 | } |
457 | 457 | |
@@ -462,31 +462,31 @@ discard block |
||
462 | 462 | |
463 | 463 | // Show all posts. |
464 | 464 | $paginate = true; |
465 | - if ( isset( $args['paginate'] ) ) { |
|
465 | + if (isset($args['paginate'])) { |
|
466 | 466 | |
467 | 467 | $paginate = $args['paginate']; |
468 | - $args['no_found_rows'] = empty( $args['paginate'] ); |
|
469 | - unset( $args['paginate'] ); |
|
468 | + $args['no_found_rows'] = empty($args['paginate']); |
|
469 | + unset($args['paginate']); |
|
470 | 470 | |
471 | 471 | } |
472 | 472 | |
473 | 473 | // Whether to return objects or fields. |
474 | 474 | $return = $args['return']; |
475 | - unset( $args['return'] ); |
|
475 | + unset($args['return']); |
|
476 | 476 | |
477 | 477 | // Get invoices. |
478 | - $invoices = new WP_Query( apply_filters( 'wpinv_get_invoices_args', $args ) ); |
|
478 | + $invoices = new WP_Query(apply_filters('wpinv_get_invoices_args', $args)); |
|
479 | 479 | |
480 | 480 | // Prepare the results. |
481 | - if ( 'objects' === $return ) { |
|
482 | - $results = array_map( 'wpinv_get_invoice', $invoices->posts ); |
|
483 | - } elseif ( 'self' === $return ) { |
|
481 | + if ('objects' === $return) { |
|
482 | + $results = array_map('wpinv_get_invoice', $invoices->posts); |
|
483 | + } elseif ('self' === $return) { |
|
484 | 484 | return $invoices; |
485 | 485 | } else { |
486 | 486 | $results = $invoices->posts; |
487 | 487 | } |
488 | 488 | |
489 | - if ( $paginate ) { |
|
489 | + if ($paginate) { |
|
490 | 490 | return (object) array( |
491 | 491 | 'invoices' => $results, |
492 | 492 | 'total' => $invoices->found_posts, |
@@ -504,8 +504,8 @@ discard block |
||
504 | 504 | * @param string $transaction_id The transaction id to check. |
505 | 505 | * @return int Invoice id on success or 0 on failure |
506 | 506 | */ |
507 | -function wpinv_get_id_by_transaction_id( $transaction_id ) { |
|
508 | - return WPInv_Invoice::get_invoice_id_by_field( $transaction_id, 'transaction_id' ); |
|
507 | +function wpinv_get_id_by_transaction_id($transaction_id) { |
|
508 | + return WPInv_Invoice::get_invoice_id_by_field($transaction_id, 'transaction_id'); |
|
509 | 509 | } |
510 | 510 | |
511 | 511 | /** |
@@ -514,8 +514,8 @@ discard block |
||
514 | 514 | * @param string $invoice_number The invoice number to check. |
515 | 515 | * @return int Invoice id on success or 0 on failure |
516 | 516 | */ |
517 | -function wpinv_get_id_by_invoice_number( $invoice_number ) { |
|
518 | - return WPInv_Invoice::get_invoice_id_by_field( $invoice_number, 'number' ); |
|
517 | +function wpinv_get_id_by_invoice_number($invoice_number) { |
|
518 | + return WPInv_Invoice::get_invoice_id_by_field($invoice_number, 'number'); |
|
519 | 519 | } |
520 | 520 | |
521 | 521 | /** |
@@ -524,8 +524,8 @@ discard block |
||
524 | 524 | * @param string $invoice_key The invoice key to check. |
525 | 525 | * @return int Invoice id on success or 0 on failure |
526 | 526 | */ |
527 | -function wpinv_get_invoice_id_by_key( $invoice_key ) { |
|
528 | - return WPInv_Invoice::get_invoice_id_by_field( $invoice_key, 'key' ); |
|
527 | +function wpinv_get_invoice_id_by_key($invoice_key) { |
|
528 | + return WPInv_Invoice::get_invoice_id_by_field($invoice_key, 'key'); |
|
529 | 529 | } |
530 | 530 | |
531 | 531 | /** |
@@ -535,19 +535,19 @@ discard block |
||
535 | 535 | * @param string $type Optionally filter by type i.e customer|system |
536 | 536 | * @return array|null |
537 | 537 | */ |
538 | -function wpinv_get_invoice_notes( $invoice = 0, $type = '' ) { |
|
538 | +function wpinv_get_invoice_notes($invoice = 0, $type = '') { |
|
539 | 539 | |
540 | 540 | // Prepare the invoice. |
541 | - $invoice = wpinv_get_invoice( $invoice ); |
|
542 | - if ( empty( $invoice ) ) { |
|
541 | + $invoice = wpinv_get_invoice($invoice); |
|
542 | + if (empty($invoice)) { |
|
543 | 543 | return NULL; |
544 | 544 | } |
545 | 545 | |
546 | 546 | // Fetch notes. |
547 | - $notes = getpaid_notes()->get_invoice_notes( $invoice->get_id(), $type ); |
|
547 | + $notes = getpaid_notes()->get_invoice_notes($invoice->get_id(), $type); |
|
548 | 548 | |
549 | 549 | // Filter the notes. |
550 | - return apply_filters( 'wpinv_invoice_notes', $notes, $invoice->get_id(), $type ); |
|
550 | + return apply_filters('wpinv_invoice_notes', $notes, $invoice->get_id(), $type); |
|
551 | 551 | } |
552 | 552 | |
553 | 553 | /** |
@@ -557,27 +557,27 @@ discard block |
||
557 | 557 | $columns = array( |
558 | 558 | |
559 | 559 | 'invoice-number' => array( |
560 | - 'title' => __( 'Invoice', 'invoicing' ), |
|
560 | + 'title' => __('Invoice', 'invoicing'), |
|
561 | 561 | 'class' => 'text-left' |
562 | 562 | ), |
563 | 563 | |
564 | 564 | 'created-date' => array( |
565 | - 'title' => __( 'Created Date', 'invoicing' ), |
|
565 | + 'title' => __('Created Date', 'invoicing'), |
|
566 | 566 | 'class' => 'text-left' |
567 | 567 | ), |
568 | 568 | |
569 | 569 | 'payment-date' => array( |
570 | - 'title' => __( 'Payment Date', 'invoicing' ), |
|
570 | + 'title' => __('Payment Date', 'invoicing'), |
|
571 | 571 | 'class' => 'text-left' |
572 | 572 | ), |
573 | 573 | |
574 | 574 | 'invoice-status' => array( |
575 | - 'title' => __( 'Status', 'invoicing' ), |
|
575 | + 'title' => __('Status', 'invoicing'), |
|
576 | 576 | 'class' => 'text-center' |
577 | 577 | ), |
578 | 578 | |
579 | 579 | 'invoice-total' => array( |
580 | - 'title' => __( 'Total', 'invoicing' ), |
|
580 | + 'title' => __('Total', 'invoicing'), |
|
581 | 581 | 'class' => 'text-right' |
582 | 582 | ), |
583 | 583 | |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | |
589 | 589 | ); |
590 | 590 | |
591 | - return apply_filters( 'wpinv_user_invoices_columns', $columns ); |
|
591 | + return apply_filters('wpinv_user_invoices_columns', $columns); |
|
592 | 592 | } |
593 | 593 | |
594 | 594 | /** |
@@ -598,54 +598,54 @@ discard block |
||
598 | 598 | |
599 | 599 | // Find the invoice. |
600 | 600 | $invoice_id = getpaid_get_current_invoice_id(); |
601 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
601 | + $invoice = new WPInv_Invoice($invoice_id); |
|
602 | 602 | |
603 | 603 | // Abort if non was found. |
604 | - if ( empty( $invoice_id ) || $invoice->is_draft() ) { |
|
604 | + if (empty($invoice_id) || $invoice->is_draft()) { |
|
605 | 605 | |
606 | 606 | return aui()->alert( |
607 | 607 | array( |
608 | 608 | 'type' => 'warning', |
609 | - 'content' => __( 'We could not find your invoice', 'invoicing' ), |
|
609 | + 'content' => __('We could not find your invoice', 'invoicing'), |
|
610 | 610 | ) |
611 | 611 | ); |
612 | 612 | |
613 | 613 | } |
614 | 614 | |
615 | 615 | // Can the user view this invoice? |
616 | - if ( ! wpinv_can_view_receipt( $invoice_id ) ) { |
|
616 | + if (!wpinv_can_view_receipt($invoice_id)) { |
|
617 | 617 | |
618 | 618 | return aui()->alert( |
619 | 619 | array( |
620 | 620 | 'type' => 'warning', |
621 | - 'content' => __( 'You are not allowed to view this receipt', 'invoicing' ), |
|
621 | + 'content' => __('You are not allowed to view this receipt', 'invoicing'), |
|
622 | 622 | ) |
623 | 623 | ); |
624 | 624 | |
625 | 625 | } |
626 | 626 | |
627 | 627 | // Load the template. |
628 | - return wpinv_get_template_html( 'invoice-receipt.php', compact( 'invoice' ) ); |
|
628 | + return wpinv_get_template_html('invoice-receipt.php', compact('invoice')); |
|
629 | 629 | |
630 | 630 | } |
631 | 631 | |
632 | 632 | /** |
633 | 633 | * Displays the invoice history. |
634 | 634 | */ |
635 | -function getpaid_invoice_history( $user_id = 0 ) { |
|
635 | +function getpaid_invoice_history($user_id = 0) { |
|
636 | 636 | |
637 | 637 | // Ensure that we have a user id. |
638 | - if ( empty( $user_id ) || ! is_numeric( $user_id ) ) { |
|
638 | + if (empty($user_id) || !is_numeric($user_id)) { |
|
639 | 639 | $user_id = get_current_user_id(); |
640 | 640 | } |
641 | 641 | |
642 | 642 | // View user id. |
643 | - if ( empty( $user_id ) ) { |
|
643 | + if (empty($user_id)) { |
|
644 | 644 | |
645 | 645 | return aui()->alert( |
646 | 646 | array( |
647 | 647 | 'type' => 'warning', |
648 | - 'content' => __( 'You must be logged in to view your invoice history.', 'invoicing' ), |
|
648 | + 'content' => __('You must be logged in to view your invoice history.', 'invoicing'), |
|
649 | 649 | ) |
650 | 650 | ); |
651 | 651 | |
@@ -655,55 +655,55 @@ discard block |
||
655 | 655 | $invoices = wpinv_get_invoices( |
656 | 656 | |
657 | 657 | array( |
658 | - 'page' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
658 | + 'page' => (get_query_var('paged')) ? absint(get_query_var('paged')) : 1, |
|
659 | 659 | 'user' => $user_id, |
660 | 660 | 'paginate' => true, |
661 | 661 | ) |
662 | 662 | |
663 | 663 | ); |
664 | 664 | |
665 | - if ( empty( $invoices->total ) ) { |
|
665 | + if (empty($invoices->total)) { |
|
666 | 666 | |
667 | 667 | return aui()->alert( |
668 | 668 | array( |
669 | 669 | 'type' => 'info', |
670 | - 'content' => __( 'No invoices found.', 'invoicing' ), |
|
670 | + 'content' => __('No invoices found.', 'invoicing'), |
|
671 | 671 | ) |
672 | 672 | ); |
673 | 673 | |
674 | 674 | } |
675 | 675 | |
676 | 676 | // Load the template. |
677 | - return wpinv_get_template_html( 'invoice-history.php', compact( 'invoices' ) ); |
|
677 | + return wpinv_get_template_html('invoice-history.php', compact('invoices')); |
|
678 | 678 | |
679 | 679 | } |
680 | 680 | |
681 | 681 | /** |
682 | 682 | * Formats an invoice number given an invoice type. |
683 | 683 | */ |
684 | -function wpinv_format_invoice_number( $number, $type = '' ) { |
|
684 | +function wpinv_format_invoice_number($number, $type = '') { |
|
685 | 685 | |
686 | 686 | // Allow other plugins to overide this. |
687 | - $check = apply_filters( 'wpinv_pre_format_invoice_number', null, $number, $type ); |
|
688 | - if ( null !== $check ) { |
|
687 | + $check = apply_filters('wpinv_pre_format_invoice_number', null, $number, $type); |
|
688 | + if (null !== $check) { |
|
689 | 689 | return $check; |
690 | 690 | } |
691 | 691 | |
692 | 692 | // Ensure that we have a numeric number. |
693 | - if ( ! is_numeric( $number ) ) { |
|
693 | + if (!is_numeric($number)) { |
|
694 | 694 | return $number; |
695 | 695 | } |
696 | 696 | |
697 | 697 | // Format the number. |
698 | - $padd = absint( (int) wpinv_get_option( 'invoice_number_padd' ) ); |
|
699 | - $prefix = sanitize_text_field( (string) wpinv_get_option( 'invoice_number_prefix', 'INV-' ) ); |
|
700 | - $postfix = sanitize_text_field( (string) wpinv_get_option( 'invoice_number_postfix' ) ); |
|
701 | - $formatted_number = zeroise( absint( $number ), $padd ); |
|
698 | + $padd = absint((int) wpinv_get_option('invoice_number_padd')); |
|
699 | + $prefix = sanitize_text_field((string) wpinv_get_option('invoice_number_prefix', 'INV-')); |
|
700 | + $postfix = sanitize_text_field((string) wpinv_get_option('invoice_number_postfix')); |
|
701 | + $formatted_number = zeroise(absint($number), $padd); |
|
702 | 702 | |
703 | 703 | // Add the prefix and post fix. |
704 | 704 | $formatted_number = $prefix . $formatted_number . $postfix; |
705 | 705 | |
706 | - return apply_filters( 'wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd ); |
|
706 | + return apply_filters('wpinv_format_invoice_number', $formatted_number, $number, $prefix, $postfix, $padd); |
|
707 | 707 | } |
708 | 708 | |
709 | 709 | /** |
@@ -712,58 +712,58 @@ discard block |
||
712 | 712 | * @param string $type. |
713 | 713 | * @return int|null|bool |
714 | 714 | */ |
715 | -function wpinv_get_next_invoice_number( $type = '' ) { |
|
715 | +function wpinv_get_next_invoice_number($type = '') { |
|
716 | 716 | |
717 | 717 | // Allow plugins to overide this. |
718 | - $check = apply_filters( 'wpinv_get_pre_next_invoice_number', null, $type ); |
|
719 | - if ( null !== $check ) { |
|
718 | + $check = apply_filters('wpinv_get_pre_next_invoice_number', null, $type); |
|
719 | + if (null !== $check) { |
|
720 | 720 | return $check; |
721 | 721 | } |
722 | 722 | |
723 | 723 | // Ensure sequential invoice numbers is active. |
724 | - if ( ! wpinv_sequential_number_active() ) { |
|
724 | + if (!wpinv_sequential_number_active()) { |
|
725 | 725 | return false; |
726 | 726 | } |
727 | 727 | |
728 | 728 | // Retrieve the current number and the start number. |
729 | - $number = (int) get_option( 'wpinv_last_invoice_number', 0 ); |
|
730 | - $start = absint( (int) wpinv_get_option( 'invoice_sequence_start', 1 ) ); |
|
729 | + $number = (int) get_option('wpinv_last_invoice_number', 0); |
|
730 | + $start = absint((int) wpinv_get_option('invoice_sequence_start', 1)); |
|
731 | 731 | |
732 | 732 | // Ensure that we are starting at a positive integer. |
733 | - $start = max( $start, 1 ); |
|
733 | + $start = max($start, 1); |
|
734 | 734 | |
735 | 735 | // If this is the first invoice, use the start number. |
736 | - $number = max( $start, $number ); |
|
736 | + $number = max($start, $number); |
|
737 | 737 | |
738 | 738 | // Format the invoice number. |
739 | - $formatted_number = wpinv_format_invoice_number( $number, $type ); |
|
739 | + $formatted_number = wpinv_format_invoice_number($number, $type); |
|
740 | 740 | |
741 | 741 | // Ensure that this number is unique. |
742 | - $invoice_id = WPInv_Invoice::get_invoice_id_by_field( $formatted_number, 'number' ); |
|
742 | + $invoice_id = WPInv_Invoice::get_invoice_id_by_field($formatted_number, 'number'); |
|
743 | 743 | |
744 | 744 | // We found a match. Nice. |
745 | - if ( empty( $invoice_id ) ) { |
|
746 | - update_option( 'wpinv_last_invoice_number', $number ); |
|
747 | - return apply_filters( 'wpinv_get_next_invoice_number', $number ); |
|
745 | + if (empty($invoice_id)) { |
|
746 | + update_option('wpinv_last_invoice_number', $number); |
|
747 | + return apply_filters('wpinv_get_next_invoice_number', $number); |
|
748 | 748 | } |
749 | 749 | |
750 | - update_option( 'wpinv_last_invoice_number', $number + 1 ); |
|
751 | - return wpinv_get_next_invoice_number( $type ); |
|
750 | + update_option('wpinv_last_invoice_number', $number + 1); |
|
751 | + return wpinv_get_next_invoice_number($type); |
|
752 | 752 | |
753 | 753 | } |
754 | 754 | |
755 | 755 | /** |
756 | 756 | * The prefix used for invoice paths. |
757 | 757 | */ |
758 | -function wpinv_post_name_prefix( $post_type = 'wpi_invoice' ) { |
|
759 | - return apply_filters( 'wpinv_post_name_prefix', 'inv-', $post_type ); |
|
758 | +function wpinv_post_name_prefix($post_type = 'wpi_invoice') { |
|
759 | + return apply_filters('wpinv_post_name_prefix', 'inv-', $post_type); |
|
760 | 760 | } |
761 | 761 | |
762 | -function wpinv_generate_post_name( $post_ID ) { |
|
763 | - $prefix = wpinv_post_name_prefix( get_post_type( $post_ID ) ); |
|
764 | - $post_name = sanitize_title( $prefix . $post_ID ); |
|
762 | +function wpinv_generate_post_name($post_ID) { |
|
763 | + $prefix = wpinv_post_name_prefix(get_post_type($post_ID)); |
|
764 | + $post_name = sanitize_title($prefix . $post_ID); |
|
765 | 765 | |
766 | - return apply_filters( 'wpinv_generate_post_name', $post_name, $post_ID, $prefix ); |
|
766 | + return apply_filters('wpinv_generate_post_name', $post_name, $post_ID, $prefix); |
|
767 | 767 | } |
768 | 768 | |
769 | 769 | /** |
@@ -771,8 +771,8 @@ discard block |
||
771 | 771 | * |
772 | 772 | * @param int|string|object|WPInv_Invoice|WPInv_Legacy_Invoice|WP_Post $invoice Invoice id, key, transaction id, number or object. |
773 | 773 | */ |
774 | -function wpinv_is_invoice_viewed( $invoice ) { |
|
775 | - $invoice = new WPInv_Invoice( $invoice ); |
|
774 | +function wpinv_is_invoice_viewed($invoice) { |
|
775 | + $invoice = new WPInv_Invoice($invoice); |
|
776 | 776 | return (bool) $invoice->get_is_viewed(); |
777 | 777 | } |
778 | 778 | |
@@ -781,17 +781,17 @@ discard block |
||
781 | 781 | * |
782 | 782 | * @param int|string|object|WPInv_Invoice|WPInv_Legacy_Invoice|WP_Post $invoice Invoice id, key, transaction id, number or object. |
783 | 783 | */ |
784 | -function getpaid_maybe_mark_invoice_as_viewed( $invoice ) { |
|
785 | - $invoice = new WPInv_Invoice( $invoice ); |
|
784 | +function getpaid_maybe_mark_invoice_as_viewed($invoice) { |
|
785 | + $invoice = new WPInv_Invoice($invoice); |
|
786 | 786 | |
787 | - if ( get_current_user_id() == $invoice->get_user_id() && ! $invoice->get_is_viewed() ) { |
|
788 | - $invoice->set_is_viewed( true ); |
|
787 | + if (get_current_user_id() == $invoice->get_user_id() && !$invoice->get_is_viewed()) { |
|
788 | + $invoice->set_is_viewed(true); |
|
789 | 789 | $invoice->save(); |
790 | 790 | } |
791 | 791 | |
792 | 792 | } |
793 | -add_action( 'wpinv_invoice_print_before_display', 'getpaid_maybe_mark_invoice_as_viewed' ); |
|
794 | -add_action( 'wpinv_before_receipt', 'getpaid_maybe_mark_invoice_as_viewed' ); |
|
793 | +add_action('wpinv_invoice_print_before_display', 'getpaid_maybe_mark_invoice_as_viewed'); |
|
794 | +add_action('wpinv_before_receipt', 'getpaid_maybe_mark_invoice_as_viewed'); |
|
795 | 795 | |
796 | 796 | /** |
797 | 797 | * Processes an invoice refund. |
@@ -801,27 +801,27 @@ discard block |
||
801 | 801 | * @param array $status_transition |
802 | 802 | * @todo: descrease customer/store earnings |
803 | 803 | */ |
804 | -function getpaid_maybe_process_refund( $invoice_id, $invoice, $status_transition ) { |
|
804 | +function getpaid_maybe_process_refund($invoice_id, $invoice, $status_transition) { |
|
805 | 805 | |
806 | - if ( empty( $status_transition['from'] ) || ! in_array( $status_transition['from'], array( 'publish', 'wpi-processing', 'wpi-renewal' ) ) ) { |
|
806 | + if (empty($status_transition['from']) || !in_array($status_transition['from'], array('publish', 'wpi-processing', 'wpi-renewal'))) { |
|
807 | 807 | return; |
808 | 808 | } |
809 | 809 | |
810 | 810 | $discount_code = $invoice->get_discount_code(); |
811 | - if ( ! empty( $discount_code ) ) { |
|
812 | - $discount = wpinv_get_discount_obj( $discount_code ); |
|
811 | + if (!empty($discount_code)) { |
|
812 | + $discount = wpinv_get_discount_obj($discount_code); |
|
813 | 813 | |
814 | - if ( $discount->exists() ) { |
|
814 | + if ($discount->exists()) { |
|
815 | 815 | $discount->increase_usage( -1 ); |
816 | 816 | } |
817 | 817 | |
818 | 818 | } |
819 | 819 | |
820 | - do_action( 'wpinv_pre_refund_invoice', $invoice, $invoice_id ); |
|
821 | - do_action( 'wpinv_refund_invoice', $invoice, $invoice_id ); |
|
822 | - do_action( 'wpinv_post_refund_invoice', $invoice, $invoice_id ); |
|
820 | + do_action('wpinv_pre_refund_invoice', $invoice, $invoice_id); |
|
821 | + do_action('wpinv_refund_invoice', $invoice, $invoice_id); |
|
822 | + do_action('wpinv_post_refund_invoice', $invoice, $invoice_id); |
|
823 | 823 | } |
824 | -add_action( 'getpaid_invoice_status_wpi-refunded', 'getpaid_maybe_process_refund', 10, 3 ); |
|
824 | +add_action('getpaid_invoice_status_wpi-refunded', 'getpaid_maybe_process_refund', 10, 3); |
|
825 | 825 | |
826 | 826 | |
827 | 827 | /** |
@@ -829,48 +829,48 @@ discard block |
||
829 | 829 | * |
830 | 830 | * @param int $invoice_id |
831 | 831 | */ |
832 | -function getpaid_process_invoice_payment( $invoice_id ) { |
|
832 | +function getpaid_process_invoice_payment($invoice_id) { |
|
833 | 833 | |
834 | 834 | // Fetch the invoice. |
835 | - $invoice = new WPInv_Invoice( $invoice_id ); |
|
835 | + $invoice = new WPInv_Invoice($invoice_id); |
|
836 | 836 | |
837 | 837 | // We only want to do this once. |
838 | - if ( 1 == get_post_meta( $invoice->get_id(), 'wpinv_processed_payment', true ) ) { |
|
838 | + if (1 == get_post_meta($invoice->get_id(), 'wpinv_processed_payment', true)) { |
|
839 | 839 | return; |
840 | 840 | } |
841 | 841 | |
842 | - update_post_meta( $invoice->get_id(), 'wpinv_processed_payment', 1 ); |
|
842 | + update_post_meta($invoice->get_id(), 'wpinv_processed_payment', 1); |
|
843 | 843 | |
844 | 844 | // Fires when processing a payment. |
845 | - do_action( 'getpaid_process_payment', $invoice ); |
|
845 | + do_action('getpaid_process_payment', $invoice); |
|
846 | 846 | |
847 | 847 | // Fire an action for each invoice item. |
848 | - foreach( $invoice->get_items() as $item ) { |
|
849 | - do_action( 'getpaid_process_item_payment', $item, $invoice ); |
|
848 | + foreach ($invoice->get_items() as $item) { |
|
849 | + do_action('getpaid_process_item_payment', $item, $invoice); |
|
850 | 850 | } |
851 | 851 | |
852 | 852 | // Increase discount usage. |
853 | 853 | $discount_code = $invoice->get_discount_code(); |
854 | - if ( ! empty( $discount_code ) && ! $invoice->is_renewal() ) { |
|
855 | - $discount = wpinv_get_discount_obj( $discount_code ); |
|
854 | + if (!empty($discount_code) && !$invoice->is_renewal()) { |
|
855 | + $discount = wpinv_get_discount_obj($discount_code); |
|
856 | 856 | |
857 | - if ( $discount->exists() ) { |
|
857 | + if ($discount->exists()) { |
|
858 | 858 | $discount->increase_usage(); |
859 | 859 | } |
860 | 860 | |
861 | 861 | } |
862 | 862 | |
863 | 863 | // Record reverse vat. |
864 | - if ( 'invoice' == $invoice->get_type() && wpinv_use_taxes() && ! $invoice->get_disable_taxes() ) { |
|
864 | + if ('invoice' == $invoice->get_type() && wpinv_use_taxes() && !$invoice->get_disable_taxes()) { |
|
865 | 865 | |
866 | - if ( WPInv_EUVat::same_country_rule() == 'no' && wpinv_is_base_country( $invoice->get_country() ) ) { |
|
867 | - $invoice->add_note( __( 'VAT was reverse charged', 'invoicing' ), false, false, true ); |
|
866 | + if (WPInv_EUVat::same_country_rule() == 'no' && wpinv_is_base_country($invoice->get_country())) { |
|
867 | + $invoice->add_note(__('VAT was reverse charged', 'invoicing'), false, false, true); |
|
868 | 868 | } |
869 | 869 | |
870 | 870 | } |
871 | 871 | |
872 | 872 | } |
873 | -add_action( 'getpaid_invoice_payment_status_changed', 'getpaid_process_invoice_payment' ); |
|
873 | +add_action('getpaid_invoice_payment_status_changed', 'getpaid_process_invoice_payment'); |
|
874 | 874 | |
875 | 875 | /** |
876 | 876 | * Returns an array of invoice item columns |
@@ -878,13 +878,13 @@ discard block |
||
878 | 878 | * @param int|WPInv_Invoice $invoice |
879 | 879 | * @return array |
880 | 880 | */ |
881 | -function getpaid_invoice_item_columns( $invoice ) { |
|
881 | +function getpaid_invoice_item_columns($invoice) { |
|
882 | 882 | |
883 | 883 | // Prepare the invoice. |
884 | - $invoice = new WPInv_Invoice( $invoice ); |
|
884 | + $invoice = new WPInv_Invoice($invoice); |
|
885 | 885 | |
886 | 886 | // Abort if there is no invoice. |
887 | - if ( 0 == $invoice->get_id() ) { |
|
887 | + if (0 == $invoice->get_id()) { |
|
888 | 888 | return array(); |
889 | 889 | } |
890 | 890 | |
@@ -892,47 +892,47 @@ discard block |
||
892 | 892 | $columns = apply_filters( |
893 | 893 | 'getpaid_invoice_item_columns', |
894 | 894 | array( |
895 | - 'name' => __( 'Item', 'invoicing' ), |
|
896 | - 'price' => __( 'Price', 'invoicing' ), |
|
897 | - 'quantity' => __( 'Quantity', 'invoicing' ), |
|
898 | - 'subtotal' => __( 'Subtotal', 'invoicing' ), |
|
895 | + 'name' => __('Item', 'invoicing'), |
|
896 | + 'price' => __('Price', 'invoicing'), |
|
897 | + 'quantity' => __('Quantity', 'invoicing'), |
|
898 | + 'subtotal' => __('Subtotal', 'invoicing'), |
|
899 | 899 | ), |
900 | 900 | $invoice |
901 | 901 | ); |
902 | 902 | |
903 | 903 | // Quantities. |
904 | - if ( isset( $columns[ 'quantity' ] ) ) { |
|
904 | + if (isset($columns['quantity'])) { |
|
905 | 905 | |
906 | - if ( 'hours' == $invoice->get_template() ) { |
|
907 | - $columns[ 'quantity' ] = __( 'Hours', 'invoicing' ); |
|
906 | + if ('hours' == $invoice->get_template()) { |
|
907 | + $columns['quantity'] = __('Hours', 'invoicing'); |
|
908 | 908 | } |
909 | 909 | |
910 | - if ( ! wpinv_item_quantities_enabled() || 'amount' == $invoice->get_template() ) { |
|
911 | - unset( $columns[ 'quantity' ] ); |
|
910 | + if (!wpinv_item_quantities_enabled() || 'amount' == $invoice->get_template()) { |
|
911 | + unset($columns['quantity']); |
|
912 | 912 | } |
913 | 913 | |
914 | 914 | } |
915 | 915 | |
916 | 916 | |
917 | 917 | // Price. |
918 | - if ( isset( $columns[ 'price' ] ) ) { |
|
918 | + if (isset($columns['price'])) { |
|
919 | 919 | |
920 | - if ( 'amount' == $invoice->get_template() ) { |
|
921 | - $columns[ 'price' ] = __( 'Amount', 'invoicing' ); |
|
920 | + if ('amount' == $invoice->get_template()) { |
|
921 | + $columns['price'] = __('Amount', 'invoicing'); |
|
922 | 922 | } |
923 | 923 | |
924 | - if ( 'hours' == $invoice->get_template() ) { |
|
925 | - $columns[ 'price' ] = __( 'Rate', 'invoicing' ); |
|
924 | + if ('hours' == $invoice->get_template()) { |
|
925 | + $columns['price'] = __('Rate', 'invoicing'); |
|
926 | 926 | } |
927 | 927 | |
928 | 928 | } |
929 | 929 | |
930 | 930 | |
931 | 931 | // Sub total. |
932 | - if ( isset( $columns[ 'subtotal' ] ) ) { |
|
932 | + if (isset($columns['subtotal'])) { |
|
933 | 933 | |
934 | - if ( 'amount' == $invoice->get_template() ) { |
|
935 | - unset( $columns[ 'subtotal' ] ); |
|
934 | + if ('amount' == $invoice->get_template()) { |
|
935 | + unset($columns['subtotal']); |
|
936 | 936 | } |
937 | 937 | |
938 | 938 | } |
@@ -946,30 +946,30 @@ discard block |
||
946 | 946 | * @param int|WPInv_Invoice $invoice |
947 | 947 | * @return array |
948 | 948 | */ |
949 | -function getpaid_invoice_totals_rows( $invoice ) { |
|
949 | +function getpaid_invoice_totals_rows($invoice) { |
|
950 | 950 | |
951 | 951 | // Prepare the invoice. |
952 | - $invoice = new WPInv_Invoice( $invoice ); |
|
952 | + $invoice = new WPInv_Invoice($invoice); |
|
953 | 953 | |
954 | 954 | // Abort if there is no invoice. |
955 | - if ( 0 == $invoice->get_id() ) { |
|
955 | + if (0 == $invoice->get_id()) { |
|
956 | 956 | return array(); |
957 | 957 | } |
958 | 958 | |
959 | 959 | $totals = apply_filters( |
960 | 960 | 'getpaid_invoice_totals_rows', |
961 | 961 | array( |
962 | - 'subtotal' => __( 'Subtotal', 'invoicing' ), |
|
963 | - 'tax' => __( 'Tax', 'invoicing' ), |
|
964 | - 'fee' => __( 'Fee', 'invoicing' ), |
|
965 | - 'discount' => __( 'Discount', 'invoicing' ), |
|
966 | - 'total' => __( 'Total', 'invoicing' ), |
|
962 | + 'subtotal' => __('Subtotal', 'invoicing'), |
|
963 | + 'tax' => __('Tax', 'invoicing'), |
|
964 | + 'fee' => __('Fee', 'invoicing'), |
|
965 | + 'discount' => __('Discount', 'invoicing'), |
|
966 | + 'total' => __('Total', 'invoicing'), |
|
967 | 967 | ), |
968 | 968 | $invoice |
969 | 969 | ); |
970 | 970 | |
971 | - if ( ( $invoice->get_disable_taxes() || ! wpinv_use_taxes() ) && isset( $totals['tax'] ) ) { |
|
972 | - unset( $totals['tax'] ); |
|
971 | + if (($invoice->get_disable_taxes() || !wpinv_use_taxes()) && isset($totals['tax'])) { |
|
972 | + unset($totals['tax']); |
|
973 | 973 | } |
974 | 974 | |
975 | 975 | return $totals; |
@@ -980,46 +980,46 @@ discard block |
||
980 | 980 | * |
981 | 981 | * @param WPInv_Invoice $invoice |
982 | 982 | */ |
983 | -function getpaid_new_invoice( $invoice ) { |
|
983 | +function getpaid_new_invoice($invoice) { |
|
984 | 984 | |
985 | - if ( ! $invoice->get_status() ) { |
|
985 | + if (!$invoice->get_status()) { |
|
986 | 986 | return; |
987 | 987 | } |
988 | 988 | |
989 | 989 | // Add an invoice created note. |
990 | 990 | $invoice->add_note( |
991 | 991 | wp_sprintf( |
992 | - __( 'Invoice created with the status "%s".', 'invoicing' ), |
|
993 | - wpinv_status_nicename( $invoice->get_status() ) |
|
992 | + __('Invoice created with the status "%s".', 'invoicing'), |
|
993 | + wpinv_status_nicename($invoice->get_status()) |
|
994 | 994 | ) |
995 | 995 | ); |
996 | 996 | |
997 | 997 | } |
998 | -add_action( 'getpaid_new_invoice', 'getpaid_new_invoice' ); |
|
998 | +add_action('getpaid_new_invoice', 'getpaid_new_invoice'); |
|
999 | 999 | |
1000 | 1000 | /** |
1001 | 1001 | * This function updates invoice caches. |
1002 | 1002 | * |
1003 | 1003 | * @param WPInv_Invoice $invoice |
1004 | 1004 | */ |
1005 | -function getpaid_update_invoice_caches( $invoice ) { |
|
1005 | +function getpaid_update_invoice_caches($invoice) { |
|
1006 | 1006 | |
1007 | 1007 | // Cache invoice number. |
1008 | - wp_cache_set( $invoice->get_number(), $invoice->get_id(), "getpaid_invoice_numbers_to_invoice_ids" ); |
|
1008 | + wp_cache_set($invoice->get_number(), $invoice->get_id(), "getpaid_invoice_numbers_to_invoice_ids"); |
|
1009 | 1009 | |
1010 | 1010 | // Cache invoice key. |
1011 | - wp_cache_set( $invoice->get_key(), $invoice->get_id(), "getpaid_invoice_keys_to_invoice_ids" ); |
|
1011 | + wp_cache_set($invoice->get_key(), $invoice->get_id(), "getpaid_invoice_keys_to_invoice_ids"); |
|
1012 | 1012 | |
1013 | 1013 | // (Maybe) cache transaction id. |
1014 | 1014 | $transaction_id = $invoice->get_transaction_id(); |
1015 | 1015 | |
1016 | - if ( ! empty( $transaction_id ) ) { |
|
1017 | - wp_cache_set( $transaction_id, $invoice->get_id(), "getpaid_invoice_transaction_ids_to_invoice_ids" ); |
|
1016 | + if (!empty($transaction_id)) { |
|
1017 | + wp_cache_set($transaction_id, $invoice->get_id(), "getpaid_invoice_transaction_ids_to_invoice_ids"); |
|
1018 | 1018 | } |
1019 | 1019 | |
1020 | 1020 | } |
1021 | -add_action( 'getpaid_new_invoice', 'getpaid_update_invoice_caches', 5 ); |
|
1022 | -add_action( 'getpaid_update_invoice', 'getpaid_update_invoice_caches', 5 ); |
|
1021 | +add_action('getpaid_new_invoice', 'getpaid_update_invoice_caches', 5); |
|
1022 | +add_action('getpaid_update_invoice', 'getpaid_update_invoice_caches', 5); |
|
1023 | 1023 | |
1024 | 1024 | /** |
1025 | 1025 | * Duplicates an invoice. |
@@ -1029,7 +1029,7 @@ discard block |
||
1029 | 1029 | * @param WPInv_Invoice $old_invoice The invoice to duplicate |
1030 | 1030 | * @return WPInv_Invoice The new invoice. |
1031 | 1031 | */ |
1032 | -function getpaid_duplicate_invoice( $old_invoice ) { |
|
1032 | +function getpaid_duplicate_invoice($old_invoice) { |
|
1033 | 1033 | |
1034 | 1034 | // Create the new invoice. |
1035 | 1035 | $invoice = new WPInv_Invoice(); |
@@ -1090,126 +1090,126 @@ discard block |
||
1090 | 1090 | * @param WPInv_Invoice $invoice |
1091 | 1091 | * @return array |
1092 | 1092 | */ |
1093 | -function getpaid_get_invoice_meta( $invoice ) { |
|
1093 | +function getpaid_get_invoice_meta($invoice) { |
|
1094 | 1094 | |
1095 | 1095 | // Load the invoice meta. |
1096 | 1096 | $meta = array( |
1097 | 1097 | |
1098 | 1098 | 'number' => array( |
1099 | 1099 | 'label' => sprintf( |
1100 | - __( '%s Number', 'invoicing' ), |
|
1101 | - ucfirst( $invoice->get_type() ) |
|
1100 | + __('%s Number', 'invoicing'), |
|
1101 | + ucfirst($invoice->get_type()) |
|
1102 | 1102 | ), |
1103 | - 'value' => sanitize_text_field( $invoice->get_number() ), |
|
1103 | + 'value' => sanitize_text_field($invoice->get_number()), |
|
1104 | 1104 | ), |
1105 | 1105 | |
1106 | 1106 | 'status' => array( |
1107 | 1107 | 'label' => sprintf( |
1108 | - __( '%s Status', 'invoicing' ), |
|
1109 | - ucfirst( $invoice->get_type() ) |
|
1108 | + __('%s Status', 'invoicing'), |
|
1109 | + ucfirst($invoice->get_type()) |
|
1110 | 1110 | ), |
1111 | 1111 | 'value' => $invoice->get_status_label_html(), |
1112 | 1112 | ), |
1113 | 1113 | |
1114 | 1114 | 'date' => array( |
1115 | 1115 | 'label' => sprintf( |
1116 | - __( '%s Date', 'invoicing' ), |
|
1117 | - ucfirst( $invoice->get_type() ) |
|
1116 | + __('%s Date', 'invoicing'), |
|
1117 | + ucfirst($invoice->get_type()) |
|
1118 | 1118 | ), |
1119 | - 'value' => getpaid_format_date( $invoice->get_created_date() ), |
|
1119 | + 'value' => getpaid_format_date($invoice->get_created_date()), |
|
1120 | 1120 | ), |
1121 | 1121 | |
1122 | 1122 | 'date_paid' => array( |
1123 | - 'label' => __( 'Paid On', 'invoicing' ), |
|
1124 | - 'value' => getpaid_format_date( $invoice->get_completed_date() ), |
|
1123 | + 'label' => __('Paid On', 'invoicing'), |
|
1124 | + 'value' => getpaid_format_date($invoice->get_completed_date()), |
|
1125 | 1125 | ), |
1126 | 1126 | |
1127 | 1127 | 'gateway' => array( |
1128 | - 'label' => __( 'Payment Method', 'invoicing' ), |
|
1129 | - 'value' => sanitize_text_field( $invoice->get_gateway_title() ), |
|
1128 | + 'label' => __('Payment Method', 'invoicing'), |
|
1129 | + 'value' => sanitize_text_field($invoice->get_gateway_title()), |
|
1130 | 1130 | ), |
1131 | 1131 | |
1132 | 1132 | 'transaction_id' => array( |
1133 | - 'label' => __( 'Transaction ID', 'invoicing' ), |
|
1134 | - 'value' => sanitize_text_field( $invoice->get_transaction_id() ), |
|
1133 | + 'label' => __('Transaction ID', 'invoicing'), |
|
1134 | + 'value' => sanitize_text_field($invoice->get_transaction_id()), |
|
1135 | 1135 | ), |
1136 | 1136 | |
1137 | 1137 | 'due_date' => array( |
1138 | - 'label' => __( 'Due Date', 'invoicing' ), |
|
1139 | - 'value' => getpaid_format_date( $invoice->get_due_date() ), |
|
1138 | + 'label' => __('Due Date', 'invoicing'), |
|
1139 | + 'value' => getpaid_format_date($invoice->get_due_date()), |
|
1140 | 1140 | ), |
1141 | 1141 | |
1142 | 1142 | 'vat_number' => array( |
1143 | 1143 | 'label' => sprintf( |
1144 | - __( '%s Number', 'invoicing' ), |
|
1144 | + __('%s Number', 'invoicing'), |
|
1145 | 1145 | getpaid_tax()->get_vat_name() |
1146 | 1146 | ), |
1147 | - 'value' => sanitize_text_field( $invoice->get_vat_number() ), |
|
1147 | + 'value' => sanitize_text_field($invoice->get_vat_number()), |
|
1148 | 1148 | ), |
1149 | 1149 | |
1150 | 1150 | ); |
1151 | 1151 | |
1152 | 1152 | // If it is not paid, remove the date of payment. |
1153 | - if ( ! $invoice->is_paid() ) { |
|
1154 | - unset( $meta[ 'date_paid' ] ); |
|
1155 | - unset( $meta[ 'transaction_id' ] ); |
|
1153 | + if (!$invoice->is_paid()) { |
|
1154 | + unset($meta['date_paid']); |
|
1155 | + unset($meta['transaction_id']); |
|
1156 | 1156 | } |
1157 | 1157 | |
1158 | - if ( ! $invoice->is_paid() || 'none' == $invoice->get_gateway() ) { |
|
1159 | - unset( $meta[ 'gateway' ] ); |
|
1158 | + if (!$invoice->is_paid() || 'none' == $invoice->get_gateway()) { |
|
1159 | + unset($meta['gateway']); |
|
1160 | 1160 | } |
1161 | 1161 | |
1162 | 1162 | // Only display the due date if due dates are enabled. |
1163 | - if ( ! $invoice->needs_payment() || ! wpinv_get_option( 'overdue_active' ) ) { |
|
1164 | - unset( $meta[ 'due_date' ] ); |
|
1163 | + if (!$invoice->needs_payment() || !wpinv_get_option('overdue_active')) { |
|
1164 | + unset($meta['due_date']); |
|
1165 | 1165 | } |
1166 | 1166 | |
1167 | 1167 | // Only display the vat number if taxes are enabled. |
1168 | - if ( ! wpinv_use_taxes() ) { |
|
1169 | - unset( $meta[ 'vat_number' ] ); |
|
1168 | + if (!wpinv_use_taxes()) { |
|
1169 | + unset($meta['vat_number']); |
|
1170 | 1170 | } |
1171 | 1171 | |
1172 | - if ( $invoice->is_recurring() ) { |
|
1172 | + if ($invoice->is_recurring()) { |
|
1173 | 1173 | |
1174 | 1174 | // Link to the parent invoice. |
1175 | - if ( $invoice->is_renewal() ) { |
|
1175 | + if ($invoice->is_renewal()) { |
|
1176 | 1176 | |
1177 | - $meta[ 'parent' ] = array( |
|
1177 | + $meta['parent'] = array( |
|
1178 | 1178 | |
1179 | 1179 | 'label' => sprintf( |
1180 | - __( 'Parent %s', 'invoicing' ), |
|
1181 | - ucfirst( $invoice->get_type() ) |
|
1180 | + __('Parent %s', 'invoicing'), |
|
1181 | + ucfirst($invoice->get_type()) |
|
1182 | 1182 | ), |
1183 | 1183 | |
1184 | - 'value' => wpinv_invoice_link( $invoice->get_parent_id() ), |
|
1184 | + 'value' => wpinv_invoice_link($invoice->get_parent_id()), |
|
1185 | 1185 | |
1186 | 1186 | ); |
1187 | 1187 | |
1188 | 1188 | } |
1189 | 1189 | |
1190 | - $subscription = wpinv_get_subscription( $invoice ); |
|
1190 | + $subscription = wpinv_get_subscription($invoice); |
|
1191 | 1191 | |
1192 | - if ( ! empty ( $subscription ) ) { |
|
1192 | + if (!empty ($subscription)) { |
|
1193 | 1193 | |
1194 | 1194 | // Display the renewal date. |
1195 | - if ( $subscription->is_active() && 'cancelled' != $subscription->get_status() ) { |
|
1195 | + if ($subscription->is_active() && 'cancelled' != $subscription->get_status()) { |
|
1196 | 1196 | |
1197 | - $meta[ 'renewal_date' ] = array( |
|
1197 | + $meta['renewal_date'] = array( |
|
1198 | 1198 | |
1199 | - 'label' => __( 'Renews On', 'invoicing' ), |
|
1200 | - 'value' => getpaid_format_date( $subscription->get_expiration() ), |
|
1199 | + 'label' => __('Renews On', 'invoicing'), |
|
1200 | + 'value' => getpaid_format_date($subscription->get_expiration()), |
|
1201 | 1201 | |
1202 | 1202 | ); |
1203 | 1203 | |
1204 | 1204 | } |
1205 | 1205 | |
1206 | - if ( $invoice->is_parent() ) { |
|
1206 | + if ($invoice->is_parent()) { |
|
1207 | 1207 | |
1208 | 1208 | // Display the recurring amount. |
1209 | - $meta[ 'recurring_total' ] = array( |
|
1209 | + $meta['recurring_total'] = array( |
|
1210 | 1210 | |
1211 | - 'label' => __( 'Recurring Amount', 'invoicing' ), |
|
1212 | - 'value' => wpinv_price( wpinv_format_amount( $subscription->get_recurring_amount() ), $invoice->get_currency() ), |
|
1211 | + 'label' => __('Recurring Amount', 'invoicing'), |
|
1212 | + 'value' => wpinv_price(wpinv_format_amount($subscription->get_recurring_amount()), $invoice->get_currency()), |
|
1213 | 1213 | |
1214 | 1214 | ); |
1215 | 1215 | |
@@ -1219,15 +1219,15 @@ discard block |
||
1219 | 1219 | } |
1220 | 1220 | |
1221 | 1221 | // Add the invoice total to the meta. |
1222 | - $meta[ 'invoice_total' ] = array( |
|
1222 | + $meta['invoice_total'] = array( |
|
1223 | 1223 | |
1224 | - 'label' => __( 'Total Amount', 'invoicing' ), |
|
1225 | - 'value' => wpinv_price( wpinv_format_amount( $invoice->get_total() ), $invoice->get_currency() ), |
|
1224 | + 'label' => __('Total Amount', 'invoicing'), |
|
1225 | + 'value' => wpinv_price(wpinv_format_amount($invoice->get_total()), $invoice->get_currency()), |
|
1226 | 1226 | |
1227 | 1227 | ); |
1228 | 1228 | |
1229 | 1229 | // Provide a way for third party plugins to filter the meta. |
1230 | - $meta = apply_filters( 'getpaid_invoice_meta_data', $meta, $invoice ); |
|
1230 | + $meta = apply_filters('getpaid_invoice_meta_data', $meta, $invoice); |
|
1231 | 1231 | |
1232 | 1232 | return $meta; |
1233 | 1233 |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | * Personal data exporters. |
4 | 4 | */ |
5 | 5 | |
6 | -defined( 'ABSPATH' ) || exit; |
|
6 | +defined('ABSPATH') || exit; |
|
7 | 7 | |
8 | 8 | /** |
9 | 9 | * WPInv_Privacy_Exporters Class. |
@@ -17,38 +17,38 @@ discard block |
||
17 | 17 | * @param int $page Page. |
18 | 18 | * @return array An array of invoice data in name value pairs |
19 | 19 | */ |
20 | - public static function customer_invoice_data_exporter( $email_address, $page ) { |
|
20 | + public static function customer_invoice_data_exporter($email_address, $page) { |
|
21 | 21 | $done = false; |
22 | 22 | $page = (int) $page; |
23 | 23 | $data_to_export = array(); |
24 | 24 | |
25 | - $user = get_user_by( 'email', $email_address ); |
|
26 | - if ( ! $user instanceof WP_User ) { |
|
25 | + $user = get_user_by('email', $email_address); |
|
26 | + if (!$user instanceof WP_User) { |
|
27 | 27 | return array( |
28 | 28 | 'data' => $data_to_export, |
29 | 29 | 'done' => true, |
30 | 30 | ); |
31 | 31 | } |
32 | 32 | |
33 | - $args = array( |
|
33 | + $args = array( |
|
34 | 34 | 'limit' => 30, |
35 | 35 | 'page' => $page, |
36 | 36 | 'user' => $user->ID, |
37 | 37 | ); |
38 | 38 | |
39 | - $invoices = wpinv_get_invoices( $args ); |
|
39 | + $invoices = wpinv_get_invoices($args); |
|
40 | 40 | |
41 | - if ( 0 < count( $invoices ) ) { |
|
42 | - foreach ( $invoices as $invoice ) { |
|
41 | + if (0 < count($invoices)) { |
|
42 | + foreach ($invoices as $invoice) { |
|
43 | 43 | $data_to_export[] = array( |
44 | 44 | 'group_id' => 'customer_invoices', |
45 | - 'group_label' => __( 'Invoicing Data', 'invoicing' ), |
|
46 | - 'group_description' => __( 'Customer invoicing data.', 'invoicing' ), |
|
45 | + 'group_label' => __('Invoicing Data', 'invoicing'), |
|
46 | + 'group_description' => __('Customer invoicing data.', 'invoicing'), |
|
47 | 47 | 'item_id' => "wpinv-{$invoice->ID}", |
48 | - 'data' => self::get_customer_invoice_data( $invoice ), |
|
48 | + 'data' => self::get_customer_invoice_data($invoice), |
|
49 | 49 | ); |
50 | 50 | } |
51 | - $done = 30 > count( $invoices ); |
|
51 | + $done = 30 > count($invoices); |
|
52 | 52 | } else { |
53 | 53 | $done = true; |
54 | 54 | } |
@@ -66,59 +66,59 @@ discard block |
||
66 | 66 | * @param WPInv_Invoice $invoice invoice object. |
67 | 67 | * @return array |
68 | 68 | */ |
69 | - public static function get_customer_invoice_data( $invoice ) { |
|
69 | + public static function get_customer_invoice_data($invoice) { |
|
70 | 70 | $personal_data = array(); |
71 | 71 | |
72 | 72 | $props_to_export = array( |
73 | - 'number' => __( 'Invoice Number', 'invoicing' ), |
|
74 | - 'created_date' => __( 'Invoice Date', 'invoicing' ), |
|
75 | - 'status' => __( 'Invoice Status', 'invoicing' ), |
|
76 | - 'total' => __( 'Invoice Total', 'invoicing' ), |
|
77 | - 'items' => __( 'Invoice Items', 'invoicing' ), |
|
78 | - 'first_name' => __( 'First Name', 'invoicing' ), |
|
79 | - 'last_name' => __( 'Last Name', 'invoicing' ), |
|
80 | - 'email' => __( 'Email Address', 'invoicing' ), |
|
81 | - '_wpinv_company' => __( 'Company', 'invoicing' ), |
|
82 | - 'phone' => __( 'Phone Number', 'invoicing' ), |
|
83 | - 'address' => __( 'Address', 'invoicing' ), |
|
84 | - '_wpinv_city' => __( 'City', 'invoicing' ), |
|
85 | - '_wpinv_country' => __( 'Country', 'invoicing' ), |
|
86 | - '_wpinv_state' => __( 'State', 'invoicing' ), |
|
87 | - '_wpinv_zip' => __( 'Zip Code', 'invoicing' ), |
|
73 | + 'number' => __('Invoice Number', 'invoicing'), |
|
74 | + 'created_date' => __('Invoice Date', 'invoicing'), |
|
75 | + 'status' => __('Invoice Status', 'invoicing'), |
|
76 | + 'total' => __('Invoice Total', 'invoicing'), |
|
77 | + 'items' => __('Invoice Items', 'invoicing'), |
|
78 | + 'first_name' => __('First Name', 'invoicing'), |
|
79 | + 'last_name' => __('Last Name', 'invoicing'), |
|
80 | + 'email' => __('Email Address', 'invoicing'), |
|
81 | + '_wpinv_company' => __('Company', 'invoicing'), |
|
82 | + 'phone' => __('Phone Number', 'invoicing'), |
|
83 | + 'address' => __('Address', 'invoicing'), |
|
84 | + '_wpinv_city' => __('City', 'invoicing'), |
|
85 | + '_wpinv_country' => __('Country', 'invoicing'), |
|
86 | + '_wpinv_state' => __('State', 'invoicing'), |
|
87 | + '_wpinv_zip' => __('Zip Code', 'invoicing'), |
|
88 | 88 | ); |
89 | 89 | |
90 | - $subscription = wpinv_get_subscription( $invoice ); |
|
90 | + $subscription = wpinv_get_subscription($invoice); |
|
91 | 91 | $period = $initial_amt = $bill_times = $billed = $renewal_date = ''; |
92 | 92 | |
93 | - if ( $invoice->is_recurring() && !empty( $subscription ) ) { |
|
94 | - $frequency = getpaid_get_subscription_period_label( $subscription->get_period(),$subscription->get_frequency() ); |
|
95 | - $period = wpinv_price( wpinv_format_amount( $subscription->get_recurring_amount() ), $subscription->get_parent_payment()->get_currency() ) . ' / ' . $frequency; |
|
96 | - $initial_amt = wpinv_price( wpinv_format_amount( $subscription->get_initial_amount() ), $subscription->get_parent_payment()->get_currency() ); |
|
97 | - $bill_times = $subscription->get_times_billed() . ' / ' . ( ( $subscription->get_bill_times() == 0 ) ? __( 'Until Cancelled', 'invoicing' ) : $subscription->get_bill_times() ); |
|
98 | - $renewal_date = ! empty( $subscription->get_expiration() ) ? getpaid_format_date( $subscription->get_expiration() ) : __( 'N/A', 'invoicing' ); |
|
99 | - |
|
100 | - $props_to_export['period'] = __( 'Billing Cycle', 'invoicing' ); |
|
101 | - $props_to_export['initial_amount'] = __( 'Initial Amount', 'invoicing' ); |
|
102 | - $props_to_export['bill_times'] = __( 'Times Billed', 'invoicing' ); |
|
103 | - $props_to_export['renewal_date'] = __( 'Renewal Date', 'invoicing' ); |
|
93 | + if ($invoice->is_recurring() && !empty($subscription)) { |
|
94 | + $frequency = getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency()); |
|
95 | + $period = wpinv_price(wpinv_format_amount($subscription->get_recurring_amount()), $subscription->get_parent_payment()->get_currency()) . ' / ' . $frequency; |
|
96 | + $initial_amt = wpinv_price(wpinv_format_amount($subscription->get_initial_amount()), $subscription->get_parent_payment()->get_currency()); |
|
97 | + $bill_times = $subscription->get_times_billed() . ' / ' . (($subscription->get_bill_times() == 0) ? __('Until Cancelled', 'invoicing') : $subscription->get_bill_times()); |
|
98 | + $renewal_date = !empty($subscription->get_expiration()) ? getpaid_format_date($subscription->get_expiration()) : __('N/A', 'invoicing'); |
|
99 | + |
|
100 | + $props_to_export['period'] = __('Billing Cycle', 'invoicing'); |
|
101 | + $props_to_export['initial_amount'] = __('Initial Amount', 'invoicing'); |
|
102 | + $props_to_export['bill_times'] = __('Times Billed', 'invoicing'); |
|
103 | + $props_to_export['renewal_date'] = __('Renewal Date', 'invoicing'); |
|
104 | 104 | } |
105 | 105 | |
106 | - $props_to_export['ip'] = __( 'IP Address', 'invoicing' ); |
|
107 | - $props_to_export['view_url'] = __( 'Invoice Link', 'invoicing' ); |
|
106 | + $props_to_export['ip'] = __('IP Address', 'invoicing'); |
|
107 | + $props_to_export['view_url'] = __('Invoice Link', 'invoicing'); |
|
108 | 108 | |
109 | - $props_to_export = apply_filters( 'wpinv_privacy_export_invoice_personal_data_props', $props_to_export, $invoice, $subscription); |
|
109 | + $props_to_export = apply_filters('wpinv_privacy_export_invoice_personal_data_props', $props_to_export, $invoice, $subscription); |
|
110 | 110 | |
111 | - foreach ( $props_to_export as $prop => $name ) { |
|
111 | + foreach ($props_to_export as $prop => $name) { |
|
112 | 112 | $value = ''; |
113 | 113 | |
114 | - switch ( $prop ) { |
|
114 | + switch ($prop) { |
|
115 | 115 | case 'items': |
116 | 116 | $item_names = array(); |
117 | - foreach ( $invoice->get_cart_details() as $key => $cart_item ) { |
|
118 | - $item_quantity = $cart_item['quantity'] > 0 ? absint( $cart_item['quantity'] ) : 1; |
|
117 | + foreach ($invoice->get_cart_details() as $key => $cart_item) { |
|
118 | + $item_quantity = $cart_item['quantity'] > 0 ? absint($cart_item['quantity']) : 1; |
|
119 | 119 | $item_names[] = $cart_item['name'] . ' x ' . $item_quantity; |
120 | 120 | } |
121 | - $value = implode( ', ', $item_names ); |
|
121 | + $value = implode(', ', $item_names); |
|
122 | 122 | break; |
123 | 123 | case 'status': |
124 | 124 | $value = $invoice->get_status(true); |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | $value = $renewal_date; |
140 | 140 | break; |
141 | 141 | default: |
142 | - if ( is_callable( array( $invoice, 'get_' . $prop ) ) ) { |
|
142 | + if (is_callable(array($invoice, 'get_' . $prop))) { |
|
143 | 143 | $value = $invoice->{"get_$prop"}(); |
144 | 144 | } else { |
145 | 145 | $value = $invoice->get_meta($prop); |
@@ -147,9 +147,9 @@ discard block |
||
147 | 147 | break; |
148 | 148 | } |
149 | 149 | |
150 | - $value = apply_filters( 'wpi_privacy_export_invoice_personal_data_prop', $value, $prop, $invoice ); |
|
150 | + $value = apply_filters('wpi_privacy_export_invoice_personal_data_prop', $value, $prop, $invoice); |
|
151 | 151 | |
152 | - if ( $value ) { |
|
152 | + if ($value) { |
|
153 | 153 | $personal_data[] = array( |
154 | 154 | 'name' => $name, |
155 | 155 | 'value' => $value, |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | |
159 | 159 | } |
160 | 160 | |
161 | - $personal_data = apply_filters( 'wpinv_privacy_export_invoice_personal_data', $personal_data, $invoice ); |
|
161 | + $personal_data = apply_filters('wpinv_privacy_export_invoice_personal_data', $personal_data, $invoice); |
|
162 | 162 | |
163 | 163 | return $personal_data; |
164 | 164 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @since 1.0.0 |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Main Invoicing class. |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | * @param string $prop The prop to set. |
64 | 64 | * @param mixed $value The value to retrieve. |
65 | 65 | */ |
66 | - public function set( $prop, $value ) { |
|
67 | - $this->data[ $prop ] = $value; |
|
66 | + public function set($prop, $value) { |
|
67 | + $this->data[$prop] = $value; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -73,10 +73,10 @@ discard block |
||
73 | 73 | * @param string $prop The prop to set. |
74 | 74 | * @return mixed The value. |
75 | 75 | */ |
76 | - public function get( $prop ) { |
|
76 | + public function get($prop) { |
|
77 | 77 | |
78 | - if ( isset( $this->data[ $prop ] ) ) { |
|
79 | - return $this->data[ $prop ]; |
|
78 | + if (isset($this->data[$prop])) { |
|
79 | + return $this->data[$prop]; |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | return null; |
@@ -88,25 +88,25 @@ discard block |
||
88 | 88 | public function set_properties() { |
89 | 89 | |
90 | 90 | // Sessions. |
91 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
92 | - $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
91 | + $this->set('session', new WPInv_Session_Handler()); |
|
92 | + $GLOBALS['wpi_session'] = $this->get('session'); // Backwards compatibility. |
|
93 | 93 | $this->tax = new WPInv_EUVat(); |
94 | 94 | $this->tax->init(); |
95 | 95 | $GLOBALS['wpinv_euvat'] = $this->tax; // Backwards compatibility. |
96 | 96 | |
97 | 97 | // Init other objects. |
98 | - $this->set( 'reports', new WPInv_Reports() ); // TODO: Refactor. |
|
99 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
100 | - $this->set( 'notes', new WPInv_Notes() ); |
|
101 | - $this->set( 'api', new WPInv_API() ); |
|
102 | - $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
103 | - $this->set( 'template', new GetPaid_Template() ); |
|
104 | - $this->set( 'admin', new GetPaid_Admin() ); |
|
105 | - $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
106 | - $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
107 | - $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
108 | - $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
109 | - $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
98 | + $this->set('reports', new WPInv_Reports()); // TODO: Refactor. |
|
99 | + $this->set('session', new WPInv_Session_Handler()); |
|
100 | + $this->set('notes', new WPInv_Notes()); |
|
101 | + $this->set('api', new WPInv_API()); |
|
102 | + $this->set('post_types', new GetPaid_Post_Types()); |
|
103 | + $this->set('template', new GetPaid_Template()); |
|
104 | + $this->set('admin', new GetPaid_Admin()); |
|
105 | + $this->set('subscriptions', new WPInv_Subscriptions()); |
|
106 | + $this->set('invoice_emails', new GetPaid_Invoice_Notification_Emails()); |
|
107 | + $this->set('subscription_emails', new GetPaid_Subscription_Notification_Emails()); |
|
108 | + $this->set('daily_maintenace', new GetPaid_Daily_Maintenance()); |
|
109 | + $this->set('payment_forms', new GetPaid_Payment_Forms()); |
|
110 | 110 | |
111 | 111 | } |
112 | 112 | |
@@ -114,8 +114,8 @@ discard block |
||
114 | 114 | * Define plugin constants. |
115 | 115 | */ |
116 | 116 | public function define_constants() { |
117 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
118 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
117 | + define('WPINV_PLUGIN_DIR', plugin_dir_path(WPINV_PLUGIN_FILE)); |
|
118 | + define('WPINV_PLUGIN_URL', plugin_dir_url(WPINV_PLUGIN_FILE)); |
|
119 | 119 | $this->version = WPINV_VERSION; |
120 | 120 | } |
121 | 121 | |
@@ -126,27 +126,27 @@ discard block |
||
126 | 126 | */ |
127 | 127 | protected function init_hooks() { |
128 | 128 | /* Internationalize the text strings used. */ |
129 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
129 | + add_action('plugins_loaded', array(&$this, 'plugins_loaded')); |
|
130 | 130 | |
131 | 131 | // Init the plugin after WordPress inits. |
132 | - add_action( 'init', array( $this, 'init' ), 1 ); |
|
133 | - add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
134 | - add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
135 | - add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
132 | + add_action('init', array($this, 'init'), 1); |
|
133 | + add_action('init', array($this, 'maybe_process_ipn'), 10); |
|
134 | + add_action('init', array($this, 'wpinv_actions')); |
|
135 | + add_action('init', array($this, 'maybe_do_authenticated_action'), 100); |
|
136 | 136 | |
137 | - if ( class_exists( 'BuddyPress' ) ) { |
|
138 | - add_action( 'bp_include', array( &$this, 'bp_invoicing_init' ) ); |
|
137 | + if (class_exists('BuddyPress')) { |
|
138 | + add_action('bp_include', array(&$this, 'bp_invoicing_init')); |
|
139 | 139 | } |
140 | 140 | |
141 | - add_action( 'wp_enqueue_scripts', array( &$this, 'enqueue_scripts' ) ); |
|
142 | - add_action( 'wp_footer', array( &$this, 'wp_footer' ) ); |
|
143 | - add_action( 'widgets_init', array( &$this, 'register_widgets' ) ); |
|
144 | - add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
145 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
141 | + add_action('wp_enqueue_scripts', array(&$this, 'enqueue_scripts')); |
|
142 | + add_action('wp_footer', array(&$this, 'wp_footer')); |
|
143 | + add_action('widgets_init', array(&$this, 'register_widgets')); |
|
144 | + add_filter('wpseo_exclude_from_sitemap_by_post_ids', array($this, 'wpseo_exclude_from_sitemap_by_post_ids')); |
|
145 | + add_filter('pre_get_posts', array(&$this, 'pre_get_posts')); |
|
146 | 146 | |
147 | 147 | // Fires after registering actions. |
148 | - do_action( 'wpinv_actions', $this ); |
|
149 | - do_action( 'getpaid_actions', $this ); |
|
148 | + do_action('wpinv_actions', $this); |
|
149 | + do_action('getpaid_actions', $this); |
|
150 | 150 | |
151 | 151 | } |
152 | 152 | |
@@ -154,10 +154,10 @@ discard block |
||
154 | 154 | /* Internationalize the text strings used. */ |
155 | 155 | $this->load_textdomain(); |
156 | 156 | |
157 | - do_action( 'wpinv_loaded' ); |
|
157 | + do_action('wpinv_loaded'); |
|
158 | 158 | |
159 | 159 | // Fix oxygen page builder conflict |
160 | - if ( function_exists( 'ct_css_output' ) ) { |
|
160 | + if (function_exists('ct_css_output')) { |
|
161 | 161 | wpinv_oxygen_fix_conflict(); |
162 | 162 | } |
163 | 163 | } |
@@ -167,21 +167,21 @@ discard block |
||
167 | 167 | * |
168 | 168 | * @since 1.0 |
169 | 169 | */ |
170 | - public function load_textdomain( $locale = NULL ) { |
|
171 | - if ( empty( $locale ) ) { |
|
172 | - $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale(); |
|
170 | + public function load_textdomain($locale = NULL) { |
|
171 | + if (empty($locale)) { |
|
172 | + $locale = is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(); |
|
173 | 173 | } |
174 | 174 | |
175 | - $locale = apply_filters( 'plugin_locale', $locale, 'invoicing' ); |
|
175 | + $locale = apply_filters('plugin_locale', $locale, 'invoicing'); |
|
176 | 176 | |
177 | - unload_textdomain( 'invoicing' ); |
|
178 | - load_textdomain( 'invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo' ); |
|
179 | - load_plugin_textdomain( 'invoicing', false, WPINV_PLUGIN_DIR . 'languages' ); |
|
177 | + unload_textdomain('invoicing'); |
|
178 | + load_textdomain('invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo'); |
|
179 | + load_plugin_textdomain('invoicing', false, WPINV_PLUGIN_DIR . 'languages'); |
|
180 | 180 | |
181 | 181 | /** |
182 | 182 | * Define language constants. |
183 | 183 | */ |
184 | - require_once( WPINV_PLUGIN_DIR . 'language.php' ); |
|
184 | + require_once(WPINV_PLUGIN_DIR . 'language.php'); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | /** |
@@ -190,90 +190,90 @@ discard block |
||
190 | 190 | public function includes() { |
191 | 191 | |
192 | 192 | // Start with the settings. |
193 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
193 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php'); |
|
194 | 194 | |
195 | 195 | // Packages/libraries. |
196 | - require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
197 | - require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
196 | + require_once(WPINV_PLUGIN_DIR . 'vendor/autoload.php'); |
|
197 | + require_once(WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php'); |
|
198 | 198 | |
199 | 199 | // Load functions. |
200 | - require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
201 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
202 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
203 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
204 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
205 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
206 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
207 | - require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
208 | - require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
209 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
210 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
211 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
212 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
213 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-user-functions.php' ); |
|
214 | - require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
200 | + require_once(WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php'); |
|
201 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php'); |
|
202 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php'); |
|
203 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php'); |
|
204 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php'); |
|
205 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php'); |
|
206 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php'); |
|
207 | + require_once(WPINV_PLUGIN_DIR . 'includes/invoice-functions.php'); |
|
208 | + require_once(WPINV_PLUGIN_DIR . 'includes/subscription-functions.php'); |
|
209 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php'); |
|
210 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php'); |
|
211 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php'); |
|
212 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php'); |
|
213 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-user-functions.php'); |
|
214 | + require_once(WPINV_PLUGIN_DIR . 'includes/error-functions.php'); |
|
215 | 215 | |
216 | 216 | // Register autoloader. |
217 | 217 | try { |
218 | - spl_autoload_register( array( $this, 'autoload' ), true ); |
|
219 | - } catch ( Exception $e ) { |
|
220 | - wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
218 | + spl_autoload_register(array($this, 'autoload'), true); |
|
219 | + } catch (Exception $e) { |
|
220 | + wpinv_error_log($e->getMessage(), '', __FILE__, 149, true); |
|
221 | 221 | } |
222 | 222 | |
223 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
224 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
225 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
226 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
227 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-reports.php' ); |
|
228 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
229 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
230 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
231 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
232 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
233 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
234 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
235 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
236 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
237 | - require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
238 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
239 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
240 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
241 | - require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
242 | - require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
243 | - require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
223 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php'); |
|
224 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php'); |
|
225 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php'); |
|
226 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php'); |
|
227 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-reports.php'); |
|
228 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php'); |
|
229 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php'); |
|
230 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php'); |
|
231 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php'); |
|
232 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php'); |
|
233 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php'); |
|
234 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php'); |
|
235 | + require_once(WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php'); |
|
236 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php'); |
|
237 | + require_once(WPINV_PLUGIN_DIR . 'widgets/checkout.php'); |
|
238 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-history.php'); |
|
239 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php'); |
|
240 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php'); |
|
241 | + require_once(WPINV_PLUGIN_DIR . 'widgets/subscriptions.php'); |
|
242 | + require_once(WPINV_PLUGIN_DIR . 'widgets/buy-item.php'); |
|
243 | + require_once(WPINV_PLUGIN_DIR . 'widgets/getpaid.php'); |
|
244 | 244 | |
245 | 245 | /** |
246 | 246 | * Load the tax class. |
247 | 247 | */ |
248 | - if ( ! class_exists( 'WPInv_EUVat' ) ) { |
|
249 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/wpinv-euvat/class-wpinv-euvat.php' ); |
|
248 | + if (!class_exists('WPInv_EUVat')) { |
|
249 | + require_once(WPINV_PLUGIN_DIR . 'includes/libraries/wpinv-euvat/class-wpinv-euvat.php'); |
|
250 | 250 | } |
251 | 251 | |
252 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
252 | + if (is_admin() || (defined('WP_CLI') && WP_CLI)) { |
|
253 | 253 | GetPaid_Post_Types_Admin::init(); |
254 | 254 | |
255 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-upgrade-functions.php' ); |
|
256 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
257 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
258 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
259 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
260 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
261 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
262 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
255 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-upgrade-functions.php'); |
|
256 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php'); |
|
257 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php'); |
|
258 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php'); |
|
259 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php'); |
|
260 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php'); |
|
261 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php'); |
|
262 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php'); |
|
263 | 263 | // load the user class only on the users.php page |
264 | 264 | global $pagenow; |
265 | - if($pagenow=='users.php'){ |
|
265 | + if ($pagenow == 'users.php') { |
|
266 | 266 | new WPInv_Admin_Users(); |
267 | 267 | } |
268 | 268 | } |
269 | 269 | |
270 | 270 | // Register cli commands |
271 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
272 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
273 | - WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
271 | + if (defined('WP_CLI') && WP_CLI) { |
|
272 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php'); |
|
273 | + WP_CLI::add_command('invoicing', 'WPInv_CLI'); |
|
274 | 274 | } |
275 | 275 | |
276 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/install.php' ); |
|
276 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/install.php'); |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | /** |
@@ -284,21 +284,21 @@ discard block |
||
284 | 284 | * @since 1.0.19 |
285 | 285 | * @return void |
286 | 286 | */ |
287 | - public function autoload( $class_name ) { |
|
287 | + public function autoload($class_name) { |
|
288 | 288 | |
289 | 289 | // Normalize the class name... |
290 | - $class_name = strtolower( $class_name ); |
|
290 | + $class_name = strtolower($class_name); |
|
291 | 291 | |
292 | 292 | // ... and make sure it is our class. |
293 | - if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
293 | + if (false === strpos($class_name, 'getpaid_') && false === strpos($class_name, 'wpinv_')) { |
|
294 | 294 | return; |
295 | 295 | } |
296 | 296 | |
297 | 297 | // Next, prepare the file name from the class. |
298 | - $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
298 | + $file_name = 'class-' . str_replace('_', '-', $class_name) . '.php'; |
|
299 | 299 | |
300 | 300 | // Base path of the classes. |
301 | - $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
301 | + $plugin_path = untrailingslashit(WPINV_PLUGIN_DIR); |
|
302 | 302 | |
303 | 303 | // And an array of possible locations in order of importance. |
304 | 304 | $locations = array( |
@@ -311,10 +311,10 @@ discard block |
||
311 | 311 | "$plugin_path/includes/admin/meta-boxes", |
312 | 312 | ); |
313 | 313 | |
314 | - foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
314 | + foreach (apply_filters('getpaid_autoload_locations', $locations) as $location) { |
|
315 | 315 | |
316 | - if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
317 | - include trailingslashit( $location ) . $file_name; |
|
316 | + if (file_exists(trailingslashit($location) . $file_name)) { |
|
317 | + include trailingslashit($location) . $file_name; |
|
318 | 318 | break; |
319 | 319 | } |
320 | 320 | |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | public function init() { |
329 | 329 | |
330 | 330 | // Fires before getpaid inits. |
331 | - do_action( 'before_getpaid_init', $this ); |
|
331 | + do_action('before_getpaid_init', $this); |
|
332 | 332 | |
333 | 333 | // Load default gateways. |
334 | 334 | $gateways = apply_filters( |
@@ -342,12 +342,12 @@ discard block |
||
342 | 342 | ) |
343 | 343 | ); |
344 | 344 | |
345 | - foreach ( $gateways as $id => $class ) { |
|
346 | - $this->gateways[ $id ] = new $class(); |
|
345 | + foreach ($gateways as $id => $class) { |
|
346 | + $this->gateways[$id] = new $class(); |
|
347 | 347 | } |
348 | 348 | |
349 | 349 | // Fires after getpaid inits. |
350 | - do_action( 'getpaid_init', $this ); |
|
350 | + do_action('getpaid_init', $this); |
|
351 | 351 | |
352 | 352 | } |
353 | 353 | |
@@ -357,69 +357,69 @@ discard block |
||
357 | 357 | public function maybe_process_ipn() { |
358 | 358 | |
359 | 359 | // Ensure that this is an IPN request. |
360 | - if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
360 | + if (empty($_GET['wpi-listener']) || 'IPN' !== $_GET['wpi-listener'] || empty($_GET['wpi-gateway'])) { |
|
361 | 361 | return; |
362 | 362 | } |
363 | 363 | |
364 | - $gateway = wpinv_clean( $_GET['wpi-gateway'] ); |
|
364 | + $gateway = wpinv_clean($_GET['wpi-gateway']); |
|
365 | 365 | |
366 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
367 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
366 | + do_action('wpinv_verify_payment_ipn', $gateway); |
|
367 | + do_action("wpinv_verify_{$gateway}_ipn"); |
|
368 | 368 | exit; |
369 | 369 | |
370 | 370 | } |
371 | 371 | |
372 | 372 | public function enqueue_scripts() { |
373 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
373 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
374 | 374 | |
375 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/css/invoice-front.css' ); |
|
376 | - wp_register_style( 'wpinv_front_style', WPINV_PLUGIN_URL . 'assets/css/invoice-front.css', array(), $version ); |
|
377 | - wp_enqueue_style( 'wpinv_front_style' ); |
|
375 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/css/invoice-front.css'); |
|
376 | + wp_register_style('wpinv_front_style', WPINV_PLUGIN_URL . 'assets/css/invoice-front.css', array(), $version); |
|
377 | + wp_enqueue_style('wpinv_front_style'); |
|
378 | 378 | |
379 | 379 | // Register scripts |
380 | - wp_register_script( 'jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array( 'jquery' ), '2.70', true ); |
|
381 | - wp_register_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/invoice-front.js', array( 'jquery' ), filemtime( WPINV_PLUGIN_DIR . 'assets/js/invoice-front.js' ) ); |
|
380 | + wp_register_script('jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array('jquery'), '2.70', true); |
|
381 | + wp_register_script('wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/invoice-front.js', array('jquery'), filemtime(WPINV_PLUGIN_DIR . 'assets/js/invoice-front.js')); |
|
382 | 382 | |
383 | 383 | $localize = array(); |
384 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
385 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
384 | + $localize['ajax_url'] = admin_url('admin-ajax.php'); |
|
385 | + $localize['nonce'] = wp_create_nonce('wpinv-nonce'); |
|
386 | 386 | $localize['currency_symbol'] = wpinv_currency_symbol(); |
387 | 387 | $localize['currency_pos'] = wpinv_currency_position(); |
388 | 388 | $localize['thousand_sep'] = wpinv_thousands_separator(); |
389 | 389 | $localize['decimal_sep'] = wpinv_decimal_separator(); |
390 | 390 | $localize['decimals'] = wpinv_decimals(); |
391 | - $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
391 | + $localize['txtComplete'] = __('Continue', 'invoicing'); |
|
392 | 392 | $localize['UseTaxes'] = wpinv_use_taxes(); |
393 | - $localize['checkoutNonce'] = wp_create_nonce( 'wpinv_checkout_nonce' ); |
|
394 | - $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
395 | - $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
393 | + $localize['checkoutNonce'] = wp_create_nonce('wpinv_checkout_nonce'); |
|
394 | + $localize['formNonce'] = wp_create_nonce('getpaid_form_nonce'); |
|
395 | + $localize['connectionError'] = __('Could not establish a connection to the server.', 'invoicing'); |
|
396 | 396 | |
397 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
397 | + $localize = apply_filters('wpinv_front_js_localize', $localize); |
|
398 | 398 | |
399 | - wp_enqueue_script( 'jquery-blockui' ); |
|
399 | + wp_enqueue_script('jquery-blockui'); |
|
400 | 400 | $autofill_api = wpinv_get_option('address_autofill_api'); |
401 | 401 | $autofill_active = wpinv_get_option('address_autofill_active'); |
402 | - if ( isset( $autofill_active ) && 1 == $autofill_active && !empty( $autofill_api ) && wpinv_is_checkout() ) { |
|
403 | - if ( wp_script_is( 'google-maps-api', 'enqueued' ) ) { |
|
404 | - wp_dequeue_script( 'google-maps-api' ); |
|
402 | + if (isset($autofill_active) && 1 == $autofill_active && !empty($autofill_api) && wpinv_is_checkout()) { |
|
403 | + if (wp_script_is('google-maps-api', 'enqueued')) { |
|
404 | + wp_dequeue_script('google-maps-api'); |
|
405 | 405 | } |
406 | - wp_enqueue_script( 'google-maps-api', 'https://maps.googleapis.com/maps/api/js?key=' . $autofill_api . '&libraries=places', array( 'jquery' ), '', false ); |
|
407 | - wp_enqueue_script( 'google-maps-init', WPINV_PLUGIN_URL . 'assets/js/gaaf.js', array( 'jquery', 'google-maps-api' ), '', true ); |
|
406 | + wp_enqueue_script('google-maps-api', 'https://maps.googleapis.com/maps/api/js?key=' . $autofill_api . '&libraries=places', array('jquery'), '', false); |
|
407 | + wp_enqueue_script('google-maps-init', WPINV_PLUGIN_URL . 'assets/js/gaaf.js', array('jquery', 'google-maps-api'), '', true); |
|
408 | 408 | } |
409 | 409 | |
410 | - wp_enqueue_style( "select2", WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), WPINV_VERSION, 'all' ); |
|
411 | - wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full' . $suffix . '.js', array( 'jquery' ), WPINV_VERSION ); |
|
410 | + wp_enqueue_style("select2", WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), WPINV_VERSION, 'all'); |
|
411 | + wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full' . $suffix . '.js', array('jquery'), WPINV_VERSION); |
|
412 | 412 | |
413 | - wp_enqueue_script( 'wpinv-front-script' ); |
|
414 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
413 | + wp_enqueue_script('wpinv-front-script'); |
|
414 | + wp_localize_script('wpinv-front-script', 'WPInv', $localize); |
|
415 | 415 | |
416 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
417 | - wp_enqueue_script( 'wpinv-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'wpinv-front-script', 'wp-hooks' ), $version, true ); |
|
416 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js'); |
|
417 | + wp_enqueue_script('wpinv-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array('wpinv-front-script', 'wp-hooks'), $version, true); |
|
418 | 418 | } |
419 | 419 | |
420 | 420 | public function wpinv_actions() { |
421 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
422 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
421 | + if (isset($_REQUEST['wpi_action'])) { |
|
422 | + do_action('wpinv_' . wpinv_sanitize_key($_REQUEST['wpi_action']), $_REQUEST); |
|
423 | 423 | } |
424 | 424 | } |
425 | 425 | |
@@ -431,23 +431,23 @@ discard block |
||
431 | 431 | */ |
432 | 432 | public function maybe_do_authenticated_action() { |
433 | 433 | |
434 | - if ( is_user_logged_in() && isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
435 | - $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
436 | - do_action( "getpaid_authenticated_action_$key", $_REQUEST ); |
|
434 | + if (is_user_logged_in() && isset($_REQUEST['getpaid-action']) && isset($_REQUEST['getpaid-nonce']) && wp_verify_nonce($_REQUEST['getpaid-nonce'], 'getpaid-nonce')) { |
|
435 | + $key = sanitize_key($_REQUEST['getpaid-action']); |
|
436 | + do_action("getpaid_authenticated_action_$key", $_REQUEST); |
|
437 | 437 | } |
438 | 438 | |
439 | 439 | } |
440 | 440 | |
441 | - public function pre_get_posts( $wp_query ) { |
|
442 | - if ( ! is_admin() && !empty( $wp_query->query_vars['post_type'] ) && $wp_query->query_vars['post_type'] == 'wpi_invoice' && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
443 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses() ); |
|
441 | + public function pre_get_posts($wp_query) { |
|
442 | + if (!is_admin() && !empty($wp_query->query_vars['post_type']) && $wp_query->query_vars['post_type'] == 'wpi_invoice' && is_user_logged_in() && is_single() && $wp_query->is_main_query()) { |
|
443 | + $wp_query->query_vars['post_status'] = array_keys(wpinv_get_invoice_statuses()); |
|
444 | 444 | } |
445 | 445 | |
446 | 446 | return $wp_query; |
447 | 447 | } |
448 | 448 | |
449 | 449 | public function bp_invoicing_init() { |
450 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-bp-core.php' ); |
|
450 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-bp-core.php'); |
|
451 | 451 | } |
452 | 452 | |
453 | 453 | /** |
@@ -468,8 +468,8 @@ discard block |
||
468 | 468 | ) |
469 | 469 | ); |
470 | 470 | |
471 | - foreach ( $widgets as $widget ) { |
|
472 | - register_widget( $widget ); |
|
471 | + foreach ($widgets as $widget) { |
|
472 | + register_widget($widget); |
|
473 | 473 | } |
474 | 474 | |
475 | 475 | } |
@@ -480,10 +480,10 @@ discard block |
||
480 | 480 | * @since 1.0.19 |
481 | 481 | * @param int[] $excluded_posts_ids |
482 | 482 | */ |
483 | - public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
483 | + public function wpseo_exclude_from_sitemap_by_post_ids($excluded_posts_ids) { |
|
484 | 484 | |
485 | 485 | // Ensure that we have an array. |
486 | - if ( ! is_array( $excluded_posts_ids ) ) { |
|
486 | + if (!is_array($excluded_posts_ids)) { |
|
487 | 487 | $excluded_posts_ids = array(); |
488 | 488 | } |
489 | 489 | |
@@ -491,24 +491,24 @@ discard block |
||
491 | 491 | $our_pages = array(); |
492 | 492 | |
493 | 493 | // Checkout page. |
494 | - $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
494 | + $our_pages[] = wpinv_get_option('checkout_page', false); |
|
495 | 495 | |
496 | 496 | // Success page. |
497 | - $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
497 | + $our_pages[] = wpinv_get_option('success_page', false); |
|
498 | 498 | |
499 | 499 | // Failure page. |
500 | - $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
500 | + $our_pages[] = wpinv_get_option('failure_page', false); |
|
501 | 501 | |
502 | 502 | // History page. |
503 | - $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
503 | + $our_pages[] = wpinv_get_option('invoice_history_page', false); |
|
504 | 504 | |
505 | 505 | // Subscriptions page. |
506 | - $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
506 | + $our_pages[] = wpinv_get_option('invoice_subscription_page', false); |
|
507 | 507 | |
508 | - $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
508 | + $our_pages = array_map('intval', array_filter($our_pages)); |
|
509 | 509 | |
510 | 510 | $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
511 | - return array_unique( $excluded_posts_ids ); |
|
511 | + return array_unique($excluded_posts_ids); |
|
512 | 512 | |
513 | 513 | } |
514 | 514 |
@@ -7,24 +7,24 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$bg = wpinv_get_option( 'email_background_color', '#f5f5f5' ); |
|
13 | -$body = wpinv_get_option( 'email_body_background_color', '#fdfdfd' ); |
|
14 | -$base = wpinv_get_option( 'email_base_color', '#557da2' ); |
|
15 | -$base_text = wpinv_light_or_dark( $base, '#202020', '#ffffff' ); |
|
16 | -$text = wpinv_get_option( 'email_text_color', '#505050' ); |
|
12 | +$bg = wpinv_get_option('email_background_color', '#f5f5f5'); |
|
13 | +$body = wpinv_get_option('email_body_background_color', '#fdfdfd'); |
|
14 | +$base = wpinv_get_option('email_base_color', '#557da2'); |
|
15 | +$base_text = wpinv_light_or_dark($base, '#202020', '#ffffff'); |
|
16 | +$text = wpinv_get_option('email_text_color', '#505050'); |
|
17 | 17 | |
18 | -$bg_darker_10 = wpinv_hex_darker( $bg, 10 ); |
|
19 | -$body_darker_10 = wpinv_hex_darker( $body, 10 ); |
|
20 | -$base_lighter_20 = wpinv_hex_lighter( $base, 20 ); |
|
21 | -$base_lighter_40 = wpinv_hex_lighter( $base, 40 ); |
|
22 | -$text_lighter_20 = wpinv_hex_lighter( $text, 20 ); |
|
18 | +$bg_darker_10 = wpinv_hex_darker($bg, 10); |
|
19 | +$body_darker_10 = wpinv_hex_darker($body, 10); |
|
20 | +$base_lighter_20 = wpinv_hex_lighter($base, 20); |
|
21 | +$base_lighter_40 = wpinv_hex_lighter($base, 40); |
|
22 | +$text_lighter_20 = wpinv_hex_lighter($text, 20); |
|
23 | 23 | |
24 | 24 | // !important; is a gmail hack to prevent styles being stripped if it doesn't like something. |
25 | 25 | ?> |
26 | 26 | #wrapper { |
27 | - background-color: <?php echo esc_attr( $bg ); ?>; |
|
27 | + background-color: <?php echo esc_attr($bg); ?>; |
|
28 | 28 | margin: 0; |
29 | 29 | -webkit-text-size-adjust: none !important; |
30 | 30 | padding: 3%; |
@@ -45,15 +45,15 @@ discard block |
||
45 | 45 | |
46 | 46 | #template_container { |
47 | 47 | box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important; |
48 | - background-color: <?php echo esc_attr( $body ); ?>; |
|
49 | - border: 1px solid <?php echo esc_attr( $bg_darker_10 ); ?>; |
|
48 | + background-color: <?php echo esc_attr($body); ?>; |
|
49 | + border: 1px solid <?php echo esc_attr($bg_darker_10); ?>; |
|
50 | 50 | border-radius: 3px !important; |
51 | 51 | } |
52 | 52 | |
53 | 53 | #template_header { |
54 | - background-color: <?php echo esc_attr( $base ); ?>; |
|
54 | + background-color: <?php echo esc_attr($base); ?>; |
|
55 | 55 | border-radius: 3px 3px 0 0 !important; |
56 | - color: <?php echo esc_attr( $base_text ); ?>; |
|
56 | + color: <?php echo esc_attr($base_text); ?>; |
|
57 | 57 | border-bottom: 0; |
58 | 58 | font-weight: bold; |
59 | 59 | line-height: 100%; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | #template_header h1 { |
69 | - color: <?php echo esc_attr( $base_text ); ?>; |
|
69 | + color: <?php echo esc_attr($base_text); ?>; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | #template_footer td { |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | #template_footer #credit { |
79 | 79 | border:0; |
80 | - color: <?php echo esc_attr( $base_lighter_40 ); ?>; |
|
80 | + color: <?php echo esc_attr($base_lighter_40); ?>; |
|
81 | 81 | font-family: Arial; |
82 | 82 | font-size:12px; |
83 | 83 | line-height:125%; |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | } |
87 | 87 | |
88 | 88 | #body_content { |
89 | - background-color: <?php echo esc_attr( $body ); ?>; |
|
89 | + background-color: <?php echo esc_attr($body); ?>; |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | #body_content table td { |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | } |
107 | 107 | |
108 | 108 | #body_content_inner { |
109 | - color: <?php echo esc_attr( $text_lighter_20 ); ?>; |
|
109 | + color: <?php echo esc_attr($text_lighter_20); ?>; |
|
110 | 110 | font-family: Arial,Helvetica,sans-serif; |
111 | 111 | font-size: 14px; |
112 | 112 | line-height: 150%; |
@@ -114,17 +114,17 @@ discard block |
||
114 | 114 | } |
115 | 115 | |
116 | 116 | .td { |
117 | - color: <?php echo esc_attr( $text_lighter_20 ); ?>; |
|
118 | - border: 1px solid <?php echo esc_attr( $body_darker_10 ); ?>; |
|
117 | + color: <?php echo esc_attr($text_lighter_20); ?>; |
|
118 | + border: 1px solid <?php echo esc_attr($body_darker_10); ?>; |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | .text { |
122 | - color: <?php echo esc_attr( $text ); ?>; |
|
122 | + color: <?php echo esc_attr($text); ?>; |
|
123 | 123 | font-family: Arial,Helvetica,sans-serif; |
124 | 124 | } |
125 | 125 | |
126 | 126 | .link { |
127 | - color: <?php echo esc_attr( $base ); ?>; |
|
127 | + color: <?php echo esc_attr($base); ?>; |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | #header_wrapper { |
@@ -133,19 +133,19 @@ discard block |
||
133 | 133 | } |
134 | 134 | |
135 | 135 | h1 { |
136 | - color: <?php echo esc_attr( $base ); ?>; |
|
136 | + color: <?php echo esc_attr($base); ?>; |
|
137 | 137 | font-family: Arial,Helvetica,sans-serif; |
138 | 138 | font-size: 30px; |
139 | 139 | font-weight: 300; |
140 | 140 | line-height: 150%; |
141 | 141 | margin: 0; |
142 | 142 | text-align: <?php echo is_rtl() ? 'right' : 'left'; ?>; |
143 | - text-shadow: 0 1px 0 <?php echo esc_attr( $base_lighter_20 ); ?>; |
|
143 | + text-shadow: 0 1px 0 <?php echo esc_attr($base_lighter_20); ?>; |
|
144 | 144 | -webkit-font-smoothing: antialiased; |
145 | 145 | } |
146 | 146 | |
147 | 147 | h2 { |
148 | - color: <?php echo esc_attr( $base ); ?>; |
|
148 | + color: <?php echo esc_attr($base); ?>; |
|
149 | 149 | display: block; |
150 | 150 | font-family: Arial,Helvetica,sans-serif; |
151 | 151 | font-size: 18px; |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | } |
157 | 157 | |
158 | 158 | h3 { |
159 | - color: <?php echo esc_attr( $base ); ?>; |
|
159 | + color: <?php echo esc_attr($base); ?>; |
|
160 | 160 | display: block; |
161 | 161 | font-family: Arial,Helvetica,sans-serif; |
162 | 162 | font-size: 16px; |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | } |
168 | 168 | |
169 | 169 | a { |
170 | - color: <?php echo esc_attr( $base ); ?>; |
|
170 | + color: <?php echo esc_attr($base); ?>; |
|
171 | 171 | font-weight: normal; |
172 | 172 | text-decoration: underline; |
173 | 173 | } |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | } |
186 | 186 | |
187 | 187 | .table-bordered { |
188 | - border: 1px solid <?php echo esc_attr( $body_darker_10 ); ?>; |
|
188 | + border: 1px solid <?php echo esc_attr($body_darker_10); ?>; |
|
189 | 189 | border-collapse: collapse; |
190 | 190 | border-spacing: 0; |
191 | 191 | width: 100%; |
@@ -193,8 +193,8 @@ discard block |
||
193 | 193 | |
194 | 194 | .table-bordered th, |
195 | 195 | .table-bordered td { |
196 | - border: 1px solid <?php echo esc_attr( $body_darker_10 ); ?>; |
|
197 | - color: <?php echo esc_attr( $text_lighter_20 ); ?>; |
|
196 | + border: 1px solid <?php echo esc_attr($body_darker_10); ?>; |
|
197 | + color: <?php echo esc_attr($text_lighter_20); ?>; |
|
198 | 198 | font-size: 14px; |
199 | 199 | } |
200 | 200 | .small { |
@@ -294,9 +294,9 @@ discard block |
||
294 | 294 | text-decoration: none; |
295 | 295 | } |
296 | 296 | .btn-default { |
297 | - color: <?php echo esc_attr( $base_text ); ?>; |
|
298 | - background-color: <?php echo esc_attr( $base ); ?>; |
|
299 | - border-color: <?php echo esc_attr( $base ); ?>; |
|
297 | + color: <?php echo esc_attr($base_text); ?>; |
|
298 | + background-color: <?php echo esc_attr($base); ?>; |
|
299 | + border-color: <?php echo esc_attr($base); ?>; |
|
300 | 300 | } |
301 | 301 | .btn-primary { |
302 | 302 | color: #fff; |
@@ -7,22 +7,22 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | // Print the email header. |
13 | -do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); |
|
13 | +do_action('wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin); |
|
14 | 14 | |
15 | 15 | // Generate the custom message body. |
16 | 16 | echo $message_body; |
17 | 17 | |
18 | 18 | // Print invoice details. |
19 | -do_action( 'wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin ); |
|
19 | +do_action('wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin); |
|
20 | 20 | |
21 | 21 | // Print invoice items. |
22 | -do_action( 'wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin ); |
|
22 | +do_action('wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin); |
|
23 | 23 | |
24 | 24 | // Print the billing details. |
25 | -do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); |
|
25 | +do_action('wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin); |
|
26 | 26 | |
27 | 27 | // Print the email footer. |
28 | -do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); |
|
28 | +do_action('wpinv_email_footer', $invoice, $email_type, $sent_to_admin); |
@@ -8,45 +8,45 @@ discard block |
||
8 | 8 | * @var WPInv_Invoice $invoice |
9 | 9 | * @var array $columns |
10 | 10 | */ |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | -$meta_data = getpaid_get_invoice_meta( $invoice ); |
|
13 | +$meta_data = getpaid_get_invoice_meta($invoice); |
|
14 | 14 | |
15 | -if ( isset( $meta_data['status'] ) ) { |
|
15 | +if (isset($meta_data['status'])) { |
|
16 | 16 | $meta_data['status']['value'] = $invoice->get_status_nicename(); |
17 | 17 | } |
18 | 18 | |
19 | -do_action( 'wpinv_email_before_invoice_details', $invoice, $sent_to_admin ); |
|
19 | +do_action('wpinv_email_before_invoice_details', $invoice, $sent_to_admin); |
|
20 | 20 | |
21 | 21 | ?> |
22 | 22 | |
23 | 23 | <div id="wpinv-email-details"> |
24 | 24 | |
25 | 25 | <h3 class="invoice-details-title"> |
26 | - <?php echo sprintf( esc_html__( '%s Details', 'invoicing' ), ucfirst( $invoice->get_type() )); ?> |
|
26 | + <?php echo sprintf(esc_html__('%s Details', 'invoicing'), ucfirst($invoice->get_type())); ?> |
|
27 | 27 | </h3> |
28 | 28 | |
29 | 29 | <table class="table table-bordered table-sm"> |
30 | 30 | |
31 | - <?php foreach ( $meta_data as $key => $data ) : ?> |
|
31 | + <?php foreach ($meta_data as $key => $data) : ?> |
|
32 | 32 | |
33 | - <?php if ( ! empty( $data['value'] ) ) : ?> |
|
33 | + <?php if (!empty($data['value'])) : ?> |
|
34 | 34 | |
35 | - <?php do_action( "getpaid_before_email_details_$key", $invoice, $data ); ?> |
|
35 | + <?php do_action("getpaid_before_email_details_$key", $invoice, $data); ?> |
|
36 | 36 | |
37 | - <tr class="getpaid-email-details-<?php echo sanitize_html_class( $key ); ?>"> |
|
37 | + <tr class="getpaid-email-details-<?php echo sanitize_html_class($key); ?>"> |
|
38 | 38 | |
39 | 39 | <td class="getpaid-lable-td"> |
40 | - <?php echo sanitize_text_field( $data['label'] ); ?> |
|
40 | + <?php echo sanitize_text_field($data['label']); ?> |
|
41 | 41 | </td> |
42 | 42 | |
43 | 43 | <td class="getpaid-value-td"> |
44 | - <span class="getpaid-invoice-meta-<?php echo sanitize_html_class( $key ); ?>-value"><?php echo wp_kses_post( $data['value'] ); ?></span> |
|
44 | + <span class="getpaid-invoice-meta-<?php echo sanitize_html_class($key); ?>-value"><?php echo wp_kses_post($data['value']); ?></span> |
|
45 | 45 | </td> |
46 | 46 | |
47 | 47 | </tr> |
48 | 48 | |
49 | - <?php do_action( "getpaid_after_email_details_$key", $invoice, $data ); ?> |
|
49 | + <?php do_action("getpaid_after_email_details_$key", $invoice, $data); ?> |
|
50 | 50 | |
51 | 51 | <?php endif; ?> |
52 | 52 | |
@@ -56,4 +56,4 @@ discard block |
||
56 | 56 | |
57 | 57 | </div> |
58 | 58 | |
59 | -<?php do_action( 'wpinv_email_after_invoice_details', $invoice, $sent_to_admin ); ?> |
|
59 | +<?php do_action('wpinv_email_after_invoice_details', $invoice, $sent_to_admin); ?> |
@@ -8,18 +8,18 @@ discard block |
||
8 | 8 | * @var WPInv_Invoice $invoice |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | -$column_count = count( $columns ); |
|
13 | +$column_count = count($columns); |
|
14 | 14 | ?> |
15 | 15 | |
16 | -<?php do_action( 'wpinv_before_email_items', $invoice ); ?> |
|
16 | +<?php do_action('wpinv_before_email_items', $invoice); ?> |
|
17 | 17 | |
18 | 18 | |
19 | 19 | <div id="wpinv-email-items"> |
20 | 20 | |
21 | 21 | <h3 class="invoice-items-title"> |
22 | - <?php echo sprintf( esc_html__( '%s Items', 'invoicing' ), ucfirst( $invoice->get_type() )); ?> |
|
22 | + <?php echo sprintf(esc_html__('%s Items', 'invoicing'), ucfirst($invoice->get_type())); ?> |
|
23 | 23 | </h3> |
24 | 24 | |
25 | 25 | <table class="table table-bordered table-hover"> |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | |
29 | 29 | <tr class="wpinv_cart_header_row"> |
30 | 30 | |
31 | - <?php foreach ( $columns as $key => $label ) : ?> |
|
32 | - <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class( $key ); ?>"> |
|
33 | - <?php echo sanitize_text_field( $label ); ?> |
|
31 | + <?php foreach ($columns as $key => $label) : ?> |
|
32 | + <th class="<?php echo 'name' == $key ? 'text-left' : 'text-right' ?> wpinv_cart_item_<?php echo sanitize_html_class($key); ?>"> |
|
33 | + <?php echo sanitize_text_field($label); ?> |
|
34 | 34 | </th> |
35 | 35 | <?php endforeach; ?> |
36 | 36 | |
@@ -43,13 +43,13 @@ discard block |
||
43 | 43 | <?php |
44 | 44 | |
45 | 45 | // Display the item totals. |
46 | - foreach ( $invoice->get_items() as $item ) { |
|
47 | - wpinv_get_template( 'emails/invoice-item.php', compact( 'invoice', 'item', 'columns' ) ); |
|
46 | + foreach ($invoice->get_items() as $item) { |
|
47 | + wpinv_get_template('emails/invoice-item.php', compact('invoice', 'item', 'columns')); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | // Display the fee totals. |
51 | - foreach ( $invoice->get_fees() as $fee ) { |
|
52 | - wpinv_get_template( 'emails/fee-item.php', compact( 'invoice', 'fee', 'columns' ) ); |
|
51 | + foreach ($invoice->get_fees() as $fee) { |
|
52 | + wpinv_get_template('emails/fee-item.php', compact('invoice', 'fee', 'columns')); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | ?> |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | </tbody> |
58 | 58 | |
59 | 59 | <tfoot> |
60 | - <?php wpinv_get_template( 'emails/invoice-totals.php', compact( 'invoice', 'column_count' ) ); ?> |
|
60 | + <?php wpinv_get_template('emails/invoice-totals.php', compact('invoice', 'column_count')); ?> |
|
61 | 61 | </tfoot> |
62 | 62 | |
63 | 63 | </table> |
@@ -7,21 +7,21 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -do_action( 'wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin ); |
|
12 | +do_action('wpinv_email_header', $email_heading, $invoice, $email_type, $sent_to_admin); |
|
13 | 13 | |
14 | -do_action( 'wpinv_email_before_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
14 | +do_action('wpinv_email_before_note_details', $invoice, $email_type, $sent_to_admin, $customer_note); |
|
15 | 15 | |
16 | 16 | // Generate the custom message body. |
17 | -echo wptexturize( wp_kses_post( str_replace( '{customer_note}', $customer_note, $message_body ) ) ); |
|
17 | +echo wptexturize(wp_kses_post(str_replace('{customer_note}', $customer_note, $message_body))); |
|
18 | 18 | |
19 | -do_action( 'wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin ); |
|
19 | +do_action('wpinv_email_invoice_details', $invoice, $email_type, $sent_to_admin); |
|
20 | 20 | |
21 | -do_action( 'wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin ); |
|
21 | +do_action('wpinv_email_invoice_items', $invoice, $email_type, $sent_to_admin); |
|
22 | 22 | |
23 | -do_action( 'wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin ); |
|
23 | +do_action('wpinv_email_billing_details', $invoice, $email_type, $sent_to_admin); |
|
24 | 24 | |
25 | -do_action( 'wpinv_email_after_note_details', $invoice, $email_type, $sent_to_admin, $customer_note ); |
|
25 | +do_action('wpinv_email_after_note_details', $invoice, $email_type, $sent_to_admin, $customer_note); |
|
26 | 26 | |
27 | -do_action( 'wpinv_email_footer', $invoice, $email_type, $sent_to_admin ); |
|
28 | 27 | \ No newline at end of file |
28 | +do_action('wpinv_email_footer', $invoice, $email_type, $sent_to_admin); |
|
29 | 29 | \ No newline at end of file |
@@ -8,22 +8,22 @@ discard block |
||
8 | 8 | * @var WPInv_Invoice $invoice |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | 13 | // Totals rows. |
14 | -$totals = getpaid_invoice_totals_rows( $invoice ); |
|
14 | +$totals = getpaid_invoice_totals_rows($invoice); |
|
15 | 15 | |
16 | -do_action( 'getpaid_before_email_line_totals', $invoice, $totals ); |
|
16 | +do_action('getpaid_before_email_line_totals', $invoice, $totals); |
|
17 | 17 | |
18 | 18 | ?> |
19 | 19 | |
20 | 20 | |
21 | -<?php if ( has_action( 'wpinv_email_footer_buttons' ) ) : ?> |
|
21 | +<?php if (has_action('wpinv_email_footer_buttons')) : ?> |
|
22 | 22 | |
23 | 23 | <tr class="wpinv_cart_footer_row"> |
24 | 24 | |
25 | - <td colspan="<?php echo ( (int) $column_count ); ?>"> |
|
26 | - <?php do_action( 'wpinv_email_footer_buttons' ); ?> |
|
25 | + <td colspan="<?php echo ((int) $column_count); ?>"> |
|
26 | + <?php do_action('wpinv_email_footer_buttons'); ?> |
|
27 | 27 | </td> |
28 | 28 | |
29 | 29 | </tr> |
@@ -31,44 +31,44 @@ discard block |
||
31 | 31 | <?php endif; ?> |
32 | 32 | |
33 | 33 | |
34 | -<?php foreach ( $totals as $key => $label ) : ?> |
|
34 | +<?php foreach ($totals as $key => $label) : ?> |
|
35 | 35 | |
36 | - <tr class="wpinv_cart_footer_row wpinv_cart_<?php echo sanitize_html_class( $key ); ?>_row"> |
|
36 | + <tr class="wpinv_cart_footer_row wpinv_cart_<?php echo sanitize_html_class($key); ?>_row"> |
|
37 | 37 | |
38 | - <td colspan="<?php echo ( $column_count - 1 ); ?>" class="wpinv_cart_<?php echo sanitize_html_class( $key ); ?>_label text-right"> |
|
39 | - <strong><?php echo sanitize_text_field( $label ); ?>:</strong> |
|
38 | + <td colspan="<?php echo ($column_count - 1); ?>" class="wpinv_cart_<?php echo sanitize_html_class($key); ?>_label text-right"> |
|
39 | + <strong><?php echo sanitize_text_field($label); ?>:</strong> |
|
40 | 40 | </td> |
41 | 41 | |
42 | - <td class="wpinv_cart_<?php echo sanitize_html_class( $key ); ?> text-right"> |
|
42 | + <td class="wpinv_cart_<?php echo sanitize_html_class($key); ?> text-right"> |
|
43 | 43 | |
44 | 44 | <?php |
45 | 45 | |
46 | 46 | // Total tax. |
47 | - if ( 'tax' == $key ) { |
|
48 | - echo wpinv_price( wpinv_format_amount( $invoice->get_total_tax() ), $invoice->get_currency() ); |
|
47 | + if ('tax' == $key) { |
|
48 | + echo wpinv_price(wpinv_format_amount($invoice->get_total_tax()), $invoice->get_currency()); |
|
49 | 49 | } |
50 | 50 | |
51 | - if ( 'fee' == $key ) { |
|
52 | - echo wpinv_price( wpinv_format_amount( $invoice->get_total_fees() ), $invoice->get_currency() ); |
|
51 | + if ('fee' == $key) { |
|
52 | + echo wpinv_price(wpinv_format_amount($invoice->get_total_fees()), $invoice->get_currency()); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | // Total discount. |
56 | - if ( 'discount' == $key ) { |
|
57 | - echo wpinv_price( wpinv_format_amount( $invoice->get_total_discount() ), $invoice->get_currency() ); |
|
56 | + if ('discount' == $key) { |
|
57 | + echo wpinv_price(wpinv_format_amount($invoice->get_total_discount()), $invoice->get_currency()); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | // Sub total. |
61 | - if ( 'subtotal' == $key ) { |
|
62 | - echo wpinv_price( wpinv_format_amount( $invoice->get_subtotal() ), $invoice->get_currency() ); |
|
61 | + if ('subtotal' == $key) { |
|
62 | + echo wpinv_price(wpinv_format_amount($invoice->get_subtotal()), $invoice->get_currency()); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | // Total. |
66 | - if ( 'total' == $key ) { |
|
67 | - echo wpinv_price( wpinv_format_amount( $invoice->get_total() ), $invoice->get_currency() ); |
|
66 | + if ('total' == $key) { |
|
67 | + echo wpinv_price(wpinv_format_amount($invoice->get_total()), $invoice->get_currency()); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | // Fires when printing a cart total in an email. |
71 | - do_action( "getpaid_email_cart_totals_$key", $invoice ); |
|
71 | + do_action("getpaid_email_cart_totals_$key", $invoice); |
|
72 | 72 | |
73 | 73 | ?> |
74 | 74 | |
@@ -80,4 +80,4 @@ discard block |
||
80 | 80 | |
81 | 81 | <?php |
82 | 82 | |
83 | - do_action( 'getpaid_after_email_line_totals', $invoice, $totals ); |
|
83 | + do_action('getpaid_after_email_line_totals', $invoice, $totals); |