@@ -5,7 +5,9 @@ |
||
5 | 5 | */ |
6 | 6 | |
7 | 7 | // Exit if accessed directly |
8 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
8 | +if ( ! defined( 'ABSPATH' ) ) { |
|
9 | + exit; |
|
10 | +} |
|
9 | 11 | |
10 | 12 | // Load WP_List_Table if not loaded |
11 | 13 | if ( ! class_exists( 'WP_List_Table' ) ) { |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | |
10 | 10 | // Load WP_List_Table if not loaded |
11 | 11 | if ( ! class_exists( 'WP_List_Table' ) ) { |
12 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
12 | + require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
13 | 13 | } |
14 | 14 | |
15 | 15 | /** |
@@ -21,367 +21,367 @@ discard block |
||
21 | 21 | */ |
22 | 22 | class WPInv_Customers_Table extends WP_List_Table { |
23 | 23 | |
24 | - /** |
|
25 | - * @var int Number of items per page |
|
26 | - * @since 1.0.19 |
|
27 | - */ |
|
28 | - public $per_page = 10; |
|
29 | - |
|
30 | - /** |
|
31 | - * @var int Number of items |
|
32 | - * @since 1.0.19 |
|
33 | - */ |
|
34 | - public $total = 0; |
|
35 | - |
|
36 | - /** |
|
37 | - * Get things started |
|
38 | - * |
|
39 | - * @since 1.0.19 |
|
40 | - * @see WP_List_Table::__construct() |
|
41 | - */ |
|
42 | - public function __construct() { |
|
43 | - |
|
44 | - // Set parent defaults |
|
45 | - parent::__construct( array( |
|
46 | - 'singular' => 'id', |
|
47 | - 'plural' => 'ids', |
|
48 | - 'ajax' => false, |
|
49 | - ) ); |
|
50 | - |
|
51 | - } |
|
52 | - |
|
53 | - /** |
|
54 | - * Gets the name of the primary column. |
|
55 | - * |
|
56 | - * @since 1.0.19 |
|
57 | - * @access protected |
|
58 | - * |
|
59 | - * @return string Name of the primary column. |
|
60 | - */ |
|
61 | - protected function get_primary_column_name() { |
|
62 | - return 'name'; |
|
63 | - } |
|
64 | - |
|
65 | - /** |
|
66 | - * This function renders most of the columns in the list table. |
|
67 | - * |
|
68 | - * @since 1.0.19 |
|
69 | - * |
|
70 | - * @param WP_User $item |
|
71 | - * @param string $column_name The name of the column |
|
72 | - * |
|
73 | - * @return string Column Name |
|
74 | - */ |
|
75 | - public function column_default( $item, $column_name ) { |
|
76 | - $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
77 | - return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
78 | - } |
|
79 | - |
|
80 | - /** |
|
81 | - * Displays the country column. |
|
82 | - * |
|
83 | - * @since 1.0.19 |
|
84 | - * |
|
85 | - * @param WP_User $user |
|
86 | - * |
|
87 | - * @return string Column Name |
|
88 | - */ |
|
89 | - public function column_country( $user ) { |
|
90 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
91 | - if ( $country ) { |
|
92 | - $country = wpinv_country_name( $country ); |
|
93 | - } |
|
94 | - return esc_html( $country ); |
|
95 | - } |
|
96 | - |
|
97 | - /** |
|
98 | - * Displays the state column. |
|
99 | - * |
|
100 | - * @since 1.0.19 |
|
101 | - * |
|
102 | - * @param WP_User $user |
|
103 | - * |
|
104 | - * @return string Column Name |
|
105 | - */ |
|
106 | - public function column_state( $user ) { |
|
107 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
108 | - $state = $user->_wpinv_state; |
|
109 | - if ( $state ) { |
|
110 | - $state = wpinv_state_name( $state, $country ); |
|
111 | - } |
|
112 | - |
|
113 | - return esc_html( $state ); |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Displays the signup column. |
|
118 | - * |
|
119 | - * @since 1.0.19 |
|
120 | - * |
|
121 | - * @param WP_User $user |
|
122 | - * |
|
123 | - * @return string Column Name |
|
124 | - */ |
|
125 | - public function column_signup( $user ) { |
|
126 | - return getpaid_format_date_value( $user->user_registered ); |
|
127 | - } |
|
128 | - |
|
129 | - /** |
|
130 | - * Displays the total spent column. |
|
131 | - * |
|
132 | - * @since 1.0.19 |
|
133 | - * |
|
134 | - * @param WP_User $user |
|
135 | - * |
|
136 | - * @return string Column Name |
|
137 | - */ |
|
138 | - public function column_total( $user ) { |
|
139 | - return wpinv_price( $this->column_total_raw( $user ) ); |
|
140 | - } |
|
141 | - |
|
142 | - /** |
|
143 | - * Displays the total spent column. |
|
144 | - * |
|
145 | - * @since 1.0.19 |
|
146 | - * |
|
147 | - * @param WP_User $user |
|
148 | - * |
|
149 | - * @return float |
|
150 | - */ |
|
151 | - public function column_total_raw( $user ) { |
|
152 | - |
|
153 | - $args = array( |
|
154 | - 'data' => array( |
|
155 | - |
|
156 | - 'total' => array( |
|
157 | - 'type' => 'invoice_data', |
|
158 | - 'function' => 'SUM', |
|
159 | - 'name' => 'total_sales', |
|
160 | - ) |
|
161 | - |
|
162 | - ), |
|
163 | - 'where' => array( |
|
164 | - |
|
165 | - 'author' => array( |
|
166 | - 'type' => 'post_data', |
|
167 | - 'value' => absint( $user->ID ), |
|
168 | - 'key' => 'posts.post_author', |
|
169 | - 'operator' => '=', |
|
170 | - ), |
|
171 | - |
|
172 | - ), |
|
173 | - 'query_type' => 'get_var', |
|
174 | - 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
175 | - ); |
|
176 | - |
|
177 | - return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
178 | - |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * Displays the total spent column. |
|
183 | - * |
|
184 | - * @since 1.0.19 |
|
185 | - * |
|
186 | - * @param WP_User $user |
|
187 | - * |
|
188 | - * @return string Column Name |
|
189 | - */ |
|
190 | - public function column_invoices( $user ) { |
|
191 | - |
|
192 | - $args = array( |
|
193 | - 'data' => array( |
|
194 | - |
|
195 | - 'ID' => array( |
|
196 | - 'type' => 'post_data', |
|
197 | - 'function' => 'COUNT', |
|
198 | - 'name' => 'count', |
|
199 | - 'distinct' => true, |
|
200 | - ), |
|
201 | - |
|
202 | - ), |
|
203 | - 'where' => array( |
|
204 | - |
|
205 | - 'author' => array( |
|
206 | - 'type' => 'post_data', |
|
207 | - 'value' => absint( $user->ID ), |
|
208 | - 'key' => 'posts.post_author', |
|
209 | - 'operator' => '=', |
|
210 | - ), |
|
211 | - |
|
212 | - ), |
|
213 | - 'query_type' => 'get_var', |
|
214 | - 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
215 | - ); |
|
216 | - |
|
217 | - return absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
218 | - |
|
219 | - } |
|
220 | - |
|
221 | - /** |
|
222 | - * Generates content for a single row of the table |
|
223 | - * @since 1.0.19 |
|
224 | - * |
|
225 | - * @param int $item The user id. |
|
226 | - */ |
|
227 | - public function single_row( $item ) { |
|
228 | - $item = get_user_by( 'id', $item ); |
|
229 | - |
|
230 | - if ( empty( $item ) ) { |
|
231 | - return; |
|
232 | - } |
|
233 | - |
|
234 | - echo '<tr>'; |
|
235 | - $this->single_row_columns( $item ); |
|
236 | - echo '</tr>'; |
|
237 | - } |
|
238 | - |
|
239 | - /** |
|
240 | - * Displays the customers name |
|
241 | - * |
|
242 | - * @param WP_User $customer customer. |
|
243 | - * @return string |
|
244 | - */ |
|
245 | - public function column_name( $customer ) { |
|
246 | - |
|
247 | - // Customer view URL. |
|
248 | - $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
249 | - $row_actions = $this->row_actions( |
|
250 | - array( |
|
251 | - 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
252 | - ) |
|
253 | - ); |
|
254 | - |
|
255 | - // Get user's address. |
|
256 | - $address = wpinv_get_user_address( $customer->ID ); |
|
257 | - |
|
258 | - // Customer email address. |
|
259 | - $email = sanitize_email( $customer->user_email ); |
|
260 | - |
|
261 | - // Customer's avatar. |
|
262 | - $avatar = esc_url( get_avatar_url( $email ) ); |
|
263 | - $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
264 | - |
|
265 | - // Customer's name. |
|
266 | - $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
267 | - |
|
268 | - if ( ! empty( $name ) ) { |
|
269 | - $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
270 | - } |
|
271 | - |
|
272 | - $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
273 | - |
|
274 | - return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong>$row_actions</div></div>"; |
|
275 | - |
|
276 | - } |
|
277 | - |
|
278 | - /** |
|
279 | - * Retrieve the table columns |
|
280 | - * |
|
281 | - * @since 1.0.19 |
|
282 | - * @return array $columns Array of all the list table columns |
|
283 | - */ |
|
284 | - public function get_columns() { |
|
285 | - |
|
286 | - $columns = array( |
|
287 | - 'name' => __( 'Name', 'invoicing' ), |
|
288 | - 'country' => __( 'Country', 'invoicing' ), |
|
289 | - 'state' => __( 'State', 'invoicing' ), |
|
290 | - 'city' => __( 'City', 'invoicing' ), |
|
291 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
292 | - 'address' => __( 'Address', 'invoicing' ), |
|
293 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
294 | - 'company' => __( 'Company', 'invoicing' ), |
|
295 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
296 | - 'total' => __( 'Total Spend', 'invoicing' ), |
|
297 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
298 | - ); |
|
299 | - return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
300 | - |
|
301 | - } |
|
302 | - |
|
303 | - /** |
|
304 | - * Retrieve the current page number |
|
305 | - * |
|
306 | - * @since 1.0.19 |
|
307 | - * @return int Current page number |
|
308 | - */ |
|
309 | - public function get_paged() { |
|
310 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
311 | - } |
|
312 | - |
|
313 | - /** |
|
314 | - * Returns bulk actions. |
|
315 | - * |
|
316 | - * @since 1.0.19 |
|
317 | - * @return void |
|
318 | - */ |
|
319 | - public function bulk_actions( $which = '' ) { |
|
320 | - return array(); |
|
321 | - } |
|
322 | - |
|
323 | - /** |
|
324 | - * Prepares the display query |
|
325 | - */ |
|
326 | - public function prepare_query() { |
|
327 | - global $wpdb; |
|
328 | - |
|
329 | - $post_types = ''; |
|
330 | - |
|
331 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
332 | - $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type ); |
|
333 | - } |
|
334 | - |
|
335 | - $post_types = rtrim( $post_types, ' OR' ); |
|
336 | - |
|
337 | - // Maybe search. |
|
338 | - if ( ! empty( $_POST['s'] ) ) { |
|
339 | - $users = get_users( |
|
340 | - array( |
|
341 | - 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
342 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
343 | - 'fields' => 'ID', |
|
344 | - ) |
|
345 | - ); |
|
346 | - |
|
347 | - $users = implode( ', ', $users ); |
|
348 | - $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
|
349 | - } |
|
350 | - |
|
351 | - // Users with invoices. |
|
352 | - $customers = $wpdb->get_col( |
|
353 | - $wpdb->prepare( |
|
354 | - "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types LIMIT %d,%d", |
|
355 | - $this->get_paged() * 10 - 10, |
|
356 | - $this->per_page |
|
357 | - ) |
|
358 | - ); |
|
359 | - |
|
360 | - $this->items = $customers; |
|
361 | - $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
362 | - |
|
363 | - } |
|
364 | - |
|
365 | - /** |
|
366 | - * Setup the final data for the table |
|
367 | - * |
|
368 | - * @since 1.0.19 |
|
369 | - * @return void |
|
370 | - */ |
|
371 | - public function prepare_items() { |
|
372 | - $columns = $this->get_columns(); |
|
373 | - $hidden = array(); // No hidden columns |
|
374 | - $sortable = $this->get_sortable_columns(); |
|
375 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
376 | - $this->prepare_query(); |
|
377 | - |
|
378 | - $this->set_pagination_args( |
|
379 | - array( |
|
380 | - 'total_items' => $this->total, |
|
381 | - 'per_page' => $this->per_page, |
|
382 | - 'total_pages' => ceil( $this->total / $this->per_page ) |
|
383 | - ) |
|
384 | - ); |
|
385 | - |
|
386 | - } |
|
24 | + /** |
|
25 | + * @var int Number of items per page |
|
26 | + * @since 1.0.19 |
|
27 | + */ |
|
28 | + public $per_page = 10; |
|
29 | + |
|
30 | + /** |
|
31 | + * @var int Number of items |
|
32 | + * @since 1.0.19 |
|
33 | + */ |
|
34 | + public $total = 0; |
|
35 | + |
|
36 | + /** |
|
37 | + * Get things started |
|
38 | + * |
|
39 | + * @since 1.0.19 |
|
40 | + * @see WP_List_Table::__construct() |
|
41 | + */ |
|
42 | + public function __construct() { |
|
43 | + |
|
44 | + // Set parent defaults |
|
45 | + parent::__construct( array( |
|
46 | + 'singular' => 'id', |
|
47 | + 'plural' => 'ids', |
|
48 | + 'ajax' => false, |
|
49 | + ) ); |
|
50 | + |
|
51 | + } |
|
52 | + |
|
53 | + /** |
|
54 | + * Gets the name of the primary column. |
|
55 | + * |
|
56 | + * @since 1.0.19 |
|
57 | + * @access protected |
|
58 | + * |
|
59 | + * @return string Name of the primary column. |
|
60 | + */ |
|
61 | + protected function get_primary_column_name() { |
|
62 | + return 'name'; |
|
63 | + } |
|
64 | + |
|
65 | + /** |
|
66 | + * This function renders most of the columns in the list table. |
|
67 | + * |
|
68 | + * @since 1.0.19 |
|
69 | + * |
|
70 | + * @param WP_User $item |
|
71 | + * @param string $column_name The name of the column |
|
72 | + * |
|
73 | + * @return string Column Name |
|
74 | + */ |
|
75 | + public function column_default( $item, $column_name ) { |
|
76 | + $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
77 | + return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
78 | + } |
|
79 | + |
|
80 | + /** |
|
81 | + * Displays the country column. |
|
82 | + * |
|
83 | + * @since 1.0.19 |
|
84 | + * |
|
85 | + * @param WP_User $user |
|
86 | + * |
|
87 | + * @return string Column Name |
|
88 | + */ |
|
89 | + public function column_country( $user ) { |
|
90 | + $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
91 | + if ( $country ) { |
|
92 | + $country = wpinv_country_name( $country ); |
|
93 | + } |
|
94 | + return esc_html( $country ); |
|
95 | + } |
|
96 | + |
|
97 | + /** |
|
98 | + * Displays the state column. |
|
99 | + * |
|
100 | + * @since 1.0.19 |
|
101 | + * |
|
102 | + * @param WP_User $user |
|
103 | + * |
|
104 | + * @return string Column Name |
|
105 | + */ |
|
106 | + public function column_state( $user ) { |
|
107 | + $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
108 | + $state = $user->_wpinv_state; |
|
109 | + if ( $state ) { |
|
110 | + $state = wpinv_state_name( $state, $country ); |
|
111 | + } |
|
112 | + |
|
113 | + return esc_html( $state ); |
|
114 | + } |
|
115 | + |
|
116 | + /** |
|
117 | + * Displays the signup column. |
|
118 | + * |
|
119 | + * @since 1.0.19 |
|
120 | + * |
|
121 | + * @param WP_User $user |
|
122 | + * |
|
123 | + * @return string Column Name |
|
124 | + */ |
|
125 | + public function column_signup( $user ) { |
|
126 | + return getpaid_format_date_value( $user->user_registered ); |
|
127 | + } |
|
128 | + |
|
129 | + /** |
|
130 | + * Displays the total spent column. |
|
131 | + * |
|
132 | + * @since 1.0.19 |
|
133 | + * |
|
134 | + * @param WP_User $user |
|
135 | + * |
|
136 | + * @return string Column Name |
|
137 | + */ |
|
138 | + public function column_total( $user ) { |
|
139 | + return wpinv_price( $this->column_total_raw( $user ) ); |
|
140 | + } |
|
141 | + |
|
142 | + /** |
|
143 | + * Displays the total spent column. |
|
144 | + * |
|
145 | + * @since 1.0.19 |
|
146 | + * |
|
147 | + * @param WP_User $user |
|
148 | + * |
|
149 | + * @return float |
|
150 | + */ |
|
151 | + public function column_total_raw( $user ) { |
|
152 | + |
|
153 | + $args = array( |
|
154 | + 'data' => array( |
|
155 | + |
|
156 | + 'total' => array( |
|
157 | + 'type' => 'invoice_data', |
|
158 | + 'function' => 'SUM', |
|
159 | + 'name' => 'total_sales', |
|
160 | + ) |
|
161 | + |
|
162 | + ), |
|
163 | + 'where' => array( |
|
164 | + |
|
165 | + 'author' => array( |
|
166 | + 'type' => 'post_data', |
|
167 | + 'value' => absint( $user->ID ), |
|
168 | + 'key' => 'posts.post_author', |
|
169 | + 'operator' => '=', |
|
170 | + ), |
|
171 | + |
|
172 | + ), |
|
173 | + 'query_type' => 'get_var', |
|
174 | + 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
175 | + ); |
|
176 | + |
|
177 | + return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
178 | + |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * Displays the total spent column. |
|
183 | + * |
|
184 | + * @since 1.0.19 |
|
185 | + * |
|
186 | + * @param WP_User $user |
|
187 | + * |
|
188 | + * @return string Column Name |
|
189 | + */ |
|
190 | + public function column_invoices( $user ) { |
|
191 | + |
|
192 | + $args = array( |
|
193 | + 'data' => array( |
|
194 | + |
|
195 | + 'ID' => array( |
|
196 | + 'type' => 'post_data', |
|
197 | + 'function' => 'COUNT', |
|
198 | + 'name' => 'count', |
|
199 | + 'distinct' => true, |
|
200 | + ), |
|
201 | + |
|
202 | + ), |
|
203 | + 'where' => array( |
|
204 | + |
|
205 | + 'author' => array( |
|
206 | + 'type' => 'post_data', |
|
207 | + 'value' => absint( $user->ID ), |
|
208 | + 'key' => 'posts.post_author', |
|
209 | + 'operator' => '=', |
|
210 | + ), |
|
211 | + |
|
212 | + ), |
|
213 | + 'query_type' => 'get_var', |
|
214 | + 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
215 | + ); |
|
216 | + |
|
217 | + return absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
218 | + |
|
219 | + } |
|
220 | + |
|
221 | + /** |
|
222 | + * Generates content for a single row of the table |
|
223 | + * @since 1.0.19 |
|
224 | + * |
|
225 | + * @param int $item The user id. |
|
226 | + */ |
|
227 | + public function single_row( $item ) { |
|
228 | + $item = get_user_by( 'id', $item ); |
|
229 | + |
|
230 | + if ( empty( $item ) ) { |
|
231 | + return; |
|
232 | + } |
|
233 | + |
|
234 | + echo '<tr>'; |
|
235 | + $this->single_row_columns( $item ); |
|
236 | + echo '</tr>'; |
|
237 | + } |
|
238 | + |
|
239 | + /** |
|
240 | + * Displays the customers name |
|
241 | + * |
|
242 | + * @param WP_User $customer customer. |
|
243 | + * @return string |
|
244 | + */ |
|
245 | + public function column_name( $customer ) { |
|
246 | + |
|
247 | + // Customer view URL. |
|
248 | + $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
249 | + $row_actions = $this->row_actions( |
|
250 | + array( |
|
251 | + 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
252 | + ) |
|
253 | + ); |
|
254 | + |
|
255 | + // Get user's address. |
|
256 | + $address = wpinv_get_user_address( $customer->ID ); |
|
257 | + |
|
258 | + // Customer email address. |
|
259 | + $email = sanitize_email( $customer->user_email ); |
|
260 | + |
|
261 | + // Customer's avatar. |
|
262 | + $avatar = esc_url( get_avatar_url( $email ) ); |
|
263 | + $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
264 | + |
|
265 | + // Customer's name. |
|
266 | + $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
267 | + |
|
268 | + if ( ! empty( $name ) ) { |
|
269 | + $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
270 | + } |
|
271 | + |
|
272 | + $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
273 | + |
|
274 | + return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong>$row_actions</div></div>"; |
|
275 | + |
|
276 | + } |
|
277 | + |
|
278 | + /** |
|
279 | + * Retrieve the table columns |
|
280 | + * |
|
281 | + * @since 1.0.19 |
|
282 | + * @return array $columns Array of all the list table columns |
|
283 | + */ |
|
284 | + public function get_columns() { |
|
285 | + |
|
286 | + $columns = array( |
|
287 | + 'name' => __( 'Name', 'invoicing' ), |
|
288 | + 'country' => __( 'Country', 'invoicing' ), |
|
289 | + 'state' => __( 'State', 'invoicing' ), |
|
290 | + 'city' => __( 'City', 'invoicing' ), |
|
291 | + 'zip' => __( 'ZIP', 'invoicing' ), |
|
292 | + 'address' => __( 'Address', 'invoicing' ), |
|
293 | + 'phone' => __( 'Phone', 'invoicing' ), |
|
294 | + 'company' => __( 'Company', 'invoicing' ), |
|
295 | + 'invoices' => __( 'Invoices', 'invoicing' ), |
|
296 | + 'total' => __( 'Total Spend', 'invoicing' ), |
|
297 | + 'signup' => __( 'Date created', 'invoicing' ), |
|
298 | + ); |
|
299 | + return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
300 | + |
|
301 | + } |
|
302 | + |
|
303 | + /** |
|
304 | + * Retrieve the current page number |
|
305 | + * |
|
306 | + * @since 1.0.19 |
|
307 | + * @return int Current page number |
|
308 | + */ |
|
309 | + public function get_paged() { |
|
310 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
311 | + } |
|
312 | + |
|
313 | + /** |
|
314 | + * Returns bulk actions. |
|
315 | + * |
|
316 | + * @since 1.0.19 |
|
317 | + * @return void |
|
318 | + */ |
|
319 | + public function bulk_actions( $which = '' ) { |
|
320 | + return array(); |
|
321 | + } |
|
322 | + |
|
323 | + /** |
|
324 | + * Prepares the display query |
|
325 | + */ |
|
326 | + public function prepare_query() { |
|
327 | + global $wpdb; |
|
328 | + |
|
329 | + $post_types = ''; |
|
330 | + |
|
331 | + foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
332 | + $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type ); |
|
333 | + } |
|
334 | + |
|
335 | + $post_types = rtrim( $post_types, ' OR' ); |
|
336 | + |
|
337 | + // Maybe search. |
|
338 | + if ( ! empty( $_POST['s'] ) ) { |
|
339 | + $users = get_users( |
|
340 | + array( |
|
341 | + 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
342 | + 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
343 | + 'fields' => 'ID', |
|
344 | + ) |
|
345 | + ); |
|
346 | + |
|
347 | + $users = implode( ', ', $users ); |
|
348 | + $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
|
349 | + } |
|
350 | + |
|
351 | + // Users with invoices. |
|
352 | + $customers = $wpdb->get_col( |
|
353 | + $wpdb->prepare( |
|
354 | + "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types LIMIT %d,%d", |
|
355 | + $this->get_paged() * 10 - 10, |
|
356 | + $this->per_page |
|
357 | + ) |
|
358 | + ); |
|
359 | + |
|
360 | + $this->items = $customers; |
|
361 | + $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
362 | + |
|
363 | + } |
|
364 | + |
|
365 | + /** |
|
366 | + * Setup the final data for the table |
|
367 | + * |
|
368 | + * @since 1.0.19 |
|
369 | + * @return void |
|
370 | + */ |
|
371 | + public function prepare_items() { |
|
372 | + $columns = $this->get_columns(); |
|
373 | + $hidden = array(); // No hidden columns |
|
374 | + $sortable = $this->get_sortable_columns(); |
|
375 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
376 | + $this->prepare_query(); |
|
377 | + |
|
378 | + $this->set_pagination_args( |
|
379 | + array( |
|
380 | + 'total_items' => $this->total, |
|
381 | + 'per_page' => $this->per_page, |
|
382 | + 'total_pages' => ceil( $this->total / $this->per_page ) |
|
383 | + ) |
|
384 | + ); |
|
385 | + |
|
386 | + } |
|
387 | 387 | } |
@@ -5,10 +5,10 @@ discard block |
||
5 | 5 | */ |
6 | 6 | |
7 | 7 | // Exit if accessed directly |
8 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
8 | +if (!defined('ABSPATH')) exit; |
|
9 | 9 | |
10 | 10 | // Load WP_List_Table if not loaded |
11 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
11 | +if (!class_exists('WP_List_Table')) { |
|
12 | 12 | require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
13 | 13 | } |
14 | 14 | |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | public function __construct() { |
43 | 43 | |
44 | 44 | // Set parent defaults |
45 | - parent::__construct( array( |
|
45 | + parent::__construct(array( |
|
46 | 46 | 'singular' => 'id', |
47 | 47 | 'plural' => 'ids', |
48 | 48 | 'ajax' => false, |
49 | - ) ); |
|
49 | + )); |
|
50 | 50 | |
51 | 51 | } |
52 | 52 | |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | * |
73 | 73 | * @return string Column Name |
74 | 74 | */ |
75 | - public function column_default( $item, $column_name ) { |
|
76 | - $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
77 | - return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
75 | + public function column_default($item, $column_name) { |
|
76 | + $value = esc_html(get_user_meta($item->ID, '_wpinv_' . $column_name, true)); |
|
77 | + return apply_filters('wpinv_customers_table_column' . $column_name, $value, $item); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -86,12 +86,12 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @return string Column Name |
88 | 88 | */ |
89 | - public function column_country( $user ) { |
|
90 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
91 | - if ( $country ) { |
|
92 | - $country = wpinv_country_name( $country ); |
|
89 | + public function column_country($user) { |
|
90 | + $country = wpinv_sanitize_country($user->_wpinv_country); |
|
91 | + if ($country) { |
|
92 | + $country = wpinv_country_name($country); |
|
93 | 93 | } |
94 | - return esc_html( $country ); |
|
94 | + return esc_html($country); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -103,14 +103,14 @@ discard block |
||
103 | 103 | * |
104 | 104 | * @return string Column Name |
105 | 105 | */ |
106 | - public function column_state( $user ) { |
|
107 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
106 | + public function column_state($user) { |
|
107 | + $country = wpinv_sanitize_country($user->_wpinv_country); |
|
108 | 108 | $state = $user->_wpinv_state; |
109 | - if ( $state ) { |
|
110 | - $state = wpinv_state_name( $state, $country ); |
|
109 | + if ($state) { |
|
110 | + $state = wpinv_state_name($state, $country); |
|
111 | 111 | } |
112 | 112 | |
113 | - return esc_html( $state ); |
|
113 | + return esc_html($state); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -122,8 +122,8 @@ discard block |
||
122 | 122 | * |
123 | 123 | * @return string Column Name |
124 | 124 | */ |
125 | - public function column_signup( $user ) { |
|
126 | - return getpaid_format_date_value( $user->user_registered ); |
|
125 | + public function column_signup($user) { |
|
126 | + return getpaid_format_date_value($user->user_registered); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | /** |
@@ -135,8 +135,8 @@ discard block |
||
135 | 135 | * |
136 | 136 | * @return string Column Name |
137 | 137 | */ |
138 | - public function column_total( $user ) { |
|
139 | - return wpinv_price( $this->column_total_raw( $user ) ); |
|
138 | + public function column_total($user) { |
|
139 | + return wpinv_price($this->column_total_raw($user)); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | * |
149 | 149 | * @return float |
150 | 150 | */ |
151 | - public function column_total_raw( $user ) { |
|
151 | + public function column_total_raw($user) { |
|
152 | 152 | |
153 | 153 | $args = array( |
154 | 154 | 'data' => array( |
@@ -164,17 +164,17 @@ discard block |
||
164 | 164 | |
165 | 165 | 'author' => array( |
166 | 166 | 'type' => 'post_data', |
167 | - 'value' => absint( $user->ID ), |
|
167 | + 'value' => absint($user->ID), |
|
168 | 168 | 'key' => 'posts.post_author', |
169 | 169 | 'operator' => '=', |
170 | 170 | ), |
171 | 171 | |
172 | 172 | ), |
173 | 173 | 'query_type' => 'get_var', |
174 | - 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
174 | + 'invoice_status' => array('wpi-renewal', 'wpi-processing', 'publish'), |
|
175 | 175 | ); |
176 | 176 | |
177 | - return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
177 | + return wpinv_round_amount(GetPaid_Reports_Helper::get_invoice_report_data($args)); |
|
178 | 178 | |
179 | 179 | } |
180 | 180 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | * |
188 | 188 | * @return string Column Name |
189 | 189 | */ |
190 | - public function column_invoices( $user ) { |
|
190 | + public function column_invoices($user) { |
|
191 | 191 | |
192 | 192 | $args = array( |
193 | 193 | 'data' => array( |
@@ -204,17 +204,17 @@ discard block |
||
204 | 204 | |
205 | 205 | 'author' => array( |
206 | 206 | 'type' => 'post_data', |
207 | - 'value' => absint( $user->ID ), |
|
207 | + 'value' => absint($user->ID), |
|
208 | 208 | 'key' => 'posts.post_author', |
209 | 209 | 'operator' => '=', |
210 | 210 | ), |
211 | 211 | |
212 | 212 | ), |
213 | 213 | 'query_type' => 'get_var', |
214 | - 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
214 | + 'invoice_status' => array_keys(wpinv_get_invoice_statuses()), |
|
215 | 215 | ); |
216 | 216 | |
217 | - return absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
217 | + return absint(GetPaid_Reports_Helper::get_invoice_report_data($args)); |
|
218 | 218 | |
219 | 219 | } |
220 | 220 | |
@@ -224,15 +224,15 @@ discard block |
||
224 | 224 | * |
225 | 225 | * @param int $item The user id. |
226 | 226 | */ |
227 | - public function single_row( $item ) { |
|
228 | - $item = get_user_by( 'id', $item ); |
|
227 | + public function single_row($item) { |
|
228 | + $item = get_user_by('id', $item); |
|
229 | 229 | |
230 | - if ( empty( $item ) ) { |
|
230 | + if (empty($item)) { |
|
231 | 231 | return; |
232 | 232 | } |
233 | 233 | |
234 | 234 | echo '<tr>'; |
235 | - $this->single_row_columns( $item ); |
|
235 | + $this->single_row_columns($item); |
|
236 | 236 | echo '</tr>'; |
237 | 237 | } |
238 | 238 | |
@@ -242,30 +242,30 @@ discard block |
||
242 | 242 | * @param WP_User $customer customer. |
243 | 243 | * @return string |
244 | 244 | */ |
245 | - public function column_name( $customer ) { |
|
245 | + public function column_name($customer) { |
|
246 | 246 | |
247 | 247 | // Customer view URL. |
248 | - $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
248 | + $view_url = esc_url(add_query_arg('user_id', $customer->ID, admin_url('user-edit.php'))); |
|
249 | 249 | $row_actions = $this->row_actions( |
250 | 250 | array( |
251 | - 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
251 | + 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __('Edit Details', 'invoicing') . '</a>', |
|
252 | 252 | ) |
253 | 253 | ); |
254 | 254 | |
255 | 255 | // Get user's address. |
256 | - $address = wpinv_get_user_address( $customer->ID ); |
|
256 | + $address = wpinv_get_user_address($customer->ID); |
|
257 | 257 | |
258 | 258 | // Customer email address. |
259 | - $email = sanitize_email( $customer->user_email ); |
|
259 | + $email = sanitize_email($customer->user_email); |
|
260 | 260 | |
261 | 261 | // Customer's avatar. |
262 | - $avatar = esc_url( get_avatar_url( $email ) ); |
|
262 | + $avatar = esc_url(get_avatar_url($email)); |
|
263 | 263 | $avatar = "<img src='$avatar' height='32' width='32'/>"; |
264 | 264 | |
265 | 265 | // Customer's name. |
266 | - $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
266 | + $name = esc_html("{$address['first_name']} {$address['last_name']}"); |
|
267 | 267 | |
268 | - if ( ! empty( $name ) ) { |
|
268 | + if (!empty($name)) { |
|
269 | 269 | $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
270 | 270 | } |
271 | 271 | |
@@ -284,19 +284,19 @@ discard block |
||
284 | 284 | public function get_columns() { |
285 | 285 | |
286 | 286 | $columns = array( |
287 | - 'name' => __( 'Name', 'invoicing' ), |
|
288 | - 'country' => __( 'Country', 'invoicing' ), |
|
289 | - 'state' => __( 'State', 'invoicing' ), |
|
290 | - 'city' => __( 'City', 'invoicing' ), |
|
291 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
292 | - 'address' => __( 'Address', 'invoicing' ), |
|
293 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
294 | - 'company' => __( 'Company', 'invoicing' ), |
|
295 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
296 | - 'total' => __( 'Total Spend', 'invoicing' ), |
|
297 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
287 | + 'name' => __('Name', 'invoicing'), |
|
288 | + 'country' => __('Country', 'invoicing'), |
|
289 | + 'state' => __('State', 'invoicing'), |
|
290 | + 'city' => __('City', 'invoicing'), |
|
291 | + 'zip' => __('ZIP', 'invoicing'), |
|
292 | + 'address' => __('Address', 'invoicing'), |
|
293 | + 'phone' => __('Phone', 'invoicing'), |
|
294 | + 'company' => __('Company', 'invoicing'), |
|
295 | + 'invoices' => __('Invoices', 'invoicing'), |
|
296 | + 'total' => __('Total Spend', 'invoicing'), |
|
297 | + 'signup' => __('Date created', 'invoicing'), |
|
298 | 298 | ); |
299 | - return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
299 | + return apply_filters('wpinv_customers_table_columns', $columns); |
|
300 | 300 | |
301 | 301 | } |
302 | 302 | |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | * @return int Current page number |
308 | 308 | */ |
309 | 309 | public function get_paged() { |
310 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
310 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | /** |
@@ -316,7 +316,7 @@ discard block |
||
316 | 316 | * @since 1.0.19 |
317 | 317 | * @return void |
318 | 318 | */ |
319 | - public function bulk_actions( $which = '' ) { |
|
319 | + public function bulk_actions($which = '') { |
|
320 | 320 | return array(); |
321 | 321 | } |
322 | 322 | |
@@ -328,23 +328,23 @@ discard block |
||
328 | 328 | |
329 | 329 | $post_types = ''; |
330 | 330 | |
331 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
332 | - $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type ); |
|
331 | + foreach (array_keys(getpaid_get_invoice_post_types()) as $post_type) { |
|
332 | + $post_types .= $wpdb->prepare("post_type=%s OR ", $post_type); |
|
333 | 333 | } |
334 | 334 | |
335 | - $post_types = rtrim( $post_types, ' OR' ); |
|
335 | + $post_types = rtrim($post_types, ' OR'); |
|
336 | 336 | |
337 | 337 | // Maybe search. |
338 | - if ( ! empty( $_POST['s'] ) ) { |
|
338 | + if (!empty($_POST['s'])) { |
|
339 | 339 | $users = get_users( |
340 | 340 | array( |
341 | - 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
342 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
341 | + 'search' => '*' . sanitize_text_field(urldecode($_POST['s'])) . '*', |
|
342 | + 'search_columns' => array('user_login', 'user_email', 'display_name'), |
|
343 | 343 | 'fields' => 'ID', |
344 | 344 | ) |
345 | 345 | ); |
346 | 346 | |
347 | - $users = implode( ', ', $users ); |
|
347 | + $users = implode(', ', $users); |
|
348 | 348 | $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
349 | 349 | } |
350 | 350 | |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | ); |
359 | 359 | |
360 | 360 | $this->items = $customers; |
361 | - $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
361 | + $this->total = (int) $wpdb->get_var("SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types"); |
|
362 | 362 | |
363 | 363 | } |
364 | 364 | |
@@ -372,14 +372,14 @@ discard block |
||
372 | 372 | $columns = $this->get_columns(); |
373 | 373 | $hidden = array(); // No hidden columns |
374 | 374 | $sortable = $this->get_sortable_columns(); |
375 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
375 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
376 | 376 | $this->prepare_query(); |
377 | 377 | |
378 | 378 | $this->set_pagination_args( |
379 | 379 | array( |
380 | 380 | 'total_items' => $this->total, |
381 | 381 | 'per_page' => $this->per_page, |
382 | - 'total_pages' => ceil( $this->total / $this->per_page ) |
|
382 | + 'total_pages' => ceil($this->total / $this->per_page) |
|
383 | 383 | ) |
384 | 384 | ); |
385 | 385 |
@@ -124,8 +124,11 @@ |
||
124 | 124 | </select> |
125 | 125 | <?php elseif ( ! empty( $field['type'] ) && 'checkbox' === $field['type'] ) : ?> |
126 | 126 | <input type="checkbox" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="1" class="<?php echo esc_attr( $field['class'] ); ?>" <?php checked( (int) get_user_meta( $user->ID, $key, true ), 1, true ); ?> /> |
127 | - <?php else : ?> |
|
128 | - <input type="text" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $this->get_user_meta( $user->ID, $key ) ); ?>" class="<?php echo ( ! empty( $field['class'] ) ? esc_attr( $field['class'] ) : 'regular-text' ); ?>" /> |
|
127 | + <?php else { |
|
128 | + : ?> |
|
129 | + <input type="text" name="<?php echo esc_attr( $key ); |
|
130 | +} |
|
131 | +?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $this->get_user_meta( $user->ID, $key ) ); ?>" class="<?php echo ( ! empty( $field['class'] ) ? esc_attr( $field['class'] ) : 'regular-text' ); ?>" /> |
|
129 | 132 | <?php endif; ?> |
130 | 133 | <p class="description"><?php echo wp_kses_post( $field['description'] ); ?></p> |
131 | 134 | </td> |
@@ -5,110 +5,110 @@ discard block |
||
5 | 5 | */ |
6 | 6 | |
7 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
8 | - exit; // Exit if accessed directly |
|
8 | + exit; // Exit if accessed directly |
|
9 | 9 | } |
10 | 10 | |
11 | 11 | if ( ! class_exists( 'GetPaid_Admin_Profile', false ) ) : |
12 | 12 | |
13 | - /** |
|
14 | - * GetPaid_Admin_Profile Class. |
|
15 | - */ |
|
16 | - class GetPaid_Admin_Profile { |
|
17 | - |
|
18 | - /** |
|
19 | - * Hook in tabs. |
|
20 | - */ |
|
21 | - public function __construct() { |
|
22 | - add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
23 | - add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
24 | - |
|
25 | - add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
26 | - add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
27 | - } |
|
28 | - |
|
29 | - /** |
|
30 | - * Get Address Fields for the edit user pages. |
|
31 | - * |
|
32 | - * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
33 | - */ |
|
34 | - public function get_customer_meta_fields() { |
|
35 | - |
|
36 | - $show_fields = apply_filters( |
|
37 | - 'getpaid_customer_meta_fields', |
|
38 | - array( |
|
39 | - 'billing' => array( |
|
40 | - 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
41 | - 'fields' => array( |
|
42 | - '_wpinv_first_name' => array( |
|
43 | - 'label' => __( 'First name', 'invoicing' ), |
|
44 | - 'description' => '', |
|
45 | - ), |
|
46 | - '_wpinv_last_name' => array( |
|
47 | - 'label' => __( 'Last name', 'invoicing' ), |
|
48 | - 'description' => '', |
|
49 | - ), |
|
50 | - '_wpinv_company' => array( |
|
51 | - 'label' => __( 'Company', 'invoicing' ), |
|
52 | - 'description' => '', |
|
53 | - ), |
|
54 | - '_wpinv_company_id' => array( |
|
55 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
56 | - 'description' => '', |
|
57 | - ), |
|
58 | - '_wpinv_address' => array( |
|
59 | - 'label' => __( 'Address', 'invoicing' ), |
|
60 | - 'description' => '', |
|
61 | - ), |
|
62 | - '_wpinv_city' => array( |
|
63 | - 'label' => __( 'City', 'invoicing' ), |
|
64 | - 'description' => '', |
|
65 | - ), |
|
66 | - '_wpinv_zip' => array( |
|
67 | - 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
68 | - 'description' => '', |
|
69 | - ), |
|
70 | - '_wpinv_country' => array( |
|
71 | - 'label' => __( 'Country / Region', 'invoicing' ), |
|
72 | - 'description' => '', |
|
73 | - 'class' => 'getpaid_js_field-country', |
|
74 | - 'type' => 'select', |
|
75 | - 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
76 | - ), |
|
77 | - '_wpinv_state' => array( |
|
78 | - 'label' => __( 'State / County', 'invoicing' ), |
|
79 | - 'description' => __( 'State / County or state code', 'invoicing' ), |
|
80 | - 'class' => 'getpaid_js_field-state regular-text', |
|
81 | - ), |
|
82 | - '_wpinv_phone' => array( |
|
83 | - 'label' => __( 'Phone', 'invoicing' ), |
|
84 | - 'description' => '', |
|
85 | - ), |
|
86 | - '_wpinv_vat_number' => array( |
|
87 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
88 | - 'description' => '', |
|
89 | - ), |
|
90 | - ), |
|
91 | - ), |
|
92 | - ) |
|
93 | - ); |
|
94 | - return $show_fields; |
|
95 | - } |
|
96 | - |
|
97 | - /** |
|
98 | - * Show Address Fields on edit user pages. |
|
99 | - * |
|
100 | - * @param WP_User $user |
|
101 | - */ |
|
102 | - public function add_customer_meta_fields( $user ) { |
|
103 | - |
|
104 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
105 | - return; |
|
106 | - } |
|
107 | - |
|
108 | - $show_fields = $this->get_customer_meta_fields(); |
|
109 | - |
|
110 | - foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
111 | - ?> |
|
13 | + /** |
|
14 | + * GetPaid_Admin_Profile Class. |
|
15 | + */ |
|
16 | + class GetPaid_Admin_Profile { |
|
17 | + |
|
18 | + /** |
|
19 | + * Hook in tabs. |
|
20 | + */ |
|
21 | + public function __construct() { |
|
22 | + add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
23 | + add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
24 | + |
|
25 | + add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
26 | + add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
27 | + } |
|
28 | + |
|
29 | + /** |
|
30 | + * Get Address Fields for the edit user pages. |
|
31 | + * |
|
32 | + * @return array Fields to display which are filtered through invoicing_customer_meta_fields before being returned |
|
33 | + */ |
|
34 | + public function get_customer_meta_fields() { |
|
35 | + |
|
36 | + $show_fields = apply_filters( |
|
37 | + 'getpaid_customer_meta_fields', |
|
38 | + array( |
|
39 | + 'billing' => array( |
|
40 | + 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
41 | + 'fields' => array( |
|
42 | + '_wpinv_first_name' => array( |
|
43 | + 'label' => __( 'First name', 'invoicing' ), |
|
44 | + 'description' => '', |
|
45 | + ), |
|
46 | + '_wpinv_last_name' => array( |
|
47 | + 'label' => __( 'Last name', 'invoicing' ), |
|
48 | + 'description' => '', |
|
49 | + ), |
|
50 | + '_wpinv_company' => array( |
|
51 | + 'label' => __( 'Company', 'invoicing' ), |
|
52 | + 'description' => '', |
|
53 | + ), |
|
54 | + '_wpinv_company_id' => array( |
|
55 | + 'label' => __( 'Company ID', 'invoicing' ), |
|
56 | + 'description' => '', |
|
57 | + ), |
|
58 | + '_wpinv_address' => array( |
|
59 | + 'label' => __( 'Address', 'invoicing' ), |
|
60 | + 'description' => '', |
|
61 | + ), |
|
62 | + '_wpinv_city' => array( |
|
63 | + 'label' => __( 'City', 'invoicing' ), |
|
64 | + 'description' => '', |
|
65 | + ), |
|
66 | + '_wpinv_zip' => array( |
|
67 | + 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
68 | + 'description' => '', |
|
69 | + ), |
|
70 | + '_wpinv_country' => array( |
|
71 | + 'label' => __( 'Country / Region', 'invoicing' ), |
|
72 | + 'description' => '', |
|
73 | + 'class' => 'getpaid_js_field-country', |
|
74 | + 'type' => 'select', |
|
75 | + 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
76 | + ), |
|
77 | + '_wpinv_state' => array( |
|
78 | + 'label' => __( 'State / County', 'invoicing' ), |
|
79 | + 'description' => __( 'State / County or state code', 'invoicing' ), |
|
80 | + 'class' => 'getpaid_js_field-state regular-text', |
|
81 | + ), |
|
82 | + '_wpinv_phone' => array( |
|
83 | + 'label' => __( 'Phone', 'invoicing' ), |
|
84 | + 'description' => '', |
|
85 | + ), |
|
86 | + '_wpinv_vat_number' => array( |
|
87 | + 'label' => __( 'VAT Number', 'invoicing' ), |
|
88 | + 'description' => '', |
|
89 | + ), |
|
90 | + ), |
|
91 | + ), |
|
92 | + ) |
|
93 | + ); |
|
94 | + return $show_fields; |
|
95 | + } |
|
96 | + |
|
97 | + /** |
|
98 | + * Show Address Fields on edit user pages. |
|
99 | + * |
|
100 | + * @param WP_User $user |
|
101 | + */ |
|
102 | + public function add_customer_meta_fields( $user ) { |
|
103 | + |
|
104 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
105 | + return; |
|
106 | + } |
|
107 | + |
|
108 | + $show_fields = $this->get_customer_meta_fields(); |
|
109 | + |
|
110 | + foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
111 | + ?> |
|
112 | 112 | <h2><?php echo $fieldset['title']; ?></h2> |
113 | 113 | <table class="form-table" id="<?php echo esc_attr( 'getpaid-fieldset-' . $fieldset_key ); ?>"> |
114 | 114 | <?php foreach ( $fieldset['fields'] as $key => $field ) : ?> |
@@ -120,9 +120,9 @@ discard block |
||
120 | 120 | <?php if ( ! empty( $field['type'] ) && 'select' === $field['type'] ) : ?> |
121 | 121 | <select name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" class="<?php echo esc_attr( $field['class'] ); ?> wpi_select2" style="width: 25em;"> |
122 | 122 | <?php |
123 | - $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
124 | - foreach ( $field['options'] as $option_key => $option_value ) : |
|
125 | - ?> |
|
123 | + $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
124 | + foreach ( $field['options'] as $option_key => $option_value ) : |
|
125 | + ?> |
|
126 | 126 | <option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $selected, $option_key, true ); ?>><?php echo esc_html( $option_value ); ?></option> |
127 | 127 | <?php endforeach; ?> |
128 | 128 | </select> |
@@ -137,52 +137,52 @@ discard block |
||
137 | 137 | <?php endforeach; ?> |
138 | 138 | </table> |
139 | 139 | <?php |
140 | - endforeach; |
|
141 | - } |
|
142 | - |
|
143 | - /** |
|
144 | - * Save Address Fields on edit user pages. |
|
145 | - * |
|
146 | - * @param int $user_id User ID of the user being saved |
|
147 | - */ |
|
148 | - public function save_customer_meta_fields( $user_id ) { |
|
149 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
150 | - return; |
|
151 | - } |
|
152 | - |
|
153 | - $save_fields = $this->get_customer_meta_fields(); |
|
154 | - |
|
155 | - foreach ( $save_fields as $fieldset ) { |
|
156 | - |
|
157 | - foreach ( $fieldset['fields'] as $key => $field ) { |
|
158 | - |
|
159 | - if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
160 | - update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
161 | - } elseif ( isset( $_POST[ $key ] ) ) { |
|
162 | - update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
163 | - } |
|
164 | - } |
|
165 | - } |
|
166 | - } |
|
167 | - |
|
168 | - /** |
|
169 | - * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
170 | - * |
|
171 | - * @since 3.1.0 |
|
172 | - * @param int $user_id User ID of the user being edited |
|
173 | - * @param string $key Key for user meta field |
|
174 | - * @return string |
|
175 | - */ |
|
176 | - protected function get_user_meta( $user_id, $key ) { |
|
177 | - $value = get_user_meta( $user_id, $key, true ); |
|
178 | - $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
179 | - if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
180 | - $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
181 | - } |
|
182 | - |
|
183 | - return $value; |
|
184 | - } |
|
185 | - } |
|
140 | + endforeach; |
|
141 | + } |
|
142 | + |
|
143 | + /** |
|
144 | + * Save Address Fields on edit user pages. |
|
145 | + * |
|
146 | + * @param int $user_id User ID of the user being saved |
|
147 | + */ |
|
148 | + public function save_customer_meta_fields( $user_id ) { |
|
149 | + if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
150 | + return; |
|
151 | + } |
|
152 | + |
|
153 | + $save_fields = $this->get_customer_meta_fields(); |
|
154 | + |
|
155 | + foreach ( $save_fields as $fieldset ) { |
|
156 | + |
|
157 | + foreach ( $fieldset['fields'] as $key => $field ) { |
|
158 | + |
|
159 | + if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
160 | + update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
161 | + } elseif ( isset( $_POST[ $key ] ) ) { |
|
162 | + update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
163 | + } |
|
164 | + } |
|
165 | + } |
|
166 | + } |
|
167 | + |
|
168 | + /** |
|
169 | + * Get user meta for a given key, with fallbacks to core user info for pre-existing fields. |
|
170 | + * |
|
171 | + * @since 3.1.0 |
|
172 | + * @param int $user_id User ID of the user being edited |
|
173 | + * @param string $key Key for user meta field |
|
174 | + * @return string |
|
175 | + */ |
|
176 | + protected function get_user_meta( $user_id, $key ) { |
|
177 | + $value = get_user_meta( $user_id, $key, true ); |
|
178 | + $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
179 | + if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
180 | + $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
181 | + } |
|
182 | + |
|
183 | + return $value; |
|
184 | + } |
|
185 | + } |
|
186 | 186 | |
187 | 187 | endif; |
188 | 188 |
@@ -4,11 +4,11 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -if ( ! defined( 'ABSPATH' ) ) { |
|
7 | +if (!defined('ABSPATH')) { |
|
8 | 8 | exit; // Exit if accessed directly |
9 | 9 | } |
10 | 10 | |
11 | -if ( ! class_exists( 'GetPaid_Admin_Profile', false ) ) : |
|
11 | +if (!class_exists('GetPaid_Admin_Profile', false)) : |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * GetPaid_Admin_Profile Class. |
@@ -19,11 +19,11 @@ discard block |
||
19 | 19 | * Hook in tabs. |
20 | 20 | */ |
21 | 21 | public function __construct() { |
22 | - add_action( 'show_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
23 | - add_action( 'edit_user_profile', array( $this, 'add_customer_meta_fields' ), 100 ); |
|
22 | + add_action('show_user_profile', array($this, 'add_customer_meta_fields'), 100); |
|
23 | + add_action('edit_user_profile', array($this, 'add_customer_meta_fields'), 100); |
|
24 | 24 | |
25 | - add_action( 'personal_options_update', array( $this, 'save_customer_meta_fields' ) ); |
|
26 | - add_action( 'edit_user_profile_update', array( $this, 'save_customer_meta_fields' ) ); |
|
25 | + add_action('personal_options_update', array($this, 'save_customer_meta_fields')); |
|
26 | + add_action('edit_user_profile_update', array($this, 'save_customer_meta_fields')); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -37,54 +37,54 @@ discard block |
||
37 | 37 | 'getpaid_customer_meta_fields', |
38 | 38 | array( |
39 | 39 | 'billing' => array( |
40 | - 'title' => __( 'Billing Details (GetPaid)', 'invoicing' ), |
|
40 | + 'title' => __('Billing Details (GetPaid)', 'invoicing'), |
|
41 | 41 | 'fields' => array( |
42 | 42 | '_wpinv_first_name' => array( |
43 | - 'label' => __( 'First name', 'invoicing' ), |
|
43 | + 'label' => __('First name', 'invoicing'), |
|
44 | 44 | 'description' => '', |
45 | 45 | ), |
46 | 46 | '_wpinv_last_name' => array( |
47 | - 'label' => __( 'Last name', 'invoicing' ), |
|
47 | + 'label' => __('Last name', 'invoicing'), |
|
48 | 48 | 'description' => '', |
49 | 49 | ), |
50 | 50 | '_wpinv_company' => array( |
51 | - 'label' => __( 'Company', 'invoicing' ), |
|
51 | + 'label' => __('Company', 'invoicing'), |
|
52 | 52 | 'description' => '', |
53 | 53 | ), |
54 | 54 | '_wpinv_company_id' => array( |
55 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
55 | + 'label' => __('Company ID', 'invoicing'), |
|
56 | 56 | 'description' => '', |
57 | 57 | ), |
58 | 58 | '_wpinv_address' => array( |
59 | - 'label' => __( 'Address', 'invoicing' ), |
|
59 | + 'label' => __('Address', 'invoicing'), |
|
60 | 60 | 'description' => '', |
61 | 61 | ), |
62 | 62 | '_wpinv_city' => array( |
63 | - 'label' => __( 'City', 'invoicing' ), |
|
63 | + 'label' => __('City', 'invoicing'), |
|
64 | 64 | 'description' => '', |
65 | 65 | ), |
66 | 66 | '_wpinv_zip' => array( |
67 | - 'label' => __( 'Postcode / ZIP', 'invoicing' ), |
|
67 | + 'label' => __('Postcode / ZIP', 'invoicing'), |
|
68 | 68 | 'description' => '', |
69 | 69 | ), |
70 | 70 | '_wpinv_country' => array( |
71 | - 'label' => __( 'Country / Region', 'invoicing' ), |
|
71 | + 'label' => __('Country / Region', 'invoicing'), |
|
72 | 72 | 'description' => '', |
73 | 73 | 'class' => 'getpaid_js_field-country', |
74 | 74 | 'type' => 'select', |
75 | - 'options' => array( '' => __( 'Select a country / region…', 'invoicing' ) ) + wpinv_get_country_list(), |
|
75 | + 'options' => array('' => __('Select a country / region…', 'invoicing')) + wpinv_get_country_list(), |
|
76 | 76 | ), |
77 | 77 | '_wpinv_state' => array( |
78 | - 'label' => __( 'State / County', 'invoicing' ), |
|
79 | - 'description' => __( 'State / County or state code', 'invoicing' ), |
|
78 | + 'label' => __('State / County', 'invoicing'), |
|
79 | + 'description' => __('State / County or state code', 'invoicing'), |
|
80 | 80 | 'class' => 'getpaid_js_field-state regular-text', |
81 | 81 | ), |
82 | 82 | '_wpinv_phone' => array( |
83 | - 'label' => __( 'Phone', 'invoicing' ), |
|
83 | + 'label' => __('Phone', 'invoicing'), |
|
84 | 84 | 'description' => '', |
85 | 85 | ), |
86 | 86 | '_wpinv_vat_number' => array( |
87 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
87 | + 'label' => __('VAT Number', 'invoicing'), |
|
88 | 88 | 'description' => '', |
89 | 89 | ), |
90 | 90 | ), |
@@ -99,39 +99,39 @@ discard block |
||
99 | 99 | * |
100 | 100 | * @param WP_User $user |
101 | 101 | */ |
102 | - public function add_customer_meta_fields( $user ) { |
|
102 | + public function add_customer_meta_fields($user) { |
|
103 | 103 | |
104 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user->ID ) ) { |
|
104 | + if (!apply_filters('getpaid_current_user_can_edit_customer_meta_fields', current_user_can('manage_options'), $user->ID)) { |
|
105 | 105 | return; |
106 | 106 | } |
107 | 107 | |
108 | 108 | $show_fields = $this->get_customer_meta_fields(); |
109 | 109 | |
110 | - foreach ( $show_fields as $fieldset_key => $fieldset ) : |
|
110 | + foreach ($show_fields as $fieldset_key => $fieldset) : |
|
111 | 111 | ?> |
112 | 112 | <h2><?php echo $fieldset['title']; ?></h2> |
113 | - <table class="form-table" id="<?php echo esc_attr( 'getpaid-fieldset-' . $fieldset_key ); ?>"> |
|
114 | - <?php foreach ( $fieldset['fields'] as $key => $field ) : ?> |
|
113 | + <table class="form-table" id="<?php echo esc_attr('getpaid-fieldset-' . $fieldset_key); ?>"> |
|
114 | + <?php foreach ($fieldset['fields'] as $key => $field) : ?> |
|
115 | 115 | <tr> |
116 | 116 | <th> |
117 | - <label for="<?php echo esc_attr( $key ); ?>"><?php echo esc_html( $field['label'] ); ?></label> |
|
117 | + <label for="<?php echo esc_attr($key); ?>"><?php echo esc_html($field['label']); ?></label> |
|
118 | 118 | </th> |
119 | 119 | <td> |
120 | - <?php if ( ! empty( $field['type'] ) && 'select' === $field['type'] ) : ?> |
|
121 | - <select name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" class="<?php echo esc_attr( $field['class'] ); ?> wpi_select2" style="width: 25em;"> |
|
120 | + <?php if (!empty($field['type']) && 'select' === $field['type']) : ?> |
|
121 | + <select name="<?php echo esc_attr($key); ?>" id="<?php echo esc_attr($key); ?>" class="<?php echo esc_attr($field['class']); ?> wpi_select2" style="width: 25em;"> |
|
122 | 122 | <?php |
123 | - $selected = esc_attr( get_user_meta( $user->ID, $key, true ) ); |
|
124 | - foreach ( $field['options'] as $option_key => $option_value ) : |
|
123 | + $selected = esc_attr(get_user_meta($user->ID, $key, true)); |
|
124 | + foreach ($field['options'] as $option_key => $option_value) : |
|
125 | 125 | ?> |
126 | - <option value="<?php echo esc_attr( $option_key ); ?>" <?php selected( $selected, $option_key, true ); ?>><?php echo esc_html( $option_value ); ?></option> |
|
126 | + <option value="<?php echo esc_attr($option_key); ?>" <?php selected($selected, $option_key, true); ?>><?php echo esc_html($option_value); ?></option> |
|
127 | 127 | <?php endforeach; ?> |
128 | 128 | </select> |
129 | - <?php elseif ( ! empty( $field['type'] ) && 'checkbox' === $field['type'] ) : ?> |
|
130 | - <input type="checkbox" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="1" class="<?php echo esc_attr( $field['class'] ); ?>" <?php checked( (int) get_user_meta( $user->ID, $key, true ), 1, true ); ?> /> |
|
129 | + <?php elseif (!empty($field['type']) && 'checkbox' === $field['type']) : ?> |
|
130 | + <input type="checkbox" name="<?php echo esc_attr($key); ?>" id="<?php echo esc_attr($key); ?>" value="1" class="<?php echo esc_attr($field['class']); ?>" <?php checked((int) get_user_meta($user->ID, $key, true), 1, true); ?> /> |
|
131 | 131 | <?php else : ?> |
132 | - <input type="text" name="<?php echo esc_attr( $key ); ?>" id="<?php echo esc_attr( $key ); ?>" value="<?php echo esc_attr( $this->get_user_meta( $user->ID, $key ) ); ?>" class="<?php echo ( ! empty( $field['class'] ) ? esc_attr( $field['class'] ) : 'regular-text' ); ?>" /> |
|
132 | + <input type="text" name="<?php echo esc_attr($key); ?>" id="<?php echo esc_attr($key); ?>" value="<?php echo esc_attr($this->get_user_meta($user->ID, $key)); ?>" class="<?php echo (!empty($field['class']) ? esc_attr($field['class']) : 'regular-text'); ?>" /> |
|
133 | 133 | <?php endif; ?> |
134 | - <p class="description"><?php echo wp_kses_post( $field['description'] ); ?></p> |
|
134 | + <p class="description"><?php echo wp_kses_post($field['description']); ?></p> |
|
135 | 135 | </td> |
136 | 136 | </tr> |
137 | 137 | <?php endforeach; ?> |
@@ -145,21 +145,21 @@ discard block |
||
145 | 145 | * |
146 | 146 | * @param int $user_id User ID of the user being saved |
147 | 147 | */ |
148 | - public function save_customer_meta_fields( $user_id ) { |
|
149 | - if ( ! apply_filters( 'getpaid_current_user_can_edit_customer_meta_fields', current_user_can( 'manage_options' ), $user_id ) ) { |
|
148 | + public function save_customer_meta_fields($user_id) { |
|
149 | + if (!apply_filters('getpaid_current_user_can_edit_customer_meta_fields', current_user_can('manage_options'), $user_id)) { |
|
150 | 150 | return; |
151 | 151 | } |
152 | 152 | |
153 | 153 | $save_fields = $this->get_customer_meta_fields(); |
154 | 154 | |
155 | - foreach ( $save_fields as $fieldset ) { |
|
155 | + foreach ($save_fields as $fieldset) { |
|
156 | 156 | |
157 | - foreach ( $fieldset['fields'] as $key => $field ) { |
|
157 | + foreach ($fieldset['fields'] as $key => $field) { |
|
158 | 158 | |
159 | - if ( isset( $field['type'] ) && 'checkbox' === $field['type'] ) { |
|
160 | - update_user_meta( $user_id, $key, ! empty( $_POST[ $key ] ) ); |
|
161 | - } elseif ( isset( $_POST[ $key ] ) ) { |
|
162 | - update_user_meta( $user_id, $key, wpinv_clean( $_POST[ $key ] ) ); |
|
159 | + if (isset($field['type']) && 'checkbox' === $field['type']) { |
|
160 | + update_user_meta($user_id, $key, !empty($_POST[$key])); |
|
161 | + } elseif (isset($_POST[$key])) { |
|
162 | + update_user_meta($user_id, $key, wpinv_clean($_POST[$key])); |
|
163 | 163 | } |
164 | 164 | } |
165 | 165 | } |
@@ -173,11 +173,11 @@ discard block |
||
173 | 173 | * @param string $key Key for user meta field |
174 | 174 | * @return string |
175 | 175 | */ |
176 | - protected function get_user_meta( $user_id, $key ) { |
|
177 | - $value = get_user_meta( $user_id, $key, true ); |
|
178 | - $existing_fields = array( '_wpinv_first_name', '_wpinv_last_name' ); |
|
179 | - if ( ! $value && in_array( $key, $existing_fields ) ) { |
|
180 | - $value = get_user_meta( $user_id, str_replace( '_wpinv_', '', $key ), true ); |
|
176 | + protected function get_user_meta($user_id, $key) { |
|
177 | + $value = get_user_meta($user_id, $key, true); |
|
178 | + $existing_fields = array('_wpinv_first_name', '_wpinv_last_name'); |
|
179 | + if (!$value && in_array($key, $existing_fields)) { |
|
180 | + $value = get_user_meta($user_id, str_replace('_wpinv_', '', $key), true); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | return $value; |
@@ -11,121 +11,121 @@ |
||
11 | 11 | */ |
12 | 12 | class GetPaid_Cache_Helper { |
13 | 13 | |
14 | - /** |
|
15 | - * Transients to delete on shutdown. |
|
16 | - * |
|
17 | - * @var array Array of transient keys. |
|
18 | - */ |
|
19 | - private static $delete_transients = array(); |
|
20 | - |
|
21 | - /** |
|
22 | - * Hook in methods. |
|
23 | - */ |
|
24 | - public static function init() { |
|
25 | - add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
26 | - add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
27 | - } |
|
28 | - |
|
29 | - /** |
|
30 | - * Add a transient to delete on shutdown. |
|
31 | - * |
|
32 | - * @since 1.0.19 |
|
33 | - * @param string|array $keys Transient key or keys. |
|
34 | - */ |
|
35 | - public static function queue_delete_transient( $keys ) { |
|
36 | - self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
37 | - } |
|
38 | - |
|
39 | - /** |
|
40 | - * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
41 | - * |
|
42 | - * @since 1.0.19 |
|
43 | - */ |
|
44 | - public static function delete_transients_on_shutdown() { |
|
45 | - if ( self::$delete_transients ) { |
|
46 | - foreach ( self::$delete_transients as $key ) { |
|
47 | - delete_transient( $key ); |
|
48 | - } |
|
49 | - self::$delete_transients = array(); |
|
50 | - } |
|
51 | - } |
|
52 | - |
|
53 | - /** |
|
54 | - * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
55 | - * |
|
56 | - * @param string $group Group of cache to get. |
|
57 | - * @return string |
|
58 | - */ |
|
59 | - public static function get_cache_prefix( $group ) { |
|
60 | - // Get cache key. |
|
61 | - $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
62 | - |
|
63 | - if ( false === $prefix ) { |
|
64 | - $prefix = microtime(); |
|
65 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
66 | - } |
|
67 | - |
|
68 | - return 'getpaid_cache_' . $prefix . '_'; |
|
69 | - } |
|
70 | - |
|
71 | - /** |
|
72 | - * Invalidate cache group. |
|
73 | - * |
|
74 | - * @param string $group Group of cache to clear. |
|
75 | - * @since 1.0.19 |
|
76 | - */ |
|
77 | - public static function invalidate_cache_group( $group ) { |
|
78 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
79 | - } |
|
80 | - |
|
81 | - /** |
|
82 | - * Prevent caching on certain pages |
|
83 | - */ |
|
84 | - public static function prevent_caching() { |
|
85 | - if ( ! is_blog_installed() ) { |
|
86 | - return; |
|
87 | - } |
|
88 | - |
|
89 | - if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
90 | - self::set_nocache_constants(); |
|
91 | - nocache_headers(); |
|
92 | - } |
|
93 | - |
|
94 | - } |
|
95 | - |
|
96 | - /** |
|
97 | - * Get transient version. |
|
98 | - * |
|
99 | - * |
|
100 | - * @param string $group Name for the group of transients we need to invalidate. |
|
101 | - * @param boolean $refresh true to force a new version. |
|
102 | - * @return string transient version based on time(), 10 digits. |
|
103 | - */ |
|
104 | - public static function get_transient_version( $group, $refresh = false ) { |
|
105 | - $transient_name = $group . '-transient-version'; |
|
106 | - $transient_value = get_transient( $transient_name ); |
|
107 | - |
|
108 | - if ( false === $transient_value || true === $refresh ) { |
|
109 | - $transient_value = (string) time(); |
|
110 | - |
|
111 | - set_transient( $transient_name, $transient_value ); |
|
112 | - } |
|
113 | - |
|
114 | - return $transient_value; |
|
115 | - } |
|
116 | - |
|
117 | - /** |
|
118 | - * Set constants to prevent caching by some plugins. |
|
119 | - * |
|
120 | - * @param mixed $return Value to return. Previously hooked into a filter. |
|
121 | - * @return mixed |
|
122 | - */ |
|
123 | - public static function set_nocache_constants( $return = true ) { |
|
124 | - getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
125 | - getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
126 | - getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
127 | - return $return; |
|
128 | - } |
|
14 | + /** |
|
15 | + * Transients to delete on shutdown. |
|
16 | + * |
|
17 | + * @var array Array of transient keys. |
|
18 | + */ |
|
19 | + private static $delete_transients = array(); |
|
20 | + |
|
21 | + /** |
|
22 | + * Hook in methods. |
|
23 | + */ |
|
24 | + public static function init() { |
|
25 | + add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
26 | + add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
27 | + } |
|
28 | + |
|
29 | + /** |
|
30 | + * Add a transient to delete on shutdown. |
|
31 | + * |
|
32 | + * @since 1.0.19 |
|
33 | + * @param string|array $keys Transient key or keys. |
|
34 | + */ |
|
35 | + public static function queue_delete_transient( $keys ) { |
|
36 | + self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
37 | + } |
|
38 | + |
|
39 | + /** |
|
40 | + * Transients that don't need to be cleaned right away can be deleted on shutdown to avoid repetition. |
|
41 | + * |
|
42 | + * @since 1.0.19 |
|
43 | + */ |
|
44 | + public static function delete_transients_on_shutdown() { |
|
45 | + if ( self::$delete_transients ) { |
|
46 | + foreach ( self::$delete_transients as $key ) { |
|
47 | + delete_transient( $key ); |
|
48 | + } |
|
49 | + self::$delete_transients = array(); |
|
50 | + } |
|
51 | + } |
|
52 | + |
|
53 | + /** |
|
54 | + * Get prefix for use with wp_cache_set. Allows all cache in a group to be invalidated at once. |
|
55 | + * |
|
56 | + * @param string $group Group of cache to get. |
|
57 | + * @return string |
|
58 | + */ |
|
59 | + public static function get_cache_prefix( $group ) { |
|
60 | + // Get cache key. |
|
61 | + $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
62 | + |
|
63 | + if ( false === $prefix ) { |
|
64 | + $prefix = microtime(); |
|
65 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
66 | + } |
|
67 | + |
|
68 | + return 'getpaid_cache_' . $prefix . '_'; |
|
69 | + } |
|
70 | + |
|
71 | + /** |
|
72 | + * Invalidate cache group. |
|
73 | + * |
|
74 | + * @param string $group Group of cache to clear. |
|
75 | + * @since 1.0.19 |
|
76 | + */ |
|
77 | + public static function invalidate_cache_group( $group ) { |
|
78 | + wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
79 | + } |
|
80 | + |
|
81 | + /** |
|
82 | + * Prevent caching on certain pages |
|
83 | + */ |
|
84 | + public static function prevent_caching() { |
|
85 | + if ( ! is_blog_installed() ) { |
|
86 | + return; |
|
87 | + } |
|
88 | + |
|
89 | + if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
90 | + self::set_nocache_constants(); |
|
91 | + nocache_headers(); |
|
92 | + } |
|
93 | + |
|
94 | + } |
|
95 | + |
|
96 | + /** |
|
97 | + * Get transient version. |
|
98 | + * |
|
99 | + * |
|
100 | + * @param string $group Name for the group of transients we need to invalidate. |
|
101 | + * @param boolean $refresh true to force a new version. |
|
102 | + * @return string transient version based on time(), 10 digits. |
|
103 | + */ |
|
104 | + public static function get_transient_version( $group, $refresh = false ) { |
|
105 | + $transient_name = $group . '-transient-version'; |
|
106 | + $transient_value = get_transient( $transient_name ); |
|
107 | + |
|
108 | + if ( false === $transient_value || true === $refresh ) { |
|
109 | + $transient_value = (string) time(); |
|
110 | + |
|
111 | + set_transient( $transient_name, $transient_value ); |
|
112 | + } |
|
113 | + |
|
114 | + return $transient_value; |
|
115 | + } |
|
116 | + |
|
117 | + /** |
|
118 | + * Set constants to prevent caching by some plugins. |
|
119 | + * |
|
120 | + * @param mixed $return Value to return. Previously hooked into a filter. |
|
121 | + * @return mixed |
|
122 | + */ |
|
123 | + public static function set_nocache_constants( $return = true ) { |
|
124 | + getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
125 | + getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
126 | + getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
127 | + return $return; |
|
128 | + } |
|
129 | 129 | |
130 | 130 | } |
131 | 131 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * GetPaid_Cache_Helper. |
@@ -22,8 +22,8 @@ discard block |
||
22 | 22 | * Hook in methods. |
23 | 23 | */ |
24 | 24 | public static function init() { |
25 | - add_action( 'shutdown', array( __CLASS__, 'delete_transients_on_shutdown' ), 10 ); |
|
26 | - add_action( 'wp', array( __CLASS__, 'prevent_caching' ) ); |
|
25 | + add_action('shutdown', array(__CLASS__, 'delete_transients_on_shutdown'), 10); |
|
26 | + add_action('wp', array(__CLASS__, 'prevent_caching')); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | /** |
@@ -32,8 +32,8 @@ discard block |
||
32 | 32 | * @since 1.0.19 |
33 | 33 | * @param string|array $keys Transient key or keys. |
34 | 34 | */ |
35 | - public static function queue_delete_transient( $keys ) { |
|
36 | - self::$delete_transients = array_unique( array_merge( is_array( $keys ) ? $keys : array( $keys ), self::$delete_transients ) ); |
|
35 | + public static function queue_delete_transient($keys) { |
|
36 | + self::$delete_transients = array_unique(array_merge(is_array($keys) ? $keys : array($keys), self::$delete_transients)); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | * @since 1.0.19 |
43 | 43 | */ |
44 | 44 | public static function delete_transients_on_shutdown() { |
45 | - if ( self::$delete_transients ) { |
|
46 | - foreach ( self::$delete_transients as $key ) { |
|
47 | - delete_transient( $key ); |
|
45 | + if (self::$delete_transients) { |
|
46 | + foreach (self::$delete_transients as $key) { |
|
47 | + delete_transient($key); |
|
48 | 48 | } |
49 | 49 | self::$delete_transients = array(); |
50 | 50 | } |
@@ -56,13 +56,13 @@ discard block |
||
56 | 56 | * @param string $group Group of cache to get. |
57 | 57 | * @return string |
58 | 58 | */ |
59 | - public static function get_cache_prefix( $group ) { |
|
59 | + public static function get_cache_prefix($group) { |
|
60 | 60 | // Get cache key. |
61 | - $prefix = wp_cache_get( 'getpaid_' . $group . '_cache_prefix', $group ); |
|
61 | + $prefix = wp_cache_get('getpaid_' . $group . '_cache_prefix', $group); |
|
62 | 62 | |
63 | - if ( false === $prefix ) { |
|
63 | + if (false === $prefix) { |
|
64 | 64 | $prefix = microtime(); |
65 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', $prefix, $group ); |
|
65 | + wp_cache_set('getpaid_' . $group . '_cache_prefix', $prefix, $group); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | return 'getpaid_cache_' . $prefix . '_'; |
@@ -74,19 +74,19 @@ discard block |
||
74 | 74 | * @param string $group Group of cache to clear. |
75 | 75 | * @since 1.0.19 |
76 | 76 | */ |
77 | - public static function invalidate_cache_group( $group ) { |
|
78 | - wp_cache_set( 'getpaid_' . $group . '_cache_prefix', microtime(), $group ); |
|
77 | + public static function invalidate_cache_group($group) { |
|
78 | + wp_cache_set('getpaid_' . $group . '_cache_prefix', microtime(), $group); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | /** |
82 | 82 | * Prevent caching on certain pages |
83 | 83 | */ |
84 | 84 | public static function prevent_caching() { |
85 | - if ( ! is_blog_installed() ) { |
|
85 | + if (!is_blog_installed()) { |
|
86 | 86 | return; |
87 | 87 | } |
88 | 88 | |
89 | - if ( wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page() ) { |
|
89 | + if (wpinv_is_checkout() || wpinv_is_success_page() || wpinv_is_invoice_history_page() || wpinv_is_subscriptions_history_page()) { |
|
90 | 90 | self::set_nocache_constants(); |
91 | 91 | nocache_headers(); |
92 | 92 | } |
@@ -101,14 +101,14 @@ discard block |
||
101 | 101 | * @param boolean $refresh true to force a new version. |
102 | 102 | * @return string transient version based on time(), 10 digits. |
103 | 103 | */ |
104 | - public static function get_transient_version( $group, $refresh = false ) { |
|
104 | + public static function get_transient_version($group, $refresh = false) { |
|
105 | 105 | $transient_name = $group . '-transient-version'; |
106 | - $transient_value = get_transient( $transient_name ); |
|
106 | + $transient_value = get_transient($transient_name); |
|
107 | 107 | |
108 | - if ( false === $transient_value || true === $refresh ) { |
|
108 | + if (false === $transient_value || true === $refresh) { |
|
109 | 109 | $transient_value = (string) time(); |
110 | 110 | |
111 | - set_transient( $transient_name, $transient_value ); |
|
111 | + set_transient($transient_name, $transient_value); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | return $transient_value; |
@@ -120,10 +120,10 @@ discard block |
||
120 | 120 | * @param mixed $return Value to return. Previously hooked into a filter. |
121 | 121 | * @return mixed |
122 | 122 | */ |
123 | - public static function set_nocache_constants( $return = true ) { |
|
124 | - getpaid_maybe_define_constant( 'DONOTCACHEPAGE', true ); |
|
125 | - getpaid_maybe_define_constant( 'DONOTCACHEOBJECT', true ); |
|
126 | - getpaid_maybe_define_constant( 'DONOTCACHEDB', true ); |
|
123 | + public static function set_nocache_constants($return = true) { |
|
124 | + getpaid_maybe_define_constant('DONOTCACHEPAGE', true); |
|
125 | + getpaid_maybe_define_constant('DONOTCACHEOBJECT', true); |
|
126 | + getpaid_maybe_define_constant('DONOTCACHEDB', true); |
|
127 | 127 | return $return; |
128 | 128 | } |
129 | 129 |
@@ -15,104 +15,104 @@ |
||
15 | 15 | */ |
16 | 16 | class GetPaid_Meta_Data implements JsonSerializable { |
17 | 17 | |
18 | - /** |
|
19 | - * Current data for metadata |
|
20 | - * |
|
21 | - * @since 1.0.19 |
|
22 | - * @var array |
|
23 | - */ |
|
24 | - protected $current_data; |
|
18 | + /** |
|
19 | + * Current data for metadata |
|
20 | + * |
|
21 | + * @since 1.0.19 |
|
22 | + * @var array |
|
23 | + */ |
|
24 | + protected $current_data; |
|
25 | 25 | |
26 | - /** |
|
27 | - * Metadata data |
|
28 | - * |
|
29 | - * @since 1.0.19 |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - protected $data; |
|
26 | + /** |
|
27 | + * Metadata data |
|
28 | + * |
|
29 | + * @since 1.0.19 |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + protected $data; |
|
33 | 33 | |
34 | - /** |
|
35 | - * Constructor. |
|
36 | - * |
|
37 | - * @param array $meta Data to wrap behind this function. |
|
38 | - */ |
|
39 | - public function __construct( $meta = array() ) { |
|
40 | - $this->current_data = $meta; |
|
41 | - $this->apply_changes(); |
|
42 | - } |
|
34 | + /** |
|
35 | + * Constructor. |
|
36 | + * |
|
37 | + * @param array $meta Data to wrap behind this function. |
|
38 | + */ |
|
39 | + public function __construct( $meta = array() ) { |
|
40 | + $this->current_data = $meta; |
|
41 | + $this->apply_changes(); |
|
42 | + } |
|
43 | 43 | |
44 | - /** |
|
45 | - * When converted to JSON. |
|
46 | - * |
|
47 | - * @return object|array |
|
48 | - */ |
|
49 | - public function jsonSerialize() { |
|
50 | - return $this->get_data(); |
|
51 | - } |
|
44 | + /** |
|
45 | + * When converted to JSON. |
|
46 | + * |
|
47 | + * @return object|array |
|
48 | + */ |
|
49 | + public function jsonSerialize() { |
|
50 | + return $this->get_data(); |
|
51 | + } |
|
52 | 52 | |
53 | - /** |
|
54 | - * Merge changes with data and clear. |
|
55 | - */ |
|
56 | - public function apply_changes() { |
|
57 | - $this->data = $this->current_data; |
|
58 | - } |
|
53 | + /** |
|
54 | + * Merge changes with data and clear. |
|
55 | + */ |
|
56 | + public function apply_changes() { |
|
57 | + $this->data = $this->current_data; |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * Creates or updates a property in the metadata object. |
|
62 | - * |
|
63 | - * @param string $key Key to set. |
|
64 | - * @param mixed $value Value to set. |
|
65 | - */ |
|
66 | - public function __set( $key, $value ) { |
|
67 | - $this->current_data[ $key ] = $value; |
|
68 | - } |
|
60 | + /** |
|
61 | + * Creates or updates a property in the metadata object. |
|
62 | + * |
|
63 | + * @param string $key Key to set. |
|
64 | + * @param mixed $value Value to set. |
|
65 | + */ |
|
66 | + public function __set( $key, $value ) { |
|
67 | + $this->current_data[ $key ] = $value; |
|
68 | + } |
|
69 | 69 | |
70 | - /** |
|
71 | - * Checks if a given key exists in our data. This is called internally |
|
72 | - * by `empty` and `isset`. |
|
73 | - * |
|
74 | - * @param string $key Key to check if set. |
|
75 | - * |
|
76 | - * @return bool |
|
77 | - */ |
|
78 | - public function __isset( $key ) { |
|
79 | - return array_key_exists( $key, $this->current_data ); |
|
80 | - } |
|
70 | + /** |
|
71 | + * Checks if a given key exists in our data. This is called internally |
|
72 | + * by `empty` and `isset`. |
|
73 | + * |
|
74 | + * @param string $key Key to check if set. |
|
75 | + * |
|
76 | + * @return bool |
|
77 | + */ |
|
78 | + public function __isset( $key ) { |
|
79 | + return array_key_exists( $key, $this->current_data ); |
|
80 | + } |
|
81 | 81 | |
82 | - /** |
|
83 | - * Returns the value of any property. |
|
84 | - * |
|
85 | - * @param string $key Key to get. |
|
86 | - * @return mixed Property value or NULL if it does not exists |
|
87 | - */ |
|
88 | - public function __get( $key ) { |
|
89 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
90 | - return $this->current_data[ $key ]; |
|
91 | - } |
|
92 | - return null; |
|
93 | - } |
|
82 | + /** |
|
83 | + * Returns the value of any property. |
|
84 | + * |
|
85 | + * @param string $key Key to get. |
|
86 | + * @return mixed Property value or NULL if it does not exists |
|
87 | + */ |
|
88 | + public function __get( $key ) { |
|
89 | + if ( array_key_exists( $key, $this->current_data ) ) { |
|
90 | + return $this->current_data[ $key ]; |
|
91 | + } |
|
92 | + return null; |
|
93 | + } |
|
94 | 94 | |
95 | - /** |
|
96 | - * Return data changes only. |
|
97 | - * |
|
98 | - * @return array |
|
99 | - */ |
|
100 | - public function get_changes() { |
|
101 | - $changes = array(); |
|
102 | - foreach ( $this->current_data as $id => $value ) { |
|
103 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
104 | - $changes[ $id ] = $value; |
|
105 | - } |
|
106 | - } |
|
107 | - return $changes; |
|
108 | - } |
|
95 | + /** |
|
96 | + * Return data changes only. |
|
97 | + * |
|
98 | + * @return array |
|
99 | + */ |
|
100 | + public function get_changes() { |
|
101 | + $changes = array(); |
|
102 | + foreach ( $this->current_data as $id => $value ) { |
|
103 | + if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
104 | + $changes[ $id ] = $value; |
|
105 | + } |
|
106 | + } |
|
107 | + return $changes; |
|
108 | + } |
|
109 | 109 | |
110 | - /** |
|
111 | - * Return all data as an array. |
|
112 | - * |
|
113 | - * @return array |
|
114 | - */ |
|
115 | - public function get_data() { |
|
116 | - return $this->data; |
|
117 | - } |
|
110 | + /** |
|
111 | + * Return all data as an array. |
|
112 | + * |
|
113 | + * @return array |
|
114 | + */ |
|
115 | + public function get_data() { |
|
116 | + return $this->data; |
|
117 | + } |
|
118 | 118 | } |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | * @version 1.0.19 |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Meta data class. |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @param array $meta Data to wrap behind this function. |
38 | 38 | */ |
39 | - public function __construct( $meta = array() ) { |
|
39 | + public function __construct($meta = array()) { |
|
40 | 40 | $this->current_data = $meta; |
41 | 41 | $this->apply_changes(); |
42 | 42 | } |
@@ -63,8 +63,8 @@ discard block |
||
63 | 63 | * @param string $key Key to set. |
64 | 64 | * @param mixed $value Value to set. |
65 | 65 | */ |
66 | - public function __set( $key, $value ) { |
|
67 | - $this->current_data[ $key ] = $value; |
|
66 | + public function __set($key, $value) { |
|
67 | + $this->current_data[$key] = $value; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @return bool |
77 | 77 | */ |
78 | - public function __isset( $key ) { |
|
79 | - return array_key_exists( $key, $this->current_data ); |
|
78 | + public function __isset($key) { |
|
79 | + return array_key_exists($key, $this->current_data); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -85,9 +85,9 @@ discard block |
||
85 | 85 | * @param string $key Key to get. |
86 | 86 | * @return mixed Property value or NULL if it does not exists |
87 | 87 | */ |
88 | - public function __get( $key ) { |
|
89 | - if ( array_key_exists( $key, $this->current_data ) ) { |
|
90 | - return $this->current_data[ $key ]; |
|
88 | + public function __get($key) { |
|
89 | + if (array_key_exists($key, $this->current_data)) { |
|
90 | + return $this->current_data[$key]; |
|
91 | 91 | } |
92 | 92 | return null; |
93 | 93 | } |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | */ |
100 | 100 | public function get_changes() { |
101 | 101 | $changes = array(); |
102 | - foreach ( $this->current_data as $id => $value ) { |
|
103 | - if ( ! array_key_exists( $id, $this->data ) || $value !== $this->data[ $id ] ) { |
|
104 | - $changes[ $id ] = $value; |
|
102 | + foreach ($this->current_data as $id => $value) { |
|
103 | + if (!array_key_exists($id, $this->data) || $value !== $this->data[$id]) { |
|
104 | + $changes[$id] = $value; |
|
105 | 105 | } |
106 | 106 | } |
107 | 107 | return $changes; |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
11 | - exit; // Exit if accessed directly |
|
11 | + exit; // Exit if accessed directly |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
17 | 17 | class GetPaid_Meta_Box_Item_Info { |
18 | 18 | |
19 | 19 | /** |
20 | - * Output the metabox. |
|
21 | - * |
|
22 | - * @param WP_Post $post |
|
23 | - */ |
|
20 | + * Output the metabox. |
|
21 | + * |
|
22 | + * @param WP_Post $post |
|
23 | + */ |
|
24 | 24 | public static function output( $post ) { |
25 | 25 | |
26 | 26 | // Prepare the item. |
@@ -97,9 +97,9 @@ discard block |
||
97 | 97 | } |
98 | 98 | |
99 | 99 | /** |
100 | - * Returns item type tolltip. |
|
101 | - * |
|
102 | - */ |
|
100 | + * Returns item type tolltip. |
|
101 | + * |
|
102 | + */ |
|
103 | 103 | public static function get_tooltip( $post ) { |
104 | 104 | |
105 | 105 | ob_start(); |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,20 +21,20 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the item. |
27 | - $item = new WPInv_Item( $post ); |
|
27 | + $item = new WPInv_Item($post); |
|
28 | 28 | |
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <div class='bsui' style='padding-top: 10px;'> |
32 | - <?php do_action( 'wpinv_item_before_info_metabox', $item ); ?> |
|
32 | + <?php do_action('wpinv_item_before_info_metabox', $item); ?> |
|
33 | 33 | |
34 | 34 | <div class="wpinv_item_type form-group row"> |
35 | 35 | <label for="wpinv_item_type" class="col-sm-12 col-form-label"> |
36 | - <?php _e( 'Item Type', 'invoicing' );?> |
|
37 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php echo strip_tags( self::get_tooltip( $post ) ); ?>"></span> |
|
36 | + <?php _e('Item Type', 'invoicing'); ?> |
|
37 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php echo strip_tags(self::get_tooltip($post)); ?>"></span> |
|
38 | 38 | </label> |
39 | 39 | |
40 | 40 | <div class="col-sm-12"> |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | array( |
45 | 45 | 'id' => 'wpinv_item_type', |
46 | 46 | 'name' => 'wpinv_item_type', |
47 | - 'placeholder' => __( 'Select item type', 'invoicing' ), |
|
48 | - 'value' => $item->get_type( 'edit' ), |
|
47 | + 'placeholder' => __('Select item type', 'invoicing'), |
|
48 | + 'value' => $item->get_type('edit'), |
|
49 | 49 | 'select2' => true, |
50 | 50 | 'data-allow-clear' => 'false', |
51 | 51 | 'no_wrap' => true, |
@@ -57,59 +57,59 @@ discard block |
||
57 | 57 | </div> |
58 | 58 | </div> |
59 | 59 | |
60 | - <?php if ( 'fee' === $item->get_type( 'edit' ) || 'custom' === $item->get_type( 'edit' ) ) : ?> |
|
60 | + <?php if ('fee' === $item->get_type('edit') || 'custom' === $item->get_type('edit')) : ?> |
|
61 | 61 | |
62 | 62 | <div class="wpinv_item_shortcode form-group row"> |
63 | 63 | <label for="wpinv_item_shortcode" class="col-sm-12 col-form-label"> |
64 | - <?php _e( 'Payment Form Shortcode', 'invoicing' );?> |
|
65 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a payment form', 'invoicing' ); ?>"></span> |
|
64 | + <?php _e('Payment Form Shortcode', 'invoicing'); ?> |
|
65 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a payment form', 'invoicing'); ?>"></span> |
|
66 | 66 | </label> |
67 | 67 | |
68 | 68 | <div class="col-sm-12"> |
69 | - <input onClick="this.select()" type="text" id="wpinv_item_shortcode" value="[getpaid item=<?php echo esc_attr( $item->get_id() ); ?>]" style="width: 100%;" readonly/> |
|
69 | + <input onClick="this.select()" type="text" id="wpinv_item_shortcode" value="[getpaid item=<?php echo esc_attr($item->get_id()); ?>]" style="width: 100%;" readonly/> |
|
70 | 70 | </div> |
71 | 71 | </div> |
72 | 72 | |
73 | 73 | <div class="wpinv_item_buy_shortcode form-group row"> |
74 | 74 | <label for="wpinv_item_button_shortcode" class="col-sm-12 col-form-label"> |
75 | - <?php _e( 'Payment Button Shortcode', 'invoicing' );?> |
|
76 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a buy now button', 'invoicing' ); ?>"></span> |
|
75 | + <?php _e('Payment Button Shortcode', 'invoicing'); ?> |
|
76 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a buy now button', 'invoicing'); ?>"></span> |
|
77 | 77 | </label> |
78 | 78 | |
79 | 79 | <div class="col-sm-12"> |
80 | - <input onClick="this.select()" type="text" id="wpinv_item_button_shortcode" value="[getpaid item=<?php echo esc_attr( $item->get_id() ); ?> button='Buy Now']" style="width: 100%;" readonly/> |
|
80 | + <input onClick="this.select()" type="text" id="wpinv_item_button_shortcode" value="[getpaid item=<?php echo esc_attr($item->get_id()); ?> button='Buy Now']" style="width: 100%;" readonly/> |
|
81 | 81 | <small class="form-text text-muted"> |
82 | - <?php _e( 'Or use the following URL in a link:', 'invoicing' );?> |
|
83 | - <code>#getpaid-item-<?php echo intval( $item->get_id() ); ?>|0</code> |
|
82 | + <?php _e('Or use the following URL in a link:', 'invoicing'); ?> |
|
83 | + <code>#getpaid-item-<?php echo intval($item->get_id()); ?>|0</code> |
|
84 | 84 | </small> |
85 | 85 | </div> |
86 | 86 | </div> |
87 | 87 | |
88 | 88 | <div class="wpinv_item_buy_url form-group row"> |
89 | 89 | <label for="wpinv_item_buy_url" class="col-sm-12 col-form-label"> |
90 | - <?php _e( 'Direct Payment URL', 'invoicing' );?> |
|
91 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'You can use this in an iFrame to embed the payment form on another website', 'invoicing' ); ?>"></span> |
|
90 | + <?php _e('Direct Payment URL', 'invoicing'); ?> |
|
91 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('You can use this in an iFrame to embed the payment form on another website', 'invoicing'); ?>"></span> |
|
92 | 92 | </label> |
93 | 93 | |
94 | 94 | <div class="col-sm-12"> |
95 | - <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url( getpaid_embed_url( false, $item->get_id() . '|0' ) ); ?>" style="width: 100%;" readonly/> |
|
95 | + <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url(getpaid_embed_url(false, $item->get_id() . '|0')); ?>" style="width: 100%;" readonly/> |
|
96 | 96 | </div> |
97 | 97 | </div> |
98 | 98 | |
99 | 99 | <?php endif; ?> |
100 | 100 | |
101 | 101 | <div class="wpinv_item_custom_id form-group"> |
102 | - <?php _e( 'Custom ID', 'invoicing' );?> — <?php echo esc_html( $item->get_custom_id() ) ?> |
|
102 | + <?php _e('Custom ID', 'invoicing'); ?> — <?php echo esc_html($item->get_custom_id()) ?> |
|
103 | 103 | </div> |
104 | 104 | |
105 | - <?php do_action( 'wpinv_meta_values_metabox_before', $post ); ?> |
|
106 | - <?php foreach ( apply_filters( 'wpinv_show_meta_values_for_keys', array() ) as $meta_key ) : ?> |
|
105 | + <?php do_action('wpinv_meta_values_metabox_before', $post); ?> |
|
106 | + <?php foreach (apply_filters('wpinv_show_meta_values_for_keys', array()) as $meta_key) : ?> |
|
107 | 107 | <div class="wpinv_item_custom_id form-group"> |
108 | - <?php echo esc_html( $meta_key );?> — <?php echo esc_html( get_post_meta( $item->get_id(), '_wpinv_' . $meta_key, true ) ); ?> |
|
108 | + <?php echo esc_html($meta_key); ?> — <?php echo esc_html(get_post_meta($item->get_id(), '_wpinv_' . $meta_key, true)); ?> |
|
109 | 109 | </div> |
110 | 110 | <?php endforeach; ?> |
111 | - <?php do_action( 'wpinv_meta_values_metabox_after', $post ); ?> |
|
112 | - <?php do_action( 'wpinv_item_info_metabox', $item ); ?> |
|
111 | + <?php do_action('wpinv_meta_values_metabox_after', $post); ?> |
|
112 | + <?php do_action('wpinv_item_info_metabox', $item); ?> |
|
113 | 113 | </div> |
114 | 114 | <?php |
115 | 115 | |
@@ -119,16 +119,16 @@ discard block |
||
119 | 119 | * Returns item type tolltip. |
120 | 120 | * |
121 | 121 | */ |
122 | - public static function get_tooltip( $post ) { |
|
122 | + public static function get_tooltip($post) { |
|
123 | 123 | |
124 | 124 | ob_start(); |
125 | 125 | ?> |
126 | 126 | |
127 | - <?php _e( 'Standard: Standard item type', 'invoicing' );?> |
|
128 | - <?php _e( 'Fee: Like Registration Fee, Sign up Fee etc', 'invoicing' );?> |
|
127 | + <?php _e('Standard: Standard item type', 'invoicing'); ?> |
|
128 | + <?php _e('Fee: Like Registration Fee, Sign up Fee etc', 'invoicing'); ?> |
|
129 | 129 | |
130 | 130 | <?php |
131 | - do_action( 'wpinv_item_info_metabox_after', $post ); |
|
131 | + do_action('wpinv_item_info_metabox_after', $post); |
|
132 | 132 | |
133 | 133 | return ob_get_clean(); |
134 | 134 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Data store class. |
@@ -54,31 +54,31 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @param string $object_type Name of object. |
56 | 56 | */ |
57 | - public function __construct( $object_type ) { |
|
57 | + public function __construct($object_type) { |
|
58 | 58 | $this->object_type = $object_type; |
59 | - $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
59 | + $this->stores = apply_filters('getpaid_data_stores', $this->stores); |
|
60 | 60 | |
61 | 61 | // If this object type can't be found, check to see if we can load one |
62 | 62 | // level up (so if item-type isn't found, we try item). |
63 | - if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
64 | - $pieces = explode( '-', $object_type ); |
|
63 | + if (!array_key_exists($object_type, $this->stores)) { |
|
64 | + $pieces = explode('-', $object_type); |
|
65 | 65 | $object_type = $pieces[0]; |
66 | 66 | } |
67 | 67 | |
68 | - if ( array_key_exists( $object_type, $this->stores ) ) { |
|
69 | - $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
70 | - if ( is_object( $store ) ) { |
|
71 | - $this->current_class_name = get_class( $store ); |
|
68 | + if (array_key_exists($object_type, $this->stores)) { |
|
69 | + $store = apply_filters('getpaid_' . $object_type . '_data_store', $this->stores[$object_type]); |
|
70 | + if (is_object($store)) { |
|
71 | + $this->current_class_name = get_class($store); |
|
72 | 72 | $this->instance = $store; |
73 | 73 | } else { |
74 | - if ( ! class_exists( $store ) ) { |
|
75 | - throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
74 | + if (!class_exists($store)) { |
|
75 | + throw new Exception(__('Data store class does not exist.', 'invoicing')); |
|
76 | 76 | } |
77 | 77 | $this->current_class_name = $store; |
78 | 78 | $this->instance = new $store(); |
79 | 79 | } |
80 | 80 | } else { |
81 | - throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
81 | + throw new Exception(__('Invalid data store.', 'invoicing')); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * @return array |
89 | 89 | */ |
90 | 90 | public function __sleep() { |
91 | - return array( 'object_type' ); |
|
91 | + return array('object_type'); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | * @throws Exception When validation fails. |
98 | 98 | */ |
99 | 99 | public function __wakeup() { |
100 | - $this->__construct( $this->object_type ); |
|
100 | + $this->__construct($this->object_type); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -109,8 +109,8 @@ discard block |
||
109 | 109 | * @throws Exception When validation fails. |
110 | 110 | * @return GetPaid_Data_Store |
111 | 111 | */ |
112 | - public static function load( $object_type ) { |
|
113 | - return new GetPaid_Data_Store( $object_type ); |
|
112 | + public static function load($object_type) { |
|
113 | + return new GetPaid_Data_Store($object_type); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -139,8 +139,8 @@ discard block |
||
139 | 139 | * @since 1.0.19 |
140 | 140 | * @param GetPaid_Data $data GetPaid data instance. |
141 | 141 | */ |
142 | - public function read( &$data ) { |
|
143 | - $this->instance->read( $data ); |
|
142 | + public function read(&$data) { |
|
143 | + $this->instance->read($data); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -149,8 +149,8 @@ discard block |
||
149 | 149 | * @since 1.0.19 |
150 | 150 | * @param GetPaid_Data $data GetPaid data instance. |
151 | 151 | */ |
152 | - public function create( &$data ) { |
|
153 | - $this->instance->create( $data ); |
|
152 | + public function create(&$data) { |
|
153 | + $this->instance->create($data); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | /** |
@@ -159,8 +159,8 @@ discard block |
||
159 | 159 | * @since 1.0.19 |
160 | 160 | * @param GetPaid_Data $data GetPaid data instance. |
161 | 161 | */ |
162 | - public function update( &$data ) { |
|
163 | - $this->instance->update( $data ); |
|
162 | + public function update(&$data) { |
|
163 | + $this->instance->update($data); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | /** |
@@ -170,8 +170,8 @@ discard block |
||
170 | 170 | * @param GetPaid_Data $data GetPaid data instance. |
171 | 171 | * @param array $args Array of args to pass to the delete method. |
172 | 172 | */ |
173 | - public function delete( &$data, $args = array() ) { |
|
174 | - $this->instance->delete( $data, $args ); |
|
173 | + public function delete(&$data, $args = array()) { |
|
174 | + $this->instance->delete($data, $args); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | /** |
@@ -182,11 +182,11 @@ discard block |
||
182 | 182 | * @param string $method Method. |
183 | 183 | * @return mixed |
184 | 184 | */ |
185 | - public function __call( $method, $parameters ) { |
|
186 | - if ( is_callable( array( $this->instance, $method ) ) ) { |
|
187 | - $object = array_shift( $parameters ); |
|
188 | - $parameters = array_merge( array( &$object ), $parameters ); |
|
189 | - return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
185 | + public function __call($method, $parameters) { |
|
186 | + if (is_callable(array($this->instance, $method))) { |
|
187 | + $object = array_shift($parameters); |
|
188 | + $parameters = array_merge(array(&$object), $parameters); |
|
189 | + return call_user_func_array(array($this->instance, $method), $parameters); |
|
190 | 190 | } |
191 | 191 | } |
192 | 192 |
@@ -11,186 +11,186 @@ |
||
11 | 11 | */ |
12 | 12 | class GetPaid_Data_Store { |
13 | 13 | |
14 | - /** |
|
15 | - * Contains an instance of the data store class that we are working with. |
|
16 | - * |
|
17 | - * @var GetPaid_Data_Store |
|
18 | - */ |
|
19 | - private $instance = null; |
|
20 | - |
|
21 | - /** |
|
22 | - * Contains an array of default supported data stores. |
|
23 | - * Format of object name => class name. |
|
24 | - * Example: 'item' => 'GetPaid_Item_Data_Store' |
|
25 | - * You can also pass something like item-<type> for item stores and |
|
26 | - * that type will be used first when available, if a store is requested like |
|
27 | - * this and doesn't exist, then the store would fall back to 'item'. |
|
28 | - * Ran through `getpaid_data_stores`. |
|
29 | - * |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - private $stores = array( |
|
33 | - 'item' => 'GetPaid_Item_Data_Store', |
|
34 | - 'payment_form' => 'GetPaid_Payment_Form_Data_Store', |
|
35 | - 'discount' => 'GetPaid_Discount_Data_Store', |
|
36 | - 'invoice' => 'GetPaid_Invoice_Data_Store', |
|
37 | - 'subscription' => 'GetPaid_Subscription_Data_Store', |
|
38 | - ); |
|
39 | - |
|
40 | - /** |
|
41 | - * Contains the name of the current data store's class name. |
|
42 | - * |
|
43 | - * @var string |
|
44 | - */ |
|
45 | - private $current_class_name = ''; |
|
46 | - |
|
47 | - /** |
|
48 | - * The object type this store works with. |
|
49 | - * |
|
50 | - * @var string |
|
51 | - */ |
|
52 | - private $object_type = ''; |
|
53 | - |
|
54 | - /** |
|
55 | - * Tells GetPaid_Data_Store which object |
|
56 | - * store we want to work with. |
|
57 | - * |
|
58 | - * @param string $object_type Name of object. |
|
59 | - */ |
|
60 | - public function __construct( $object_type ) { |
|
61 | - $this->object_type = $object_type; |
|
62 | - $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
63 | - |
|
64 | - // If this object type can't be found, check to see if we can load one |
|
65 | - // level up (so if item-type isn't found, we try item). |
|
66 | - if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
67 | - $pieces = explode( '-', $object_type ); |
|
68 | - $object_type = $pieces[0]; |
|
69 | - } |
|
70 | - |
|
71 | - if ( array_key_exists( $object_type, $this->stores ) ) { |
|
72 | - $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
73 | - if ( is_object( $store ) ) { |
|
74 | - $this->current_class_name = get_class( $store ); |
|
75 | - $this->instance = $store; |
|
76 | - } else { |
|
77 | - if ( ! class_exists( $store ) ) { |
|
78 | - throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
79 | - } |
|
80 | - $this->current_class_name = $store; |
|
81 | - $this->instance = new $store(); |
|
82 | - } |
|
83 | - } else { |
|
84 | - throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
85 | - } |
|
86 | - } |
|
87 | - |
|
88 | - /** |
|
89 | - * Only store the object type to avoid serializing the data store instance. |
|
90 | - * |
|
91 | - * @return array |
|
92 | - */ |
|
93 | - public function __sleep() { |
|
94 | - return array( 'object_type' ); |
|
95 | - } |
|
96 | - |
|
97 | - /** |
|
98 | - * Re-run the constructor with the object type. |
|
99 | - * |
|
100 | - * @throws Exception When validation fails. |
|
101 | - */ |
|
102 | - public function __wakeup() { |
|
103 | - $this->__construct( $this->object_type ); |
|
104 | - } |
|
105 | - |
|
106 | - /** |
|
107 | - * Loads a data store. |
|
108 | - * |
|
109 | - * @param string $object_type Name of object. |
|
110 | - * |
|
111 | - * @since 1.0.19 |
|
112 | - * @throws Exception When validation fails. |
|
113 | - * @return GetPaid_Data_Store |
|
114 | - */ |
|
115 | - public static function load( $object_type ) { |
|
116 | - return new GetPaid_Data_Store( $object_type ); |
|
117 | - } |
|
118 | - |
|
119 | - /** |
|
120 | - * Returns the class name of the current data store. |
|
121 | - * |
|
122 | - * @since 1.0.19 |
|
123 | - * @return string |
|
124 | - */ |
|
125 | - public function get_current_class_name() { |
|
126 | - return $this->current_class_name; |
|
127 | - } |
|
128 | - |
|
129 | - /** |
|
130 | - * Returns the object type of the current data store. |
|
131 | - * |
|
132 | - * @since 1.0.19 |
|
133 | - * @return string |
|
134 | - */ |
|
135 | - public function get_object_type() { |
|
136 | - return $this->object_type; |
|
137 | - } |
|
138 | - |
|
139 | - /** |
|
140 | - * Reads an object from the data store. |
|
141 | - * |
|
142 | - * @since 1.0.19 |
|
143 | - * @param GetPaid_Data $data GetPaid data instance. |
|
144 | - */ |
|
145 | - public function read( &$data ) { |
|
146 | - $this->instance->read( $data ); |
|
147 | - } |
|
148 | - |
|
149 | - /** |
|
150 | - * Create an object in the data store. |
|
151 | - * |
|
152 | - * @since 1.0.19 |
|
153 | - * @param GetPaid_Data $data GetPaid data instance. |
|
154 | - */ |
|
155 | - public function create( &$data ) { |
|
156 | - $this->instance->create( $data ); |
|
157 | - } |
|
158 | - |
|
159 | - /** |
|
160 | - * Update an object in the data store. |
|
161 | - * |
|
162 | - * @since 1.0.19 |
|
163 | - * @param GetPaid_Data $data GetPaid data instance. |
|
164 | - */ |
|
165 | - public function update( &$data ) { |
|
166 | - $this->instance->update( $data ); |
|
167 | - } |
|
168 | - |
|
169 | - /** |
|
170 | - * Delete an object from the data store. |
|
171 | - * |
|
172 | - * @since 1.0.19 |
|
173 | - * @param GetPaid_Data $data GetPaid data instance. |
|
174 | - * @param array $args Array of args to pass to the delete method. |
|
175 | - */ |
|
176 | - public function delete( &$data, $args = array() ) { |
|
177 | - $this->instance->delete( $data, $args ); |
|
178 | - } |
|
179 | - |
|
180 | - /** |
|
181 | - * Data stores can define additional function. This passes |
|
182 | - * through to the instance if that function exists. |
|
183 | - * |
|
184 | - * @since 1.0.19 |
|
185 | - * @param string $method Method. |
|
186 | - * @return mixed |
|
187 | - */ |
|
188 | - public function __call( $method, $parameters ) { |
|
189 | - if ( is_callable( array( $this->instance, $method ) ) ) { |
|
190 | - $object = array_shift( $parameters ); |
|
191 | - $parameters = array_merge( array( &$object ), $parameters ); |
|
192 | - return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
193 | - } |
|
194 | - } |
|
14 | + /** |
|
15 | + * Contains an instance of the data store class that we are working with. |
|
16 | + * |
|
17 | + * @var GetPaid_Data_Store |
|
18 | + */ |
|
19 | + private $instance = null; |
|
20 | + |
|
21 | + /** |
|
22 | + * Contains an array of default supported data stores. |
|
23 | + * Format of object name => class name. |
|
24 | + * Example: 'item' => 'GetPaid_Item_Data_Store' |
|
25 | + * You can also pass something like item-<type> for item stores and |
|
26 | + * that type will be used first when available, if a store is requested like |
|
27 | + * this and doesn't exist, then the store would fall back to 'item'. |
|
28 | + * Ran through `getpaid_data_stores`. |
|
29 | + * |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + private $stores = array( |
|
33 | + 'item' => 'GetPaid_Item_Data_Store', |
|
34 | + 'payment_form' => 'GetPaid_Payment_Form_Data_Store', |
|
35 | + 'discount' => 'GetPaid_Discount_Data_Store', |
|
36 | + 'invoice' => 'GetPaid_Invoice_Data_Store', |
|
37 | + 'subscription' => 'GetPaid_Subscription_Data_Store', |
|
38 | + ); |
|
39 | + |
|
40 | + /** |
|
41 | + * Contains the name of the current data store's class name. |
|
42 | + * |
|
43 | + * @var string |
|
44 | + */ |
|
45 | + private $current_class_name = ''; |
|
46 | + |
|
47 | + /** |
|
48 | + * The object type this store works with. |
|
49 | + * |
|
50 | + * @var string |
|
51 | + */ |
|
52 | + private $object_type = ''; |
|
53 | + |
|
54 | + /** |
|
55 | + * Tells GetPaid_Data_Store which object |
|
56 | + * store we want to work with. |
|
57 | + * |
|
58 | + * @param string $object_type Name of object. |
|
59 | + */ |
|
60 | + public function __construct( $object_type ) { |
|
61 | + $this->object_type = $object_type; |
|
62 | + $this->stores = apply_filters( 'getpaid_data_stores', $this->stores ); |
|
63 | + |
|
64 | + // If this object type can't be found, check to see if we can load one |
|
65 | + // level up (so if item-type isn't found, we try item). |
|
66 | + if ( ! array_key_exists( $object_type, $this->stores ) ) { |
|
67 | + $pieces = explode( '-', $object_type ); |
|
68 | + $object_type = $pieces[0]; |
|
69 | + } |
|
70 | + |
|
71 | + if ( array_key_exists( $object_type, $this->stores ) ) { |
|
72 | + $store = apply_filters( 'getpaid_' . $object_type . '_data_store', $this->stores[ $object_type ] ); |
|
73 | + if ( is_object( $store ) ) { |
|
74 | + $this->current_class_name = get_class( $store ); |
|
75 | + $this->instance = $store; |
|
76 | + } else { |
|
77 | + if ( ! class_exists( $store ) ) { |
|
78 | + throw new Exception( __( 'Data store class does not exist.', 'invoicing' ) ); |
|
79 | + } |
|
80 | + $this->current_class_name = $store; |
|
81 | + $this->instance = new $store(); |
|
82 | + } |
|
83 | + } else { |
|
84 | + throw new Exception( __( 'Invalid data store.', 'invoicing' ) ); |
|
85 | + } |
|
86 | + } |
|
87 | + |
|
88 | + /** |
|
89 | + * Only store the object type to avoid serializing the data store instance. |
|
90 | + * |
|
91 | + * @return array |
|
92 | + */ |
|
93 | + public function __sleep() { |
|
94 | + return array( 'object_type' ); |
|
95 | + } |
|
96 | + |
|
97 | + /** |
|
98 | + * Re-run the constructor with the object type. |
|
99 | + * |
|
100 | + * @throws Exception When validation fails. |
|
101 | + */ |
|
102 | + public function __wakeup() { |
|
103 | + $this->__construct( $this->object_type ); |
|
104 | + } |
|
105 | + |
|
106 | + /** |
|
107 | + * Loads a data store. |
|
108 | + * |
|
109 | + * @param string $object_type Name of object. |
|
110 | + * |
|
111 | + * @since 1.0.19 |
|
112 | + * @throws Exception When validation fails. |
|
113 | + * @return GetPaid_Data_Store |
|
114 | + */ |
|
115 | + public static function load( $object_type ) { |
|
116 | + return new GetPaid_Data_Store( $object_type ); |
|
117 | + } |
|
118 | + |
|
119 | + /** |
|
120 | + * Returns the class name of the current data store. |
|
121 | + * |
|
122 | + * @since 1.0.19 |
|
123 | + * @return string |
|
124 | + */ |
|
125 | + public function get_current_class_name() { |
|
126 | + return $this->current_class_name; |
|
127 | + } |
|
128 | + |
|
129 | + /** |
|
130 | + * Returns the object type of the current data store. |
|
131 | + * |
|
132 | + * @since 1.0.19 |
|
133 | + * @return string |
|
134 | + */ |
|
135 | + public function get_object_type() { |
|
136 | + return $this->object_type; |
|
137 | + } |
|
138 | + |
|
139 | + /** |
|
140 | + * Reads an object from the data store. |
|
141 | + * |
|
142 | + * @since 1.0.19 |
|
143 | + * @param GetPaid_Data $data GetPaid data instance. |
|
144 | + */ |
|
145 | + public function read( &$data ) { |
|
146 | + $this->instance->read( $data ); |
|
147 | + } |
|
148 | + |
|
149 | + /** |
|
150 | + * Create an object in the data store. |
|
151 | + * |
|
152 | + * @since 1.0.19 |
|
153 | + * @param GetPaid_Data $data GetPaid data instance. |
|
154 | + */ |
|
155 | + public function create( &$data ) { |
|
156 | + $this->instance->create( $data ); |
|
157 | + } |
|
158 | + |
|
159 | + /** |
|
160 | + * Update an object in the data store. |
|
161 | + * |
|
162 | + * @since 1.0.19 |
|
163 | + * @param GetPaid_Data $data GetPaid data instance. |
|
164 | + */ |
|
165 | + public function update( &$data ) { |
|
166 | + $this->instance->update( $data ); |
|
167 | + } |
|
168 | + |
|
169 | + /** |
|
170 | + * Delete an object from the data store. |
|
171 | + * |
|
172 | + * @since 1.0.19 |
|
173 | + * @param GetPaid_Data $data GetPaid data instance. |
|
174 | + * @param array $args Array of args to pass to the delete method. |
|
175 | + */ |
|
176 | + public function delete( &$data, $args = array() ) { |
|
177 | + $this->instance->delete( $data, $args ); |
|
178 | + } |
|
179 | + |
|
180 | + /** |
|
181 | + * Data stores can define additional function. This passes |
|
182 | + * through to the instance if that function exists. |
|
183 | + * |
|
184 | + * @since 1.0.19 |
|
185 | + * @param string $method Method. |
|
186 | + * @return mixed |
|
187 | + */ |
|
188 | + public function __call( $method, $parameters ) { |
|
189 | + if ( is_callable( array( $this->instance, $method ) ) ) { |
|
190 | + $object = array_shift( $parameters ); |
|
191 | + $parameters = array_merge( array( &$object ), $parameters ); |
|
192 | + return call_user_func_array( array( $this->instance, $method ), $parameters ); |
|
193 | + } |
|
194 | + } |
|
195 | 195 | |
196 | 196 | } |
@@ -7,16 +7,16 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -if ( empty( $text ) ) { |
|
12 | +if (empty($text)) { |
|
13 | 13 | return; |
14 | 14 | } |
15 | 15 | |
16 | 16 | echo aui()->alert( |
17 | 17 | array( |
18 | - 'content' => wp_kses_post( $text ), |
|
19 | - 'dismissible' => ! empty( $dismissible ), |
|
20 | - 'type' => empty( $class ) ? 'info' : str_replace( 'alert-', '', $class ), |
|
18 | + 'content' => wp_kses_post($text), |
|
19 | + 'dismissible' => !empty($dismissible), |
|
20 | + 'type' => empty($class) ? 'info' : str_replace('alert-', '', $class), |
|
21 | 21 | ) |
22 | 22 | ); |
@@ -7,6 +7,6 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | ?> |
12 | 12 | <hr class="featurette-divider" /> |
13 | 13 | \ No newline at end of file |
@@ -8,7 +8,7 @@ discard block |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
11 | - exit; // Exit if accessed directly |
|
11 | + exit; // Exit if accessed directly |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
17 | 17 | class GetPaid_Meta_Box_Payment_Form_Info { |
18 | 18 | |
19 | 19 | /** |
20 | - * Output the metabox. |
|
21 | - * |
|
22 | - * @param WP_Post $post |
|
23 | - */ |
|
20 | + * Output the metabox. |
|
21 | + * |
|
22 | + * @param WP_Post $post |
|
23 | + */ |
|
24 | 24 | public static function output( $post ) { |
25 | 25 | |
26 | 26 | // Prepare the form. |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,54 +21,54 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the form. |
27 | - $form = new GetPaid_Payment_Form( $post ); |
|
27 | + $form = new GetPaid_Payment_Form($post); |
|
28 | 28 | |
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <div class='bsui' style='padding-top: 10px;'> |
32 | - <?php do_action( 'wpinv_payment_form_before_info_metabox', $form ); ?> |
|
32 | + <?php do_action('wpinv_payment_form_before_info_metabox', $form); ?> |
|
33 | 33 | |
34 | 34 | <div class="wpinv_payment_form_shortcode form-group row"> |
35 | 35 | <label for="wpinv_payment_form_shortcode" class="col-sm-12 col-form-label"> |
36 | - <?php _e( 'Payment Form Shortcode', 'invoicing' );?> |
|
37 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a payment form', 'invoicing' ); ?>"></span> |
|
36 | + <?php _e('Payment Form Shortcode', 'invoicing'); ?> |
|
37 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a payment form', 'invoicing'); ?>"></span> |
|
38 | 38 | </label> |
39 | 39 | |
40 | 40 | <div class="col-sm-12"> |
41 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?>]" style="width: 100%;" /> |
|
41 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?>]" style="width: 100%;" /> |
|
42 | 42 | </div> |
43 | 43 | </div> |
44 | 44 | |
45 | 45 | <div class="wpinv_payment_form_buy_shortcode form-group row"> |
46 | 46 | <label for="wpinv_payment_form_buy_shortcode" class="col-sm-12 col-form-label"> |
47 | - <?php _e( 'Payment Button Shortcode', 'invoicing' );?> |
|
48 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a buy now button', 'invoicing' ); ?>"></span> |
|
47 | + <?php _e('Payment Button Shortcode', 'invoicing'); ?> |
|
48 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a buy now button', 'invoicing'); ?>"></span> |
|
49 | 49 | </label> |
50 | 50 | |
51 | 51 | <div class="col-sm-12"> |
52 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?> button='Buy Now']" style="width: 100%;" /> |
|
52 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?> button='Buy Now']" style="width: 100%;" /> |
|
53 | 53 | <small class="form-text text-muted"> |
54 | - <?php _e( 'Or use the following URL in a link:', 'invoicing' );?> |
|
55 | - <code>#getpaid-form-<?php echo intval( $form->get_id() ); ?></code> |
|
54 | + <?php _e('Or use the following URL in a link:', 'invoicing'); ?> |
|
55 | + <code>#getpaid-form-<?php echo intval($form->get_id()); ?></code> |
|
56 | 56 | </small> |
57 | 57 | </div> |
58 | 58 | </div> |
59 | 59 | |
60 | 60 | <div class="wpinv_item_buy_url form-group row"> |
61 | 61 | <label for="wpinv_item_buy_url" class="col-sm-12 col-form-label"> |
62 | - <?php _e( 'Direct Payment URL', 'invoicing' );?> |
|
63 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'You can use this in an iFrame to embed the payment form on another website', 'invoicing' ); ?>"></span> |
|
62 | + <?php _e('Direct Payment URL', 'invoicing'); ?> |
|
63 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('You can use this in an iFrame to embed the payment form on another website', 'invoicing'); ?>"></span> |
|
64 | 64 | </label> |
65 | 65 | |
66 | 66 | <div class="col-sm-12"> |
67 | - <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url( getpaid_embed_url( $form->get_id(), false ) ); ?>" style="width: 100%;" readonly/> |
|
67 | + <input onClick="this.select()" type="text" id="wpinv_item_buy_url" value="<?php echo esc_url(getpaid_embed_url($form->get_id(), false)); ?>" style="width: 100%;" readonly/> |
|
68 | 68 | </div> |
69 | 69 | </div> |
70 | 70 | |
71 | - <?php do_action( 'wpinv_payment_form_info_metabox', $form ); ?> |
|
71 | + <?php do_action('wpinv_payment_form_info_metabox', $form); ?> |
|
72 | 72 | </div> |
73 | 73 | <?php |
74 | 74 |