@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | -if ( ! current_user_can( 'view_give_payments' ) ) { |
|
17 | +if ( ! current_user_can('view_give_payments')) { |
|
18 | 18 | wp_die( |
19 | - __( 'Sorry, you are not allowed to access this page.', 'give' ), __( 'Error', 'give' ), array( |
|
19 | + __('Sorry, you are not allowed to access this page.', 'give'), __('Error', 'give'), array( |
|
20 | 20 | 'response' => 403, |
21 | 21 | ) |
22 | 22 | ); |
@@ -28,27 +28,27 @@ discard block |
||
28 | 28 | * @since 1.0 |
29 | 29 | * @return void |
30 | 30 | */ |
31 | -if ( ! isset( $_GET['id'] ) || ! is_numeric( $_GET['id'] ) ) { |
|
32 | - wp_die( __( 'Donation ID not supplied. Please try again.', 'give' ), __( 'Error', 'give' ), array( 'response' => 400 ) ); |
|
31 | +if ( ! isset($_GET['id']) || ! is_numeric($_GET['id'])) { |
|
32 | + wp_die(__('Donation ID not supplied. Please try again.', 'give'), __('Error', 'give'), array('response' => 400)); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | // Setup the variables |
36 | -$payment_id = absint( $_GET['id'] ); |
|
37 | -$payment = new Give_Payment( $payment_id ); |
|
36 | +$payment_id = absint($_GET['id']); |
|
37 | +$payment = new Give_Payment($payment_id); |
|
38 | 38 | |
39 | 39 | // Sanity check... fail if donation ID is invalid |
40 | 40 | $payment_exists = $payment->ID; |
41 | -if ( empty( $payment_exists ) ) { |
|
42 | - wp_die( __( 'The specified ID does not belong to a donation. Please try again.', 'give' ), __( 'Error', 'give' ), array( 'response' => 400 ) ); |
|
41 | +if (empty($payment_exists)) { |
|
42 | + wp_die(__('The specified ID does not belong to a donation. Please try again.', 'give'), __('Error', 'give'), array('response' => 400)); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | $number = $payment->number; |
46 | 46 | $payment_meta = $payment->get_meta(); |
47 | -$transaction_id = esc_attr( $payment->transaction_id ); |
|
47 | +$transaction_id = esc_attr($payment->transaction_id); |
|
48 | 48 | $user_id = $payment->user_id; |
49 | 49 | $donor_id = $payment->customer_id; |
50 | -$payment_date = strtotime( $payment->date ); |
|
51 | -$user_info = give_get_payment_meta_user_info( $payment_id ); |
|
50 | +$payment_date = strtotime($payment->date); |
|
51 | +$user_info = give_get_payment_meta_user_info($payment_id); |
|
52 | 52 | $address = $payment->address; |
53 | 53 | $currency_code = $payment->currency; |
54 | 54 | $gateway = $payment->gateway; |
@@ -61,13 +61,13 @@ discard block |
||
61 | 61 | <?php |
62 | 62 | printf( |
63 | 63 | /* translators: %s: donation number */ |
64 | - esc_html__( 'Donation %s', 'give' ), |
|
64 | + esc_html__('Donation %s', 'give'), |
|
65 | 65 | $number |
66 | 66 | ); |
67 | - if ( $payment_mode == 'test' ) { |
|
67 | + if ($payment_mode == 'test') { |
|
68 | 68 | echo Give()->tooltips->render_span(array( |
69 | - 'label' => __( 'This donation was made in test mode.', 'give' ), |
|
70 | - 'tag_content' => __( 'Test Donation', 'give' ), |
|
69 | + 'label' => __('This donation was made in test mode.', 'give'), |
|
70 | + 'tag_content' => __('Test Donation', 'give'), |
|
71 | 71 | 'position'=> 'right', |
72 | 72 | 'attributes' => array( |
73 | 73 | 'id' => 'test-payment-label', |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @param int $payment_id Payment id. |
88 | 88 | */ |
89 | - do_action( 'give_view_order_details_before', $payment_id ); |
|
89 | + do_action('give_view_order_details_before', $payment_id); |
|
90 | 90 | ?> |
91 | 91 | |
92 | 92 | <hr class="wp-header-end"> |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @param int $payment_id Payment id. |
102 | 102 | */ |
103 | - do_action( 'give_view_order_details_form_top', $payment_id ); |
|
103 | + do_action('give_view_order_details_form_top', $payment_id); |
|
104 | 104 | ?> |
105 | 105 | <div id="poststuff"> |
106 | 106 | <div id="give-dashboard-widgets-wrap"> |
@@ -116,12 +116,12 @@ discard block |
||
116 | 116 | * |
117 | 117 | * @param int $payment_id Payment id. |
118 | 118 | */ |
119 | - do_action( 'give_view_order_details_sidebar_before', $payment_id ); |
|
119 | + do_action('give_view_order_details_sidebar_before', $payment_id); |
|
120 | 120 | ?> |
121 | 121 | |
122 | 122 | <div id="give-order-update" class="postbox give-order-data"> |
123 | 123 | |
124 | - <h3 class="hndle"><?php _e( 'Update Donation', 'give' ); ?></h3> |
|
124 | + <h3 class="hndle"><?php _e('Update Donation', 'give'); ?></h3> |
|
125 | 125 | |
126 | 126 | <div class="inside"> |
127 | 127 | <div class="give-admin-box"> |
@@ -134,33 +134,33 @@ discard block |
||
134 | 134 | * |
135 | 135 | * @param int $payment_id Payment id. |
136 | 136 | */ |
137 | - do_action( 'give_view_order_details_totals_before', $payment_id ); |
|
137 | + do_action('give_view_order_details_totals_before', $payment_id); |
|
138 | 138 | ?> |
139 | 139 | |
140 | 140 | <div class="give-admin-box-inside"> |
141 | 141 | <p> |
142 | - <label for="give-payment-status" class="strong"><?php _e( 'Status:', 'give' ); ?></label> |
|
142 | + <label for="give-payment-status" class="strong"><?php _e('Status:', 'give'); ?></label> |
|
143 | 143 | <select id="give-payment-status" name="give-payment-status" class="medium-text"> |
144 | - <?php foreach ( give_get_payment_statuses() as $key => $status ) : ?> |
|
145 | - <option value="<?php echo esc_attr( $key ); ?>"<?php selected( $payment->status, $key, true ); ?>><?php echo esc_html( $status ); ?></option> |
|
144 | + <?php foreach (give_get_payment_statuses() as $key => $status) : ?> |
|
145 | + <option value="<?php echo esc_attr($key); ?>"<?php selected($payment->status, $key, true); ?>><?php echo esc_html($status); ?></option> |
|
146 | 146 | <?php endforeach; ?> |
147 | 147 | </select> |
148 | - <span class="give-donation-status status-<?php echo sanitize_title( $payment->status ); ?>"><span class="give-donation-status-icon"></span></span> |
|
148 | + <span class="give-donation-status status-<?php echo sanitize_title($payment->status); ?>"><span class="give-donation-status-icon"></span></span> |
|
149 | 149 | </p> |
150 | 150 | </div> |
151 | 151 | |
152 | 152 | <div class="give-admin-box-inside"> |
153 | 153 | <p> |
154 | - <label for="give-payment-date" class="strong"><?php _e( 'Date:', 'give' ); ?></label> |
|
155 | - <input type="text" id="give-payment-date" name="give-payment-date" value="<?php echo esc_attr( date( 'm/d/Y', $payment_date ) ); ?>" class="medium-text give_datepicker"/> |
|
154 | + <label for="give-payment-date" class="strong"><?php _e('Date:', 'give'); ?></label> |
|
155 | + <input type="text" id="give-payment-date" name="give-payment-date" value="<?php echo esc_attr(date('m/d/Y', $payment_date)); ?>" class="medium-text give_datepicker"/> |
|
156 | 156 | </p> |
157 | 157 | </div> |
158 | 158 | |
159 | 159 | <div class="give-admin-box-inside"> |
160 | 160 | <p> |
161 | - <label for="give-payment-time-hour" class="strong"><?php _e( 'Time:', 'give' ); ?></label> |
|
162 | - <input type="number" step="1" max="24" id="give-payment-time-hour" name="give-payment-time-hour" value="<?php echo esc_attr( date_i18n( 'H', $payment_date ) ); ?>" class="small-text give-payment-time-hour"/> : |
|
163 | - <input type="number" step="1" max="59" id="give-payment-time-min" name="give-payment-time-min" value="<?php echo esc_attr( date( 'i', $payment_date ) ); ?>" class="small-text give-payment-time-min"/> |
|
161 | + <label for="give-payment-time-hour" class="strong"><?php _e('Time:', 'give'); ?></label> |
|
162 | + <input type="number" step="1" max="24" id="give-payment-time-hour" name="give-payment-time-hour" value="<?php echo esc_attr(date_i18n('H', $payment_date)); ?>" class="small-text give-payment-time-hour"/> : |
|
163 | + <input type="number" step="1" max="59" id="give-payment-time-min" name="give-payment-time-min" value="<?php echo esc_attr(date('i', $payment_date)); ?>" class="small-text give-payment-time-min"/> |
|
164 | 164 | </p> |
165 | 165 | </div> |
166 | 166 | |
@@ -174,14 +174,14 @@ discard block |
||
174 | 174 | * |
175 | 175 | * @param int $payment_id Payment id. |
176 | 176 | */ |
177 | - do_action( 'give_view_order_details_update_inner', $payment_id ); |
|
177 | + do_action('give_view_order_details_update_inner', $payment_id); |
|
178 | 178 | ?> |
179 | 179 | |
180 | 180 | <div class="give-order-payment give-admin-box-inside"> |
181 | 181 | <p> |
182 | - <label for="give-payment-total" class="strong"><?php _e( 'Total Donation:', 'give' ); ?></label> |
|
183 | - <?php echo give_currency_symbol( $payment->currency ); ?> |
|
184 | - <input id="give-payment-total" name="give-payment-total" type="text" class="small-text give-price-field" value="<?php echo esc_attr( give_format_decimal( give_donation_amount( $payment_id ), false, false ) ); ?>"/> |
|
182 | + <label for="give-payment-total" class="strong"><?php _e('Total Donation:', 'give'); ?></label> |
|
183 | + <?php echo give_currency_symbol($payment->currency); ?> |
|
184 | + <input id="give-payment-total" name="give-payment-total" type="text" class="small-text give-price-field" value="<?php echo esc_attr(give_format_decimal(give_donation_amount($payment_id), false, false)); ?>"/> |
|
185 | 185 | </p> |
186 | 186 | </div> |
187 | 187 | |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | * |
194 | 194 | * @param int $payment_id Payment id. |
195 | 195 | */ |
196 | - do_action( 'give_view_order_details_totals_after', $payment_id ); |
|
196 | + do_action('give_view_order_details_totals_after', $payment_id); |
|
197 | 197 | ?> |
198 | 198 | |
199 | 199 | </div> |
@@ -211,14 +211,14 @@ discard block |
||
211 | 211 | * |
212 | 212 | * @param int $payment_id Payment id. |
213 | 213 | */ |
214 | - do_action( 'give_view_order_details_update_before', $payment_id ); |
|
214 | + do_action('give_view_order_details_update_before', $payment_id); |
|
215 | 215 | ?> |
216 | 216 | |
217 | 217 | <div id="major-publishing-actions"> |
218 | 218 | <div id="publishing-action"> |
219 | - <input type="submit" class="button button-primary right" value="<?php esc_attr_e( 'Save Donation', 'give' ); ?>"/> |
|
219 | + <input type="submit" class="button button-primary right" value="<?php esc_attr_e('Save Donation', 'give'); ?>"/> |
|
220 | 220 | <?php |
221 | - if ( give_is_payment_complete( $payment_id ) ) { |
|
221 | + if (give_is_payment_complete($payment_id)) { |
|
222 | 222 | echo sprintf( |
223 | 223 | '<a href="%1$s" id="give-resend-receipt" class="button-secondary right">%2$s</a>', |
224 | 224 | esc_url( |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | ) |
230 | 230 | ) |
231 | 231 | ), |
232 | - __( 'Resend Receipt', 'give' ) |
|
232 | + __('Resend Receipt', 'give') |
|
233 | 233 | ); |
234 | 234 | } |
235 | 235 | ?> |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | * |
246 | 246 | * @param int $payment_id Payment id. |
247 | 247 | */ |
248 | - do_action( 'give_view_order_details_update_after', $payment_id ); |
|
248 | + do_action('give_view_order_details_update_after', $payment_id); |
|
249 | 249 | ?> |
250 | 250 | |
251 | 251 | </div> |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | |
257 | 257 | <div id="give-order-details" class="postbox give-order-data"> |
258 | 258 | |
259 | - <h3 class="hndle"><?php _e( 'Donation Meta', 'give' ); ?></h3> |
|
259 | + <h3 class="hndle"><?php _e('Donation Meta', 'give'); ?></h3> |
|
260 | 260 | |
261 | 261 | <div class="inside"> |
262 | 262 | <div class="give-admin-box"> |
@@ -269,45 +269,45 @@ discard block |
||
269 | 269 | * |
270 | 270 | * @param int $payment_id Payment id. |
271 | 271 | */ |
272 | - do_action( 'give_view_order_details_payment_meta_before', $payment_id ); |
|
272 | + do_action('give_view_order_details_payment_meta_before', $payment_id); |
|
273 | 273 | |
274 | - $gateway = give_get_payment_gateway( $payment_id ); |
|
275 | - if ( $gateway ) : |
|
274 | + $gateway = give_get_payment_gateway($payment_id); |
|
275 | + if ($gateway) : |
|
276 | 276 | ?> |
277 | 277 | <div class="give-order-gateway give-admin-box-inside"> |
278 | 278 | <p> |
279 | - <strong><?php _e( 'Gateway:', 'give' ); ?></strong> |
|
280 | - <?php echo give_get_gateway_admin_label( $gateway ); ?> |
|
279 | + <strong><?php _e('Gateway:', 'give'); ?></strong> |
|
280 | + <?php echo give_get_gateway_admin_label($gateway); ?> |
|
281 | 281 | </p> |
282 | 282 | </div> |
283 | 283 | <?php endif; ?> |
284 | 284 | |
285 | 285 | <div class="give-order-payment-key give-admin-box-inside"> |
286 | 286 | <p> |
287 | - <strong><?php _e( 'Key:', 'give' ); ?></strong> |
|
288 | - <?php echo give_get_payment_key( $payment_id ); ?> |
|
287 | + <strong><?php _e('Key:', 'give'); ?></strong> |
|
288 | + <?php echo give_get_payment_key($payment_id); ?> |
|
289 | 289 | </p> |
290 | 290 | </div> |
291 | 291 | |
292 | 292 | <div class="give-order-ip give-admin-box-inside"> |
293 | 293 | <p> |
294 | - <strong><?php _e( 'IP:', 'give' ); ?></strong> |
|
295 | - <?php echo esc_html( give_get_payment_user_ip( $payment_id ) ); ?> |
|
294 | + <strong><?php _e('IP:', 'give'); ?></strong> |
|
295 | + <?php echo esc_html(give_get_payment_user_ip($payment_id)); ?> |
|
296 | 296 | </p> |
297 | 297 | </div> |
298 | 298 | |
299 | - <?php if ( $transaction_id ) : ?> |
|
299 | + <?php if ($transaction_id) : ?> |
|
300 | 300 | <div class="give-order-tx-id give-admin-box-inside"> |
301 | 301 | <p> |
302 | - <strong><?php _e( 'Donation ID:', 'give' ); ?></strong> |
|
303 | - <?php echo apply_filters( "give_payment_details_transaction_id-{$gateway}", $transaction_id, $payment_id ); ?> |
|
302 | + <strong><?php _e('Donation ID:', 'give'); ?></strong> |
|
303 | + <?php echo apply_filters("give_payment_details_transaction_id-{$gateway}", $transaction_id, $payment_id); ?> |
|
304 | 304 | </p> |
305 | 305 | </div> |
306 | 306 | <?php endif; ?> |
307 | 307 | |
308 | 308 | <div class="give-admin-box-inside"> |
309 | - <p><?php $purchase_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&donor=' . absint( give_get_payment_donor_id( $payment_id ) ) ); ?> |
|
310 | - <a href="<?php echo $purchase_url; ?>"><?php _e( 'View all donations for this donor »', 'give' ); ?></a> |
|
309 | + <p><?php $purchase_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history&donor='.absint(give_get_payment_donor_id($payment_id))); ?> |
|
310 | + <a href="<?php echo $purchase_url; ?>"><?php _e('View all donations for this donor »', 'give'); ?></a> |
|
311 | 311 | </p> |
312 | 312 | </div> |
313 | 313 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * |
320 | 320 | * @param int $payment_id Payment id. |
321 | 321 | */ |
322 | - do_action( 'give_view_order_details_payment_meta_after', $payment_id ); |
|
322 | + do_action('give_view_order_details_payment_meta_after', $payment_id); |
|
323 | 323 | ?> |
324 | 324 | |
325 | 325 | </div> |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | * |
340 | 340 | * @param int $payment_id Payment id. |
341 | 341 | */ |
342 | - do_action( 'give_view_order_details_sidebar_after', $payment_id ); |
|
342 | + do_action('give_view_order_details_sidebar_after', $payment_id); |
|
343 | 343 | ?> |
344 | 344 | |
345 | 345 | </div> |
@@ -359,31 +359,31 @@ discard block |
||
359 | 359 | * |
360 | 360 | * @param int $payment_id Payment id. |
361 | 361 | */ |
362 | - do_action( 'give_view_order_details_main_before', $payment_id ); |
|
362 | + do_action('give_view_order_details_main_before', $payment_id); |
|
363 | 363 | ?> |
364 | 364 | |
365 | 365 | <?php $column_count = 'columns-3'; ?> |
366 | 366 | <div id="give-donation-overview" class="postbox <?php echo $column_count; ?>"> |
367 | - <h3 class="hndle"><?php _e( 'Donation Information', 'give' ); ?></h3> |
|
367 | + <h3 class="hndle"><?php _e('Donation Information', 'give'); ?></h3> |
|
368 | 368 | |
369 | 369 | <div class="inside"> |
370 | 370 | |
371 | 371 | <div class="column-container"> |
372 | 372 | <div class="column"> |
373 | 373 | <p> |
374 | - <strong><?php _e( 'Donation Form ID:', 'give' ); ?></strong><br> |
|
374 | + <strong><?php _e('Donation Form ID:', 'give'); ?></strong><br> |
|
375 | 375 | <?php |
376 | - if ( $payment_meta['form_id'] ) : |
|
376 | + if ($payment_meta['form_id']) : |
|
377 | 377 | printf( |
378 | 378 | '<a href="%1$s">#%2$s</a>', |
379 | - admin_url( 'post.php?action=edit&post=' . $payment_meta['form_id'] ), |
|
379 | + admin_url('post.php?action=edit&post='.$payment_meta['form_id']), |
|
380 | 380 | $payment_meta['form_id'] |
381 | 381 | ); |
382 | 382 | endif; |
383 | 383 | ?> |
384 | 384 | </p> |
385 | 385 | <p> |
386 | - <strong><?php esc_html_e( 'Donation Form Title:', 'give' ); ?></strong><br> |
|
386 | + <strong><?php esc_html_e('Donation Form Title:', 'give'); ?></strong><br> |
|
387 | 387 | <?php |
388 | 388 | echo Give()->html->forms_dropdown( |
389 | 389 | array( |
@@ -399,21 +399,21 @@ discard block |
||
399 | 399 | </div> |
400 | 400 | <div class="column"> |
401 | 401 | <p> |
402 | - <strong><?php _e( 'Donation Date:', 'give' ); ?></strong><br> |
|
403 | - <?php echo date_i18n( give_date_format(), $payment_date ); ?> |
|
402 | + <strong><?php _e('Donation Date:', 'give'); ?></strong><br> |
|
403 | + <?php echo date_i18n(give_date_format(), $payment_date); ?> |
|
404 | 404 | </p> |
405 | 405 | <p> |
406 | - <strong><?php _e( 'Donation Level:', 'give' ); ?></strong><br> |
|
406 | + <strong><?php _e('Donation Level:', 'give'); ?></strong><br> |
|
407 | 407 | <span class="give-donation-level"> |
408 | 408 | <?php |
409 | - $var_prices = give_has_variable_prices( $payment_meta['form_id'] ); |
|
410 | - if ( empty( $var_prices ) ) { |
|
411 | - _e( 'n/a', 'give' ); |
|
409 | + $var_prices = give_has_variable_prices($payment_meta['form_id']); |
|
410 | + if (empty($var_prices)) { |
|
411 | + _e('n/a', 'give'); |
|
412 | 412 | } else { |
413 | 413 | $prices_atts = array(); |
414 | - if ( $variable_prices = give_get_variable_prices( $payment_meta['form_id'] ) ) { |
|
415 | - foreach ( $variable_prices as $variable_price ) { |
|
416 | - $prices_atts[ $variable_price['_give_id']['level_id'] ] = give_format_amount( $variable_price['_give_amount'], array( 'sanitize' => false ) ); |
|
414 | + if ($variable_prices = give_get_variable_prices($payment_meta['form_id'])) { |
|
415 | + foreach ($variable_prices as $variable_price) { |
|
416 | + $prices_atts[$variable_price['_give_id']['level_id']] = give_format_amount($variable_price['_give_amount'], array('sanitize' => false)); |
|
417 | 417 | } |
418 | 418 | } |
419 | 419 | // Variable price dropdown options. |
@@ -422,12 +422,12 @@ discard block |
||
422 | 422 | 'name' => 'give-variable-price', |
423 | 423 | 'chosen' => true, |
424 | 424 | 'show_option_all' => '', |
425 | - 'show_option_none' => ( '' === get_post_meta( $payment_id, '_give_payment_price_id', true ) ? __( 'None', 'give' ) : '' ), |
|
426 | - 'select_atts' => 'data-prices=' . esc_attr( wp_json_encode( $prices_atts ) ), |
|
425 | + 'show_option_none' => ('' === get_post_meta($payment_id, '_give_payment_price_id', true) ? __('None', 'give') : ''), |
|
426 | + 'select_atts' => 'data-prices='.esc_attr(wp_json_encode($prices_atts)), |
|
427 | 427 | 'selected' => $payment_meta['price_id'], |
428 | 428 | ); |
429 | 429 | // Render variable prices select tag html. |
430 | - give_get_form_variable_price_dropdown( $variable_price_dropdown_option, true ); |
|
430 | + give_get_form_variable_price_dropdown($variable_price_dropdown_option, true); |
|
431 | 431 | } |
432 | 432 | ?> |
433 | 433 | </span> |
@@ -435,8 +435,8 @@ discard block |
||
435 | 435 | </div> |
436 | 436 | <div class="column"> |
437 | 437 | <p> |
438 | - <strong><?php esc_html_e( 'Total Donation:', 'give' ); ?></strong><br> |
|
439 | - <?php echo give_donation_amount( $payment, true ); ?> |
|
438 | + <strong><?php esc_html_e('Total Donation:', 'give'); ?></strong><br> |
|
439 | + <?php echo give_donation_amount($payment, true); ?> |
|
440 | 440 | </p> |
441 | 441 | <p> |
442 | 442 | <?php |
@@ -449,7 +449,7 @@ discard block |
||
449 | 449 | * |
450 | 450 | * @param int $payment_id Payment id. |
451 | 451 | */ |
452 | - do_action( 'give_donation_details_thead_before', $payment_id ); |
|
452 | + do_action('give_donation_details_thead_before', $payment_id); |
|
453 | 453 | |
454 | 454 | |
455 | 455 | /** |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | * |
462 | 462 | * @param int $payment_id Payment id. |
463 | 463 | */ |
464 | - do_action( 'give_donation_details_thead_after', $payment_id ); |
|
464 | + do_action('give_donation_details_thead_after', $payment_id); |
|
465 | 465 | |
466 | 466 | /** |
467 | 467 | * Fires in order details page, in the donation-information metabox, before the body elements. |
@@ -472,7 +472,7 @@ discard block |
||
472 | 472 | * |
473 | 473 | * @param int $payment_id Payment id. |
474 | 474 | */ |
475 | - do_action( 'give_donation_details_tbody_before', $payment_id ); |
|
475 | + do_action('give_donation_details_tbody_before', $payment_id); |
|
476 | 476 | |
477 | 477 | /** |
478 | 478 | * Fires in order details page, in the donation-information metabox, after the body elements. |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | * |
484 | 484 | * @param int $payment_id Payment id. |
485 | 485 | */ |
486 | - do_action( 'give_donation_details_tbody_after', $payment_id ); |
|
486 | + do_action('give_donation_details_tbody_after', $payment_id); |
|
487 | 487 | ?> |
488 | 488 | </p> |
489 | 489 | </div> |
@@ -503,58 +503,58 @@ discard block |
||
503 | 503 | * |
504 | 504 | * @param int $payment_id Payment id. |
505 | 505 | */ |
506 | - do_action( 'give_view_order_details_files_after', $payment_id ); |
|
506 | + do_action('give_view_order_details_files_after', $payment_id); |
|
507 | 507 | ?> |
508 | 508 | |
509 | 509 | <div id="give-donor-details" class="postbox"> |
510 | - <h3 class="hndle"><?php _e( 'Donor Details', 'give' ); ?></h3> |
|
510 | + <h3 class="hndle"><?php _e('Donor Details', 'give'); ?></h3> |
|
511 | 511 | |
512 | 512 | <div class="inside"> |
513 | 513 | |
514 | - <?php $donor = new Give_Donor( $donor_id ); ?> |
|
514 | + <?php $donor = new Give_Donor($donor_id); ?> |
|
515 | 515 | |
516 | 516 | <div class="column-container donor-info"> |
517 | 517 | <div class="column"> |
518 | 518 | <p> |
519 | - <strong><?php _e( 'Donor ID:', 'give' ); ?></strong><br> |
|
519 | + <strong><?php _e('Donor ID:', 'give'); ?></strong><br> |
|
520 | 520 | <?php |
521 | - if ( ! empty( $donor->id ) ) { |
|
521 | + if ( ! empty($donor->id)) { |
|
522 | 522 | printf( |
523 | 523 | '<a href="%1$s">#%2$s</a>', |
524 | - admin_url( 'edit.php?post_type=give_forms&page=give-donors&view=overview&id=' . $donor->id ), |
|
524 | + admin_url('edit.php?post_type=give_forms&page=give-donors&view=overview&id='.$donor->id), |
|
525 | 525 | $donor->id |
526 | 526 | ); |
527 | 527 | } |
528 | 528 | ?> |
529 | 529 | </p> |
530 | 530 | <p> |
531 | - <strong><?php _e( 'Donor Since:', 'give' ); ?></strong><br> |
|
532 | - <?php echo date_i18n( give_date_format(), strtotime( $donor->date_created ) ) ?> |
|
531 | + <strong><?php _e('Donor Since:', 'give'); ?></strong><br> |
|
532 | + <?php echo date_i18n(give_date_format(), strtotime($donor->date_created)) ?> |
|
533 | 533 | </p> |
534 | 534 | </div> |
535 | 535 | <div class="column"> |
536 | 536 | <p> |
537 | - <strong><?php _e( 'Donor Name:', 'give' ); ?></strong><br> |
|
537 | + <strong><?php _e('Donor Name:', 'give'); ?></strong><br> |
|
538 | 538 | <?php |
539 | - $donor_billing_name = give_get_donor_name_by( $payment_id, 'donation' ); |
|
540 | - $donor_name = give_get_donor_name_by( $donor_id, 'donor' ); |
|
539 | + $donor_billing_name = give_get_donor_name_by($payment_id, 'donation'); |
|
540 | + $donor_name = give_get_donor_name_by($donor_id, 'donor'); |
|
541 | 541 | |
542 | 542 | // Check whether the donor name and WP_User name is same or not. |
543 | - if ( sanitize_title( $donor_billing_name ) != sanitize_title( $donor_name ) ) { |
|
544 | - echo $donor_billing_name . ' (<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$donor_id" ) ) . '">' . $donor_name . '</a>)'; |
|
543 | + if (sanitize_title($donor_billing_name) != sanitize_title($donor_name)) { |
|
544 | + echo $donor_billing_name.' (<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-donors&view=overview&id=$donor_id")).'">'.$donor_name.'</a>)'; |
|
545 | 545 | } else { |
546 | 546 | echo $donor_name; |
547 | 547 | } |
548 | 548 | ?> |
549 | 549 | </p> |
550 | 550 | <p> |
551 | - <strong><?php _e( 'Donor Email:', 'give' ); ?></strong><br> |
|
551 | + <strong><?php _e('Donor Email:', 'give'); ?></strong><br> |
|
552 | 552 | <?php echo $donor->email; ?> |
553 | 553 | </p> |
554 | 554 | </div> |
555 | 555 | <div class="column"> |
556 | 556 | <p> |
557 | - <strong><?php _e( 'Change Donor:', 'give' ); ?></strong><br> |
|
557 | + <strong><?php _e('Change Donor:', 'give'); ?></strong><br> |
|
558 | 558 | <?php |
559 | 559 | echo Give()->html->donor_dropdown( |
560 | 560 | array( |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | ?> |
566 | 566 | </p> |
567 | 567 | <p> |
568 | - <a href="#new" class="give-payment-new-donor"><?php _e( 'Create New Donor', 'give' ); ?></a> |
|
568 | + <a href="#new" class="give-payment-new-donor"><?php _e('Create New Donor', 'give'); ?></a> |
|
569 | 569 | </p> |
570 | 570 | </div> |
571 | 571 | </div> |
@@ -573,19 +573,19 @@ discard block |
||
573 | 573 | <div class="column-container new-donor" style="display: none"> |
574 | 574 | <div class="column"> |
575 | 575 | <p> |
576 | - <label for="give-new-donor-first-name"><?php _e( 'New Donor First Name:', 'give' ); ?></label> |
|
576 | + <label for="give-new-donor-first-name"><?php _e('New Donor First Name:', 'give'); ?></label> |
|
577 | 577 | <input id="give-new-donor-first-name" type="text" name="give-new-donor-first-name" value="" class="medium-text"/> |
578 | 578 | </p> |
579 | 579 | </div> |
580 | 580 | <div class="column"> |
581 | 581 | <p> |
582 | - <label for="give-new-donor-last-name"><?php _e( 'New Donor Last Name:', 'give' ); ?></label> |
|
582 | + <label for="give-new-donor-last-name"><?php _e('New Donor Last Name:', 'give'); ?></label> |
|
583 | 583 | <input id="give-new-donor-last-name" type="text" name="give-new-donor-last-name" value="" class="medium-text"/> |
584 | 584 | </p> |
585 | 585 | </div> |
586 | 586 | <div class="column"> |
587 | 587 | <p> |
588 | - <label for="give-new-donor-email"><?php _e( 'New Donor Email:', 'give' ); ?></label> |
|
588 | + <label for="give-new-donor-email"><?php _e('New Donor Email:', 'give'); ?></label> |
|
589 | 589 | <input id="give-new-donor-email" type="email" name="give-new-donor-email" value="" class="medium-text"/> |
590 | 590 | </p> |
591 | 591 | </div> |
@@ -593,9 +593,9 @@ discard block |
||
593 | 593 | <p> |
594 | 594 | <input type="hidden" name="give-current-donor" value="<?php echo $donor->id; ?>"/> |
595 | 595 | <input type="hidden" id="give-new-donor" name="give-new-donor" value="0"/> |
596 | - <a href="#cancel" class="give-payment-new-donor-cancel give-delete"><?php _e( 'Cancel', 'give' ); ?></a> |
|
596 | + <a href="#cancel" class="give-payment-new-donor-cancel give-delete"><?php _e('Cancel', 'give'); ?></a> |
|
597 | 597 | <br> |
598 | - <em><?php _e( 'Click "Save Donation" to create new donor.', 'give' ); ?></em> |
|
598 | + <em><?php _e('Click "Save Donation" to create new donor.', 'give'); ?></em> |
|
599 | 599 | </p> |
600 | 600 | </div> |
601 | 601 | </div> |
@@ -611,7 +611,7 @@ discard block |
||
611 | 611 | * @param array $payment_meta Payment meta. |
612 | 612 | * @param array $user_info User information. |
613 | 613 | */ |
614 | - do_action( 'give_payment_personal_details_list', $payment_meta, $user_info ); |
|
614 | + do_action('give_payment_personal_details_list', $payment_meta, $user_info); |
|
615 | 615 | |
616 | 616 | /** |
617 | 617 | * Fires on the donation details page, in the donor-details metabox. |
@@ -620,7 +620,7 @@ discard block |
||
620 | 620 | * |
621 | 621 | * @param int $payment_id Payment id. |
622 | 622 | */ |
623 | - do_action( 'give_payment_view_details', $payment_id ); |
|
623 | + do_action('give_payment_view_details', $payment_id); |
|
624 | 624 | ?> |
625 | 625 | |
626 | 626 | </div> |
@@ -636,11 +636,11 @@ discard block |
||
636 | 636 | * |
637 | 637 | * @param int $payment_id Payment id. |
638 | 638 | */ |
639 | - do_action( 'give_view_order_details_billing_before', $payment_id ); |
|
639 | + do_action('give_view_order_details_billing_before', $payment_id); |
|
640 | 640 | ?> |
641 | 641 | |
642 | 642 | <div id="give-billing-details" class="postbox"> |
643 | - <h3 class="hndle"><?php _e( 'Billing Address', 'give' ); ?></h3> |
|
643 | + <h3 class="hndle"><?php _e('Billing Address', 'give'); ?></h3> |
|
644 | 644 | |
645 | 645 | <div class="inside"> |
646 | 646 | |
@@ -650,9 +650,9 @@ discard block |
||
650 | 650 | <div class="data column-container"> |
651 | 651 | |
652 | 652 | <?php |
653 | - $address['country'] = ( ! empty( $address['country'] ) ? $address['country'] : give_get_country() ); |
|
653 | + $address['country'] = ( ! empty($address['country']) ? $address['country'] : give_get_country()); |
|
654 | 654 | |
655 | - $address['state'] = ( ! empty( $address['state'] ) ? $address['state'] : '' ); |
|
655 | + $address['state'] = ( ! empty($address['state']) ? $address['state'] : ''); |
|
656 | 656 | |
657 | 657 | // Get the country list that does not have any states init. |
658 | 658 | $no_states_country = give_no_states_country_list(); |
@@ -660,7 +660,7 @@ discard block |
||
660 | 660 | |
661 | 661 | <div class="row"> |
662 | 662 | <div id="give-order-address-country-wrap"> |
663 | - <label class="order-data-address-line"><?php _e( 'Country:', 'give' ); ?></label> |
|
663 | + <label class="order-data-address-line"><?php _e('Country:', 'give'); ?></label> |
|
664 | 664 | <?php |
665 | 665 | echo Give()->html->select( |
666 | 666 | array( |
@@ -670,8 +670,8 @@ discard block |
||
670 | 670 | 'show_option_all' => false, |
671 | 671 | 'show_option_none' => false, |
672 | 672 | 'chosen' => true, |
673 | - 'placeholder' => esc_attr__( 'Select a country', 'give' ), |
|
674 | - 'data' => array( 'search-type' => 'no_ajax' ), |
|
673 | + 'placeholder' => esc_attr__('Select a country', 'give'), |
|
674 | + 'data' => array('search-type' => 'no_ajax'), |
|
675 | 675 | ) |
676 | 676 | ); |
677 | 677 | ?> |
@@ -680,35 +680,35 @@ discard block |
||
680 | 680 | |
681 | 681 | <div class="row"> |
682 | 682 | <div class="give-wrap-address-line1"> |
683 | - <label for="give-payment-address-line1" class="order-data-address"><?php _e( 'Address 1:', 'give' ); ?></label> |
|
684 | - <input id="give-payment-address-line1" type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr( $address['line1'] ); ?>" class="medium-text"/> |
|
683 | + <label for="give-payment-address-line1" class="order-data-address"><?php _e('Address 1:', 'give'); ?></label> |
|
684 | + <input id="give-payment-address-line1" type="text" name="give-payment-address[0][line1]" value="<?php echo esc_attr($address['line1']); ?>" class="medium-text"/> |
|
685 | 685 | </div> |
686 | 686 | </div> |
687 | 687 | |
688 | 688 | <div class="row"> |
689 | 689 | <div class="give-wrap-address-line2"> |
690 | - <label for="give-payment-address-line2" class="order-data-address-line"><?php _e( 'Address 2:', 'give' ); ?></label> |
|
691 | - <input id="give-payment-address-line2" type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr( $address['line2'] ); ?>" class="medium-text"/> |
|
690 | + <label for="give-payment-address-line2" class="order-data-address-line"><?php _e('Address 2:', 'give'); ?></label> |
|
691 | + <input id="give-payment-address-line2" type="text" name="give-payment-address[0][line2]" value="<?php echo esc_attr($address['line2']); ?>" class="medium-text"/> |
|
692 | 692 | </div> |
693 | 693 | </div> |
694 | 694 | |
695 | 695 | <div class="row"> |
696 | 696 | <div class="give-wrap-address-city"> |
697 | - <label for="give-payment-address-city" class="order-data-address-line"><?php esc_html_e( 'City:', 'give' ); ?></label> |
|
698 | - <input id="give-payment-address-city" type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr( $address['city'] ); ?>" class="medium-text"/> |
|
697 | + <label for="give-payment-address-city" class="order-data-address-line"><?php esc_html_e('City:', 'give'); ?></label> |
|
698 | + <input id="give-payment-address-city" type="text" name="give-payment-address[0][city]" value="<?php echo esc_attr($address['city']); ?>" class="medium-text"/> |
|
699 | 699 | </div> |
700 | 700 | </div> |
701 | 701 | |
702 | 702 | <?php |
703 | - $state_exists = ( ! empty( $address['country'] ) && array_key_exists( $address['country'], $no_states_country ) ? true : false ); |
|
703 | + $state_exists = ( ! empty($address['country']) && array_key_exists($address['country'], $no_states_country) ? true : false); |
|
704 | 704 | ?> |
705 | 705 | <div class="row"> |
706 | - <div class="<?php echo( ! empty( $state_exists ) ? 'column-full' : 'column' ); ?> give-column give-column-state"> |
|
707 | - <div id="give-order-address-state-wrap" class="<?php echo( ! empty( $state_exists ) ? 'give-hidden' : '' ); ?>"> |
|
708 | - <label for="give-payment-address-state" class="order-data-address-line"><?php esc_html_e( 'State / Province / County:', 'give' ); ?></label> |
|
706 | + <div class="<?php echo( ! empty($state_exists) ? 'column-full' : 'column'); ?> give-column give-column-state"> |
|
707 | + <div id="give-order-address-state-wrap" class="<?php echo( ! empty($state_exists) ? 'give-hidden' : ''); ?>"> |
|
708 | + <label for="give-payment-address-state" class="order-data-address-line"><?php esc_html_e('State / Province / County:', 'give'); ?></label> |
|
709 | 709 | <?php |
710 | - $states = give_get_states( $address['country'] ); |
|
711 | - if ( ! empty( $states ) ) { |
|
710 | + $states = give_get_states($address['country']); |
|
711 | + if ( ! empty($states)) { |
|
712 | 712 | echo Give()->html->select( |
713 | 713 | array( |
714 | 714 | 'options' => $states, |
@@ -717,23 +717,23 @@ discard block |
||
717 | 717 | 'show_option_all' => false, |
718 | 718 | 'show_option_none' => false, |
719 | 719 | 'chosen' => true, |
720 | - 'placeholder' => esc_attr__( 'Select a state', 'give' ), |
|
721 | - 'data' => array( 'search-type' => 'no_ajax' ), |
|
720 | + 'placeholder' => esc_attr__('Select a state', 'give'), |
|
721 | + 'data' => array('search-type' => 'no_ajax'), |
|
722 | 722 | ) |
723 | 723 | ); |
724 | 724 | } else { |
725 | 725 | ?> |
726 | - <input id="give-payment-address-state" type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr( $address['state'] ); ?>" class="medium-text"/> |
|
726 | + <input id="give-payment-address-state" type="text" name="give-payment-address[0][state]" value="<?php echo esc_attr($address['state']); ?>" class="medium-text"/> |
|
727 | 727 | <?php |
728 | 728 | } |
729 | 729 | ?> |
730 | 730 | </div> |
731 | 731 | </div> |
732 | 732 | |
733 | - <div class="<?php echo( ! empty( $state_exists ) ? 'column-full' : 'column' ); ?> give-column give-column-zip"> |
|
733 | + <div class="<?php echo( ! empty($state_exists) ? 'column-full' : 'column'); ?> give-column give-column-zip"> |
|
734 | 734 | <div class="give-wrap-address-zip"> |
735 | - <label for="give-payment-address-zip" class="order-data-address-line"><?php _e( 'Zip / Postal Code:', 'give' ); ?></label> |
|
736 | - <input id="give-payment-address-zip" type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr( $address['zip'] ); ?>" class="medium-text"/> |
|
735 | + <label for="give-payment-address-zip" class="order-data-address-line"><?php _e('Zip / Postal Code:', 'give'); ?></label> |
|
736 | + <input id="give-payment-address-zip" type="text" name="give-payment-address[0][zip]" value="<?php echo esc_attr($address['zip']); ?>" class="medium-text"/> |
|
737 | 737 | </div> |
738 | 738 | </div> |
739 | 739 | </div> |
@@ -752,7 +752,7 @@ discard block |
||
752 | 752 | * |
753 | 753 | * @param int $payment_id Payment id. |
754 | 754 | */ |
755 | - do_action( 'give_payment_billing_details', $payment_id ); |
|
755 | + do_action('give_payment_billing_details', $payment_id); |
|
756 | 756 | ?> |
757 | 757 | |
758 | 758 | </div> |
@@ -768,34 +768,34 @@ discard block |
||
768 | 768 | * |
769 | 769 | * @param int $payment_id Payment id. |
770 | 770 | */ |
771 | - do_action( 'give_view_order_details_billing_after', $payment_id ); |
|
771 | + do_action('give_view_order_details_billing_after', $payment_id); |
|
772 | 772 | ?> |
773 | 773 | |
774 | 774 | <div id="give-payment-notes" class="postbox"> |
775 | - <h3 class="hndle"><?php _e( 'Donation Notes', 'give' ); ?></h3> |
|
775 | + <h3 class="hndle"><?php _e('Donation Notes', 'give'); ?></h3> |
|
776 | 776 | |
777 | 777 | <div class="inside"> |
778 | 778 | <div id="give-payment-notes-inner"> |
779 | 779 | <?php |
780 | - $notes = give_get_payment_notes( $payment_id ); |
|
781 | - if ( ! empty( $notes ) ) { |
|
780 | + $notes = give_get_payment_notes($payment_id); |
|
781 | + if ( ! empty($notes)) { |
|
782 | 782 | $no_notes_display = ' style="display:none;"'; |
783 | - foreach ( $notes as $note ) : |
|
783 | + foreach ($notes as $note) : |
|
784 | 784 | |
785 | - echo give_get_payment_note_html( $note, $payment_id ); |
|
785 | + echo give_get_payment_note_html($note, $payment_id); |
|
786 | 786 | |
787 | 787 | endforeach; |
788 | 788 | } else { |
789 | 789 | $no_notes_display = ''; |
790 | 790 | } |
791 | 791 | |
792 | - echo '<p class="give-no-payment-notes"' . $no_notes_display . '>' . esc_html__( 'No donation notes.', 'give' ) . '</p>'; |
|
792 | + echo '<p class="give-no-payment-notes"'.$no_notes_display.'>'.esc_html__('No donation notes.', 'give').'</p>'; |
|
793 | 793 | ?> |
794 | 794 | </div> |
795 | 795 | <textarea name="give-payment-note" id="give-payment-note" class="large-text"></textarea> |
796 | 796 | |
797 | 797 | <div class="give-clearfix"> |
798 | - <button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint( $payment_id ); ?>"><?php _e( 'Add Note', 'give' ); ?></button> |
|
798 | + <button id="give-add-payment-note" class="button button-secondary button-small" data-payment-id="<?php echo absint($payment_id); ?>"><?php _e('Add Note', 'give'); ?></button> |
|
799 | 799 | </div> |
800 | 800 | |
801 | 801 | </div> |
@@ -811,7 +811,7 @@ discard block |
||
811 | 811 | * |
812 | 812 | * @param int $payment_id Payment id. |
813 | 813 | */ |
814 | - do_action( 'give_view_order_details_main_after', $payment_id ); |
|
814 | + do_action('give_view_order_details_main_after', $payment_id); |
|
815 | 815 | ?> |
816 | 816 | |
817 | 817 | </div> |
@@ -833,11 +833,11 @@ discard block |
||
833 | 833 | * |
834 | 834 | * @param int $payment_id Payment id. |
835 | 835 | */ |
836 | - do_action( 'give_view_order_details_form_bottom', $payment_id ); |
|
836 | + do_action('give_view_order_details_form_bottom', $payment_id); |
|
837 | 837 | |
838 | - wp_nonce_field( 'give_update_payment_details_nonce' ); |
|
838 | + wp_nonce_field('give_update_payment_details_nonce'); |
|
839 | 839 | ?> |
840 | - <input type="hidden" name="give_payment_id" value="<?php echo esc_attr( $payment_id ); ?>"/> |
|
840 | + <input type="hidden" name="give_payment_id" value="<?php echo esc_attr($payment_id); ?>"/> |
|
841 | 841 | <input type="hidden" name="give_action" value="update_payment_details"/> |
842 | 842 | </form> |
843 | 843 | <?php |
@@ -848,6 +848,6 @@ discard block |
||
848 | 848 | * |
849 | 849 | * @param int $payment_id Payment id. |
850 | 850 | */ |
851 | - do_action( 'give_view_order_details_after', $payment_id ); |
|
851 | + do_action('give_view_order_details_after', $payment_id); |
|
852 | 852 | ?> |
853 | 853 | </div><!-- /.wrap --> |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -25,48 +25,48 @@ discard block |
||
25 | 25 | * |
26 | 26 | * @return void |
27 | 27 | */ |
28 | -function give_update_payment_details( $data ) { |
|
28 | +function give_update_payment_details($data) { |
|
29 | 29 | |
30 | - if ( ! current_user_can( 'edit_give_payments', $data['give_payment_id'] ) ) { |
|
31 | - wp_die( __( 'You do not have permission to edit payments.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
30 | + if ( ! current_user_can('edit_give_payments', $data['give_payment_id'])) { |
|
31 | + wp_die(__('You do not have permission to edit payments.', 'give'), __('Error', 'give'), array('response' => 403)); |
|
32 | 32 | } |
33 | 33 | |
34 | - check_admin_referer( 'give_update_payment_details_nonce' ); |
|
34 | + check_admin_referer('give_update_payment_details_nonce'); |
|
35 | 35 | |
36 | 36 | // Retrieve the payment ID. |
37 | - $payment_id = absint( $data['give_payment_id'] ); |
|
37 | + $payment_id = absint($data['give_payment_id']); |
|
38 | 38 | |
39 | 39 | /* @var Give_Payment $payment */ |
40 | - $payment = new Give_Payment( $payment_id ); |
|
40 | + $payment = new Give_Payment($payment_id); |
|
41 | 41 | |
42 | 42 | $status = $data['give-payment-status']; |
43 | - $date = sanitize_text_field( $data['give-payment-date'] ); |
|
44 | - $hour = sanitize_text_field( $data['give-payment-time-hour'] ); |
|
43 | + $date = sanitize_text_field($data['give-payment-date']); |
|
44 | + $hour = sanitize_text_field($data['give-payment-time-hour']); |
|
45 | 45 | |
46 | 46 | // Restrict to our high and low. |
47 | - if ( $hour > 23 ) { |
|
47 | + if ($hour > 23) { |
|
48 | 48 | $hour = 23; |
49 | - } elseif ( $hour < 0 ) { |
|
49 | + } elseif ($hour < 0) { |
|
50 | 50 | $hour = 00; |
51 | 51 | } |
52 | 52 | |
53 | - $minute = sanitize_text_field( $data['give-payment-time-min'] ); |
|
53 | + $minute = sanitize_text_field($data['give-payment-time-min']); |
|
54 | 54 | |
55 | 55 | // Restrict to our high and low. |
56 | - if ( $minute > 59 ) { |
|
56 | + if ($minute > 59) { |
|
57 | 57 | $minute = 59; |
58 | - } elseif ( $minute < 0 ) { |
|
58 | + } elseif ($minute < 0) { |
|
59 | 59 | $minute = 00; |
60 | 60 | } |
61 | 61 | |
62 | - $address = give_clean( $data['give-payment-address'][0] ); |
|
62 | + $address = give_clean($data['give-payment-address'][0]); |
|
63 | 63 | |
64 | 64 | $curr_total = $payment->total; |
65 | - $new_total = give_maybe_sanitize_amount( ( ! empty( $data['give-payment-total'] ) ? $data['give-payment-total'] : 0 ) ); |
|
66 | - $date = date( 'Y-m-d', strtotime( $date ) ) . ' ' . $hour . ':' . $minute . ':00'; |
|
65 | + $new_total = give_maybe_sanitize_amount(( ! empty($data['give-payment-total']) ? $data['give-payment-total'] : 0)); |
|
66 | + $date = date('Y-m-d', strtotime($date)).' '.$hour.':'.$minute.':00'; |
|
67 | 67 | |
68 | - $curr_donor_id = sanitize_text_field( $data['give-current-donor'] ); |
|
69 | - $new_donor_id = sanitize_text_field( $data['donor-id'] ); |
|
68 | + $curr_donor_id = sanitize_text_field($data['give-current-donor']); |
|
69 | + $new_donor_id = sanitize_text_field($data['donor-id']); |
|
70 | 70 | |
71 | 71 | /** |
72 | 72 | * Fires before updating edited donation. |
@@ -76,71 +76,71 @@ discard block |
||
76 | 76 | * |
77 | 77 | * @param int $payment_id The ID of the payment. |
78 | 78 | */ |
79 | - do_action( 'give_update_edited_donation', $payment_id ); |
|
79 | + do_action('give_update_edited_donation', $payment_id); |
|
80 | 80 | |
81 | 81 | $payment->date = $date; |
82 | 82 | $updated = $payment->save(); |
83 | 83 | |
84 | - if ( 0 === $updated ) { |
|
85 | - wp_die( __( 'Error Updating Donation.', 'give' ), __( 'Error', 'give' ), array( 'response' => 400 ) ); |
|
84 | + if (0 === $updated) { |
|
85 | + wp_die(__('Error Updating Donation.', 'give'), __('Error', 'give'), array('response' => 400)); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | $donor_changed = false; |
89 | 89 | |
90 | - if ( isset( $data['give-new-donor'] ) && $data['give-new-donor'] == '1' ) { |
|
90 | + if (isset($data['give-new-donor']) && $data['give-new-donor'] == '1') { |
|
91 | 91 | |
92 | - $email = ! empty( $data['give-new-donor-email'] ) ? sanitize_text_field( $data['give-new-donor-email'] ) : ''; |
|
93 | - $first_name = ! empty( $data['give-new-donor-first-name'] ) ? sanitize_text_field( $data['give-new-donor-first-name'] ) : ''; |
|
94 | - $last_name = ! empty( $data['give-new-donor-last-name'] ) ? sanitize_text_field( $data['give-new-donor-last-name'] ) : ''; |
|
95 | - $names = strip_tags( wp_unslash( trim( "{$first_name} {$last_name}" ) ) ); |
|
92 | + $email = ! empty($data['give-new-donor-email']) ? sanitize_text_field($data['give-new-donor-email']) : ''; |
|
93 | + $first_name = ! empty($data['give-new-donor-first-name']) ? sanitize_text_field($data['give-new-donor-first-name']) : ''; |
|
94 | + $last_name = ! empty($data['give-new-donor-last-name']) ? sanitize_text_field($data['give-new-donor-last-name']) : ''; |
|
95 | + $names = strip_tags(wp_unslash(trim("{$first_name} {$last_name}"))); |
|
96 | 96 | |
97 | - if ( empty( $email ) || empty( $first_name ) ) { |
|
98 | - wp_die( __( 'New Donor requires first name and email address.', 'give' ), __( 'Error', 'give' ), array( 'response' => 400 ) ); |
|
97 | + if (empty($email) || empty($first_name)) { |
|
98 | + wp_die(__('New Donor requires first name and email address.', 'give'), __('Error', 'give'), array('response' => 400)); |
|
99 | 99 | } |
100 | 100 | |
101 | - $donor = new Give_Donor( $email ); |
|
102 | - if ( empty( $donor->id ) ) { |
|
103 | - $donor_data = array( 'name' => $names, 'email' => $email ); |
|
104 | - $user_id = email_exists( $email ); |
|
105 | - if ( false !== $user_id ) { |
|
101 | + $donor = new Give_Donor($email); |
|
102 | + if (empty($donor->id)) { |
|
103 | + $donor_data = array('name' => $names, 'email' => $email); |
|
104 | + $user_id = email_exists($email); |
|
105 | + if (false !== $user_id) { |
|
106 | 106 | $donor_data['user_id'] = $user_id; |
107 | 107 | } |
108 | 108 | |
109 | - if ( ! $donor->create( $donor_data ) ) { |
|
109 | + if ( ! $donor->create($donor_data)) { |
|
110 | 110 | // Failed to create the new donor, assume the previous donor. |
111 | 111 | $donor_changed = false; |
112 | - $donor = new Give_Donor( $curr_donor_id ); |
|
113 | - give_set_error( 'give-payment-new-donor-fail', __( 'Error creating new donor.', 'give' ) ); |
|
112 | + $donor = new Give_Donor($curr_donor_id); |
|
113 | + give_set_error('give-payment-new-donor-fail', __('Error creating new donor.', 'give')); |
|
114 | 114 | } |
115 | 115 | } |
116 | 116 | |
117 | 117 | // Create and Update Donor First Name and Last Name in Meta Fields. |
118 | - $donor->update_meta( '_give_donor_first_name', $first_name ); |
|
119 | - $donor->update_meta( '_give_donor_last_name', $last_name ); |
|
118 | + $donor->update_meta('_give_donor_first_name', $first_name); |
|
119 | + $donor->update_meta('_give_donor_last_name', $last_name); |
|
120 | 120 | |
121 | 121 | $new_donor_id = $donor->id; |
122 | 122 | |
123 | - $previous_donor = new Give_Donor( $curr_donor_id ); |
|
123 | + $previous_donor = new Give_Donor($curr_donor_id); |
|
124 | 124 | |
125 | 125 | $donor_changed = true; |
126 | 126 | |
127 | - } elseif ( $curr_donor_id !== $new_donor_id ) { |
|
127 | + } elseif ($curr_donor_id !== $new_donor_id) { |
|
128 | 128 | |
129 | - $donor = new Give_Donor( $new_donor_id ); |
|
129 | + $donor = new Give_Donor($new_donor_id); |
|
130 | 130 | $email = $donor->email; |
131 | 131 | $names = $donor->name; |
132 | 132 | |
133 | - $previous_donor = new Give_Donor( $curr_donor_id ); |
|
133 | + $previous_donor = new Give_Donor($curr_donor_id); |
|
134 | 134 | |
135 | 135 | $donor_changed = true; |
136 | 136 | |
137 | 137 | } else { |
138 | - $donor = new Give_Donor( $curr_donor_id ); |
|
138 | + $donor = new Give_Donor($curr_donor_id); |
|
139 | 139 | $email = $donor->email; |
140 | 140 | $names = $donor->name; |
141 | 141 | } |
142 | 142 | |
143 | - if ( $donor_changed ) { |
|
143 | + if ($donor_changed) { |
|
144 | 144 | |
145 | 145 | // Setup first and last name from input values. |
146 | 146 | $first_name = $donor->get_first_name(); |
@@ -150,26 +150,26 @@ discard block |
||
150 | 150 | $payment->last_name = $last_name; |
151 | 151 | |
152 | 152 | // Remove the stats and payment from the previous donor and attach it to the new donor. |
153 | - $previous_donor->remove_payment( $payment_id, false ); |
|
154 | - $donor->attach_payment( $payment_id, false ); |
|
153 | + $previous_donor->remove_payment($payment_id, false); |
|
154 | + $donor->attach_payment($payment_id, false); |
|
155 | 155 | |
156 | - if ( 'publish' == $status ) { |
|
156 | + if ('publish' == $status) { |
|
157 | 157 | |
158 | 158 | // Reduce previous user donation count and amount. |
159 | 159 | $previous_donor->decrease_donation_count(); |
160 | - $previous_donor->decrease_value( $curr_total ); |
|
160 | + $previous_donor->decrease_value($curr_total); |
|
161 | 161 | |
162 | 162 | // If donation was completed adjust stats of new donors. |
163 | 163 | $donor->increase_purchase_count(); |
164 | - $donor->increase_value( $new_total ); |
|
164 | + $donor->increase_value($new_total); |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | $payment->customer_id = $donor->id; |
168 | 168 | } else { |
169 | 169 | |
170 | - if ( 'publish' === $status ) { |
|
170 | + if ('publish' === $status) { |
|
171 | 171 | // Update user donation stat. |
172 | - $donor->update_donation_value( $curr_total, $new_total ); |
|
172 | + $donor->update_donation_value($curr_total, $new_total); |
|
173 | 173 | } |
174 | 174 | } |
175 | 175 | |
@@ -180,10 +180,10 @@ discard block |
||
180 | 180 | $payment->total = $new_total; |
181 | 181 | |
182 | 182 | // Check for payment notes. |
183 | - if ( ! empty( $data['give-payment-note'] ) ) { |
|
183 | + if ( ! empty($data['give-payment-note'])) { |
|
184 | 184 | |
185 | - $note = wp_kses( $data['give-payment-note'], array() ); |
|
186 | - give_insert_payment_note( $payment_id, $note ); |
|
185 | + $note = wp_kses($data['give-payment-note'], array()); |
|
186 | + give_insert_payment_note($payment_id, $note); |
|
187 | 187 | |
188 | 188 | } |
189 | 189 | |
@@ -191,17 +191,17 @@ discard block |
||
191 | 191 | $payment->status = $status; |
192 | 192 | |
193 | 193 | // Adjust total store earnings if the payment total has been changed. |
194 | - if ( $new_total !== $curr_total && 'publish' == $status ) { |
|
194 | + if ($new_total !== $curr_total && 'publish' == $status) { |
|
195 | 195 | |
196 | - if ( $new_total > $curr_total ) { |
|
196 | + if ($new_total > $curr_total) { |
|
197 | 197 | // Increase if our new total is higher. |
198 | 198 | $difference = $new_total - $curr_total; |
199 | - give_increase_total_earnings( $difference ); |
|
199 | + give_increase_total_earnings($difference); |
|
200 | 200 | |
201 | - } elseif ( $curr_total > $new_total ) { |
|
201 | + } elseif ($curr_total > $new_total) { |
|
202 | 202 | // Decrease if our new total is lower. |
203 | 203 | $difference = $curr_total - $new_total; |
204 | - give_decrease_total_earnings( $difference ); |
|
204 | + give_decrease_total_earnings($difference); |
|
205 | 205 | |
206 | 206 | } |
207 | 207 | } |
@@ -209,55 +209,55 @@ discard block |
||
209 | 209 | $payment->save(); |
210 | 210 | |
211 | 211 | // Get new give form ID. |
212 | - $new_form_id = absint( $data['give-payment-form-select'] ); |
|
213 | - $current_form_id = absint( $payment->get_meta( '_give_payment_form_id' ) ); |
|
212 | + $new_form_id = absint($data['give-payment-form-select']); |
|
213 | + $current_form_id = absint($payment->get_meta('_give_payment_form_id')); |
|
214 | 214 | |
215 | 215 | // We are adding payment transfer code in last to remove any conflict with above functionality. |
216 | 216 | // For example: above code will automatically handle form stat (increase/decrease) when payment status changes. |
217 | 217 | // Check if user want to transfer current payment to new give form id. |
218 | - if ( $new_form_id && $new_form_id != $current_form_id ) { |
|
218 | + if ($new_form_id && $new_form_id != $current_form_id) { |
|
219 | 219 | |
220 | 220 | // Get new give form title. |
221 | - $new_form_title = get_the_title( $new_form_id ); |
|
221 | + $new_form_title = get_the_title($new_form_id); |
|
222 | 222 | |
223 | 223 | // Update payment give form meta data. |
224 | - $payment->update_meta( '_give_payment_form_id', $new_form_id ); |
|
225 | - $payment->update_meta( '_give_payment_form_title', $new_form_title ); |
|
224 | + $payment->update_meta('_give_payment_form_id', $new_form_id); |
|
225 | + $payment->update_meta('_give_payment_form_title', $new_form_title); |
|
226 | 226 | |
227 | 227 | // Update price id payment metadata. |
228 | - if ( ! give_has_variable_prices( $new_form_id ) ) { |
|
229 | - $payment->update_meta( '_give_payment_price_id', '' ); |
|
228 | + if ( ! give_has_variable_prices($new_form_id)) { |
|
229 | + $payment->update_meta('_give_payment_price_id', ''); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | // If donation was completed, adjust stats of forms. |
233 | - if ( 'publish' == $status ) { |
|
233 | + if ('publish' == $status) { |
|
234 | 234 | |
235 | 235 | // Decrease sale of old give form. For other payment status. |
236 | - $current_form = new Give_Donate_Form( $current_form_id ); |
|
236 | + $current_form = new Give_Donate_Form($current_form_id); |
|
237 | 237 | $current_form->decrease_sales(); |
238 | - $current_form->decrease_earnings( $curr_total ); |
|
238 | + $current_form->decrease_earnings($curr_total); |
|
239 | 239 | |
240 | 240 | // Increase sale of new give form. |
241 | - $new_form = new Give_Donate_Form( $new_form_id ); |
|
241 | + $new_form = new Give_Donate_Form($new_form_id); |
|
242 | 242 | $new_form->increase_sales(); |
243 | - $new_form->increase_earnings( $new_total ); |
|
243 | + $new_form->increase_earnings($new_total); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | // Re setup payment to update new meta value in object. |
247 | - $payment->update_payment_setup( $payment->ID ); |
|
247 | + $payment->update_payment_setup($payment->ID); |
|
248 | 248 | |
249 | 249 | // Update form id in payment logs. |
250 | - Give()->async_process->data( array( |
|
251 | - 'data' => array( $new_form_id, $payment_id ), |
|
250 | + Give()->async_process->data(array( |
|
251 | + 'data' => array($new_form_id, $payment_id), |
|
252 | 252 | 'hook' => 'give_update_log_form_id', |
253 | - ) )->dispatch(); |
|
253 | + ))->dispatch(); |
|
254 | 254 | } |
255 | 255 | |
256 | 256 | // Update price id if current form is variable form. |
257 | 257 | /* @var Give_Donate_Form $form */ |
258 | - $form = new Give_Donate_Form( $payment->form_id ); |
|
258 | + $form = new Give_Donate_Form($payment->form_id); |
|
259 | 259 | |
260 | - if ( isset( $data['give-variable-price'] ) && $form->has_variable_prices() ) { |
|
260 | + if (isset($data['give-variable-price']) && $form->has_variable_prices()) { |
|
261 | 261 | |
262 | 262 | // Get payment meta data. |
263 | 263 | $payment_meta = $payment->get_meta(); |
@@ -266,9 +266,9 @@ discard block |
||
266 | 266 | $price_id = ''; |
267 | 267 | |
268 | 268 | // Get price info |
269 | - if( 0 <= $data['give-variable-price'] ) { |
|
270 | - foreach ( $form->prices as $variable_price ) { |
|
271 | - if( $new_total === give_maybe_sanitize_amount( $variable_price['_give_amount'] ) ) { |
|
269 | + if (0 <= $data['give-variable-price']) { |
|
270 | + foreach ($form->prices as $variable_price) { |
|
271 | + if ($new_total === give_maybe_sanitize_amount($variable_price['_give_amount'])) { |
|
272 | 272 | $price_info = $variable_price; |
273 | 273 | break; |
274 | 274 | } |
@@ -276,15 +276,15 @@ discard block |
||
276 | 276 | } |
277 | 277 | |
278 | 278 | // Set price id. |
279 | - if( ! empty( $price_info ) ) { |
|
279 | + if ( ! empty($price_info)) { |
|
280 | 280 | $price_id = $data['give-variable-price']; |
281 | 281 | |
282 | - if( $data['give-variable-price'] !== $price_info['_give_id']['level_id'] ) { |
|
282 | + if ($data['give-variable-price'] !== $price_info['_give_id']['level_id']) { |
|
283 | 283 | // Set price id to amount match. |
284 | 284 | $price_id = $price_info['_give_id']['level_id']; |
285 | 285 | } |
286 | 286 | |
287 | - } elseif( $form->is_custom_price_mode() ){ |
|
287 | + } elseif ($form->is_custom_price_mode()) { |
|
288 | 288 | $price_id = 'custom'; |
289 | 289 | } |
290 | 290 | |
@@ -292,11 +292,11 @@ discard block |
||
292 | 292 | $payment_meta['price_id'] = $price_id; |
293 | 293 | |
294 | 294 | // Update payment give form meta data. |
295 | - $payment->update_meta( '_give_payment_price_id', $price_id ); |
|
296 | - $payment->update_meta( '_give_payment_meta', $payment_meta ); |
|
295 | + $payment->update_meta('_give_payment_price_id', $price_id); |
|
296 | + $payment->update_meta('_give_payment_meta', $payment_meta); |
|
297 | 297 | |
298 | 298 | // Re setup payment to update new meta value in object. |
299 | - $payment->update_payment_setup( $payment->ID ); |
|
299 | + $payment->update_payment_setup($payment->ID); |
|
300 | 300 | } |
301 | 301 | |
302 | 302 | /** |
@@ -307,13 +307,13 @@ discard block |
||
307 | 307 | * |
308 | 308 | * @param int $payment_id The ID of the payment. |
309 | 309 | */ |
310 | - do_action( 'give_updated_edited_donation', $payment_id ); |
|
310 | + do_action('give_updated_edited_donation', $payment_id); |
|
311 | 311 | |
312 | - wp_safe_redirect( admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&give-message=payment-updated&id=' . $payment_id ) ); |
|
312 | + wp_safe_redirect(admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&give-message=payment-updated&id='.$payment_id)); |
|
313 | 313 | exit; |
314 | 314 | } |
315 | 315 | |
316 | -add_action( 'give_update_payment_details', 'give_update_payment_details' ); |
|
316 | +add_action('give_update_payment_details', 'give_update_payment_details'); |
|
317 | 317 | |
318 | 318 | /** |
319 | 319 | * Trigger a Donation Deletion. |
@@ -324,48 +324,48 @@ discard block |
||
324 | 324 | * |
325 | 325 | * @return void |
326 | 326 | */ |
327 | -function give_trigger_donation_delete( $data ) { |
|
328 | - if ( wp_verify_nonce( $data['_wpnonce'], 'give_donation_nonce' ) ) { |
|
327 | +function give_trigger_donation_delete($data) { |
|
328 | + if (wp_verify_nonce($data['_wpnonce'], 'give_donation_nonce')) { |
|
329 | 329 | |
330 | - $payment_id = absint( $data['purchase_id'] ); |
|
330 | + $payment_id = absint($data['purchase_id']); |
|
331 | 331 | |
332 | - if ( ! current_user_can( 'edit_give_payments', $payment_id ) ) { |
|
333 | - wp_die( __( 'You do not have permission to edit payments.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
332 | + if ( ! current_user_can('edit_give_payments', $payment_id)) { |
|
333 | + wp_die(__('You do not have permission to edit payments.', 'give'), __('Error', 'give'), array('response' => 403)); |
|
334 | 334 | } |
335 | 335 | |
336 | - give_delete_donation( $payment_id ); |
|
337 | - wp_redirect( admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&give-message=donation_deleted' ) ); |
|
336 | + give_delete_donation($payment_id); |
|
337 | + wp_redirect(admin_url('edit.php?post_type=give_forms&page=give-payment-history&give-message=donation_deleted')); |
|
338 | 338 | give_die(); |
339 | 339 | } |
340 | 340 | } |
341 | 341 | |
342 | -add_action( 'give_delete_payment', 'give_trigger_donation_delete' ); |
|
342 | +add_action('give_delete_payment', 'give_trigger_donation_delete'); |
|
343 | 343 | |
344 | 344 | /** |
345 | 345 | * AJAX Store Donation Note |
346 | 346 | */ |
347 | 347 | function give_ajax_store_payment_note() { |
348 | 348 | |
349 | - $payment_id = absint( $_POST['payment_id'] ); |
|
350 | - $note = wp_kses( $_POST['note'], array() ); |
|
349 | + $payment_id = absint($_POST['payment_id']); |
|
350 | + $note = wp_kses($_POST['note'], array()); |
|
351 | 351 | |
352 | - if ( ! current_user_can( 'edit_give_payments', $payment_id ) ) { |
|
353 | - wp_die( __( 'You do not have permission to edit payments.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
352 | + if ( ! current_user_can('edit_give_payments', $payment_id)) { |
|
353 | + wp_die(__('You do not have permission to edit payments.', 'give'), __('Error', 'give'), array('response' => 403)); |
|
354 | 354 | } |
355 | 355 | |
356 | - if ( empty( $payment_id ) ) { |
|
357 | - die( '-1' ); |
|
356 | + if (empty($payment_id)) { |
|
357 | + die('-1'); |
|
358 | 358 | } |
359 | 359 | |
360 | - if ( empty( $note ) ) { |
|
361 | - die( '-1' ); |
|
360 | + if (empty($note)) { |
|
361 | + die('-1'); |
|
362 | 362 | } |
363 | 363 | |
364 | - $note_id = give_insert_payment_note( $payment_id, $note ); |
|
365 | - die( give_get_payment_note_html( $note_id ) ); |
|
364 | + $note_id = give_insert_payment_note($payment_id, $note); |
|
365 | + die(give_get_payment_note_html($note_id)); |
|
366 | 366 | } |
367 | 367 | |
368 | -add_action( 'wp_ajax_give_insert_payment_note', 'give_ajax_store_payment_note' ); |
|
368 | +add_action('wp_ajax_give_insert_payment_note', 'give_ajax_store_payment_note'); |
|
369 | 369 | |
370 | 370 | /** |
371 | 371 | * Triggers a donation note deletion without ajax |
@@ -376,24 +376,24 @@ discard block |
||
376 | 376 | * |
377 | 377 | * @return void |
378 | 378 | */ |
379 | -function give_trigger_payment_note_deletion( $data ) { |
|
379 | +function give_trigger_payment_note_deletion($data) { |
|
380 | 380 | |
381 | - if ( ! wp_verify_nonce( $data['_wpnonce'], 'give_delete_payment_note_' . $data['note_id'] ) ) { |
|
381 | + if ( ! wp_verify_nonce($data['_wpnonce'], 'give_delete_payment_note_'.$data['note_id'])) { |
|
382 | 382 | return; |
383 | 383 | } |
384 | 384 | |
385 | - if ( ! current_user_can( 'edit_give_payments', $data['payment_id'] ) ) { |
|
386 | - wp_die( __( 'You do not have permission to edit payments.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
385 | + if ( ! current_user_can('edit_give_payments', $data['payment_id'])) { |
|
386 | + wp_die(__('You do not have permission to edit payments.', 'give'), __('Error', 'give'), array('response' => 403)); |
|
387 | 387 | } |
388 | 388 | |
389 | - $edit_order_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&give-message=donation-note-deleted&id=' . absint( $data['payment_id'] ) ); |
|
389 | + $edit_order_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&give-message=donation-note-deleted&id='.absint($data['payment_id'])); |
|
390 | 390 | |
391 | - give_delete_payment_note( $data['note_id'], $data['payment_id'] ); |
|
391 | + give_delete_payment_note($data['note_id'], $data['payment_id']); |
|
392 | 392 | |
393 | - wp_redirect( $edit_order_url ); |
|
393 | + wp_redirect($edit_order_url); |
|
394 | 394 | } |
395 | 395 | |
396 | -add_action( 'give_delete_payment_note', 'give_trigger_payment_note_deletion' ); |
|
396 | +add_action('give_delete_payment_note', 'give_trigger_payment_note_deletion'); |
|
397 | 397 | |
398 | 398 | /** |
399 | 399 | * Delete a payment note deletion with ajax |
@@ -404,16 +404,16 @@ discard block |
||
404 | 404 | */ |
405 | 405 | function give_ajax_delete_payment_note() { |
406 | 406 | |
407 | - if ( ! current_user_can( 'edit_give_payments', $_POST['payment_id'] ) ) { |
|
408 | - wp_die( __( 'You do not have permission to edit payments.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
407 | + if ( ! current_user_can('edit_give_payments', $_POST['payment_id'])) { |
|
408 | + wp_die(__('You do not have permission to edit payments.', 'give'), __('Error', 'give'), array('response' => 403)); |
|
409 | 409 | } |
410 | 410 | |
411 | - if ( give_delete_payment_note( $_POST['note_id'], $_POST['payment_id'] ) ) { |
|
412 | - die( '1' ); |
|
411 | + if (give_delete_payment_note($_POST['note_id'], $_POST['payment_id'])) { |
|
412 | + die('1'); |
|
413 | 413 | } else { |
414 | - die( '-1' ); |
|
414 | + die('-1'); |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | } |
418 | 418 | |
419 | -add_action( 'wp_ajax_give_delete_payment_note', 'give_ajax_delete_payment_note' ); |
|
419 | +add_action('wp_ajax_give_delete_payment_note', 'give_ajax_delete_payment_note'); |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | */ |
14 | 14 | |
15 | 15 | // Exit if accessed directly. |
16 | -if ( ! defined( 'ABSPATH' ) ) { |
|
16 | +if ( ! defined('ABSPATH')) { |
|
17 | 17 | exit; |
18 | 18 | } |
19 | 19 | |
@@ -25,67 +25,67 @@ discard block |
||
25 | 25 | */ |
26 | 26 | function give_do_automatic_upgrades() { |
27 | 27 | $did_upgrade = false; |
28 | - $give_version = preg_replace( '/[^0-9.].*/', '', get_option( 'give_version' ) ); |
|
28 | + $give_version = preg_replace('/[^0-9.].*/', '', get_option('give_version')); |
|
29 | 29 | |
30 | - if ( ! $give_version ) { |
|
30 | + if ( ! $give_version) { |
|
31 | 31 | // 1.0 is the first version to use this option so we must add it. |
32 | 32 | $give_version = '1.0'; |
33 | 33 | } |
34 | 34 | |
35 | - switch ( true ) { |
|
35 | + switch (true) { |
|
36 | 36 | |
37 | - case version_compare( $give_version, '1.6', '<' ) : |
|
37 | + case version_compare($give_version, '1.6', '<') : |
|
38 | 38 | give_v16_upgrades(); |
39 | 39 | $did_upgrade = true; |
40 | 40 | |
41 | - case version_compare( $give_version, '1.7', '<' ) : |
|
41 | + case version_compare($give_version, '1.7', '<') : |
|
42 | 42 | give_v17_upgrades(); |
43 | 43 | $did_upgrade = true; |
44 | 44 | |
45 | - case version_compare( $give_version, '1.8', '<' ) : |
|
45 | + case version_compare($give_version, '1.8', '<') : |
|
46 | 46 | give_v18_upgrades(); |
47 | 47 | $did_upgrade = true; |
48 | 48 | |
49 | - case version_compare( $give_version, '1.8.7', '<' ) : |
|
49 | + case version_compare($give_version, '1.8.7', '<') : |
|
50 | 50 | give_v187_upgrades(); |
51 | 51 | $did_upgrade = true; |
52 | 52 | |
53 | - case version_compare( $give_version, '1.8.8', '<' ) : |
|
53 | + case version_compare($give_version, '1.8.8', '<') : |
|
54 | 54 | give_v188_upgrades(); |
55 | 55 | $did_upgrade = true; |
56 | 56 | |
57 | - case version_compare( $give_version, '1.8.9', '<' ) : |
|
57 | + case version_compare($give_version, '1.8.9', '<') : |
|
58 | 58 | give_v189_upgrades(); |
59 | 59 | $did_upgrade = true; |
60 | 60 | |
61 | - case version_compare( $give_version, '1.8.12', '<' ) : |
|
61 | + case version_compare($give_version, '1.8.12', '<') : |
|
62 | 62 | give_v1812_upgrades(); |
63 | 63 | $did_upgrade = true; |
64 | 64 | |
65 | - case version_compare( $give_version, '1.8.13', '<' ) : |
|
65 | + case version_compare($give_version, '1.8.13', '<') : |
|
66 | 66 | give_v1813_upgrades(); |
67 | 67 | $did_upgrade = true; |
68 | 68 | |
69 | - case version_compare( $give_version, '1.8.17', '<' ) : |
|
69 | + case version_compare($give_version, '1.8.17', '<') : |
|
70 | 70 | give_v1817_upgrades(); |
71 | 71 | $did_upgrade = true; |
72 | 72 | |
73 | - case version_compare( $give_version, '1.8.18', '<' ) : |
|
73 | + case version_compare($give_version, '1.8.18', '<') : |
|
74 | 74 | give_v1818_upgrades(); |
75 | 75 | $did_upgrade = true; |
76 | 76 | |
77 | - case version_compare( $give_version, '2.0', '<' ) : |
|
77 | + case version_compare($give_version, '2.0', '<') : |
|
78 | 78 | give_v20_upgrades(); |
79 | 79 | $did_upgrade = true; |
80 | 80 | } |
81 | 81 | |
82 | - if ( $did_upgrade ) { |
|
83 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
82 | + if ($did_upgrade) { |
|
83 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
84 | 84 | } |
85 | 85 | } |
86 | 86 | |
87 | -add_action( 'admin_init', 'give_do_automatic_upgrades' ); |
|
88 | -add_action( 'give_upgrades', 'give_do_automatic_upgrades' ); |
|
87 | +add_action('admin_init', 'give_do_automatic_upgrades'); |
|
88 | +add_action('give_upgrades', 'give_do_automatic_upgrades'); |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * Display Upgrade Notices. |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | * |
100 | 100 | * @return void |
101 | 101 | */ |
102 | -function give_show_upgrade_notices( $give_updates ) { |
|
102 | +function give_show_upgrade_notices($give_updates) { |
|
103 | 103 | // v1.3.2 Upgrades |
104 | 104 | $give_updates->register( |
105 | 105 | array( |
@@ -165,32 +165,32 @@ discard block |
||
165 | 165 | ); |
166 | 166 | |
167 | 167 | // v1.8.17 Upgrades for donations. |
168 | - $give_updates->register( array( |
|
168 | + $give_updates->register(array( |
|
169 | 169 | 'id' => 'v1817_update_donation_iranian_currency_code', |
170 | 170 | 'version' => '1.8.17', |
171 | 171 | 'callback' => 'give_v1817_update_donation_iranian_currency_code', |
172 | - ) ); |
|
172 | + )); |
|
173 | 173 | |
174 | 174 | // v1.8.17 Upgrades for cleanup of user roles. |
175 | - $give_updates->register( array( |
|
175 | + $give_updates->register(array( |
|
176 | 176 | 'id' => 'v1817_cleanup_user_roles', |
177 | 177 | 'version' => '1.8.17', |
178 | 178 | 'callback' => 'give_v1817_cleanup_user_roles', |
179 | - ) ); |
|
179 | + )); |
|
180 | 180 | |
181 | 181 | // v1.8.18 Upgrades for assigning custom amount to existing set donations. |
182 | - $give_updates->register( array( |
|
182 | + $give_updates->register(array( |
|
183 | 183 | 'id' => 'v1818_assign_custom_amount_set_donation', |
184 | 184 | 'version' => '1.8.18', |
185 | 185 | 'callback' => 'give_v1818_assign_custom_amount_set_donation', |
186 | - ) ); |
|
186 | + )); |
|
187 | 187 | |
188 | 188 | // v1.8.18 Cleanup the Give Worker Role Caps. |
189 | - $give_updates->register( array( |
|
189 | + $give_updates->register(array( |
|
190 | 190 | 'id' => 'v1818_give_worker_role_cleanup', |
191 | 191 | 'version' => '1.8.18', |
192 | 192 | 'callback' => 'give_v1818_give_worker_role_cleanup', |
193 | - ) ); |
|
193 | + )); |
|
194 | 194 | |
195 | 195 | // v2.0.0 Upgrades |
196 | 196 | $give_updates->register( |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | 'id' => 'v20_move_metadata_into_new_table', |
245 | 245 | 'version' => '2.0.0', |
246 | 246 | 'callback' => 'give_v20_move_metadata_into_new_table_callback', |
247 | - 'depend' => array( 'v20_upgrades_payment_metadata', 'v20_upgrades_form_metadata' ), |
|
247 | + 'depend' => array('v20_upgrades_payment_metadata', 'v20_upgrades_form_metadata'), |
|
248 | 248 | ) |
249 | 249 | ); |
250 | 250 | |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | ); |
267 | 267 | } |
268 | 268 | |
269 | -add_action( 'give_register_updates', 'give_show_upgrade_notices' ); |
|
269 | +add_action('give_register_updates', 'give_show_upgrade_notices'); |
|
270 | 270 | |
271 | 271 | /** |
272 | 272 | * Triggers all upgrade functions |
@@ -278,29 +278,29 @@ discard block |
||
278 | 278 | */ |
279 | 279 | function give_trigger_upgrades() { |
280 | 280 | |
281 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
282 | - wp_die( esc_html__( 'You do not have permission to do Give upgrades.', 'give' ), esc_html__( 'Error', 'give' ), array( |
|
281 | + if ( ! current_user_can('manage_give_settings')) { |
|
282 | + wp_die(esc_html__('You do not have permission to do Give upgrades.', 'give'), esc_html__('Error', 'give'), array( |
|
283 | 283 | 'response' => 403, |
284 | - ) ); |
|
284 | + )); |
|
285 | 285 | } |
286 | 286 | |
287 | - $give_version = get_option( 'give_version' ); |
|
287 | + $give_version = get_option('give_version'); |
|
288 | 288 | |
289 | - if ( ! $give_version ) { |
|
289 | + if ( ! $give_version) { |
|
290 | 290 | // 1.0 is the first version to use this option so we must add it. |
291 | 291 | $give_version = '1.0'; |
292 | - add_option( 'give_version', $give_version ); |
|
292 | + add_option('give_version', $give_version); |
|
293 | 293 | } |
294 | 294 | |
295 | - update_option( 'give_version', GIVE_VERSION ); |
|
296 | - delete_option( 'give_doing_upgrade' ); |
|
295 | + update_option('give_version', GIVE_VERSION); |
|
296 | + delete_option('give_doing_upgrade'); |
|
297 | 297 | |
298 | - if ( DOING_AJAX ) { |
|
299 | - die( 'complete' ); |
|
298 | + if (DOING_AJAX) { |
|
299 | + die('complete'); |
|
300 | 300 | } // End if(). |
301 | 301 | } |
302 | 302 | |
303 | -add_action( 'wp_ajax_give_trigger_upgrades', 'give_trigger_upgrades' ); |
|
303 | +add_action('wp_ajax_give_trigger_upgrades', 'give_trigger_upgrades'); |
|
304 | 304 | |
305 | 305 | |
306 | 306 | /** |
@@ -316,20 +316,20 @@ discard block |
||
316 | 316 | /* @var Give_Updates $give_updates */ |
317 | 317 | $give_updates = Give_Updates::get_instance(); |
318 | 318 | |
319 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
320 | - wp_die( esc_html__( 'You do not have permission to do Give upgrades.', 'give' ), esc_html__( 'Error', 'give' ), array( |
|
319 | + if ( ! current_user_can('manage_give_settings')) { |
|
320 | + wp_die(esc_html__('You do not have permission to do Give upgrades.', 'give'), esc_html__('Error', 'give'), array( |
|
321 | 321 | 'response' => 403, |
322 | - ) ); |
|
322 | + )); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | give_ignore_user_abort(); |
326 | 326 | |
327 | 327 | // UPDATE DB METAKEYS. |
328 | 328 | $sql = "UPDATE $wpdb->postmeta SET meta_key = '_give_payment_customer_id' WHERE meta_key = '_give_payment_donor_id'"; |
329 | - $query = $wpdb->query( $sql ); |
|
329 | + $query = $wpdb->query($sql); |
|
330 | 330 | |
331 | 331 | $give_updates->percentage = 100; |
332 | - give_set_upgrade_complete( 'upgrade_give_payment_customer_id' ); |
|
332 | + give_set_upgrade_complete('upgrade_give_payment_customer_id'); |
|
333 | 333 | } |
334 | 334 | |
335 | 335 | |
@@ -353,24 +353,24 @@ discard block |
||
353 | 353 | $where .= "AND ( p.post_status = 'abandoned' )"; |
354 | 354 | $where .= "AND ( m.meta_key = '_give_payment_gateway' AND m.meta_value = 'offline' )"; |
355 | 355 | |
356 | - $sql = $select . $join . $where; |
|
357 | - $found_payments = $wpdb->get_col( $sql ); |
|
356 | + $sql = $select.$join.$where; |
|
357 | + $found_payments = $wpdb->get_col($sql); |
|
358 | 358 | |
359 | - foreach ( $found_payments as $payment ) { |
|
359 | + foreach ($found_payments as $payment) { |
|
360 | 360 | |
361 | 361 | // Only change ones marked abandoned since our release last week because the admin may have marked some abandoned themselves. |
362 | - $modified_time = get_post_modified_time( 'U', false, $payment ); |
|
362 | + $modified_time = get_post_modified_time('U', false, $payment); |
|
363 | 363 | |
364 | 364 | // 1450124863 = 12/10/2015 20:42:25. |
365 | - if ( $modified_time >= 1450124863 ) { |
|
365 | + if ($modified_time >= 1450124863) { |
|
366 | 366 | |
367 | - give_update_payment_status( $payment, 'pending' ); |
|
367 | + give_update_payment_status($payment, 'pending'); |
|
368 | 368 | |
369 | 369 | } |
370 | 370 | } |
371 | 371 | |
372 | 372 | $give_updates->percentage = 100; |
373 | - give_set_upgrade_complete( 'upgrade_give_offline_status' ); |
|
373 | + give_set_upgrade_complete('upgrade_give_offline_status'); |
|
374 | 374 | } |
375 | 375 | |
376 | 376 | |
@@ -383,17 +383,17 @@ discard block |
||
383 | 383 | */ |
384 | 384 | function give_v152_cleanup_users() { |
385 | 385 | |
386 | - $give_version = get_option( 'give_version' ); |
|
386 | + $give_version = get_option('give_version'); |
|
387 | 387 | |
388 | - if ( ! $give_version ) { |
|
388 | + if ( ! $give_version) { |
|
389 | 389 | // 1.0 is the first version to use this option so we must add it. |
390 | 390 | $give_version = '1.0'; |
391 | 391 | } |
392 | 392 | |
393 | - $give_version = preg_replace( '/[^0-9.].*/', '', $give_version ); |
|
393 | + $give_version = preg_replace('/[^0-9.].*/', '', $give_version); |
|
394 | 394 | |
395 | 395 | // v1.5.2 Upgrades |
396 | - if ( version_compare( $give_version, '1.5.2', '<' ) || ! give_has_upgrade_completed( 'upgrade_give_user_caps_cleanup' ) ) { |
|
396 | + if (version_compare($give_version, '1.5.2', '<') || ! give_has_upgrade_completed('upgrade_give_user_caps_cleanup')) { |
|
397 | 397 | |
398 | 398 | // Delete all caps with "ss". |
399 | 399 | // Also delete all unused "campaign" roles. |
@@ -440,9 +440,9 @@ discard block |
||
440 | 440 | ); |
441 | 441 | |
442 | 442 | global $wp_roles; |
443 | - foreach ( $delete_caps as $cap ) { |
|
444 | - foreach ( array_keys( $wp_roles->roles ) as $role ) { |
|
445 | - $wp_roles->remove_cap( $role, $cap ); |
|
443 | + foreach ($delete_caps as $cap) { |
|
444 | + foreach (array_keys($wp_roles->roles) as $role) { |
|
445 | + $wp_roles->remove_cap($role, $cap); |
|
446 | 446 | } |
447 | 447 | } |
448 | 448 | |
@@ -452,15 +452,15 @@ discard block |
||
452 | 452 | $roles->add_caps(); |
453 | 453 | |
454 | 454 | // The Update Ran. |
455 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
456 | - give_set_upgrade_complete( 'upgrade_give_user_caps_cleanup' ); |
|
457 | - delete_option( 'give_doing_upgrade' ); |
|
455 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
456 | + give_set_upgrade_complete('upgrade_give_user_caps_cleanup'); |
|
457 | + delete_option('give_doing_upgrade'); |
|
458 | 458 | |
459 | 459 | }// End if(). |
460 | 460 | |
461 | 461 | } |
462 | 462 | |
463 | -add_action( 'admin_init', 'give_v152_cleanup_users' ); |
|
463 | +add_action('admin_init', 'give_v152_cleanup_users'); |
|
464 | 464 | |
465 | 465 | /** |
466 | 466 | * 1.6 Upgrade routine to create the customer meta table. |
@@ -503,53 +503,53 @@ discard block |
||
503 | 503 | |
504 | 504 | // Get addons license key. |
505 | 505 | $addons = array(); |
506 | - foreach ( $give_options as $key => $value ) { |
|
507 | - if ( false !== strpos( $key, '_license_key' ) ) { |
|
508 | - $addons[ $key ] = $value; |
|
506 | + foreach ($give_options as $key => $value) { |
|
507 | + if (false !== strpos($key, '_license_key')) { |
|
508 | + $addons[$key] = $value; |
|
509 | 509 | } |
510 | 510 | } |
511 | 511 | |
512 | 512 | // Bailout: We do not have any addon license data to upgrade. |
513 | - if ( empty( $addons ) ) { |
|
513 | + if (empty($addons)) { |
|
514 | 514 | return false; |
515 | 515 | } |
516 | 516 | |
517 | - foreach ( $addons as $key => $addon_license ) { |
|
517 | + foreach ($addons as $key => $addon_license) { |
|
518 | 518 | |
519 | 519 | // Get addon shortname. |
520 | - $shortname = str_replace( '_license_key', '', $key ); |
|
520 | + $shortname = str_replace('_license_key', '', $key); |
|
521 | 521 | |
522 | 522 | // Addon license option name. |
523 | - $addon_license_option_name = $shortname . '_license_active'; |
|
523 | + $addon_license_option_name = $shortname.'_license_active'; |
|
524 | 524 | |
525 | 525 | // bailout if license is empty. |
526 | - if ( empty( $addon_license ) ) { |
|
527 | - delete_option( $addon_license_option_name ); |
|
526 | + if (empty($addon_license)) { |
|
527 | + delete_option($addon_license_option_name); |
|
528 | 528 | continue; |
529 | 529 | } |
530 | 530 | |
531 | 531 | // Get addon name. |
532 | 532 | $addon_name = array(); |
533 | - $addon_name_parts = explode( '_', str_replace( 'give_', '', $shortname ) ); |
|
534 | - foreach ( $addon_name_parts as $name_part ) { |
|
533 | + $addon_name_parts = explode('_', str_replace('give_', '', $shortname)); |
|
534 | + foreach ($addon_name_parts as $name_part) { |
|
535 | 535 | |
536 | 536 | // Fix addon name |
537 | - switch ( $name_part ) { |
|
537 | + switch ($name_part) { |
|
538 | 538 | case 'authorizenet' : |
539 | 539 | $name_part = 'authorize.net'; |
540 | 540 | break; |
541 | 541 | } |
542 | 542 | |
543 | - $addon_name[] = ucfirst( $name_part ); |
|
543 | + $addon_name[] = ucfirst($name_part); |
|
544 | 544 | } |
545 | 545 | |
546 | - $addon_name = implode( ' ', $addon_name ); |
|
546 | + $addon_name = implode(' ', $addon_name); |
|
547 | 547 | |
548 | 548 | // Data to send to the API. |
549 | 549 | $api_params = array( |
550 | 550 | 'edd_action' => 'activate_license', // never change from "edd_" to "give_"! |
551 | 551 | 'license' => $addon_license, |
552 | - 'item_name' => urlencode( $addon_name ), |
|
552 | + 'item_name' => urlencode($addon_name), |
|
553 | 553 | 'url' => home_url(), |
554 | 554 | ); |
555 | 555 | |
@@ -564,17 +564,17 @@ discard block |
||
564 | 564 | ); |
565 | 565 | |
566 | 566 | // Make sure there are no errors. |
567 | - if ( is_wp_error( $response ) ) { |
|
568 | - delete_option( $addon_license_option_name ); |
|
567 | + if (is_wp_error($response)) { |
|
568 | + delete_option($addon_license_option_name); |
|
569 | 569 | continue; |
570 | 570 | } |
571 | 571 | |
572 | 572 | // Tell WordPress to look for updates. |
573 | - set_site_transient( 'update_plugins', null ); |
|
573 | + set_site_transient('update_plugins', null); |
|
574 | 574 | |
575 | 575 | // Decode license data. |
576 | - $license_data = json_decode( wp_remote_retrieve_body( $response ) ); |
|
577 | - update_option( $addon_license_option_name, $license_data ); |
|
576 | + $license_data = json_decode(wp_remote_retrieve_body($response)); |
|
577 | + update_option($addon_license_option_name, $license_data); |
|
578 | 578 | }// End foreach(). |
579 | 579 | } |
580 | 580 | |
@@ -604,9 +604,9 @@ discard block |
||
604 | 604 | ); |
605 | 605 | |
606 | 606 | global $wp_roles; |
607 | - foreach ( $delete_caps as $cap ) { |
|
608 | - foreach ( array_keys( $wp_roles->roles ) as $role ) { |
|
609 | - $wp_roles->remove_cap( $role, $cap ); |
|
607 | + foreach ($delete_caps as $cap) { |
|
608 | + foreach (array_keys($wp_roles->roles) as $role) { |
|
609 | + $wp_roles->remove_cap($role, $cap); |
|
610 | 610 | } |
611 | 611 | } |
612 | 612 | |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | function give_v18_upgrades_core_setting() { |
641 | 641 | // Core settings which changes from checkbox to radio. |
642 | 642 | $core_setting_names = array_merge( |
643 | - array_keys( give_v18_renamed_core_settings() ), |
|
643 | + array_keys(give_v18_renamed_core_settings()), |
|
644 | 644 | array( |
645 | 645 | 'uninstall_on_delete', |
646 | 646 | 'scripts_footer', |
@@ -652,48 +652,48 @@ discard block |
||
652 | 652 | ); |
653 | 653 | |
654 | 654 | // Bailout: If not any setting define. |
655 | - if ( $give_settings = get_option( 'give_settings' ) ) { |
|
655 | + if ($give_settings = get_option('give_settings')) { |
|
656 | 656 | |
657 | 657 | $setting_changed = false; |
658 | 658 | |
659 | 659 | // Loop: check each setting field. |
660 | - foreach ( $core_setting_names as $setting_name ) { |
|
660 | + foreach ($core_setting_names as $setting_name) { |
|
661 | 661 | // New setting name. |
662 | - $new_setting_name = preg_replace( '/^(enable_|disable_)/', '', $setting_name ); |
|
662 | + $new_setting_name = preg_replace('/^(enable_|disable_)/', '', $setting_name); |
|
663 | 663 | |
664 | 664 | // Continue: If setting already set. |
665 | 665 | if ( |
666 | - array_key_exists( $new_setting_name, $give_settings ) |
|
667 | - && in_array( $give_settings[ $new_setting_name ], array( 'enabled', 'disabled' ) ) |
|
666 | + array_key_exists($new_setting_name, $give_settings) |
|
667 | + && in_array($give_settings[$new_setting_name], array('enabled', 'disabled')) |
|
668 | 668 | ) { |
669 | 669 | continue; |
670 | 670 | } |
671 | 671 | |
672 | 672 | // Set checkbox value to radio value. |
673 | - $give_settings[ $setting_name ] = ( ! empty( $give_settings[ $setting_name ] ) && 'on' === $give_settings[ $setting_name ] ? 'enabled' : 'disabled' ); |
|
673 | + $give_settings[$setting_name] = ( ! empty($give_settings[$setting_name]) && 'on' === $give_settings[$setting_name] ? 'enabled' : 'disabled'); |
|
674 | 674 | |
675 | 675 | // @see https://github.com/WordImpress/Give/issues/1063. |
676 | - if ( false !== strpos( $setting_name, 'disable_' ) ) { |
|
676 | + if (false !== strpos($setting_name, 'disable_')) { |
|
677 | 677 | |
678 | - $give_settings[ $new_setting_name ] = ( give_is_setting_enabled( $give_settings[ $setting_name ] ) ? 'disabled' : 'enabled' ); |
|
679 | - } elseif ( false !== strpos( $setting_name, 'enable_' ) ) { |
|
678 | + $give_settings[$new_setting_name] = (give_is_setting_enabled($give_settings[$setting_name]) ? 'disabled' : 'enabled'); |
|
679 | + } elseif (false !== strpos($setting_name, 'enable_')) { |
|
680 | 680 | |
681 | - $give_settings[ $new_setting_name ] = ( give_is_setting_enabled( $give_settings[ $setting_name ] ) ? 'enabled' : 'disabled' ); |
|
681 | + $give_settings[$new_setting_name] = (give_is_setting_enabled($give_settings[$setting_name]) ? 'enabled' : 'disabled'); |
|
682 | 682 | } |
683 | 683 | |
684 | 684 | // Tell bot to update core setting to db. |
685 | - if ( ! $setting_changed ) { |
|
685 | + if ( ! $setting_changed) { |
|
686 | 686 | $setting_changed = true; |
687 | 687 | } |
688 | 688 | } |
689 | 689 | |
690 | 690 | // Update setting only if they changed. |
691 | - if ( $setting_changed ) { |
|
692 | - update_option( 'give_settings', $give_settings ); |
|
691 | + if ($setting_changed) { |
|
692 | + update_option('give_settings', $give_settings); |
|
693 | 693 | } |
694 | 694 | }// End if(). |
695 | 695 | |
696 | - give_set_upgrade_complete( 'v18_upgrades_core_setting' ); |
|
696 | + give_set_upgrade_complete('v18_upgrades_core_setting'); |
|
697 | 697 | } |
698 | 698 | |
699 | 699 | /** |
@@ -707,7 +707,7 @@ discard block |
||
707 | 707 | $give_updates = Give_Updates::get_instance(); |
708 | 708 | |
709 | 709 | // form query |
710 | - $forms = new WP_Query( array( |
|
710 | + $forms = new WP_Query(array( |
|
711 | 711 | 'paged' => $give_updates->step, |
712 | 712 | 'status' => 'any', |
713 | 713 | 'order' => 'ASC', |
@@ -716,41 +716,41 @@ discard block |
||
716 | 716 | ) |
717 | 717 | ); |
718 | 718 | |
719 | - if ( $forms->have_posts() ) { |
|
720 | - $give_updates->set_percentage( $forms->found_posts, ( $give_updates->step * 20 ) ); |
|
719 | + if ($forms->have_posts()) { |
|
720 | + $give_updates->set_percentage($forms->found_posts, ($give_updates->step * 20)); |
|
721 | 721 | |
722 | - while ( $forms->have_posts() ) { |
|
722 | + while ($forms->have_posts()) { |
|
723 | 723 | $forms->the_post(); |
724 | 724 | |
725 | 725 | // Form content. |
726 | 726 | // Note in version 1.8 display content setting split into display content and content placement setting. |
727 | 727 | // You can delete _give_content_option in future. |
728 | - $show_content = give_get_meta( get_the_ID(), '_give_content_option', true ); |
|
729 | - if ( $show_content && ! give_get_meta( get_the_ID(), '_give_display_content', true ) ) { |
|
730 | - $field_value = ( 'none' !== $show_content ? 'enabled' : 'disabled' ); |
|
731 | - give_update_meta( get_the_ID(), '_give_display_content', $field_value ); |
|
728 | + $show_content = give_get_meta(get_the_ID(), '_give_content_option', true); |
|
729 | + if ($show_content && ! give_get_meta(get_the_ID(), '_give_display_content', true)) { |
|
730 | + $field_value = ('none' !== $show_content ? 'enabled' : 'disabled'); |
|
731 | + give_update_meta(get_the_ID(), '_give_display_content', $field_value); |
|
732 | 732 | |
733 | - $field_value = ( 'none' !== $show_content ? $show_content : 'give_pre_form' ); |
|
734 | - give_update_meta( get_the_ID(), '_give_content_placement', $field_value ); |
|
733 | + $field_value = ('none' !== $show_content ? $show_content : 'give_pre_form'); |
|
734 | + give_update_meta(get_the_ID(), '_give_content_placement', $field_value); |
|
735 | 735 | } |
736 | 736 | |
737 | 737 | // "Disable" Guest Donation. Checkbox. |
738 | 738 | // See: https://github.com/WordImpress/Give/issues/1470. |
739 | - $guest_donation = give_get_meta( get_the_ID(), '_give_logged_in_only', true ); |
|
740 | - $guest_donation_newval = ( in_array( $guest_donation, array( 'yes', 'on' ) ) ? 'disabled' : 'enabled' ); |
|
741 | - give_update_meta( get_the_ID(), '_give_logged_in_only', $guest_donation_newval ); |
|
739 | + $guest_donation = give_get_meta(get_the_ID(), '_give_logged_in_only', true); |
|
740 | + $guest_donation_newval = (in_array($guest_donation, array('yes', 'on')) ? 'disabled' : 'enabled'); |
|
741 | + give_update_meta(get_the_ID(), '_give_logged_in_only', $guest_donation_newval); |
|
742 | 742 | |
743 | 743 | // Offline Donations. |
744 | 744 | // See: https://github.com/WordImpress/Give/issues/1579. |
745 | - $offline_donation = give_get_meta( get_the_ID(), '_give_customize_offline_donations', true ); |
|
746 | - if ( 'no' === $offline_donation ) { |
|
745 | + $offline_donation = give_get_meta(get_the_ID(), '_give_customize_offline_donations', true); |
|
746 | + if ('no' === $offline_donation) { |
|
747 | 747 | $offline_donation_newval = 'global'; |
748 | - } elseif ( 'yes' === $offline_donation ) { |
|
748 | + } elseif ('yes' === $offline_donation) { |
|
749 | 749 | $offline_donation_newval = 'enabled'; |
750 | 750 | } else { |
751 | 751 | $offline_donation_newval = 'disabled'; |
752 | 752 | } |
753 | - give_update_meta( get_the_ID(), '_give_customize_offline_donations', $offline_donation_newval ); |
|
753 | + give_update_meta(get_the_ID(), '_give_customize_offline_donations', $offline_donation_newval); |
|
754 | 754 | |
755 | 755 | // Convert yes/no setting field to enabled/disabled. |
756 | 756 | $form_radio_settings = array( |
@@ -770,15 +770,15 @@ discard block |
||
770 | 770 | '_give_offline_donation_enable_billing_fields_single', |
771 | 771 | ); |
772 | 772 | |
773 | - foreach ( $form_radio_settings as $meta_key ) { |
|
773 | + foreach ($form_radio_settings as $meta_key) { |
|
774 | 774 | // Get value. |
775 | - $field_value = give_get_meta( get_the_ID(), $meta_key, true ); |
|
775 | + $field_value = give_get_meta(get_the_ID(), $meta_key, true); |
|
776 | 776 | |
777 | 777 | // Convert meta value only if it is in yes/no/none. |
778 | - if ( in_array( $field_value, array( 'yes', 'on', 'no', 'none' ) ) ) { |
|
778 | + if (in_array($field_value, array('yes', 'on', 'no', 'none'))) { |
|
779 | 779 | |
780 | - $field_value = ( in_array( $field_value, array( 'yes', 'on' ) ) ? 'enabled' : 'disabled' ); |
|
781 | - give_update_meta( get_the_ID(), $meta_key, $field_value ); |
|
780 | + $field_value = (in_array($field_value, array('yes', 'on')) ? 'enabled' : 'disabled'); |
|
781 | + give_update_meta(get_the_ID(), $meta_key, $field_value); |
|
782 | 782 | } |
783 | 783 | } |
784 | 784 | }// End while(). |
@@ -787,7 +787,7 @@ discard block |
||
787 | 787 | |
788 | 788 | } else { |
789 | 789 | // No more forms found, finish up. |
790 | - give_set_upgrade_complete( 'v18_upgrades_form_metadata' ); |
|
790 | + give_set_upgrade_complete('v18_upgrades_form_metadata'); |
|
791 | 791 | } |
792 | 792 | } |
793 | 793 | |
@@ -854,7 +854,7 @@ discard block |
||
854 | 854 | '%_transient_give_stats_%', |
855 | 855 | 'give_cache%', |
856 | 856 | '%_transient_give_add_ons_feed%', |
857 | - '%_transient__give_ajax_works' . |
|
857 | + '%_transient__give_ajax_works'. |
|
858 | 858 | '%_transient_give_total_api_keys%', |
859 | 859 | '%_transient_give_i18n_give_promo_hide%', |
860 | 860 | '%_transient_give_contributors%', |
@@ -881,24 +881,24 @@ discard block |
||
881 | 881 | ARRAY_A |
882 | 882 | ); |
883 | 883 | |
884 | - if ( ! empty( $user_apikey_options ) ) { |
|
885 | - foreach ( $user_apikey_options as $user ) { |
|
886 | - $cached_options[] = '_transient_' . md5( 'give_api_user_' . $user['meta_key'] ); |
|
887 | - $cached_options[] = '_transient_' . md5( 'give_api_user_public_key' . $user['user_id'] ); |
|
888 | - $cached_options[] = '_transient_' . md5( 'give_api_user_secret_key' . $user['user_id'] ); |
|
884 | + if ( ! empty($user_apikey_options)) { |
|
885 | + foreach ($user_apikey_options as $user) { |
|
886 | + $cached_options[] = '_transient_'.md5('give_api_user_'.$user['meta_key']); |
|
887 | + $cached_options[] = '_transient_'.md5('give_api_user_public_key'.$user['user_id']); |
|
888 | + $cached_options[] = '_transient_'.md5('give_api_user_secret_key'.$user['user_id']); |
|
889 | 889 | } |
890 | 890 | } |
891 | 891 | |
892 | - if ( ! empty( $cached_options ) ) { |
|
893 | - foreach ( $cached_options as $option ) { |
|
894 | - switch ( true ) { |
|
895 | - case ( false !== strpos( $option, 'transient' ) ): |
|
896 | - $option = str_replace( '_transient_', '', $option ); |
|
897 | - delete_transient( $option ); |
|
892 | + if ( ! empty($cached_options)) { |
|
893 | + foreach ($cached_options as $option) { |
|
894 | + switch (true) { |
|
895 | + case (false !== strpos($option, 'transient')): |
|
896 | + $option = str_replace('_transient_', '', $option); |
|
897 | + delete_transient($option); |
|
898 | 898 | break; |
899 | 899 | |
900 | 900 | default: |
901 | - delete_option( $option ); |
|
901 | + delete_option($option); |
|
902 | 902 | } |
903 | 903 | } |
904 | 904 | } |
@@ -916,7 +916,7 @@ discard block |
||
916 | 916 | global $wp_roles; |
917 | 917 | |
918 | 918 | // Get the role object. |
919 | - $give_worker = get_role( 'give_worker' ); |
|
919 | + $give_worker = get_role('give_worker'); |
|
920 | 920 | |
921 | 921 | // A list of capabilities to add for give workers. |
922 | 922 | $caps_to_add = array( |
@@ -924,9 +924,9 @@ discard block |
||
924 | 924 | 'edit_pages', |
925 | 925 | ); |
926 | 926 | |
927 | - foreach ( $caps_to_add as $cap ) { |
|
927 | + foreach ($caps_to_add as $cap) { |
|
928 | 928 | // Add the capability. |
929 | - $give_worker->add_cap( $cap ); |
|
929 | + $give_worker->add_cap($cap); |
|
930 | 930 | } |
931 | 931 | |
932 | 932 | } |
@@ -943,7 +943,7 @@ discard block |
||
943 | 943 | $give_updates = Give_Updates::get_instance(); |
944 | 944 | |
945 | 945 | // form query. |
946 | - $donation_forms = new WP_Query( array( |
|
946 | + $donation_forms = new WP_Query(array( |
|
947 | 947 | 'paged' => $give_updates->step, |
948 | 948 | 'status' => 'any', |
949 | 949 | 'order' => 'ASC', |
@@ -952,10 +952,10 @@ discard block |
||
952 | 952 | ) |
953 | 953 | ); |
954 | 954 | |
955 | - if ( $donation_forms->have_posts() ) { |
|
956 | - $give_updates->set_percentage( $donation_forms->found_posts, ( $give_updates->step * 20 ) ); |
|
955 | + if ($donation_forms->have_posts()) { |
|
956 | + $give_updates->set_percentage($donation_forms->found_posts, ($give_updates->step * 20)); |
|
957 | 957 | |
958 | - while ( $donation_forms->have_posts() ) { |
|
958 | + while ($donation_forms->have_posts()) { |
|
959 | 959 | $donation_forms->the_post(); |
960 | 960 | $form_id = get_the_ID(); |
961 | 961 | |
@@ -963,41 +963,41 @@ discard block |
||
963 | 963 | update_post_meta( |
964 | 964 | $form_id, |
965 | 965 | '_give_set_price', |
966 | - give_sanitize_amount( get_post_meta( $form_id, '_give_set_price', true ) ) |
|
966 | + give_sanitize_amount(get_post_meta($form_id, '_give_set_price', true)) |
|
967 | 967 | ); |
968 | 968 | |
969 | 969 | // Remove formatting from _give_custom_amount_minimum. |
970 | 970 | update_post_meta( |
971 | 971 | $form_id, |
972 | 972 | '_give_custom_amount_minimum', |
973 | - give_sanitize_amount( get_post_meta( $form_id, '_give_custom_amount_minimum', true ) ) |
|
973 | + give_sanitize_amount(get_post_meta($form_id, '_give_custom_amount_minimum', true)) |
|
974 | 974 | ); |
975 | 975 | |
976 | 976 | // Bailout. |
977 | - if ( 'set' === get_post_meta( $form_id, '_give_price_option', true ) ) { |
|
977 | + if ('set' === get_post_meta($form_id, '_give_price_option', true)) { |
|
978 | 978 | continue; |
979 | 979 | } |
980 | 980 | |
981 | - $donation_levels = get_post_meta( $form_id, '_give_donation_levels', true ); |
|
981 | + $donation_levels = get_post_meta($form_id, '_give_donation_levels', true); |
|
982 | 982 | |
983 | - if ( ! empty( $donation_levels ) ) { |
|
983 | + if ( ! empty($donation_levels)) { |
|
984 | 984 | |
985 | - foreach ( $donation_levels as $index => $donation_level ) { |
|
986 | - if ( isset( $donation_level['_give_amount'] ) ) { |
|
987 | - $donation_levels[ $index ]['_give_amount'] = give_sanitize_amount( $donation_level['_give_amount'] ); |
|
985 | + foreach ($donation_levels as $index => $donation_level) { |
|
986 | + if (isset($donation_level['_give_amount'])) { |
|
987 | + $donation_levels[$index]['_give_amount'] = give_sanitize_amount($donation_level['_give_amount']); |
|
988 | 988 | } |
989 | 989 | } |
990 | 990 | |
991 | - update_post_meta( $form_id, '_give_donation_levels', $donation_levels ); |
|
991 | + update_post_meta($form_id, '_give_donation_levels', $donation_levels); |
|
992 | 992 | |
993 | - $donation_levels_amounts = wp_list_pluck( $donation_levels, '_give_amount' ); |
|
993 | + $donation_levels_amounts = wp_list_pluck($donation_levels, '_give_amount'); |
|
994 | 994 | |
995 | - $min_amount = min( $donation_levels_amounts ); |
|
996 | - $max_amount = max( $donation_levels_amounts ); |
|
995 | + $min_amount = min($donation_levels_amounts); |
|
996 | + $max_amount = max($donation_levels_amounts); |
|
997 | 997 | |
998 | 998 | // Set Minimum and Maximum amount for Multi Level Donation Forms |
999 | - give_update_meta( $form_id, '_give_levels_minimum_amount', $min_amount ? give_sanitize_amount( $min_amount ) : 0 ); |
|
1000 | - give_update_meta( $form_id, '_give_levels_maximum_amount', $max_amount ? give_sanitize_amount( $max_amount ) : 0 ); |
|
999 | + give_update_meta($form_id, '_give_levels_minimum_amount', $min_amount ? give_sanitize_amount($min_amount) : 0); |
|
1000 | + give_update_meta($form_id, '_give_levels_maximum_amount', $max_amount ? give_sanitize_amount($max_amount) : 0); |
|
1001 | 1001 | } |
1002 | 1002 | |
1003 | 1003 | } |
@@ -1006,7 +1006,7 @@ discard block |
||
1006 | 1006 | wp_reset_postdata(); |
1007 | 1007 | } else { |
1008 | 1008 | // The Update Ran. |
1009 | - give_set_upgrade_complete( 'v189_upgrades_levels_post_meta' ); |
|
1009 | + give_set_upgrade_complete('v189_upgrades_levels_post_meta'); |
|
1010 | 1010 | } |
1011 | 1011 | |
1012 | 1012 | } |
@@ -1056,7 +1056,7 @@ discard block |
||
1056 | 1056 | */ |
1057 | 1057 | function give_v20_upgrades() { |
1058 | 1058 | // Update cache setting. |
1059 | - give_update_option( 'cache', 'enabled' ); |
|
1059 | + give_update_option('cache', 'enabled'); |
|
1060 | 1060 | |
1061 | 1061 | // Upgrade email settings. |
1062 | 1062 | give_v20_upgrades_email_setting(); |
@@ -1075,7 +1075,7 @@ discard block |
||
1075 | 1075 | $all_setting = give_get_settings(); |
1076 | 1076 | |
1077 | 1077 | // Bailout on fresh install. |
1078 | - if ( empty( $all_setting ) ) { |
|
1078 | + if (empty($all_setting)) { |
|
1079 | 1079 | return; |
1080 | 1080 | } |
1081 | 1081 | |
@@ -1094,19 +1094,19 @@ discard block |
||
1094 | 1094 | 'admin_notices' => 'new-donation_notification', |
1095 | 1095 | ); |
1096 | 1096 | |
1097 | - foreach ( $settings as $old_setting => $new_setting ) { |
|
1097 | + foreach ($settings as $old_setting => $new_setting) { |
|
1098 | 1098 | // Do not update already modified |
1099 | - if ( ! is_array( $new_setting ) ) { |
|
1100 | - if ( array_key_exists( $new_setting, $all_setting ) || ! array_key_exists( $old_setting, $all_setting ) ) { |
|
1099 | + if ( ! is_array($new_setting)) { |
|
1100 | + if (array_key_exists($new_setting, $all_setting) || ! array_key_exists($old_setting, $all_setting)) { |
|
1101 | 1101 | continue; |
1102 | 1102 | } |
1103 | 1103 | } |
1104 | 1104 | |
1105 | - switch ( $old_setting ) { |
|
1105 | + switch ($old_setting) { |
|
1106 | 1106 | case 'admin_notices': |
1107 | - $notification_status = give_get_option( $old_setting, 'enabled' ); |
|
1107 | + $notification_status = give_get_option($old_setting, 'enabled'); |
|
1108 | 1108 | |
1109 | - give_update_option( $new_setting, $notification_status ); |
|
1109 | + give_update_option($new_setting, $notification_status); |
|
1110 | 1110 | |
1111 | 1111 | // @todo: Delete this option later ( version > 2.0 ), We need this for per form email addon. |
1112 | 1112 | // give_delete_option( $old_setting ); |
@@ -1117,19 +1117,19 @@ discard block |
||
1117 | 1117 | case 'admin_notice_emails': |
1118 | 1118 | $recipients = give_get_admin_notice_emails(); |
1119 | 1119 | |
1120 | - foreach ( $new_setting as $setting ) { |
|
1120 | + foreach ($new_setting as $setting) { |
|
1121 | 1121 | // bailout if setting already exist. |
1122 | - if ( array_key_exists( $setting, $all_setting ) ) { |
|
1122 | + if (array_key_exists($setting, $all_setting)) { |
|
1123 | 1123 | continue; |
1124 | 1124 | } |
1125 | 1125 | |
1126 | - give_update_option( $setting, $recipients ); |
|
1126 | + give_update_option($setting, $recipients); |
|
1127 | 1127 | } |
1128 | 1128 | break; |
1129 | 1129 | |
1130 | 1130 | default: |
1131 | - give_update_option( $new_setting, give_get_option( $old_setting ) ); |
|
1132 | - give_delete_option( $old_setting ); |
|
1131 | + give_update_option($new_setting, give_get_option($old_setting)); |
|
1132 | + give_delete_option($old_setting); |
|
1133 | 1133 | } |
1134 | 1134 | } |
1135 | 1135 | } |
@@ -1146,22 +1146,22 @@ discard block |
||
1146 | 1146 | $give_settings = give_get_settings(); |
1147 | 1147 | $give_setting_updated = false; |
1148 | 1148 | |
1149 | - if ( $give_settings['thousands_separator'] === $give_settings['decimal_separator'] ) { |
|
1149 | + if ($give_settings['thousands_separator'] === $give_settings['decimal_separator']) { |
|
1150 | 1150 | $give_settings['number_decimals'] = 0; |
1151 | 1151 | $give_settings['decimal_separator'] = ''; |
1152 | 1152 | $give_setting_updated = true; |
1153 | 1153 | |
1154 | - } elseif ( empty( $give_settings['decimal_separator'] ) ) { |
|
1154 | + } elseif (empty($give_settings['decimal_separator'])) { |
|
1155 | 1155 | $give_settings['number_decimals'] = 0; |
1156 | 1156 | $give_setting_updated = true; |
1157 | 1157 | |
1158 | - } elseif ( 6 < absint( $give_settings['number_decimals'] ) ) { |
|
1158 | + } elseif (6 < absint($give_settings['number_decimals'])) { |
|
1159 | 1159 | $give_settings['number_decimals'] = 5; |
1160 | 1160 | $give_setting_updated = true; |
1161 | 1161 | } |
1162 | 1162 | |
1163 | - if ( $give_setting_updated ) { |
|
1164 | - update_option( 'give_settings', $give_settings ); |
|
1163 | + if ($give_setting_updated) { |
|
1164 | + update_option('give_settings', $give_settings); |
|
1165 | 1165 | } |
1166 | 1166 | } |
1167 | 1167 | |
@@ -1180,69 +1180,69 @@ discard block |
||
1180 | 1180 | $give_updates = Give_Updates::get_instance(); |
1181 | 1181 | |
1182 | 1182 | // form query. |
1183 | - $donation_forms = new WP_Query( array( |
|
1183 | + $donation_forms = new WP_Query(array( |
|
1184 | 1184 | 'paged' => $give_updates->step, |
1185 | 1185 | 'status' => 'any', |
1186 | 1186 | 'order' => 'ASC', |
1187 | - 'post_type' => array( 'give_forms', 'give_payment' ), |
|
1187 | + 'post_type' => array('give_forms', 'give_payment'), |
|
1188 | 1188 | 'posts_per_page' => 20, |
1189 | 1189 | ) |
1190 | 1190 | ); |
1191 | - if ( $donation_forms->have_posts() ) { |
|
1192 | - $give_updates->set_percentage( $donation_forms->found_posts, ( $give_updates->step * 20 ) ); |
|
1191 | + if ($donation_forms->have_posts()) { |
|
1192 | + $give_updates->set_percentage($donation_forms->found_posts, ($give_updates->step * 20)); |
|
1193 | 1193 | |
1194 | - while ( $donation_forms->have_posts() ) { |
|
1194 | + while ($donation_forms->have_posts()) { |
|
1195 | 1195 | $donation_forms->the_post(); |
1196 | 1196 | global $post; |
1197 | 1197 | |
1198 | - $meta = get_post_meta( $post->ID ); |
|
1198 | + $meta = get_post_meta($post->ID); |
|
1199 | 1199 | |
1200 | - switch ( $post->post_type ) { |
|
1200 | + switch ($post->post_type) { |
|
1201 | 1201 | case 'give_forms': |
1202 | 1202 | // _give_set_price. |
1203 | - if ( ! empty( $meta['_give_set_price'][0] ) ) { |
|
1204 | - update_post_meta( $post->ID, '_give_set_price', give_sanitize_amount_for_db( $meta['_give_set_price'][0] ) ); |
|
1203 | + if ( ! empty($meta['_give_set_price'][0])) { |
|
1204 | + update_post_meta($post->ID, '_give_set_price', give_sanitize_amount_for_db($meta['_give_set_price'][0])); |
|
1205 | 1205 | } |
1206 | 1206 | |
1207 | 1207 | // _give_custom_amount_minimum. |
1208 | - if ( ! empty( $meta['_give_custom_amount_minimum'][0] ) ) { |
|
1209 | - update_post_meta( $post->ID, '_give_custom_amount_minimum', give_sanitize_amount_for_db( $meta['_give_custom_amount_minimum'][0] ) ); |
|
1208 | + if ( ! empty($meta['_give_custom_amount_minimum'][0])) { |
|
1209 | + update_post_meta($post->ID, '_give_custom_amount_minimum', give_sanitize_amount_for_db($meta['_give_custom_amount_minimum'][0])); |
|
1210 | 1210 | } |
1211 | 1211 | |
1212 | 1212 | // _give_levels_minimum_amount. |
1213 | - if ( ! empty( $meta['_give_levels_minimum_amount'][0] ) ) { |
|
1214 | - update_post_meta( $post->ID, '_give_levels_minimum_amount', give_sanitize_amount_for_db( $meta['_give_levels_minimum_amount'][0] ) ); |
|
1213 | + if ( ! empty($meta['_give_levels_minimum_amount'][0])) { |
|
1214 | + update_post_meta($post->ID, '_give_levels_minimum_amount', give_sanitize_amount_for_db($meta['_give_levels_minimum_amount'][0])); |
|
1215 | 1215 | } |
1216 | 1216 | |
1217 | 1217 | // _give_levels_maximum_amount. |
1218 | - if ( ! empty( $meta['_give_levels_maximum_amount'][0] ) ) { |
|
1219 | - update_post_meta( $post->ID, '_give_levels_maximum_amount', give_sanitize_amount_for_db( $meta['_give_levels_maximum_amount'][0] ) ); |
|
1218 | + if ( ! empty($meta['_give_levels_maximum_amount'][0])) { |
|
1219 | + update_post_meta($post->ID, '_give_levels_maximum_amount', give_sanitize_amount_for_db($meta['_give_levels_maximum_amount'][0])); |
|
1220 | 1220 | } |
1221 | 1221 | |
1222 | 1222 | // _give_set_goal. |
1223 | - if ( ! empty( $meta['_give_set_goal'][0] ) ) { |
|
1224 | - update_post_meta( $post->ID, '_give_set_goal', give_sanitize_amount_for_db( $meta['_give_set_goal'][0] ) ); |
|
1223 | + if ( ! empty($meta['_give_set_goal'][0])) { |
|
1224 | + update_post_meta($post->ID, '_give_set_goal', give_sanitize_amount_for_db($meta['_give_set_goal'][0])); |
|
1225 | 1225 | } |
1226 | 1226 | |
1227 | 1227 | // _give_form_earnings. |
1228 | - if ( ! empty( $meta['_give_form_earnings'][0] ) ) { |
|
1229 | - update_post_meta( $post->ID, '_give_form_earnings', give_sanitize_amount_for_db( $meta['_give_form_earnings'][0] ) ); |
|
1228 | + if ( ! empty($meta['_give_form_earnings'][0])) { |
|
1229 | + update_post_meta($post->ID, '_give_form_earnings', give_sanitize_amount_for_db($meta['_give_form_earnings'][0])); |
|
1230 | 1230 | } |
1231 | 1231 | |
1232 | 1232 | // _give_custom_amount_minimum. |
1233 | - if ( ! empty( $meta['_give_donation_levels'][0] ) ) { |
|
1234 | - $donation_levels = unserialize( $meta['_give_donation_levels'][0] ); |
|
1233 | + if ( ! empty($meta['_give_donation_levels'][0])) { |
|
1234 | + $donation_levels = unserialize($meta['_give_donation_levels'][0]); |
|
1235 | 1235 | |
1236 | - foreach ( $donation_levels as $index => $level ) { |
|
1237 | - if ( empty( $level['_give_amount'] ) ) { |
|
1236 | + foreach ($donation_levels as $index => $level) { |
|
1237 | + if (empty($level['_give_amount'])) { |
|
1238 | 1238 | continue; |
1239 | 1239 | } |
1240 | 1240 | |
1241 | - $donation_levels[ $index ]['_give_amount'] = give_sanitize_amount_for_db( $level['_give_amount'] ); |
|
1241 | + $donation_levels[$index]['_give_amount'] = give_sanitize_amount_for_db($level['_give_amount']); |
|
1242 | 1242 | } |
1243 | 1243 | |
1244 | 1244 | $meta['_give_donation_levels'] = $donation_levels; |
1245 | - update_post_meta( $post->ID, '_give_donation_levels', $meta['_give_donation_levels'] ); |
|
1245 | + update_post_meta($post->ID, '_give_donation_levels', $meta['_give_donation_levels']); |
|
1246 | 1246 | } |
1247 | 1247 | |
1248 | 1248 | |
@@ -1250,8 +1250,8 @@ discard block |
||
1250 | 1250 | |
1251 | 1251 | case 'give_payment': |
1252 | 1252 | // _give_payment_total. |
1253 | - if ( ! empty( $meta['_give_payment_total'][0] ) ) { |
|
1254 | - update_post_meta( $post->ID, '_give_payment_total', give_sanitize_amount_for_db( $meta['_give_payment_total'][0] ) ); |
|
1253 | + if ( ! empty($meta['_give_payment_total'][0])) { |
|
1254 | + update_post_meta($post->ID, '_give_payment_total', give_sanitize_amount_for_db($meta['_give_payment_total'][0])); |
|
1255 | 1255 | } |
1256 | 1256 | |
1257 | 1257 | break; |
@@ -1262,7 +1262,7 @@ discard block |
||
1262 | 1262 | wp_reset_postdata(); |
1263 | 1263 | } else { |
1264 | 1264 | // The Update Ran. |
1265 | - give_set_upgrade_complete( 'v1812_update_amount_values' ); |
|
1265 | + give_set_upgrade_complete('v1812_update_amount_values'); |
|
1266 | 1266 | } |
1267 | 1267 | } |
1268 | 1268 | |
@@ -1282,22 +1282,22 @@ discard block |
||
1282 | 1282 | $offset = 1 === $give_updates->step ? 0 : $give_updates->step * 20; |
1283 | 1283 | |
1284 | 1284 | // form query. |
1285 | - $donors = Give()->donors->get_donors( array( |
|
1285 | + $donors = Give()->donors->get_donors(array( |
|
1286 | 1286 | 'number' => 20, |
1287 | 1287 | 'offset' => $offset, |
1288 | 1288 | ) |
1289 | 1289 | ); |
1290 | 1290 | |
1291 | - if ( ! empty( $donors ) ) { |
|
1292 | - $give_updates->set_percentage( Give()->donors->count(), $offset ); |
|
1291 | + if ( ! empty($donors)) { |
|
1292 | + $give_updates->set_percentage(Give()->donors->count(), $offset); |
|
1293 | 1293 | |
1294 | 1294 | /* @var Object $donor */ |
1295 | - foreach ( $donors as $donor ) { |
|
1296 | - Give()->donors->update( $donor->id, array( 'purchase_value' => give_sanitize_amount_for_db( $donor->purchase_value ) ) ); |
|
1295 | + foreach ($donors as $donor) { |
|
1296 | + Give()->donors->update($donor->id, array('purchase_value' => give_sanitize_amount_for_db($donor->purchase_value))); |
|
1297 | 1297 | } |
1298 | 1298 | } else { |
1299 | 1299 | // The Update Ran. |
1300 | - give_set_upgrade_complete( 'v1812_update_donor_purchase_values' ); |
|
1300 | + give_set_upgrade_complete('v1812_update_donor_purchase_values'); |
|
1301 | 1301 | } |
1302 | 1302 | } |
1303 | 1303 | |
@@ -1312,25 +1312,25 @@ discard block |
||
1312 | 1312 | $offset = 1 === $give_updates->step ? 0 : $give_updates->step * 20; |
1313 | 1313 | |
1314 | 1314 | // Fetch all the existing donors. |
1315 | - $donors = Give()->donors->get_donors( array( |
|
1315 | + $donors = Give()->donors->get_donors(array( |
|
1316 | 1316 | 'number' => 20, |
1317 | 1317 | 'offset' => $offset, |
1318 | 1318 | ) |
1319 | 1319 | ); |
1320 | 1320 | |
1321 | - if ( ! empty( $donors ) ) { |
|
1322 | - $give_updates->set_percentage( Give()->donors->count(), ( $give_updates->step * 20 ) ); |
|
1321 | + if ( ! empty($donors)) { |
|
1322 | + $give_updates->set_percentage(Give()->donors->count(), ($give_updates->step * 20)); |
|
1323 | 1323 | |
1324 | 1324 | /* @var Object $donor */ |
1325 | - foreach ( $donors as $donor ) { |
|
1325 | + foreach ($donors as $donor) { |
|
1326 | 1326 | $user_id = $donor->user_id; |
1327 | 1327 | |
1328 | 1328 | // Proceed, if donor is attached with user. |
1329 | - if ( $user_id ) { |
|
1330 | - $user = get_userdata( $user_id ); |
|
1329 | + if ($user_id) { |
|
1330 | + $user = get_userdata($user_id); |
|
1331 | 1331 | |
1332 | 1332 | // Update user role, if user has subscriber role. |
1333 | - if ( is_array( $user->roles ) && in_array( 'subscriber', $user->roles ) ) { |
|
1333 | + if (is_array($user->roles) && in_array('subscriber', $user->roles)) { |
|
1334 | 1334 | wp_update_user( |
1335 | 1335 | array( |
1336 | 1336 | 'ID' => $user_id, |
@@ -1342,7 +1342,7 @@ discard block |
||
1342 | 1342 | } |
1343 | 1343 | } else { |
1344 | 1344 | // The Update Ran. |
1345 | - give_set_upgrade_complete( 'v1813_update_donor_user_roles' ); |
|
1345 | + give_set_upgrade_complete('v1813_update_donor_user_roles'); |
|
1346 | 1346 | } |
1347 | 1347 | } |
1348 | 1348 | |
@@ -1354,7 +1354,7 @@ discard block |
||
1354 | 1354 | */ |
1355 | 1355 | function give_v1813_upgrades() { |
1356 | 1356 | // Update admin setting. |
1357 | - give_update_option( 'donor_default_user_role', 'give_donor' ); |
|
1357 | + give_update_option('donor_default_user_role', 'give_donor'); |
|
1358 | 1358 | |
1359 | 1359 | // Update Give roles. |
1360 | 1360 | $roles = new Give_Roles(); |
@@ -1372,33 +1372,33 @@ discard block |
||
1372 | 1372 | $give_updates = Give_Updates::get_instance(); |
1373 | 1373 | |
1374 | 1374 | // form query. |
1375 | - $payments = new WP_Query( array( |
|
1375 | + $payments = new WP_Query(array( |
|
1376 | 1376 | 'paged' => $give_updates->step, |
1377 | 1377 | 'status' => 'any', |
1378 | 1378 | 'order' => 'ASC', |
1379 | - 'post_type' => array( 'give_payment' ), |
|
1379 | + 'post_type' => array('give_payment'), |
|
1380 | 1380 | 'posts_per_page' => 100, |
1381 | 1381 | ) |
1382 | 1382 | ); |
1383 | 1383 | |
1384 | - if ( $payments->have_posts() ) { |
|
1385 | - $give_updates->set_percentage( $payments->found_posts, ( $give_updates->step * 100 ) ); |
|
1384 | + if ($payments->have_posts()) { |
|
1385 | + $give_updates->set_percentage($payments->found_posts, ($give_updates->step * 100)); |
|
1386 | 1386 | |
1387 | - while ( $payments->have_posts() ) { |
|
1387 | + while ($payments->have_posts()) { |
|
1388 | 1388 | $payments->the_post(); |
1389 | 1389 | |
1390 | - $payment_meta = give_get_payment_meta( get_the_ID() ); |
|
1390 | + $payment_meta = give_get_payment_meta(get_the_ID()); |
|
1391 | 1391 | |
1392 | - if ( 'RIAL' === $payment_meta['currency'] ) { |
|
1392 | + if ('RIAL' === $payment_meta['currency']) { |
|
1393 | 1393 | $payment_meta['currency'] = 'IRR'; |
1394 | - give_update_meta( get_the_ID(), '_give_payment_meta', $payment_meta ); |
|
1394 | + give_update_meta(get_the_ID(), '_give_payment_meta', $payment_meta); |
|
1395 | 1395 | } |
1396 | 1396 | |
1397 | 1397 | } |
1398 | 1398 | |
1399 | 1399 | } else { |
1400 | 1400 | // The Update Ran. |
1401 | - give_set_upgrade_complete( 'v1817_update_donation_iranian_currency_code' ); |
|
1401 | + give_set_upgrade_complete('v1817_update_donation_iranian_currency_code'); |
|
1402 | 1402 | } |
1403 | 1403 | } |
1404 | 1404 | |
@@ -1411,9 +1411,9 @@ discard block |
||
1411 | 1411 | function give_v1817_upgrades() { |
1412 | 1412 | $give_settings = give_get_settings(); |
1413 | 1413 | |
1414 | - if ( 'RIAL' === $give_settings['currency'] ) { |
|
1414 | + if ('RIAL' === $give_settings['currency']) { |
|
1415 | 1415 | $give_settings['currency'] = 'IRR'; |
1416 | - update_option( 'give_settings', $give_settings ); |
|
1416 | + update_option('give_settings', $give_settings); |
|
1417 | 1417 | } |
1418 | 1418 | } |
1419 | 1419 | |
@@ -1426,7 +1426,7 @@ discard block |
||
1426 | 1426 | |
1427 | 1427 | global $wp_roles; |
1428 | 1428 | |
1429 | - if( ! ( $wp_roles instanceof WP_Roles ) ) { |
|
1429 | + if ( ! ($wp_roles instanceof WP_Roles)) { |
|
1430 | 1430 | return; |
1431 | 1431 | } |
1432 | 1432 | |
@@ -1450,15 +1450,15 @@ discard block |
||
1450 | 1450 | ), |
1451 | 1451 | ); |
1452 | 1452 | |
1453 | - foreach ( $add_caps as $role => $caps ) { |
|
1454 | - foreach ( $caps as $cap ) { |
|
1455 | - $wp_roles->add_cap( $role, $cap ); |
|
1453 | + foreach ($add_caps as $role => $caps) { |
|
1454 | + foreach ($caps as $cap) { |
|
1455 | + $wp_roles->add_cap($role, $cap); |
|
1456 | 1456 | } |
1457 | 1457 | } |
1458 | 1458 | |
1459 | - foreach ( $remove_caps as $role => $caps ) { |
|
1460 | - foreach ( $caps as $cap ) { |
|
1461 | - $wp_roles->remove_cap( $role, $cap ); |
|
1459 | + foreach ($remove_caps as $role => $caps) { |
|
1460 | + foreach ($caps as $cap) { |
|
1461 | + $wp_roles->remove_cap($role, $cap); |
|
1462 | 1462 | } |
1463 | 1463 | } |
1464 | 1464 | |
@@ -1482,7 +1482,7 @@ discard block |
||
1482 | 1482 | $roles->add_roles(); |
1483 | 1483 | $roles->add_caps(); |
1484 | 1484 | |
1485 | - give_set_upgrade_complete( 'v1817_cleanup_user_roles' ); |
|
1485 | + give_set_upgrade_complete('v1817_cleanup_user_roles'); |
|
1486 | 1486 | } |
1487 | 1487 | |
1488 | 1488 | /** |
@@ -1493,7 +1493,7 @@ discard block |
||
1493 | 1493 | function give_v1818_upgrades() { |
1494 | 1494 | |
1495 | 1495 | // Remove email_access_installed from give_settings. |
1496 | - give_delete_option( 'email_access_installed' ); |
|
1496 | + give_delete_option('email_access_installed'); |
|
1497 | 1497 | } |
1498 | 1498 | |
1499 | 1499 | /** |
@@ -1504,25 +1504,25 @@ discard block |
||
1504 | 1504 | function give_v1818_assign_custom_amount_set_donation() { |
1505 | 1505 | |
1506 | 1506 | /* @var Give_Updates $give_updates */ |
1507 | - $give_updates = Give_Updates::get_instance(); |
|
1507 | + $give_updates = Give_Updates::get_instance(); |
|
1508 | 1508 | |
1509 | - $donations = new WP_Query( array( |
|
1509 | + $donations = new WP_Query(array( |
|
1510 | 1510 | 'paged' => $give_updates->step, |
1511 | 1511 | 'status' => 'any', |
1512 | 1512 | 'order' => 'ASC', |
1513 | - 'post_type' => array( 'give_payment' ), |
|
1513 | + 'post_type' => array('give_payment'), |
|
1514 | 1514 | 'posts_per_page' => 100, |
1515 | 1515 | ) |
1516 | 1516 | ); |
1517 | 1517 | |
1518 | - if ( $donations->have_posts() ) { |
|
1519 | - $give_updates->set_percentage( $donations->found_posts, $give_updates->step * 100 ); |
|
1518 | + if ($donations->have_posts()) { |
|
1519 | + $give_updates->set_percentage($donations->found_posts, $give_updates->step * 100); |
|
1520 | 1520 | |
1521 | - while ( $donations->have_posts() ) { |
|
1521 | + while ($donations->have_posts()) { |
|
1522 | 1522 | $donations->the_post(); |
1523 | 1523 | |
1524 | - $form = new Give_Donate_Form( give_get_meta( get_the_ID(), '_give_payment_form_id', true ) ); |
|
1525 | - $donation_meta = give_get_payment_meta( get_the_ID() ); |
|
1524 | + $form = new Give_Donate_Form(give_get_meta(get_the_ID(), '_give_payment_form_id', true)); |
|
1525 | + $donation_meta = give_get_payment_meta(get_the_ID()); |
|
1526 | 1526 | |
1527 | 1527 | // Update Donation meta with price_id set as custom, only if it is: |
1528 | 1528 | // 1. Donation Type = Set Donation. |
@@ -1531,19 +1531,19 @@ discard block |
||
1531 | 1531 | if ( |
1532 | 1532 | $form->ID && |
1533 | 1533 | $form->is_set_type_donation_form() && |
1534 | - ( 'custom' !== $donation_meta['price_id'] ) && |
|
1535 | - $form->is_custom_price( give_get_meta( get_the_ID(), '_give_payment_total', true ) ) |
|
1534 | + ('custom' !== $donation_meta['price_id']) && |
|
1535 | + $form->is_custom_price(give_get_meta(get_the_ID(), '_give_payment_total', true)) |
|
1536 | 1536 | ) { |
1537 | 1537 | $donation_meta['price_id'] = 'custom'; |
1538 | - give_update_meta( get_the_ID(), '_give_payment_meta', $donation_meta ); |
|
1539 | - give_update_meta( get_the_ID(), '_give_payment_price_id', 'custom' ); |
|
1538 | + give_update_meta(get_the_ID(), '_give_payment_meta', $donation_meta); |
|
1539 | + give_update_meta(get_the_ID(), '_give_payment_price_id', 'custom'); |
|
1540 | 1540 | } |
1541 | 1541 | } |
1542 | 1542 | |
1543 | 1543 | wp_reset_postdata(); |
1544 | 1544 | } else { |
1545 | 1545 | // Update Ran Successfully. |
1546 | - give_set_upgrade_complete( 'v1818_assign_custom_amount_set_donation' ); |
|
1546 | + give_set_upgrade_complete('v1818_assign_custom_amount_set_donation'); |
|
1547 | 1547 | } |
1548 | 1548 | } |
1549 | 1549 | |
@@ -1554,14 +1554,14 @@ discard block |
||
1554 | 1554 | * |
1555 | 1555 | * @since 1.8.18 |
1556 | 1556 | */ |
1557 | -function give_v1818_give_worker_role_cleanup(){ |
|
1557 | +function give_v1818_give_worker_role_cleanup() { |
|
1558 | 1558 | |
1559 | 1559 | /* @var Give_Updates $give_updates */ |
1560 | 1560 | $give_updates = Give_Updates::get_instance(); |
1561 | 1561 | |
1562 | 1562 | global $wp_roles; |
1563 | 1563 | |
1564 | - if( ! ( $wp_roles instanceof WP_Roles ) ) { |
|
1564 | + if ( ! ($wp_roles instanceof WP_Roles)) { |
|
1565 | 1565 | return; |
1566 | 1566 | } |
1567 | 1567 | |
@@ -1579,9 +1579,9 @@ discard block |
||
1579 | 1579 | ), |
1580 | 1580 | ); |
1581 | 1581 | |
1582 | - foreach ( $remove_caps as $role => $caps ) { |
|
1583 | - foreach( $caps as $cap ) { |
|
1584 | - $wp_roles->remove_cap( $role, $cap ); |
|
1582 | + foreach ($remove_caps as $role => $caps) { |
|
1583 | + foreach ($caps as $cap) { |
|
1584 | + $wp_roles->remove_cap($role, $cap); |
|
1585 | 1585 | } |
1586 | 1586 | } |
1587 | 1587 | |
@@ -1592,7 +1592,7 @@ discard block |
||
1592 | 1592 | $roles->add_roles(); |
1593 | 1593 | $roles->add_caps(); |
1594 | 1594 | |
1595 | - give_set_upgrade_complete( 'v1818_give_worker_role_cleanup' ); |
|
1595 | + give_set_upgrade_complete('v1818_give_worker_role_cleanup'); |
|
1596 | 1596 | } |
1597 | 1597 | |
1598 | 1598 | /** |
@@ -1606,7 +1606,7 @@ discard block |
||
1606 | 1606 | $give_updates = Give_Updates::get_instance(); |
1607 | 1607 | |
1608 | 1608 | // form query |
1609 | - $forms = new WP_Query( array( |
|
1609 | + $forms = new WP_Query(array( |
|
1610 | 1610 | 'paged' => $give_updates->step, |
1611 | 1611 | 'status' => 'any', |
1612 | 1612 | 'order' => 'ASC', |
@@ -1615,22 +1615,22 @@ discard block |
||
1615 | 1615 | ) |
1616 | 1616 | ); |
1617 | 1617 | |
1618 | - if ( $forms->have_posts() ) { |
|
1619 | - $give_updates->set_percentage( $forms->found_posts, ( $give_updates->step * 100 ) ); |
|
1618 | + if ($forms->have_posts()) { |
|
1619 | + $give_updates->set_percentage($forms->found_posts, ($give_updates->step * 100)); |
|
1620 | 1620 | |
1621 | - while ( $forms->have_posts() ) { |
|
1621 | + while ($forms->have_posts()) { |
|
1622 | 1622 | $forms->the_post(); |
1623 | 1623 | global $post; |
1624 | 1624 | |
1625 | 1625 | // Update offline instruction email notification status. |
1626 | - $offline_instruction_notification_status = get_post_meta( get_the_ID(), '_give_customize_offline_donations', true ); |
|
1627 | - $offline_instruction_notification_status = give_is_setting_enabled( $offline_instruction_notification_status, array( |
|
1626 | + $offline_instruction_notification_status = get_post_meta(get_the_ID(), '_give_customize_offline_donations', true); |
|
1627 | + $offline_instruction_notification_status = give_is_setting_enabled($offline_instruction_notification_status, array( |
|
1628 | 1628 | 'enabled', |
1629 | 1629 | 'global', |
1630 | - ) ) |
|
1630 | + )) |
|
1631 | 1631 | ? $offline_instruction_notification_status |
1632 | 1632 | : 'global'; |
1633 | - update_post_meta( get_the_ID(), '_give_offline-donation-instruction_notification', $offline_instruction_notification_status ); |
|
1633 | + update_post_meta(get_the_ID(), '_give_offline-donation-instruction_notification', $offline_instruction_notification_status); |
|
1634 | 1634 | |
1635 | 1635 | // Update offline instruction email message. |
1636 | 1636 | update_post_meta( |
@@ -1662,7 +1662,7 @@ discard block |
||
1662 | 1662 | wp_reset_postdata(); |
1663 | 1663 | } else { |
1664 | 1664 | // No more forms found, finish up. |
1665 | - give_set_upgrade_complete( 'v20_upgrades_form_metadata' ); |
|
1665 | + give_set_upgrade_complete('v20_upgrades_form_metadata'); |
|
1666 | 1666 | } |
1667 | 1667 | } |
1668 | 1668 | |
@@ -1679,7 +1679,7 @@ discard block |
||
1679 | 1679 | $give_updates = Give_Updates::get_instance(); |
1680 | 1680 | |
1681 | 1681 | // form query |
1682 | - $forms = new WP_Query( array( |
|
1682 | + $forms = new WP_Query(array( |
|
1683 | 1683 | 'paged' => $give_updates->step, |
1684 | 1684 | 'status' => 'any', |
1685 | 1685 | 'order' => 'ASC', |
@@ -1688,19 +1688,19 @@ discard block |
||
1688 | 1688 | ) |
1689 | 1689 | ); |
1690 | 1690 | |
1691 | - if ( $forms->have_posts() ) { |
|
1692 | - $give_updates->set_percentage( $forms->found_posts, ( $give_updates->step * 100 ) ); |
|
1691 | + if ($forms->have_posts()) { |
|
1692 | + $give_updates->set_percentage($forms->found_posts, ($give_updates->step * 100)); |
|
1693 | 1693 | |
1694 | - while ( $forms->have_posts() ) { |
|
1694 | + while ($forms->have_posts()) { |
|
1695 | 1695 | $forms->the_post(); |
1696 | 1696 | global $post; |
1697 | 1697 | |
1698 | 1698 | // Split _give_payment_meta meta. |
1699 | 1699 | // @todo Remove _give_payment_meta after releases 2.0 |
1700 | - $payment_meta = give_get_meta( $post->ID, '_give_payment_meta', true ); |
|
1700 | + $payment_meta = give_get_meta($post->ID, '_give_payment_meta', true); |
|
1701 | 1701 | |
1702 | - if ( ! empty( $payment_meta ) ) { |
|
1703 | - _give_20_bc_split_and_save_give_payment_meta( $post->ID, $payment_meta ); |
|
1702 | + if ( ! empty($payment_meta)) { |
|
1703 | + _give_20_bc_split_and_save_give_payment_meta($post->ID, $payment_meta); |
|
1704 | 1704 | } |
1705 | 1705 | |
1706 | 1706 | $deprecated_meta_keys = array( |
@@ -1709,9 +1709,9 @@ discard block |
||
1709 | 1709 | '_give_payment_user_ip' => '_give_payment_donor_ip', |
1710 | 1710 | ); |
1711 | 1711 | |
1712 | - foreach ( $deprecated_meta_keys as $old_meta_key => $new_meta_key ) { |
|
1712 | + foreach ($deprecated_meta_keys as $old_meta_key => $new_meta_key) { |
|
1713 | 1713 | // Do not add new meta key if already exist. |
1714 | - if ( $wpdb->get_var( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE post_id=%d AND meta_key=%s", $post->ID, $new_meta_key ) ) ) { |
|
1714 | + if ($wpdb->get_var($wpdb->prepare("SELECT meta_id FROM $wpdb->postmeta WHERE post_id=%d AND meta_key=%s", $post->ID, $new_meta_key))) { |
|
1715 | 1715 | continue; |
1716 | 1716 | } |
1717 | 1717 | |
@@ -1720,25 +1720,25 @@ discard block |
||
1720 | 1720 | array( |
1721 | 1721 | 'post_id' => $post->ID, |
1722 | 1722 | 'meta_key' => $new_meta_key, |
1723 | - 'meta_value' => give_get_meta( $post->ID, $old_meta_key, true ) |
|
1723 | + 'meta_value' => give_get_meta($post->ID, $old_meta_key, true) |
|
1724 | 1724 | ) |
1725 | 1725 | ); |
1726 | 1726 | } |
1727 | 1727 | |
1728 | 1728 | // Bailout |
1729 | - if ( $donor_id = give_get_meta( $post->ID, '_give_payment_donor_id', true ) ) { |
|
1729 | + if ($donor_id = give_get_meta($post->ID, '_give_payment_donor_id', true)) { |
|
1730 | 1730 | /* @var Give_Donor $donor */ |
1731 | - $donor = new Give_Donor( $donor_id ); |
|
1731 | + $donor = new Give_Donor($donor_id); |
|
1732 | 1732 | |
1733 | - $address['line1'] = give_get_meta( $post->ID, '_give_donor_billing_address1', true, '' ); |
|
1734 | - $address['line2'] = give_get_meta( $post->ID, '_give_donor_billing_address2', true, '' ); |
|
1735 | - $address['city'] = give_get_meta( $post->ID, '_give_donor_billing_city', true, '' ); |
|
1736 | - $address['state'] = give_get_meta( $post->ID, '_give_donor_billing_state', true, '' ); |
|
1737 | - $address['zip'] = give_get_meta( $post->ID, '_give_donor_billing_zip', true, '' ); |
|
1738 | - $address['country'] = give_get_meta( $post->ID, '_give_donor_billing_country', true, '' ); |
|
1733 | + $address['line1'] = give_get_meta($post->ID, '_give_donor_billing_address1', true, ''); |
|
1734 | + $address['line2'] = give_get_meta($post->ID, '_give_donor_billing_address2', true, ''); |
|
1735 | + $address['city'] = give_get_meta($post->ID, '_give_donor_billing_city', true, ''); |
|
1736 | + $address['state'] = give_get_meta($post->ID, '_give_donor_billing_state', true, ''); |
|
1737 | + $address['zip'] = give_get_meta($post->ID, '_give_donor_billing_zip', true, ''); |
|
1738 | + $address['country'] = give_get_meta($post->ID, '_give_donor_billing_country', true, ''); |
|
1739 | 1739 | |
1740 | 1740 | // Save address. |
1741 | - $donor->add_address( 'billing[]', $address ); |
|
1741 | + $donor->add_address('billing[]', $address); |
|
1742 | 1742 | } |
1743 | 1743 | |
1744 | 1744 | }// End while(). |
@@ -1749,7 +1749,7 @@ discard block |
||
1749 | 1749 | // $wpdb->get_var( $wpdb->prepare( "DELETE FROM $wpdb->postmeta WHERE meta_key=%s", '_give_payment_user_id' ) ); |
1750 | 1750 | |
1751 | 1751 | // No more forms found, finish up. |
1752 | - give_set_upgrade_complete( 'v20_upgrades_payment_metadata' ); |
|
1752 | + give_set_upgrade_complete('v20_upgrades_payment_metadata'); |
|
1753 | 1753 | } |
1754 | 1754 | } |
1755 | 1755 | |
@@ -1765,7 +1765,7 @@ discard block |
||
1765 | 1765 | $give_updates = Give_Updates::get_instance(); |
1766 | 1766 | |
1767 | 1767 | // form query |
1768 | - $forms = new WP_Query( array( |
|
1768 | + $forms = new WP_Query(array( |
|
1769 | 1769 | 'paged' => $give_updates->step, |
1770 | 1770 | 'order' => 'DESC', |
1771 | 1771 | 'post_type' => 'give_log', |
@@ -1774,20 +1774,20 @@ discard block |
||
1774 | 1774 | ) |
1775 | 1775 | ); |
1776 | 1776 | |
1777 | - if ( $forms->have_posts() ) { |
|
1778 | - $give_updates->set_percentage( $forms->found_posts, $give_updates->step * 100 ); |
|
1777 | + if ($forms->have_posts()) { |
|
1778 | + $give_updates->set_percentage($forms->found_posts, $give_updates->step * 100); |
|
1779 | 1779 | |
1780 | - while ( $forms->have_posts() ) { |
|
1780 | + while ($forms->have_posts()) { |
|
1781 | 1781 | $forms->the_post(); |
1782 | 1782 | global $post; |
1783 | 1783 | |
1784 | - if( $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}give_logs WHERE ID=%d", $post->ID ) ) ) { |
|
1784 | + if ($wpdb->get_results($wpdb->prepare("SELECT * FROM {$wpdb->prefix}give_logs WHERE ID=%d", $post->ID))) { |
|
1785 | 1785 | continue; |
1786 | 1786 | } |
1787 | 1787 | |
1788 | - $term = get_the_terms( $post->ID, 'give_log_type' ); |
|
1789 | - $term = ! is_wp_error( $term ) && ! empty( $term ) ? $term[0] : array(); |
|
1790 | - $term_name = ! empty( $term ) ? $term->slug : ''; |
|
1788 | + $term = get_the_terms($post->ID, 'give_log_type'); |
|
1789 | + $term = ! is_wp_error($term) && ! empty($term) ? $term[0] : array(); |
|
1790 | + $term_name = ! empty($term) ? $term->slug : ''; |
|
1791 | 1791 | |
1792 | 1792 | $log_data = array( |
1793 | 1793 | 'ID' => $post->ID, |
@@ -1800,29 +1800,29 @@ discard block |
||
1800 | 1800 | ); |
1801 | 1801 | $log_meta = array(); |
1802 | 1802 | |
1803 | - if ( $old_log_meta = get_post_meta( $post->ID ) ) { |
|
1804 | - foreach ( $old_log_meta as $meta_key => $meta_value ) { |
|
1805 | - switch ( $meta_key ) { |
|
1803 | + if ($old_log_meta = get_post_meta($post->ID)) { |
|
1804 | + foreach ($old_log_meta as $meta_key => $meta_value) { |
|
1805 | + switch ($meta_key) { |
|
1806 | 1806 | case '_give_log_payment_id': |
1807 | - $log_data['log_parent'] = current( $meta_value ); |
|
1807 | + $log_data['log_parent'] = current($meta_value); |
|
1808 | 1808 | $log_meta['_give_log_form_id'] = $post->post_parent; |
1809 | 1809 | break; |
1810 | 1810 | |
1811 | 1811 | default: |
1812 | - $log_meta[ $meta_key ] = current( $meta_value ); |
|
1812 | + $log_meta[$meta_key] = current($meta_value); |
|
1813 | 1813 | } |
1814 | 1814 | } |
1815 | 1815 | } |
1816 | 1816 | |
1817 | - if ( 'api_request' === $term_name ) { |
|
1817 | + if ('api_request' === $term_name) { |
|
1818 | 1818 | $log_meta['_give_log_api_query'] = $post->post_excerpt; |
1819 | 1819 | } |
1820 | 1820 | |
1821 | - $wpdb->insert( "{$wpdb->prefix}give_logs", $log_data ); |
|
1821 | + $wpdb->insert("{$wpdb->prefix}give_logs", $log_data); |
|
1822 | 1822 | |
1823 | - if ( ! empty( $log_meta ) ) { |
|
1824 | - foreach ( $log_meta as $meta_key => $meta_value ) { |
|
1825 | - Give()->logs->logmeta_db->update_meta( $post->ID, $meta_key, $meta_value ); |
|
1823 | + if ( ! empty($log_meta)) { |
|
1824 | + foreach ($log_meta as $meta_key => $meta_value) { |
|
1825 | + Give()->logs->logmeta_db->update_meta($post->ID, $meta_key, $meta_value); |
|
1826 | 1826 | } |
1827 | 1827 | } |
1828 | 1828 | |
@@ -1864,7 +1864,7 @@ discard block |
||
1864 | 1864 | Give()->logs->delete_cache(); |
1865 | 1865 | |
1866 | 1866 | // No more forms found, finish up. |
1867 | - give_set_upgrade_complete( 'v20_logs_upgrades' ); |
|
1867 | + give_set_upgrade_complete('v20_logs_upgrades'); |
|
1868 | 1868 | } |
1869 | 1869 | } |
1870 | 1870 | |
@@ -1880,19 +1880,19 @@ discard block |
||
1880 | 1880 | $give_updates = Give_Updates::get_instance(); |
1881 | 1881 | |
1882 | 1882 | // form query |
1883 | - $payments = new WP_Query( array( |
|
1883 | + $payments = new WP_Query(array( |
|
1884 | 1884 | 'paged' => $give_updates->step, |
1885 | 1885 | 'status' => 'any', |
1886 | 1886 | 'order' => 'ASC', |
1887 | - 'post_type' => array( 'give_forms', 'give_payment' ), |
|
1887 | + 'post_type' => array('give_forms', 'give_payment'), |
|
1888 | 1888 | 'posts_per_page' => 100, |
1889 | 1889 | ) |
1890 | 1890 | ); |
1891 | 1891 | |
1892 | - if ( $payments->have_posts() ) { |
|
1893 | - $give_updates->set_percentage( $payments->found_posts, $give_updates->step * 100 ); |
|
1892 | + if ($payments->have_posts()) { |
|
1893 | + $give_updates->set_percentage($payments->found_posts, $give_updates->step * 100); |
|
1894 | 1894 | |
1895 | - while ( $payments->have_posts() ) { |
|
1895 | + while ($payments->have_posts()) { |
|
1896 | 1896 | $payments->the_post(); |
1897 | 1897 | global $post; |
1898 | 1898 | |
@@ -1904,19 +1904,19 @@ discard block |
||
1904 | 1904 | ARRAY_A |
1905 | 1905 | ); |
1906 | 1906 | |
1907 | - if ( ! empty( $meta_data ) ) { |
|
1908 | - foreach ( $meta_data as $index => $data ) { |
|
1907 | + if ( ! empty($meta_data)) { |
|
1908 | + foreach ($meta_data as $index => $data) { |
|
1909 | 1909 | // Check for duplicate meta values. |
1910 | - if( $result = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM " . ( 'give_forms' === $post->post_type ? $wpdb->formmeta : $wpdb->paymentmeta ) . " WHERE meta_id=%d", $data['meta_id'] ), ARRAY_A ) ) { |
|
1910 | + if ($result = $wpdb->get_results($wpdb->prepare("SELECT * FROM ".('give_forms' === $post->post_type ? $wpdb->formmeta : $wpdb->paymentmeta)." WHERE meta_id=%d", $data['meta_id']), ARRAY_A)) { |
|
1911 | 1911 | continue; |
1912 | 1912 | } |
1913 | 1913 | |
1914 | - switch ( $post->post_type ) { |
|
1914 | + switch ($post->post_type) { |
|
1915 | 1915 | case 'give_forms': |
1916 | 1916 | $data['form_id'] = $data['post_id']; |
1917 | - unset( $data['post_id'] ); |
|
1917 | + unset($data['post_id']); |
|
1918 | 1918 | |
1919 | - Give()->form_meta->insert( $data ); |
|
1919 | + Give()->form_meta->insert($data); |
|
1920 | 1920 | // @todo: delete form meta from post meta table after releases 2.0. |
1921 | 1921 | /*delete_post_meta( get_the_ID(), $data['meta_key'] );*/ |
1922 | 1922 | |
@@ -1924,9 +1924,9 @@ discard block |
||
1924 | 1924 | |
1925 | 1925 | case 'give_payment': |
1926 | 1926 | $data['payment_id'] = $data['post_id']; |
1927 | - unset( $data['post_id'] ); |
|
1927 | + unset($data['post_id']); |
|
1928 | 1928 | |
1929 | - Give()->payment_meta->insert( $data ); |
|
1929 | + Give()->payment_meta->insert($data); |
|
1930 | 1930 | |
1931 | 1931 | // @todo: delete donation meta from post meta table after releases 2.0. |
1932 | 1932 | /*delete_post_meta( get_the_ID(), $data['meta_key'] );*/ |
@@ -1941,7 +1941,7 @@ discard block |
||
1941 | 1941 | wp_reset_postdata(); |
1942 | 1942 | } else { |
1943 | 1943 | // No more forms found, finish up. |
1944 | - give_set_upgrade_complete( 'v20_move_metadata_into_new_table' ); |
|
1944 | + give_set_upgrade_complete('v20_move_metadata_into_new_table'); |
|
1945 | 1945 | } |
1946 | 1946 | |
1947 | 1947 | } |
@@ -1957,44 +1957,44 @@ discard block |
||
1957 | 1957 | /* @var Give_Updates $give_updates */ |
1958 | 1958 | $give_updates = Give_Updates::get_instance(); |
1959 | 1959 | |
1960 | - $donors = Give()->donors->get_donors( array( |
|
1960 | + $donors = Give()->donors->get_donors(array( |
|
1961 | 1961 | 'paged' => $give_updates->step, |
1962 | 1962 | 'number' => 100, |
1963 | - ) ); |
|
1963 | + )); |
|
1964 | 1964 | |
1965 | - if ( $donors ) { |
|
1966 | - $give_updates->set_percentage( count( $donors ), $give_updates->step * 100 ); |
|
1965 | + if ($donors) { |
|
1966 | + $give_updates->set_percentage(count($donors), $give_updates->step * 100); |
|
1967 | 1967 | // Loop through Donors |
1968 | - foreach ( $donors as $donor ) { |
|
1968 | + foreach ($donors as $donor) { |
|
1969 | 1969 | |
1970 | - $donor_name = explode( ' ', $donor->name, 2 ); |
|
1971 | - $donor_first_name = Give()->donor_meta->get_meta( $donor->id, '_give_donor_first_name' ); |
|
1972 | - $donor_last_name = Give()->donor_meta->get_meta( $donor->id, '_give_donor_last_name' ); |
|
1970 | + $donor_name = explode(' ', $donor->name, 2); |
|
1971 | + $donor_first_name = Give()->donor_meta->get_meta($donor->id, '_give_donor_first_name'); |
|
1972 | + $donor_last_name = Give()->donor_meta->get_meta($donor->id, '_give_donor_last_name'); |
|
1973 | 1973 | |
1974 | 1974 | // If first name meta of donor is not created, then create it. |
1975 | - if ( ! $donor_first_name && isset( $donor_name[0] ) ) { |
|
1976 | - Give()->donor_meta->add_meta( $donor->id, '_give_donor_first_name', $donor_name[0] ); |
|
1975 | + if ( ! $donor_first_name && isset($donor_name[0])) { |
|
1976 | + Give()->donor_meta->add_meta($donor->id, '_give_donor_first_name', $donor_name[0]); |
|
1977 | 1977 | } |
1978 | 1978 | |
1979 | 1979 | // If last name meta of donor is not created, then create it. |
1980 | - if ( ! $donor_last_name && isset( $donor_name[1] ) ) { |
|
1981 | - Give()->donor_meta->add_meta( $donor->id, '_give_donor_last_name', $donor_name[1] ); |
|
1980 | + if ( ! $donor_last_name && isset($donor_name[1])) { |
|
1981 | + Give()->donor_meta->add_meta($donor->id, '_give_donor_last_name', $donor_name[1]); |
|
1982 | 1982 | } |
1983 | 1983 | |
1984 | 1984 | // If Donor is connected with WP User then update user meta. |
1985 | - if ( $donor->user_id ) { |
|
1986 | - if ( isset( $donor_name[0] ) ) { |
|
1987 | - update_user_meta( $donor->user_id, 'first_name', $donor_name[0] ); |
|
1985 | + if ($donor->user_id) { |
|
1986 | + if (isset($donor_name[0])) { |
|
1987 | + update_user_meta($donor->user_id, 'first_name', $donor_name[0]); |
|
1988 | 1988 | } |
1989 | - if ( isset( $donor_name[1] ) ) { |
|
1990 | - update_user_meta( $donor->user_id, 'last_name', $donor_name[1] ); |
|
1989 | + if (isset($donor_name[1])) { |
|
1990 | + update_user_meta($donor->user_id, 'last_name', $donor_name[1]); |
|
1991 | 1991 | } |
1992 | 1992 | } |
1993 | 1993 | } |
1994 | 1994 | |
1995 | 1995 | } else { |
1996 | 1996 | // The Update Ran. |
1997 | - give_set_upgrade_complete( 'v20_upgrades_donor_name' ); |
|
1997 | + give_set_upgrade_complete('v20_upgrades_donor_name'); |
|
1998 | 1998 | } |
1999 | 1999 | |
2000 | 2000 | } |
@@ -2023,15 +2023,15 @@ discard block |
||
2023 | 2023 | |
2024 | 2024 | $users = $user_query->get_results(); |
2025 | 2025 | |
2026 | - if ( $users ) { |
|
2027 | - $give_updates->set_percentage( $user_query->get_total(), $give_updates->step * 100 ); |
|
2026 | + if ($users) { |
|
2027 | + $give_updates->set_percentage($user_query->get_total(), $give_updates->step * 100); |
|
2028 | 2028 | |
2029 | 2029 | // Loop through Donors |
2030 | - foreach ( $users as $user ) { |
|
2030 | + foreach ($users as $user) { |
|
2031 | 2031 | /* @var Give_Donor $donor */ |
2032 | - $donor = new Give_Donor( $user->ID, true ); |
|
2032 | + $donor = new Give_Donor($user->ID, true); |
|
2033 | 2033 | |
2034 | - if ( ! $donor->id ) { |
|
2034 | + if ( ! $donor->id) { |
|
2035 | 2035 | continue; |
2036 | 2036 | } |
2037 | 2037 | |
@@ -2047,10 +2047,10 @@ discard block |
||
2047 | 2047 | ) |
2048 | 2048 | ); |
2049 | 2049 | |
2050 | - if ( ! empty( $address ) ) { |
|
2051 | - $address = maybe_unserialize( $address ); |
|
2052 | - $donor->add_address( 'personal', $address ); |
|
2053 | - $donor->add_address( 'billing[]', $address ); |
|
2050 | + if ( ! empty($address)) { |
|
2051 | + $address = maybe_unserialize($address); |
|
2052 | + $donor->add_address('personal', $address); |
|
2053 | + $donor->add_address('billing[]', $address); |
|
2054 | 2054 | |
2055 | 2055 | |
2056 | 2056 | // @todo: delete _give_user_address from user meta after releases 2.0. |
@@ -2060,7 +2060,7 @@ discard block |
||
2060 | 2060 | |
2061 | 2061 | } else { |
2062 | 2062 | // The Update Ran. |
2063 | - give_set_upgrade_complete( 'v20_upgrades_user_address' ); |
|
2063 | + give_set_upgrade_complete('v20_upgrades_user_address'); |
|
2064 | 2064 | } |
2065 | 2065 | |
2066 | 2066 | } |
@@ -2084,15 +2084,15 @@ discard block |
||
2084 | 2084 | ); |
2085 | 2085 | |
2086 | 2086 | // Alter customer table |
2087 | - foreach ( $tables as $old_table => $new_table ) { |
|
2087 | + foreach ($tables as $old_table => $new_table) { |
|
2088 | 2088 | if ( |
2089 | - $wpdb->query( $wpdb->prepare( "SHOW TABLES LIKE %s", $old_table ) ) && |
|
2090 | - ! $wpdb->query( $wpdb->prepare( "SHOW TABLES LIKE %s", $new_table ) ) |
|
2089 | + $wpdb->query($wpdb->prepare("SHOW TABLES LIKE %s", $old_table)) && |
|
2090 | + ! $wpdb->query($wpdb->prepare("SHOW TABLES LIKE %s", $new_table)) |
|
2091 | 2091 | ) { |
2092 | - $wpdb->query( "ALTER TABLE {$old_table} RENAME TO {$new_table}" ); |
|
2092 | + $wpdb->query("ALTER TABLE {$old_table} RENAME TO {$new_table}"); |
|
2093 | 2093 | |
2094 | - if ( "{$wpdb->prefix}give_donormeta" === $new_table ) { |
|
2095 | - $wpdb->query( "ALTER TABLE {$new_table} CHANGE COLUMN customer_id donor_id bigint(20)" ); |
|
2094 | + if ("{$wpdb->prefix}give_donormeta" === $new_table) { |
|
2095 | + $wpdb->query("ALTER TABLE {$new_table} CHANGE COLUMN customer_id donor_id bigint(20)"); |
|
2096 | 2096 | } |
2097 | 2097 | } |
2098 | 2098 | } |
@@ -2100,7 +2100,7 @@ discard block |
||
2100 | 2100 | $give_updates->percentage = 100; |
2101 | 2101 | |
2102 | 2102 | // No more forms found, finish up. |
2103 | - give_set_upgrade_complete( 'v20_rename_donor_tables' ); |
|
2103 | + give_set_upgrade_complete('v20_rename_donor_tables'); |
|
2104 | 2104 | |
2105 | 2105 | // Re initiate donor classes. |
2106 | 2106 | Give()->donors = new Give_DB_Donors(); |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -18,36 +18,35 @@ discard block |
||
18 | 18 | ?> |
19 | 19 | <div class="wrap" id="poststuff"> |
20 | 20 | <div id="give-updates"> |
21 | - <h1 id="give-updates-h1"><?php esc_html_e( 'Give - Updates', 'give' ); ?></h1> |
|
21 | + <h1 id="give-updates-h1"><?php esc_html_e('Give - Updates', 'give'); ?></h1> |
|
22 | 22 | <hr class="wp-header-end"> |
23 | 23 | |
24 | 24 | <div class="give-update-panel-content"> |
25 | - <p><?php printf( __( 'Give regularly receives new features, bug fixes, and enhancements. It is important to always stay up-to-date with latest version of Give core and its add-ons. Please create a backup of your site before updating. To update add-ons be sure your <a href="%1$s">license keys</a> are activated.', 'give' ), 'https://givewp.com/my-account/' ); ?></p> |
|
25 | + <p><?php printf(__('Give regularly receives new features, bug fixes, and enhancements. It is important to always stay up-to-date with latest version of Give core and its add-ons. Please create a backup of your site before updating. To update add-ons be sure your <a href="%1$s">license keys</a> are activated.', 'give'), 'https://givewp.com/my-account/'); ?></p> |
|
26 | 26 | </div> |
27 | 27 | |
28 | 28 | <?php $db_updates = $give_updates->get_pending_db_update_count(); ?> |
29 | - <?php if ( ! empty( $db_updates ) ) : ?> |
|
29 | + <?php if ( ! empty($db_updates)) : ?> |
|
30 | 30 | <?php |
31 | 31 | $is_doing_updates = $give_updates->is_doing_updates(); |
32 | - $db_update_url = add_query_arg( array( 'type' => 'database', ) ); |
|
33 | - $resume_updates = get_option( 'give_doing_upgrade' ); |
|
34 | - $width = ! empty( $resume_updates ) ? $resume_updates['percentage'] : 0; |
|
32 | + $db_update_url = add_query_arg(array('type' => 'database',)); |
|
33 | + $resume_updates = get_option('give_doing_upgrade'); |
|
34 | + $width = ! empty($resume_updates) ? $resume_updates['percentage'] : 0; |
|
35 | 35 | ?> |
36 | - <div id="give-db-updates" data-resume-update="<?php echo absint( $give_updates->is_doing_updates() ); ?>"> |
|
36 | + <div id="give-db-updates" data-resume-update="<?php echo absint($give_updates->is_doing_updates()); ?>"> |
|
37 | 37 | <div class="postbox-container"> |
38 | 38 | <div class="postbox"> |
39 | - <h2 class="hndle"><?php _e( 'Database Updates', 'give' ); ?></h2> |
|
39 | + <h2 class="hndle"><?php _e('Database Updates', 'give'); ?></h2> |
|
40 | 40 | <div class="inside"> |
41 | 41 | <div class="panel-content"> |
42 | 42 | <p class="give-update-button"> |
43 | 43 | <?php echo sprintf( |
44 | - __( '%1$s <a href="%2$s" class="%3$s">%4$s</a>', 'give' ), |
|
44 | + __('%1$s <a href="%2$s" class="%3$s">%4$s</a>', 'give'), |
|
45 | 45 | $is_doing_updates ? |
46 | - __( 'Give is currently updating the database in the background.', 'give' ) : |
|
47 | - __( 'Give needs to update the database.', 'give' ), |
|
46 | + __('Give is currently updating the database in the background.', 'give') : __('Give needs to update the database.', 'give'), |
|
48 | 47 | $db_update_url, |
49 | - ( $is_doing_updates ? 'give-hidden' : '' ), |
|
50 | - __( 'Update now', 'give' ) |
|
48 | + ($is_doing_updates ? 'give-hidden' : ''), |
|
49 | + __('Update now', 'give') |
|
51 | 50 | ); |
52 | 51 | ?> |
53 | 52 | </p> |
@@ -57,7 +56,7 @@ discard block |
||
57 | 56 | <strong> |
58 | 57 | <?php |
59 | 58 | echo sprintf( |
60 | - __( 'Update %s of %s', 'give' ), |
|
59 | + __('Update %s of %s', 'give'), |
|
61 | 60 | $give_updates->get_running_db_update(), |
62 | 61 | $give_updates->get_total_new_db_update_count() |
63 | 62 | ); |
@@ -65,7 +64,7 @@ discard block |
||
65 | 64 | </strong> |
66 | 65 | </p> |
67 | 66 | <div class="progress-content"> |
68 | - <?php if ( $is_doing_updates ) : ?> |
|
67 | + <?php if ($is_doing_updates) : ?> |
|
69 | 68 | <div class="notice-wrap give-clearfix"> |
70 | 69 | <span class="spinner is-active"></span> |
71 | 70 | <div class="give-progress"> |
@@ -76,7 +75,7 @@ discard block |
||
76 | 75 | </div> |
77 | 76 | </div> |
78 | 77 | |
79 | - <?php if( ! $is_doing_updates ) : ?> |
|
78 | + <?php if ( ! $is_doing_updates) : ?> |
|
80 | 79 | <div class="give-run-database-update"></div> |
81 | 80 | <?php endif; ?> |
82 | 81 | </div> |
@@ -87,17 +86,17 @@ discard block |
||
87 | 86 | <?php endif; ?> |
88 | 87 | |
89 | 88 | <?php $plugin_updates = $give_updates->get_total_plugin_update_count(); ?> |
90 | - <?php if ( ! empty( $plugin_updates ) ) : ?> |
|
91 | - <?php $plugin_update_url = add_query_arg( array( |
|
89 | + <?php if ( ! empty($plugin_updates)) : ?> |
|
90 | + <?php $plugin_update_url = add_query_arg(array( |
|
92 | 91 | 's' => 'Give', |
93 | - ), admin_url( '/plugins.php' ) ); ?> |
|
92 | + ), admin_url('/plugins.php')); ?> |
|
94 | 93 | <div id="give-plugin-updates"> |
95 | 94 | <div class="postbox-container"> |
96 | 95 | <div class="postbox"> |
97 | - <h2 class="hndle"><?php _e( 'Add-on Updates', 'give' ); ?></h2> |
|
96 | + <h2 class="hndle"><?php _e('Add-on Updates', 'give'); ?></h2> |
|
98 | 97 | <div class="inside"> |
99 | 98 | <div class="panel-content"> |
100 | - <p><?php echo sprintf( __( 'There %1$s %2$s Give %3$s that %4$s to be updated. <a href="%5$s">Update now</a>', 'give' ), _n( 'is', 'are', $plugin_updates, 'give' ), $plugin_updates, _n( 'add-on', 'add-ons', $plugin_updates, 'give' ), _n( 'needs', 'need', $plugin_updates, 'give' ), $plugin_update_url ); ?></p> |
|
99 | + <p><?php echo sprintf(__('There %1$s %2$s Give %3$s that %4$s to be updated. <a href="%5$s">Update now</a>', 'give'), _n('is', 'are', $plugin_updates, 'give'), $plugin_updates, _n('add-on', 'add-ons', $plugin_updates, 'give'), _n('needs', 'need', $plugin_updates, 'give'), $plugin_update_url); ?></p> |
|
101 | 100 | <?php include_once 'plugins-update-section.php'; ?> |
102 | 101 | </div> |
103 | 102 | </div> |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -30,54 +30,54 @@ discard block |
||
30 | 30 | * |
31 | 31 | * @return bool|array List of all user donations. |
32 | 32 | */ |
33 | -function give_get_users_donations( $user = 0, $number = 20, $pagination = false, $status = 'complete' ) { |
|
33 | +function give_get_users_donations($user = 0, $number = 20, $pagination = false, $status = 'complete') { |
|
34 | 34 | |
35 | - if ( empty( $user ) ) { |
|
35 | + if (empty($user)) { |
|
36 | 36 | $user = get_current_user_id(); |
37 | 37 | } |
38 | 38 | |
39 | - if ( 0 === $user && ! Give()->email_access->token_exists ) { |
|
39 | + if (0 === $user && ! Give()->email_access->token_exists) { |
|
40 | 40 | return false; |
41 | 41 | } |
42 | 42 | |
43 | - $status = ( 'complete' === $status ) ? 'publish' : $status; |
|
43 | + $status = ('complete' === $status) ? 'publish' : $status; |
|
44 | 44 | $paged = 1; |
45 | 45 | |
46 | - if ( $pagination ) { |
|
47 | - if ( get_query_var( 'paged' ) ) { |
|
48 | - $paged = get_query_var( 'paged' ); |
|
49 | - } elseif ( get_query_var( 'page' ) ) { |
|
50 | - $paged = get_query_var( 'page' ); |
|
46 | + if ($pagination) { |
|
47 | + if (get_query_var('paged')) { |
|
48 | + $paged = get_query_var('paged'); |
|
49 | + } elseif (get_query_var('page')) { |
|
50 | + $paged = get_query_var('page'); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | |
54 | - $args = apply_filters( 'give_get_users_donations_args', array( |
|
54 | + $args = apply_filters('give_get_users_donations_args', array( |
|
55 | 55 | 'user' => $user, |
56 | 56 | 'number' => $number, |
57 | 57 | 'status' => $status, |
58 | 58 | 'orderby' => 'date', |
59 | - ) ); |
|
59 | + )); |
|
60 | 60 | |
61 | - if ( $pagination ) { |
|
61 | + if ($pagination) { |
|
62 | 62 | $args['page'] = $paged; |
63 | 63 | } else { |
64 | 64 | $args['nopaging'] = true; |
65 | 65 | } |
66 | 66 | |
67 | - $by_user_id = is_numeric( $user ) ? true : false; |
|
68 | - $donor = new Give_Donor( $user, $by_user_id ); |
|
67 | + $by_user_id = is_numeric($user) ? true : false; |
|
68 | + $donor = new Give_Donor($user, $by_user_id); |
|
69 | 69 | |
70 | - if ( ! empty( $donor->payment_ids ) ) { |
|
70 | + if ( ! empty($donor->payment_ids)) { |
|
71 | 71 | |
72 | - unset( $args['user'] ); |
|
73 | - $args['post__in'] = array_map( 'absint', explode( ',', $donor->payment_ids ) ); |
|
72 | + unset($args['user']); |
|
73 | + $args['post__in'] = array_map('absint', explode(',', $donor->payment_ids)); |
|
74 | 74 | |
75 | 75 | } |
76 | 76 | |
77 | - $donations = give_get_payments( apply_filters( 'give_get_users_donations_args', $args ) ); |
|
77 | + $donations = give_get_payments(apply_filters('give_get_users_donations_args', $args)); |
|
78 | 78 | |
79 | 79 | // No donations. |
80 | - if ( ! $donations ) { |
|
80 | + if ( ! $donations) { |
|
81 | 81 | return false; |
82 | 82 | } |
83 | 83 | |
@@ -96,65 +96,65 @@ discard block |
||
96 | 96 | * |
97 | 97 | * @return bool|object List of unique forms donated by user |
98 | 98 | */ |
99 | -function give_get_users_completed_donations( $user = 0, $status = 'complete' ) { |
|
100 | - if ( empty( $user ) ) { |
|
99 | +function give_get_users_completed_donations($user = 0, $status = 'complete') { |
|
100 | + if (empty($user)) { |
|
101 | 101 | $user = get_current_user_id(); |
102 | 102 | } |
103 | 103 | |
104 | - if ( empty( $user ) ) { |
|
104 | + if (empty($user)) { |
|
105 | 105 | return false; |
106 | 106 | } |
107 | 107 | |
108 | - $by_user_id = is_numeric( $user ) ? true : false; |
|
108 | + $by_user_id = is_numeric($user) ? true : false; |
|
109 | 109 | |
110 | - $donor = new Give_Donor( $user, $by_user_id ); |
|
110 | + $donor = new Give_Donor($user, $by_user_id); |
|
111 | 111 | |
112 | - if ( empty( $donor->payment_ids ) ) { |
|
112 | + if (empty($donor->payment_ids)) { |
|
113 | 113 | return false; |
114 | 114 | } |
115 | 115 | |
116 | 116 | // Get all the items donated. |
117 | - $payment_ids = array_reverse( explode( ',', $donor->payment_ids ) ); |
|
118 | - $limit_payments = apply_filters( 'give_users_completed_donations_payments', 50 ); |
|
119 | - if ( ! empty( $limit_payments ) ) { |
|
120 | - $payment_ids = array_slice( $payment_ids, 0, $limit_payments ); |
|
117 | + $payment_ids = array_reverse(explode(',', $donor->payment_ids)); |
|
118 | + $limit_payments = apply_filters('give_users_completed_donations_payments', 50); |
|
119 | + if ( ! empty($limit_payments)) { |
|
120 | + $payment_ids = array_slice($payment_ids, 0, $limit_payments); |
|
121 | 121 | } |
122 | 122 | $donation_data = array(); |
123 | - foreach ( $payment_ids as $payment_id ) { |
|
124 | - $donation_data[] = give_get_payment_meta( $payment_id ); |
|
123 | + foreach ($payment_ids as $payment_id) { |
|
124 | + $donation_data[] = give_get_payment_meta($payment_id); |
|
125 | 125 | } |
126 | 126 | |
127 | - if ( empty( $donation_data ) ) { |
|
127 | + if (empty($donation_data)) { |
|
128 | 128 | return false; |
129 | 129 | } |
130 | 130 | |
131 | 131 | // Grab only the post ids "form_id" of the forms donated on this order. |
132 | 132 | $completed_donations_ids = array(); |
133 | - foreach ( $donation_data as $donation_meta ) { |
|
134 | - $completed_donations_ids[] = isset( $donation_meta['form_id'] ) ? $donation_meta['form_id'] : ''; |
|
133 | + foreach ($donation_data as $donation_meta) { |
|
134 | + $completed_donations_ids[] = isset($donation_meta['form_id']) ? $donation_meta['form_id'] : ''; |
|
135 | 135 | } |
136 | 136 | |
137 | - if ( empty( $completed_donations_ids ) ) { |
|
137 | + if (empty($completed_donations_ids)) { |
|
138 | 138 | return false; |
139 | 139 | } |
140 | 140 | |
141 | 141 | // Only include each donation once. |
142 | - $form_ids = array_unique( $completed_donations_ids ); |
|
142 | + $form_ids = array_unique($completed_donations_ids); |
|
143 | 143 | |
144 | 144 | // Make sure we still have some products and a first item. |
145 | - if ( empty( $form_ids ) || ! isset( $form_ids[0] ) ) { |
|
145 | + if (empty($form_ids) || ! isset($form_ids[0])) { |
|
146 | 146 | return false; |
147 | 147 | } |
148 | 148 | |
149 | - $post_type = get_post_type( $form_ids[0] ); |
|
149 | + $post_type = get_post_type($form_ids[0]); |
|
150 | 150 | |
151 | - $args = apply_filters( 'give_get_users_completed_donations_args', array( |
|
151 | + $args = apply_filters('give_get_users_completed_donations_args', array( |
|
152 | 152 | 'include' => $form_ids, |
153 | 153 | 'post_type' => $post_type, |
154 | - 'posts_per_page' => - 1, |
|
155 | - ) ); |
|
154 | + 'posts_per_page' => -1, |
|
155 | + )); |
|
156 | 156 | |
157 | - return apply_filters( 'give_users_completed_donations_list', get_posts( $args ) ); |
|
157 | + return apply_filters('give_users_completed_donations_list', get_posts($args)); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | |
@@ -170,12 +170,12 @@ discard block |
||
170 | 170 | * |
171 | 171 | * @return bool True if has donated, false other wise. |
172 | 172 | */ |
173 | -function give_has_donations( $user_id = null ) { |
|
174 | - if ( empty( $user_id ) ) { |
|
173 | +function give_has_donations($user_id = null) { |
|
174 | + if (empty($user_id)) { |
|
175 | 175 | $user_id = get_current_user_id(); |
176 | 176 | } |
177 | 177 | |
178 | - if ( give_get_users_donations( $user_id, 1 ) ) { |
|
178 | + if (give_get_users_donations($user_id, 1)) { |
|
179 | 179 | return true; // User has at least one donation. |
180 | 180 | } |
181 | 181 | |
@@ -196,23 +196,23 @@ discard block |
||
196 | 196 | * |
197 | 197 | * @return array |
198 | 198 | */ |
199 | -function give_get_donation_stats_by_user( $user = '' ) { |
|
199 | +function give_get_donation_stats_by_user($user = '') { |
|
200 | 200 | |
201 | 201 | $field = ''; |
202 | 202 | |
203 | - if ( is_email( $user ) ) { |
|
203 | + if (is_email($user)) { |
|
204 | 204 | $field = 'email'; |
205 | - } elseif ( is_numeric( $user ) ) { |
|
205 | + } elseif (is_numeric($user)) { |
|
206 | 206 | $field = 'user_id'; |
207 | 207 | } |
208 | 208 | |
209 | - $stats = array(); |
|
210 | - $donor = Give()->donors->get_donor_by( $field, $user ); |
|
209 | + $stats = array(); |
|
210 | + $donor = Give()->donors->get_donor_by($field, $user); |
|
211 | 211 | |
212 | - if ( $donor ) { |
|
213 | - $donor = new Give_Donor( $donor->id ); |
|
214 | - $stats['purchases'] = absint( $donor->purchase_count ); |
|
215 | - $stats['total_spent'] = give_maybe_sanitize_amount( $donor->get_total_donation_amount() ); |
|
212 | + if ($donor) { |
|
213 | + $donor = new Give_Donor($donor->id); |
|
214 | + $stats['purchases'] = absint($donor->purchase_count); |
|
215 | + $stats['total_spent'] = give_maybe_sanitize_amount($donor->get_total_donation_amount()); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | /** |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * |
221 | 221 | * @since 1.7 |
222 | 222 | */ |
223 | - $stats = (array) apply_filters( 'give_donation_stats_by_user', $stats, $user ); |
|
223 | + $stats = (array) apply_filters('give_donation_stats_by_user', $stats, $user); |
|
224 | 224 | |
225 | 225 | return $stats; |
226 | 226 | } |
@@ -238,21 +238,21 @@ discard block |
||
238 | 238 | * |
239 | 239 | * @return int The total number of donations. |
240 | 240 | */ |
241 | -function give_count_donations_of_donor( $user = null ) { |
|
241 | +function give_count_donations_of_donor($user = null) { |
|
242 | 242 | |
243 | 243 | // Logged in? |
244 | - if ( empty( $user ) ) { |
|
244 | + if (empty($user)) { |
|
245 | 245 | $user = get_current_user_id(); |
246 | 246 | } |
247 | 247 | |
248 | 248 | // Email access? |
249 | - if ( empty( $user ) && Give()->email_access->token_email ) { |
|
249 | + if (empty($user) && Give()->email_access->token_email) { |
|
250 | 250 | $user = Give()->email_access->token_email; |
251 | 251 | } |
252 | 252 | |
253 | - $stats = ! empty( $user ) ? give_get_donation_stats_by_user( $user ) : false; |
|
253 | + $stats = ! empty($user) ? give_get_donation_stats_by_user($user) : false; |
|
254 | 254 | |
255 | - return isset( $stats['purchases'] ) ? $stats['purchases'] : 0; |
|
255 | + return isset($stats['purchases']) ? $stats['purchases'] : 0; |
|
256 | 256 | } |
257 | 257 | |
258 | 258 | /** |
@@ -265,9 +265,9 @@ discard block |
||
265 | 265 | * |
266 | 266 | * @return float The total amount the user has spent |
267 | 267 | */ |
268 | -function give_donation_total_of_user( $user = null ) { |
|
268 | +function give_donation_total_of_user($user = null) { |
|
269 | 269 | |
270 | - $stats = give_get_donation_stats_by_user( $user ); |
|
270 | + $stats = give_get_donation_stats_by_user($user); |
|
271 | 271 | |
272 | 272 | return $stats['total_spent']; |
273 | 273 | } |
@@ -283,40 +283,40 @@ discard block |
||
283 | 283 | * |
284 | 284 | * @return bool |
285 | 285 | */ |
286 | -function give_validate_username( $username, $form_id = 0 ) { |
|
286 | +function give_validate_username($username, $form_id = 0) { |
|
287 | 287 | $valid = true; |
288 | 288 | |
289 | 289 | // Validate username. |
290 | - if ( ! empty( $username ) ) { |
|
290 | + if ( ! empty($username)) { |
|
291 | 291 | |
292 | 292 | // Sanitize username. |
293 | - $sanitized_user_name = sanitize_user( $username, false ); |
|
293 | + $sanitized_user_name = sanitize_user($username, false); |
|
294 | 294 | |
295 | 295 | // We have an user name, check if it already exists. |
296 | - if ( username_exists( $username ) ) { |
|
296 | + if (username_exists($username)) { |
|
297 | 297 | // Username already registered. |
298 | - give_set_error( 'username_unavailable', __( 'Username already taken.', 'give' ) ); |
|
298 | + give_set_error('username_unavailable', __('Username already taken.', 'give')); |
|
299 | 299 | $valid = false; |
300 | 300 | |
301 | 301 | // Check if it's valid. |
302 | - } elseif ( $sanitized_user_name !== $username ) { |
|
302 | + } elseif ($sanitized_user_name !== $username) { |
|
303 | 303 | // Invalid username. |
304 | - if ( is_multisite() ) { |
|
305 | - give_set_error( 'username_invalid', __( 'Invalid username. Only lowercase letters (a-z) and numbers are allowed.', 'give' ) ); |
|
304 | + if (is_multisite()) { |
|
305 | + give_set_error('username_invalid', __('Invalid username. Only lowercase letters (a-z) and numbers are allowed.', 'give')); |
|
306 | 306 | $valid = false; |
307 | 307 | } else { |
308 | - give_set_error( 'username_invalid', __( 'Invalid username.', 'give' ) ); |
|
308 | + give_set_error('username_invalid', __('Invalid username.', 'give')); |
|
309 | 309 | $valid = false; |
310 | 310 | } |
311 | 311 | } |
312 | 312 | } else { |
313 | 313 | // Username is empty. |
314 | - give_set_error( 'username_empty', __( 'Enter a username.', 'give' ) ); |
|
314 | + give_set_error('username_empty', __('Enter a username.', 'give')); |
|
315 | 315 | $valid = false; |
316 | 316 | |
317 | 317 | // Check if guest checkout is disable for form. |
318 | - if ( $form_id && give_logged_in_only( $form_id ) ) { |
|
319 | - give_set_error( 'registration_required', __( 'You must register or login to complete your donation.', 'give' ) ); |
|
318 | + if ($form_id && give_logged_in_only($form_id)) { |
|
319 | + give_set_error('registration_required', __('You must register or login to complete your donation.', 'give')); |
|
320 | 320 | $valid = false; |
321 | 321 | } |
322 | 322 | } |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | * |
331 | 331 | * @since 1.8 |
332 | 332 | */ |
333 | - $valid = (bool) apply_filters( 'give_validate_username', $valid, $username, $form_id ); |
|
333 | + $valid = (bool) apply_filters('give_validate_username', $valid, $username, $form_id); |
|
334 | 334 | |
335 | 335 | return $valid; |
336 | 336 | } |
@@ -346,30 +346,30 @@ discard block |
||
346 | 346 | * |
347 | 347 | * @return bool |
348 | 348 | */ |
349 | -function give_validate_user_email( $email, $registering_new_user = false ) { |
|
349 | +function give_validate_user_email($email, $registering_new_user = false) { |
|
350 | 350 | $valid = true; |
351 | 351 | |
352 | - if ( empty( $email ) ) { |
|
352 | + if (empty($email)) { |
|
353 | 353 | // No email. |
354 | - give_set_error( 'email_empty', __( 'Enter an email.', 'give' ) ); |
|
354 | + give_set_error('email_empty', __('Enter an email.', 'give')); |
|
355 | 355 | $valid = false; |
356 | 356 | |
357 | - } elseif ( email_exists( $email ) ) { |
|
357 | + } elseif (email_exists($email)) { |
|
358 | 358 | // Email already exists. |
359 | - give_set_error( 'email_exists', __( 'Email already exists.', 'give' ) ); |
|
359 | + give_set_error('email_exists', __('Email already exists.', 'give')); |
|
360 | 360 | $valid = false; |
361 | 361 | |
362 | - } elseif ( ! is_email( $email ) ) { |
|
362 | + } elseif ( ! is_email($email)) { |
|
363 | 363 | // Validate email. |
364 | - give_set_error( 'email_invalid', __( 'Invalid email.', 'give' ) ); |
|
364 | + give_set_error('email_invalid', __('Invalid email.', 'give')); |
|
365 | 365 | $valid = false; |
366 | 366 | |
367 | - } elseif ( $registering_new_user ) { |
|
367 | + } elseif ($registering_new_user) { |
|
368 | 368 | |
369 | 369 | // If donor email is not primary. |
370 | - if ( ! email_exists( $email ) && give_donor_email_exists( $email ) && give_is_additional_email( $email ) ) { |
|
370 | + if ( ! email_exists($email) && give_donor_email_exists($email) && give_is_additional_email($email)) { |
|
371 | 371 | // Check if email exists. |
372 | - give_set_error( 'email_used', __( 'The email address provided is already active for another user.', 'give' ) ); |
|
372 | + give_set_error('email_used', __('The email address provided is already active for another user.', 'give')); |
|
373 | 373 | $valid = false; |
374 | 374 | } |
375 | 375 | } |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | * |
384 | 384 | * @since 1.8 |
385 | 385 | */ |
386 | - $valid = (bool) apply_filters( 'give_validate_user_email', $valid, $email, $registering_new_user ); |
|
386 | + $valid = (bool) apply_filters('give_validate_user_email', $valid, $email, $registering_new_user); |
|
387 | 387 | |
388 | 388 | return $valid; |
389 | 389 | } |
@@ -399,34 +399,34 @@ discard block |
||
399 | 399 | * |
400 | 400 | * @return bool |
401 | 401 | */ |
402 | -function give_validate_user_password( $password = '', $confirm_password = '', $registering_new_user = false ) { |
|
402 | +function give_validate_user_password($password = '', $confirm_password = '', $registering_new_user = false) { |
|
403 | 403 | $valid = true; |
404 | 404 | |
405 | 405 | // Passwords Validation For New Donors Only. |
406 | - if ( $registering_new_user ) { |
|
406 | + if ($registering_new_user) { |
|
407 | 407 | // Password or confirmation missing. |
408 | - if ( ! $password ) { |
|
408 | + if ( ! $password) { |
|
409 | 409 | // The password is invalid. |
410 | - give_set_error( 'password_empty', __( 'Enter a password.', 'give' ) ); |
|
410 | + give_set_error('password_empty', __('Enter a password.', 'give')); |
|
411 | 411 | $valid = false; |
412 | - } elseif ( ! $confirm_password ) { |
|
412 | + } elseif ( ! $confirm_password) { |
|
413 | 413 | // Confirmation password is invalid. |
414 | - give_set_error( 'confirmation_empty', __( 'Enter the password confirmation.', 'give' ) ); |
|
414 | + give_set_error('confirmation_empty', __('Enter the password confirmation.', 'give')); |
|
415 | 415 | $valid = false; |
416 | 416 | } |
417 | 417 | } |
418 | 418 | // Passwords Validation For New Donors as well as Existing Donors. |
419 | - if ( $password || $confirm_password ) { |
|
420 | - if ( strlen( $password ) < 6 || strlen( $confirm_password ) < 6 ) { |
|
419 | + if ($password || $confirm_password) { |
|
420 | + if (strlen($password) < 6 || strlen($confirm_password) < 6) { |
|
421 | 421 | // Seems Weak Password. |
422 | - give_set_error( 'password_weak', __( 'Passwords should have at least 6 characters.', 'give' ) ); |
|
422 | + give_set_error('password_weak', __('Passwords should have at least 6 characters.', 'give')); |
|
423 | 423 | $valid = false; |
424 | 424 | } |
425 | - if ( $password && $confirm_password ) { |
|
425 | + if ($password && $confirm_password) { |
|
426 | 426 | // Verify confirmation matches. |
427 | - if ( $password !== $confirm_password ) { |
|
427 | + if ($password !== $confirm_password) { |
|
428 | 428 | // Passwords do not match. |
429 | - give_set_error( 'password_mismatch', __( 'Passwords you entered do not match. Please try again.', 'give' ) ); |
|
429 | + give_set_error('password_mismatch', __('Passwords you entered do not match. Please try again.', 'give')); |
|
430 | 430 | $valid = false; |
431 | 431 | } |
432 | 432 | } |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | * |
443 | 443 | * @since 1.8 |
444 | 444 | */ |
445 | - $valid = (bool) apply_filters( 'give_validate_user_email', $valid, $password, $confirm_password, $registering_new_user ); |
|
445 | + $valid = (bool) apply_filters('give_validate_user_email', $valid, $password, $confirm_password, $registering_new_user); |
|
446 | 446 | |
447 | 447 | return $valid; |
448 | 448 | } |
@@ -471,8 +471,8 @@ discard block |
||
471 | 471 | * |
472 | 472 | * @return array The donor's address, if any |
473 | 473 | */ |
474 | -function give_get_donor_address( $donor_id = null, $args = array() ) { |
|
475 | - if ( empty( $donor_id ) ) { |
|
474 | +function give_get_donor_address($donor_id = null, $args = array()) { |
|
475 | + if (empty($donor_id)) { |
|
476 | 476 | $donor_id = get_current_user_id(); |
477 | 477 | } |
478 | 478 | |
@@ -493,34 +493,34 @@ discard block |
||
493 | 493 | ); |
494 | 494 | |
495 | 495 | // Backward compatibility for user id param. |
496 | - $by_user_id = get_user_by( 'id', $donor_id ) ? true : false; |
|
496 | + $by_user_id = get_user_by('id', $donor_id) ? true : false; |
|
497 | 497 | |
498 | 498 | // Backward compatibility. |
499 | - if( ! give_has_upgrade_completed( 'v20_upgrades_user_address' ) && $by_user_id ){ |
|
499 | + if ( ! give_has_upgrade_completed('v20_upgrades_user_address') && $by_user_id) { |
|
500 | 500 | return wp_parse_args( |
501 | - (array) get_user_meta( $donor_id, '_give_user_address', true ), |
|
501 | + (array) get_user_meta($donor_id, '_give_user_address', true), |
|
502 | 502 | $default_address |
503 | 503 | ); |
504 | 504 | } |
505 | 505 | |
506 | - $donor = new Give_Donor( $donor_id, $by_user_id ); |
|
506 | + $donor = new Give_Donor($donor_id, $by_user_id); |
|
507 | 507 | |
508 | 508 | |
509 | 509 | if ( |
510 | 510 | ! $donor->id || |
511 | - empty( $donor->address ) || |
|
512 | - ! array_key_exists( $args['address_type'], $donor->address ) |
|
511 | + empty($donor->address) || |
|
512 | + ! array_key_exists($args['address_type'], $donor->address) |
|
513 | 513 | ) { |
514 | 514 | return $default_address; |
515 | 515 | } |
516 | 516 | |
517 | - switch ( true ){ |
|
518 | - case is_string( end( $donor->address[ $args['address_type'] ] ) ) : |
|
519 | - $address = wp_parse_args( $donor->address[ $args['address_type'] ], $default_address ); |
|
517 | + switch (true) { |
|
518 | + case is_string(end($donor->address[$args['address_type']])) : |
|
519 | + $address = wp_parse_args($donor->address[$args['address_type']], $default_address); |
|
520 | 520 | break; |
521 | 521 | |
522 | - case is_array( end( $donor->address[ $args['address_type'] ] ) ) : |
|
523 | - $address = wp_parse_args( array_shift( $donor->address[ $args['address_type'] ] ), $default_address ); |
|
522 | + case is_array(end($donor->address[$args['address_type']])) : |
|
523 | + $address = wp_parse_args(array_shift($donor->address[$args['address_type']]), $default_address); |
|
524 | 524 | break; |
525 | 525 | } |
526 | 526 | |
@@ -540,17 +540,17 @@ discard block |
||
540 | 540 | * |
541 | 541 | * @return void |
542 | 542 | */ |
543 | -function give_new_user_notification( $user_id = 0, $user_data = array() ) { |
|
543 | +function give_new_user_notification($user_id = 0, $user_data = array()) { |
|
544 | 544 | // Bailout. |
545 | - if ( empty( $user_id ) || empty( $user_data ) ) { |
|
545 | + if (empty($user_id) || empty($user_data)) { |
|
546 | 546 | return; |
547 | 547 | } |
548 | 548 | |
549 | - do_action( 'give_new-donor-register_email_notification', $user_id, $user_data ); |
|
550 | - do_action( 'give_donor-register_email_notification', $user_id, $user_data ); |
|
549 | + do_action('give_new-donor-register_email_notification', $user_id, $user_data); |
|
550 | + do_action('give_donor-register_email_notification', $user_id, $user_data); |
|
551 | 551 | } |
552 | 552 | |
553 | -add_action( 'give_insert_user', 'give_new_user_notification', 10, 2 ); |
|
553 | +add_action('give_insert_user', 'give_new_user_notification', 10, 2); |
|
554 | 554 | |
555 | 555 | |
556 | 556 | /** |
@@ -566,36 +566,36 @@ discard block |
||
566 | 566 | * |
567 | 567 | * @return string |
568 | 568 | */ |
569 | -function give_get_donor_name_by( $id = 0, $from = 'donation' ) { |
|
569 | +function give_get_donor_name_by($id = 0, $from = 'donation') { |
|
570 | 570 | |
571 | 571 | // ID shouldn't be empty. |
572 | - if ( empty( $id ) ) { |
|
572 | + if (empty($id)) { |
|
573 | 573 | return ''; |
574 | 574 | } |
575 | 575 | |
576 | 576 | $name = ''; |
577 | 577 | |
578 | - switch ( $from ) { |
|
578 | + switch ($from) { |
|
579 | 579 | |
580 | 580 | case 'donation': |
581 | - $donation_info = new Give_Payment( $id ); |
|
582 | - $first_name = $donation_info->get_meta( '_give_donor_billing_first_name', true ); |
|
583 | - $last_name = $donation_info->get_meta( '_give_donor_billing_last_name', true ); |
|
581 | + $donation_info = new Give_Payment($id); |
|
582 | + $first_name = $donation_info->get_meta('_give_donor_billing_first_name', true); |
|
583 | + $last_name = $donation_info->get_meta('_give_donor_billing_last_name', true); |
|
584 | 584 | |
585 | - $name = trim( "{$first_name} {$last_name}" ); |
|
585 | + $name = trim("{$first_name} {$last_name}"); |
|
586 | 586 | |
587 | 587 | break; |
588 | 588 | |
589 | 589 | case 'donor': |
590 | 590 | |
591 | - $donor = new Give_Donor( $id ); |
|
591 | + $donor = new Give_Donor($id); |
|
592 | 592 | $name = $donor->name; |
593 | 593 | |
594 | 594 | break; |
595 | 595 | |
596 | 596 | } |
597 | 597 | |
598 | - return trim( $name ); |
|
598 | + return trim($name); |
|
599 | 599 | |
600 | 600 | } |
601 | 601 | |
@@ -608,8 +608,8 @@ discard block |
||
608 | 608 | * |
609 | 609 | * @return boolean The user's ID on success, and false on failure. |
610 | 610 | */ |
611 | -function give_donor_email_exists( $email ) { |
|
612 | - if ( Give()->donors->get_donor_by( 'email', $email ) ) { |
|
611 | +function give_donor_email_exists($email) { |
|
612 | + if (Give()->donors->get_donor_by('email', $email)) { |
|
613 | 613 | return true; |
614 | 614 | } |
615 | 615 | return false; |
@@ -624,14 +624,14 @@ discard block |
||
624 | 624 | * |
625 | 625 | * @return bool |
626 | 626 | */ |
627 | -function give_is_additional_email( $email ) { |
|
627 | +function give_is_additional_email($email) { |
|
628 | 628 | global $wpdb; |
629 | 629 | |
630 | 630 | $meta_table = Give()->donor_meta->table_name; |
631 | 631 | $meta_type = Give()->donor_meta->meta_type; |
632 | - $donor_id = $wpdb->get_var( $wpdb->prepare( "SELECT {$meta_type}_id FROM {$meta_table} WHERE meta_key = 'additional_email' AND meta_value = %s LIMIT 1", $email ) ); |
|
632 | + $donor_id = $wpdb->get_var($wpdb->prepare("SELECT {$meta_type}_id FROM {$meta_table} WHERE meta_key = 'additional_email' AND meta_value = %s LIMIT 1", $email)); |
|
633 | 633 | |
634 | - if ( empty( $donor_id ) ) { |
|
634 | + if (empty($donor_id)) { |
|
635 | 635 | return false; |
636 | 636 | } |
637 | 637 |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | |
14 | 14 | // Exit if accessed directly. |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if ( ! defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
@@ -141,27 +141,27 @@ discard block |
||
141 | 141 | 'v1' => 'GIVE_API_V1', |
142 | 142 | ); |
143 | 143 | |
144 | - foreach ( $this->get_versions() as $version => $class ) { |
|
145 | - require_once GIVE_PLUGIN_DIR . 'includes/api/class-give-api-' . $version . '.php'; |
|
144 | + foreach ($this->get_versions() as $version => $class) { |
|
145 | + require_once GIVE_PLUGIN_DIR.'includes/api/class-give-api-'.$version.'.php'; |
|
146 | 146 | } |
147 | 147 | |
148 | - add_action( 'init', array( $this, 'add_endpoint' ) ); |
|
149 | - add_action( 'wp', array( $this, 'process_query' ), - 1 ); |
|
150 | - add_filter( 'query_vars', array( $this, 'query_vars' ) ); |
|
151 | - add_action( 'show_user_profile', array( $this, 'user_key_field' ) ); |
|
152 | - add_action( 'edit_user_profile', array( $this, 'user_key_field' ) ); |
|
153 | - add_action( 'personal_options_update', array( $this, 'generate_api_key' ) ); |
|
154 | - add_action( 'edit_user_profile_update', array( $this, 'generate_api_key' ) ); |
|
155 | - add_action( 'give_process_api_key', array( $this, 'process_api_key' ) ); |
|
148 | + add_action('init', array($this, 'add_endpoint')); |
|
149 | + add_action('wp', array($this, 'process_query'), - 1); |
|
150 | + add_filter('query_vars', array($this, 'query_vars')); |
|
151 | + add_action('show_user_profile', array($this, 'user_key_field')); |
|
152 | + add_action('edit_user_profile', array($this, 'user_key_field')); |
|
153 | + add_action('personal_options_update', array($this, 'generate_api_key')); |
|
154 | + add_action('edit_user_profile_update', array($this, 'generate_api_key')); |
|
155 | + add_action('give_process_api_key', array($this, 'process_api_key')); |
|
156 | 156 | |
157 | 157 | // Setup a backwards compatibility check for user API Keys |
158 | - add_filter( 'get_user_metadata', array( $this, 'api_key_backwards_compat' ), 10, 4 ); |
|
158 | + add_filter('get_user_metadata', array($this, 'api_key_backwards_compat'), 10, 4); |
|
159 | 159 | |
160 | 160 | // Determine if JSON_PRETTY_PRINT is available |
161 | - $this->pretty_print = defined( 'JSON_PRETTY_PRINT' ) ? JSON_PRETTY_PRINT : null; |
|
161 | + $this->pretty_print = defined('JSON_PRETTY_PRINT') ? JSON_PRETTY_PRINT : null; |
|
162 | 162 | |
163 | 163 | // Allow API request logging to be turned off |
164 | - $this->log_requests = apply_filters( 'give_api_log_requests', $this->log_requests ); |
|
164 | + $this->log_requests = apply_filters('give_api_log_requests', $this->log_requests); |
|
165 | 165 | |
166 | 166 | // Setup Give_Payment_Stats instance |
167 | 167 | $this->stats = new Give_Payment_Stats(); |
@@ -179,17 +179,17 @@ discard block |
||
179 | 179 | * |
180 | 180 | * @return mixed |
181 | 181 | */ |
182 | - public function __call( $name, $arguments ) { |
|
182 | + public function __call($name, $arguments) { |
|
183 | 183 | $deprecated_function_arr = array( |
184 | 184 | 'get_customers', |
185 | 185 | ); |
186 | 186 | |
187 | - if ( in_array( $name, $deprecated_function_arr, true ) ) { |
|
188 | - switch ( $name ) { |
|
187 | + if (in_array($name, $deprecated_function_arr, true)) { |
|
188 | + switch ($name) { |
|
189 | 189 | case 'get_customers': |
190 | - $args = ! empty( $arguments[0] ) ? $arguments[0] : array(); |
|
190 | + $args = ! empty($arguments[0]) ? $arguments[0] : array(); |
|
191 | 191 | |
192 | - return $this->get_donors( $args ); |
|
192 | + return $this->get_donors($args); |
|
193 | 193 | } |
194 | 194 | } |
195 | 195 | } |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | * @since 1.1 |
203 | 203 | */ |
204 | 204 | public function add_endpoint() { |
205 | - add_rewrite_endpoint( 'give-api', EP_ALL ); |
|
205 | + add_rewrite_endpoint('give-api', EP_ALL); |
|
206 | 206 | } |
207 | 207 | |
208 | 208 | /** |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | * |
216 | 216 | * @return string[] $vars New query vars |
217 | 217 | */ |
218 | - public function query_vars( $vars ) { |
|
218 | + public function query_vars($vars) { |
|
219 | 219 | |
220 | 220 | $vars[] = 'token'; |
221 | 221 | $vars[] = 'key'; |
@@ -266,11 +266,11 @@ discard block |
||
266 | 266 | */ |
267 | 267 | public function get_default_version() { |
268 | 268 | |
269 | - $version = get_option( 'give_default_api_version' ); |
|
269 | + $version = get_option('give_default_api_version'); |
|
270 | 270 | |
271 | - if ( defined( 'GIVE_API_VERSION' ) ) { |
|
271 | + if (defined('GIVE_API_VERSION')) { |
|
272 | 272 | $version = GIVE_API_VERSION; |
273 | - } elseif ( ! $version ) { |
|
273 | + } elseif ( ! $version) { |
|
274 | 274 | $version = 'v1'; |
275 | 275 | } |
276 | 276 | |
@@ -291,14 +291,14 @@ discard block |
||
291 | 291 | |
292 | 292 | $version = $wp_query->query_vars['give-api']; |
293 | 293 | |
294 | - if ( strpos( $version, '/' ) ) { |
|
294 | + if (strpos($version, '/')) { |
|
295 | 295 | |
296 | - $version = explode( '/', $version ); |
|
297 | - $version = strtolower( $version[0] ); |
|
296 | + $version = explode('/', $version); |
|
297 | + $version = strtolower($version[0]); |
|
298 | 298 | |
299 | - $wp_query->query_vars['give-api'] = str_replace( $version . '/', '', $wp_query->query_vars['give-api'] ); |
|
299 | + $wp_query->query_vars['give-api'] = str_replace($version.'/', '', $wp_query->query_vars['give-api']); |
|
300 | 300 | |
301 | - if ( array_key_exists( $version, $this->versions ) ) { |
|
301 | + if (array_key_exists($version, $this->versions)) { |
|
302 | 302 | |
303 | 303 | $this->queried_version = $version; |
304 | 304 | |
@@ -334,16 +334,16 @@ discard block |
||
334 | 334 | $this->override = false; |
335 | 335 | |
336 | 336 | // Make sure we have both user and api key |
337 | - if ( ! empty( $wp_query->query_vars['give-api'] ) && ( $wp_query->query_vars['give-api'] !== 'forms' || ! empty( $wp_query->query_vars['token'] ) ) ) { |
|
337 | + if ( ! empty($wp_query->query_vars['give-api']) && ($wp_query->query_vars['give-api'] !== 'forms' || ! empty($wp_query->query_vars['token']))) { |
|
338 | 338 | |
339 | - if ( empty( $wp_query->query_vars['token'] ) || empty( $wp_query->query_vars['key'] ) ) { |
|
339 | + if (empty($wp_query->query_vars['token']) || empty($wp_query->query_vars['key'])) { |
|
340 | 340 | $this->missing_auth(); |
341 | 341 | |
342 | 342 | return false; |
343 | 343 | } |
344 | 344 | |
345 | 345 | // Retrieve the user by public API key and ensure they exist |
346 | - if ( ! ( $user = $this->get_user( $wp_query->query_vars['key'] ) ) ) { |
|
346 | + if ( ! ($user = $this->get_user($wp_query->query_vars['key']))) { |
|
347 | 347 | |
348 | 348 | $this->invalid_key(); |
349 | 349 | |
@@ -351,11 +351,11 @@ discard block |
||
351 | 351 | |
352 | 352 | } else { |
353 | 353 | |
354 | - $token = urldecode( $wp_query->query_vars['token'] ); |
|
355 | - $secret = $this->get_user_secret_key( $user ); |
|
356 | - $public = urldecode( $wp_query->query_vars['key'] ); |
|
354 | + $token = urldecode($wp_query->query_vars['token']); |
|
355 | + $secret = $this->get_user_secret_key($user); |
|
356 | + $public = urldecode($wp_query->query_vars['key']); |
|
357 | 357 | |
358 | - if ( hash_equals( md5( $secret . $public ), $token ) ) { |
|
358 | + if (hash_equals(md5($secret.$public), $token)) { |
|
359 | 359 | $this->is_valid_request = true; |
360 | 360 | } else { |
361 | 361 | $this->invalid_auth(); |
@@ -364,9 +364,9 @@ discard block |
||
364 | 364 | } |
365 | 365 | |
366 | 366 | } |
367 | - } elseif ( ! empty( $wp_query->query_vars['give-api'] ) && $wp_query->query_vars['give-api'] === 'forms' ) { |
|
367 | + } elseif ( ! empty($wp_query->query_vars['give-api']) && $wp_query->query_vars['give-api'] === 'forms') { |
|
368 | 368 | $this->is_valid_request = true; |
369 | - $wp_query->set( 'key', 'public' ); |
|
369 | + $wp_query->set('key', 'public'); |
|
370 | 370 | } |
371 | 371 | } |
372 | 372 | |
@@ -382,25 +382,25 @@ discard block |
||
382 | 382 | * |
383 | 383 | * @return bool if user ID is found, false otherwise |
384 | 384 | */ |
385 | - public function get_user( $key = '' ) { |
|
385 | + public function get_user($key = '') { |
|
386 | 386 | global $wpdb, $wp_query; |
387 | 387 | |
388 | - if ( empty( $key ) ) { |
|
389 | - $key = urldecode( $wp_query->query_vars['key'] ); |
|
388 | + if (empty($key)) { |
|
389 | + $key = urldecode($wp_query->query_vars['key']); |
|
390 | 390 | } |
391 | 391 | |
392 | - if ( empty( $key ) ) { |
|
392 | + if (empty($key)) { |
|
393 | 393 | return false; |
394 | 394 | } |
395 | 395 | |
396 | - $user = Give_Cache::get( md5( 'give_api_user_' . $key ), true ); |
|
396 | + $user = Give_Cache::get(md5('give_api_user_'.$key), true); |
|
397 | 397 | |
398 | - if ( false === $user ) { |
|
399 | - $user = $wpdb->get_var( $wpdb->prepare( "SELECT user_id FROM $wpdb->usermeta WHERE meta_key = %s LIMIT 1", $key ) ); |
|
400 | - Give_Cache::set( md5( 'give_api_user_' . $key ), $user, DAY_IN_SECONDS, true ); |
|
398 | + if (false === $user) { |
|
399 | + $user = $wpdb->get_var($wpdb->prepare("SELECT user_id FROM $wpdb->usermeta WHERE meta_key = %s LIMIT 1", $key)); |
|
400 | + Give_Cache::set(md5('give_api_user_'.$key), $user, DAY_IN_SECONDS, true); |
|
401 | 401 | } |
402 | 402 | |
403 | - if ( $user != null ) { |
|
403 | + if ($user != null) { |
|
404 | 404 | $this->user_id = $user; |
405 | 405 | |
406 | 406 | return $user; |
@@ -416,19 +416,19 @@ discard block |
||
416 | 416 | * |
417 | 417 | * @return mixed|null|string |
418 | 418 | */ |
419 | - public function get_user_public_key( $user_id = 0 ) { |
|
419 | + public function get_user_public_key($user_id = 0) { |
|
420 | 420 | global $wpdb; |
421 | 421 | |
422 | - if ( empty( $user_id ) ) { |
|
422 | + if (empty($user_id)) { |
|
423 | 423 | return ''; |
424 | 424 | } |
425 | 425 | |
426 | - $cache_key = md5( 'give_api_user_public_key' . $user_id ); |
|
427 | - $user_public_key = Give_Cache::get( $cache_key, true ); |
|
426 | + $cache_key = md5('give_api_user_public_key'.$user_id); |
|
427 | + $user_public_key = Give_Cache::get($cache_key, true); |
|
428 | 428 | |
429 | - if ( empty( $user_public_key ) ) { |
|
430 | - $user_public_key = $wpdb->get_var( $wpdb->prepare( "SELECT meta_key FROM $wpdb->usermeta WHERE meta_value = 'give_user_public_key' AND user_id = %d", $user_id ) ); |
|
431 | - Give_Cache::set( $cache_key, $user_public_key, HOUR_IN_SECONDS, true ); |
|
429 | + if (empty($user_public_key)) { |
|
430 | + $user_public_key = $wpdb->get_var($wpdb->prepare("SELECT meta_key FROM $wpdb->usermeta WHERE meta_value = 'give_user_public_key' AND user_id = %d", $user_id)); |
|
431 | + Give_Cache::set($cache_key, $user_public_key, HOUR_IN_SECONDS, true); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | return $user_public_key; |
@@ -441,19 +441,19 @@ discard block |
||
441 | 441 | * |
442 | 442 | * @return mixed|null|string |
443 | 443 | */ |
444 | - public function get_user_secret_key( $user_id = 0 ) { |
|
444 | + public function get_user_secret_key($user_id = 0) { |
|
445 | 445 | global $wpdb; |
446 | 446 | |
447 | - if ( empty( $user_id ) ) { |
|
447 | + if (empty($user_id)) { |
|
448 | 448 | return ''; |
449 | 449 | } |
450 | 450 | |
451 | - $cache_key = md5( 'give_api_user_secret_key' . $user_id ); |
|
452 | - $user_secret_key = Give_Cache::get( $cache_key, true ); |
|
451 | + $cache_key = md5('give_api_user_secret_key'.$user_id); |
|
452 | + $user_secret_key = Give_Cache::get($cache_key, true); |
|
453 | 453 | |
454 | - if ( empty( $user_secret_key ) ) { |
|
455 | - $user_secret_key = $wpdb->get_var( $wpdb->prepare( "SELECT meta_key FROM $wpdb->usermeta WHERE meta_value = 'give_user_secret_key' AND user_id = %d", $user_id ) ); |
|
456 | - Give_Cache::set( $cache_key, $user_secret_key, HOUR_IN_SECONDS, true ); |
|
454 | + if (empty($user_secret_key)) { |
|
455 | + $user_secret_key = $wpdb->get_var($wpdb->prepare("SELECT meta_key FROM $wpdb->usermeta WHERE meta_value = 'give_user_secret_key' AND user_id = %d", $user_id)); |
|
456 | + Give_Cache::set($cache_key, $user_secret_key, HOUR_IN_SECONDS, true); |
|
457 | 457 | } |
458 | 458 | |
459 | 459 | return $user_secret_key; |
@@ -469,10 +469,10 @@ discard block |
||
469 | 469 | */ |
470 | 470 | private function missing_auth() { |
471 | 471 | $error = array(); |
472 | - $error['error'] = __( 'You must specify both a token and API key.', 'give' ); |
|
472 | + $error['error'] = __('You must specify both a token and API key.', 'give'); |
|
473 | 473 | |
474 | 474 | $this->data = $error; |
475 | - $this->output( 401 ); |
|
475 | + $this->output(401); |
|
476 | 476 | } |
477 | 477 | |
478 | 478 | /** |
@@ -486,10 +486,10 @@ discard block |
||
486 | 486 | */ |
487 | 487 | private function invalid_auth() { |
488 | 488 | $error = array(); |
489 | - $error['error'] = __( 'Your request could not be authenticated.', 'give' ); |
|
489 | + $error['error'] = __('Your request could not be authenticated.', 'give'); |
|
490 | 490 | |
491 | 491 | $this->data = $error; |
492 | - $this->output( 403 ); |
|
492 | + $this->output(403); |
|
493 | 493 | } |
494 | 494 | |
495 | 495 | /** |
@@ -503,10 +503,10 @@ discard block |
||
503 | 503 | */ |
504 | 504 | private function invalid_key() { |
505 | 505 | $error = array(); |
506 | - $error['error'] = __( 'Invalid API key.', 'give' ); |
|
506 | + $error['error'] = __('Invalid API key.', 'give'); |
|
507 | 507 | |
508 | 508 | $this->data = $error; |
509 | - $this->output( 403 ); |
|
509 | + $this->output(403); |
|
510 | 510 | } |
511 | 511 | |
512 | 512 | /** |
@@ -519,10 +519,10 @@ discard block |
||
519 | 519 | */ |
520 | 520 | private function invalid_version() { |
521 | 521 | $error = array(); |
522 | - $error['error'] = __( 'Invalid API version.', 'give' ); |
|
522 | + $error['error'] = __('Invalid API version.', 'give'); |
|
523 | 523 | |
524 | 524 | $this->data = $error; |
525 | - $this->output( 404 ); |
|
525 | + $this->output(404); |
|
526 | 526 | } |
527 | 527 | |
528 | 528 | /** |
@@ -538,10 +538,10 @@ discard block |
||
538 | 538 | global $wp_query; |
539 | 539 | |
540 | 540 | // Start logging how long the request takes for logging |
541 | - $before = microtime( true ); |
|
541 | + $before = microtime(true); |
|
542 | 542 | |
543 | 543 | // Check for give-api var. Get out if not present |
544 | - if ( empty( $wp_query->query_vars['give-api'] ) ) { |
|
544 | + if (empty($wp_query->query_vars['give-api'])) { |
|
545 | 545 | return; |
546 | 546 | } |
547 | 547 | |
@@ -555,45 +555,45 @@ discard block |
||
555 | 555 | $this->validate_request(); |
556 | 556 | |
557 | 557 | // Only proceed if no errors have been noted |
558 | - if ( ! $this->is_valid_request ) { |
|
558 | + if ( ! $this->is_valid_request) { |
|
559 | 559 | return; |
560 | 560 | } |
561 | 561 | |
562 | - if ( ! defined( 'GIVE_DOING_API' ) ) { |
|
563 | - define( 'GIVE_DOING_API', true ); |
|
562 | + if ( ! defined('GIVE_DOING_API')) { |
|
563 | + define('GIVE_DOING_API', true); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | $data = array(); |
567 | 567 | $this->routes = new $this->versions[$this->get_queried_version()]; |
568 | 568 | $this->routes->validate_request(); |
569 | 569 | |
570 | - switch ( $this->endpoint ) : |
|
570 | + switch ($this->endpoint) : |
|
571 | 571 | |
572 | 572 | case 'stats' : |
573 | 573 | |
574 | - $data = $this->routes->get_stats( array( |
|
575 | - 'type' => isset( $wp_query->query_vars['type'] ) ? $wp_query->query_vars['type'] : null, |
|
576 | - 'form' => isset( $wp_query->query_vars['form'] ) ? $wp_query->query_vars['form'] : null, |
|
577 | - 'date' => isset( $wp_query->query_vars['date'] ) ? $wp_query->query_vars['date'] : null, |
|
578 | - 'startdate' => isset( $wp_query->query_vars['startdate'] ) ? $wp_query->query_vars['startdate'] : null, |
|
579 | - 'enddate' => isset( $wp_query->query_vars['enddate'] ) ? $wp_query->query_vars['enddate'] : null, |
|
580 | - ) ); |
|
574 | + $data = $this->routes->get_stats(array( |
|
575 | + 'type' => isset($wp_query->query_vars['type']) ? $wp_query->query_vars['type'] : null, |
|
576 | + 'form' => isset($wp_query->query_vars['form']) ? $wp_query->query_vars['form'] : null, |
|
577 | + 'date' => isset($wp_query->query_vars['date']) ? $wp_query->query_vars['date'] : null, |
|
578 | + 'startdate' => isset($wp_query->query_vars['startdate']) ? $wp_query->query_vars['startdate'] : null, |
|
579 | + 'enddate' => isset($wp_query->query_vars['enddate']) ? $wp_query->query_vars['enddate'] : null, |
|
580 | + )); |
|
581 | 581 | |
582 | 582 | break; |
583 | 583 | |
584 | 584 | case 'forms' : |
585 | 585 | |
586 | - $form = isset( $wp_query->query_vars['form'] ) ? $wp_query->query_vars['form'] : null; |
|
586 | + $form = isset($wp_query->query_vars['form']) ? $wp_query->query_vars['form'] : null; |
|
587 | 587 | |
588 | - $data = $this->routes->get_forms( $form ); |
|
588 | + $data = $this->routes->get_forms($form); |
|
589 | 589 | |
590 | 590 | break; |
591 | 591 | |
592 | 592 | case 'donors' : |
593 | 593 | |
594 | - $donor = isset( $wp_query->query_vars['donor'] ) ? $wp_query->query_vars['donor'] : null; |
|
594 | + $donor = isset($wp_query->query_vars['donor']) ? $wp_query->query_vars['donor'] : null; |
|
595 | 595 | |
596 | - $data = $this->routes->get_donors( $donor ); |
|
596 | + $data = $this->routes->get_donors($donor); |
|
597 | 597 | |
598 | 598 | break; |
599 | 599 | |
@@ -606,26 +606,26 @@ discard block |
||
606 | 606 | * @params date startdate | required when date = range and format to be YYYYMMDD (i.e. 20170524) |
607 | 607 | * @params date enddate | required when date = range and format to be YYYYMMDD (i.e. 20170524) |
608 | 608 | */ |
609 | - $data = $this->routes->get_recent_donations( array( |
|
610 | - 'id' => isset( $wp_query->query_vars['id'] ) ? $wp_query->query_vars['id'] : null, |
|
611 | - 'date' => isset( $wp_query->query_vars['date'] ) ? $wp_query->query_vars['date'] : null, |
|
612 | - 'startdate' => isset( $wp_query->query_vars['startdate'] ) ? $wp_query->query_vars['startdate'] : null, |
|
613 | - 'enddate' => isset( $wp_query->query_vars['enddate'] ) ? $wp_query->query_vars['enddate'] : null, |
|
614 | - ) ); |
|
609 | + $data = $this->routes->get_recent_donations(array( |
|
610 | + 'id' => isset($wp_query->query_vars['id']) ? $wp_query->query_vars['id'] : null, |
|
611 | + 'date' => isset($wp_query->query_vars['date']) ? $wp_query->query_vars['date'] : null, |
|
612 | + 'startdate' => isset($wp_query->query_vars['startdate']) ? $wp_query->query_vars['startdate'] : null, |
|
613 | + 'enddate' => isset($wp_query->query_vars['enddate']) ? $wp_query->query_vars['enddate'] : null, |
|
614 | + )); |
|
615 | 615 | |
616 | 616 | break; |
617 | 617 | |
618 | 618 | endswitch; |
619 | 619 | |
620 | 620 | // Allow extensions to setup their own return data |
621 | - $this->data = apply_filters( 'give_api_output_data', $data, $this->endpoint, $this ); |
|
621 | + $this->data = apply_filters('give_api_output_data', $data, $this->endpoint, $this); |
|
622 | 622 | |
623 | - $after = microtime( true ); |
|
624 | - $request_time = ( $after - $before ); |
|
623 | + $after = microtime(true); |
|
624 | + $request_time = ($after - $before); |
|
625 | 625 | $this->data['request_speed'] = $request_time; |
626 | 626 | |
627 | 627 | // Log this API request, if enabled. We log it here because we have access to errors. |
628 | - $this->log_request( $this->data ); |
|
628 | + $this->log_request($this->data); |
|
629 | 629 | |
630 | 630 | // Send out data to the output function |
631 | 631 | $this->output(); |
@@ -655,25 +655,25 @@ discard block |
||
655 | 655 | global $wp_query; |
656 | 656 | |
657 | 657 | // Whitelist our query options |
658 | - $accepted = apply_filters( 'give_api_valid_query_modes', array( |
|
658 | + $accepted = apply_filters('give_api_valid_query_modes', array( |
|
659 | 659 | 'stats', |
660 | 660 | 'forms', |
661 | 661 | 'donors', |
662 | 662 | 'donations', |
663 | - ) ); |
|
663 | + )); |
|
664 | 664 | |
665 | - $query = isset( $wp_query->query_vars['give-api'] ) ? $wp_query->query_vars['give-api'] : null; |
|
666 | - $query = str_replace( $this->queried_version . '/', '', $query ); |
|
665 | + $query = isset($wp_query->query_vars['give-api']) ? $wp_query->query_vars['give-api'] : null; |
|
666 | + $query = str_replace($this->queried_version.'/', '', $query); |
|
667 | 667 | |
668 | 668 | $error = array(); |
669 | 669 | |
670 | 670 | // Make sure our query is valid |
671 | - if ( ! in_array( $query, $accepted ) ) { |
|
672 | - $error['error'] = __( 'Invalid query.', 'give' ); |
|
671 | + if ( ! in_array($query, $accepted)) { |
|
672 | + $error['error'] = __('Invalid query.', 'give'); |
|
673 | 673 | |
674 | 674 | $this->data = $error; |
675 | 675 | // 400 is Bad Request |
676 | - $this->output( 400 ); |
|
676 | + $this->output(400); |
|
677 | 677 | } |
678 | 678 | |
679 | 679 | $this->endpoint = $query; |
@@ -690,7 +690,7 @@ discard block |
||
690 | 690 | public function get_paged() { |
691 | 691 | global $wp_query; |
692 | 692 | |
693 | - return isset( $wp_query->query_vars['page'] ) ? $wp_query->query_vars['page'] : 1; |
|
693 | + return isset($wp_query->query_vars['page']) ? $wp_query->query_vars['page'] : 1; |
|
694 | 694 | } |
695 | 695 | |
696 | 696 | |
@@ -705,13 +705,13 @@ discard block |
||
705 | 705 | public function per_page() { |
706 | 706 | global $wp_query; |
707 | 707 | |
708 | - $per_page = isset( $wp_query->query_vars['number'] ) ? $wp_query->query_vars['number'] : 10; |
|
708 | + $per_page = isset($wp_query->query_vars['number']) ? $wp_query->query_vars['number'] : 10; |
|
709 | 709 | |
710 | - if ( $per_page < 0 && $this->get_query_mode() == 'donors' ) { |
|
710 | + if ($per_page < 0 && $this->get_query_mode() == 'donors') { |
|
711 | 711 | $per_page = 99999999; |
712 | 712 | } // End if(). |
713 | 713 | |
714 | - return apply_filters( 'give_api_results_per_page', $per_page ); |
|
714 | + return apply_filters('give_api_results_per_page', $per_page); |
|
715 | 715 | } |
716 | 716 | |
717 | 717 | /** |
@@ -724,7 +724,7 @@ discard block |
||
724 | 724 | * |
725 | 725 | * @return array $dates |
726 | 726 | */ |
727 | - public function get_dates( $args = array() ) { |
|
727 | + public function get_dates($args = array()) { |
|
728 | 728 | $dates = array(); |
729 | 729 | |
730 | 730 | $defaults = array( |
@@ -735,60 +735,60 @@ discard block |
||
735 | 735 | 'enddate' => null, |
736 | 736 | ); |
737 | 737 | |
738 | - $args = wp_parse_args( $args, $defaults ); |
|
738 | + $args = wp_parse_args($args, $defaults); |
|
739 | 739 | |
740 | - $current_time = current_time( 'timestamp' ); |
|
740 | + $current_time = current_time('timestamp'); |
|
741 | 741 | |
742 | - if ( 'range' === $args['date'] ) { |
|
743 | - $startdate = strtotime( $args['startdate'] ); |
|
744 | - $enddate = strtotime( $args['enddate'] ); |
|
745 | - $dates['day_start'] = date( 'd', $startdate ); |
|
746 | - $dates['day_end'] = date( 'd', $enddate ); |
|
747 | - $dates['m_start'] = date( 'n', $startdate ); |
|
748 | - $dates['m_end'] = date( 'n', $enddate ); |
|
749 | - $dates['year'] = date( 'Y', $startdate ); |
|
750 | - $dates['year_end'] = date( 'Y', $enddate ); |
|
742 | + if ('range' === $args['date']) { |
|
743 | + $startdate = strtotime($args['startdate']); |
|
744 | + $enddate = strtotime($args['enddate']); |
|
745 | + $dates['day_start'] = date('d', $startdate); |
|
746 | + $dates['day_end'] = date('d', $enddate); |
|
747 | + $dates['m_start'] = date('n', $startdate); |
|
748 | + $dates['m_end'] = date('n', $enddate); |
|
749 | + $dates['year'] = date('Y', $startdate); |
|
750 | + $dates['year_end'] = date('Y', $enddate); |
|
751 | 751 | } else { |
752 | 752 | // Modify dates based on predefined ranges |
753 | - switch ( $args['date'] ) : |
|
753 | + switch ($args['date']) : |
|
754 | 754 | |
755 | 755 | case 'this_month' : |
756 | 756 | $dates['day'] = null; |
757 | - $dates['m_start'] = date( 'n', $current_time ); |
|
758 | - $dates['m_end'] = date( 'n', $current_time ); |
|
759 | - $dates['year'] = date( 'Y', $current_time ); |
|
757 | + $dates['m_start'] = date('n', $current_time); |
|
758 | + $dates['m_end'] = date('n', $current_time); |
|
759 | + $dates['year'] = date('Y', $current_time); |
|
760 | 760 | break; |
761 | 761 | |
762 | 762 | case 'last_month' : |
763 | 763 | $dates['day'] = null; |
764 | - $dates['m_start'] = date( 'n', $current_time ) == 1 ? 12 : date( 'n', $current_time ) - 1; |
|
764 | + $dates['m_start'] = date('n', $current_time) == 1 ? 12 : date('n', $current_time) - 1; |
|
765 | 765 | $dates['m_end'] = $dates['m_start']; |
766 | - $dates['year'] = date( 'n', $current_time ) == 1 ? date( 'Y', $current_time ) - 1 : date( 'Y', $current_time ); |
|
766 | + $dates['year'] = date('n', $current_time) == 1 ? date('Y', $current_time) - 1 : date('Y', $current_time); |
|
767 | 767 | break; |
768 | 768 | |
769 | 769 | case 'today' : |
770 | - $dates['day'] = date( 'd', $current_time ); |
|
771 | - $dates['m_start'] = date( 'n', $current_time ); |
|
772 | - $dates['m_end'] = date( 'n', $current_time ); |
|
773 | - $dates['year'] = date( 'Y', $current_time ); |
|
770 | + $dates['day'] = date('d', $current_time); |
|
771 | + $dates['m_start'] = date('n', $current_time); |
|
772 | + $dates['m_end'] = date('n', $current_time); |
|
773 | + $dates['year'] = date('Y', $current_time); |
|
774 | 774 | break; |
775 | 775 | |
776 | 776 | case 'yesterday' : |
777 | 777 | |
778 | - $year = date( 'Y', $current_time ); |
|
779 | - $month = date( 'n', $current_time ); |
|
780 | - $day = date( 'd', $current_time ); |
|
778 | + $year = date('Y', $current_time); |
|
779 | + $month = date('n', $current_time); |
|
780 | + $day = date('d', $current_time); |
|
781 | 781 | |
782 | - if ( $month == 1 && $day == 1 ) { |
|
782 | + if ($month == 1 && $day == 1) { |
|
783 | 783 | |
784 | - $year -= 1; |
|
784 | + $year -= 1; |
|
785 | 785 | $month = 12; |
786 | - $day = cal_days_in_month( CAL_GREGORIAN, $month, $year ); |
|
786 | + $day = cal_days_in_month(CAL_GREGORIAN, $month, $year); |
|
787 | 787 | |
788 | - } elseif ( $month > 1 && $day == 1 ) { |
|
788 | + } elseif ($month > 1 && $day == 1) { |
|
789 | 789 | |
790 | 790 | $month -= 1; |
791 | - $day = cal_days_in_month( CAL_GREGORIAN, $month, $year ); |
|
791 | + $day = cal_days_in_month(CAL_GREGORIAN, $month, $year); |
|
792 | 792 | |
793 | 793 | } else { |
794 | 794 | |
@@ -804,65 +804,65 @@ discard block |
||
804 | 804 | break; |
805 | 805 | |
806 | 806 | case 'this_quarter' : |
807 | - $month_now = date( 'n', $current_time ); |
|
807 | + $month_now = date('n', $current_time); |
|
808 | 808 | |
809 | 809 | $dates['day'] = null; |
810 | 810 | |
811 | - if ( $month_now <= 3 ) { |
|
811 | + if ($month_now <= 3) { |
|
812 | 812 | |
813 | 813 | $dates['m_start'] = 1; |
814 | 814 | $dates['m_end'] = 3; |
815 | - $dates['year'] = date( 'Y', $current_time ); |
|
815 | + $dates['year'] = date('Y', $current_time); |
|
816 | 816 | |
817 | - } elseif ( $month_now <= 6 ) { |
|
817 | + } elseif ($month_now <= 6) { |
|
818 | 818 | |
819 | 819 | $dates['m_start'] = 4; |
820 | 820 | $dates['m_end'] = 6; |
821 | - $dates['year'] = date( 'Y', $current_time ); |
|
821 | + $dates['year'] = date('Y', $current_time); |
|
822 | 822 | |
823 | - } elseif ( $month_now <= 9 ) { |
|
823 | + } elseif ($month_now <= 9) { |
|
824 | 824 | |
825 | 825 | $dates['m_start'] = 7; |
826 | 826 | $dates['m_end'] = 9; |
827 | - $dates['year'] = date( 'Y', $current_time ); |
|
827 | + $dates['year'] = date('Y', $current_time); |
|
828 | 828 | |
829 | 829 | } else { |
830 | 830 | |
831 | 831 | $dates['m_start'] = 10; |
832 | 832 | $dates['m_end'] = 12; |
833 | - $dates['year'] = date( 'Y', $current_time ); |
|
833 | + $dates['year'] = date('Y', $current_time); |
|
834 | 834 | |
835 | 835 | } |
836 | 836 | break; |
837 | 837 | |
838 | 838 | case 'last_quarter' : |
839 | - $month_now = date( 'n', $current_time ); |
|
839 | + $month_now = date('n', $current_time); |
|
840 | 840 | |
841 | 841 | $dates['day'] = null; |
842 | 842 | |
843 | - if ( $month_now <= 3 ) { |
|
843 | + if ($month_now <= 3) { |
|
844 | 844 | |
845 | 845 | $dates['m_start'] = 10; |
846 | 846 | $dates['m_end'] = 12; |
847 | - $dates['year'] = date( 'Y', $current_time ) - 1; // Previous year |
|
847 | + $dates['year'] = date('Y', $current_time) - 1; // Previous year |
|
848 | 848 | |
849 | - } elseif ( $month_now <= 6 ) { |
|
849 | + } elseif ($month_now <= 6) { |
|
850 | 850 | |
851 | 851 | $dates['m_start'] = 1; |
852 | 852 | $dates['m_end'] = 3; |
853 | - $dates['year'] = date( 'Y', $current_time ); |
|
853 | + $dates['year'] = date('Y', $current_time); |
|
854 | 854 | |
855 | - } elseif ( $month_now <= 9 ) { |
|
855 | + } elseif ($month_now <= 9) { |
|
856 | 856 | |
857 | 857 | $dates['m_start'] = 4; |
858 | 858 | $dates['m_end'] = 6; |
859 | - $dates['year'] = date( 'Y', $current_time ); |
|
859 | + $dates['year'] = date('Y', $current_time); |
|
860 | 860 | |
861 | 861 | } else { |
862 | 862 | |
863 | 863 | $dates['m_start'] = 7; |
864 | 864 | $dates['m_end'] = 9; |
865 | - $dates['year'] = date( 'Y', $current_time ); |
|
865 | + $dates['year'] = date('Y', $current_time); |
|
866 | 866 | |
867 | 867 | } |
868 | 868 | break; |
@@ -871,14 +871,14 @@ discard block |
||
871 | 871 | $dates['day'] = null; |
872 | 872 | $dates['m_start'] = null; |
873 | 873 | $dates['m_end'] = null; |
874 | - $dates['year'] = date( 'Y', $current_time ); |
|
874 | + $dates['year'] = date('Y', $current_time); |
|
875 | 875 | break; |
876 | 876 | |
877 | 877 | case 'last_year' : |
878 | 878 | $dates['day'] = null; |
879 | 879 | $dates['m_start'] = null; |
880 | 880 | $dates['m_end'] = null; |
881 | - $dates['year'] = date( 'Y', $current_time ) - 1; |
|
881 | + $dates['year'] = date('Y', $current_time) - 1; |
|
882 | 882 | break; |
883 | 883 | |
884 | 884 | endswitch; |
@@ -891,7 +891,7 @@ discard block |
||
891 | 891 | * |
892 | 892 | * @param array $dates The dates used for retrieving earnings. |
893 | 893 | */ |
894 | - return apply_filters( 'give_api_stat_dates', $dates ); |
|
894 | + return apply_filters('give_api_stat_dates', $dates); |
|
895 | 895 | } |
896 | 896 | |
897 | 897 | /** |
@@ -905,84 +905,84 @@ discard block |
||
905 | 905 | * |
906 | 906 | * @return array $donors Multidimensional array of the donors. |
907 | 907 | */ |
908 | - public function get_donors( $donor = null ) { |
|
908 | + public function get_donors($donor = null) { |
|
909 | 909 | |
910 | 910 | $donors = array(); |
911 | 911 | $error = array(); |
912 | - if ( ! user_can( $this->user_id, 'view_give_sensitive_data' ) && ! $this->override ) { |
|
912 | + if ( ! user_can($this->user_id, 'view_give_sensitive_data') && ! $this->override) { |
|
913 | 913 | return $donors; |
914 | 914 | } |
915 | 915 | |
916 | 916 | $paged = $this->get_paged(); |
917 | 917 | $per_page = $this->per_page(); |
918 | - $offset = $per_page * ( $paged - 1 ); |
|
918 | + $offset = $per_page * ($paged - 1); |
|
919 | 919 | |
920 | - if ( is_numeric( $donor ) ) { |
|
920 | + if (is_numeric($donor)) { |
|
921 | 921 | $field = 'id'; |
922 | 922 | } else { |
923 | 923 | $field = 'email'; |
924 | 924 | } |
925 | 925 | |
926 | - $donor_query = Give()->donors->get_donors( array( |
|
926 | + $donor_query = Give()->donors->get_donors(array( |
|
927 | 927 | 'number' => $per_page, |
928 | 928 | 'offset' => $offset, |
929 | 929 | $field => $donor, |
930 | - ) ); |
|
930 | + )); |
|
931 | 931 | $donor_count = 0; |
932 | 932 | |
933 | - if ( $donor_query ) { |
|
933 | + if ($donor_query) { |
|
934 | 934 | |
935 | - foreach ( $donor_query as $donor_obj ) { |
|
935 | + foreach ($donor_query as $donor_obj) { |
|
936 | 936 | |
937 | - $names = explode( ' ', $donor_obj->name ); |
|
938 | - $first_name = ! empty( $names[0] ) ? $names[0] : ''; |
|
937 | + $names = explode(' ', $donor_obj->name); |
|
938 | + $first_name = ! empty($names[0]) ? $names[0] : ''; |
|
939 | 939 | $last_name = ''; |
940 | - if ( ! empty( $names[1] ) ) { |
|
941 | - unset( $names[0] ); |
|
942 | - $last_name = implode( ' ', $names ); |
|
940 | + if ( ! empty($names[1])) { |
|
941 | + unset($names[0]); |
|
942 | + $last_name = implode(' ', $names); |
|
943 | 943 | } |
944 | 944 | |
945 | - $donors['donors'][ $donor_count ]['info']['user_id'] = ''; |
|
946 | - $donors['donors'][ $donor_count ]['info']['username'] = ''; |
|
947 | - $donors['donors'][ $donor_count ]['info']['display_name'] = ''; |
|
948 | - $donors['donors'][ $donor_count ]['info']['donor_id'] = $donor_obj->id; |
|
949 | - $donors['donors'][ $donor_count ]['info']['first_name'] = $first_name; |
|
950 | - $donors['donors'][ $donor_count ]['info']['last_name'] = $last_name; |
|
951 | - $donors['donors'][ $donor_count ]['info']['email'] = $donor_obj->email; |
|
945 | + $donors['donors'][$donor_count]['info']['user_id'] = ''; |
|
946 | + $donors['donors'][$donor_count]['info']['username'] = ''; |
|
947 | + $donors['donors'][$donor_count]['info']['display_name'] = ''; |
|
948 | + $donors['donors'][$donor_count]['info']['donor_id'] = $donor_obj->id; |
|
949 | + $donors['donors'][$donor_count]['info']['first_name'] = $first_name; |
|
950 | + $donors['donors'][$donor_count]['info']['last_name'] = $last_name; |
|
951 | + $donors['donors'][$donor_count]['info']['email'] = $donor_obj->email; |
|
952 | 952 | |
953 | - if ( ! empty( $donor_obj->user_id ) ) { |
|
953 | + if ( ! empty($donor_obj->user_id)) { |
|
954 | 954 | |
955 | - $user_data = get_userdata( $donor_obj->user_id ); |
|
955 | + $user_data = get_userdata($donor_obj->user_id); |
|
956 | 956 | |
957 | 957 | // Donor with registered account. |
958 | - $donors['donors'][ $donor_count ]['info']['user_id'] = $donor_obj->user_id; |
|
959 | - $donors['donors'][ $donor_count ]['info']['username'] = $user_data->user_login; |
|
960 | - $donors['donors'][ $donor_count ]['info']['display_name'] = $user_data->display_name; |
|
958 | + $donors['donors'][$donor_count]['info']['user_id'] = $donor_obj->user_id; |
|
959 | + $donors['donors'][$donor_count]['info']['username'] = $user_data->user_login; |
|
960 | + $donors['donors'][$donor_count]['info']['display_name'] = $user_data->display_name; |
|
961 | 961 | |
962 | 962 | } |
963 | 963 | |
964 | - $donors['donors'][ $donor_count ]['stats']['total_donations'] = $donor_obj->purchase_count; |
|
965 | - $donors['donors'][ $donor_count ]['stats']['total_spent'] = $donor_obj->purchase_value; |
|
964 | + $donors['donors'][$donor_count]['stats']['total_donations'] = $donor_obj->purchase_count; |
|
965 | + $donors['donors'][$donor_count]['stats']['total_spent'] = $donor_obj->purchase_value; |
|
966 | 966 | |
967 | 967 | /** @var $donor \Give_Donor */ |
968 | - $donor = new Give_Donor( $donor_obj->id ); |
|
968 | + $donor = new Give_Donor($donor_obj->id); |
|
969 | 969 | |
970 | 970 | // Get donor's addresses. |
971 | - $donors['donors'][ $donor_count ]['address'] = $donor->address; |
|
971 | + $donors['donors'][$donor_count]['address'] = $donor->address; |
|
972 | 972 | |
973 | - $donor_count ++; |
|
973 | + $donor_count++; |
|
974 | 974 | |
975 | 975 | } |
976 | - } elseif ( $donor ) { |
|
976 | + } elseif ($donor) { |
|
977 | 977 | |
978 | 978 | $error['error'] = sprintf( /* translators: %s: donor */ |
979 | - __( 'Donor %s not found.', 'give' ), $donor ); |
|
979 | + __('Donor %s not found.', 'give'), $donor ); |
|
980 | 980 | |
981 | 981 | return $error; |
982 | 982 | |
983 | 983 | } else { |
984 | 984 | |
985 | - $error['error'] = __( 'No donors found.', 'give' ); |
|
985 | + $error['error'] = __('No donors found.', 'give'); |
|
986 | 986 | |
987 | 987 | return $error; |
988 | 988 | |
@@ -1001,37 +1001,37 @@ discard block |
||
1001 | 1001 | * |
1002 | 1002 | * @return array $donors Multidimensional array of the forms. |
1003 | 1003 | */ |
1004 | - public function get_forms( $form = null ) { |
|
1004 | + public function get_forms($form = null) { |
|
1005 | 1005 | |
1006 | 1006 | $forms = array(); |
1007 | 1007 | $error = array(); |
1008 | 1008 | |
1009 | - if ( $form == null ) { |
|
1009 | + if ($form == null) { |
|
1010 | 1010 | $forms['forms'] = array(); |
1011 | 1011 | |
1012 | - $form_list = get_posts( array( |
|
1012 | + $form_list = get_posts(array( |
|
1013 | 1013 | 'post_type' => 'give_forms', |
1014 | 1014 | 'posts_per_page' => $this->per_page(), |
1015 | 1015 | 'suppress_filters' => true, |
1016 | 1016 | 'paged' => $this->get_paged(), |
1017 | - ) ); |
|
1017 | + )); |
|
1018 | 1018 | |
1019 | - if ( $form_list ) { |
|
1019 | + if ($form_list) { |
|
1020 | 1020 | $i = 0; |
1021 | - foreach ( $form_list as $form_info ) { |
|
1022 | - $forms['forms'][ $i ] = $this->get_form_data( $form_info ); |
|
1023 | - $i ++; |
|
1021 | + foreach ($form_list as $form_info) { |
|
1022 | + $forms['forms'][$i] = $this->get_form_data($form_info); |
|
1023 | + $i++; |
|
1024 | 1024 | } |
1025 | 1025 | } |
1026 | 1026 | } else { |
1027 | - if ( get_post_type( $form ) == 'give_forms' ) { |
|
1028 | - $form_info = get_post( $form ); |
|
1027 | + if (get_post_type($form) == 'give_forms') { |
|
1028 | + $form_info = get_post($form); |
|
1029 | 1029 | |
1030 | - $forms['forms'][0] = $this->get_form_data( $form_info ); |
|
1030 | + $forms['forms'][0] = $this->get_form_data($form_info); |
|
1031 | 1031 | |
1032 | 1032 | } else { |
1033 | 1033 | $error['error'] = sprintf( /* translators: %s: form */ |
1034 | - __( 'Form %s not found.', 'give' ), $form ); |
|
1034 | + __('Form %s not found.', 'give'), $form ); |
|
1035 | 1035 | |
1036 | 1036 | return $error; |
1037 | 1037 | } |
@@ -1049,7 +1049,7 @@ discard block |
||
1049 | 1049 | * |
1050 | 1050 | * @return array Array of post data to return back in the API. |
1051 | 1051 | */ |
1052 | - private function get_form_data( $form_info ) { |
|
1052 | + private function get_form_data($form_info) { |
|
1053 | 1053 | |
1054 | 1054 | $form = array(); |
1055 | 1055 | |
@@ -1059,60 +1059,60 @@ discard block |
||
1059 | 1059 | $form['info']['create_date'] = $form_info->post_date; |
1060 | 1060 | $form['info']['modified_date'] = $form_info->post_modified; |
1061 | 1061 | $form['info']['status'] = $form_info->post_status; |
1062 | - $form['info']['link'] = html_entity_decode( $form_info->guid ); |
|
1063 | - $form['info']['content'] = give_get_meta( $form_info->ID, '_give_form_content', true ); |
|
1064 | - $form['info']['thumbnail'] = wp_get_attachment_url( get_post_thumbnail_id( $form_info->ID ) ); |
|
1062 | + $form['info']['link'] = html_entity_decode($form_info->guid); |
|
1063 | + $form['info']['content'] = give_get_meta($form_info->ID, '_give_form_content', true); |
|
1064 | + $form['info']['thumbnail'] = wp_get_attachment_url(get_post_thumbnail_id($form_info->ID)); |
|
1065 | 1065 | |
1066 | - if ( give_is_setting_enabled( give_get_option( 'categories', 'disabled' ) ) ) { |
|
1067 | - $form['info']['category'] = get_the_terms( $form_info, 'give_forms_category' ); |
|
1068 | - $form['info']['tags'] = get_the_terms( $form_info, 'give_forms_tag' ); |
|
1066 | + if (give_is_setting_enabled(give_get_option('categories', 'disabled'))) { |
|
1067 | + $form['info']['category'] = get_the_terms($form_info, 'give_forms_category'); |
|
1068 | + $form['info']['tags'] = get_the_terms($form_info, 'give_forms_tag'); |
|
1069 | 1069 | } |
1070 | - if ( give_is_setting_enabled( give_get_option( 'tags', 'disabled' ) ) ) { |
|
1071 | - $form['info']['tags'] = get_the_terms( $form_info, 'give_forms_tag' ); |
|
1070 | + if (give_is_setting_enabled(give_get_option('tags', 'disabled'))) { |
|
1071 | + $form['info']['tags'] = get_the_terms($form_info, 'give_forms_tag'); |
|
1072 | 1072 | } |
1073 | 1073 | |
1074 | 1074 | // Check whether any goal is to be achieved for the donation form. |
1075 | - $goal_option = give_get_meta( $form_info->ID, '_give_goal_option', true ); |
|
1076 | - $goal_amount = give_get_meta( $form_info->ID, '_give_set_goal', true ); |
|
1077 | - if ( give_is_setting_enabled( $goal_option ) && $goal_amount ) { |
|
1078 | - $total_income = give_get_form_earnings_stats( $form_info->ID ); |
|
1079 | - $goal_percentage_completed = ( $total_income < $goal_amount ) ? round( ( $total_income / $goal_amount ) * 100, 2 ) : 100; |
|
1080 | - $form['goal']['amount'] = isset( $goal_amount ) ? $goal_amount : ''; |
|
1081 | - $form['goal']['percentage_completed'] = isset( $goal_percentage_completed ) ? $goal_percentage_completed : ''; |
|
1075 | + $goal_option = give_get_meta($form_info->ID, '_give_goal_option', true); |
|
1076 | + $goal_amount = give_get_meta($form_info->ID, '_give_set_goal', true); |
|
1077 | + if (give_is_setting_enabled($goal_option) && $goal_amount) { |
|
1078 | + $total_income = give_get_form_earnings_stats($form_info->ID); |
|
1079 | + $goal_percentage_completed = ($total_income < $goal_amount) ? round(($total_income / $goal_amount) * 100, 2) : 100; |
|
1080 | + $form['goal']['amount'] = isset($goal_amount) ? $goal_amount : ''; |
|
1081 | + $form['goal']['percentage_completed'] = isset($goal_percentage_completed) ? $goal_percentage_completed : ''; |
|
1082 | 1082 | } |
1083 | 1083 | |
1084 | - if ( user_can( $this->user_id, 'view_give_reports' ) || $this->override ) { |
|
1085 | - $form['stats']['total']['donations'] = give_get_form_sales_stats( $form_info->ID ); |
|
1086 | - $form['stats']['total']['earnings'] = give_get_form_earnings_stats( $form_info->ID ); |
|
1087 | - $form['stats']['monthly_average']['donations'] = give_get_average_monthly_form_sales( $form_info->ID ); |
|
1088 | - $form['stats']['monthly_average']['earnings'] = give_get_average_monthly_form_earnings( $form_info->ID ); |
|
1084 | + if (user_can($this->user_id, 'view_give_reports') || $this->override) { |
|
1085 | + $form['stats']['total']['donations'] = give_get_form_sales_stats($form_info->ID); |
|
1086 | + $form['stats']['total']['earnings'] = give_get_form_earnings_stats($form_info->ID); |
|
1087 | + $form['stats']['monthly_average']['donations'] = give_get_average_monthly_form_sales($form_info->ID); |
|
1088 | + $form['stats']['monthly_average']['earnings'] = give_get_average_monthly_form_earnings($form_info->ID); |
|
1089 | 1089 | } |
1090 | 1090 | |
1091 | 1091 | $counter = 0; |
1092 | - if ( give_has_variable_prices( $form_info->ID ) ) { |
|
1093 | - foreach ( give_get_variable_prices( $form_info->ID ) as $price ) { |
|
1094 | - $counter ++; |
|
1092 | + if (give_has_variable_prices($form_info->ID)) { |
|
1093 | + foreach (give_get_variable_prices($form_info->ID) as $price) { |
|
1094 | + $counter++; |
|
1095 | 1095 | // multi-level item |
1096 | - $level = isset( $price['_give_text'] ) ? $price['_give_text'] : 'level-' . $counter; |
|
1097 | - $form['pricing'][ sanitize_key( $level ) ] = $price['_give_amount']; |
|
1096 | + $level = isset($price['_give_text']) ? $price['_give_text'] : 'level-'.$counter; |
|
1097 | + $form['pricing'][sanitize_key($level)] = $price['_give_amount']; |
|
1098 | 1098 | |
1099 | 1099 | } |
1100 | 1100 | } else { |
1101 | - $form['pricing']['amount'] = give_get_form_price( $form_info->ID ); |
|
1101 | + $form['pricing']['amount'] = give_get_form_price($form_info->ID); |
|
1102 | 1102 | } |
1103 | 1103 | |
1104 | - if ( user_can( $this->user_id, 'view_give_sensitive_data' ) || $this->override ) { |
|
1104 | + if (user_can($this->user_id, 'view_give_sensitive_data') || $this->override) { |
|
1105 | 1105 | |
1106 | 1106 | /** |
1107 | 1107 | * Fires when generating API sensitive data. |
1108 | 1108 | * |
1109 | 1109 | * @since 1.1 |
1110 | 1110 | */ |
1111 | - do_action( 'give_api_sensitive_data' ); |
|
1111 | + do_action('give_api_sensitive_data'); |
|
1112 | 1112 | |
1113 | 1113 | } |
1114 | 1114 | |
1115 | - return apply_filters( 'give_api_forms_form', $form ); |
|
1115 | + return apply_filters('give_api_forms_form', $form); |
|
1116 | 1116 | |
1117 | 1117 | } |
1118 | 1118 | |
@@ -1127,7 +1127,7 @@ discard block |
||
1127 | 1127 | * |
1128 | 1128 | * @return array |
1129 | 1129 | */ |
1130 | - public function get_stats( $args = array() ) { |
|
1130 | + public function get_stats($args = array()) { |
|
1131 | 1131 | $defaults = array( |
1132 | 1132 | 'type' => null, |
1133 | 1133 | 'form' => null, |
@@ -1136,9 +1136,9 @@ discard block |
||
1136 | 1136 | 'enddate' => null, |
1137 | 1137 | ); |
1138 | 1138 | |
1139 | - $args = wp_parse_args( $args, $defaults ); |
|
1139 | + $args = wp_parse_args($args, $defaults); |
|
1140 | 1140 | |
1141 | - $dates = $this->get_dates( $args ); |
|
1141 | + $dates = $this->get_dates($args); |
|
1142 | 1142 | |
1143 | 1143 | $stats = array(); |
1144 | 1144 | $earnings = array( |
@@ -1149,40 +1149,40 @@ discard block |
||
1149 | 1149 | ); |
1150 | 1150 | $error = array(); |
1151 | 1151 | |
1152 | - if ( ! user_can( $this->user_id, 'view_give_reports' ) && ! $this->override ) { |
|
1152 | + if ( ! user_can($this->user_id, 'view_give_reports') && ! $this->override) { |
|
1153 | 1153 | return $stats; |
1154 | 1154 | } |
1155 | 1155 | |
1156 | - if ( $args['type'] == 'donations' ) { |
|
1156 | + if ($args['type'] == 'donations') { |
|
1157 | 1157 | |
1158 | - if ( $args['form'] == null ) { |
|
1159 | - if ( $args['date'] == null ) { |
|
1158 | + if ($args['form'] == null) { |
|
1159 | + if ($args['date'] == null) { |
|
1160 | 1160 | $donations = $this->get_default_sales_stats(); |
1161 | - } elseif ( $args['date'] === 'range' ) { |
|
1161 | + } elseif ($args['date'] === 'range') { |
|
1162 | 1162 | // Return donations for a date range. |
1163 | 1163 | // Ensure the end date is later than the start date. |
1164 | - if ( $args['enddate'] < $args['startdate'] ) { |
|
1165 | - $error['error'] = __( 'The end date must be later than the start date.', 'give' ); |
|
1164 | + if ($args['enddate'] < $args['startdate']) { |
|
1165 | + $error['error'] = __('The end date must be later than the start date.', 'give'); |
|
1166 | 1166 | } |
1167 | 1167 | |
1168 | 1168 | // Ensure both the start and end date are specified |
1169 | - if ( empty( $args['startdate'] ) || empty( $args['enddate'] ) ) { |
|
1170 | - $error['error'] = __( 'Invalid or no date range specified.', 'give' ); |
|
1169 | + if (empty($args['startdate']) || empty($args['enddate'])) { |
|
1170 | + $error['error'] = __('Invalid or no date range specified.', 'give'); |
|
1171 | 1171 | } |
1172 | 1172 | |
1173 | 1173 | $total = 0; |
1174 | 1174 | |
1175 | 1175 | // Loop through the years |
1176 | 1176 | $y = $dates['year']; |
1177 | - while ( $y <= $dates['year_end'] ) : |
|
1177 | + while ($y <= $dates['year_end']) : |
|
1178 | 1178 | |
1179 | - if ( $dates['year'] == $dates['year_end'] ) { |
|
1179 | + if ($dates['year'] == $dates['year_end']) { |
|
1180 | 1180 | $month_start = $dates['m_start']; |
1181 | 1181 | $month_end = $dates['m_end']; |
1182 | - } elseif ( $y == $dates['year'] && $dates['year_end'] > $dates['year'] ) { |
|
1182 | + } elseif ($y == $dates['year'] && $dates['year_end'] > $dates['year']) { |
|
1183 | 1183 | $month_start = $dates['m_start']; |
1184 | 1184 | $month_end = 12; |
1185 | - } elseif ( $y == $dates['year_end'] ) { |
|
1185 | + } elseif ($y == $dates['year_end']) { |
|
1186 | 1186 | $month_start = 1; |
1187 | 1187 | $month_end = $dates['m_end']; |
1188 | 1188 | } else { |
@@ -1191,116 +1191,116 @@ discard block |
||
1191 | 1191 | } |
1192 | 1192 | |
1193 | 1193 | $i = $month_start; |
1194 | - while ( $i <= $month_end ) : |
|
1194 | + while ($i <= $month_end) : |
|
1195 | 1195 | |
1196 | - if ( $i == $dates['m_start'] ) { |
|
1196 | + if ($i == $dates['m_start']) { |
|
1197 | 1197 | $d = $dates['day_start']; |
1198 | 1198 | } else { |
1199 | 1199 | $d = 1; |
1200 | 1200 | } |
1201 | 1201 | |
1202 | - if ( $i == $dates['m_end'] ) { |
|
1202 | + if ($i == $dates['m_end']) { |
|
1203 | 1203 | $num_of_days = $dates['day_end']; |
1204 | 1204 | } else { |
1205 | - $num_of_days = cal_days_in_month( CAL_GREGORIAN, $i, $y ); |
|
1205 | + $num_of_days = cal_days_in_month(CAL_GREGORIAN, $i, $y); |
|
1206 | 1206 | } |
1207 | 1207 | |
1208 | - while ( $d <= $num_of_days ) : |
|
1209 | - $sale_count = give_get_sales_by_date( $d, $i, $y ); |
|
1210 | - $date_key = date( 'Ymd', strtotime( $y . '/' . $i . '/' . $d ) ); |
|
1211 | - if ( ! isset( $donations['sales'][ $date_key ] ) ) { |
|
1212 | - $donations['sales'][ $date_key ] = 0; |
|
1208 | + while ($d <= $num_of_days) : |
|
1209 | + $sale_count = give_get_sales_by_date($d, $i, $y); |
|
1210 | + $date_key = date('Ymd', strtotime($y.'/'.$i.'/'.$d)); |
|
1211 | + if ( ! isset($donations['sales'][$date_key])) { |
|
1212 | + $donations['sales'][$date_key] = 0; |
|
1213 | 1213 | } |
1214 | - $donations['sales'][ $date_key ] += $sale_count; |
|
1214 | + $donations['sales'][$date_key] += $sale_count; |
|
1215 | 1215 | $total += $sale_count; |
1216 | - $d ++; |
|
1216 | + $d++; |
|
1217 | 1217 | endwhile; |
1218 | - $i ++; |
|
1218 | + $i++; |
|
1219 | 1219 | endwhile; |
1220 | 1220 | |
1221 | - $y ++; |
|
1221 | + $y++; |
|
1222 | 1222 | endwhile; |
1223 | 1223 | |
1224 | 1224 | $donations['totals'] = $total; |
1225 | 1225 | } else { |
1226 | - if ( $args['date'] == 'this_quarter' || $args['date'] == 'last_quarter' ) { |
|
1226 | + if ($args['date'] == 'this_quarter' || $args['date'] == 'last_quarter') { |
|
1227 | 1227 | $donations_count = 0; |
1228 | 1228 | |
1229 | 1229 | // Loop through the months |
1230 | 1230 | $month = $dates['m_start']; |
1231 | 1231 | |
1232 | - while ( $month <= $dates['m_end'] ) : |
|
1233 | - $donations_count += give_get_sales_by_date( null, $month, $dates['year'] ); |
|
1234 | - $month ++; |
|
1232 | + while ($month <= $dates['m_end']) : |
|
1233 | + $donations_count += give_get_sales_by_date(null, $month, $dates['year']); |
|
1234 | + $month++; |
|
1235 | 1235 | endwhile; |
1236 | 1236 | |
1237 | - $donations['donations'][ $args['date'] ] = $donations_count; |
|
1237 | + $donations['donations'][$args['date']] = $donations_count; |
|
1238 | 1238 | } else { |
1239 | - $donations['donations'][ $args['date'] ] = give_get_sales_by_date( $dates['day'], $dates['m_start'], $dates['year'] ); |
|
1239 | + $donations['donations'][$args['date']] = give_get_sales_by_date($dates['day'], $dates['m_start'], $dates['year']); |
|
1240 | 1240 | } |
1241 | 1241 | }// End if(). |
1242 | - } elseif ( $args['form'] == 'all' ) { |
|
1243 | - $forms = get_posts( array( |
|
1242 | + } elseif ($args['form'] == 'all') { |
|
1243 | + $forms = get_posts(array( |
|
1244 | 1244 | 'post_type' => 'give_forms', |
1245 | 1245 | 'nopaging' => true, |
1246 | - ) ); |
|
1247 | - $i = 0; |
|
1248 | - foreach ( $forms as $form_info ) { |
|
1249 | - $donations['donations'][ $i ] = array( |
|
1250 | - $form_info->post_name => give_get_form_sales_stats( $form_info->ID ), |
|
1246 | + )); |
|
1247 | + $i = 0; |
|
1248 | + foreach ($forms as $form_info) { |
|
1249 | + $donations['donations'][$i] = array( |
|
1250 | + $form_info->post_name => give_get_form_sales_stats($form_info->ID), |
|
1251 | 1251 | ); |
1252 | - $i ++; |
|
1252 | + $i++; |
|
1253 | 1253 | } |
1254 | 1254 | } else { |
1255 | - if ( get_post_type( $args['form'] ) == 'give_forms' ) { |
|
1256 | - $form_info = get_post( $args['form'] ); |
|
1255 | + if (get_post_type($args['form']) == 'give_forms') { |
|
1256 | + $form_info = get_post($args['form']); |
|
1257 | 1257 | $donations['donations'][0] = array( |
1258 | - $form_info->post_name => give_get_form_sales_stats( $args['form'] ), |
|
1258 | + $form_info->post_name => give_get_form_sales_stats($args['form']), |
|
1259 | 1259 | ); |
1260 | 1260 | } else { |
1261 | 1261 | $error['error'] = sprintf( /* translators: %s: form */ |
1262 | - __( 'Form %s not found.', 'give' ), $args['form'] ); |
|
1262 | + __('Form %s not found.', 'give'), $args['form'] ); |
|
1263 | 1263 | } |
1264 | 1264 | }// End if(). |
1265 | 1265 | |
1266 | - if ( ! empty( $error ) ) { |
|
1266 | + if ( ! empty($error)) { |
|
1267 | 1267 | return $error; |
1268 | 1268 | } |
1269 | 1269 | |
1270 | 1270 | return $donations; |
1271 | 1271 | |
1272 | - } elseif ( $args['type'] == 'earnings' ) { |
|
1273 | - if ( $args['form'] == null ) { |
|
1274 | - if ( $args['date'] == null ) { |
|
1272 | + } elseif ($args['type'] == 'earnings') { |
|
1273 | + if ($args['form'] == null) { |
|
1274 | + if ($args['date'] == null) { |
|
1275 | 1275 | $earnings = $this->get_default_earnings_stats(); |
1276 | - } elseif ( $args['date'] === 'range' ) { |
|
1276 | + } elseif ($args['date'] === 'range') { |
|
1277 | 1277 | // Return sales for a date range |
1278 | 1278 | // Ensure the end date is later than the start date |
1279 | - if ( $args['enddate'] < $args['startdate'] ) { |
|
1280 | - $error['error'] = __( 'The end date must be later than the start date.', 'give' ); |
|
1279 | + if ($args['enddate'] < $args['startdate']) { |
|
1280 | + $error['error'] = __('The end date must be later than the start date.', 'give'); |
|
1281 | 1281 | } |
1282 | 1282 | |
1283 | 1283 | // Ensure both the start and end date are specified |
1284 | - if ( empty( $args['startdate'] ) || empty( $args['enddate'] ) ) { |
|
1285 | - $error['error'] = __( 'Invalid or no date range specified.', 'give' ); |
|
1284 | + if (empty($args['startdate']) || empty($args['enddate'])) { |
|
1285 | + $error['error'] = __('Invalid or no date range specified.', 'give'); |
|
1286 | 1286 | } |
1287 | 1287 | |
1288 | 1288 | $total = (float) 0.00; |
1289 | 1289 | |
1290 | 1290 | // Loop through the years |
1291 | 1291 | $y = $dates['year']; |
1292 | - if ( ! isset( $earnings['earnings'] ) ) { |
|
1292 | + if ( ! isset($earnings['earnings'])) { |
|
1293 | 1293 | $earnings['earnings'] = array(); |
1294 | 1294 | } |
1295 | - while ( $y <= $dates['year_end'] ) : |
|
1295 | + while ($y <= $dates['year_end']) : |
|
1296 | 1296 | |
1297 | - if ( $dates['year'] == $dates['year_end'] ) { |
|
1297 | + if ($dates['year'] == $dates['year_end']) { |
|
1298 | 1298 | $month_start = $dates['m_start']; |
1299 | 1299 | $month_end = $dates['m_end']; |
1300 | - } elseif ( $y == $dates['year'] && $dates['year_end'] > $dates['year'] ) { |
|
1300 | + } elseif ($y == $dates['year'] && $dates['year_end'] > $dates['year']) { |
|
1301 | 1301 | $month_start = $dates['m_start']; |
1302 | 1302 | $month_end = 12; |
1303 | - } elseif ( $y == $dates['year_end'] ) { |
|
1303 | + } elseif ($y == $dates['year_end']) { |
|
1304 | 1304 | $month_start = 1; |
1305 | 1305 | $month_end = $dates['m_end']; |
1306 | 1306 | } else { |
@@ -1309,94 +1309,94 @@ discard block |
||
1309 | 1309 | } |
1310 | 1310 | |
1311 | 1311 | $i = $month_start; |
1312 | - while ( $i <= $month_end ) : |
|
1312 | + while ($i <= $month_end) : |
|
1313 | 1313 | |
1314 | - if ( $i == $dates['m_start'] ) { |
|
1314 | + if ($i == $dates['m_start']) { |
|
1315 | 1315 | $d = $dates['day_start']; |
1316 | 1316 | } else { |
1317 | 1317 | $d = 1; |
1318 | 1318 | } |
1319 | 1319 | |
1320 | - if ( $i == $dates['m_end'] ) { |
|
1320 | + if ($i == $dates['m_end']) { |
|
1321 | 1321 | $num_of_days = $dates['day_end']; |
1322 | 1322 | } else { |
1323 | - $num_of_days = cal_days_in_month( CAL_GREGORIAN, $i, $y ); |
|
1323 | + $num_of_days = cal_days_in_month(CAL_GREGORIAN, $i, $y); |
|
1324 | 1324 | } |
1325 | 1325 | |
1326 | - while ( $d <= $num_of_days ) : |
|
1327 | - $earnings_stat = give_get_earnings_by_date( $d, $i, $y ); |
|
1328 | - $date_key = date( 'Ymd', strtotime( $y . '/' . $i . '/' . $d ) ); |
|
1329 | - if ( ! isset( $earnings['earnings'][ $date_key ] ) ) { |
|
1330 | - $earnings['earnings'][ $date_key ] = 0; |
|
1326 | + while ($d <= $num_of_days) : |
|
1327 | + $earnings_stat = give_get_earnings_by_date($d, $i, $y); |
|
1328 | + $date_key = date('Ymd', strtotime($y.'/'.$i.'/'.$d)); |
|
1329 | + if ( ! isset($earnings['earnings'][$date_key])) { |
|
1330 | + $earnings['earnings'][$date_key] = 0; |
|
1331 | 1331 | } |
1332 | - $earnings['earnings'][ $date_key ] += $earnings_stat; |
|
1332 | + $earnings['earnings'][$date_key] += $earnings_stat; |
|
1333 | 1333 | $total += $earnings_stat; |
1334 | - $d ++; |
|
1334 | + $d++; |
|
1335 | 1335 | endwhile; |
1336 | 1336 | |
1337 | - $i ++; |
|
1337 | + $i++; |
|
1338 | 1338 | endwhile; |
1339 | 1339 | |
1340 | - $y ++; |
|
1340 | + $y++; |
|
1341 | 1341 | endwhile; |
1342 | 1342 | |
1343 | 1343 | $earnings['totals'] = $total; |
1344 | 1344 | } else { |
1345 | - if ( $args['date'] == 'this_quarter' || $args['date'] == 'last_quarter' ) { |
|
1345 | + if ($args['date'] == 'this_quarter' || $args['date'] == 'last_quarter') { |
|
1346 | 1346 | $earnings_count = (float) 0.00; |
1347 | 1347 | |
1348 | 1348 | // Loop through the months |
1349 | 1349 | $month = $dates['m_start']; |
1350 | 1350 | |
1351 | - while ( $month <= $dates['m_end'] ) : |
|
1352 | - $earnings_count += give_get_earnings_by_date( null, $month, $dates['year'] ); |
|
1353 | - $month ++; |
|
1351 | + while ($month <= $dates['m_end']) : |
|
1352 | + $earnings_count += give_get_earnings_by_date(null, $month, $dates['year']); |
|
1353 | + $month++; |
|
1354 | 1354 | endwhile; |
1355 | 1355 | |
1356 | - $earnings['earnings'][ $args['date'] ] = $earnings_count; |
|
1356 | + $earnings['earnings'][$args['date']] = $earnings_count; |
|
1357 | 1357 | } else { |
1358 | - $earnings['earnings'][ $args['date'] ] = give_get_earnings_by_date( $dates['day'], $dates['m_start'], $dates['year'] ); |
|
1358 | + $earnings['earnings'][$args['date']] = give_get_earnings_by_date($dates['day'], $dates['m_start'], $dates['year']); |
|
1359 | 1359 | } |
1360 | 1360 | }// End if(). |
1361 | - } elseif ( $args['form'] == 'all' ) { |
|
1362 | - $forms = get_posts( array( |
|
1361 | + } elseif ($args['form'] == 'all') { |
|
1362 | + $forms = get_posts(array( |
|
1363 | 1363 | 'post_type' => 'give_forms', |
1364 | 1364 | 'nopaging' => true, |
1365 | - ) ); |
|
1365 | + )); |
|
1366 | 1366 | |
1367 | 1367 | $i = 0; |
1368 | - foreach ( $forms as $form_info ) { |
|
1369 | - $earnings['earnings'][ $i ] = array( |
|
1370 | - $form_info->post_name => give_get_form_earnings_stats( $form_info->ID ), |
|
1368 | + foreach ($forms as $form_info) { |
|
1369 | + $earnings['earnings'][$i] = array( |
|
1370 | + $form_info->post_name => give_get_form_earnings_stats($form_info->ID), |
|
1371 | 1371 | ); |
1372 | - $i ++; |
|
1372 | + $i++; |
|
1373 | 1373 | } |
1374 | 1374 | } else { |
1375 | - if ( get_post_type( $args['form'] ) == 'give_forms' ) { |
|
1376 | - $form_info = get_post( $args['form'] ); |
|
1375 | + if (get_post_type($args['form']) == 'give_forms') { |
|
1376 | + $form_info = get_post($args['form']); |
|
1377 | 1377 | $earnings['earnings'][0] = array( |
1378 | - $form_info->post_name => give_get_form_earnings_stats( $args['form'] ), |
|
1378 | + $form_info->post_name => give_get_form_earnings_stats($args['form']), |
|
1379 | 1379 | ); |
1380 | 1380 | } else { |
1381 | 1381 | $error['error'] = sprintf( /* translators: %s: form */ |
1382 | - __( 'Form %s not found.', 'give' ), $args['form'] ); |
|
1382 | + __('Form %s not found.', 'give'), $args['form'] ); |
|
1383 | 1383 | } |
1384 | 1384 | }// End if(). |
1385 | 1385 | |
1386 | - if ( ! empty( $error ) ) { |
|
1386 | + if ( ! empty($error)) { |
|
1387 | 1387 | return $error; |
1388 | 1388 | } |
1389 | 1389 | |
1390 | 1390 | return $earnings; |
1391 | - } elseif ( $args['type'] == 'donors' ) { |
|
1391 | + } elseif ($args['type'] == 'donors') { |
|
1392 | 1392 | $donors = new Give_DB_Donors(); |
1393 | 1393 | $stats['donations']['total_donors'] = $donors->count(); |
1394 | 1394 | |
1395 | 1395 | return $stats; |
1396 | 1396 | |
1397 | - } elseif ( empty( $args['type'] ) ) { |
|
1398 | - $stats = array_merge( $stats, $this->get_default_sales_stats() ); |
|
1399 | - $stats = array_merge( $stats, $this->get_default_earnings_stats() ); |
|
1397 | + } elseif (empty($args['type'])) { |
|
1398 | + $stats = array_merge($stats, $this->get_default_sales_stats()); |
|
1399 | + $stats = array_merge($stats, $this->get_default_earnings_stats()); |
|
1400 | 1400 | |
1401 | 1401 | return array( |
1402 | 1402 | 'stats' => $stats, |
@@ -1414,7 +1414,7 @@ discard block |
||
1414 | 1414 | * |
1415 | 1415 | * @return array |
1416 | 1416 | */ |
1417 | - public function get_recent_donations( $args = array() ) { |
|
1417 | + public function get_recent_donations($args = array()) { |
|
1418 | 1418 | global $wp_query; |
1419 | 1419 | |
1420 | 1420 | $defaults = array( |
@@ -1424,33 +1424,33 @@ discard block |
||
1424 | 1424 | 'enddate' => null, |
1425 | 1425 | ); |
1426 | 1426 | |
1427 | - $args = wp_parse_args( $args, $defaults ); |
|
1427 | + $args = wp_parse_args($args, $defaults); |
|
1428 | 1428 | |
1429 | 1429 | $donations = array(); |
1430 | 1430 | |
1431 | - if ( ! user_can( $this->user_id, 'view_give_reports' ) && ! $this->override ) { |
|
1431 | + if ( ! user_can($this->user_id, 'view_give_reports') && ! $this->override) { |
|
1432 | 1432 | return $donations; |
1433 | 1433 | } |
1434 | 1434 | |
1435 | - if ( isset( $wp_query->query_vars['id'] ) ) { |
|
1435 | + if (isset($wp_query->query_vars['id'])) { |
|
1436 | 1436 | $query = array(); |
1437 | - $query[] = new Give_Payment( $wp_query->query_vars['id'] ); |
|
1438 | - } elseif ( isset( $wp_query->query_vars['purchasekey'] ) ) { |
|
1437 | + $query[] = new Give_Payment($wp_query->query_vars['id']); |
|
1438 | + } elseif (isset($wp_query->query_vars['purchasekey'])) { |
|
1439 | 1439 | $query = array(); |
1440 | - $query[] = give_get_payment_by( 'key', $wp_query->query_vars['purchasekey'] ); |
|
1441 | - } elseif ( isset( $wp_query->query_vars['email'] ) ) { |
|
1442 | - $args = array( |
|
1440 | + $query[] = give_get_payment_by('key', $wp_query->query_vars['purchasekey']); |
|
1441 | + } elseif (isset($wp_query->query_vars['email'])) { |
|
1442 | + $args = array( |
|
1443 | 1443 | 'fields' => 'ids', |
1444 | 1444 | 'meta_key' => '_give_payment_donor_email', |
1445 | 1445 | 'meta_value' => $wp_query->query_vars['email'], |
1446 | 1446 | 'number' => $this->per_page(), |
1447 | 1447 | 'page' => $this->get_paged(), |
1448 | 1448 | ); |
1449 | - $query = give_get_payments( $args ); |
|
1450 | - } elseif ( isset( $wp_query->query_vars['date'] ) ) { |
|
1449 | + $query = give_get_payments($args); |
|
1450 | + } elseif (isset($wp_query->query_vars['date'])) { |
|
1451 | 1451 | |
1452 | - $current_time = current_time( 'timestamp' ); |
|
1453 | - $dates = $this->get_dates( $args ); |
|
1452 | + $current_time = current_time('timestamp'); |
|
1453 | + $dates = $this->get_dates($args); |
|
1454 | 1454 | $start_date = ''; |
1455 | 1455 | $end_date = ''; |
1456 | 1456 | |
@@ -1463,27 +1463,27 @@ discard block |
||
1463 | 1463 | * @params date startdate | required when date = range and format to be YYYYMMDD (i.e. 20170524) |
1464 | 1464 | * @params date enddate | required when date = range and format to be YYYYMMDD (i.e. 20170524) |
1465 | 1465 | */ |
1466 | - switch ( $wp_query->query_vars['date'] ) { |
|
1466 | + switch ($wp_query->query_vars['date']) { |
|
1467 | 1467 | |
1468 | 1468 | case 'today': |
1469 | 1469 | |
1470 | 1470 | // Set and Format Start and End Date to be date of today. |
1471 | - $start_date = $end_date = date( 'Y/m/d', $current_time ); |
|
1471 | + $start_date = $end_date = date('Y/m/d', $current_time); |
|
1472 | 1472 | |
1473 | 1473 | break; |
1474 | 1474 | |
1475 | 1475 | case 'yesterday': |
1476 | 1476 | |
1477 | 1477 | // Set and Format Start and End Date to be date of yesterday. |
1478 | - $start_date = $end_date = date( 'Y/m', $current_time ) . '/' . ( date( 'd', $current_time ) - 1 ); |
|
1478 | + $start_date = $end_date = date('Y/m', $current_time).'/'.(date('d', $current_time) - 1); |
|
1479 | 1479 | |
1480 | 1480 | break; |
1481 | 1481 | |
1482 | 1482 | case 'range': |
1483 | 1483 | |
1484 | 1484 | // Format Start Date and End Date for filtering payment based on date range. |
1485 | - $start_date = $dates['year'] . '/' . $dates['m_start'] . '/' . $dates['day_start']; |
|
1486 | - $end_date = $dates['year_end'] . '/' . $dates['m_end'] . '/' . $dates['day_end']; |
|
1485 | + $start_date = $dates['year'].'/'.$dates['m_start'].'/'.$dates['day_start']; |
|
1486 | + $end_date = $dates['year_end'].'/'.$dates['m_end'].'/'.$dates['day_end']; |
|
1487 | 1487 | |
1488 | 1488 | break; |
1489 | 1489 | |
@@ -1497,22 +1497,22 @@ discard block |
||
1497 | 1497 | 'page' => $this->get_paged(), |
1498 | 1498 | ); |
1499 | 1499 | |
1500 | - $query = give_get_payments( $args ); |
|
1500 | + $query = give_get_payments($args); |
|
1501 | 1501 | } else { |
1502 | 1502 | $args = array( |
1503 | 1503 | 'fields' => 'ids', |
1504 | 1504 | 'number' => $this->per_page(), |
1505 | 1505 | 'page' => $this->get_paged(), |
1506 | 1506 | ); |
1507 | - $query = give_get_payments( $args ); |
|
1507 | + $query = give_get_payments($args); |
|
1508 | 1508 | }// End if(). |
1509 | 1509 | |
1510 | - if ( $query ) { |
|
1510 | + if ($query) { |
|
1511 | 1511 | $i = 0; |
1512 | - foreach ( $query as $payment ) { |
|
1512 | + foreach ($query as $payment) { |
|
1513 | 1513 | |
1514 | - if ( is_numeric( $payment ) ) { |
|
1515 | - $payment = new Give_Payment( $payment ); |
|
1514 | + if (is_numeric($payment)) { |
|
1515 | + $payment = new Give_Payment($payment); |
|
1516 | 1516 | $payment_meta = $payment->get_meta(); |
1517 | 1517 | $user_info = $payment->user_info; |
1518 | 1518 | } |
@@ -1520,43 +1520,43 @@ discard block |
||
1520 | 1520 | $payment_meta = $payment->get_meta(); |
1521 | 1521 | $user_info = $payment->user_info; |
1522 | 1522 | |
1523 | - $first_name = isset( $user_info['first_name'] ) ? $user_info['first_name'] : ''; |
|
1524 | - $last_name = isset( $user_info['last_name'] ) ? $user_info['last_name'] : ''; |
|
1525 | - |
|
1526 | - $donations['donations'][ $i ]['ID'] = $payment->number; |
|
1527 | - $donations['donations'][ $i ]['transaction_id'] = $payment->transaction_id; |
|
1528 | - $donations['donations'][ $i ]['key'] = $payment->key; |
|
1529 | - $donations['donations'][ $i ]['total'] = $payment->total; |
|
1530 | - $donations['donations'][ $i ]['status'] = give_get_payment_status( $payment, true ); |
|
1531 | - $donations['donations'][ $i ]['gateway'] = $payment->gateway; |
|
1532 | - $donations['donations'][ $i ]['name'] = $first_name . ' ' . $last_name; |
|
1533 | - $donations['donations'][ $i ]['fname'] = $first_name; |
|
1534 | - $donations['donations'][ $i ]['lname'] = $last_name; |
|
1535 | - $donations['donations'][ $i ]['email'] = $payment->email; |
|
1536 | - $donations['donations'][ $i ]['date'] = $payment->date; |
|
1537 | - $donations['donations'][ $i ]['payment_meta'] = array(); |
|
1538 | - |
|
1539 | - $form_id = isset( $payment_meta['form_id'] ) ? $payment_meta['form_id'] : $payment_meta; |
|
1540 | - $price = isset( $payment_meta['form_id'] ) ? give_get_form_price( $payment_meta['form_id'] ) : false; |
|
1541 | - $price_id = isset( $payment_meta['price_id'] ) ? $payment_meta['price_id'] : null; |
|
1542 | - |
|
1543 | - $donations['donations'][ $i ]['form']['id'] = $form_id; |
|
1544 | - $donations['donations'][ $i ]['form']['name'] = get_the_title( $payment_meta['form_id'] ); |
|
1545 | - $donations['donations'][ $i ]['form']['price'] = $price; |
|
1546 | - |
|
1547 | - if ( give_has_variable_prices( $form_id ) ) { |
|
1548 | - if ( isset( $payment_meta['price_id'] ) ) { |
|
1549 | - $price_name = give_get_price_option_name( $form_id, $payment_meta['price_id'], $payment->ID ); |
|
1550 | - $donations['donations'][ $i ]['form']['price_name'] = $price_name; |
|
1551 | - $donations['donations'][ $i ]['form']['price_id'] = $price_id; |
|
1552 | - $donations['donations'][ $i ]['form']['price'] = give_get_price_option_amount( $form_id, $price_id ); |
|
1523 | + $first_name = isset($user_info['first_name']) ? $user_info['first_name'] : ''; |
|
1524 | + $last_name = isset($user_info['last_name']) ? $user_info['last_name'] : ''; |
|
1525 | + |
|
1526 | + $donations['donations'][$i]['ID'] = $payment->number; |
|
1527 | + $donations['donations'][$i]['transaction_id'] = $payment->transaction_id; |
|
1528 | + $donations['donations'][$i]['key'] = $payment->key; |
|
1529 | + $donations['donations'][$i]['total'] = $payment->total; |
|
1530 | + $donations['donations'][$i]['status'] = give_get_payment_status($payment, true); |
|
1531 | + $donations['donations'][$i]['gateway'] = $payment->gateway; |
|
1532 | + $donations['donations'][$i]['name'] = $first_name.' '.$last_name; |
|
1533 | + $donations['donations'][$i]['fname'] = $first_name; |
|
1534 | + $donations['donations'][$i]['lname'] = $last_name; |
|
1535 | + $donations['donations'][$i]['email'] = $payment->email; |
|
1536 | + $donations['donations'][$i]['date'] = $payment->date; |
|
1537 | + $donations['donations'][$i]['payment_meta'] = array(); |
|
1538 | + |
|
1539 | + $form_id = isset($payment_meta['form_id']) ? $payment_meta['form_id'] : $payment_meta; |
|
1540 | + $price = isset($payment_meta['form_id']) ? give_get_form_price($payment_meta['form_id']) : false; |
|
1541 | + $price_id = isset($payment_meta['price_id']) ? $payment_meta['price_id'] : null; |
|
1542 | + |
|
1543 | + $donations['donations'][$i]['form']['id'] = $form_id; |
|
1544 | + $donations['donations'][$i]['form']['name'] = get_the_title($payment_meta['form_id']); |
|
1545 | + $donations['donations'][$i]['form']['price'] = $price; |
|
1546 | + |
|
1547 | + if (give_has_variable_prices($form_id)) { |
|
1548 | + if (isset($payment_meta['price_id'])) { |
|
1549 | + $price_name = give_get_price_option_name($form_id, $payment_meta['price_id'], $payment->ID); |
|
1550 | + $donations['donations'][$i]['form']['price_name'] = $price_name; |
|
1551 | + $donations['donations'][$i]['form']['price_id'] = $price_id; |
|
1552 | + $donations['donations'][$i]['form']['price'] = give_get_price_option_amount($form_id, $price_id); |
|
1553 | 1553 | |
1554 | 1554 | } |
1555 | 1555 | } |
1556 | 1556 | |
1557 | - if( ! empty( $payment_meta ) ) { |
|
1557 | + if ( ! empty($payment_meta)) { |
|
1558 | 1558 | // Add custom meta to API |
1559 | - foreach ( $payment_meta as $meta_key => $meta_value ) { |
|
1559 | + foreach ($payment_meta as $meta_key => $meta_value) { |
|
1560 | 1560 | |
1561 | 1561 | $exceptions = array( |
1562 | 1562 | 'form_title', |
@@ -1569,20 +1569,20 @@ discard block |
||
1569 | 1569 | ); |
1570 | 1570 | |
1571 | 1571 | // Don't clutter up results with dupes |
1572 | - if ( in_array( $meta_key, $exceptions ) ) { |
|
1572 | + if (in_array($meta_key, $exceptions)) { |
|
1573 | 1573 | continue; |
1574 | 1574 | } |
1575 | 1575 | |
1576 | - $donations['donations'][ $i ]['payment_meta'][ $meta_key ] = $meta_value; |
|
1576 | + $donations['donations'][$i]['payment_meta'][$meta_key] = $meta_value; |
|
1577 | 1577 | |
1578 | 1578 | } |
1579 | 1579 | } |
1580 | 1580 | |
1581 | - $i ++; |
|
1581 | + $i++; |
|
1582 | 1582 | }// End foreach(). |
1583 | 1583 | }// End if(). |
1584 | 1584 | |
1585 | - return apply_filters( 'give_api_donations_endpoint', $donations ); |
|
1585 | + return apply_filters('give_api_donations_endpoint', $donations); |
|
1586 | 1586 | } |
1587 | 1587 | |
1588 | 1588 | /** |
@@ -1598,9 +1598,9 @@ discard block |
||
1598 | 1598 | public function get_output_format() { |
1599 | 1599 | global $wp_query; |
1600 | 1600 | |
1601 | - $format = isset( $wp_query->query_vars['format'] ) ? $wp_query->query_vars['format'] : 'json'; |
|
1601 | + $format = isset($wp_query->query_vars['format']) ? $wp_query->query_vars['format'] : 'json'; |
|
1602 | 1602 | |
1603 | - return apply_filters( 'give_api_output_format', $format ); |
|
1603 | + return apply_filters('give_api_output_format', $format); |
|
1604 | 1604 | } |
1605 | 1605 | |
1606 | 1606 | |
@@ -1616,8 +1616,8 @@ discard block |
||
1616 | 1616 | * |
1617 | 1617 | * @return void |
1618 | 1618 | */ |
1619 | - private function log_request( $data = array() ) { |
|
1620 | - if ( ! $this->log_requests ) { |
|
1619 | + private function log_request($data = array()) { |
|
1620 | + if ( ! $this->log_requests) { |
|
1621 | 1621 | return; |
1622 | 1622 | } |
1623 | 1623 | |
@@ -1628,37 +1628,37 @@ discard block |
||
1628 | 1628 | |
1629 | 1629 | $query = array( |
1630 | 1630 | 'give-api' => $wp_query->query_vars['give-api'], |
1631 | - 'key' => isset( $wp_query->query_vars['key'] ) ? $wp_query->query_vars['key'] : null, |
|
1632 | - 'token' => isset( $wp_query->query_vars['token'] ) ? $wp_query->query_vars['token'] : null, |
|
1633 | - 'query' => isset( $wp_query->query_vars['query'] ) ? $wp_query->query_vars['query'] : null, |
|
1634 | - 'type' => isset( $wp_query->query_vars['type'] ) ? $wp_query->query_vars['type'] : null, |
|
1635 | - 'form' => isset( $wp_query->query_vars['form'] ) ? $wp_query->query_vars['form'] : null, |
|
1636 | - 'donor' => isset( $wp_query->query_vars['donor'] ) ? $wp_query->query_vars['donor'] : null, |
|
1637 | - 'date' => isset( $wp_query->query_vars['date'] ) ? $wp_query->query_vars['date'] : null, |
|
1638 | - 'startdate' => isset( $wp_query->query_vars['startdate'] ) ? $wp_query->query_vars['startdate'] : null, |
|
1639 | - 'enddate' => isset( $wp_query->query_vars['enddate'] ) ? $wp_query->query_vars['enddate'] : null, |
|
1640 | - 'id' => isset( $wp_query->query_vars['id'] ) ? $wp_query->query_vars['id'] : null, |
|
1641 | - 'purchasekey' => isset( $wp_query->query_vars['purchasekey'] ) ? $wp_query->query_vars['purchasekey'] : null, |
|
1642 | - 'email' => isset( $wp_query->query_vars['email'] ) ? $wp_query->query_vars['email'] : null, |
|
1631 | + 'key' => isset($wp_query->query_vars['key']) ? $wp_query->query_vars['key'] : null, |
|
1632 | + 'token' => isset($wp_query->query_vars['token']) ? $wp_query->query_vars['token'] : null, |
|
1633 | + 'query' => isset($wp_query->query_vars['query']) ? $wp_query->query_vars['query'] : null, |
|
1634 | + 'type' => isset($wp_query->query_vars['type']) ? $wp_query->query_vars['type'] : null, |
|
1635 | + 'form' => isset($wp_query->query_vars['form']) ? $wp_query->query_vars['form'] : null, |
|
1636 | + 'donor' => isset($wp_query->query_vars['donor']) ? $wp_query->query_vars['donor'] : null, |
|
1637 | + 'date' => isset($wp_query->query_vars['date']) ? $wp_query->query_vars['date'] : null, |
|
1638 | + 'startdate' => isset($wp_query->query_vars['startdate']) ? $wp_query->query_vars['startdate'] : null, |
|
1639 | + 'enddate' => isset($wp_query->query_vars['enddate']) ? $wp_query->query_vars['enddate'] : null, |
|
1640 | + 'id' => isset($wp_query->query_vars['id']) ? $wp_query->query_vars['id'] : null, |
|
1641 | + 'purchasekey' => isset($wp_query->query_vars['purchasekey']) ? $wp_query->query_vars['purchasekey'] : null, |
|
1642 | + 'email' => isset($wp_query->query_vars['email']) ? $wp_query->query_vars['email'] : null, |
|
1643 | 1643 | ); |
1644 | 1644 | |
1645 | 1645 | $log_data = array( |
1646 | 1646 | 'log_type' => 'api_request', |
1647 | - 'post_excerpt' => http_build_query( $query ), |
|
1648 | - 'post_content' => ! empty( $data['error'] ) ? $data['error'] : '', |
|
1647 | + 'post_excerpt' => http_build_query($query), |
|
1648 | + 'post_content' => ! empty($data['error']) ? $data['error'] : '', |
|
1649 | 1649 | ); |
1650 | 1650 | |
1651 | 1651 | $log_meta = array( |
1652 | - 'api_query' => http_build_query( $query ), |
|
1652 | + 'api_query' => http_build_query($query), |
|
1653 | 1653 | 'request_ip' => give_get_ip(), |
1654 | 1654 | 'user' => $this->user_id, |
1655 | - 'key' => isset( $wp_query->query_vars['key'] ) ? $wp_query->query_vars['key'] : null, |
|
1656 | - 'token' => isset( $wp_query->query_vars['token'] ) ? $wp_query->query_vars['token'] : null, |
|
1655 | + 'key' => isset($wp_query->query_vars['key']) ? $wp_query->query_vars['key'] : null, |
|
1656 | + 'token' => isset($wp_query->query_vars['token']) ? $wp_query->query_vars['token'] : null, |
|
1657 | 1657 | 'time' => $data['request_speed'], |
1658 | 1658 | 'version' => $this->get_queried_version(), |
1659 | 1659 | ); |
1660 | 1660 | |
1661 | - Give()->logs->insert_log( $log_data, $log_meta ); |
|
1661 | + Give()->logs->insert_log($log_data, $log_meta); |
|
1662 | 1662 | } |
1663 | 1663 | |
1664 | 1664 | |
@@ -1682,11 +1682,11 @@ discard block |
||
1682 | 1682 | * |
1683 | 1683 | * @param int $status_code |
1684 | 1684 | */ |
1685 | - public function output( $status_code = 200 ) { |
|
1685 | + public function output($status_code = 200) { |
|
1686 | 1686 | |
1687 | 1687 | $format = $this->get_output_format(); |
1688 | 1688 | |
1689 | - status_header( $status_code ); |
|
1689 | + status_header($status_code); |
|
1690 | 1690 | |
1691 | 1691 | /** |
1692 | 1692 | * Fires before outputting the API. |
@@ -1697,25 +1697,25 @@ discard block |
||
1697 | 1697 | * @param Give_API $this The Give_API object. |
1698 | 1698 | * @param string $format Output format, XML or JSON. Default is JSON. |
1699 | 1699 | */ |
1700 | - do_action( 'give_api_output_before', $this->data, $this, $format ); |
|
1700 | + do_action('give_api_output_before', $this->data, $this, $format); |
|
1701 | 1701 | |
1702 | - switch ( $format ) : |
|
1702 | + switch ($format) : |
|
1703 | 1703 | |
1704 | 1704 | case 'xml' : |
1705 | 1705 | |
1706 | - require_once GIVE_PLUGIN_DIR . 'includes/libraries/array2xml.php'; |
|
1707 | - $xml = Array2XML::createXML( 'give', $this->data ); |
|
1706 | + require_once GIVE_PLUGIN_DIR.'includes/libraries/array2xml.php'; |
|
1707 | + $xml = Array2XML::createXML('give', $this->data); |
|
1708 | 1708 | echo $xml->saveXML(); |
1709 | 1709 | |
1710 | 1710 | break; |
1711 | 1711 | |
1712 | 1712 | case 'json' : |
1713 | 1713 | |
1714 | - header( 'Content-Type: application/json' ); |
|
1715 | - if ( ! empty( $this->pretty_print ) ) { |
|
1716 | - echo json_encode( $this->data, $this->pretty_print ); |
|
1714 | + header('Content-Type: application/json'); |
|
1715 | + if ( ! empty($this->pretty_print)) { |
|
1716 | + echo json_encode($this->data, $this->pretty_print); |
|
1717 | 1717 | } else { |
1718 | - echo json_encode( $this->data ); |
|
1718 | + echo json_encode($this->data); |
|
1719 | 1719 | } |
1720 | 1720 | |
1721 | 1721 | break; |
@@ -1730,7 +1730,7 @@ discard block |
||
1730 | 1730 | * @param array $data Response data to return. |
1731 | 1731 | * @param Give_API $this The Give_API object. |
1732 | 1732 | */ |
1733 | - do_action( "give_api_output_{$format}", $this->data, $this ); |
|
1733 | + do_action("give_api_output_{$format}", $this->data, $this); |
|
1734 | 1734 | |
1735 | 1735 | break; |
1736 | 1736 | |
@@ -1745,7 +1745,7 @@ discard block |
||
1745 | 1745 | * @param Give_API $this The Give_API object. |
1746 | 1746 | * @param string $format Output format, XML or JSON. Default is JSON. |
1747 | 1747 | */ |
1748 | - do_action( 'give_api_output_after', $this->data, $this, $format ); |
|
1748 | + do_action('give_api_output_after', $this->data, $this, $format); |
|
1749 | 1749 | |
1750 | 1750 | give_die(); |
1751 | 1751 | } |
@@ -1762,41 +1762,41 @@ discard block |
||
1762 | 1762 | * |
1763 | 1763 | * @return void |
1764 | 1764 | */ |
1765 | - function user_key_field( $user ) { |
|
1765 | + function user_key_field($user) { |
|
1766 | 1766 | |
1767 | - if ( ( give_get_option( 'api_allow_user_keys', false ) || current_user_can( 'manage_give_settings' ) ) && current_user_can( 'edit_user', $user->ID ) ) { |
|
1767 | + if ((give_get_option('api_allow_user_keys', false) || current_user_can('manage_give_settings')) && current_user_can('edit_user', $user->ID)) { |
|
1768 | 1768 | |
1769 | - $user = get_userdata( $user->ID ); |
|
1769 | + $user = get_userdata($user->ID); |
|
1770 | 1770 | ?> |
1771 | 1771 | <table class="form-table"> |
1772 | 1772 | <tbody> |
1773 | 1773 | <tr> |
1774 | 1774 | <th> |
1775 | - <?php _e( 'Give API Keys', 'give' ); ?> |
|
1775 | + <?php _e('Give API Keys', 'give'); ?> |
|
1776 | 1776 | </th> |
1777 | 1777 | <td> |
1778 | 1778 | <?php |
1779 | - $public_key = $this->get_user_public_key( $user->ID ); |
|
1780 | - $secret_key = $this->get_user_secret_key( $user->ID ); |
|
1779 | + $public_key = $this->get_user_public_key($user->ID); |
|
1780 | + $secret_key = $this->get_user_secret_key($user->ID); |
|
1781 | 1781 | ?> |
1782 | - <?php if ( empty( $user->give_user_public_key ) ) { ?> |
|
1782 | + <?php if (empty($user->give_user_public_key)) { ?> |
|
1783 | 1783 | <input name="give_set_api_key" type="checkbox" id="give_set_api_key" /> |
1784 | - <span class="description"><?php _e( 'Generate API Key', 'give' ); ?></span> |
|
1784 | + <span class="description"><?php _e('Generate API Key', 'give'); ?></span> |
|
1785 | 1785 | <?php } else { ?> |
1786 | - <strong style="display:inline-block; width: 125px;"><?php _e( 'Public key:', 'give' ); ?> |
|
1786 | + <strong style="display:inline-block; width: 125px;"><?php _e('Public key:', 'give'); ?> |
|
1787 | 1787 | </strong> |
1788 | - <input type="text" disabled="disabled" class="regular-text" id="publickey" value="<?php echo esc_attr( $public_key ); ?>" /> |
|
1788 | + <input type="text" disabled="disabled" class="regular-text" id="publickey" value="<?php echo esc_attr($public_key); ?>" /> |
|
1789 | 1789 | <br /> |
1790 | - <strong style="display:inline-block; width: 125px;"><?php _e( 'Secret key:', 'give' ); ?> |
|
1790 | + <strong style="display:inline-block; width: 125px;"><?php _e('Secret key:', 'give'); ?> |
|
1791 | 1791 | </strong> |
1792 | - <input type="text" disabled="disabled" class="regular-text" id="privatekey" value="<?php echo esc_attr( $secret_key ); ?>" /> |
|
1792 | + <input type="text" disabled="disabled" class="regular-text" id="privatekey" value="<?php echo esc_attr($secret_key); ?>" /> |
|
1793 | 1793 | <br /> |
1794 | - <strong style="display:inline-block; width: 125px;"><?php _e( 'Token:', 'give' ); ?> |
|
1794 | + <strong style="display:inline-block; width: 125px;"><?php _e('Token:', 'give'); ?> |
|
1795 | 1795 | </strong> |
1796 | - <input type="text" disabled="disabled" class="regular-text" id="token" value="<?php echo esc_attr( $this->get_token( $user->ID ) ); ?>" /> |
|
1796 | + <input type="text" disabled="disabled" class="regular-text" id="token" value="<?php echo esc_attr($this->get_token($user->ID)); ?>" /> |
|
1797 | 1797 | <br /> |
1798 | 1798 | <input name="give_revoke_api_key" type="checkbox" id="give_revoke_api_key" /> |
1799 | - <span class="description"><label for="give_revoke_api_key"><?php _e( 'Revoke API Keys', 'give' ); ?></label></span> |
|
1799 | + <span class="description"><label for="give_revoke_api_key"><?php _e('Revoke API Keys', 'give'); ?></label></span> |
|
1800 | 1800 | <?php } ?> |
1801 | 1801 | </td> |
1802 | 1802 | </tr> |
@@ -1815,61 +1815,61 @@ discard block |
||
1815 | 1815 | * |
1816 | 1816 | * @return void |
1817 | 1817 | */ |
1818 | - public function process_api_key( $args ) { |
|
1818 | + public function process_api_key($args) { |
|
1819 | 1819 | |
1820 | - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'give-api-nonce' ) ) { |
|
1821 | - wp_die( __( 'Nonce verification failed.', 'give' ), __( 'Error', 'give' ), array( |
|
1820 | + if ( ! wp_verify_nonce($_REQUEST['_wpnonce'], 'give-api-nonce')) { |
|
1821 | + wp_die(__('Nonce verification failed.', 'give'), __('Error', 'give'), array( |
|
1822 | 1822 | 'response' => 403, |
1823 | - ) ); |
|
1823 | + )); |
|
1824 | 1824 | } |
1825 | 1825 | |
1826 | - if ( empty( $args['user_id'] ) ) { |
|
1827 | - wp_die( __( 'User ID Required.', 'give' ), __( 'Error', 'give' ), array( |
|
1826 | + if (empty($args['user_id'])) { |
|
1827 | + wp_die(__('User ID Required.', 'give'), __('Error', 'give'), array( |
|
1828 | 1828 | 'response' => 401, |
1829 | - ) ); |
|
1829 | + )); |
|
1830 | 1830 | } |
1831 | 1831 | |
1832 | - if ( is_numeric( $args['user_id'] ) ) { |
|
1833 | - $user_id = isset( $args['user_id'] ) ? absint( $args['user_id'] ) : get_current_user_id(); |
|
1832 | + if (is_numeric($args['user_id'])) { |
|
1833 | + $user_id = isset($args['user_id']) ? absint($args['user_id']) : get_current_user_id(); |
|
1834 | 1834 | } else { |
1835 | - $userdata = get_user_by( 'login', $args['user_id'] ); |
|
1835 | + $userdata = get_user_by('login', $args['user_id']); |
|
1836 | 1836 | $user_id = $userdata->ID; |
1837 | 1837 | } |
1838 | - $process = isset( $args['give_api_process'] ) ? strtolower( $args['give_api_process'] ) : false; |
|
1838 | + $process = isset($args['give_api_process']) ? strtolower($args['give_api_process']) : false; |
|
1839 | 1839 | |
1840 | - if ( $user_id == get_current_user_id() && ! give_get_option( 'allow_user_api_keys' ) && ! current_user_can( 'manage_give_settings' ) ) { |
|
1841 | - wp_die( sprintf( /* translators: %s: process */ |
|
1842 | - __( 'You do not have permission to %s API keys for this user.', 'give' ), $process ), __( 'Error', 'give' ), array( |
|
1840 | + if ($user_id == get_current_user_id() && ! give_get_option('allow_user_api_keys') && ! current_user_can('manage_give_settings')) { |
|
1841 | + wp_die(sprintf( /* translators: %s: process */ |
|
1842 | + __('You do not have permission to %s API keys for this user.', 'give'), $process ), __('Error', 'give'), array( |
|
1843 | 1843 | 'response' => 403, |
1844 | - ) ); |
|
1845 | - } elseif ( ! current_user_can( 'manage_give_settings' ) ) { |
|
1846 | - wp_die( sprintf( /* translators: %s: process */ |
|
1847 | - __( 'You do not have permission to %s API keys for this user.', 'give' ), $process ), __( 'Error', 'give' ), array( |
|
1844 | + )); |
|
1845 | + } elseif ( ! current_user_can('manage_give_settings')) { |
|
1846 | + wp_die(sprintf( /* translators: %s: process */ |
|
1847 | + __('You do not have permission to %s API keys for this user.', 'give'), $process ), __('Error', 'give'), array( |
|
1848 | 1848 | 'response' => 403, |
1849 | - ) ); |
|
1849 | + )); |
|
1850 | 1850 | } |
1851 | 1851 | |
1852 | - switch ( $process ) { |
|
1852 | + switch ($process) { |
|
1853 | 1853 | case 'generate': |
1854 | - if ( $this->generate_api_key( $user_id ) ) { |
|
1855 | - Give_Cache::delete( Give_Cache::get_key( 'give_total_api_keys' ) ); |
|
1856 | - wp_redirect( add_query_arg( 'give-message', 'api-key-generated', 'edit.php?post_type=give_forms&page=give-tools&tab=api' ) ); |
|
1854 | + if ($this->generate_api_key($user_id)) { |
|
1855 | + Give_Cache::delete(Give_Cache::get_key('give_total_api_keys')); |
|
1856 | + wp_redirect(add_query_arg('give-message', 'api-key-generated', 'edit.php?post_type=give_forms&page=give-tools&tab=api')); |
|
1857 | 1857 | exit(); |
1858 | 1858 | } else { |
1859 | - wp_redirect( add_query_arg( 'give-message', 'api-key-failed', 'edit.php?post_type=give_forms&page=give-tools&tab=api' ) ); |
|
1859 | + wp_redirect(add_query_arg('give-message', 'api-key-failed', 'edit.php?post_type=give_forms&page=give-tools&tab=api')); |
|
1860 | 1860 | exit(); |
1861 | 1861 | } |
1862 | 1862 | break; |
1863 | 1863 | case 'regenerate': |
1864 | - $this->generate_api_key( $user_id, true ); |
|
1865 | - Give_Cache::delete( Give_Cache::get_key( 'give_total_api_keys' ) ); |
|
1866 | - wp_redirect( add_query_arg( 'give-message', 'api-key-regenerated', 'edit.php?post_type=give_forms&page=give-tools&tab=api' ) ); |
|
1864 | + $this->generate_api_key($user_id, true); |
|
1865 | + Give_Cache::delete(Give_Cache::get_key('give_total_api_keys')); |
|
1866 | + wp_redirect(add_query_arg('give-message', 'api-key-regenerated', 'edit.php?post_type=give_forms&page=give-tools&tab=api')); |
|
1867 | 1867 | exit(); |
1868 | 1868 | break; |
1869 | 1869 | case 'revoke': |
1870 | - $this->revoke_api_key( $user_id ); |
|
1871 | - Give_Cache::delete( Give_Cache::get_key( 'give_total_api_keys' ) ); |
|
1872 | - wp_redirect( add_query_arg( 'give-message', 'api-key-revoked', 'edit.php?post_type=give_forms&page=give-tools&tab=api' ) ); |
|
1870 | + $this->revoke_api_key($user_id); |
|
1871 | + Give_Cache::delete(Give_Cache::get_key('give_total_api_keys')); |
|
1872 | + wp_redirect(add_query_arg('give-message', 'api-key-revoked', 'edit.php?post_type=give_forms&page=give-tools&tab=api')); |
|
1873 | 1873 | exit(); |
1874 | 1874 | break; |
1875 | 1875 | default; |
@@ -1888,59 +1888,59 @@ discard block |
||
1888 | 1888 | * |
1889 | 1889 | * @return boolean True if (re)generated successfully, false otherwise. |
1890 | 1890 | */ |
1891 | - public function generate_api_key( $user_id = 0, $regenerate = false ) { |
|
1891 | + public function generate_api_key($user_id = 0, $regenerate = false) { |
|
1892 | 1892 | |
1893 | 1893 | // Bail out, if user doesn't exists. |
1894 | - if ( empty( $user_id ) ) { |
|
1894 | + if (empty($user_id)) { |
|
1895 | 1895 | return false; |
1896 | 1896 | } |
1897 | 1897 | |
1898 | - $user = get_userdata( $user_id ); |
|
1898 | + $user = get_userdata($user_id); |
|
1899 | 1899 | |
1900 | 1900 | // Bail Out, if user object doesn't exists. |
1901 | - if ( ! $user ) { |
|
1901 | + if ( ! $user) { |
|
1902 | 1902 | return false; |
1903 | 1903 | } |
1904 | 1904 | |
1905 | 1905 | $new_public_key = ''; |
1906 | 1906 | $new_secret_key = ''; |
1907 | 1907 | |
1908 | - if( ! empty( $_POST['from'] ) && 'profile' === $_POST['from'] ) { |
|
1908 | + if ( ! empty($_POST['from']) && 'profile' === $_POST['from']) { |
|
1909 | 1909 | // For User Profile Page. |
1910 | - if( ! empty( $_POST['give_set_api_key'] ) ) { |
|
1910 | + if ( ! empty($_POST['give_set_api_key'])) { |
|
1911 | 1911 | // Generate API Key from User Profile page. |
1912 | - $new_public_key = $this->generate_public_key( $user->user_email ); |
|
1913 | - $new_secret_key = $this->generate_private_key( $user->ID ); |
|
1914 | - } elseif ( ! empty( $_POST['give_revoke_api_key'] ) ) { |
|
1912 | + $new_public_key = $this->generate_public_key($user->user_email); |
|
1913 | + $new_secret_key = $this->generate_private_key($user->ID); |
|
1914 | + } elseif ( ! empty($_POST['give_revoke_api_key'])) { |
|
1915 | 1915 | // Revoke API Key from User Profile page. |
1916 | - $this->revoke_api_key( $user->ID ); |
|
1916 | + $this->revoke_api_key($user->ID); |
|
1917 | 1917 | } else { |
1918 | 1918 | return false; |
1919 | 1919 | } |
1920 | 1920 | } else { |
1921 | 1921 | // For Tools > API page. |
1922 | - $public_key = $this->get_user_public_key( $user_id ); |
|
1922 | + $public_key = $this->get_user_public_key($user_id); |
|
1923 | 1923 | |
1924 | - if ( empty( $public_key ) && ! $regenerate ) { |
|
1924 | + if (empty($public_key) && ! $regenerate) { |
|
1925 | 1925 | // Generating API for first time. |
1926 | - $new_public_key = $this->generate_public_key( $user->user_email ); |
|
1927 | - $new_secret_key = $this->generate_private_key( $user->ID ); |
|
1928 | - } elseif ( $public_key && $regenerate ) { |
|
1926 | + $new_public_key = $this->generate_public_key($user->user_email); |
|
1927 | + $new_secret_key = $this->generate_private_key($user->ID); |
|
1928 | + } elseif ($public_key && $regenerate) { |
|
1929 | 1929 | // API Key already exists and Regenerating API Key. |
1930 | - $this->revoke_api_key( $user->ID ); |
|
1931 | - $new_public_key = $this->generate_public_key( $user->user_email ); |
|
1932 | - $new_secret_key = $this->generate_private_key( $user->ID ); |
|
1933 | - } elseif ( ! empty( $public_key ) && ! $regenerate ) { |
|
1930 | + $this->revoke_api_key($user->ID); |
|
1931 | + $new_public_key = $this->generate_public_key($user->user_email); |
|
1932 | + $new_secret_key = $this->generate_private_key($user->ID); |
|
1933 | + } elseif ( ! empty($public_key) && ! $regenerate) { |
|
1934 | 1934 | // Doing nothing, when API Key exists but still try to generate again instead of regenerating. |
1935 | 1935 | return false; |
1936 | 1936 | } else { |
1937 | 1937 | // Revoke API Key. |
1938 | - $this->revoke_api_key( $user->ID ); |
|
1938 | + $this->revoke_api_key($user->ID); |
|
1939 | 1939 | } |
1940 | 1940 | } |
1941 | 1941 | |
1942 | - update_user_meta( $user_id, $new_public_key, 'give_user_public_key' ); |
|
1943 | - update_user_meta( $user_id, $new_secret_key, 'give_user_secret_key' ); |
|
1942 | + update_user_meta($user_id, $new_public_key, 'give_user_public_key'); |
|
1943 | + update_user_meta($user_id, $new_secret_key, 'give_user_secret_key'); |
|
1944 | 1944 | |
1945 | 1945 | return true; |
1946 | 1946 | } |
@@ -1955,26 +1955,26 @@ discard block |
||
1955 | 1955 | * |
1956 | 1956 | * @return bool |
1957 | 1957 | */ |
1958 | - public function revoke_api_key( $user_id = 0 ) { |
|
1958 | + public function revoke_api_key($user_id = 0) { |
|
1959 | 1959 | |
1960 | - if ( empty( $user_id ) ) { |
|
1960 | + if (empty($user_id)) { |
|
1961 | 1961 | return false; |
1962 | 1962 | } |
1963 | 1963 | |
1964 | - $user = get_userdata( $user_id ); |
|
1964 | + $user = get_userdata($user_id); |
|
1965 | 1965 | |
1966 | - if ( ! $user ) { |
|
1966 | + if ( ! $user) { |
|
1967 | 1967 | return false; |
1968 | 1968 | } |
1969 | 1969 | |
1970 | - $public_key = $this->get_user_public_key( $user_id ); |
|
1971 | - $secret_key = $this->get_user_secret_key( $user_id ); |
|
1972 | - if ( ! empty( $public_key ) ) { |
|
1973 | - Give_Cache::delete( Give_Cache::get_key( md5( 'give_api_user_' . $public_key ) ) ); |
|
1974 | - Give_Cache::delete( Give_Cache::get_key( md5( 'give_api_user_public_key' . $user_id ) ) ); |
|
1975 | - Give_Cache::delete( Give_Cache::get_key( md5( 'give_api_user_secret_key' . $user_id ) ) ); |
|
1976 | - delete_user_meta( $user_id, $public_key ); |
|
1977 | - delete_user_meta( $user_id, $secret_key ); |
|
1970 | + $public_key = $this->get_user_public_key($user_id); |
|
1971 | + $secret_key = $this->get_user_secret_key($user_id); |
|
1972 | + if ( ! empty($public_key)) { |
|
1973 | + Give_Cache::delete(Give_Cache::get_key(md5('give_api_user_'.$public_key))); |
|
1974 | + Give_Cache::delete(Give_Cache::get_key(md5('give_api_user_public_key'.$user_id))); |
|
1975 | + Give_Cache::delete(Give_Cache::get_key(md5('give_api_user_secret_key'.$user_id))); |
|
1976 | + delete_user_meta($user_id, $public_key); |
|
1977 | + delete_user_meta($user_id, $secret_key); |
|
1978 | 1978 | } else { |
1979 | 1979 | return false; |
1980 | 1980 | } |
@@ -1996,9 +1996,9 @@ discard block |
||
1996 | 1996 | * |
1997 | 1997 | * @return string |
1998 | 1998 | */ |
1999 | - private function generate_public_key( $user_email = '' ) { |
|
2000 | - $auth_key = defined( 'AUTH_KEY' ) ? AUTH_KEY : ''; |
|
2001 | - $public = hash( 'md5', $user_email . $auth_key . date( 'U' ) ); |
|
1999 | + private function generate_public_key($user_email = '') { |
|
2000 | + $auth_key = defined('AUTH_KEY') ? AUTH_KEY : ''; |
|
2001 | + $public = hash('md5', $user_email.$auth_key.date('U')); |
|
2002 | 2002 | |
2003 | 2003 | return $public; |
2004 | 2004 | } |
@@ -2013,9 +2013,9 @@ discard block |
||
2013 | 2013 | * |
2014 | 2014 | * @return string |
2015 | 2015 | */ |
2016 | - private function generate_private_key( $user_id = 0 ) { |
|
2017 | - $auth_key = defined( 'AUTH_KEY' ) ? AUTH_KEY : ''; |
|
2018 | - $secret = hash( 'md5', $user_id . $auth_key . date( 'U' ) ); |
|
2016 | + private function generate_private_key($user_id = 0) { |
|
2017 | + $auth_key = defined('AUTH_KEY') ? AUTH_KEY : ''; |
|
2018 | + $secret = hash('md5', $user_id.$auth_key.date('U')); |
|
2019 | 2019 | |
2020 | 2020 | return $secret; |
2021 | 2021 | } |
@@ -2030,8 +2030,8 @@ discard block |
||
2030 | 2030 | * |
2031 | 2031 | * @return string |
2032 | 2032 | */ |
2033 | - public function get_token( $user_id = 0 ) { |
|
2034 | - return hash( 'md5', $this->get_user_secret_key( $user_id ) . $this->get_user_public_key( $user_id ) ); |
|
2033 | + public function get_token($user_id = 0) { |
|
2034 | + return hash('md5', $this->get_user_secret_key($user_id).$this->get_user_public_key($user_id)); |
|
2035 | 2035 | } |
2036 | 2036 | |
2037 | 2037 | /** |
@@ -2045,9 +2045,9 @@ discard block |
||
2045 | 2045 | |
2046 | 2046 | // Default sales return |
2047 | 2047 | $donations = array(); |
2048 | - $donations['donations']['today'] = $this->stats->get_sales( 0, 'today' ); |
|
2049 | - $donations['donations']['current_month'] = $this->stats->get_sales( 0, 'this_month' ); |
|
2050 | - $donations['donations']['last_month'] = $this->stats->get_sales( 0, 'last_month' ); |
|
2048 | + $donations['donations']['today'] = $this->stats->get_sales(0, 'today'); |
|
2049 | + $donations['donations']['current_month'] = $this->stats->get_sales(0, 'this_month'); |
|
2050 | + $donations['donations']['last_month'] = $this->stats->get_sales(0, 'last_month'); |
|
2051 | 2051 | $donations['donations']['totals'] = give_get_total_donations(); |
2052 | 2052 | |
2053 | 2053 | return $donations; |
@@ -2064,9 +2064,9 @@ discard block |
||
2064 | 2064 | |
2065 | 2065 | // Default earnings return |
2066 | 2066 | $earnings = array(); |
2067 | - $earnings['earnings']['today'] = $this->stats->get_earnings( 0, 'today' ); |
|
2068 | - $earnings['earnings']['current_month'] = $this->stats->get_earnings( 0, 'this_month' ); |
|
2069 | - $earnings['earnings']['last_month'] = $this->stats->get_earnings( 0, 'last_month' ); |
|
2067 | + $earnings['earnings']['today'] = $this->stats->get_earnings(0, 'today'); |
|
2068 | + $earnings['earnings']['current_month'] = $this->stats->get_earnings(0, 'this_month'); |
|
2069 | + $earnings['earnings']['last_month'] = $this->stats->get_earnings(0, 'last_month'); |
|
2070 | 2070 | $earnings['earnings']['totals'] = give_get_total_earnings(); |
2071 | 2071 | |
2072 | 2072 | return $earnings; |
@@ -2086,25 +2086,25 @@ discard block |
||
2086 | 2086 | * |
2087 | 2087 | * @return string The API key/secret for the user supplied |
2088 | 2088 | */ |
2089 | - public function api_key_backwards_compat( $check, $object_id, $meta_key, $single ) { |
|
2089 | + public function api_key_backwards_compat($check, $object_id, $meta_key, $single) { |
|
2090 | 2090 | |
2091 | - if ( $meta_key !== 'give_user_public_key' && $meta_key !== 'give_user_secret_key' ) { |
|
2091 | + if ($meta_key !== 'give_user_public_key' && $meta_key !== 'give_user_secret_key') { |
|
2092 | 2092 | return $check; |
2093 | 2093 | } |
2094 | 2094 | |
2095 | 2095 | $return = $check; |
2096 | 2096 | |
2097 | - switch ( $meta_key ) { |
|
2097 | + switch ($meta_key) { |
|
2098 | 2098 | case 'give_user_public_key': |
2099 | - $return = Give()->api->get_user_public_key( $object_id ); |
|
2099 | + $return = Give()->api->get_user_public_key($object_id); |
|
2100 | 2100 | break; |
2101 | 2101 | case 'give_user_secret_key': |
2102 | - $return = Give()->api->get_user_secret_key( $object_id ); |
|
2102 | + $return = Give()->api->get_user_secret_key($object_id); |
|
2103 | 2103 | break; |
2104 | 2104 | } |
2105 | 2105 | |
2106 | - if ( ! $single ) { |
|
2107 | - $return = array( $return ); |
|
2106 | + if ( ! $single) { |
|
2107 | + $return = array($return); |
|
2108 | 2108 | } |
2109 | 2109 | |
2110 | 2110 | return $return; |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | * @uses Give_API::invalid_key() |
327 | 327 | * @uses Give_API::invalid_auth() |
328 | 328 | * @since 1.1 |
329 | - * @return bool |
|
329 | + * @return false|null |
|
330 | 330 | */ |
331 | 331 | private function validate_request() { |
332 | 332 | global $wp_query; |
@@ -722,7 +722,7 @@ discard block |
||
722 | 722 | * |
723 | 723 | * @param array $args Arguments to override defaults |
724 | 724 | * |
725 | - * @return array $dates |
|
725 | + * @return integer|null $dates |
|
726 | 726 | */ |
727 | 727 | public function get_dates( $args = array() ) { |
728 | 728 | $dates = array(); |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -62,51 +62,51 @@ discard block |
||
62 | 62 | * |
63 | 63 | * @return bool If the gravatar exists or not |
64 | 64 | */ |
65 | - public function validate_gravatar( $id_or_email ) { |
|
65 | + public function validate_gravatar($id_or_email) { |
|
66 | 66 | //id or email code borrowed from wp-includes/pluggable.php |
67 | 67 | $email = ''; |
68 | - if ( is_numeric( $id_or_email ) ) { |
|
68 | + if (is_numeric($id_or_email)) { |
|
69 | 69 | $id = (int) $id_or_email; |
70 | - $user = get_userdata( $id ); |
|
71 | - if ( $user ) { |
|
70 | + $user = get_userdata($id); |
|
71 | + if ($user) { |
|
72 | 72 | $email = $user->user_email; |
73 | 73 | } |
74 | - } elseif ( is_object( $id_or_email ) ) { |
|
74 | + } elseif (is_object($id_or_email)) { |
|
75 | 75 | // No avatar for pingbacks or trackbacks |
76 | - $allowed_comment_types = apply_filters( 'get_avatar_comment_types', array( 'comment' ) ); |
|
77 | - if ( ! empty( $id_or_email->comment_type ) && ! in_array( $id_or_email->comment_type, (array) $allowed_comment_types ) ) { |
|
76 | + $allowed_comment_types = apply_filters('get_avatar_comment_types', array('comment')); |
|
77 | + if ( ! empty($id_or_email->comment_type) && ! in_array($id_or_email->comment_type, (array) $allowed_comment_types)) { |
|
78 | 78 | return false; |
79 | 79 | } |
80 | 80 | |
81 | - if ( ! empty( $id_or_email->user_id ) ) { |
|
81 | + if ( ! empty($id_or_email->user_id)) { |
|
82 | 82 | $id = (int) $id_or_email->user_id; |
83 | - $user = get_userdata( $id ); |
|
84 | - if ( $user ) { |
|
83 | + $user = get_userdata($id); |
|
84 | + if ($user) { |
|
85 | 85 | $email = $user->user_email; |
86 | 86 | } |
87 | - } elseif ( ! empty( $id_or_email->comment_author_email ) ) { |
|
87 | + } elseif ( ! empty($id_or_email->comment_author_email)) { |
|
88 | 88 | $email = $id_or_email->comment_author_email; |
89 | 89 | } |
90 | 90 | } else { |
91 | 91 | $email = $id_or_email; |
92 | 92 | } |
93 | 93 | |
94 | - $hashkey = md5( strtolower( trim( $email ) ) ); |
|
95 | - $uri = 'http://www.gravatar.com/avatar/' . $hashkey . '?d=404'; |
|
94 | + $hashkey = md5(strtolower(trim($email))); |
|
95 | + $uri = 'http://www.gravatar.com/avatar/'.$hashkey.'?d=404'; |
|
96 | 96 | |
97 | - $data = Give_Cache::get_group( $hashkey ); |
|
97 | + $data = Give_Cache::get_group($hashkey); |
|
98 | 98 | |
99 | - if ( is_null( $data ) ) { |
|
100 | - $response = wp_remote_head( $uri ); |
|
101 | - if ( is_wp_error( $response ) ) { |
|
99 | + if (is_null($data)) { |
|
100 | + $response = wp_remote_head($uri); |
|
101 | + if (is_wp_error($response)) { |
|
102 | 102 | $data = 'not200'; |
103 | 103 | } else { |
104 | 104 | $data = $response['response']['code']; |
105 | 105 | } |
106 | - Give_Cache::set_group( $hashkey, $data, $group = '', $expire = 60 * 5 ); |
|
106 | + Give_Cache::set_group($hashkey, $data, $group = '', $expire = 60 * 5); |
|
107 | 107 | |
108 | 108 | } |
109 | - if ( $data == '200' ) { |
|
109 | + if ($data == '200') { |
|
110 | 110 | return true; |
111 | 111 | } else { |
112 | 112 | return false; |
@@ -123,15 +123,15 @@ discard block |
||
123 | 123 | * |
124 | 124 | * @return array IDs if logs, false otherwise |
125 | 125 | */ |
126 | - public function get_log_ids( $form_id = '' ) { |
|
126 | + public function get_log_ids($form_id = '') { |
|
127 | 127 | // get log for this form |
128 | - $logs = Give()->logs->get_logs( $form_id ); |
|
128 | + $logs = Give()->logs->get_logs($form_id); |
|
129 | 129 | |
130 | - if ( $logs ) { |
|
130 | + if ($logs) { |
|
131 | 131 | $log_ids = array(); |
132 | 132 | |
133 | 133 | // make an array with all the donor IDs |
134 | - foreach ( $logs as $log ) { |
|
134 | + foreach ($logs as $log) { |
|
135 | 135 | $log_ids[] = $log->ID; |
136 | 136 | } |
137 | 137 | |
@@ -152,51 +152,51 @@ discard block |
||
152 | 152 | * |
153 | 153 | * @return mixed |
154 | 154 | */ |
155 | - public function get_payment_ids( $form_id = '' ) { |
|
155 | + public function get_payment_ids($form_id = '') { |
|
156 | 156 | |
157 | 157 | $give_options = give_get_settings(); |
158 | 158 | |
159 | - $log_ids = $this->get_log_ids( $form_id ); |
|
159 | + $log_ids = $this->get_log_ids($form_id); |
|
160 | 160 | |
161 | - if ( $log_ids ) { |
|
161 | + if ($log_ids) { |
|
162 | 162 | |
163 | 163 | $payment_ids = array(); |
164 | 164 | |
165 | - foreach ( $log_ids as $id ) { |
|
165 | + foreach ($log_ids as $id) { |
|
166 | 166 | // get the payment ID for each corresponding log ID |
167 | - $payment_ids[] = give_get_meta( $id, '_give_log_payment_id', true ); |
|
167 | + $payment_ids[] = give_get_meta($id, '_give_log_payment_id', true); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | // remove donors who have donated more than once so we can have unique avatars |
171 | 171 | $unique_emails = array(); |
172 | 172 | |
173 | - foreach ( $payment_ids as $key => $id ) { |
|
173 | + foreach ($payment_ids as $key => $id) { |
|
174 | 174 | |
175 | - $email = give_get_meta( $id, '_give_payment_donor_email', true ); |
|
175 | + $email = give_get_meta($id, '_give_payment_donor_email', true); |
|
176 | 176 | |
177 | - if ( isset ( $give_options['give_donors_gravatars_has_gravatar_account'] ) ) { |
|
178 | - if ( ! $this->validate_gravatar( $email ) ) { |
|
177 | + if (isset ($give_options['give_donors_gravatars_has_gravatar_account'])) { |
|
178 | + if ( ! $this->validate_gravatar($email)) { |
|
179 | 179 | continue; |
180 | 180 | } |
181 | 181 | } |
182 | 182 | |
183 | - $unique_emails[ $id ] = give_get_meta( $id, '_give_payment_donor_email', true ); |
|
183 | + $unique_emails[$id] = give_get_meta($id, '_give_payment_donor_email', true); |
|
184 | 184 | |
185 | 185 | } |
186 | 186 | |
187 | 187 | $unique_ids = array(); |
188 | 188 | |
189 | 189 | // strip duplicate emails |
190 | - $unique_emails = array_unique( $unique_emails ); |
|
190 | + $unique_emails = array_unique($unique_emails); |
|
191 | 191 | |
192 | 192 | // convert the unique IDs back into simple array |
193 | - foreach ( $unique_emails as $id => $email ) { |
|
193 | + foreach ($unique_emails as $id => $email) { |
|
194 | 194 | $unique_ids[] = $id; |
195 | 195 | } |
196 | 196 | |
197 | 197 | // randomize the payment IDs if enabled |
198 | - if ( isset( $give_options['give_donors_gravatars_random_gravatars'] ) ) { |
|
199 | - shuffle( $unique_ids ); |
|
198 | + if (isset($give_options['give_donors_gravatars_random_gravatars'])) { |
|
199 | + shuffle($unique_ids); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | // return our unique IDs |
@@ -217,22 +217,22 @@ discard block |
||
217 | 217 | * |
218 | 218 | * @return string |
219 | 219 | */ |
220 | - public function gravatars( $form_id = false, $title = '' ) { |
|
220 | + public function gravatars($form_id = false, $title = '') { |
|
221 | 221 | |
222 | 222 | // unique $payment_ids |
223 | - $payment_ids = $this->get_payment_ids( $form_id ); |
|
223 | + $payment_ids = $this->get_payment_ids($form_id); |
|
224 | 224 | |
225 | 225 | $give_options = give_get_settings(); |
226 | 226 | |
227 | 227 | // return if no ID |
228 | - if ( ! $form_id ) { |
|
228 | + if ( ! $form_id) { |
|
229 | 229 | return; |
230 | 230 | } |
231 | 231 | |
232 | 232 | // minimum amount of donations before showing gravatars |
233 | 233 | // if the number of items in array is not greater or equal to the number specified, then exit |
234 | - if ( isset( $give_options['give_donors_gravatars_min_purchases_required'] ) && '' != $give_options['give_donors_gravatars_min_purchases_required'] ) { |
|
235 | - if ( ! ( count( $payment_ids ) >= $give_options['give_donors_gravatars_min_purchases_required'] ) ) { |
|
234 | + if (isset($give_options['give_donors_gravatars_min_purchases_required']) && '' != $give_options['give_donors_gravatars_min_purchases_required']) { |
|
235 | + if ( ! (count($payment_ids) >= $give_options['give_donors_gravatars_min_purchases_required'])) { |
|
236 | 236 | return; |
237 | 237 | } |
238 | 238 | } |
@@ -243,28 +243,28 @@ discard block |
||
243 | 243 | echo '<div id="give-purchase-gravatars">'; |
244 | 244 | |
245 | 245 | |
246 | - if ( isset ( $title ) ) { |
|
246 | + if (isset ($title)) { |
|
247 | 247 | |
248 | - if ( $title ) { |
|
249 | - echo apply_filters( 'give_donors_gravatars_title', '<h3 class="give-gravatars-title">' . esc_attr( $title ) . '</h3>' ); |
|
250 | - } elseif ( isset( $give_options['give_donors_gravatars_heading'] ) ) { |
|
251 | - echo apply_filters( 'give_donors_gravatars_title', '<h3 class="give-gravatars-title">' . esc_attr( $give_options['give_donors_gravatars_heading'] ) . '</h2>' ); |
|
248 | + if ($title) { |
|
249 | + echo apply_filters('give_donors_gravatars_title', '<h3 class="give-gravatars-title">'.esc_attr($title).'</h3>'); |
|
250 | + } elseif (isset($give_options['give_donors_gravatars_heading'])) { |
|
251 | + echo apply_filters('give_donors_gravatars_title', '<h3 class="give-gravatars-title">'.esc_attr($give_options['give_donors_gravatars_heading']).'</h2>'); |
|
252 | 252 | } |
253 | 253 | |
254 | 254 | } |
255 | 255 | echo '<ul class="give-purchase-gravatars-list">'; |
256 | 256 | $i = 0; |
257 | 257 | |
258 | - if ( $payment_ids ) { |
|
259 | - foreach ( $payment_ids as $id ) { |
|
258 | + if ($payment_ids) { |
|
259 | + foreach ($payment_ids as $id) { |
|
260 | 260 | |
261 | 261 | // Give saves a blank option even when the control is turned off, hence the extra check |
262 | - if ( isset( $give_options['give_donors_gravatars_maximum_number'] ) && '' != $give_options['give_donors_gravatars_maximum_number'] && $i == $give_options['give_donors_gravatars_maximum_number'] ) { |
|
262 | + if (isset($give_options['give_donors_gravatars_maximum_number']) && '' != $give_options['give_donors_gravatars_maximum_number'] && $i == $give_options['give_donors_gravatars_maximum_number']) { |
|
263 | 263 | continue; |
264 | 264 | } |
265 | 265 | |
266 | 266 | // get the payment meta |
267 | - $payment_meta = give_get_meta( $id, '_give_payment_meta', true ); |
|
267 | + $payment_meta = give_get_meta($id, '_give_payment_meta', true); |
|
268 | 268 | |
269 | 269 | $user_info = $payment_meta['user_info']; |
270 | 270 | |
@@ -272,21 +272,21 @@ discard block |
||
272 | 272 | $name = $user_info['first_name']; |
273 | 273 | |
274 | 274 | // get donor's email |
275 | - $email = give_get_meta( $id, '_give_payment_donor_email', true ); |
|
275 | + $email = give_get_meta($id, '_give_payment_donor_email', true); |
|
276 | 276 | |
277 | 277 | // set gravatar size and provide filter |
278 | - $size = isset( $give_options['give_donors_gravatars_gravatar_size'] ) ? apply_filters( 'give_donors_gravatars_gravatar_size', $give_options['give_donors_gravatars_gravatar_size'] ) : ''; |
|
278 | + $size = isset($give_options['give_donors_gravatars_gravatar_size']) ? apply_filters('give_donors_gravatars_gravatar_size', $give_options['give_donors_gravatars_gravatar_size']) : ''; |
|
279 | 279 | |
280 | 280 | // default image |
281 | - $default_image = apply_filters( 'give_donors_gravatars_gravatar_default_image', false ); |
|
281 | + $default_image = apply_filters('give_donors_gravatars_gravatar_default_image', false); |
|
282 | 282 | |
283 | 283 | // assemble output |
284 | 284 | $output .= '<li>'; |
285 | 285 | |
286 | - $output .= get_avatar( $email, $size, $default_image, $name ); |
|
286 | + $output .= get_avatar($email, $size, $default_image, $name); |
|
287 | 287 | $output .= '</li>'; |
288 | 288 | |
289 | - $i ++; |
|
289 | + $i++; |
|
290 | 290 | |
291 | 291 | } // end foreach |
292 | 292 | } |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | echo '</ul>'; |
296 | 296 | echo '</div>'; |
297 | 297 | |
298 | - return apply_filters( 'give_donors_gravatars', ob_get_clean() ); |
|
298 | + return apply_filters('give_donors_gravatars', ob_get_clean()); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | /** |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | * @return void |
308 | 308 | */ |
309 | 309 | public function register_widget() { |
310 | - register_widget( 'Give_Donors_Gravatars_Widget' ); |
|
310 | + register_widget('Give_Donors_Gravatars_Widget'); |
|
311 | 311 | } |
312 | 312 | |
313 | 313 | /** |
@@ -321,19 +321,19 @@ discard block |
||
321 | 321 | * |
322 | 322 | * @return string |
323 | 323 | */ |
324 | - public function shortcode( $atts, $content = null ) { |
|
324 | + public function shortcode($atts, $content = null) { |
|
325 | 325 | |
326 | - $atts = shortcode_atts( array( |
|
326 | + $atts = shortcode_atts(array( |
|
327 | 327 | 'id' => '', |
328 | 328 | 'title' => '' |
329 | - ), $atts, 'give_donors_gravatars' ); |
|
329 | + ), $atts, 'give_donors_gravatars'); |
|
330 | 330 | |
331 | 331 | // if no ID is passed on single give_forms pages, get the correct ID |
332 | - if ( is_singular( 'give_forms' ) ) { |
|
332 | + if (is_singular('give_forms')) { |
|
333 | 333 | $id = get_the_ID(); |
334 | 334 | } |
335 | 335 | |
336 | - $content = $this->gravatars( $atts['id'], $atts['title'] ); |
|
336 | + $content = $this->gravatars($atts['id'], $atts['title']); |
|
337 | 337 | |
338 | 338 | return $content; |
339 | 339 | |
@@ -349,56 +349,56 @@ discard block |
||
349 | 349 | * |
350 | 350 | * @return array Gravatar settings. |
351 | 351 | */ |
352 | - public function settings( $settings ) { |
|
352 | + public function settings($settings) { |
|
353 | 353 | |
354 | 354 | $give_gravatar_settings = array( |
355 | 355 | array( |
356 | - 'name' => esc_html__( 'Donator Gravatars', 'give' ), |
|
356 | + 'name' => esc_html__('Donator Gravatars', 'give'), |
|
357 | 357 | 'desc' => '<hr>', |
358 | 358 | 'id' => 'give_title', |
359 | 359 | 'type' => 'give_title' |
360 | 360 | ), |
361 | 361 | array( |
362 | - 'name' => esc_html__( 'Heading', 'give' ), |
|
363 | - 'desc' => esc_html__( 'The heading to display above the Gravatars.', 'give' ), |
|
362 | + 'name' => esc_html__('Heading', 'give'), |
|
363 | + 'desc' => esc_html__('The heading to display above the Gravatars.', 'give'), |
|
364 | 364 | 'type' => 'text', |
365 | 365 | 'id' => 'give_donors_gravatars_heading' |
366 | 366 | ), |
367 | 367 | array( |
368 | - 'name' => esc_html__( 'Gravatar Size', 'give' ), |
|
369 | - 'desc' => esc_html__( 'The size of each Gravatar in pixels (512px maximum).', 'give' ), |
|
368 | + 'name' => esc_html__('Gravatar Size', 'give'), |
|
369 | + 'desc' => esc_html__('The size of each Gravatar in pixels (512px maximum).', 'give'), |
|
370 | 370 | 'type' => 'text_small', |
371 | 371 | 'id' => 'give_donors_gravatars_gravatar_size', |
372 | 372 | 'default' => '64' |
373 | 373 | ), |
374 | 374 | array( |
375 | - 'name' => esc_html__( 'Minimum Unique Donations Required', 'give' ), |
|
376 | - 'desc' => esc_html__( 'The minimum number of unique donations a form must have before the Gravatars are shown. Leave blank for no minimum.', 'give' ), |
|
375 | + 'name' => esc_html__('Minimum Unique Donations Required', 'give'), |
|
376 | + 'desc' => esc_html__('The minimum number of unique donations a form must have before the Gravatars are shown. Leave blank for no minimum.', 'give'), |
|
377 | 377 | 'type' => 'text_small', |
378 | 378 | 'id' => 'give_donors_gravatars_min_purchases_required', |
379 | 379 | ), |
380 | 380 | array( |
381 | - 'name' => esc_html__( 'Maximum Gravatars To Show', 'give' ), |
|
382 | - 'desc' => esc_html__( 'The maximum number of gravatars to show. Leave blank for no limit.', 'give' ), |
|
381 | + 'name' => esc_html__('Maximum Gravatars To Show', 'give'), |
|
382 | + 'desc' => esc_html__('The maximum number of gravatars to show. Leave blank for no limit.', 'give'), |
|
383 | 383 | 'type' => 'text', |
384 | 384 | 'id' => 'give_donors_gravatars_maximum_number', |
385 | 385 | 'default' => '20', |
386 | 386 | ), |
387 | 387 | array( |
388 | - 'name' => esc_html__( 'Gravatar Visibility', 'give' ), |
|
389 | - 'desc' => esc_html__( 'Show only donors with a Gravatar account.', 'give' ), |
|
388 | + 'name' => esc_html__('Gravatar Visibility', 'give'), |
|
389 | + 'desc' => esc_html__('Show only donors with a Gravatar account.', 'give'), |
|
390 | 390 | 'id' => 'give_donors_gravatars_has_gravatar_account', |
391 | 391 | 'type' => 'checkbox', |
392 | 392 | ), |
393 | 393 | array( |
394 | - 'name' => esc_html__( 'Randomize Gravatars', 'give' ), |
|
395 | - 'desc' => esc_html__( 'Randomize the Gravatars.', 'give' ), |
|
394 | + 'name' => esc_html__('Randomize Gravatars', 'give'), |
|
395 | + 'desc' => esc_html__('Randomize the Gravatars.', 'give'), |
|
396 | 396 | 'id' => 'give_donors_gravatars_random_gravatars', |
397 | 397 | 'type' => 'checkbox', |
398 | 398 | ), |
399 | 399 | ); |
400 | 400 | |
401 | - return array_merge( $settings, $give_gravatar_settings ); |
|
401 | + return array_merge($settings, $give_gravatar_settings); |
|
402 | 402 | } |
403 | 403 | |
404 | 404 | } |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | // widget settings |
425 | 425 | $widget_ops = array( |
426 | 426 | 'classname' => 'give-donors-gravatars', |
427 | - 'description' => esc_html__( 'Displays gravatars of people who have donated using your your form. Will only show on the single form page.', 'give' ), |
|
427 | + 'description' => esc_html__('Displays gravatars of people who have donated using your your form. Will only show on the single form page.', 'give'), |
|
428 | 428 | ); |
429 | 429 | |
430 | 430 | // widget control settings |
@@ -437,7 +437,7 @@ discard block |
||
437 | 437 | // create the widget |
438 | 438 | parent::__construct( |
439 | 439 | 'give_donors_gravatars_widget', |
440 | - esc_html__( 'Give Donors Gravatars', 'give' ), |
|
440 | + esc_html__('Give Donors Gravatars', 'give'), |
|
441 | 441 | $widget_ops, |
442 | 442 | $control_ops |
443 | 443 | ); |
@@ -457,29 +457,29 @@ discard block |
||
457 | 457 | * |
458 | 458 | * @return void |
459 | 459 | */ |
460 | - public function widget( $args, $instance ) { |
|
460 | + public function widget($args, $instance) { |
|
461 | 461 | |
462 | 462 | //@TODO: Don't extract it!!! |
463 | - extract( $args ); |
|
463 | + extract($args); |
|
464 | 464 | |
465 | - if ( ! is_singular( 'give_forms' ) ) { |
|
465 | + if ( ! is_singular('give_forms')) { |
|
466 | 466 | return; |
467 | 467 | } |
468 | 468 | |
469 | 469 | // Variables from widget settings |
470 | - $title = apply_filters( 'widget_title', $instance['title'] ); |
|
470 | + $title = apply_filters('widget_title', $instance['title']); |
|
471 | 471 | |
472 | 472 | // Used by themes. Opens the widget |
473 | 473 | echo $before_widget; |
474 | 474 | |
475 | 475 | // Display the widget title |
476 | - if ( $title ) { |
|
477 | - echo $before_title . $title . $after_title; |
|
476 | + if ($title) { |
|
477 | + echo $before_title.$title.$after_title; |
|
478 | 478 | } |
479 | 479 | |
480 | 480 | $gravatars = new Give_Donors_Gravatars(); |
481 | 481 | |
482 | - echo $gravatars->gravatars( get_the_ID(), null ); // remove title |
|
482 | + echo $gravatars->gravatars(get_the_ID(), null); // remove title |
|
483 | 483 | |
484 | 484 | // Used by themes. Closes the widget |
485 | 485 | echo $after_widget; |
@@ -499,11 +499,11 @@ discard block |
||
499 | 499 | * |
500 | 500 | * @return array Updated settings to save. |
501 | 501 | */ |
502 | - public function update( $new_instance, $old_instance ) { |
|
502 | + public function update($new_instance, $old_instance) { |
|
503 | 503 | |
504 | 504 | $instance = $old_instance; |
505 | 505 | |
506 | - $instance['title'] = strip_tags( $new_instance['title'] ); |
|
506 | + $instance['title'] = strip_tags($new_instance['title']); |
|
507 | 507 | |
508 | 508 | return $instance; |
509 | 509 | |
@@ -521,19 +521,19 @@ discard block |
||
521 | 521 | * |
522 | 522 | * @return void |
523 | 523 | */ |
524 | - public function form( $instance ) { |
|
524 | + public function form($instance) { |
|
525 | 525 | |
526 | 526 | // Set up some default widget settings. |
527 | 527 | $defaults = array( |
528 | 528 | 'title' => '', |
529 | 529 | ); |
530 | 530 | |
531 | - $instance = wp_parse_args( (array) $instance, $defaults ); ?> |
|
531 | + $instance = wp_parse_args((array) $instance, $defaults); ?> |
|
532 | 532 | |
533 | 533 | <!-- Title --> |
534 | 534 | <p> |
535 | - <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'give' ) ?></label> |
|
536 | - <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $instance['title']; ?>" /> |
|
535 | + <label for="<?php echo $this->get_field_id('title'); ?>"><?php esc_html_e('Title:', 'give') ?></label> |
|
536 | + <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo $instance['title']; ?>" /> |
|
537 | 537 | </p> |
538 | 538 | |
539 | 539 | <?php |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * @return static |
52 | 52 | */ |
53 | 53 | public static function get_instance() { |
54 | - if ( null === static::$instance ) { |
|
54 | + if (null === static::$instance) { |
|
55 | 55 | self::$instance = new static(); |
56 | 56 | self::$instance->setup(); |
57 | 57 | } |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | * @since 1.8.13 |
67 | 67 | */ |
68 | 68 | private function setup() { |
69 | - add_filter( 'cron_schedules', array( self::$instance, '__add_schedules' ) ); |
|
70 | - add_action( 'wp', array( self::$instance, '__schedule_events' ) ); |
|
69 | + add_filter('cron_schedules', array(self::$instance, '__add_schedules')); |
|
70 | + add_action('wp', array(self::$instance, '__schedule_events')); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | * |
81 | 81 | * @return array An array of non-default cron schedules. |
82 | 82 | */ |
83 | - public function __add_schedules( $schedules = array() ) { |
|
83 | + public function __add_schedules($schedules = array()) { |
|
84 | 84 | // Adds once weekly to the existing schedules. |
85 | 85 | $schedules['weekly'] = array( |
86 | 86 | 'interval' => 604800, |
87 | - 'display' => __( 'Once Weekly', 'give' ), |
|
87 | + 'display' => __('Once Weekly', 'give'), |
|
88 | 88 | ); |
89 | 89 | |
90 | 90 | return $schedules; |
@@ -112,8 +112,8 @@ discard block |
||
112 | 112 | * @return void |
113 | 113 | */ |
114 | 114 | private function weekly_events() { |
115 | - if ( ! wp_next_scheduled( 'give_weekly_scheduled_events' ) ) { |
|
116 | - wp_schedule_event( current_time( 'timestamp' ), 'weekly', 'give_weekly_scheduled_events' ); |
|
115 | + if ( ! wp_next_scheduled('give_weekly_scheduled_events')) { |
|
116 | + wp_schedule_event(current_time('timestamp'), 'weekly', 'give_weekly_scheduled_events'); |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | |
@@ -126,8 +126,8 @@ discard block |
||
126 | 126 | * @return void |
127 | 127 | */ |
128 | 128 | private function daily_events() { |
129 | - if ( ! wp_next_scheduled( 'give_daily_scheduled_events' ) ) { |
|
130 | - wp_schedule_event( current_time( 'timestamp' ), 'daily', 'give_daily_scheduled_events' ); |
|
129 | + if ( ! wp_next_scheduled('give_daily_scheduled_events')) { |
|
130 | + wp_schedule_event(current_time('timestamp'), 'daily', 'give_daily_scheduled_events'); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
@@ -141,8 +141,8 @@ discard block |
||
141 | 141 | * |
142 | 142 | * @return string |
143 | 143 | */ |
144 | - public static function get_cron_action( $type = 'weekly' ) { |
|
145 | - switch ( $type ) { |
|
144 | + public static function get_cron_action($type = 'weekly') { |
|
145 | + switch ($type) { |
|
146 | 146 | case 'daily': |
147 | 147 | $cron_action = 'give_daily_scheduled_events'; |
148 | 148 | break; |
@@ -164,9 +164,9 @@ discard block |
||
164 | 164 | * @param $action |
165 | 165 | * @param string $type |
166 | 166 | */ |
167 | - private static function add_event( $action, $type = 'weekly' ) { |
|
168 | - $cron_event = self::get_cron_action( $type ); |
|
169 | - add_action( $cron_event, $action ); |
|
167 | + private static function add_event($action, $type = 'weekly') { |
|
168 | + $cron_event = self::get_cron_action($type); |
|
169 | + add_action($cron_event, $action); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | /** |
@@ -177,8 +177,8 @@ discard block |
||
177 | 177 | * |
178 | 178 | * @param $action |
179 | 179 | */ |
180 | - public static function add_weekly_event( $action ) { |
|
181 | - self::add_event( $action, 'weekly' ); |
|
180 | + public static function add_weekly_event($action) { |
|
181 | + self::add_event($action, 'weekly'); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -189,8 +189,8 @@ discard block |
||
189 | 189 | * |
190 | 190 | * @param $action |
191 | 191 | */ |
192 | - public static function add_daily_event( $action ) { |
|
193 | - self::add_event( $action, 'daily' ); |
|
192 | + public static function add_daily_event($action) { |
|
193 | + self::add_event($action, 'daily'); |
|
194 | 194 | } |
195 | 195 | } |
196 | 196 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly. |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
@@ -98,16 +98,16 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @return object |
100 | 100 | */ |
101 | - public function get( $row_id ) { |
|
101 | + public function get($row_id) { |
|
102 | 102 | /* @var WPDB $wpdb */ |
103 | 103 | global $wpdb; |
104 | 104 | |
105 | 105 | // Bailout. |
106 | - if ( empty( $row_id ) ) { |
|
106 | + if (empty($row_id)) { |
|
107 | 107 | return null; |
108 | 108 | } |
109 | 109 | |
110 | - return $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $this->table_name WHERE $this->primary_key = %s LIMIT 1;", $row_id ) ); |
|
110 | + return $wpdb->get_row($wpdb->prepare("SELECT * FROM $this->table_name WHERE $this->primary_key = %s LIMIT 1;", $row_id)); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
@@ -121,18 +121,18 @@ discard block |
||
121 | 121 | * |
122 | 122 | * @return object |
123 | 123 | */ |
124 | - public function get_by( $column, $row_id ) { |
|
124 | + public function get_by($column, $row_id) { |
|
125 | 125 | /* @var WPDB $wpdb */ |
126 | 126 | global $wpdb; |
127 | 127 | |
128 | 128 | // Bailout. |
129 | - if ( empty( $column ) || empty( $row_id ) ) { |
|
129 | + if (empty($column) || empty($row_id)) { |
|
130 | 130 | return null; |
131 | 131 | } |
132 | 132 | |
133 | - $column = esc_sql( $column ); |
|
133 | + $column = esc_sql($column); |
|
134 | 134 | |
135 | - return $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $this->table_name WHERE $column = %s LIMIT 1;", $row_id ) ); |
|
135 | + return $wpdb->get_row($wpdb->prepare("SELECT * FROM $this->table_name WHERE $column = %s LIMIT 1;", $row_id)); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -146,18 +146,18 @@ discard block |
||
146 | 146 | * |
147 | 147 | * @return string Column value. |
148 | 148 | */ |
149 | - public function get_column( $column, $row_id ) { |
|
149 | + public function get_column($column, $row_id) { |
|
150 | 150 | /* @var WPDB $wpdb */ |
151 | 151 | global $wpdb; |
152 | 152 | |
153 | 153 | // Bailout. |
154 | - if ( empty( $column ) || empty( $row_id ) ) { |
|
154 | + if (empty($column) || empty($row_id)) { |
|
155 | 155 | return null; |
156 | 156 | } |
157 | 157 | |
158 | - $column = esc_sql( $column ); |
|
158 | + $column = esc_sql($column); |
|
159 | 159 | |
160 | - return $wpdb->get_var( $wpdb->prepare( "SELECT $column FROM $this->table_name WHERE $this->primary_key = %s LIMIT 1;", $row_id ) ); |
|
160 | + return $wpdb->get_var($wpdb->prepare("SELECT $column FROM $this->table_name WHERE $this->primary_key = %s LIMIT 1;", $row_id)); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | /** |
@@ -172,19 +172,19 @@ discard block |
||
172 | 172 | * |
173 | 173 | * @return string |
174 | 174 | */ |
175 | - public function get_column_by( $column, $column_where, $column_value ) { |
|
175 | + public function get_column_by($column, $column_where, $column_value) { |
|
176 | 176 | /* @var WPDB $wpdb */ |
177 | 177 | global $wpdb; |
178 | 178 | |
179 | 179 | // Bailout. |
180 | - if ( empty( $column ) || empty( $column_where ) || empty( $column_value ) ) { |
|
180 | + if (empty($column) || empty($column_where) || empty($column_value)) { |
|
181 | 181 | return null; |
182 | 182 | } |
183 | 183 | |
184 | - $column_where = esc_sql( $column_where ); |
|
185 | - $column = esc_sql( $column ); |
|
184 | + $column_where = esc_sql($column_where); |
|
185 | + $column = esc_sql($column); |
|
186 | 186 | |
187 | - return $wpdb->get_var( $wpdb->prepare( "SELECT $column FROM $this->table_name WHERE $column_where = %s LIMIT 1;", $column_value ) ); |
|
187 | + return $wpdb->get_var($wpdb->prepare("SELECT $column FROM $this->table_name WHERE $column_where = %s LIMIT 1;", $column_value)); |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | /** |
@@ -198,12 +198,12 @@ discard block |
||
198 | 198 | * |
199 | 199 | * @return int |
200 | 200 | */ |
201 | - public function insert( $data, $type = '' ) { |
|
201 | + public function insert($data, $type = '') { |
|
202 | 202 | /* @var WPDB $wpdb */ |
203 | 203 | global $wpdb; |
204 | 204 | |
205 | 205 | // Set default values. |
206 | - $data = wp_parse_args( $data, $this->get_column_defaults() ); |
|
206 | + $data = wp_parse_args($data, $this->get_column_defaults()); |
|
207 | 207 | |
208 | 208 | /** |
209 | 209 | * Fires before inserting data to the database. |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | * |
213 | 213 | * @param array $data |
214 | 214 | */ |
215 | - do_action( "give_pre_insert_{$type}", $data ); |
|
215 | + do_action("give_pre_insert_{$type}", $data); |
|
216 | 216 | |
217 | 217 | // Initialise column format array |
218 | 218 | $column_formats = $this->get_columns(); |
@@ -221,13 +221,13 @@ discard block |
||
221 | 221 | // $data = array_change_key_case( $data ); |
222 | 222 | |
223 | 223 | // White list columns |
224 | - $data = array_intersect_key( $data, $column_formats ); |
|
224 | + $data = array_intersect_key($data, $column_formats); |
|
225 | 225 | |
226 | 226 | // Reorder $column_formats to match the order of columns given in $data |
227 | - $data_keys = array_keys( $data ); |
|
228 | - $column_formats = array_merge( array_flip( $data_keys ), $column_formats ); |
|
227 | + $data_keys = array_keys($data); |
|
228 | + $column_formats = array_merge(array_flip($data_keys), $column_formats); |
|
229 | 229 | |
230 | - $wpdb->insert( $this->table_name, $data, $column_formats ); |
|
230 | + $wpdb->insert($this->table_name, $data, $column_formats); |
|
231 | 231 | |
232 | 232 | /** |
233 | 233 | * Fires after inserting data to the database. |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * @param int $insert_id |
238 | 238 | * @param array $data |
239 | 239 | */ |
240 | - do_action( "give_post_insert_{$type}", $wpdb->insert_id, $data ); |
|
240 | + do_action("give_post_insert_{$type}", $wpdb->insert_id, $data); |
|
241 | 241 | |
242 | 242 | return $wpdb->insert_id; |
243 | 243 | } |
@@ -254,18 +254,18 @@ discard block |
||
254 | 254 | * |
255 | 255 | * @return bool |
256 | 256 | */ |
257 | - public function update( $row_id, $data = array(), $where = '' ) { |
|
257 | + public function update($row_id, $data = array(), $where = '') { |
|
258 | 258 | /* @var WPDB $wpdb */ |
259 | 259 | global $wpdb; |
260 | 260 | |
261 | 261 | // Row ID must be positive integer |
262 | - $row_id = absint( $row_id ); |
|
262 | + $row_id = absint($row_id); |
|
263 | 263 | |
264 | - if ( empty( $row_id ) ) { |
|
264 | + if (empty($row_id)) { |
|
265 | 265 | return false; |
266 | 266 | } |
267 | 267 | |
268 | - if ( empty( $where ) ) { |
|
268 | + if (empty($where)) { |
|
269 | 269 | $where = $this->primary_key; |
270 | 270 | } |
271 | 271 | |
@@ -273,16 +273,16 @@ discard block |
||
273 | 273 | $column_formats = $this->get_columns(); |
274 | 274 | |
275 | 275 | // Force fields to lower case |
276 | - $data = array_change_key_case( $data ); |
|
276 | + $data = array_change_key_case($data); |
|
277 | 277 | |
278 | 278 | // White list columns |
279 | - $data = array_intersect_key( $data, $column_formats ); |
|
279 | + $data = array_intersect_key($data, $column_formats); |
|
280 | 280 | |
281 | 281 | // Reorder $column_formats to match the order of columns given in $data |
282 | - $data_keys = array_keys( $data ); |
|
283 | - $column_formats = array_merge( array_flip( $data_keys ), $column_formats ); |
|
282 | + $data_keys = array_keys($data); |
|
283 | + $column_formats = array_merge(array_flip($data_keys), $column_formats); |
|
284 | 284 | |
285 | - if ( false === $wpdb->update( $this->table_name, $data, array( $where => $row_id ), $column_formats ) ) { |
|
285 | + if (false === $wpdb->update($this->table_name, $data, array($where => $row_id), $column_formats)) { |
|
286 | 286 | return false; |
287 | 287 | } |
288 | 288 | |
@@ -299,18 +299,18 @@ discard block |
||
299 | 299 | * |
300 | 300 | * @return bool |
301 | 301 | */ |
302 | - public function delete( $row_id = 0 ) { |
|
302 | + public function delete($row_id = 0) { |
|
303 | 303 | /* @var WPDB $wpdb */ |
304 | 304 | global $wpdb; |
305 | 305 | |
306 | 306 | // Row ID must be positive integer |
307 | - $row_id = absint( $row_id ); |
|
307 | + $row_id = absint($row_id); |
|
308 | 308 | |
309 | - if ( empty( $row_id ) ) { |
|
309 | + if (empty($row_id)) { |
|
310 | 310 | return false; |
311 | 311 | } |
312 | 312 | |
313 | - if ( false === $wpdb->query( $wpdb->prepare( "DELETE FROM $this->table_name WHERE $this->primary_key = %d", $row_id ) ) ) { |
|
313 | + if (false === $wpdb->query($wpdb->prepare("DELETE FROM $this->table_name WHERE $this->primary_key = %d", $row_id))) { |
|
314 | 314 | return false; |
315 | 315 | } |
316 | 316 | |
@@ -327,13 +327,13 @@ discard block |
||
327 | 327 | * |
328 | 328 | * @return bool If the table name exists. |
329 | 329 | */ |
330 | - public function table_exists( $table ) { |
|
330 | + public function table_exists($table) { |
|
331 | 331 | /* @var WPDB $wpdb */ |
332 | 332 | global $wpdb; |
333 | 333 | |
334 | - $table = sanitize_text_field( $table ); |
|
334 | + $table = sanitize_text_field($table); |
|
335 | 335 | |
336 | - return $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE '%s'", $table ) ) === $table; |
|
336 | + return $wpdb->get_var($wpdb->prepare("SHOW TABLES LIKE '%s'", $table)) === $table; |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | /** |
@@ -347,16 +347,16 @@ discard block |
||
347 | 347 | * |
348 | 348 | * @return bool |
349 | 349 | */ |
350 | - public function does_column_exist( $column_name ) { |
|
350 | + public function does_column_exist($column_name) { |
|
351 | 351 | |
352 | 352 | global $wpdb; |
353 | 353 | |
354 | - $column = $wpdb->get_results( $wpdb->prepare( |
|
354 | + $column = $wpdb->get_results($wpdb->prepare( |
|
355 | 355 | "SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = %s AND TABLE_NAME = %s AND COLUMN_NAME = %s ", |
356 | 356 | DB_NAME, $this->table_name, $column_name |
357 | - ) ); |
|
357 | + )); |
|
358 | 358 | |
359 | - if ( ! empty( $column ) ) { |
|
359 | + if ( ! empty($column)) { |
|
360 | 360 | return true; |
361 | 361 | } |
362 | 362 | |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | * @return bool Returns if the customers table was installed and upgrade routine run. |
373 | 373 | */ |
374 | 374 | public function installed() { |
375 | - return $this->table_exists( $this->table_name ); |
|
375 | + return $this->table_exists($this->table_name); |
|
376 | 376 | } |
377 | 377 | |
378 | 378 | /** |
@@ -382,8 +382,8 @@ discard block |
||
382 | 382 | * @access public |
383 | 383 | */ |
384 | 384 | public function register_table() { |
385 | - $current_version = get_option( $this->table_name . '_db_version' ); |
|
386 | - if ( ! $current_version || version_compare( $current_version, $this->version, '<' ) ) { |
|
385 | + $current_version = get_option($this->table_name.'_db_version'); |
|
386 | + if ( ! $current_version || version_compare($current_version, $this->version, '<')) { |
|
387 | 387 | $this->create_table(); |
388 | 388 | } |
389 | 389 | } |
@@ -408,23 +408,23 @@ discard block |
||
408 | 408 | * |
409 | 409 | * @return int|bool The normalized log ID or false if it's found to not be valid. |
410 | 410 | */ |
411 | - public function sanitize_id( $id ) { |
|
412 | - if ( ! is_numeric( $id ) ) { |
|
411 | + public function sanitize_id($id) { |
|
412 | + if ( ! is_numeric($id)) { |
|
413 | 413 | return false; |
414 | 414 | } |
415 | 415 | |
416 | 416 | $id = (int) $id; |
417 | 417 | |
418 | 418 | // We were given a non positive number. |
419 | - if ( absint( $id ) !== $id ) { |
|
419 | + if (absint($id) !== $id) { |
|
420 | 420 | return false; |
421 | 421 | } |
422 | 422 | |
423 | - if ( empty( $id ) ) { |
|
423 | + if (empty($id)) { |
|
424 | 424 | return false; |
425 | 425 | } |
426 | 426 | |
427 | - return absint( $id ); |
|
427 | + return absint($id); |
|
428 | 428 | |
429 | 429 | } |
430 | 430 | } |