@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | |
12 | 12 | // Load WP_List_Table if not loaded |
13 | 13 | if ( ! class_exists( 'WP_List_Table' ) ) { |
14 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
14 | + require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
@@ -23,373 +23,373 @@ discard block |
||
23 | 23 | */ |
24 | 24 | class WPInv_Customers_Table extends WP_List_Table { |
25 | 25 | |
26 | - /** |
|
27 | - * @var int Number of items per page |
|
28 | - * @since 1.0.19 |
|
29 | - */ |
|
30 | - public $per_page = 10; |
|
31 | - |
|
32 | - /** |
|
33 | - * @var int Number of items |
|
34 | - * @since 1.0.19 |
|
35 | - */ |
|
36 | - public $total = 0; |
|
37 | - |
|
38 | - /** |
|
39 | - * Get things started |
|
40 | - * |
|
41 | - * @since 1.0.19 |
|
42 | - * @see WP_List_Table::__construct() |
|
43 | - */ |
|
44 | - public function __construct() { |
|
45 | - |
|
46 | - // Set parent defaults |
|
47 | - parent::__construct( |
|
26 | + /** |
|
27 | + * @var int Number of items per page |
|
28 | + * @since 1.0.19 |
|
29 | + */ |
|
30 | + public $per_page = 10; |
|
31 | + |
|
32 | + /** |
|
33 | + * @var int Number of items |
|
34 | + * @since 1.0.19 |
|
35 | + */ |
|
36 | + public $total = 0; |
|
37 | + |
|
38 | + /** |
|
39 | + * Get things started |
|
40 | + * |
|
41 | + * @since 1.0.19 |
|
42 | + * @see WP_List_Table::__construct() |
|
43 | + */ |
|
44 | + public function __construct() { |
|
45 | + |
|
46 | + // Set parent defaults |
|
47 | + parent::__construct( |
|
48 | 48 | array( |
49 | - 'singular' => 'id', |
|
50 | - 'plural' => 'ids', |
|
51 | - 'ajax' => false, |
|
49 | + 'singular' => 'id', |
|
50 | + 'plural' => 'ids', |
|
51 | + 'ajax' => false, |
|
52 | 52 | ) |
53 | 53 | ); |
54 | 54 | |
55 | - } |
|
56 | - |
|
57 | - /** |
|
58 | - * Gets the name of the primary column. |
|
59 | - * |
|
60 | - * @since 1.0.19 |
|
61 | - * @access protected |
|
62 | - * |
|
63 | - * @return string Name of the primary column. |
|
64 | - */ |
|
65 | - protected function get_primary_column_name() { |
|
66 | - return 'name'; |
|
67 | - } |
|
68 | - |
|
69 | - /** |
|
70 | - * This function renders most of the columns in the list table. |
|
71 | - * |
|
72 | - * @since 1.0.19 |
|
73 | - * |
|
74 | - * @param WP_User $item |
|
75 | - * @param string $column_name The name of the column |
|
76 | - * |
|
77 | - * @return string Column Name |
|
78 | - */ |
|
79 | - public function column_default( $item, $column_name ) { |
|
80 | - $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
81 | - return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
82 | - } |
|
83 | - |
|
84 | - /** |
|
85 | - * Displays the country column. |
|
86 | - * |
|
87 | - * @since 1.0.19 |
|
88 | - * |
|
89 | - * @param WP_User $user |
|
90 | - * |
|
91 | - * @return string Column Name |
|
92 | - */ |
|
93 | - public function column_country( $user ) { |
|
94 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
95 | - if ( $country ) { |
|
96 | - $country = wpinv_country_name( $country ); |
|
97 | - } |
|
98 | - return esc_html( $country ); |
|
99 | - } |
|
100 | - |
|
101 | - /** |
|
102 | - * Displays the state column. |
|
103 | - * |
|
104 | - * @since 1.0.19 |
|
105 | - * |
|
106 | - * @param WP_User $user |
|
107 | - * |
|
108 | - * @return string Column Name |
|
109 | - */ |
|
110 | - public function column_state( $user ) { |
|
111 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
112 | - $state = $user->_wpinv_state; |
|
113 | - if ( $state ) { |
|
114 | - $state = wpinv_state_name( $state, $country ); |
|
115 | - } |
|
116 | - |
|
117 | - return esc_html( $state ); |
|
118 | - } |
|
119 | - |
|
120 | - /** |
|
121 | - * Displays the signup column. |
|
122 | - * |
|
123 | - * @since 1.0.19 |
|
124 | - * |
|
125 | - * @param WP_User $user |
|
126 | - * |
|
127 | - * @return string Column Name |
|
128 | - */ |
|
129 | - public function column_signup( $user ) { |
|
130 | - return getpaid_format_date_value( $user->user_registered ); |
|
131 | - } |
|
132 | - |
|
133 | - /** |
|
134 | - * Displays the total spent column. |
|
135 | - * |
|
136 | - * @since 1.0.19 |
|
137 | - * |
|
138 | - * @param WP_User $user |
|
139 | - * |
|
140 | - * @return string Column Name |
|
141 | - */ |
|
142 | - public function column_total( $user ) { |
|
143 | - return wpinv_price( $this->column_total_raw( $user ) ); |
|
144 | - } |
|
145 | - |
|
146 | - /** |
|
147 | - * Displays the total spent column. |
|
148 | - * |
|
149 | - * @since 1.0.19 |
|
150 | - * |
|
151 | - * @param WP_User $user |
|
152 | - * |
|
153 | - * @return float |
|
154 | - */ |
|
155 | - public function column_total_raw( $user ) { |
|
156 | - |
|
157 | - $args = array( |
|
158 | - 'data' => array( |
|
159 | - |
|
160 | - 'total' => array( |
|
161 | - 'type' => 'invoice_data', |
|
162 | - 'function' => 'SUM', |
|
163 | - 'name' => 'total_sales', |
|
164 | - ), |
|
165 | - |
|
166 | - ), |
|
167 | - 'where' => array( |
|
168 | - |
|
169 | - 'author' => array( |
|
170 | - 'type' => 'post_data', |
|
171 | - 'value' => absint( $user->ID ), |
|
172 | - 'key' => 'posts.post_author', |
|
173 | - 'operator' => '=', |
|
174 | - ), |
|
175 | - |
|
176 | - ), |
|
177 | - 'query_type' => 'get_var', |
|
178 | - 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
179 | - ); |
|
180 | - |
|
181 | - return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
182 | - |
|
183 | - } |
|
184 | - |
|
185 | - /** |
|
186 | - * Displays the total spent column. |
|
187 | - * |
|
188 | - * @since 1.0.19 |
|
189 | - * |
|
190 | - * @param WP_User $user |
|
191 | - * |
|
192 | - * @return string Column Name |
|
193 | - */ |
|
194 | - public function column_invoices( $user ) { |
|
195 | - |
|
196 | - $args = array( |
|
197 | - 'data' => array( |
|
198 | - |
|
199 | - 'ID' => array( |
|
200 | - 'type' => 'post_data', |
|
201 | - 'function' => 'COUNT', |
|
202 | - 'name' => 'count', |
|
203 | - 'distinct' => true, |
|
204 | - ), |
|
205 | - |
|
206 | - ), |
|
207 | - 'where' => array( |
|
208 | - |
|
209 | - 'author' => array( |
|
210 | - 'type' => 'post_data', |
|
211 | - 'value' => absint( $user->ID ), |
|
212 | - 'key' => 'posts.post_author', |
|
213 | - 'operator' => '=', |
|
214 | - ), |
|
215 | - |
|
216 | - ), |
|
217 | - 'query_type' => 'get_var', |
|
218 | - 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
219 | - ); |
|
220 | - |
|
221 | - return absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
222 | - |
|
223 | - } |
|
224 | - |
|
225 | - /** |
|
226 | - * Generates content for a single row of the table |
|
227 | - * @since 1.0.19 |
|
228 | - * |
|
229 | - * @param int $item The user id. |
|
230 | - */ |
|
231 | - public function single_row( $item ) { |
|
232 | - $item = get_user_by( 'id', $item ); |
|
233 | - |
|
234 | - if ( empty( $item ) ) { |
|
235 | - return; |
|
236 | - } |
|
237 | - |
|
238 | - echo '<tr>'; |
|
239 | - $this->single_row_columns( $item ); |
|
240 | - echo '</tr>'; |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Displays the customers name |
|
245 | - * |
|
246 | - * @param WP_User $customer customer. |
|
247 | - * @return string |
|
248 | - */ |
|
249 | - public function column_name( $customer ) { |
|
250 | - |
|
251 | - // Customer view URL. |
|
252 | - $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
253 | - $row_actions = $this->row_actions( |
|
254 | - array( |
|
255 | - 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
256 | - ) |
|
257 | - ); |
|
258 | - |
|
259 | - // Get user's address. |
|
260 | - $address = wpinv_get_user_address( $customer->ID ); |
|
261 | - |
|
262 | - // Customer email address. |
|
263 | - $email = sanitize_email( $customer->user_email ); |
|
264 | - |
|
265 | - // Customer's avatar. |
|
266 | - $avatar = esc_url( get_avatar_url( $email ) ); |
|
267 | - $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
268 | - |
|
269 | - // Customer's name. |
|
270 | - $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
271 | - |
|
272 | - if ( empty( trim( $name ) ) ) { |
|
273 | - $name = esc_html( $address['display_name'] ); |
|
274 | - } |
|
275 | - |
|
276 | - if ( ! empty( $name ) ) { |
|
277 | - $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
278 | - } |
|
279 | - |
|
280 | - $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
281 | - |
|
282 | - return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong>$row_actions</div></div>"; |
|
283 | - |
|
284 | - } |
|
285 | - |
|
286 | - /** |
|
287 | - * Retrieve the table columns |
|
288 | - * |
|
289 | - * @since 1.0.19 |
|
290 | - * @return array $columns Array of all the list table columns |
|
291 | - */ |
|
292 | - public function get_columns() { |
|
293 | - |
|
294 | - $columns = array( |
|
295 | - 'name' => __( 'Name', 'invoicing' ), |
|
296 | - 'country' => __( 'Country', 'invoicing' ), |
|
297 | - 'state' => __( 'State', 'invoicing' ), |
|
298 | - 'city' => __( 'City', 'invoicing' ), |
|
299 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
300 | - 'address' => __( 'Address', 'invoicing' ), |
|
301 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
302 | - 'company' => __( 'Company', 'invoicing' ), |
|
303 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
304 | - 'total' => __( 'Total Spend', 'invoicing' ), |
|
305 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
306 | - ); |
|
307 | - return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
308 | - |
|
309 | - } |
|
310 | - |
|
311 | - /** |
|
312 | - * Retrieve the current page number |
|
313 | - * |
|
314 | - * @since 1.0.19 |
|
315 | - * @return int Current page number |
|
316 | - */ |
|
317 | - public function get_paged() { |
|
318 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
319 | - } |
|
320 | - |
|
321 | - /** |
|
322 | - * Returns bulk actions. |
|
323 | - * |
|
324 | - * @since 1.0.19 |
|
325 | - * @return void |
|
326 | - */ |
|
327 | - public function bulk_actions( $which = '' ) { |
|
328 | - return array(); |
|
329 | - } |
|
330 | - |
|
331 | - /** |
|
332 | - * Prepares the display query |
|
333 | - */ |
|
334 | - public function prepare_query() { |
|
335 | - global $wpdb; |
|
336 | - |
|
337 | - $post_types = ''; |
|
338 | - |
|
339 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
340 | - $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
341 | - } |
|
342 | - |
|
343 | - $post_types = rtrim( $post_types, ' OR' ); |
|
344 | - |
|
345 | - // Maybe search. |
|
346 | - if ( ! empty( $_POST['s'] ) ) { |
|
347 | - $users = get_users( |
|
348 | - array( |
|
349 | - 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
350 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
351 | - 'fields' => 'ID', |
|
352 | - ) |
|
353 | - ); |
|
354 | - |
|
355 | - $users = implode( ', ', $users ); |
|
356 | - $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
|
357 | - } |
|
358 | - |
|
359 | - // Users with invoices. |
|
360 | - $customers = $wpdb->get_col( |
|
361 | - $wpdb->prepare( |
|
362 | - "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types LIMIT %d,%d", |
|
363 | - $this->get_paged() * 10 - 10, |
|
364 | - $this->per_page |
|
365 | - ) |
|
366 | - ); |
|
367 | - |
|
368 | - $this->items = $customers; |
|
369 | - $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
370 | - |
|
371 | - } |
|
372 | - |
|
373 | - /** |
|
374 | - * Setup the final data for the table |
|
375 | - * |
|
376 | - * @since 1.0.19 |
|
377 | - * @return void |
|
378 | - */ |
|
379 | - public function prepare_items() { |
|
380 | - $columns = $this->get_columns(); |
|
381 | - $hidden = array(); // No hidden columns |
|
382 | - $sortable = $this->get_sortable_columns(); |
|
383 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
384 | - $this->prepare_query(); |
|
385 | - |
|
386 | - $this->set_pagination_args( |
|
387 | - array( |
|
388 | - 'total_items' => $this->total, |
|
389 | - 'per_page' => $this->per_page, |
|
390 | - 'total_pages' => ceil( $this->total / $this->per_page ), |
|
391 | - ) |
|
392 | - ); |
|
393 | - |
|
394 | - } |
|
55 | + } |
|
56 | + |
|
57 | + /** |
|
58 | + * Gets the name of the primary column. |
|
59 | + * |
|
60 | + * @since 1.0.19 |
|
61 | + * @access protected |
|
62 | + * |
|
63 | + * @return string Name of the primary column. |
|
64 | + */ |
|
65 | + protected function get_primary_column_name() { |
|
66 | + return 'name'; |
|
67 | + } |
|
68 | + |
|
69 | + /** |
|
70 | + * This function renders most of the columns in the list table. |
|
71 | + * |
|
72 | + * @since 1.0.19 |
|
73 | + * |
|
74 | + * @param WP_User $item |
|
75 | + * @param string $column_name The name of the column |
|
76 | + * |
|
77 | + * @return string Column Name |
|
78 | + */ |
|
79 | + public function column_default( $item, $column_name ) { |
|
80 | + $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
81 | + return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
82 | + } |
|
83 | + |
|
84 | + /** |
|
85 | + * Displays the country column. |
|
86 | + * |
|
87 | + * @since 1.0.19 |
|
88 | + * |
|
89 | + * @param WP_User $user |
|
90 | + * |
|
91 | + * @return string Column Name |
|
92 | + */ |
|
93 | + public function column_country( $user ) { |
|
94 | + $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
95 | + if ( $country ) { |
|
96 | + $country = wpinv_country_name( $country ); |
|
97 | + } |
|
98 | + return esc_html( $country ); |
|
99 | + } |
|
100 | + |
|
101 | + /** |
|
102 | + * Displays the state column. |
|
103 | + * |
|
104 | + * @since 1.0.19 |
|
105 | + * |
|
106 | + * @param WP_User $user |
|
107 | + * |
|
108 | + * @return string Column Name |
|
109 | + */ |
|
110 | + public function column_state( $user ) { |
|
111 | + $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
112 | + $state = $user->_wpinv_state; |
|
113 | + if ( $state ) { |
|
114 | + $state = wpinv_state_name( $state, $country ); |
|
115 | + } |
|
116 | + |
|
117 | + return esc_html( $state ); |
|
118 | + } |
|
119 | + |
|
120 | + /** |
|
121 | + * Displays the signup column. |
|
122 | + * |
|
123 | + * @since 1.0.19 |
|
124 | + * |
|
125 | + * @param WP_User $user |
|
126 | + * |
|
127 | + * @return string Column Name |
|
128 | + */ |
|
129 | + public function column_signup( $user ) { |
|
130 | + return getpaid_format_date_value( $user->user_registered ); |
|
131 | + } |
|
132 | + |
|
133 | + /** |
|
134 | + * Displays the total spent column. |
|
135 | + * |
|
136 | + * @since 1.0.19 |
|
137 | + * |
|
138 | + * @param WP_User $user |
|
139 | + * |
|
140 | + * @return string Column Name |
|
141 | + */ |
|
142 | + public function column_total( $user ) { |
|
143 | + return wpinv_price( $this->column_total_raw( $user ) ); |
|
144 | + } |
|
145 | + |
|
146 | + /** |
|
147 | + * Displays the total spent column. |
|
148 | + * |
|
149 | + * @since 1.0.19 |
|
150 | + * |
|
151 | + * @param WP_User $user |
|
152 | + * |
|
153 | + * @return float |
|
154 | + */ |
|
155 | + public function column_total_raw( $user ) { |
|
156 | + |
|
157 | + $args = array( |
|
158 | + 'data' => array( |
|
159 | + |
|
160 | + 'total' => array( |
|
161 | + 'type' => 'invoice_data', |
|
162 | + 'function' => 'SUM', |
|
163 | + 'name' => 'total_sales', |
|
164 | + ), |
|
165 | + |
|
166 | + ), |
|
167 | + 'where' => array( |
|
168 | + |
|
169 | + 'author' => array( |
|
170 | + 'type' => 'post_data', |
|
171 | + 'value' => absint( $user->ID ), |
|
172 | + 'key' => 'posts.post_author', |
|
173 | + 'operator' => '=', |
|
174 | + ), |
|
175 | + |
|
176 | + ), |
|
177 | + 'query_type' => 'get_var', |
|
178 | + 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
179 | + ); |
|
180 | + |
|
181 | + return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
182 | + |
|
183 | + } |
|
184 | + |
|
185 | + /** |
|
186 | + * Displays the total spent column. |
|
187 | + * |
|
188 | + * @since 1.0.19 |
|
189 | + * |
|
190 | + * @param WP_User $user |
|
191 | + * |
|
192 | + * @return string Column Name |
|
193 | + */ |
|
194 | + public function column_invoices( $user ) { |
|
195 | + |
|
196 | + $args = array( |
|
197 | + 'data' => array( |
|
198 | + |
|
199 | + 'ID' => array( |
|
200 | + 'type' => 'post_data', |
|
201 | + 'function' => 'COUNT', |
|
202 | + 'name' => 'count', |
|
203 | + 'distinct' => true, |
|
204 | + ), |
|
205 | + |
|
206 | + ), |
|
207 | + 'where' => array( |
|
208 | + |
|
209 | + 'author' => array( |
|
210 | + 'type' => 'post_data', |
|
211 | + 'value' => absint( $user->ID ), |
|
212 | + 'key' => 'posts.post_author', |
|
213 | + 'operator' => '=', |
|
214 | + ), |
|
215 | + |
|
216 | + ), |
|
217 | + 'query_type' => 'get_var', |
|
218 | + 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
219 | + ); |
|
220 | + |
|
221 | + return absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
222 | + |
|
223 | + } |
|
224 | + |
|
225 | + /** |
|
226 | + * Generates content for a single row of the table |
|
227 | + * @since 1.0.19 |
|
228 | + * |
|
229 | + * @param int $item The user id. |
|
230 | + */ |
|
231 | + public function single_row( $item ) { |
|
232 | + $item = get_user_by( 'id', $item ); |
|
233 | + |
|
234 | + if ( empty( $item ) ) { |
|
235 | + return; |
|
236 | + } |
|
237 | + |
|
238 | + echo '<tr>'; |
|
239 | + $this->single_row_columns( $item ); |
|
240 | + echo '</tr>'; |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Displays the customers name |
|
245 | + * |
|
246 | + * @param WP_User $customer customer. |
|
247 | + * @return string |
|
248 | + */ |
|
249 | + public function column_name( $customer ) { |
|
250 | + |
|
251 | + // Customer view URL. |
|
252 | + $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
253 | + $row_actions = $this->row_actions( |
|
254 | + array( |
|
255 | + 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
256 | + ) |
|
257 | + ); |
|
258 | + |
|
259 | + // Get user's address. |
|
260 | + $address = wpinv_get_user_address( $customer->ID ); |
|
261 | + |
|
262 | + // Customer email address. |
|
263 | + $email = sanitize_email( $customer->user_email ); |
|
264 | + |
|
265 | + // Customer's avatar. |
|
266 | + $avatar = esc_url( get_avatar_url( $email ) ); |
|
267 | + $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
268 | + |
|
269 | + // Customer's name. |
|
270 | + $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
271 | + |
|
272 | + if ( empty( trim( $name ) ) ) { |
|
273 | + $name = esc_html( $address['display_name'] ); |
|
274 | + } |
|
275 | + |
|
276 | + if ( ! empty( $name ) ) { |
|
277 | + $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
278 | + } |
|
279 | + |
|
280 | + $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
281 | + |
|
282 | + return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong>$row_actions</div></div>"; |
|
283 | + |
|
284 | + } |
|
285 | + |
|
286 | + /** |
|
287 | + * Retrieve the table columns |
|
288 | + * |
|
289 | + * @since 1.0.19 |
|
290 | + * @return array $columns Array of all the list table columns |
|
291 | + */ |
|
292 | + public function get_columns() { |
|
293 | + |
|
294 | + $columns = array( |
|
295 | + 'name' => __( 'Name', 'invoicing' ), |
|
296 | + 'country' => __( 'Country', 'invoicing' ), |
|
297 | + 'state' => __( 'State', 'invoicing' ), |
|
298 | + 'city' => __( 'City', 'invoicing' ), |
|
299 | + 'zip' => __( 'ZIP', 'invoicing' ), |
|
300 | + 'address' => __( 'Address', 'invoicing' ), |
|
301 | + 'phone' => __( 'Phone', 'invoicing' ), |
|
302 | + 'company' => __( 'Company', 'invoicing' ), |
|
303 | + 'invoices' => __( 'Invoices', 'invoicing' ), |
|
304 | + 'total' => __( 'Total Spend', 'invoicing' ), |
|
305 | + 'signup' => __( 'Date created', 'invoicing' ), |
|
306 | + ); |
|
307 | + return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
308 | + |
|
309 | + } |
|
310 | + |
|
311 | + /** |
|
312 | + * Retrieve the current page number |
|
313 | + * |
|
314 | + * @since 1.0.19 |
|
315 | + * @return int Current page number |
|
316 | + */ |
|
317 | + public function get_paged() { |
|
318 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
319 | + } |
|
320 | + |
|
321 | + /** |
|
322 | + * Returns bulk actions. |
|
323 | + * |
|
324 | + * @since 1.0.19 |
|
325 | + * @return void |
|
326 | + */ |
|
327 | + public function bulk_actions( $which = '' ) { |
|
328 | + return array(); |
|
329 | + } |
|
330 | + |
|
331 | + /** |
|
332 | + * Prepares the display query |
|
333 | + */ |
|
334 | + public function prepare_query() { |
|
335 | + global $wpdb; |
|
336 | + |
|
337 | + $post_types = ''; |
|
338 | + |
|
339 | + foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
340 | + $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
341 | + } |
|
342 | + |
|
343 | + $post_types = rtrim( $post_types, ' OR' ); |
|
344 | + |
|
345 | + // Maybe search. |
|
346 | + if ( ! empty( $_POST['s'] ) ) { |
|
347 | + $users = get_users( |
|
348 | + array( |
|
349 | + 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
350 | + 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
351 | + 'fields' => 'ID', |
|
352 | + ) |
|
353 | + ); |
|
354 | + |
|
355 | + $users = implode( ', ', $users ); |
|
356 | + $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
|
357 | + } |
|
358 | + |
|
359 | + // Users with invoices. |
|
360 | + $customers = $wpdb->get_col( |
|
361 | + $wpdb->prepare( |
|
362 | + "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types LIMIT %d,%d", |
|
363 | + $this->get_paged() * 10 - 10, |
|
364 | + $this->per_page |
|
365 | + ) |
|
366 | + ); |
|
367 | + |
|
368 | + $this->items = $customers; |
|
369 | + $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
370 | + |
|
371 | + } |
|
372 | + |
|
373 | + /** |
|
374 | + * Setup the final data for the table |
|
375 | + * |
|
376 | + * @since 1.0.19 |
|
377 | + * @return void |
|
378 | + */ |
|
379 | + public function prepare_items() { |
|
380 | + $columns = $this->get_columns(); |
|
381 | + $hidden = array(); // No hidden columns |
|
382 | + $sortable = $this->get_sortable_columns(); |
|
383 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
384 | + $this->prepare_query(); |
|
385 | + |
|
386 | + $this->set_pagination_args( |
|
387 | + array( |
|
388 | + 'total_items' => $this->total, |
|
389 | + 'per_page' => $this->per_page, |
|
390 | + 'total_pages' => ceil( $this->total / $this->per_page ), |
|
391 | + ) |
|
392 | + ); |
|
393 | + |
|
394 | + } |
|
395 | 395 | } |
@@ -5,12 +5,12 @@ discard block |
||
5 | 5 | */ |
6 | 6 | |
7 | 7 | // Exit if accessed directly |
8 | -if ( ! defined( 'ABSPATH' ) ) { |
|
8 | +if (!defined('ABSPATH')) { |
|
9 | 9 | exit; |
10 | 10 | } |
11 | 11 | |
12 | 12 | // Load WP_List_Table if not loaded |
13 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
13 | +if (!class_exists('WP_List_Table')) { |
|
14 | 14 | require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
15 | 15 | } |
16 | 16 | |
@@ -76,9 +76,9 @@ discard block |
||
76 | 76 | * |
77 | 77 | * @return string Column Name |
78 | 78 | */ |
79 | - public function column_default( $item, $column_name ) { |
|
80 | - $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
81 | - return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
79 | + public function column_default($item, $column_name) { |
|
80 | + $value = esc_html(get_user_meta($item->ID, '_wpinv_' . $column_name, true)); |
|
81 | + return apply_filters('wpinv_customers_table_column' . $column_name, $value, $item); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -90,12 +90,12 @@ discard block |
||
90 | 90 | * |
91 | 91 | * @return string Column Name |
92 | 92 | */ |
93 | - public function column_country( $user ) { |
|
94 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
95 | - if ( $country ) { |
|
96 | - $country = wpinv_country_name( $country ); |
|
93 | + public function column_country($user) { |
|
94 | + $country = wpinv_sanitize_country($user->_wpinv_country); |
|
95 | + if ($country) { |
|
96 | + $country = wpinv_country_name($country); |
|
97 | 97 | } |
98 | - return esc_html( $country ); |
|
98 | + return esc_html($country); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -107,14 +107,14 @@ discard block |
||
107 | 107 | * |
108 | 108 | * @return string Column Name |
109 | 109 | */ |
110 | - public function column_state( $user ) { |
|
111 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
110 | + public function column_state($user) { |
|
111 | + $country = wpinv_sanitize_country($user->_wpinv_country); |
|
112 | 112 | $state = $user->_wpinv_state; |
113 | - if ( $state ) { |
|
114 | - $state = wpinv_state_name( $state, $country ); |
|
113 | + if ($state) { |
|
114 | + $state = wpinv_state_name($state, $country); |
|
115 | 115 | } |
116 | 116 | |
117 | - return esc_html( $state ); |
|
117 | + return esc_html($state); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | * |
127 | 127 | * @return string Column Name |
128 | 128 | */ |
129 | - public function column_signup( $user ) { |
|
130 | - return getpaid_format_date_value( $user->user_registered ); |
|
129 | + public function column_signup($user) { |
|
130 | + return getpaid_format_date_value($user->user_registered); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | * |
140 | 140 | * @return string Column Name |
141 | 141 | */ |
142 | - public function column_total( $user ) { |
|
143 | - return wpinv_price( $this->column_total_raw( $user ) ); |
|
142 | + public function column_total($user) { |
|
143 | + return wpinv_price($this->column_total_raw($user)); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | * |
153 | 153 | * @return float |
154 | 154 | */ |
155 | - public function column_total_raw( $user ) { |
|
155 | + public function column_total_raw($user) { |
|
156 | 156 | |
157 | 157 | $args = array( |
158 | 158 | 'data' => array( |
@@ -168,17 +168,17 @@ discard block |
||
168 | 168 | |
169 | 169 | 'author' => array( |
170 | 170 | 'type' => 'post_data', |
171 | - 'value' => absint( $user->ID ), |
|
171 | + 'value' => absint($user->ID), |
|
172 | 172 | 'key' => 'posts.post_author', |
173 | 173 | 'operator' => '=', |
174 | 174 | ), |
175 | 175 | |
176 | 176 | ), |
177 | 177 | 'query_type' => 'get_var', |
178 | - 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
178 | + 'invoice_status' => array('wpi-renewal', 'wpi-processing', 'publish'), |
|
179 | 179 | ); |
180 | 180 | |
181 | - return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
181 | + return wpinv_round_amount(GetPaid_Reports_Helper::get_invoice_report_data($args)); |
|
182 | 182 | |
183 | 183 | } |
184 | 184 | |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | * |
192 | 192 | * @return string Column Name |
193 | 193 | */ |
194 | - public function column_invoices( $user ) { |
|
194 | + public function column_invoices($user) { |
|
195 | 195 | |
196 | 196 | $args = array( |
197 | 197 | 'data' => array( |
@@ -208,17 +208,17 @@ discard block |
||
208 | 208 | |
209 | 209 | 'author' => array( |
210 | 210 | 'type' => 'post_data', |
211 | - 'value' => absint( $user->ID ), |
|
211 | + 'value' => absint($user->ID), |
|
212 | 212 | 'key' => 'posts.post_author', |
213 | 213 | 'operator' => '=', |
214 | 214 | ), |
215 | 215 | |
216 | 216 | ), |
217 | 217 | 'query_type' => 'get_var', |
218 | - 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
218 | + 'invoice_status' => array_keys(wpinv_get_invoice_statuses()), |
|
219 | 219 | ); |
220 | 220 | |
221 | - return absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
221 | + return absint(GetPaid_Reports_Helper::get_invoice_report_data($args)); |
|
222 | 222 | |
223 | 223 | } |
224 | 224 | |
@@ -228,15 +228,15 @@ discard block |
||
228 | 228 | * |
229 | 229 | * @param int $item The user id. |
230 | 230 | */ |
231 | - public function single_row( $item ) { |
|
232 | - $item = get_user_by( 'id', $item ); |
|
231 | + public function single_row($item) { |
|
232 | + $item = get_user_by('id', $item); |
|
233 | 233 | |
234 | - if ( empty( $item ) ) { |
|
234 | + if (empty($item)) { |
|
235 | 235 | return; |
236 | 236 | } |
237 | 237 | |
238 | 238 | echo '<tr>'; |
239 | - $this->single_row_columns( $item ); |
|
239 | + $this->single_row_columns($item); |
|
240 | 240 | echo '</tr>'; |
241 | 241 | } |
242 | 242 | |
@@ -246,34 +246,34 @@ discard block |
||
246 | 246 | * @param WP_User $customer customer. |
247 | 247 | * @return string |
248 | 248 | */ |
249 | - public function column_name( $customer ) { |
|
249 | + public function column_name($customer) { |
|
250 | 250 | |
251 | 251 | // Customer view URL. |
252 | - $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
252 | + $view_url = esc_url(add_query_arg('user_id', $customer->ID, admin_url('user-edit.php'))); |
|
253 | 253 | $row_actions = $this->row_actions( |
254 | 254 | array( |
255 | - 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
255 | + 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __('Edit Details', 'invoicing') . '</a>', |
|
256 | 256 | ) |
257 | 257 | ); |
258 | 258 | |
259 | 259 | // Get user's address. |
260 | - $address = wpinv_get_user_address( $customer->ID ); |
|
260 | + $address = wpinv_get_user_address($customer->ID); |
|
261 | 261 | |
262 | 262 | // Customer email address. |
263 | - $email = sanitize_email( $customer->user_email ); |
|
263 | + $email = sanitize_email($customer->user_email); |
|
264 | 264 | |
265 | 265 | // Customer's avatar. |
266 | - $avatar = esc_url( get_avatar_url( $email ) ); |
|
266 | + $avatar = esc_url(get_avatar_url($email)); |
|
267 | 267 | $avatar = "<img src='$avatar' height='32' width='32'/>"; |
268 | 268 | |
269 | 269 | // Customer's name. |
270 | - $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
270 | + $name = esc_html("{$address['first_name']} {$address['last_name']}"); |
|
271 | 271 | |
272 | - if ( empty( trim( $name ) ) ) { |
|
273 | - $name = esc_html( $address['display_name'] ); |
|
272 | + if (empty(trim($name))) { |
|
273 | + $name = esc_html($address['display_name']); |
|
274 | 274 | } |
275 | 275 | |
276 | - if ( ! empty( $name ) ) { |
|
276 | + if (!empty($name)) { |
|
277 | 277 | $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
278 | 278 | } |
279 | 279 | |
@@ -292,19 +292,19 @@ discard block |
||
292 | 292 | public function get_columns() { |
293 | 293 | |
294 | 294 | $columns = array( |
295 | - 'name' => __( 'Name', 'invoicing' ), |
|
296 | - 'country' => __( 'Country', 'invoicing' ), |
|
297 | - 'state' => __( 'State', 'invoicing' ), |
|
298 | - 'city' => __( 'City', 'invoicing' ), |
|
299 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
300 | - 'address' => __( 'Address', 'invoicing' ), |
|
301 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
302 | - 'company' => __( 'Company', 'invoicing' ), |
|
303 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
304 | - 'total' => __( 'Total Spend', 'invoicing' ), |
|
305 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
295 | + 'name' => __('Name', 'invoicing'), |
|
296 | + 'country' => __('Country', 'invoicing'), |
|
297 | + 'state' => __('State', 'invoicing'), |
|
298 | + 'city' => __('City', 'invoicing'), |
|
299 | + 'zip' => __('ZIP', 'invoicing'), |
|
300 | + 'address' => __('Address', 'invoicing'), |
|
301 | + 'phone' => __('Phone', 'invoicing'), |
|
302 | + 'company' => __('Company', 'invoicing'), |
|
303 | + 'invoices' => __('Invoices', 'invoicing'), |
|
304 | + 'total' => __('Total Spend', 'invoicing'), |
|
305 | + 'signup' => __('Date created', 'invoicing'), |
|
306 | 306 | ); |
307 | - return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
307 | + return apply_filters('wpinv_customers_table_columns', $columns); |
|
308 | 308 | |
309 | 309 | } |
310 | 310 | |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | * @return int Current page number |
316 | 316 | */ |
317 | 317 | public function get_paged() { |
318 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
318 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
319 | 319 | } |
320 | 320 | |
321 | 321 | /** |
@@ -324,7 +324,7 @@ discard block |
||
324 | 324 | * @since 1.0.19 |
325 | 325 | * @return void |
326 | 326 | */ |
327 | - public function bulk_actions( $which = '' ) { |
|
327 | + public function bulk_actions($which = '') { |
|
328 | 328 | return array(); |
329 | 329 | } |
330 | 330 | |
@@ -336,23 +336,23 @@ discard block |
||
336 | 336 | |
337 | 337 | $post_types = ''; |
338 | 338 | |
339 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
340 | - $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
339 | + foreach (array_keys(getpaid_get_invoice_post_types()) as $post_type) { |
|
340 | + $post_types .= $wpdb->prepare('post_type=%s OR ', $post_type); |
|
341 | 341 | } |
342 | 342 | |
343 | - $post_types = rtrim( $post_types, ' OR' ); |
|
343 | + $post_types = rtrim($post_types, ' OR'); |
|
344 | 344 | |
345 | 345 | // Maybe search. |
346 | - if ( ! empty( $_POST['s'] ) ) { |
|
346 | + if (!empty($_POST['s'])) { |
|
347 | 347 | $users = get_users( |
348 | 348 | array( |
349 | - 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
350 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
349 | + 'search' => '*' . sanitize_text_field(urldecode($_POST['s'])) . '*', |
|
350 | + 'search_columns' => array('user_login', 'user_email', 'display_name'), |
|
351 | 351 | 'fields' => 'ID', |
352 | 352 | ) |
353 | 353 | ); |
354 | 354 | |
355 | - $users = implode( ', ', $users ); |
|
355 | + $users = implode(', ', $users); |
|
356 | 356 | $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
357 | 357 | } |
358 | 358 | |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | ); |
367 | 367 | |
368 | 368 | $this->items = $customers; |
369 | - $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
369 | + $this->total = (int) $wpdb->get_var("SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types"); |
|
370 | 370 | |
371 | 371 | } |
372 | 372 | |
@@ -380,14 +380,14 @@ discard block |
||
380 | 380 | $columns = $this->get_columns(); |
381 | 381 | $hidden = array(); // No hidden columns |
382 | 382 | $sortable = $this->get_sortable_columns(); |
383 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
383 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
384 | 384 | $this->prepare_query(); |
385 | 385 | |
386 | 386 | $this->set_pagination_args( |
387 | 387 | array( |
388 | 388 | 'total_items' => $this->total, |
389 | 389 | 'per_page' => $this->per_page, |
390 | - 'total_pages' => ceil( $this->total / $this->per_page ), |
|
390 | + 'total_pages' => ceil($this->total / $this->per_page), |
|
391 | 391 | ) |
392 | 392 | ); |
393 | 393 |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | // MUST have WordPress. |
10 | -if ( ! defined( 'WPINC' ) ) { |
|
10 | +if (!defined('WPINC')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | 14 | |
15 | 15 | function wpinv_get_default_country() { |
16 | - $country = wpinv_get_option( 'default_country', 'UK' ); |
|
16 | + $country = wpinv_get_option('default_country', 'UK'); |
|
17 | 17 | |
18 | - return apply_filters( 'wpinv_default_country', $country ); |
|
18 | + return apply_filters('wpinv_default_country', $country); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -23,8 +23,8 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @return string |
25 | 25 | */ |
26 | -function getpaid_get_ip_country( $ip_address = '' ) { |
|
27 | - $country = GetPaid_Geolocation::geolocate_ip( $ip_address, true ); |
|
26 | +function getpaid_get_ip_country($ip_address = '') { |
|
27 | + $country = GetPaid_Geolocation::geolocate_ip($ip_address, true); |
|
28 | 28 | return $country['country']; |
29 | 29 | } |
30 | 30 | |
@@ -34,59 +34,59 @@ discard block |
||
34 | 34 | * @param string $country The country code to sanitize |
35 | 35 | * @return array |
36 | 36 | */ |
37 | -function wpinv_sanitize_country( $country ) { |
|
37 | +function wpinv_sanitize_country($country) { |
|
38 | 38 | |
39 | 39 | // Enure the country is specified |
40 | - if ( empty( $country ) ) { |
|
40 | + if (empty($country)) { |
|
41 | 41 | $country = wpinv_get_default_country(); |
42 | 42 | } |
43 | - return trim( wpinv_utf8_strtoupper( $country ) ); |
|
43 | + return trim(wpinv_utf8_strtoupper($country)); |
|
44 | 44 | |
45 | 45 | } |
46 | 46 | |
47 | -function wpinv_is_base_country( $country ) { |
|
47 | +function wpinv_is_base_country($country) { |
|
48 | 48 | $base_country = wpinv_get_default_country(); |
49 | 49 | |
50 | - if ( $base_country === 'UK' ) { |
|
50 | + if ($base_country === 'UK') { |
|
51 | 51 | $base_country = 'GB'; |
52 | 52 | } |
53 | - if ( $country == 'UK' ) { |
|
53 | + if ($country == 'UK') { |
|
54 | 54 | $country = 'GB'; |
55 | 55 | } |
56 | 56 | |
57 | - return ( $country && $country === $base_country ) ? true : false; |
|
57 | + return ($country && $country === $base_country) ? true : false; |
|
58 | 58 | } |
59 | 59 | |
60 | -function wpinv_country_name( $country_code = '' ) { |
|
60 | +function wpinv_country_name($country_code = '') { |
|
61 | 61 | $countries = wpinv_get_country_list(); |
62 | 62 | $country_code = $country_code == 'UK' ? 'GB' : $country_code; |
63 | - $country = isset( $countries[ $country_code ] ) ? $countries[ $country_code ] : $country_code; |
|
63 | + $country = isset($countries[$country_code]) ? $countries[$country_code] : $country_code; |
|
64 | 64 | |
65 | - return apply_filters( 'wpinv_country_name', $country, $country_code ); |
|
65 | + return apply_filters('wpinv_country_name', $country, $country_code); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | function wpinv_get_default_state() { |
69 | - $state = wpinv_get_option( 'default_state', '' ); |
|
69 | + $state = wpinv_get_option('default_state', ''); |
|
70 | 70 | |
71 | - return apply_filters( 'wpinv_default_state', $state ); |
|
71 | + return apply_filters('wpinv_default_state', $state); |
|
72 | 72 | } |
73 | 73 | |
74 | -function wpinv_state_name( $state_code = '', $country_code = '' ) { |
|
74 | +function wpinv_state_name($state_code = '', $country_code = '') { |
|
75 | 75 | $state = $state_code; |
76 | 76 | |
77 | - if ( ! empty( $country_code ) ) { |
|
78 | - $states = wpinv_get_country_states( $country_code ); |
|
77 | + if (!empty($country_code)) { |
|
78 | + $states = wpinv_get_country_states($country_code); |
|
79 | 79 | |
80 | - $state = ! empty( $states ) && isset( $states[ $state_code ] ) ? $states[ $state_code ] : $state; |
|
80 | + $state = !empty($states) && isset($states[$state_code]) ? $states[$state_code] : $state; |
|
81 | 81 | } |
82 | 82 | |
83 | - return apply_filters( 'wpinv_state_name', $state, $state_code, $country_code ); |
|
83 | + return apply_filters('wpinv_state_name', $state, $state_code, $country_code); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | function wpinv_store_address() { |
87 | - $address = wpinv_get_option( 'store_address', '' ); |
|
87 | + $address = wpinv_get_option('store_address', ''); |
|
88 | 88 | |
89 | - return apply_filters( 'wpinv_store_address', $address ); |
|
89 | + return apply_filters('wpinv_store_address', $address); |
|
90 | 90 | } |
91 | 91 | |
92 | 92 | /** |
@@ -94,24 +94,24 @@ discard block |
||
94 | 94 | * |
95 | 95 | * @param WPInv_Invoice $invoice |
96 | 96 | */ |
97 | -function getpaid_maybe_add_default_address( &$invoice ) { |
|
97 | +function getpaid_maybe_add_default_address(&$invoice) { |
|
98 | 98 | |
99 | 99 | $user_id = $invoice->get_user_id(); |
100 | 100 | |
101 | 101 | // Abort if the invoice belongs to no one. |
102 | - if ( empty( $user_id ) ) { |
|
102 | + if (empty($user_id)) { |
|
103 | 103 | return; |
104 | 104 | } |
105 | 105 | |
106 | 106 | // Fill in defaults whenever necessary. |
107 | - foreach ( wpinv_get_user_address( $user_id ) as $key => $value ) { |
|
107 | + foreach (wpinv_get_user_address($user_id) as $key => $value) { |
|
108 | 108 | |
109 | - if ( is_callable( $invoice, "get_$key" ) ) { |
|
110 | - $current = call_user_func( array( $invoice, "get_$key" ) ); |
|
109 | + if (is_callable($invoice, "get_$key")) { |
|
110 | + $current = call_user_func(array($invoice, "get_$key")); |
|
111 | 111 | |
112 | - if ( empty( $current ) ) { |
|
112 | + if (empty($current)) { |
|
113 | 113 | $method = "set_$key"; |
114 | - $invoice->$method( $value ); |
|
114 | + $invoice->$method($value); |
|
115 | 115 | } |
116 | 116 | } |
117 | 117 | } |
@@ -128,22 +128,22 @@ discard block |
||
128 | 128 | $address_fields = apply_filters( |
129 | 129 | 'getpaid_user_address_fields', |
130 | 130 | array( |
131 | - 'first_name' => __( 'First Name', 'invoicing' ), |
|
132 | - 'last_name' => __( 'Last Name', 'invoicing' ), |
|
133 | - 'address' => __( 'Address', 'invoicing' ), |
|
134 | - 'city' => __( 'City', 'invoicing' ), |
|
135 | - 'country' => __( 'Country', 'invoicing' ), |
|
136 | - 'state' => __( 'State', 'invoicing' ), |
|
137 | - 'zip' => __( 'Zip/Postal Code', 'invoicing' ), |
|
138 | - 'phone' => __( 'Phone Number', 'invoicing' ), |
|
139 | - 'company' => __( 'Company', 'invoicing' ), |
|
140 | - 'company_id' => __( 'Company ID', 'invoicing' ), |
|
141 | - 'vat_number' => __( 'VAT Number', 'invoicing' ), |
|
131 | + 'first_name' => __('First Name', 'invoicing'), |
|
132 | + 'last_name' => __('Last Name', 'invoicing'), |
|
133 | + 'address' => __('Address', 'invoicing'), |
|
134 | + 'city' => __('City', 'invoicing'), |
|
135 | + 'country' => __('Country', 'invoicing'), |
|
136 | + 'state' => __('State', 'invoicing'), |
|
137 | + 'zip' => __('Zip/Postal Code', 'invoicing'), |
|
138 | + 'phone' => __('Phone Number', 'invoicing'), |
|
139 | + 'company' => __('Company', 'invoicing'), |
|
140 | + 'company_id' => __('Company ID', 'invoicing'), |
|
141 | + 'vat_number' => __('VAT Number', 'invoicing'), |
|
142 | 142 | ) |
143 | 143 | ); |
144 | 144 | |
145 | - if ( ! wpinv_use_taxes() && isset( $address_fields['vat_number'] ) ) { |
|
146 | - unset( $address_fields['vat_number'] ); |
|
145 | + if (!wpinv_use_taxes() && isset($address_fields['vat_number'])) { |
|
146 | + unset($address_fields['vat_number']); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | return $address_fields; |
@@ -154,8 +154,8 @@ discard block |
||
154 | 154 | * |
155 | 155 | * @return bool |
156 | 156 | */ |
157 | -function getpaid_is_address_field_whitelisted( $key ) { |
|
158 | - return array_key_exists( $key, getpaid_user_address_fields() ); |
|
157 | +function getpaid_is_address_field_whitelisted($key) { |
|
158 | + return array_key_exists($key, getpaid_user_address_fields()); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | /** |
@@ -165,30 +165,30 @@ discard block |
||
165 | 165 | * |
166 | 166 | * @param WPInv_Invoice $invoice |
167 | 167 | */ |
168 | -function getpaid_save_invoice_user_address( $invoice ) { |
|
168 | +function getpaid_save_invoice_user_address($invoice) { |
|
169 | 169 | |
170 | 170 | // Retrieve the invoice. |
171 | - $invoice = wpinv_get_invoice( $invoice ); |
|
171 | + $invoice = wpinv_get_invoice($invoice); |
|
172 | 172 | |
173 | 173 | // Abort if it does not exist. |
174 | - if ( empty( $invoice ) || $invoice->is_renewal() ) { |
|
174 | + if (empty($invoice) || $invoice->is_renewal()) { |
|
175 | 175 | return; |
176 | 176 | } |
177 | 177 | |
178 | - foreach ( array_keys( getpaid_user_address_fields() ) as $field ) { |
|
178 | + foreach (array_keys(getpaid_user_address_fields()) as $field) { |
|
179 | 179 | |
180 | - if ( is_callable( array( $invoice, "get_$field" ) ) ) { |
|
181 | - $value = call_user_func( array( $invoice, "get_$field" ) ); |
|
180 | + if (is_callable(array($invoice, "get_$field"))) { |
|
181 | + $value = call_user_func(array($invoice, "get_$field")); |
|
182 | 182 | |
183 | 183 | // Only save if it is not empty. |
184 | - if ( ! empty( $value ) ) { |
|
185 | - update_user_meta( $invoice->get_user_id(), '_wpinv_' . $field, $value ); |
|
184 | + if (!empty($value)) { |
|
185 | + update_user_meta($invoice->get_user_id(), '_wpinv_' . $field, $value); |
|
186 | 186 | } |
187 | 187 | } |
188 | 188 | } |
189 | 189 | |
190 | 190 | } |
191 | -add_action( 'getpaid_checkout_invoice_updated', 'getpaid_save_invoice_user_address' ); |
|
191 | +add_action('getpaid_checkout_invoice_updated', 'getpaid_save_invoice_user_address'); |
|
192 | 192 | |
193 | 193 | /** |
194 | 194 | * Retrieves a saved user address. |
@@ -196,14 +196,14 @@ discard block |
||
196 | 196 | * @param int $user_id The user id whose address we should get. Defaults to the current user id. |
197 | 197 | * @return array |
198 | 198 | */ |
199 | -function wpinv_get_user_address( $user_id = 0 ) { |
|
199 | +function wpinv_get_user_address($user_id = 0) { |
|
200 | 200 | |
201 | 201 | // Prepare the user id. |
202 | - $user_id = empty( $user_id ) ? get_current_user_id() : $user_id; |
|
203 | - $user_info = get_userdata( $user_id ); |
|
202 | + $user_id = empty($user_id) ? get_current_user_id() : $user_id; |
|
203 | + $user_info = get_userdata($user_id); |
|
204 | 204 | |
205 | 205 | // Abort if non exists. |
206 | - if ( empty( $user_info ) ) { |
|
206 | + if (empty($user_info)) { |
|
207 | 207 | return array(); |
208 | 208 | } |
209 | 209 | |
@@ -214,11 +214,11 @@ discard block |
||
214 | 214 | 'display_name' => $user_info->display_name, |
215 | 215 | ); |
216 | 216 | |
217 | - foreach ( array_keys( getpaid_user_address_fields() ) as $field ) { |
|
218 | - $address[ $field ] = getpaid_get_user_address_field( $user_id, $field ); |
|
217 | + foreach (array_keys(getpaid_user_address_fields()) as $field) { |
|
218 | + $address[$field] = getpaid_get_user_address_field($user_id, $field); |
|
219 | 219 | } |
220 | 220 | |
221 | - $address = array_filter( $address ); |
|
221 | + $address = array_filter($address); |
|
222 | 222 | |
223 | 223 | $defaults = array( |
224 | 224 | 'first_name' => $user_info->first_name, |
@@ -227,7 +227,7 @@ discard block |
||
227 | 227 | 'country' => wpinv_get_default_country(), |
228 | 228 | ); |
229 | 229 | |
230 | - return getpaid_array_merge_if_empty( $address, $defaults ); |
|
230 | + return getpaid_array_merge_if_empty($address, $defaults); |
|
231 | 231 | |
232 | 232 | } |
233 | 233 | |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | * @param string $field The field to use. |
239 | 239 | * @return string|null |
240 | 240 | */ |
241 | -function getpaid_get_user_address_field( $user_id, $field ) { |
|
241 | +function getpaid_get_user_address_field($user_id, $field) { |
|
242 | 242 | |
243 | 243 | $prefixes = array( |
244 | 244 | '_wpinv_', |
@@ -246,15 +246,15 @@ discard block |
||
246 | 246 | '', |
247 | 247 | ); |
248 | 248 | |
249 | - foreach ( $prefixes as $prefix ) { |
|
249 | + foreach ($prefixes as $prefix) { |
|
250 | 250 | |
251 | 251 | // Meta table. |
252 | - $value = get_user_meta( $user_id, $prefix . $field, true ); |
|
252 | + $value = get_user_meta($user_id, $prefix . $field, true); |
|
253 | 253 | |
254 | 254 | // UWP table. |
255 | - $value = ( empty( $value ) && function_exists( 'uwp_get_usermeta' ) ) ? uwp_get_usermeta( $user_id, $prefix . $field ) : $value; |
|
255 | + $value = (empty($value) && function_exists('uwp_get_usermeta')) ? uwp_get_usermeta($user_id, $prefix . $field) : $value; |
|
256 | 256 | |
257 | - if ( ! empty( $value ) ) { |
|
257 | + if (!empty($value)) { |
|
258 | 258 | return $value; |
259 | 259 | } |
260 | 260 | } |
@@ -270,16 +270,16 @@ discard block |
||
270 | 270 | * @param string $return What to return. |
271 | 271 | * @return array |
272 | 272 | */ |
273 | -function wpinv_get_continents( $return = 'all' ) { |
|
273 | +function wpinv_get_continents($return = 'all') { |
|
274 | 274 | |
275 | - $continents = wpinv_get_data( 'continents' ); |
|
275 | + $continents = wpinv_get_data('continents'); |
|
276 | 276 | |
277 | - switch ( $return ) { |
|
277 | + switch ($return) { |
|
278 | 278 | case 'name': |
279 | - return wp_list_pluck( $continents, 'name' ); |
|
279 | + return wp_list_pluck($continents, 'name'); |
|
280 | 280 | break; |
281 | 281 | case 'countries': |
282 | - return wp_list_pluck( $continents, 'countries' ); |
|
282 | + return wp_list_pluck($continents, 'countries'); |
|
283 | 283 | break; |
284 | 284 | default: |
285 | 285 | return $continents; |
@@ -295,12 +295,12 @@ discard block |
||
295 | 295 | * @param string $country Country code. If no code is specified, defaults to the default country. |
296 | 296 | * @return string |
297 | 297 | */ |
298 | -function wpinv_get_continent_code_for_country( $country = false ) { |
|
298 | +function wpinv_get_continent_code_for_country($country = false) { |
|
299 | 299 | |
300 | - $country = wpinv_sanitize_country( $country ); |
|
300 | + $country = wpinv_sanitize_country($country); |
|
301 | 301 | |
302 | - foreach ( wpinv_get_continents( 'countries' ) as $continent_code => $countries ) { |
|
303 | - if ( false !== array_search( $country, $countries, true ) ) { |
|
302 | + foreach (wpinv_get_continents('countries') as $continent_code => $countries) { |
|
303 | + if (false !== array_search($country, $countries, true)) { |
|
304 | 304 | return $continent_code; |
305 | 305 | } |
306 | 306 | } |
@@ -316,13 +316,13 @@ discard block |
||
316 | 316 | * @param string $country Country code. If no code is specified, defaults to the default country. |
317 | 317 | * @return array |
318 | 318 | */ |
319 | -function wpinv_get_country_calling_code( $country = null ) { |
|
319 | +function wpinv_get_country_calling_code($country = null) { |
|
320 | 320 | |
321 | - $country = wpinv_sanitize_country( $country ); |
|
322 | - $codes = wpinv_get_data( 'phone-codes' ); |
|
323 | - $code = isset( $codes[ $country ] ) ? $codes[ $country ] : ''; |
|
321 | + $country = wpinv_sanitize_country($country); |
|
322 | + $codes = wpinv_get_data('phone-codes'); |
|
323 | + $code = isset($codes[$country]) ? $codes[$country] : ''; |
|
324 | 324 | |
325 | - if ( is_array( $code ) ) { |
|
325 | + if (is_array($code)) { |
|
326 | 326 | return $code[0]; |
327 | 327 | } |
328 | 328 | return $code; |
@@ -335,8 +335,8 @@ discard block |
||
335 | 335 | * @param bool $first_empty Whether or not the first item in the list should be empty |
336 | 336 | * @return array |
337 | 337 | */ |
338 | -function wpinv_get_country_list( $first_empty = false ) { |
|
339 | - return wpinv_maybe_add_empty_option( apply_filters( 'wpinv_countries', wpinv_get_data( 'countries' ) ), $first_empty ); |
|
338 | +function wpinv_get_country_list($first_empty = false) { |
|
339 | + return wpinv_maybe_add_empty_option(apply_filters('wpinv_countries', wpinv_get_data('countries')), $first_empty); |
|
340 | 340 | } |
341 | 341 | |
342 | 342 | /** |
@@ -346,22 +346,22 @@ discard block |
||
346 | 346 | * @param bool $first_empty Whether or not the first item in the list should be empty |
347 | 347 | * @return array |
348 | 348 | */ |
349 | -function wpinv_get_country_states( $country = null, $first_empty = false ) { |
|
349 | +function wpinv_get_country_states($country = null, $first_empty = false) { |
|
350 | 350 | |
351 | 351 | // Prepare the country. |
352 | - $country = wpinv_sanitize_country( $country ); |
|
352 | + $country = wpinv_sanitize_country($country); |
|
353 | 353 | |
354 | 354 | // Fetch all states. |
355 | - $all_states = wpinv_get_data( 'states' ); |
|
355 | + $all_states = wpinv_get_data('states'); |
|
356 | 356 | |
357 | 357 | // Fetch the specified country's states. |
358 | - $states = isset( $all_states[ $country ] ) ? $all_states[ $country ] : array(); |
|
359 | - $states = apply_filters( "wpinv_{$country}_states", $states ); |
|
360 | - $states = apply_filters( 'wpinv_country_states', $states, $country ); |
|
358 | + $states = isset($all_states[$country]) ? $all_states[$country] : array(); |
|
359 | + $states = apply_filters("wpinv_{$country}_states", $states); |
|
360 | + $states = apply_filters('wpinv_country_states', $states, $country); |
|
361 | 361 | |
362 | - asort( $states ); |
|
362 | + asort($states); |
|
363 | 363 | |
364 | - return wpinv_maybe_add_empty_option( $states, $first_empty ); |
|
364 | + return wpinv_maybe_add_empty_option($states, $first_empty); |
|
365 | 365 | } |
366 | 366 | |
367 | 367 | /** |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * @return array |
372 | 372 | */ |
373 | 373 | function wpinv_get_us_states_list() { |
374 | - return apply_filters( 'wpinv_usa_states', wpinv_get_country_states( 'US' ) ); |
|
374 | + return apply_filters('wpinv_usa_states', wpinv_get_country_states('US')); |
|
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
@@ -381,7 +381,7 @@ discard block |
||
381 | 381 | * @return array |
382 | 382 | */ |
383 | 383 | function wpinv_get_canada_states_list() { |
384 | - return apply_filters( 'wpinv_canada_provinces', wpinv_get_country_states( 'CA' ) ); |
|
384 | + return apply_filters('wpinv_canada_provinces', wpinv_get_country_states('CA')); |
|
385 | 385 | } |
386 | 386 | |
387 | 387 | /** |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | * @return array |
392 | 392 | */ |
393 | 393 | function wpinv_get_australia_states_list() { |
394 | - return apply_filters( 'wpinv_australia_states', wpinv_get_country_states( 'AU' ) ); |
|
394 | + return apply_filters('wpinv_australia_states', wpinv_get_country_states('AU')); |
|
395 | 395 | } |
396 | 396 | |
397 | 397 | /** |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | * @return array |
402 | 402 | */ |
403 | 403 | function wpinv_get_bangladesh_states_list() { |
404 | - return apply_filters( 'wpinv_bangladesh_states', wpinv_get_country_states( 'BD' ) ); |
|
404 | + return apply_filters('wpinv_bangladesh_states', wpinv_get_country_states('BD')); |
|
405 | 405 | } |
406 | 406 | |
407 | 407 | /** |
@@ -411,7 +411,7 @@ discard block |
||
411 | 411 | * @return array |
412 | 412 | */ |
413 | 413 | function wpinv_get_brazil_states_list() { |
414 | - return apply_filters( 'wpinv_brazil_states', wpinv_get_country_states( 'BR' ) ); |
|
414 | + return apply_filters('wpinv_brazil_states', wpinv_get_country_states('BR')); |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | /** |
@@ -421,7 +421,7 @@ discard block |
||
421 | 421 | * @return array |
422 | 422 | */ |
423 | 423 | function wpinv_get_bulgaria_states_list() { |
424 | - return apply_filters( 'wpinv_bulgaria_states', wpinv_get_country_states( 'BG' ) ); |
|
424 | + return apply_filters('wpinv_bulgaria_states', wpinv_get_country_states('BG')); |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | /** |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | * @return array |
432 | 432 | */ |
433 | 433 | function wpinv_get_hong_kong_states_list() { |
434 | - return apply_filters( 'wpinv_hong_kong_states', wpinv_get_country_states( 'HK' ) ); |
|
434 | + return apply_filters('wpinv_hong_kong_states', wpinv_get_country_states('HK')); |
|
435 | 435 | } |
436 | 436 | |
437 | 437 | /** |
@@ -441,7 +441,7 @@ discard block |
||
441 | 441 | * @return array |
442 | 442 | */ |
443 | 443 | function wpinv_get_hungary_states_list() { |
444 | - return apply_filters( 'wpinv_hungary_states', wpinv_get_country_states( 'HU' ) ); |
|
444 | + return apply_filters('wpinv_hungary_states', wpinv_get_country_states('HU')); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | /** |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | * @return array |
452 | 452 | */ |
453 | 453 | function wpinv_get_japan_states_list() { |
454 | - return apply_filters( 'wpinv_japan_states', wpinv_get_country_states( 'JP' ) ); |
|
454 | + return apply_filters('wpinv_japan_states', wpinv_get_country_states('JP')); |
|
455 | 455 | } |
456 | 456 | |
457 | 457 | /** |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | * @return array |
462 | 462 | */ |
463 | 463 | function wpinv_get_china_states_list() { |
464 | - return apply_filters( 'wpinv_china_states', wpinv_get_country_states( 'CN' ) ); |
|
464 | + return apply_filters('wpinv_china_states', wpinv_get_country_states('CN')); |
|
465 | 465 | } |
466 | 466 | |
467 | 467 | /** |
@@ -471,7 +471,7 @@ discard block |
||
471 | 471 | * @return array |
472 | 472 | */ |
473 | 473 | function wpinv_get_new_zealand_states_list() { |
474 | - return apply_filters( 'wpinv_new_zealand_states', wpinv_get_country_states( 'NZ' ) ); |
|
474 | + return apply_filters('wpinv_new_zealand_states', wpinv_get_country_states('NZ')); |
|
475 | 475 | } |
476 | 476 | |
477 | 477 | /** |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | * @return array |
482 | 482 | */ |
483 | 483 | function wpinv_get_peru_states_list() { |
484 | - return apply_filters( 'wpinv_peru_states', wpinv_get_country_states( 'PE' ) ); |
|
484 | + return apply_filters('wpinv_peru_states', wpinv_get_country_states('PE')); |
|
485 | 485 | } |
486 | 486 | |
487 | 487 | /** |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | * @return array |
492 | 492 | */ |
493 | 493 | function wpinv_get_indonesia_states_list() { |
494 | - return apply_filters( 'wpinv_indonesia_states', wpinv_get_country_states( 'ID' ) ); |
|
494 | + return apply_filters('wpinv_indonesia_states', wpinv_get_country_states('ID')); |
|
495 | 495 | } |
496 | 496 | |
497 | 497 | /** |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | * @return array |
502 | 502 | */ |
503 | 503 | function wpinv_get_india_states_list() { |
504 | - return apply_filters( 'wpinv_india_states', wpinv_get_country_states( 'IN' ) ); |
|
504 | + return apply_filters('wpinv_india_states', wpinv_get_country_states('IN')); |
|
505 | 505 | } |
506 | 506 | |
507 | 507 | /** |
@@ -511,7 +511,7 @@ discard block |
||
511 | 511 | * @return array |
512 | 512 | */ |
513 | 513 | function wpinv_get_iran_states_list() { |
514 | - return apply_filters( 'wpinv_iran_states', wpinv_get_country_states( 'IR' ) ); |
|
514 | + return apply_filters('wpinv_iran_states', wpinv_get_country_states('IR')); |
|
515 | 515 | } |
516 | 516 | |
517 | 517 | /** |
@@ -521,7 +521,7 @@ discard block |
||
521 | 521 | * @return array |
522 | 522 | */ |
523 | 523 | function wpinv_get_italy_states_list() { |
524 | - return apply_filters( 'wpinv_italy_states', wpinv_get_country_states( 'IT' ) ); |
|
524 | + return apply_filters('wpinv_italy_states', wpinv_get_country_states('IT')); |
|
525 | 525 | } |
526 | 526 | |
527 | 527 | /** |
@@ -531,7 +531,7 @@ discard block |
||
531 | 531 | * @return array |
532 | 532 | */ |
533 | 533 | function wpinv_get_malaysia_states_list() { |
534 | - return apply_filters( 'wpinv_malaysia_states', wpinv_get_country_states( 'MY' ) ); |
|
534 | + return apply_filters('wpinv_malaysia_states', wpinv_get_country_states('MY')); |
|
535 | 535 | } |
536 | 536 | |
537 | 537 | /** |
@@ -541,7 +541,7 @@ discard block |
||
541 | 541 | * @return array |
542 | 542 | */ |
543 | 543 | function wpinv_get_mexico_states_list() { |
544 | - return apply_filters( 'wpinv_mexico_states', wpinv_get_country_states( 'MX' ) ); |
|
544 | + return apply_filters('wpinv_mexico_states', wpinv_get_country_states('MX')); |
|
545 | 545 | } |
546 | 546 | |
547 | 547 | /** |
@@ -551,7 +551,7 @@ discard block |
||
551 | 551 | * @return array |
552 | 552 | */ |
553 | 553 | function wpinv_get_nepal_states_list() { |
554 | - return apply_filters( 'wpinv_nepal_states', wpinv_get_country_states( 'NP' ) ); |
|
554 | + return apply_filters('wpinv_nepal_states', wpinv_get_country_states('NP')); |
|
555 | 555 | } |
556 | 556 | |
557 | 557 | /** |
@@ -561,7 +561,7 @@ discard block |
||
561 | 561 | * @return array |
562 | 562 | */ |
563 | 563 | function wpinv_get_south_africa_states_list() { |
564 | - return apply_filters( 'wpinv_south_africa_states', wpinv_get_country_states( 'ZA' ) ); |
|
564 | + return apply_filters('wpinv_south_africa_states', wpinv_get_country_states('ZA')); |
|
565 | 565 | } |
566 | 566 | |
567 | 567 | /** |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | * @return array |
572 | 572 | */ |
573 | 573 | function wpinv_get_thailand_states_list() { |
574 | - return apply_filters( 'wpinv_thailand_states', wpinv_get_country_states( 'TH' ) ); |
|
574 | + return apply_filters('wpinv_thailand_states', wpinv_get_country_states('TH')); |
|
575 | 575 | } |
576 | 576 | |
577 | 577 | /** |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | * @return array |
582 | 582 | */ |
583 | 583 | function wpinv_get_turkey_states_list() { |
584 | - return apply_filters( 'wpinv_turkey_states', wpinv_get_country_states( 'TR' ) ); |
|
584 | + return apply_filters('wpinv_turkey_states', wpinv_get_country_states('TR')); |
|
585 | 585 | } |
586 | 586 | |
587 | 587 | /** |
@@ -591,31 +591,31 @@ discard block |
||
591 | 591 | * @return array |
592 | 592 | */ |
593 | 593 | function wpinv_get_spain_states_list() { |
594 | - return apply_filters( 'wpinv_spain_states', wpinv_get_country_states( 'ES' ) ); |
|
594 | + return apply_filters('wpinv_spain_states', wpinv_get_country_states('ES')); |
|
595 | 595 | } |
596 | 596 | |
597 | 597 | function wpinv_get_states_field() { |
598 | - if ( empty( $_POST['country'] ) ) { |
|
598 | + if (empty($_POST['country'])) { |
|
599 | 599 | $_POST['country'] = wpinv_get_default_country(); |
600 | 600 | } |
601 | - $states = wpinv_get_country_states( sanitize_text_field( $_POST['country'] ) ); |
|
601 | + $states = wpinv_get_country_states(sanitize_text_field($_POST['country'])); |
|
602 | 602 | |
603 | - if ( ! empty( $states ) ) { |
|
604 | - $sanitized_field_name = sanitize_text_field( $_POST['field_name'] ); |
|
603 | + if (!empty($states)) { |
|
604 | + $sanitized_field_name = sanitize_text_field($_POST['field_name']); |
|
605 | 605 | |
606 | - $class = isset( $_POST['class'] ) ? esc_attr( sanitize_text_field( $_POST['class'] ) ) : ''; |
|
606 | + $class = isset($_POST['class']) ? esc_attr(sanitize_text_field($_POST['class'])) : ''; |
|
607 | 607 | $class .= " $sanitized_field_name getpaid_js_field-state custom-select wpinv-select wpi_select2"; |
608 | 608 | |
609 | - $args = array( |
|
609 | + $args = array( |
|
610 | 610 | 'name' => $sanitized_field_name, |
611 | 611 | 'id' => $sanitized_field_name, |
612 | - 'class' => implode( ' ', array_unique( explode( ' ', $class ) ) ), |
|
613 | - 'options' => array_merge( array( '' => '' ), $states ), |
|
612 | + 'class' => implode(' ', array_unique(explode(' ', $class))), |
|
613 | + 'options' => array_merge(array('' => ''), $states), |
|
614 | 614 | 'show_option_all' => false, |
615 | 615 | 'show_option_none' => false, |
616 | 616 | ); |
617 | 617 | |
618 | - wpinv_html_select( $args ); |
|
618 | + wpinv_html_select($args); |
|
619 | 619 | |
620 | 620 | } else { |
621 | 621 | echo 'nostates'; |
@@ -623,10 +623,10 @@ discard block |
||
623 | 623 | |
624 | 624 | } |
625 | 625 | |
626 | -function wpinv_default_billing_country( $country = '', $user_id = 0 ) { |
|
627 | - $country = ! empty( $country ) ? $country : wpinv_get_default_country(); |
|
626 | +function wpinv_default_billing_country($country = '', $user_id = 0) { |
|
627 | + $country = !empty($country) ? $country : wpinv_get_default_country(); |
|
628 | 628 | |
629 | - return apply_filters( 'wpinv_default_billing_country', $country, $user_id ); |
|
629 | + return apply_filters('wpinv_default_billing_country', $country, $user_id); |
|
630 | 630 | } |
631 | 631 | |
632 | 632 | /** |
@@ -688,9 +688,9 @@ discard block |
||
688 | 688 | * @see `wpinv_get_invoice_address_replacements` |
689 | 689 | * @return string |
690 | 690 | */ |
691 | -function wpinv_get_full_address_format( $country = false ) { |
|
691 | +function wpinv_get_full_address_format($country = false) { |
|
692 | 692 | |
693 | - if ( empty( $country ) ) { |
|
693 | + if (empty($country)) { |
|
694 | 694 | $country = wpinv_get_default_country(); |
695 | 695 | } |
696 | 696 | |
@@ -698,7 +698,7 @@ discard block |
||
698 | 698 | $formats = wpinv_get_address_formats(); |
699 | 699 | |
700 | 700 | // Get format for the specified country. |
701 | - $format = ( $country && isset( $formats[ $country ] ) ) ? $formats[ $country ] : $formats['default']; |
|
701 | + $format = ($country && isset($formats[$country])) ? $formats[$country] : $formats['default']; |
|
702 | 702 | |
703 | 703 | /** |
704 | 704 | * Filters the address format to use on Invoices. |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | * @param string $format The address format to use. |
711 | 711 | * @param string $country The country who's address format is being retrieved. |
712 | 712 | */ |
713 | - return apply_filters( 'wpinv_get_full_address_format', $format, $country ); |
|
713 | + return apply_filters('wpinv_get_full_address_format', $format, $country); |
|
714 | 714 | } |
715 | 715 | |
716 | 716 | /** |
@@ -721,7 +721,7 @@ discard block |
||
721 | 721 | * @param array $billing_details customer's billing details |
722 | 722 | * @return array |
723 | 723 | */ |
724 | -function wpinv_get_invoice_address_replacements( $billing_details ) { |
|
724 | +function wpinv_get_invoice_address_replacements($billing_details) { |
|
725 | 725 | |
726 | 726 | $default_args = array( |
727 | 727 | 'address' => '', |
@@ -734,15 +734,15 @@ discard block |
||
734 | 734 | 'company' => '', |
735 | 735 | ); |
736 | 736 | |
737 | - $args = map_deep( wp_parse_args( $billing_details, $default_args ), 'trim' ); |
|
737 | + $args = map_deep(wp_parse_args($billing_details, $default_args), 'trim'); |
|
738 | 738 | $state = $args['state']; |
739 | 739 | $country = $args['country']; |
740 | 740 | |
741 | 741 | // Handle full country name. |
742 | - $full_country = empty( $country ) ? $country : wpinv_country_name( $country ); |
|
742 | + $full_country = empty($country) ? $country : wpinv_country_name($country); |
|
743 | 743 | |
744 | 744 | // Handle full state name. |
745 | - $full_state = ( $country && $state ) ? wpinv_state_name( $state, $country ) : $state; |
|
745 | + $full_state = ($country && $state) ? wpinv_state_name($state, $country) : $state; |
|
746 | 746 | |
747 | 747 | $args['postcode'] = $args['zip']; |
748 | 748 | $args['name'] = $args['first_name'] . ' ' . $args['last_name']; |
@@ -760,14 +760,14 @@ discard block |
||
760 | 760 | * @param array $replacements The address replacements to use. |
761 | 761 | * @param array $billing_details The billing details to use. |
762 | 762 | */ |
763 | - $replacements = apply_filters( 'wpinv_get_invoice_address_replacements', $args, $billing_details ); |
|
763 | + $replacements = apply_filters('wpinv_get_invoice_address_replacements', $args, $billing_details); |
|
764 | 764 | |
765 | 765 | $return = array(); |
766 | 766 | |
767 | - foreach ( $replacements as $key => $value ) { |
|
768 | - $value = is_scalar( $value ) ? trim( sanitize_text_field( $value ) ) : ''; |
|
769 | - $return[ '{{' . $key . '}}' ] = $value; |
|
770 | - $return[ '{{' . $key . '_upper}}' ] = wpinv_utf8_strtoupper( $value ); |
|
767 | + foreach ($replacements as $key => $value) { |
|
768 | + $value = is_scalar($value) ? trim(sanitize_text_field($value)) : ''; |
|
769 | + $return['{{' . $key . '}}'] = $value; |
|
770 | + $return['{{' . $key . '_upper}}'] = wpinv_utf8_strtoupper($value); |
|
771 | 771 | } |
772 | 772 | |
773 | 773 | return $return; |
@@ -781,6 +781,6 @@ discard block |
||
781 | 781 | * @since 1.0.14 |
782 | 782 | * @return string |
783 | 783 | */ |
784 | -function wpinv_trim_formatted_address_line( $line ) { |
|
785 | - return trim( $line, ', ' ); |
|
784 | +function wpinv_trim_formatted_address_line($line) { |
|
785 | + return trim($line, ', '); |
|
786 | 786 | } |
@@ -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 | * Are we supporting item quantities? |
@@ -20,35 +20,35 @@ discard block |
||
20 | 20 | */ |
21 | 21 | function wpinv_get_ip() { |
22 | 22 | |
23 | - if ( isset( $_SERVER['HTTP_X_REAL_IP'] ) ) { |
|
24 | - return sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_REAL_IP'] ) ); |
|
23 | + if (isset($_SERVER['HTTP_X_REAL_IP'])) { |
|
24 | + return sanitize_text_field(wp_unslash($_SERVER['HTTP_X_REAL_IP'])); |
|
25 | 25 | } |
26 | 26 | |
27 | - if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { |
|
27 | + if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { |
|
28 | 28 | // Proxy servers can send through this header like this: X-Forwarded-For: client1, proxy1, proxy2 |
29 | 29 | // Make sure we always only send through the first IP in the list which should always be the client IP. |
30 | - return (string) rest_is_ip_address( trim( current( preg_split( '/,/', sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) ) ) ) ); |
|
30 | + return (string) rest_is_ip_address(trim(current(preg_split('/,/', sanitize_text_field(wp_unslash($_SERVER['HTTP_X_FORWARDED_FOR'])))))); |
|
31 | 31 | } |
32 | 32 | |
33 | - if ( isset( $_SERVER['HTTP_CLIENT_IP'] ) ) { |
|
34 | - return sanitize_text_field( wp_unslash( $_SERVER['HTTP_CLIENT_IP'] ) ); |
|
33 | + if (isset($_SERVER['HTTP_CLIENT_IP'])) { |
|
34 | + return sanitize_text_field(wp_unslash($_SERVER['HTTP_CLIENT_IP'])); |
|
35 | 35 | } |
36 | 36 | |
37 | - if ( isset( $_SERVER['REMOTE_ADDR'] ) ) { |
|
38 | - return sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ); |
|
37 | + if (isset($_SERVER['REMOTE_ADDR'])) { |
|
38 | + return sanitize_text_field(wp_unslash($_SERVER['REMOTE_ADDR'])); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | return ''; |
42 | 42 | } |
43 | 43 | |
44 | 44 | function wpinv_get_user_agent() { |
45 | - if ( ! empty( $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
46 | - $user_agent = sanitize_text_field( $_SERVER['HTTP_USER_AGENT'] ); |
|
45 | + if (!empty($_SERVER['HTTP_USER_AGENT'])) { |
|
46 | + $user_agent = sanitize_text_field($_SERVER['HTTP_USER_AGENT']); |
|
47 | 47 | } else { |
48 | 48 | $user_agent = ''; |
49 | 49 | } |
50 | 50 | |
51 | - return apply_filters( 'wpinv_get_user_agent', $user_agent ); |
|
51 | + return apply_filters('wpinv_get_user_agent', $user_agent); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -57,16 +57,16 @@ discard block |
||
57 | 57 | * @param string $amount The amount to sanitize. |
58 | 58 | * @return float |
59 | 59 | */ |
60 | -function getpaid_standardize_amount( $amount ) { |
|
60 | +function getpaid_standardize_amount($amount) { |
|
61 | 61 | |
62 | - $amount = str_replace( wpinv_thousands_separator(), '', $amount ); |
|
63 | - $amount = str_replace( wpinv_decimal_separator(), '.', $amount ); |
|
64 | - if ( is_numeric( $amount ) ) { |
|
65 | - return floatval( $amount ); |
|
62 | + $amount = str_replace(wpinv_thousands_separator(), '', $amount); |
|
63 | + $amount = str_replace(wpinv_decimal_separator(), '.', $amount); |
|
64 | + if (is_numeric($amount)) { |
|
65 | + return floatval($amount); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | // Cast the remaining to a float. |
69 | - return wpinv_round_amount( preg_replace( '/[^0-9\.\-]/', '', $amount ) ); |
|
69 | + return wpinv_round_amount(preg_replace('/[^0-9\.\-]/', '', $amount)); |
|
70 | 70 | |
71 | 71 | } |
72 | 72 | |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @param string $amount The amount to sanitize. |
77 | 77 | */ |
78 | -function getpaid_unstandardize_amount( $amount ) { |
|
79 | - return str_replace( '.', wpinv_decimal_separator(), $amount ); |
|
78 | +function getpaid_unstandardize_amount($amount) { |
|
79 | + return str_replace('.', wpinv_decimal_separator(), $amount); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -84,23 +84,23 @@ discard block |
||
84 | 84 | * |
85 | 85 | * @param string $amount The amount to sanitize. |
86 | 86 | */ |
87 | -function wpinv_sanitize_amount( $amount ) { |
|
87 | +function wpinv_sanitize_amount($amount) { |
|
88 | 88 | |
89 | - if ( is_numeric( $amount ) ) { |
|
90 | - return floatval( $amount ); |
|
89 | + if (is_numeric($amount)) { |
|
90 | + return floatval($amount); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | // Separate the decimals and thousands. |
94 | - $amount = explode( wpinv_decimal_separator(), $amount ); |
|
94 | + $amount = explode(wpinv_decimal_separator(), $amount); |
|
95 | 95 | |
96 | 96 | // Remove thousands. |
97 | - $amount[0] = str_replace( wpinv_thousands_separator(), '', $amount[0] ); |
|
97 | + $amount[0] = str_replace(wpinv_thousands_separator(), '', $amount[0]); |
|
98 | 98 | |
99 | 99 | // Convert back to string. |
100 | - $amount = count( $amount ) > 1 ? "{$amount[0]}.{$amount[1]}" : $amount[0]; |
|
100 | + $amount = count($amount) > 1 ? "{$amount[0]}.{$amount[1]}" : $amount[0]; |
|
101 | 101 | |
102 | 102 | // Cast the remaining to a float. |
103 | - return (float) preg_replace( '/[^0-9\.\-]/', '', $amount ); |
|
103 | + return (float) preg_replace('/[^0-9\.\-]/', '', $amount); |
|
104 | 104 | |
105 | 105 | } |
106 | 106 | |
@@ -110,19 +110,19 @@ discard block |
||
110 | 110 | * @param float $amount |
111 | 111 | * @param float|string|int|null $decimals |
112 | 112 | */ |
113 | -function wpinv_round_amount( $amount, $decimals = null, $use_sprintf = false ) { |
|
113 | +function wpinv_round_amount($amount, $decimals = null, $use_sprintf = false) { |
|
114 | 114 | |
115 | - if ( $decimals === null ) { |
|
115 | + if ($decimals === null) { |
|
116 | 116 | $decimals = wpinv_decimals(); |
117 | 117 | } |
118 | 118 | |
119 | - if ( $use_sprintf ) { |
|
120 | - $amount = sprintf( "%.{$decimals}f", (float) $amount ); |
|
119 | + if ($use_sprintf) { |
|
120 | + $amount = sprintf("%.{$decimals}f", (float) $amount); |
|
121 | 121 | } else { |
122 | - $amount = round( (float) $amount, absint( $decimals ) ); |
|
122 | + $amount = round((float) $amount, absint($decimals)); |
|
123 | 123 | } |
124 | 124 | |
125 | - return apply_filters( 'wpinv_round_amount', $amount, $decimals ); |
|
125 | + return apply_filters('wpinv_round_amount', $amount, $decimals); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -134,32 +134,32 @@ discard block |
||
134 | 134 | * @param string|WPInv_Invoice $invoice The invoice object|post type|type |
135 | 135 | * @return array |
136 | 136 | */ |
137 | -function wpinv_get_invoice_statuses( $draft = false, $trashed = false, $invoice = false ) { |
|
137 | +function wpinv_get_invoice_statuses($draft = false, $trashed = false, $invoice = false) { |
|
138 | 138 | |
139 | 139 | $invoice_statuses = array( |
140 | - 'wpi-pending' => _x( 'Pending payment', 'Invoice status', 'invoicing' ), |
|
141 | - 'publish' => _x( 'Paid', 'Invoice status', 'invoicing' ), |
|
142 | - 'wpi-processing' => _x( 'Processing', 'Invoice status', 'invoicing' ), |
|
143 | - 'wpi-onhold' => _x( 'On hold', 'Invoice status', 'invoicing' ), |
|
144 | - 'wpi-cancelled' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
145 | - 'wpi-refunded' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
146 | - 'wpi-failed' => _x( 'Failed', 'Invoice status', 'invoicing' ), |
|
147 | - 'wpi-renewal' => _x( 'Renewal Payment', 'Invoice status', 'invoicing' ), |
|
140 | + 'wpi-pending' => _x('Pending payment', 'Invoice status', 'invoicing'), |
|
141 | + 'publish' => _x('Paid', 'Invoice status', 'invoicing'), |
|
142 | + 'wpi-processing' => _x('Processing', 'Invoice status', 'invoicing'), |
|
143 | + 'wpi-onhold' => _x('On hold', 'Invoice status', 'invoicing'), |
|
144 | + 'wpi-cancelled' => _x('Cancelled', 'Invoice status', 'invoicing'), |
|
145 | + 'wpi-refunded' => _x('Refunded', 'Invoice status', 'invoicing'), |
|
146 | + 'wpi-failed' => _x('Failed', 'Invoice status', 'invoicing'), |
|
147 | + 'wpi-renewal' => _x('Renewal Payment', 'Invoice status', 'invoicing'), |
|
148 | 148 | ); |
149 | 149 | |
150 | - if ( $draft ) { |
|
151 | - $invoice_statuses['draft'] = __( 'Draft', 'invoicing' ); |
|
150 | + if ($draft) { |
|
151 | + $invoice_statuses['draft'] = __('Draft', 'invoicing'); |
|
152 | 152 | } |
153 | 153 | |
154 | - if ( $trashed ) { |
|
155 | - $invoice_statuses['trash'] = __( 'Trash', 'invoicing' ); |
|
154 | + if ($trashed) { |
|
155 | + $invoice_statuses['trash'] = __('Trash', 'invoicing'); |
|
156 | 156 | } |
157 | 157 | |
158 | - if ( $invoice instanceof WPInv_Invoice ) { |
|
158 | + if ($invoice instanceof WPInv_Invoice) { |
|
159 | 159 | $invoice = $invoice->get_post_type(); |
160 | 160 | } |
161 | 161 | |
162 | - return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
162 | + return apply_filters('wpinv_statuses', $invoice_statuses, $invoice); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -168,11 +168,11 @@ discard block |
||
168 | 168 | * @param string $status The raw status |
169 | 169 | * @param string|WPInv_Invoice $invoice The invoice object|post type|type |
170 | 170 | */ |
171 | -function wpinv_status_nicename( $status, $invoice = false ) { |
|
172 | - $statuses = wpinv_get_invoice_statuses( true, true, $invoice ); |
|
173 | - $status = isset( $statuses[ $status ] ) ? $statuses[ $status ] : $status; |
|
171 | +function wpinv_status_nicename($status, $invoice = false) { |
|
172 | + $statuses = wpinv_get_invoice_statuses(true, true, $invoice); |
|
173 | + $status = isset($statuses[$status]) ? $statuses[$status] : $status; |
|
174 | 174 | |
175 | - return sanitize_text_field( $status ); |
|
175 | + return sanitize_text_field($status); |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | /** |
@@ -180,13 +180,13 @@ discard block |
||
180 | 180 | * |
181 | 181 | * @param string $current |
182 | 182 | */ |
183 | -function wpinv_get_currency( $current = '' ) { |
|
183 | +function wpinv_get_currency($current = '') { |
|
184 | 184 | |
185 | - if ( empty( $current ) ) { |
|
186 | - $current = apply_filters( 'wpinv_currency', wpinv_get_option( 'currency', 'USD' ) ); |
|
185 | + if (empty($current)) { |
|
186 | + $current = apply_filters('wpinv_currency', wpinv_get_option('currency', 'USD')); |
|
187 | 187 | } |
188 | 188 | |
189 | - return trim( strtoupper( $current ) ); |
|
189 | + return trim(strtoupper($current)); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -194,25 +194,25 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @param string|null $currency The currency code. Defaults to the default currency. |
196 | 196 | */ |
197 | -function wpinv_currency_symbol( $currency = null ) { |
|
197 | +function wpinv_currency_symbol($currency = null) { |
|
198 | 198 | |
199 | 199 | // Prepare the currency. |
200 | - $currency = empty( $currency ) ? wpinv_get_currency() : wpinv_clean( $currency ); |
|
200 | + $currency = empty($currency) ? wpinv_get_currency() : wpinv_clean($currency); |
|
201 | 201 | |
202 | 202 | // Fetch all symbols. |
203 | 203 | $symbols = wpinv_get_currency_symbols(); |
204 | 204 | |
205 | 205 | // Fetch this currencies symbol. |
206 | - $currency_symbol = isset( $symbols[ $currency ] ) ? $symbols[ $currency ] : $currency; |
|
206 | + $currency_symbol = isset($symbols[$currency]) ? $symbols[$currency] : $currency; |
|
207 | 207 | |
208 | 208 | // Filter the symbol. |
209 | - return apply_filters( 'wpinv_currency_symbol', $currency_symbol, $currency ); |
|
209 | + return apply_filters('wpinv_currency_symbol', $currency_symbol, $currency); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | function wpinv_currency_position() { |
213 | - $position = wpinv_get_option( 'currency_position', 'left' ); |
|
213 | + $position = wpinv_get_option('currency_position', 'left'); |
|
214 | 214 | |
215 | - return apply_filters( 'wpinv_currency_position', $position ); |
|
215 | + return apply_filters('wpinv_currency_position', $position); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | /** |
@@ -220,13 +220,13 @@ discard block |
||
220 | 220 | * |
221 | 221 | * @param $string|null $current |
222 | 222 | */ |
223 | -function wpinv_thousands_separator( $current = null ) { |
|
223 | +function wpinv_thousands_separator($current = null) { |
|
224 | 224 | |
225 | - if ( null == $current ) { |
|
226 | - $current = wpinv_get_option( 'thousands_separator', ',' ); |
|
225 | + if (null == $current) { |
|
226 | + $current = wpinv_get_option('thousands_separator', ','); |
|
227 | 227 | } |
228 | 228 | |
229 | - return trim( $current ); |
|
229 | + return trim($current); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | /** |
@@ -234,13 +234,13 @@ discard block |
||
234 | 234 | * |
235 | 235 | * @param $string|null $current |
236 | 236 | */ |
237 | -function wpinv_decimal_separator( $current = null ) { |
|
237 | +function wpinv_decimal_separator($current = null) { |
|
238 | 238 | |
239 | - if ( null == $current ) { |
|
240 | - $current = wpinv_get_option( 'decimal_separator', '.' ); |
|
239 | + if (null == $current) { |
|
240 | + $current = wpinv_get_option('decimal_separator', '.'); |
|
241 | 241 | } |
242 | 242 | |
243 | - return trim( $current ); |
|
243 | + return trim($current); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | /** |
@@ -248,27 +248,27 @@ discard block |
||
248 | 248 | * |
249 | 249 | * @param $string|null $current |
250 | 250 | */ |
251 | -function wpinv_decimals( $current = null ) { |
|
251 | +function wpinv_decimals($current = null) { |
|
252 | 252 | |
253 | - if ( null == $current ) { |
|
254 | - $current = wpinv_get_option( 'decimals', 2 ); |
|
253 | + if (null == $current) { |
|
254 | + $current = wpinv_get_option('decimals', 2); |
|
255 | 255 | } |
256 | 256 | |
257 | - return absint( $current ); |
|
257 | + return absint($current); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | /** |
261 | 261 | * Retrieves a list of all supported currencies. |
262 | 262 | */ |
263 | 263 | function wpinv_get_currencies() { |
264 | - return apply_filters( 'wpinv_currencies', wpinv_get_data( 'currencies' ) ); |
|
264 | + return apply_filters('wpinv_currencies', wpinv_get_data('currencies')); |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | /** |
268 | 268 | * Retrieves a list of all currency symbols. |
269 | 269 | */ |
270 | 270 | function wpinv_get_currency_symbols() { |
271 | - return apply_filters( 'wpinv_currency_symbols', wpinv_get_data( 'currency-symbols' ) ); |
|
271 | + return apply_filters('wpinv_currency_symbols', wpinv_get_data('currency-symbols')); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | /** |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | $currency_pos = wpinv_currency_position(); |
281 | 281 | $format = '%1$s%2$s'; |
282 | 282 | |
283 | - switch ( $currency_pos ) { |
|
283 | + switch ($currency_pos) { |
|
284 | 284 | case 'left': |
285 | 285 | $format = '%1$s%2$s'; |
286 | 286 | break; |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | break; |
296 | 296 | } |
297 | 297 | |
298 | - return apply_filters( 'getpaid_price_format', $format, $currency_pos ); |
|
298 | + return apply_filters('getpaid_price_format', $format, $currency_pos); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | /** |
@@ -305,8 +305,8 @@ discard block |
||
305 | 305 | * @param string $currency Currency. |
306 | 306 | * @return string |
307 | 307 | */ |
308 | -function wpinv_the_price( $amount = 0, $currency = '' ) { |
|
309 | - echo wp_kses_post( wpinv_price( $amount, $currency ) ); |
|
308 | +function wpinv_the_price($amount = 0, $currency = '') { |
|
309 | + echo wp_kses_post(wpinv_price($amount, $currency)); |
|
310 | 310 | } |
311 | 311 | |
312 | 312 | /** |
@@ -316,25 +316,25 @@ discard block |
||
316 | 316 | * @param string $currency Currency. |
317 | 317 | * @return string |
318 | 318 | */ |
319 | -function wpinv_price( $amount = 0, $currency = '' ) { |
|
319 | +function wpinv_price($amount = 0, $currency = '') { |
|
320 | 320 | |
321 | 321 | // Backwards compatibility. |
322 | - $amount = wpinv_sanitize_amount( $amount ); |
|
322 | + $amount = wpinv_sanitize_amount($amount); |
|
323 | 323 | |
324 | 324 | // Prepare variables. |
325 | - $currency = wpinv_get_currency( $currency ); |
|
325 | + $currency = wpinv_get_currency($currency); |
|
326 | 326 | $amount = (float) $amount; |
327 | 327 | $unformatted_amount = $amount; |
328 | 328 | $negative = $amount < 0; |
329 | - $amount = apply_filters( 'getpaid_raw_amount', floatval( $negative ? $amount * -1 : $amount ) ); |
|
330 | - $amount = wpinv_format_amount( $amount ); |
|
329 | + $amount = apply_filters('getpaid_raw_amount', floatval($negative ? $amount * -1 : $amount)); |
|
330 | + $amount = wpinv_format_amount($amount); |
|
331 | 331 | |
332 | 332 | // Format the amount. |
333 | 333 | $format = getpaid_get_price_format(); |
334 | - $formatted_amount = ( $negative ? '-' : '' ) . sprintf( $format, '<span class="getpaid-currency__symbol">' . wpinv_currency_symbol( $currency ) . '</span>', $amount ); |
|
334 | + $formatted_amount = ($negative ? '-' : '') . sprintf($format, '<span class="getpaid-currency__symbol">' . wpinv_currency_symbol($currency) . '</span>', $amount); |
|
335 | 335 | |
336 | 336 | // Filter the formatting. |
337 | - return apply_filters( 'wpinv_price', $formatted_amount, $amount, $currency, $unformatted_amount ); |
|
337 | + return apply_filters('wpinv_price', $formatted_amount, $amount, $currency, $unformatted_amount); |
|
338 | 338 | } |
339 | 339 | |
340 | 340 | /** |
@@ -345,25 +345,25 @@ discard block |
||
345 | 345 | * @param bool $calculate Whether or not to apply separators. |
346 | 346 | * @return string |
347 | 347 | */ |
348 | -function wpinv_format_amount( $amount, $decimals = null, $calculate = false ) { |
|
348 | +function wpinv_format_amount($amount, $decimals = null, $calculate = false) { |
|
349 | 349 | $thousands_sep = wpinv_thousands_separator(); |
350 | 350 | $decimal_sep = wpinv_decimal_separator(); |
351 | - $decimals = wpinv_decimals( $decimals ); |
|
352 | - $amount = wpinv_sanitize_amount( $amount ); |
|
351 | + $decimals = wpinv_decimals($decimals); |
|
352 | + $amount = wpinv_sanitize_amount($amount); |
|
353 | 353 | |
354 | - if ( $calculate ) { |
|
354 | + if ($calculate) { |
|
355 | 355 | return $amount; |
356 | 356 | } |
357 | 357 | |
358 | 358 | // Fomart the amount. |
359 | - return number_format( $amount, $decimals, $decimal_sep, $thousands_sep ); |
|
359 | + return number_format($amount, $decimals, $decimal_sep, $thousands_sep); |
|
360 | 360 | } |
361 | 361 | |
362 | -function wpinv_sanitize_key( $key ) { |
|
362 | +function wpinv_sanitize_key($key) { |
|
363 | 363 | $raw_key = $key; |
364 | - $key = preg_replace( '/[^a-zA-Z0-9_\-\.\:\/]/', '', $key ); |
|
364 | + $key = preg_replace('/[^a-zA-Z0-9_\-\.\:\/]/', '', $key); |
|
365 | 365 | |
366 | - return apply_filters( 'wpinv_sanitize_key', $key, $raw_key ); |
|
366 | + return apply_filters('wpinv_sanitize_key', $key, $raw_key); |
|
367 | 367 | } |
368 | 368 | |
369 | 369 | /** |
@@ -371,8 +371,8 @@ discard block |
||
371 | 371 | * |
372 | 372 | * @param $str the file whose extension should be retrieved. |
373 | 373 | */ |
374 | -function wpinv_get_file_extension( $str ) { |
|
375 | - $filetype = wp_check_filetype( $str ); |
|
374 | +function wpinv_get_file_extension($str) { |
|
375 | + $filetype = wp_check_filetype($str); |
|
376 | 376 | return $filetype['ext']; |
377 | 377 | } |
378 | 378 | |
@@ -381,16 +381,16 @@ discard block |
||
381 | 381 | * |
382 | 382 | * @param string $string |
383 | 383 | */ |
384 | -function wpinv_string_is_image_url( $string ) { |
|
385 | - $extension = strtolower( wpinv_get_file_extension( $string ) ); |
|
386 | - return in_array( $extension, array( 'jpeg', 'jpg', 'png', 'gif', 'ico' ), true ); |
|
384 | +function wpinv_string_is_image_url($string) { |
|
385 | + $extension = strtolower(wpinv_get_file_extension($string)); |
|
386 | + return in_array($extension, array('jpeg', 'jpg', 'png', 'gif', 'ico'), true); |
|
387 | 387 | } |
388 | 388 | |
389 | 389 | /** |
390 | 390 | * Returns the current URL. |
391 | 391 | */ |
392 | 392 | function wpinv_get_current_page_url() { |
393 | - return ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
393 | + return (is_ssl() ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
394 | 394 | } |
395 | 395 | |
396 | 396 | /** |
@@ -400,46 +400,46 @@ discard block |
||
400 | 400 | * @param string $name Constant name. |
401 | 401 | * @param mixed $value Value. |
402 | 402 | */ |
403 | -function getpaid_maybe_define_constant( $name, $value ) { |
|
404 | - if ( ! defined( $name ) ) { |
|
405 | - define( $name, $value ); |
|
403 | +function getpaid_maybe_define_constant($name, $value) { |
|
404 | + if (!defined($name)) { |
|
405 | + define($name, $value); |
|
406 | 406 | } |
407 | 407 | } |
408 | 408 | |
409 | 409 | function wpinv_get_php_arg_separator_output() { |
410 | - return ini_get( 'arg_separator.output' ); |
|
410 | + return ini_get('arg_separator.output'); |
|
411 | 411 | } |
412 | 412 | |
413 | -function wpinv_rgb_from_hex( $color ) { |
|
414 | - $color = str_replace( '#', '', $color ); |
|
413 | +function wpinv_rgb_from_hex($color) { |
|
414 | + $color = str_replace('#', '', $color); |
|
415 | 415 | |
416 | 416 | // Convert shorthand colors to full format, e.g. "FFF" -> "FFFFFF" |
417 | - $color = preg_replace( '~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color ); |
|
418 | - if ( empty( $color ) ) { |
|
417 | + $color = preg_replace('~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color); |
|
418 | + if (empty($color)) { |
|
419 | 419 | return null; |
420 | 420 | } |
421 | 421 | |
422 | - $color = str_split( $color ); |
|
422 | + $color = str_split($color); |
|
423 | 423 | |
424 | 424 | $rgb = array(); |
425 | - $rgb['R'] = hexdec( $color[0] . $color[1] ); |
|
426 | - $rgb['G'] = hexdec( $color[2] . $color[3] ); |
|
427 | - $rgb['B'] = hexdec( $color[4] . $color[5] ); |
|
425 | + $rgb['R'] = hexdec($color[0] . $color[1]); |
|
426 | + $rgb['G'] = hexdec($color[2] . $color[3]); |
|
427 | + $rgb['B'] = hexdec($color[4] . $color[5]); |
|
428 | 428 | |
429 | 429 | return $rgb; |
430 | 430 | } |
431 | 431 | |
432 | -function wpinv_hex_darker( $color, $factor = 30 ) { |
|
433 | - $base = wpinv_rgb_from_hex( $color ); |
|
432 | +function wpinv_hex_darker($color, $factor = 30) { |
|
433 | + $base = wpinv_rgb_from_hex($color); |
|
434 | 434 | $color = '#'; |
435 | 435 | |
436 | - foreach ( $base as $k => $v ) { |
|
436 | + foreach ($base as $k => $v) { |
|
437 | 437 | $amount = $v / 100; |
438 | - $amount = round( $amount * $factor ); |
|
438 | + $amount = round($amount * $factor); |
|
439 | 439 | $new_decimal = $v - $amount; |
440 | 440 | |
441 | - $new_hex_component = dechex( $new_decimal ); |
|
442 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
441 | + $new_hex_component = dechex($new_decimal); |
|
442 | + if (strlen($new_hex_component) < 2) { |
|
443 | 443 | $new_hex_component = '0' . $new_hex_component; |
444 | 444 | } |
445 | 445 | $color .= $new_hex_component; |
@@ -448,18 +448,18 @@ discard block |
||
448 | 448 | return $color; |
449 | 449 | } |
450 | 450 | |
451 | -function wpinv_hex_lighter( $color, $factor = 30 ) { |
|
452 | - $base = wpinv_rgb_from_hex( $color ); |
|
451 | +function wpinv_hex_lighter($color, $factor = 30) { |
|
452 | + $base = wpinv_rgb_from_hex($color); |
|
453 | 453 | $color = '#'; |
454 | 454 | |
455 | - foreach ( $base as $k => $v ) { |
|
455 | + foreach ($base as $k => $v) { |
|
456 | 456 | $amount = 255 - $v; |
457 | 457 | $amount = $amount / 100; |
458 | - $amount = round( $amount * $factor ); |
|
458 | + $amount = round($amount * $factor); |
|
459 | 459 | $new_decimal = $v + $amount; |
460 | 460 | |
461 | - $new_hex_component = dechex( $new_decimal ); |
|
462 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
461 | + $new_hex_component = dechex($new_decimal); |
|
462 | + if (strlen($new_hex_component) < 2) { |
|
463 | 463 | $new_hex_component = '0' . $new_hex_component; |
464 | 464 | } |
465 | 465 | $color .= $new_hex_component; |
@@ -468,22 +468,22 @@ discard block |
||
468 | 468 | return $color; |
469 | 469 | } |
470 | 470 | |
471 | -function wpinv_light_or_dark( $color, $dark = '#000000', $light = '#FFFFFF' ) { |
|
472 | - $hex = str_replace( '#', '', $color ); |
|
471 | +function wpinv_light_or_dark($color, $dark = '#000000', $light = '#FFFFFF') { |
|
472 | + $hex = str_replace('#', '', $color); |
|
473 | 473 | |
474 | - $c_r = hexdec( substr( $hex, 0, 2 ) ); |
|
475 | - $c_g = hexdec( substr( $hex, 2, 2 ) ); |
|
476 | - $c_b = hexdec( substr( $hex, 4, 2 ) ); |
|
474 | + $c_r = hexdec(substr($hex, 0, 2)); |
|
475 | + $c_g = hexdec(substr($hex, 2, 2)); |
|
476 | + $c_b = hexdec(substr($hex, 4, 2)); |
|
477 | 477 | |
478 | - $brightness = ( ( $c_r * 299 ) + ( $c_g * 587 ) + ( $c_b * 114 ) ) / 1000; |
|
478 | + $brightness = (($c_r * 299) + ($c_g * 587) + ($c_b * 114)) / 1000; |
|
479 | 479 | |
480 | 480 | return $brightness > 155 ? $dark : $light; |
481 | 481 | } |
482 | 482 | |
483 | -function wpinv_format_hex( $hex ) { |
|
484 | - $hex = trim( str_replace( '#', '', $hex ) ); |
|
483 | +function wpinv_format_hex($hex) { |
|
484 | + $hex = trim(str_replace('#', '', $hex)); |
|
485 | 485 | |
486 | - if ( strlen( $hex ) == 3 ) { |
|
486 | + if (strlen($hex) == 3) { |
|
487 | 487 | $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; |
488 | 488 | } |
489 | 489 | |
@@ -503,12 +503,12 @@ discard block |
||
503 | 503 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
504 | 504 | * @return string |
505 | 505 | */ |
506 | -function wpinv_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) { |
|
507 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
508 | - return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding ); |
|
506 | +function wpinv_utf8_strimwidth($str, $start, $width, $trimmaker = '', $encoding = 'UTF-8') { |
|
507 | + if (function_exists('mb_strimwidth')) { |
|
508 | + return mb_strimwidth($str, $start, $width, $trimmaker, $encoding); |
|
509 | 509 | } |
510 | 510 | |
511 | - return wpinv_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker; |
|
511 | + return wpinv_utf8_substr($str, $start, $width, $encoding) . $trimmaker; |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | /** |
@@ -520,28 +520,28 @@ discard block |
||
520 | 520 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
521 | 521 | * @return int Returns the number of characters in string. |
522 | 522 | */ |
523 | -function wpinv_utf8_strlen( $str, $encoding = 'UTF-8' ) { |
|
524 | - if ( function_exists( 'mb_strlen' ) ) { |
|
525 | - return mb_strlen( $str, $encoding ); |
|
523 | +function wpinv_utf8_strlen($str, $encoding = 'UTF-8') { |
|
524 | + if (function_exists('mb_strlen')) { |
|
525 | + return mb_strlen($str, $encoding); |
|
526 | 526 | } |
527 | 527 | |
528 | - return strlen( $str ); |
|
528 | + return strlen($str); |
|
529 | 529 | } |
530 | 530 | |
531 | -function wpinv_utf8_strtolower( $str, $encoding = 'UTF-8' ) { |
|
532 | - if ( function_exists( 'mb_strtolower' ) ) { |
|
533 | - return mb_strtolower( $str, $encoding ); |
|
531 | +function wpinv_utf8_strtolower($str, $encoding = 'UTF-8') { |
|
532 | + if (function_exists('mb_strtolower')) { |
|
533 | + return mb_strtolower($str, $encoding); |
|
534 | 534 | } |
535 | 535 | |
536 | - return strtolower( $str ); |
|
536 | + return strtolower($str); |
|
537 | 537 | } |
538 | 538 | |
539 | -function wpinv_utf8_strtoupper( $str, $encoding = 'UTF-8' ) { |
|
540 | - if ( function_exists( 'mb_strtoupper' ) ) { |
|
541 | - return mb_strtoupper( $str, $encoding ); |
|
539 | +function wpinv_utf8_strtoupper($str, $encoding = 'UTF-8') { |
|
540 | + if (function_exists('mb_strtoupper')) { |
|
541 | + return mb_strtoupper($str, $encoding); |
|
542 | 542 | } |
543 | 543 | |
544 | - return strtoupper( $str ); |
|
544 | + return strtoupper($str); |
|
545 | 545 | } |
546 | 546 | |
547 | 547 | /** |
@@ -555,12 +555,12 @@ discard block |
||
555 | 555 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
556 | 556 | * @return int Returns the position of the first occurrence of search in the string. |
557 | 557 | */ |
558 | -function wpinv_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
559 | - if ( function_exists( 'mb_strpos' ) ) { |
|
560 | - return mb_strpos( $str, $find, $offset, $encoding ); |
|
558 | +function wpinv_utf8_strpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
559 | + if (function_exists('mb_strpos')) { |
|
560 | + return mb_strpos($str, $find, $offset, $encoding); |
|
561 | 561 | } |
562 | 562 | |
563 | - return strpos( $str, $find, $offset ); |
|
563 | + return strpos($str, $find, $offset); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | /** |
@@ -574,12 +574,12 @@ discard block |
||
574 | 574 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
575 | 575 | * @return int Returns the position of the last occurrence of search. |
576 | 576 | */ |
577 | -function wpinv_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
578 | - if ( function_exists( 'mb_strrpos' ) ) { |
|
579 | - return mb_strrpos( $str, $find, $offset, $encoding ); |
|
577 | +function wpinv_utf8_strrpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
578 | + if (function_exists('mb_strrpos')) { |
|
579 | + return mb_strrpos($str, $find, $offset, $encoding); |
|
580 | 580 | } |
581 | 581 | |
582 | - return strrpos( $str, $find, $offset ); |
|
582 | + return strrpos($str, $find, $offset); |
|
583 | 583 | } |
584 | 584 | |
585 | 585 | /** |
@@ -594,16 +594,16 @@ discard block |
||
594 | 594 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
595 | 595 | * @return string |
596 | 596 | */ |
597 | -function wpinv_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) { |
|
598 | - if ( function_exists( 'mb_substr' ) ) { |
|
599 | - if ( $length === null ) { |
|
600 | - return mb_substr( $str, $start, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
597 | +function wpinv_utf8_substr($str, $start, $length = null, $encoding = 'UTF-8') { |
|
598 | + if (function_exists('mb_substr')) { |
|
599 | + if ($length === null) { |
|
600 | + return mb_substr($str, $start, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
601 | 601 | } else { |
602 | - return mb_substr( $str, $start, $length, $encoding ); |
|
602 | + return mb_substr($str, $start, $length, $encoding); |
|
603 | 603 | } |
604 | 604 | } |
605 | 605 | |
606 | - return substr( $str, $start, $length ); |
|
606 | + return substr($str, $start, $length); |
|
607 | 607 | } |
608 | 608 | |
609 | 609 | /** |
@@ -615,48 +615,48 @@ discard block |
||
615 | 615 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
616 | 616 | * @return string The width of string. |
617 | 617 | */ |
618 | -function wpinv_utf8_strwidth( $str, $encoding = 'UTF-8' ) { |
|
619 | - if ( function_exists( 'mb_strwidth' ) ) { |
|
620 | - return mb_strwidth( $str, $encoding ); |
|
618 | +function wpinv_utf8_strwidth($str, $encoding = 'UTF-8') { |
|
619 | + if (function_exists('mb_strwidth')) { |
|
620 | + return mb_strwidth($str, $encoding); |
|
621 | 621 | } |
622 | 622 | |
623 | - return wpinv_utf8_strlen( $str, $encoding ); |
|
623 | + return wpinv_utf8_strlen($str, $encoding); |
|
624 | 624 | } |
625 | 625 | |
626 | -function wpinv_utf8_ucfirst( $str, $lower_str_end = false, $encoding = 'UTF-8' ) { |
|
627 | - if ( function_exists( 'mb_strlen' ) ) { |
|
628 | - $first_letter = wpinv_utf8_strtoupper( wpinv_utf8_substr( $str, 0, 1, $encoding ), $encoding ); |
|
626 | +function wpinv_utf8_ucfirst($str, $lower_str_end = false, $encoding = 'UTF-8') { |
|
627 | + if (function_exists('mb_strlen')) { |
|
628 | + $first_letter = wpinv_utf8_strtoupper(wpinv_utf8_substr($str, 0, 1, $encoding), $encoding); |
|
629 | 629 | $str_end = ''; |
630 | 630 | |
631 | - if ( $lower_str_end ) { |
|
632 | - $str_end = wpinv_utf8_strtolower( wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ), $encoding ); |
|
631 | + if ($lower_str_end) { |
|
632 | + $str_end = wpinv_utf8_strtolower(wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding), $encoding); |
|
633 | 633 | } else { |
634 | - $str_end = wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
634 | + $str_end = wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
635 | 635 | } |
636 | 636 | |
637 | 637 | return $first_letter . $str_end; |
638 | 638 | } |
639 | 639 | |
640 | - return ucfirst( $str ); |
|
640 | + return ucfirst($str); |
|
641 | 641 | } |
642 | 642 | |
643 | -function wpinv_utf8_ucwords( $str, $encoding = 'UTF-8' ) { |
|
644 | - if ( function_exists( 'mb_convert_case' ) ) { |
|
645 | - return mb_convert_case( $str, MB_CASE_TITLE, $encoding ); |
|
643 | +function wpinv_utf8_ucwords($str, $encoding = 'UTF-8') { |
|
644 | + if (function_exists('mb_convert_case')) { |
|
645 | + return mb_convert_case($str, MB_CASE_TITLE, $encoding); |
|
646 | 646 | } |
647 | 647 | |
648 | - return ucwords( $str ); |
|
648 | + return ucwords($str); |
|
649 | 649 | } |
650 | 650 | |
651 | -function wpinv_period_in_days( $period, $unit ) { |
|
652 | - $period = absint( $period ); |
|
651 | +function wpinv_period_in_days($period, $unit) { |
|
652 | + $period = absint($period); |
|
653 | 653 | |
654 | - if ( $period > 0 ) { |
|
655 | - if ( in_array( strtolower( $unit ), array( 'w', 'week', 'weeks' ) ) ) { |
|
654 | + if ($period > 0) { |
|
655 | + if (in_array(strtolower($unit), array('w', 'week', 'weeks'))) { |
|
656 | 656 | $period = $period * 7; |
657 | - } elseif ( in_array( strtolower( $unit ), array( 'm', 'month', 'months' ) ) ) { |
|
657 | + } elseif (in_array(strtolower($unit), array('m', 'month', 'months'))) { |
|
658 | 658 | $period = $period * 30; |
659 | - } elseif ( in_array( strtolower( $unit ), array( 'y', 'year', 'years' ) ) ) { |
|
659 | + } elseif (in_array(strtolower($unit), array('y', 'year', 'years'))) { |
|
660 | 660 | $period = $period * 365; |
661 | 661 | } |
662 | 662 | } |
@@ -664,14 +664,14 @@ discard block |
||
664 | 664 | return $period; |
665 | 665 | } |
666 | 666 | |
667 | -function wpinv_cal_days_in_month( $calendar, $month, $year ) { |
|
668 | - if ( function_exists( 'cal_days_in_month' ) ) { |
|
669 | - return cal_days_in_month( $calendar, $month, $year ); |
|
667 | +function wpinv_cal_days_in_month($calendar, $month, $year) { |
|
668 | + if (function_exists('cal_days_in_month')) { |
|
669 | + return cal_days_in_month($calendar, $month, $year); |
|
670 | 670 | } |
671 | 671 | |
672 | 672 | // Fallback in case the calendar extension is not loaded in PHP |
673 | 673 | // Only supports Gregorian calendar |
674 | - return date( 't', mktime( 0, 0, 0, $month, 1, $year ) ); |
|
674 | + return date('t', mktime(0, 0, 0, $month, 1, $year)); |
|
675 | 675 | } |
676 | 676 | |
677 | 677 | /** |
@@ -682,27 +682,27 @@ discard block |
||
682 | 682 | * |
683 | 683 | * @return string |
684 | 684 | */ |
685 | -function wpi_help_tip( $tip, $allow_html = false, $is_vue = false, $echo = false ) { |
|
685 | +function wpi_help_tip($tip, $allow_html = false, $is_vue = false, $echo = false) { |
|
686 | 686 | |
687 | - if ( $allow_html ) { |
|
688 | - $tip = wpi_sanitize_tooltip( $tip ); |
|
687 | + if ($allow_html) { |
|
688 | + $tip = wpi_sanitize_tooltip($tip); |
|
689 | 689 | } else { |
690 | - $tip = strip_tags( $tip ); |
|
690 | + $tip = strip_tags($tip); |
|
691 | 691 | } |
692 | 692 | |
693 | - if ( $is_vue ) { |
|
693 | + if ($is_vue) { |
|
694 | 694 | |
695 | - if ( $echo ) { |
|
696 | - echo '<span class="dashicons dashicons-editor-help" title="' . esc_attr( $tip ) . '"></span>'; |
|
695 | + if ($echo) { |
|
696 | + echo '<span class="dashicons dashicons-editor-help" title="' . esc_attr($tip) . '"></span>'; |
|
697 | 697 | } else { |
698 | - return '<span class="dashicons dashicons-editor-help" title="' . esc_attr( $tip ) . '"></span>'; |
|
698 | + return '<span class="dashicons dashicons-editor-help" title="' . esc_attr($tip) . '"></span>'; |
|
699 | 699 | } |
700 | 700 | } |
701 | 701 | |
702 | - if ( $echo ) { |
|
703 | - echo '<span class="wpi-help-tip dashicons dashicons-editor-help" title="' . esc_attr( $tip ) . '"></span>'; |
|
702 | + if ($echo) { |
|
703 | + echo '<span class="wpi-help-tip dashicons dashicons-editor-help" title="' . esc_attr($tip) . '"></span>'; |
|
704 | 704 | } else { |
705 | - return '<span class="wpi-help-tip dashicons dashicons-editor-help" title="' . esc_attr( $tip ) . '"></span>'; |
|
705 | + return '<span class="wpi-help-tip dashicons dashicons-editor-help" title="' . esc_attr($tip) . '"></span>'; |
|
706 | 706 | } |
707 | 707 | } |
708 | 708 | |
@@ -714,9 +714,9 @@ discard block |
||
714 | 714 | * @param string $var |
715 | 715 | * @return string |
716 | 716 | */ |
717 | -function wpi_sanitize_tooltip( $var ) { |
|
717 | +function wpi_sanitize_tooltip($var) { |
|
718 | 718 | return wp_kses( |
719 | - html_entity_decode( $var ), |
|
719 | + html_entity_decode($var), |
|
720 | 720 | array( |
721 | 721 | 'br' => array(), |
722 | 722 | 'em' => array(), |
@@ -739,7 +739,7 @@ discard block |
||
739 | 739 | */ |
740 | 740 | function wpinv_get_screen_ids() { |
741 | 741 | |
742 | - $screen_id = sanitize_title( __( 'Invoicing', 'invoicing' ) ); |
|
742 | + $screen_id = sanitize_title(__('Invoicing', 'invoicing')); |
|
743 | 743 | |
744 | 744 | $screen_ids = array( |
745 | 745 | 'toplevel_page_' . $screen_id, |
@@ -761,7 +761,7 @@ discard block |
||
761 | 761 | 'gp-setup', // setup wizard |
762 | 762 | ); |
763 | 763 | |
764 | - return apply_filters( 'wpinv_screen_ids', $screen_ids ); |
|
764 | + return apply_filters('wpinv_screen_ids', $screen_ids); |
|
765 | 765 | } |
766 | 766 | |
767 | 767 | /** |
@@ -772,14 +772,14 @@ discard block |
||
772 | 772 | * @param array|string $list List of values. |
773 | 773 | * @return array Sanitized array of values. |
774 | 774 | */ |
775 | -function wpinv_parse_list( $list ) { |
|
775 | +function wpinv_parse_list($list) { |
|
776 | 776 | |
777 | - if ( empty( $list ) ) { |
|
777 | + if (empty($list)) { |
|
778 | 778 | $list = array(); |
779 | 779 | } |
780 | 780 | |
781 | - if ( ! is_array( $list ) ) { |
|
782 | - return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); |
|
781 | + if (!is_array($list)) { |
|
782 | + return preg_split('/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY); |
|
783 | 783 | } |
784 | 784 | |
785 | 785 | return $list; |
@@ -793,16 +793,16 @@ discard block |
||
793 | 793 | * @param string $key Type of data to fetch. |
794 | 794 | * @return mixed Fetched data. |
795 | 795 | */ |
796 | -function wpinv_get_data( $key ) { |
|
796 | +function wpinv_get_data($key) { |
|
797 | 797 | |
798 | 798 | // Try fetching it from the cache. |
799 | - $data = wp_cache_get( "wpinv-data-$key", 'wpinv' ); |
|
800 | - if ( $data ) { |
|
799 | + $data = wp_cache_get("wpinv-data-$key", 'wpinv'); |
|
800 | + if ($data) { |
|
801 | 801 | return $data; |
802 | 802 | } |
803 | 803 | |
804 | - $data = apply_filters( "wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php" ); |
|
805 | - wp_cache_set( "wpinv-data-$key", $data, 'wpinv' ); |
|
804 | + $data = apply_filters("wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php"); |
|
805 | + wp_cache_set("wpinv-data-$key", $data, 'wpinv'); |
|
806 | 806 | |
807 | 807 | return $data; |
808 | 808 | } |
@@ -816,10 +816,10 @@ discard block |
||
816 | 816 | * @param bool $first_empty Whether or not the first item in the list should be empty |
817 | 817 | * @return mixed Fetched data. |
818 | 818 | */ |
819 | -function wpinv_maybe_add_empty_option( $options, $first_empty ) { |
|
819 | +function wpinv_maybe_add_empty_option($options, $first_empty) { |
|
820 | 820 | |
821 | - if ( ! empty( $options ) && $first_empty ) { |
|
822 | - return array_merge( array( '' => '' ), $options ); |
|
821 | + if (!empty($options) && $first_empty) { |
|
822 | + return array_merge(array('' => ''), $options); |
|
823 | 823 | } |
824 | 824 | return $options; |
825 | 825 | |
@@ -831,21 +831,21 @@ discard block |
||
831 | 831 | * @param mixed $var Data to sanitize. |
832 | 832 | * @return string|array |
833 | 833 | */ |
834 | -function wpinv_clean( $var ) { |
|
834 | +function wpinv_clean($var) { |
|
835 | 835 | |
836 | - if ( is_array( $var ) ) { |
|
837 | - return array_map( 'wpinv_clean', $var ); |
|
836 | + if (is_array($var)) { |
|
837 | + return array_map('wpinv_clean', $var); |
|
838 | 838 | } |
839 | 839 | |
840 | - if ( is_object( $var ) ) { |
|
841 | - $object_vars = get_object_vars( $var ); |
|
842 | - foreach ( $object_vars as $property_name => $property_value ) { |
|
843 | - $var->$property_name = wpinv_clean( $property_value ); |
|
840 | + if (is_object($var)) { |
|
841 | + $object_vars = get_object_vars($var); |
|
842 | + foreach ($object_vars as $property_name => $property_value) { |
|
843 | + $var->$property_name = wpinv_clean($property_value); |
|
844 | 844 | } |
845 | 845 | return $var; |
846 | 846 | } |
847 | 847 | |
848 | - return is_string( $var ) ? sanitize_text_field( stripslashes( $var ) ) : $var; |
|
848 | + return is_string($var) ? sanitize_text_field(stripslashes($var)) : $var; |
|
849 | 849 | } |
850 | 850 | |
851 | 851 | /** |
@@ -854,43 +854,43 @@ discard block |
||
854 | 854 | * @param string $str Data to convert. |
855 | 855 | * @return string|array |
856 | 856 | */ |
857 | -function getpaid_convert_price_string_to_options( $str ) { |
|
857 | +function getpaid_convert_price_string_to_options($str) { |
|
858 | 858 | |
859 | - $raw_options = array_map( 'trim', explode( ',', $str ) ); |
|
860 | - $options = array(); |
|
859 | + $raw_options = array_map('trim', explode(',', $str)); |
|
860 | + $options = array(); |
|
861 | 861 | |
862 | - foreach ( $raw_options as $option ) { |
|
862 | + foreach ($raw_options as $option) { |
|
863 | 863 | |
864 | - if ( '' == $option ) { |
|
864 | + if ('' == $option) { |
|
865 | 865 | continue; |
866 | 866 | } |
867 | 867 | |
868 | - $option = array_map( 'trim', explode( '|', $option ) ); |
|
868 | + $option = array_map('trim', explode('|', $option)); |
|
869 | 869 | |
870 | 870 | $price = null; |
871 | 871 | $label = null; |
872 | 872 | |
873 | - if ( isset( $option[0] ) && '' != $option[0] ) { |
|
874 | - $label = $option[0]; |
|
873 | + if (isset($option[0]) && '' != $option[0]) { |
|
874 | + $label = $option[0]; |
|
875 | 875 | } |
876 | 876 | |
877 | - if ( isset( $option[1] ) && '' != $option[1] ) { |
|
877 | + if (isset($option[1]) && '' != $option[1]) { |
|
878 | 878 | $price = $option[1]; |
879 | 879 | } |
880 | 880 | |
881 | - if ( ! isset( $price ) ) { |
|
881 | + if (!isset($price)) { |
|
882 | 882 | $price = $label; |
883 | 883 | } |
884 | 884 | |
885 | - if ( ! isset( $price ) || ! is_numeric( $price ) ) { |
|
885 | + if (!isset($price) || !is_numeric($price)) { |
|
886 | 886 | continue; |
887 | 887 | } |
888 | 888 | |
889 | - if ( ! isset( $label ) ) { |
|
889 | + if (!isset($label)) { |
|
890 | 890 | $label = $price; |
891 | 891 | } |
892 | 892 | |
893 | - $options[ "$label|$price" ] = $label; |
|
893 | + $options["$label|$price"] = $label; |
|
894 | 894 | } |
895 | 895 | |
896 | 896 | return $options; |
@@ -899,14 +899,14 @@ discard block |
||
899 | 899 | /** |
900 | 900 | * Returns the help tip. |
901 | 901 | */ |
902 | -function getpaid_get_help_tip( $tip, $additional_classes = '', $echo = false ) { |
|
902 | +function getpaid_get_help_tip($tip, $additional_classes = '', $echo = false) { |
|
903 | 903 | $classes = 'wpi-help-tip dashicons dashicons-editor-help ' . $additional_classes; |
904 | - $tip = esc_attr( $tip ); |
|
904 | + $tip = esc_attr($tip); |
|
905 | 905 | |
906 | - if ( $echo ) { |
|
907 | - echo '<span class="' . esc_attr( $classes ) . '" data-tip="' . esc_attr( $tip ) . '"></span>'; |
|
906 | + if ($echo) { |
|
907 | + echo '<span class="' . esc_attr($classes) . '" data-tip="' . esc_attr($tip) . '"></span>'; |
|
908 | 908 | } else { |
909 | - return '<span class="' . esc_attr( $classes ) . '" data-tip="' . esc_attr( $tip ) . '"></span>'; |
|
909 | + return '<span class="' . esc_attr($classes) . '" data-tip="' . esc_attr($tip) . '"></span>'; |
|
910 | 910 | } |
911 | 911 | |
912 | 912 | } |
@@ -914,18 +914,18 @@ discard block |
||
914 | 914 | /** |
915 | 915 | * Formats a date |
916 | 916 | */ |
917 | -function getpaid_format_date( $date, $with_time = false ) { |
|
917 | +function getpaid_format_date($date, $with_time = false) { |
|
918 | 918 | |
919 | - if ( empty( $date ) || $date == '0000-00-00 00:00:00' ) { |
|
919 | + if (empty($date) || $date == '0000-00-00 00:00:00') { |
|
920 | 920 | return ''; |
921 | 921 | } |
922 | 922 | |
923 | 923 | $format = getpaid_date_format(); |
924 | 924 | |
925 | - if ( $with_time ) { |
|
925 | + if ($with_time) { |
|
926 | 926 | $format .= ' ' . getpaid_time_format(); |
927 | 927 | } |
928 | - return date_i18n( $format, strtotime( $date ) ); |
|
928 | + return date_i18n($format, strtotime($date)); |
|
929 | 929 | |
930 | 930 | } |
931 | 931 | |
@@ -934,9 +934,9 @@ discard block |
||
934 | 934 | * |
935 | 935 | * @return string |
936 | 936 | */ |
937 | -function getpaid_format_date_value( $date, $default = '—', $with_time = false ) { |
|
938 | - $date = getpaid_format_date( $date, $with_time ); |
|
939 | - return empty( $date ) ? $default : $date; |
|
937 | +function getpaid_format_date_value($date, $default = '—', $with_time = false) { |
|
938 | + $date = getpaid_format_date($date, $with_time); |
|
939 | + return empty($date) ? $default : $date; |
|
940 | 940 | } |
941 | 941 | |
942 | 942 | /** |
@@ -945,7 +945,7 @@ discard block |
||
945 | 945 | * @return string |
946 | 946 | */ |
947 | 947 | function getpaid_date_format() { |
948 | - return apply_filters( 'getpaid_date_format', get_option( 'date_format' ) ); |
|
948 | + return apply_filters('getpaid_date_format', get_option('date_format')); |
|
949 | 949 | } |
950 | 950 | |
951 | 951 | /** |
@@ -954,7 +954,7 @@ discard block |
||
954 | 954 | * @return string |
955 | 955 | */ |
956 | 956 | function getpaid_time_format() { |
957 | - return apply_filters( 'getpaid_time_format', get_option( 'time_format' ) ); |
|
957 | + return apply_filters('getpaid_time_format', get_option('time_format')); |
|
958 | 958 | } |
959 | 959 | |
960 | 960 | /** |
@@ -964,16 +964,16 @@ discard block |
||
964 | 964 | * @param integer $limit Limit size in characters. |
965 | 965 | * @return string |
966 | 966 | */ |
967 | -function getpaid_limit_length( $string, $limit ) { |
|
967 | +function getpaid_limit_length($string, $limit) { |
|
968 | 968 | $str_limit = $limit - 3; |
969 | 969 | |
970 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
971 | - if ( mb_strlen( $string ) > $limit ) { |
|
972 | - $string = mb_strimwidth( $string, 0, $str_limit ) . '...'; |
|
970 | + if (function_exists('mb_strimwidth')) { |
|
971 | + if (mb_strlen($string) > $limit) { |
|
972 | + $string = mb_strimwidth($string, 0, $str_limit) . '...'; |
|
973 | 973 | } |
974 | 974 | } else { |
975 | - if ( strlen( $string ) > $limit ) { |
|
976 | - $string = substr( $string, 0, $str_limit ) . '...'; |
|
975 | + if (strlen($string) > $limit) { |
|
976 | + $string = substr($string, 0, $str_limit) . '...'; |
|
977 | 977 | } |
978 | 978 | } |
979 | 979 | return $string; |
@@ -987,7 +987,7 @@ discard block |
||
987 | 987 | * @since 1.0.19 |
988 | 988 | */ |
989 | 989 | function getpaid_api() { |
990 | - return getpaid()->get( 'api' ); |
|
990 | + return getpaid()->get('api'); |
|
991 | 991 | } |
992 | 992 | |
993 | 993 | /** |
@@ -997,7 +997,7 @@ discard block |
||
997 | 997 | * @since 1.0.19 |
998 | 998 | */ |
999 | 999 | function getpaid_post_types() { |
1000 | - return getpaid()->get( 'post_types' ); |
|
1000 | + return getpaid()->get('post_types'); |
|
1001 | 1001 | } |
1002 | 1002 | |
1003 | 1003 | /** |
@@ -1007,7 +1007,7 @@ discard block |
||
1007 | 1007 | * @since 1.0.19 |
1008 | 1008 | */ |
1009 | 1009 | function getpaid_session() { |
1010 | - return getpaid()->get( 'session' ); |
|
1010 | + return getpaid()->get('session'); |
|
1011 | 1011 | } |
1012 | 1012 | |
1013 | 1013 | /** |
@@ -1017,7 +1017,7 @@ discard block |
||
1017 | 1017 | * @since 1.0.19 |
1018 | 1018 | */ |
1019 | 1019 | function getpaid_notes() { |
1020 | - return getpaid()->get( 'notes' ); |
|
1020 | + return getpaid()->get('notes'); |
|
1021 | 1021 | } |
1022 | 1022 | |
1023 | 1023 | /** |
@@ -1026,7 +1026,7 @@ discard block |
||
1026 | 1026 | * @return GetPaid_Admin |
1027 | 1027 | */ |
1028 | 1028 | function getpaid_admin() { |
1029 | - return getpaid()->get( 'admin' ); |
|
1029 | + return getpaid()->get('admin'); |
|
1030 | 1030 | } |
1031 | 1031 | |
1032 | 1032 | /** |
@@ -1036,8 +1036,8 @@ discard block |
||
1036 | 1036 | * @param string $base the base url |
1037 | 1037 | * @return string |
1038 | 1038 | */ |
1039 | -function getpaid_get_authenticated_action_url( $action, $base = false ) { |
|
1040 | - return wp_nonce_url( add_query_arg( 'getpaid-action', $action, $base ), 'getpaid-nonce', 'getpaid-nonce' ); |
|
1039 | +function getpaid_get_authenticated_action_url($action, $base = false) { |
|
1040 | + return wp_nonce_url(add_query_arg('getpaid-action', $action, $base), 'getpaid-nonce', 'getpaid-nonce'); |
|
1041 | 1041 | } |
1042 | 1042 | |
1043 | 1043 | /** |
@@ -1045,11 +1045,11 @@ discard block |
||
1045 | 1045 | * |
1046 | 1046 | * @return string |
1047 | 1047 | */ |
1048 | -function getpaid_get_post_type_label( $post_type, $plural = true ) { |
|
1048 | +function getpaid_get_post_type_label($post_type, $plural = true) { |
|
1049 | 1049 | |
1050 | - $post_type = get_post_type_object( $post_type ); |
|
1050 | + $post_type = get_post_type_object($post_type); |
|
1051 | 1051 | |
1052 | - if ( ! is_object( $post_type ) ) { |
|
1052 | + if (!is_object($post_type)) { |
|
1053 | 1053 | return null; |
1054 | 1054 | } |
1055 | 1055 | |
@@ -1062,18 +1062,18 @@ discard block |
||
1062 | 1062 | * |
1063 | 1063 | * @return mixed|null |
1064 | 1064 | */ |
1065 | -function getpaid_get_array_field( $array, $key, $secondary_key = null ) { |
|
1065 | +function getpaid_get_array_field($array, $key, $secondary_key = null) { |
|
1066 | 1066 | |
1067 | - if ( ! is_array( $array ) ) { |
|
1067 | + if (!is_array($array)) { |
|
1068 | 1068 | return null; |
1069 | 1069 | } |
1070 | 1070 | |
1071 | - if ( ! empty( $secondary_key ) ) { |
|
1072 | - $array = isset( $array[ $secondary_key ] ) ? $array[ $secondary_key ] : array(); |
|
1073 | - return getpaid_get_array_field( $array, $key ); |
|
1071 | + if (!empty($secondary_key)) { |
|
1072 | + $array = isset($array[$secondary_key]) ? $array[$secondary_key] : array(); |
|
1073 | + return getpaid_get_array_field($array, $key); |
|
1074 | 1074 | } |
1075 | 1075 | |
1076 | - return isset( $array[ $key ] ) ? $array[ $key ] : null; |
|
1076 | + return isset($array[$key]) ? $array[$key] : null; |
|
1077 | 1077 | |
1078 | 1078 | } |
1079 | 1079 | |
@@ -1082,12 +1082,12 @@ discard block |
||
1082 | 1082 | * |
1083 | 1083 | * @return array |
1084 | 1084 | */ |
1085 | -function getpaid_array_merge_if_empty( $args, $defaults ) { |
|
1085 | +function getpaid_array_merge_if_empty($args, $defaults) { |
|
1086 | 1086 | |
1087 | - foreach ( $defaults as $key => $value ) { |
|
1087 | + foreach ($defaults as $key => $value) { |
|
1088 | 1088 | |
1089 | - if ( empty( $args[ $key ] ) ) { |
|
1090 | - $args[ $key ] = $value; |
|
1089 | + if (empty($args[$key])) { |
|
1090 | + $args[$key] = $value; |
|
1091 | 1091 | } |
1092 | 1092 | } |
1093 | 1093 | |
@@ -1104,12 +1104,12 @@ discard block |
||
1104 | 1104 | |
1105 | 1105 | $types = get_allowed_mime_types(); |
1106 | 1106 | |
1107 | - if ( isset( $types['htm|html'] ) ) { |
|
1108 | - unset( $types['htm|html'] ); |
|
1107 | + if (isset($types['htm|html'])) { |
|
1108 | + unset($types['htm|html']); |
|
1109 | 1109 | } |
1110 | 1110 | |
1111 | - if ( isset( $types['js'] ) ) { |
|
1112 | - unset( $types['js'] ); |
|
1111 | + if (isset($types['js'])) { |
|
1112 | + unset($types['js']); |
|
1113 | 1113 | } |
1114 | 1114 | |
1115 | 1115 | return $types; |
@@ -1117,34 +1117,34 @@ discard block |
||
1117 | 1117 | } |
1118 | 1118 | |
1119 | 1119 | |
1120 | -function getpaid_user_delete_invoice( $data ) { |
|
1120 | +function getpaid_user_delete_invoice($data) { |
|
1121 | 1121 | |
1122 | 1122 | // Ensure there is an invoice to delete. |
1123 | - if ( empty( $data['invoice_id'] ) ) { |
|
1123 | + if (empty($data['invoice_id'])) { |
|
1124 | 1124 | return; |
1125 | 1125 | } |
1126 | 1126 | |
1127 | - $invoice = new WPInv_Invoice( (int) $data['invoice_id'] ); |
|
1127 | + $invoice = new WPInv_Invoice((int) $data['invoice_id']); |
|
1128 | 1128 | |
1129 | 1129 | // Ensure that it exists and that it belongs to the current user. |
1130 | - if ( ! $invoice->exists() || $invoice->get_customer_id() != get_current_user_id() ) { |
|
1131 | - wpinv_set_error( 'invalid_invoice', __( 'You do not have permission to delete this invoice', 'invoicing' ) ); |
|
1130 | + if (!$invoice->exists() || $invoice->get_customer_id() != get_current_user_id()) { |
|
1131 | + wpinv_set_error('invalid_invoice', __('You do not have permission to delete this invoice', 'invoicing')); |
|
1132 | 1132 | |
1133 | 1133 | // Can it be deleted? |
1134 | - } elseif ( ! $invoice->needs_payment() ) { |
|
1135 | - wpinv_set_error( 'cannot_delete', __( 'This invoice cannot be deleted as it has already been paid.', 'invoicing' ) ); |
|
1134 | + } elseif (!$invoice->needs_payment()) { |
|
1135 | + wpinv_set_error('cannot_delete', __('This invoice cannot be deleted as it has already been paid.', 'invoicing')); |
|
1136 | 1136 | |
1137 | 1137 | // Delete it. |
1138 | 1138 | } else { |
1139 | 1139 | |
1140 | 1140 | $invoice->delete(); |
1141 | - wpinv_set_error( 'delete', __( 'The invoice has been deleted.', 'invoicing' ), 'info' ); |
|
1141 | + wpinv_set_error('delete', __('The invoice has been deleted.', 'invoicing'), 'info'); |
|
1142 | 1142 | } |
1143 | 1143 | |
1144 | - $redirect = remove_query_arg( array( 'getpaid-action', 'getpaid-nonce', 'invoice_id' ) ); |
|
1144 | + $redirect = remove_query_arg(array('getpaid-action', 'getpaid-nonce', 'invoice_id')); |
|
1145 | 1145 | |
1146 | - wp_safe_redirect( $redirect ); |
|
1146 | + wp_safe_redirect($redirect); |
|
1147 | 1147 | exit; |
1148 | 1148 | |
1149 | 1149 | } |
1150 | -add_action( 'getpaid_authenticated_action_delete_invoice', 'getpaid_user_delete_invoice' ); |
|
1150 | +add_action('getpaid_authenticated_action_delete_invoice', 'getpaid_user_delete_invoice'); |