@@ -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 | |
@@ -32,15 +32,15 @@ discard block |
||
| 32 | 32 | * |
| 33 | 33 | * @return object $payments Payments retrieved from the database |
| 34 | 34 | */ |
| 35 | -function give_get_payments( $args = array() ) { |
|
| 35 | +function give_get_payments($args = array()) { |
|
| 36 | 36 | |
| 37 | 37 | // Fallback to post objects to ensure backwards compatibility |
| 38 | - if ( ! isset( $args['output'] ) ) { |
|
| 38 | + if ( ! isset($args['output'])) { |
|
| 39 | 39 | $args['output'] = 'posts'; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | - $args = apply_filters( 'give_get_payments_args', $args ); |
|
| 43 | - $payments = new Give_Payments_Query( $args ); |
|
| 42 | + $args = apply_filters('give_get_payments_args', $args); |
|
| 43 | + $payments = new Give_Payments_Query($args); |
|
| 44 | 44 | |
| 45 | 45 | return $payments->get_payments(); |
| 46 | 46 | } |
@@ -55,48 +55,48 @@ discard block |
||
| 55 | 55 | * |
| 56 | 56 | * @return mixed |
| 57 | 57 | */ |
| 58 | -function give_get_payment_by( $field = '', $value = '' ) { |
|
| 58 | +function give_get_payment_by($field = '', $value = '') { |
|
| 59 | 59 | |
| 60 | - if ( empty( $field ) || empty( $value ) ) { |
|
| 60 | + if (empty($field) || empty($value)) { |
|
| 61 | 61 | return false; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - switch ( strtolower( $field ) ) { |
|
| 64 | + switch (strtolower($field)) { |
|
| 65 | 65 | |
| 66 | 66 | case 'id': |
| 67 | - $payment = new Give_Payment( $value ); |
|
| 67 | + $payment = new Give_Payment($value); |
|
| 68 | 68 | $id = $payment->ID; |
| 69 | 69 | |
| 70 | - if ( empty( $id ) ) { |
|
| 70 | + if (empty($id)) { |
|
| 71 | 71 | return false; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | break; |
| 75 | 75 | |
| 76 | 76 | case 'key': |
| 77 | - $payment = give_get_payments( array( |
|
| 77 | + $payment = give_get_payments(array( |
|
| 78 | 78 | 'meta_key' => '_give_payment_purchase_key', |
| 79 | 79 | 'meta_value' => $value, |
| 80 | 80 | 'posts_per_page' => 1, |
| 81 | 81 | 'fields' => 'ids', |
| 82 | - ) ); |
|
| 82 | + )); |
|
| 83 | 83 | |
| 84 | - if ( $payment ) { |
|
| 85 | - $payment = new Give_Payment( $payment[0] ); |
|
| 84 | + if ($payment) { |
|
| 85 | + $payment = new Give_Payment($payment[0]); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | break; |
| 89 | 89 | |
| 90 | 90 | case 'payment_number': |
| 91 | - $payment = give_get_payments( array( |
|
| 91 | + $payment = give_get_payments(array( |
|
| 92 | 92 | 'meta_key' => '_give_payment_number', |
| 93 | 93 | 'meta_value' => $value, |
| 94 | 94 | 'posts_per_page' => 1, |
| 95 | 95 | 'fields' => 'ids', |
| 96 | - ) ); |
|
| 96 | + )); |
|
| 97 | 97 | |
| 98 | - if ( $payment ) { |
|
| 99 | - $payment = new Give_Payment( $payment[0] ); |
|
| 98 | + if ($payment) { |
|
| 99 | + $payment = new Give_Payment($payment[0]); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | break; |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | return false; |
| 106 | 106 | } |
| 107 | 107 | |
| 108 | - if ( $payment ) { |
|
| 108 | + if ($payment) { |
|
| 109 | 109 | return $payment; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -121,23 +121,23 @@ discard block |
||
| 121 | 121 | * |
| 122 | 122 | * @return int|bool Payment ID if payment is inserted, false otherwise |
| 123 | 123 | */ |
| 124 | -function give_insert_payment( $payment_data = array() ) { |
|
| 124 | +function give_insert_payment($payment_data = array()) { |
|
| 125 | 125 | |
| 126 | - if ( empty( $payment_data ) ) { |
|
| 126 | + if (empty($payment_data)) { |
|
| 127 | 127 | return false; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | $payment = new Give_Payment(); |
| 131 | - $gateway = ! empty( $payment_data['gateway'] ) ? $payment_data['gateway'] : ''; |
|
| 132 | - $gateway = empty( $gateway ) && isset( $_POST['give-gateway'] ) ? $_POST['give-gateway'] : $gateway; |
|
| 133 | - $form_id = isset( $payment_data['give_form_id'] ) ? $payment_data['give_form_id'] : 0; |
|
| 134 | - $price_id = isset( $payment_data['give_price_id'] ) ? $payment_data['give_price_id'] : give_get_price_id( $payment_data['give_form_id'], $payment_data['price'] ); |
|
| 135 | - $form_title = isset( $payment_data['give_form_title'] ) ? $payment_data['give_form_title'] : get_the_title( $form_id ); |
|
| 131 | + $gateway = ! empty($payment_data['gateway']) ? $payment_data['gateway'] : ''; |
|
| 132 | + $gateway = empty($gateway) && isset($_POST['give-gateway']) ? $_POST['give-gateway'] : $gateway; |
|
| 133 | + $form_id = isset($payment_data['give_form_id']) ? $payment_data['give_form_id'] : 0; |
|
| 134 | + $price_id = isset($payment_data['give_price_id']) ? $payment_data['give_price_id'] : give_get_price_id($payment_data['give_form_id'], $payment_data['price']); |
|
| 135 | + $form_title = isset($payment_data['give_form_title']) ? $payment_data['give_form_title'] : get_the_title($form_id); |
|
| 136 | 136 | |
| 137 | 137 | //Set properties |
| 138 | 138 | $payment->total = $payment_data['price']; |
| 139 | - $payment->status = ! empty( $payment_data['status'] ) ? $payment_data['status'] : 'pending'; |
|
| 140 | - $payment->currency = ! empty( $payment_data['currency'] ) ? $payment_data['currency'] : give_get_currency(); |
|
| 139 | + $payment->status = ! empty($payment_data['status']) ? $payment_data['status'] : 'pending'; |
|
| 140 | + $payment->currency = ! empty($payment_data['currency']) ? $payment_data['currency'] : give_get_currency(); |
|
| 141 | 141 | $payment->user_info = $payment_data['user_info']; |
| 142 | 142 | $payment->gateway = $gateway; |
| 143 | 143 | $payment->form_title = $form_title; |
@@ -151,40 +151,40 @@ discard block |
||
| 151 | 151 | $payment->ip = give_get_ip(); |
| 152 | 152 | $payment->key = $payment_data['purchase_key']; |
| 153 | 153 | $payment->mode = give_is_test_mode() ? 'test' : 'live'; |
| 154 | - $payment->parent_payment = ! empty( $payment_data['parent'] ) ? absint( $payment_data['parent'] ) : ''; |
|
| 154 | + $payment->parent_payment = ! empty($payment_data['parent']) ? absint($payment_data['parent']) : ''; |
|
| 155 | 155 | |
| 156 | 156 | //Add the donation |
| 157 | 157 | $args = array( |
| 158 | 158 | 'price' => $payment->total, |
| 159 | 159 | 'price_id' => $payment->price_id, |
| 160 | - 'fees' => isset( $payment_data['fees'] ) ? $payment_data['fees'] : array() |
|
| 160 | + 'fees' => isset($payment_data['fees']) ? $payment_data['fees'] : array() |
|
| 161 | 161 | ); |
| 162 | 162 | |
| 163 | - $payment->add_donation( $payment->form_id, $args ); |
|
| 163 | + $payment->add_donation($payment->form_id, $args); |
|
| 164 | 164 | |
| 165 | 165 | //Set date if present |
| 166 | - if ( isset( $payment_data['post_date'] ) ) { |
|
| 166 | + if (isset($payment_data['post_date'])) { |
|
| 167 | 167 | $payment->date = $payment_data['post_date']; |
| 168 | 168 | } |
| 169 | 169 | |
| 170 | 170 | //Handle sequential payments |
| 171 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
| 171 | + if (give_get_option('enable_sequential')) { |
|
| 172 | 172 | $number = give_get_next_payment_number(); |
| 173 | - $payment->number = give_format_payment_number( $number ); |
|
| 174 | - update_option( 'give_last_payment_number', $number ); |
|
| 173 | + $payment->number = give_format_payment_number($number); |
|
| 174 | + update_option('give_last_payment_number', $number); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | // Clear the user's purchased cache |
| 178 | - delete_transient( 'give_user_' . $payment_data['user_info']['id'] . '_purchases' ); |
|
| 178 | + delete_transient('give_user_'.$payment_data['user_info']['id'].'_purchases'); |
|
| 179 | 179 | |
| 180 | 180 | //Save payment |
| 181 | 181 | $payment->save(); |
| 182 | 182 | |
| 183 | 183 | //Hook it |
| 184 | - do_action( 'give_insert_payment', $payment->ID, $payment_data ); |
|
| 184 | + do_action('give_insert_payment', $payment->ID, $payment_data); |
|
| 185 | 185 | |
| 186 | 186 | //Return payment ID upon success |
| 187 | - if ( ! empty( $payment->ID ) ) { |
|
| 187 | + if ( ! empty($payment->ID)) { |
|
| 188 | 188 | return $payment->ID; |
| 189 | 189 | } |
| 190 | 190 | |
@@ -203,9 +203,9 @@ discard block |
||
| 203 | 203 | * |
| 204 | 204 | * @return bool |
| 205 | 205 | */ |
| 206 | -function give_update_payment_status( $payment_id, $new_status = 'publish' ) { |
|
| 206 | +function give_update_payment_status($payment_id, $new_status = 'publish') { |
|
| 207 | 207 | |
| 208 | - $payment = new Give_Payment( $payment_id ); |
|
| 208 | + $payment = new Give_Payment($payment_id); |
|
| 209 | 209 | $payment->status = $new_status; |
| 210 | 210 | $updated = $payment->save(); |
| 211 | 211 | |
@@ -225,44 +225,44 @@ discard block |
||
| 225 | 225 | * |
| 226 | 226 | * @return void |
| 227 | 227 | */ |
| 228 | -function give_delete_purchase( $payment_id = 0, $update_customer = true ) { |
|
| 228 | +function give_delete_purchase($payment_id = 0, $update_customer = true) { |
|
| 229 | 229 | global $give_logs; |
| 230 | 230 | |
| 231 | - $payment = new Give_Payment( $payment_id ); |
|
| 231 | + $payment = new Give_Payment($payment_id); |
|
| 232 | 232 | |
| 233 | - give_undo_purchase( false, $payment_id ); |
|
| 233 | + give_undo_purchase(false, $payment_id); |
|
| 234 | 234 | |
| 235 | - $amount = give_get_payment_amount( $payment_id ); |
|
| 235 | + $amount = give_get_payment_amount($payment_id); |
|
| 236 | 236 | $status = $payment->post_status; |
| 237 | - $customer_id = give_get_payment_customer_id( $payment_id ); |
|
| 238 | - $customer = new Give_Customer( $customer_id ); |
|
| 237 | + $customer_id = give_get_payment_customer_id($payment_id); |
|
| 238 | + $customer = new Give_Customer($customer_id); |
|
| 239 | 239 | |
| 240 | - if ( $status == 'revoked' || $status == 'publish' ) { |
|
| 240 | + if ($status == 'revoked' || $status == 'publish') { |
|
| 241 | 241 | // Only decrease earnings if they haven't already been decreased (or were never increased for this payment) |
| 242 | - give_decrease_total_earnings( $amount ); |
|
| 242 | + give_decrease_total_earnings($amount); |
|
| 243 | 243 | // Clear the This Month earnings (this_monththis_month is NOT a typo) |
| 244 | - delete_transient( md5( 'give_earnings_this_monththis_month' ) ); |
|
| 244 | + delete_transient(md5('give_earnings_this_monththis_month')); |
|
| 245 | 245 | |
| 246 | - if ( $customer->id && $update_customer ) { |
|
| 246 | + if ($customer->id && $update_customer) { |
|
| 247 | 247 | |
| 248 | 248 | // Decrement the stats for the customer |
| 249 | 249 | $customer->decrease_purchase_count(); |
| 250 | - $customer->decrease_value( $amount ); |
|
| 250 | + $customer->decrease_value($amount); |
|
| 251 | 251 | |
| 252 | 252 | } |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - do_action( 'give_payment_delete', $payment_id ); |
|
| 255 | + do_action('give_payment_delete', $payment_id); |
|
| 256 | 256 | |
| 257 | - if ( $customer->id && $update_customer ) { |
|
| 257 | + if ($customer->id && $update_customer) { |
|
| 258 | 258 | |
| 259 | 259 | // Remove the payment ID from the customer |
| 260 | - $customer->remove_payment( $payment_id ); |
|
| 260 | + $customer->remove_payment($payment_id); |
|
| 261 | 261 | |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | 264 | // Remove the payment |
| 265 | - wp_delete_post( $payment_id, true ); |
|
| 265 | + wp_delete_post($payment_id, true); |
|
| 266 | 266 | |
| 267 | 267 | // Remove related sale log entries |
| 268 | 268 | $give_logs->delete_logs( |
@@ -276,7 +276,7 @@ discard block |
||
| 276 | 276 | ) |
| 277 | 277 | ); |
| 278 | 278 | |
| 279 | - do_action( 'give_payment_deleted', $payment_id ); |
|
| 279 | + do_action('give_payment_deleted', $payment_id); |
|
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | /** |
@@ -289,26 +289,26 @@ discard block |
||
| 289 | 289 | * |
| 290 | 290 | * @return void |
| 291 | 291 | */ |
| 292 | -function give_undo_purchase( $form_id = false, $payment_id ) { |
|
| 292 | +function give_undo_purchase($form_id = false, $payment_id) { |
|
| 293 | 293 | |
| 294 | - if ( ! empty( $form_id ) ) { |
|
| 294 | + if ( ! empty($form_id)) { |
|
| 295 | 295 | $form_id = false; |
| 296 | - _give_deprected_argument( 'form_id', 'give_undo_purchase', '1.5' ); |
|
| 296 | + _give_deprected_argument('form_id', 'give_undo_purchase', '1.5'); |
|
| 297 | 297 | } |
| 298 | 298 | |
| 299 | - $payment = new Give_Payment( $payment_id ); |
|
| 299 | + $payment = new Give_Payment($payment_id); |
|
| 300 | 300 | |
| 301 | 301 | |
| 302 | - $maybe_decrease_earnings = apply_filters( 'give_decrease_earnings_on_undo', true, $payment, $payment->form_id ); |
|
| 303 | - if ( true === $maybe_decrease_earnings ) { |
|
| 302 | + $maybe_decrease_earnings = apply_filters('give_decrease_earnings_on_undo', true, $payment, $payment->form_id); |
|
| 303 | + if (true === $maybe_decrease_earnings) { |
|
| 304 | 304 | // decrease earnings |
| 305 | - give_decrease_earnings( $payment->form_id, $payment->total ); |
|
| 305 | + give_decrease_earnings($payment->form_id, $payment->total); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | - $maybe_decrease_sales = apply_filters( 'give_decrease_sales_on_undo', true, $payment, $payment->form_id ); |
|
| 309 | - if ( true === $maybe_decrease_sales ) { |
|
| 308 | + $maybe_decrease_sales = apply_filters('give_decrease_sales_on_undo', true, $payment, $payment->form_id); |
|
| 309 | + if (true === $maybe_decrease_sales) { |
|
| 310 | 310 | // decrease purchase count |
| 311 | - give_decrease_purchase_count( $payment->form_id ); |
|
| 311 | + give_decrease_purchase_count($payment->form_id); |
|
| 312 | 312 | } |
| 313 | 313 | |
| 314 | 314 | } |
@@ -325,7 +325,7 @@ discard block |
||
| 325 | 325 | * |
| 326 | 326 | * @return array $count Number of payments sorted by payment status |
| 327 | 327 | */ |
| 328 | -function give_count_payments( $args = array() ) { |
|
| 328 | +function give_count_payments($args = array()) { |
|
| 329 | 329 | |
| 330 | 330 | global $wpdb; |
| 331 | 331 | |
@@ -337,18 +337,18 @@ discard block |
||
| 337 | 337 | 'form_id' => null, |
| 338 | 338 | ); |
| 339 | 339 | |
| 340 | - $args = wp_parse_args( $args, $defaults ); |
|
| 340 | + $args = wp_parse_args($args, $defaults); |
|
| 341 | 341 | |
| 342 | 342 | $select = "SELECT p.post_status,count( * ) AS num_posts"; |
| 343 | 343 | $join = ''; |
| 344 | 344 | $where = "WHERE p.post_type = 'give_payment'"; |
| 345 | 345 | |
| 346 | 346 | // Count payments for a specific user |
| 347 | - if ( ! empty( $args['user'] ) ) { |
|
| 347 | + if ( ! empty($args['user'])) { |
|
| 348 | 348 | |
| 349 | - if ( is_email( $args['user'] ) ) { |
|
| 349 | + if (is_email($args['user'])) { |
|
| 350 | 350 | $field = 'email'; |
| 351 | - } elseif ( is_numeric( $args['user'] ) ) { |
|
| 351 | + } elseif (is_numeric($args['user'])) { |
|
| 352 | 352 | $field = 'id'; |
| 353 | 353 | } else { |
| 354 | 354 | $field = ''; |
@@ -356,108 +356,108 @@ discard block |
||
| 356 | 356 | |
| 357 | 357 | $join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)"; |
| 358 | 358 | |
| 359 | - if ( ! empty( $field ) ) { |
|
| 359 | + if ( ! empty($field)) { |
|
| 360 | 360 | $where .= " |
| 361 | 361 | AND m.meta_key = '_give_payment_user_{$field}' |
| 362 | 362 | AND m.meta_value = '{$args['user']}'"; |
| 363 | 363 | } |
| 364 | 364 | |
| 365 | 365 | // Count payments for a search |
| 366 | - } elseif ( ! empty( $args['s'] ) ) { |
|
| 366 | + } elseif ( ! empty($args['s'])) { |
|
| 367 | 367 | |
| 368 | - if ( is_email( $args['s'] ) || strlen( $args['s'] ) == 32 ) { |
|
| 368 | + if (is_email($args['s']) || strlen($args['s']) == 32) { |
|
| 369 | 369 | |
| 370 | - if ( is_email( $args['s'] ) ) { |
|
| 370 | + if (is_email($args['s'])) { |
|
| 371 | 371 | $field = '_give_payment_user_email'; |
| 372 | 372 | } else { |
| 373 | 373 | $field = '_give_payment_purchase_key'; |
| 374 | 374 | } |
| 375 | 375 | |
| 376 | 376 | $join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)"; |
| 377 | - $where .= $wpdb->prepare( " |
|
| 377 | + $where .= $wpdb->prepare(" |
|
| 378 | 378 | AND m.meta_key = %s |
| 379 | 379 | AND m.meta_value = %s", |
| 380 | 380 | $field, |
| 381 | 381 | $args['s'] |
| 382 | 382 | ); |
| 383 | 383 | |
| 384 | - } elseif ( '#' == substr( $args['s'], 0, 1 ) ) { |
|
| 384 | + } elseif ('#' == substr($args['s'], 0, 1)) { |
|
| 385 | 385 | |
| 386 | - $search = str_replace( '#:', '', $args['s'] ); |
|
| 387 | - $search = str_replace( '#', '', $search ); |
|
| 386 | + $search = str_replace('#:', '', $args['s']); |
|
| 387 | + $search = str_replace('#', '', $search); |
|
| 388 | 388 | |
| 389 | 389 | $select = "SELECT p2.post_status,count( * ) AS num_posts "; |
| 390 | 390 | $join = "LEFT JOIN $wpdb->postmeta m ON m.meta_key = '_give_log_payment_id' AND m.post_id = p.ID "; |
| 391 | 391 | $join .= "INNER JOIN $wpdb->posts p2 ON m.meta_value = p2.ID "; |
| 392 | 392 | $where = "WHERE p.post_type = 'give_log' "; |
| 393 | - $where .= $wpdb->prepare( "AND p.post_parent = %d} ", $search ); |
|
| 393 | + $where .= $wpdb->prepare("AND p.post_parent = %d} ", $search); |
|
| 394 | 394 | |
| 395 | - } elseif ( is_numeric( $args['s'] ) ) { |
|
| 395 | + } elseif (is_numeric($args['s'])) { |
|
| 396 | 396 | |
| 397 | 397 | $join = "LEFT JOIN $wpdb->postmeta m ON (p.ID = m.post_id)"; |
| 398 | - $where .= $wpdb->prepare( " |
|
| 398 | + $where .= $wpdb->prepare(" |
|
| 399 | 399 | AND m.meta_key = '_give_payment_user_id' |
| 400 | 400 | AND m.meta_value = %d", |
| 401 | 401 | $args['s'] |
| 402 | 402 | ); |
| 403 | 403 | |
| 404 | 404 | } else { |
| 405 | - $search = $wpdb->esc_like( $args['s'] ); |
|
| 406 | - $search = '%' . $search . '%'; |
|
| 405 | + $search = $wpdb->esc_like($args['s']); |
|
| 406 | + $search = '%'.$search.'%'; |
|
| 407 | 407 | |
| 408 | - $where .= $wpdb->prepare( "AND ((p.post_title LIKE %s) OR (p.post_content LIKE %s))", $search, $search ); |
|
| 408 | + $where .= $wpdb->prepare("AND ((p.post_title LIKE %s) OR (p.post_content LIKE %s))", $search, $search); |
|
| 409 | 409 | } |
| 410 | 410 | |
| 411 | 411 | } |
| 412 | 412 | |
| 413 | - if ( ! empty( $args['form_id'] ) && is_numeric( $args['form_id'] ) ) { |
|
| 413 | + if ( ! empty($args['form_id']) && is_numeric($args['form_id'])) { |
|
| 414 | 414 | |
| 415 | - $where .= $wpdb->prepare( " AND p.post_parent = %d", $args['form_id'] ); |
|
| 415 | + $where .= $wpdb->prepare(" AND p.post_parent = %d", $args['form_id']); |
|
| 416 | 416 | |
| 417 | 417 | } |
| 418 | 418 | // Limit payments count by date |
| 419 | - if ( ! empty( $args['start-date'] ) && false !== strpos( $args['start-date'], '/' ) ) { |
|
| 419 | + if ( ! empty($args['start-date']) && false !== strpos($args['start-date'], '/')) { |
|
| 420 | 420 | |
| 421 | - $date_parts = explode( '/', $args['start-date'] ); |
|
| 422 | - $month = ! empty( $date_parts[0] ) && is_numeric( $date_parts[0] ) ? $date_parts[0] : 0; |
|
| 423 | - $day = ! empty( $date_parts[1] ) && is_numeric( $date_parts[1] ) ? $date_parts[1] : 0; |
|
| 424 | - $year = ! empty( $date_parts[2] ) && is_numeric( $date_parts[2] ) ? $date_parts[2] : 0; |
|
| 421 | + $date_parts = explode('/', $args['start-date']); |
|
| 422 | + $month = ! empty($date_parts[0]) && is_numeric($date_parts[0]) ? $date_parts[0] : 0; |
|
| 423 | + $day = ! empty($date_parts[1]) && is_numeric($date_parts[1]) ? $date_parts[1] : 0; |
|
| 424 | + $year = ! empty($date_parts[2]) && is_numeric($date_parts[2]) ? $date_parts[2] : 0; |
|
| 425 | 425 | |
| 426 | - $is_date = checkdate( $month, $day, $year ); |
|
| 427 | - if ( false !== $is_date ) { |
|
| 426 | + $is_date = checkdate($month, $day, $year); |
|
| 427 | + if (false !== $is_date) { |
|
| 428 | 428 | |
| 429 | - $date = new DateTime( $args['start-date'] ); |
|
| 430 | - $where .= $wpdb->prepare( " AND p.post_date >= '%s'", $date->format( 'Y-m-d' ) ); |
|
| 429 | + $date = new DateTime($args['start-date']); |
|
| 430 | + $where .= $wpdb->prepare(" AND p.post_date >= '%s'", $date->format('Y-m-d')); |
|
| 431 | 431 | |
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | // Fixes an issue with the payments list table counts when no end date is specified (partiy with stats class) |
| 435 | - if ( empty( $args['end-date'] ) ) { |
|
| 435 | + if (empty($args['end-date'])) { |
|
| 436 | 436 | $args['end-date'] = $args['start-date']; |
| 437 | 437 | } |
| 438 | 438 | |
| 439 | 439 | } |
| 440 | 440 | |
| 441 | - if ( ! empty ( $args['end-date'] ) && false !== strpos( $args['end-date'], '/' ) ) { |
|
| 441 | + if ( ! empty ($args['end-date']) && false !== strpos($args['end-date'], '/')) { |
|
| 442 | 442 | |
| 443 | - $date_parts = explode( '/', $args['end-date'] ); |
|
| 443 | + $date_parts = explode('/', $args['end-date']); |
|
| 444 | 444 | |
| 445 | - $month = ! empty( $date_parts[0] ) ? $date_parts[0] : 0; |
|
| 446 | - $day = ! empty( $date_parts[1] ) ? $date_parts[1] : 0; |
|
| 447 | - $year = ! empty( $date_parts[2] ) ? $date_parts[2] : 0; |
|
| 445 | + $month = ! empty($date_parts[0]) ? $date_parts[0] : 0; |
|
| 446 | + $day = ! empty($date_parts[1]) ? $date_parts[1] : 0; |
|
| 447 | + $year = ! empty($date_parts[2]) ? $date_parts[2] : 0; |
|
| 448 | 448 | |
| 449 | - $is_date = checkdate( $month, $day, $year ); |
|
| 450 | - if ( false !== $is_date ) { |
|
| 449 | + $is_date = checkdate($month, $day, $year); |
|
| 450 | + if (false !== $is_date) { |
|
| 451 | 451 | |
| 452 | - $date = new DateTime( $args['end-date'] ); |
|
| 453 | - $where .= $wpdb->prepare( " AND p.post_date <= '%s'", $date->format( 'Y-m-d' ) ); |
|
| 452 | + $date = new DateTime($args['end-date']); |
|
| 453 | + $where .= $wpdb->prepare(" AND p.post_date <= '%s'", $date->format('Y-m-d')); |
|
| 454 | 454 | |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | } |
| 458 | 458 | |
| 459 | - $where = apply_filters( 'give_count_payments_where', $where ); |
|
| 460 | - $join = apply_filters( 'give_count_payments_join', $join ); |
|
| 459 | + $where = apply_filters('give_count_payments_where', $where); |
|
| 460 | + $join = apply_filters('give_count_payments_join', $join); |
|
| 461 | 461 | |
| 462 | 462 | $query = "$select |
| 463 | 463 | FROM $wpdb->posts p |
@@ -466,36 +466,36 @@ discard block |
||
| 466 | 466 | GROUP BY p.post_status |
| 467 | 467 | "; |
| 468 | 468 | |
| 469 | - $cache_key = md5( $query ); |
|
| 469 | + $cache_key = md5($query); |
|
| 470 | 470 | |
| 471 | - $count = wp_cache_get( $cache_key, 'counts' ); |
|
| 472 | - if ( false !== $count ) { |
|
| 471 | + $count = wp_cache_get($cache_key, 'counts'); |
|
| 472 | + if (false !== $count) { |
|
| 473 | 473 | return $count; |
| 474 | 474 | } |
| 475 | 475 | |
| 476 | - $count = $wpdb->get_results( $query, ARRAY_A ); |
|
| 476 | + $count = $wpdb->get_results($query, ARRAY_A); |
|
| 477 | 477 | |
| 478 | 478 | $stats = array(); |
| 479 | 479 | $statuses = get_post_stati(); |
| 480 | - if ( isset( $statuses['private'] ) && empty( $args['s'] ) ) { |
|
| 481 | - unset( $statuses['private'] ); |
|
| 480 | + if (isset($statuses['private']) && empty($args['s'])) { |
|
| 481 | + unset($statuses['private']); |
|
| 482 | 482 | } |
| 483 | 483 | |
| 484 | - foreach ( $statuses as $state ) { |
|
| 485 | - $stats[ $state ] = 0; |
|
| 484 | + foreach ($statuses as $state) { |
|
| 485 | + $stats[$state] = 0; |
|
| 486 | 486 | } |
| 487 | 487 | |
| 488 | - foreach ( (array) $count as $row ) { |
|
| 488 | + foreach ((array) $count as $row) { |
|
| 489 | 489 | |
| 490 | - if ( 'private' == $row['post_status'] && empty( $args['s'] ) ) { |
|
| 490 | + if ('private' == $row['post_status'] && empty($args['s'])) { |
|
| 491 | 491 | continue; |
| 492 | 492 | } |
| 493 | 493 | |
| 494 | - $stats[ $row['post_status'] ] = $row['num_posts']; |
|
| 494 | + $stats[$row['post_status']] = $row['num_posts']; |
|
| 495 | 495 | } |
| 496 | 496 | |
| 497 | 497 | $stats = (object) $stats; |
| 498 | - wp_cache_set( $cache_key, $stats, 'counts' ); |
|
| 498 | + wp_cache_set($cache_key, $stats, 'counts'); |
|
| 499 | 499 | |
| 500 | 500 | return $stats; |
| 501 | 501 | } |
@@ -510,12 +510,12 @@ discard block |
||
| 510 | 510 | * |
| 511 | 511 | * @return bool true if payment exists, false otherwise |
| 512 | 512 | */ |
| 513 | -function give_check_for_existing_payment( $payment_id ) { |
|
| 513 | +function give_check_for_existing_payment($payment_id) { |
|
| 514 | 514 | $exists = false; |
| 515 | - $payment = new Give_Payment( $payment_id ); |
|
| 515 | + $payment = new Give_Payment($payment_id); |
|
| 516 | 516 | |
| 517 | 517 | |
| 518 | - if ( $payment_id === $payment->ID && 'publish' === $payment->status ) { |
|
| 518 | + if ($payment_id === $payment->ID && 'publish' === $payment->status) { |
|
| 519 | 519 | $exists = true; |
| 520 | 520 | } |
| 521 | 521 | |
@@ -532,29 +532,29 @@ discard block |
||
| 532 | 532 | * |
| 533 | 533 | * @return bool|mixed if payment status exists, false otherwise |
| 534 | 534 | */ |
| 535 | -function give_get_payment_status( $payment, $return_label = false ) { |
|
| 535 | +function give_get_payment_status($payment, $return_label = false) { |
|
| 536 | 536 | |
| 537 | - if ( ! is_object( $payment ) || ! isset( $payment->post_status ) ) { |
|
| 537 | + if ( ! is_object($payment) || ! isset($payment->post_status)) { |
|
| 538 | 538 | return false; |
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | $statuses = give_get_payment_statuses(); |
| 542 | 542 | |
| 543 | - if ( ! is_array( $statuses ) || empty( $statuses ) ) { |
|
| 543 | + if ( ! is_array($statuses) || empty($statuses)) { |
|
| 544 | 544 | return false; |
| 545 | 545 | } |
| 546 | 546 | |
| 547 | - $payment = new Give_Payment( $payment->ID ); |
|
| 547 | + $payment = new Give_Payment($payment->ID); |
|
| 548 | 548 | |
| 549 | - if ( array_key_exists( $payment->status, $statuses ) ) { |
|
| 550 | - if ( true === $return_label ) { |
|
| 551 | - return $statuses[ $payment->status ]; |
|
| 549 | + if (array_key_exists($payment->status, $statuses)) { |
|
| 550 | + if (true === $return_label) { |
|
| 551 | + return $statuses[$payment->status]; |
|
| 552 | 552 | } else { |
| 553 | 553 | // Account that our 'publish' status is labeled 'Complete' |
| 554 | 554 | $post_status = 'publish' == $payment->status ? 'Complete' : $payment->post_status; |
| 555 | 555 | |
| 556 | 556 | // Make sure we're matching cases, since they matter |
| 557 | - return array_search( strtolower( $post_status ), array_map( 'strtolower', $statuses ) ); |
|
| 557 | + return array_search(strtolower($post_status), array_map('strtolower', $statuses)); |
|
| 558 | 558 | } |
| 559 | 559 | } |
| 560 | 560 | |
@@ -569,17 +569,17 @@ discard block |
||
| 569 | 569 | */ |
| 570 | 570 | function give_get_payment_statuses() { |
| 571 | 571 | $payment_statuses = array( |
| 572 | - 'pending' => __( 'Pending', 'give' ), |
|
| 573 | - 'publish' => __( 'Complete', 'give' ), |
|
| 574 | - 'refunded' => __( 'Refunded', 'give' ), |
|
| 575 | - 'failed' => __( 'Failed', 'give' ), |
|
| 576 | - 'cancelled' => __( 'Cancelled', 'give' ), |
|
| 577 | - 'abandoned' => __( 'Abandoned', 'give' ), |
|
| 578 | - 'preapproval' => __( 'Pre-Approved', 'give' ), |
|
| 579 | - 'revoked' => __( 'Revoked', 'give' ) |
|
| 572 | + 'pending' => __('Pending', 'give'), |
|
| 573 | + 'publish' => __('Complete', 'give'), |
|
| 574 | + 'refunded' => __('Refunded', 'give'), |
|
| 575 | + 'failed' => __('Failed', 'give'), |
|
| 576 | + 'cancelled' => __('Cancelled', 'give'), |
|
| 577 | + 'abandoned' => __('Abandoned', 'give'), |
|
| 578 | + 'preapproval' => __('Pre-Approved', 'give'), |
|
| 579 | + 'revoked' => __('Revoked', 'give') |
|
| 580 | 580 | ); |
| 581 | 581 | |
| 582 | - return apply_filters( 'give_payment_statuses', $payment_statuses ); |
|
| 582 | + return apply_filters('give_payment_statuses', $payment_statuses); |
|
| 583 | 583 | } |
| 584 | 584 | |
| 585 | 585 | /** |
@@ -591,10 +591,10 @@ discard block |
||
| 591 | 591 | * @return array $payment_status All the available payment statuses |
| 592 | 592 | */ |
| 593 | 593 | function give_get_payment_status_keys() { |
| 594 | - $statuses = array_keys( give_get_payment_statuses() ); |
|
| 595 | - asort( $statuses ); |
|
| 594 | + $statuses = array_keys(give_get_payment_statuses()); |
|
| 595 | + asort($statuses); |
|
| 596 | 596 | |
| 597 | - return array_values( $statuses ); |
|
| 597 | + return array_values($statuses); |
|
| 598 | 598 | } |
| 599 | 599 | |
| 600 | 600 | /** |
@@ -609,7 +609,7 @@ discard block |
||
| 609 | 609 | * |
| 610 | 610 | * @return int $earnings Earnings |
| 611 | 611 | */ |
| 612 | -function give_get_earnings_by_date( $day = null, $month_num, $year = null, $hour = null ) { |
|
| 612 | +function give_get_earnings_by_date($day = null, $month_num, $year = null, $hour = null) { |
|
| 613 | 613 | |
| 614 | 614 | // This is getting deprecated soon. Use Give_Payment_Stats with the get_earnings() method instead |
| 615 | 615 | |
@@ -620,41 +620,41 @@ discard block |
||
| 620 | 620 | 'nopaging' => true, |
| 621 | 621 | 'year' => $year, |
| 622 | 622 | 'monthnum' => $month_num, |
| 623 | - 'post_status' => array( 'publish', 'revoked' ), |
|
| 623 | + 'post_status' => array('publish', 'revoked'), |
|
| 624 | 624 | 'fields' => 'ids', |
| 625 | 625 | 'update_post_term_cache' => false |
| 626 | 626 | ); |
| 627 | - if ( ! empty( $day ) ) { |
|
| 627 | + if ( ! empty($day)) { |
|
| 628 | 628 | $args['day'] = $day; |
| 629 | 629 | } |
| 630 | 630 | |
| 631 | - if ( ! empty( $hour ) ) { |
|
| 631 | + if ( ! empty($hour)) { |
|
| 632 | 632 | $args['hour'] = $hour; |
| 633 | 633 | } |
| 634 | 634 | |
| 635 | - $args = apply_filters( 'give_get_earnings_by_date_args', $args ); |
|
| 636 | - $key = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 ); |
|
| 635 | + $args = apply_filters('give_get_earnings_by_date_args', $args); |
|
| 636 | + $key = 'give_stats_'.substr(md5(serialize($args)), 0, 15); |
|
| 637 | 637 | |
| 638 | - if ( ! empty( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], 'give-refresh-reports' ) ) { |
|
| 638 | + if ( ! empty($_GET['_wpnonce']) && wp_verify_nonce($_GET['_wpnonce'], 'give-refresh-reports')) { |
|
| 639 | 639 | $earnings = false; |
| 640 | 640 | } else { |
| 641 | - $earnings = get_transient( $key ); |
|
| 641 | + $earnings = get_transient($key); |
|
| 642 | 642 | } |
| 643 | 643 | |
| 644 | - if ( false === $earnings ) { |
|
| 645 | - $sales = get_posts( $args ); |
|
| 644 | + if (false === $earnings) { |
|
| 645 | + $sales = get_posts($args); |
|
| 646 | 646 | $earnings = 0; |
| 647 | - if ( $sales ) { |
|
| 648 | - $sales = implode( ',', $sales ); |
|
| 647 | + if ($sales) { |
|
| 648 | + $sales = implode(',', $sales); |
|
| 649 | 649 | |
| 650 | - $earnings = $wpdb->get_var( "SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN ({$sales})" ); |
|
| 650 | + $earnings = $wpdb->get_var("SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN ({$sales})"); |
|
| 651 | 651 | |
| 652 | 652 | } |
| 653 | 653 | // Cache the results for one hour |
| 654 | - set_transient( $key, $earnings, HOUR_IN_SECONDS ); |
|
| 654 | + set_transient($key, $earnings, HOUR_IN_SECONDS); |
|
| 655 | 655 | } |
| 656 | 656 | |
| 657 | - return round( $earnings, 2 ); |
|
| 657 | + return round($earnings, 2); |
|
| 658 | 658 | } |
| 659 | 659 | |
| 660 | 660 | /** |
@@ -669,7 +669,7 @@ discard block |
||
| 669 | 669 | * |
| 670 | 670 | * @return int $count Sales |
| 671 | 671 | */ |
| 672 | -function give_get_sales_by_date( $day = null, $month_num = null, $year = null, $hour = null ) { |
|
| 672 | +function give_get_sales_by_date($day = null, $month_num = null, $year = null, $hour = null) { |
|
| 673 | 673 | |
| 674 | 674 | // This is getting deprecated soon. Use Give_Payment_Stats with the get_sales() method instead |
| 675 | 675 | $args = array( |
@@ -677,14 +677,14 @@ discard block |
||
| 677 | 677 | 'nopaging' => true, |
| 678 | 678 | 'year' => $year, |
| 679 | 679 | 'fields' => 'ids', |
| 680 | - 'post_status' => array( 'publish', 'revoked' ), |
|
| 680 | + 'post_status' => array('publish', 'revoked'), |
|
| 681 | 681 | 'update_post_meta_cache' => false, |
| 682 | 682 | 'update_post_term_cache' => false |
| 683 | 683 | ); |
| 684 | 684 | |
| 685 | - $show_free = apply_filters( 'give_sales_by_date_show_free', true, $args ); |
|
| 685 | + $show_free = apply_filters('give_sales_by_date_show_free', true, $args); |
|
| 686 | 686 | |
| 687 | - if ( false === $show_free ) { |
|
| 687 | + if (false === $show_free) { |
|
| 688 | 688 | $args['meta_query'] = array( |
| 689 | 689 | array( |
| 690 | 690 | 'key' => '_give_payment_total', |
@@ -695,33 +695,33 @@ discard block |
||
| 695 | 695 | ); |
| 696 | 696 | } |
| 697 | 697 | |
| 698 | - if ( ! empty( $month_num ) ) { |
|
| 698 | + if ( ! empty($month_num)) { |
|
| 699 | 699 | $args['monthnum'] = $month_num; |
| 700 | 700 | } |
| 701 | 701 | |
| 702 | - if ( ! empty( $day ) ) { |
|
| 702 | + if ( ! empty($day)) { |
|
| 703 | 703 | $args['day'] = $day; |
| 704 | 704 | } |
| 705 | 705 | |
| 706 | - if ( ! empty( $hour ) ) { |
|
| 706 | + if ( ! empty($hour)) { |
|
| 707 | 707 | $args['hour'] = $hour; |
| 708 | 708 | } |
| 709 | 709 | |
| 710 | - $args = apply_filters( 'give_get_sales_by_date_args', $args ); |
|
| 710 | + $args = apply_filters('give_get_sales_by_date_args', $args); |
|
| 711 | 711 | |
| 712 | - $key = 'give_stats_' . substr( md5( serialize( $args ) ), 0, 15 ); |
|
| 712 | + $key = 'give_stats_'.substr(md5(serialize($args)), 0, 15); |
|
| 713 | 713 | |
| 714 | - if ( ! empty( $_GET['_wpnonce'] ) && wp_verify_nonce( $_GET['_wpnonce'], 'give-refresh-reports' ) ) { |
|
| 714 | + if ( ! empty($_GET['_wpnonce']) && wp_verify_nonce($_GET['_wpnonce'], 'give-refresh-reports')) { |
|
| 715 | 715 | $count = false; |
| 716 | 716 | } else { |
| 717 | - $count = get_transient( $key ); |
|
| 717 | + $count = get_transient($key); |
|
| 718 | 718 | } |
| 719 | 719 | |
| 720 | - if ( false === $count ) { |
|
| 721 | - $sales = new WP_Query( $args ); |
|
| 720 | + if (false === $count) { |
|
| 721 | + $sales = new WP_Query($args); |
|
| 722 | 722 | $count = (int) $sales->post_count; |
| 723 | 723 | // Cache the results for one hour |
| 724 | - set_transient( $key, $count, HOUR_IN_SECONDS ); |
|
| 724 | + set_transient($key, $count, HOUR_IN_SECONDS); |
|
| 725 | 725 | } |
| 726 | 726 | |
| 727 | 727 | return $count; |
@@ -736,20 +736,20 @@ discard block |
||
| 736 | 736 | * |
| 737 | 737 | * @return bool true if complete, false otherwise |
| 738 | 738 | */ |
| 739 | -function give_is_payment_complete( $payment_id ) { |
|
| 740 | - $payment = new Give_Payment( $payment_id ); |
|
| 739 | +function give_is_payment_complete($payment_id) { |
|
| 740 | + $payment = new Give_Payment($payment_id); |
|
| 741 | 741 | |
| 742 | 742 | $ret = false; |
| 743 | 743 | |
| 744 | - if ( $payment->ID > 0 ) { |
|
| 744 | + if ($payment->ID > 0) { |
|
| 745 | 745 | |
| 746 | - if ( (int) $payment_id === (int) $payment->ID && 'publish' == $payment->status ) { |
|
| 746 | + if ((int) $payment_id === (int) $payment->ID && 'publish' == $payment->status) { |
|
| 747 | 747 | $ret = true; |
| 748 | 748 | } |
| 749 | 749 | |
| 750 | 750 | } |
| 751 | 751 | |
| 752 | - return apply_filters( 'give_is_payment_complete', $ret, $payment_id, $payment->post_status ); |
|
| 752 | + return apply_filters('give_is_payment_complete', $ret, $payment_id, $payment->post_status); |
|
| 753 | 753 | } |
| 754 | 754 | |
| 755 | 755 | /** |
@@ -773,29 +773,29 @@ discard block |
||
| 773 | 773 | */ |
| 774 | 774 | function give_get_total_earnings() { |
| 775 | 775 | |
| 776 | - $total = get_option( 'give_earnings_total', false ); |
|
| 776 | + $total = get_option('give_earnings_total', false); |
|
| 777 | 777 | |
| 778 | 778 | // If no total stored in DB, use old method of calculating total earnings |
| 779 | - if ( false === $total ) { |
|
| 779 | + if (false === $total) { |
|
| 780 | 780 | |
| 781 | 781 | global $wpdb; |
| 782 | 782 | |
| 783 | - $total = get_transient( 'give_earnings_total' ); |
|
| 783 | + $total = get_transient('give_earnings_total'); |
|
| 784 | 784 | |
| 785 | - if ( false === $total ) { |
|
| 785 | + if (false === $total) { |
|
| 786 | 786 | |
| 787 | 787 | $total = (float) 0; |
| 788 | 788 | |
| 789 | - $args = apply_filters( 'give_get_total_earnings_args', array( |
|
| 789 | + $args = apply_filters('give_get_total_earnings_args', array( |
|
| 790 | 790 | 'offset' => 0, |
| 791 | - 'number' => - 1, |
|
| 792 | - 'status' => array( 'publish', 'revoked' ), |
|
| 791 | + 'number' => -1, |
|
| 792 | + 'status' => array('publish', 'revoked'), |
|
| 793 | 793 | 'fields' => 'ids' |
| 794 | - ) ); |
|
| 794 | + )); |
|
| 795 | 795 | |
| 796 | 796 | |
| 797 | - $payments = give_get_payments( $args ); |
|
| 798 | - if ( $payments ) { |
|
| 797 | + $payments = give_get_payments($args); |
|
| 798 | + if ($payments) { |
|
| 799 | 799 | |
| 800 | 800 | /* |
| 801 | 801 | * If performing a purchase, we need to skip the very last payment in the database, since it calls |
@@ -803,30 +803,30 @@ discard block |
||
| 803 | 803 | * first purchase |
| 804 | 804 | */ |
| 805 | 805 | |
| 806 | - if ( did_action( 'give_update_payment_status' ) ) { |
|
| 807 | - array_pop( $payments ); |
|
| 806 | + if (did_action('give_update_payment_status')) { |
|
| 807 | + array_pop($payments); |
|
| 808 | 808 | } |
| 809 | 809 | |
| 810 | - if ( ! empty( $payments ) ) { |
|
| 811 | - $payments = implode( ',', $payments ); |
|
| 812 | - $total += $wpdb->get_var( "SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$payments})" ); |
|
| 810 | + if ( ! empty($payments)) { |
|
| 811 | + $payments = implode(',', $payments); |
|
| 812 | + $total += $wpdb->get_var("SELECT SUM(meta_value) FROM $wpdb->postmeta WHERE meta_key = '_give_payment_total' AND post_id IN({$payments})"); |
|
| 813 | 813 | } |
| 814 | 814 | |
| 815 | 815 | } |
| 816 | 816 | |
| 817 | 817 | // Cache results for 1 day. This cache is cleared automatically when a payment is made |
| 818 | - set_transient( 'give_earnings_total', $total, 86400 ); |
|
| 818 | + set_transient('give_earnings_total', $total, 86400); |
|
| 819 | 819 | |
| 820 | 820 | // Store the total for the first time |
| 821 | - update_option( 'give_earnings_total', $total ); |
|
| 821 | + update_option('give_earnings_total', $total); |
|
| 822 | 822 | } |
| 823 | 823 | } |
| 824 | 824 | |
| 825 | - if ( $total < 0 ) { |
|
| 825 | + if ($total < 0) { |
|
| 826 | 826 | $total = 0; // Don't ever show negative earnings |
| 827 | 827 | } |
| 828 | 828 | |
| 829 | - return apply_filters( 'give_total_earnings', round( $total, give_currency_decimal_filter() ) ); |
|
| 829 | + return apply_filters('give_total_earnings', round($total, give_currency_decimal_filter())); |
|
| 830 | 830 | } |
| 831 | 831 | |
| 832 | 832 | /** |
@@ -838,10 +838,10 @@ discard block |
||
| 838 | 838 | * |
| 839 | 839 | * @return float $total Total earnings |
| 840 | 840 | */ |
| 841 | -function give_increase_total_earnings( $amount = 0 ) { |
|
| 841 | +function give_increase_total_earnings($amount = 0) { |
|
| 842 | 842 | $total = give_get_total_earnings(); |
| 843 | 843 | $total += $amount; |
| 844 | - update_option( 'give_earnings_total', $total ); |
|
| 844 | + update_option('give_earnings_total', $total); |
|
| 845 | 845 | |
| 846 | 846 | return $total; |
| 847 | 847 | } |
@@ -855,13 +855,13 @@ discard block |
||
| 855 | 855 | * |
| 856 | 856 | * @return float $total Total earnings |
| 857 | 857 | */ |
| 858 | -function give_decrease_total_earnings( $amount = 0 ) { |
|
| 858 | +function give_decrease_total_earnings($amount = 0) { |
|
| 859 | 859 | $total = give_get_total_earnings(); |
| 860 | 860 | $total -= $amount; |
| 861 | - if ( $total < 0 ) { |
|
| 861 | + if ($total < 0) { |
|
| 862 | 862 | $total = 0; |
| 863 | 863 | } |
| 864 | - update_option( 'give_earnings_total', $total ); |
|
| 864 | + update_option('give_earnings_total', $total); |
|
| 865 | 865 | |
| 866 | 866 | return $total; |
| 867 | 867 | } |
@@ -877,10 +877,10 @@ discard block |
||
| 877 | 877 | * |
| 878 | 878 | * @return mixed $meta Payment Meta |
| 879 | 879 | */ |
| 880 | -function give_get_payment_meta( $payment_id = 0, $meta_key = '_give_payment_meta', $single = true ) { |
|
| 881 | - $payment = new Give_Payment( $payment_id ); |
|
| 880 | +function give_get_payment_meta($payment_id = 0, $meta_key = '_give_payment_meta', $single = true) { |
|
| 881 | + $payment = new Give_Payment($payment_id); |
|
| 882 | 882 | |
| 883 | - return $payment->get_meta( $meta_key, $single ); |
|
| 883 | + return $payment->get_meta($meta_key, $single); |
|
| 884 | 884 | } |
| 885 | 885 | |
| 886 | 886 | /** |
@@ -893,10 +893,10 @@ discard block |
||
| 893 | 893 | * |
| 894 | 894 | * @return mixed Meta ID if successful, false if unsuccessful |
| 895 | 895 | */ |
| 896 | -function give_update_payment_meta( $payment_id = 0, $meta_key = '', $meta_value = '', $prev_value = '' ) { |
|
| 897 | - $payment = new Give_Payment( $payment_id ); |
|
| 896 | +function give_update_payment_meta($payment_id = 0, $meta_key = '', $meta_value = '', $prev_value = '') { |
|
| 897 | + $payment = new Give_Payment($payment_id); |
|
| 898 | 898 | |
| 899 | - return $payment->update_meta( $meta_key, $meta_value, $prev_value ); |
|
| 899 | + return $payment->update_meta($meta_key, $meta_value, $prev_value); |
|
| 900 | 900 | } |
| 901 | 901 | |
| 902 | 902 | /** |
@@ -908,8 +908,8 @@ discard block |
||
| 908 | 908 | * |
| 909 | 909 | * @return array $user_info User Info Meta Values |
| 910 | 910 | */ |
| 911 | -function give_get_payment_meta_user_info( $payment_id ) { |
|
| 912 | - $payment = new Give_Payment( $payment_id ); |
|
| 911 | +function give_get_payment_meta_user_info($payment_id) { |
|
| 912 | + $payment = new Give_Payment($payment_id); |
|
| 913 | 913 | |
| 914 | 914 | return $payment->user_info; |
| 915 | 915 | } |
@@ -924,8 +924,8 @@ discard block |
||
| 924 | 924 | * |
| 925 | 925 | * @return int $form_id |
| 926 | 926 | */ |
| 927 | -function give_get_payment_form_id( $payment_id ) { |
|
| 928 | - $payment = new Give_Payment( $payment_id ); |
|
| 927 | +function give_get_payment_form_id($payment_id) { |
|
| 928 | + $payment = new Give_Payment($payment_id); |
|
| 929 | 929 | |
| 930 | 930 | return $payment->form_id; |
| 931 | 931 | } |
@@ -939,8 +939,8 @@ discard block |
||
| 939 | 939 | * |
| 940 | 940 | * @return string $email User Email |
| 941 | 941 | */ |
| 942 | -function give_get_payment_user_email( $payment_id ) { |
|
| 943 | - $payment = new Give_Payment( $payment_id ); |
|
| 942 | +function give_get_payment_user_email($payment_id) { |
|
| 943 | + $payment = new Give_Payment($payment_id); |
|
| 944 | 944 | |
| 945 | 945 | return $payment->email; |
| 946 | 946 | } |
@@ -954,11 +954,11 @@ discard block |
||
| 954 | 954 | * |
| 955 | 955 | * @return bool If the payment is associated with a user (false) or not (true) |
| 956 | 956 | */ |
| 957 | -function give_is_guest_payment( $payment_id ) { |
|
| 958 | - $payment_user_id = give_get_payment_user_id( $payment_id ); |
|
| 959 | - $is_guest_payment = ! empty( $payment_user_id ) && $payment_user_id > 0 ? false : true; |
|
| 957 | +function give_is_guest_payment($payment_id) { |
|
| 958 | + $payment_user_id = give_get_payment_user_id($payment_id); |
|
| 959 | + $is_guest_payment = ! empty($payment_user_id) && $payment_user_id > 0 ? false : true; |
|
| 960 | 960 | |
| 961 | - return (bool) apply_filters( 'give_is_guest_payment', $is_guest_payment, $payment_id ); |
|
| 961 | + return (bool) apply_filters('give_is_guest_payment', $is_guest_payment, $payment_id); |
|
| 962 | 962 | } |
| 963 | 963 | |
| 964 | 964 | /** |
@@ -970,8 +970,8 @@ discard block |
||
| 970 | 970 | * |
| 971 | 971 | * @return string $user_id User ID |
| 972 | 972 | */ |
| 973 | -function give_get_payment_user_id( $payment_id ) { |
|
| 974 | - $payment = new Give_Payment( $payment_id ); |
|
| 973 | +function give_get_payment_user_id($payment_id) { |
|
| 974 | + $payment = new Give_Payment($payment_id); |
|
| 975 | 975 | |
| 976 | 976 | return $payment->user_id; |
| 977 | 977 | } |
@@ -985,8 +985,8 @@ discard block |
||
| 985 | 985 | * |
| 986 | 986 | * @return string $customer_id Customer ID |
| 987 | 987 | */ |
| 988 | -function give_get_payment_customer_id( $payment_id ) { |
|
| 989 | - $payment = new Give_Payment( $payment_id ); |
|
| 988 | +function give_get_payment_customer_id($payment_id) { |
|
| 989 | + $payment = new Give_Payment($payment_id); |
|
| 990 | 990 | |
| 991 | 991 | return $payment->customer_id; |
| 992 | 992 | } |
@@ -1000,8 +1000,8 @@ discard block |
||
| 1000 | 1000 | * |
| 1001 | 1001 | * @return string $ip User IP |
| 1002 | 1002 | */ |
| 1003 | -function give_get_payment_user_ip( $payment_id ) { |
|
| 1004 | - $payment = new Give_Payment( $payment_id ); |
|
| 1003 | +function give_get_payment_user_ip($payment_id) { |
|
| 1004 | + $payment = new Give_Payment($payment_id); |
|
| 1005 | 1005 | |
| 1006 | 1006 | return $payment->ip; |
| 1007 | 1007 | } |
@@ -1015,8 +1015,8 @@ discard block |
||
| 1015 | 1015 | * |
| 1016 | 1016 | * @return string $date The date the payment was completed |
| 1017 | 1017 | */ |
| 1018 | -function give_get_payment_completed_date( $payment_id = 0 ) { |
|
| 1019 | - $payment = new Give_Payment( $payment_id ); |
|
| 1018 | +function give_get_payment_completed_date($payment_id = 0) { |
|
| 1019 | + $payment = new Give_Payment($payment_id); |
|
| 1020 | 1020 | |
| 1021 | 1021 | return $payment->completed_date; |
| 1022 | 1022 | } |
@@ -1030,8 +1030,8 @@ discard block |
||
| 1030 | 1030 | * |
| 1031 | 1031 | * @return string $gateway Gateway |
| 1032 | 1032 | */ |
| 1033 | -function give_get_payment_gateway( $payment_id ) { |
|
| 1034 | - $payment = new Give_Payment( $payment_id ); |
|
| 1033 | +function give_get_payment_gateway($payment_id) { |
|
| 1034 | + $payment = new Give_Payment($payment_id); |
|
| 1035 | 1035 | |
| 1036 | 1036 | return $payment->gateway; |
| 1037 | 1037 | } |
@@ -1045,8 +1045,8 @@ discard block |
||
| 1045 | 1045 | * |
| 1046 | 1046 | * @return string $currency The currency code |
| 1047 | 1047 | */ |
| 1048 | -function give_get_payment_currency_code( $payment_id = 0 ) { |
|
| 1049 | - $payment = new Give_Payment( $payment_id ); |
|
| 1048 | +function give_get_payment_currency_code($payment_id = 0) { |
|
| 1049 | + $payment = new Give_Payment($payment_id); |
|
| 1050 | 1050 | |
| 1051 | 1051 | return $payment->currency; |
| 1052 | 1052 | } |
@@ -1060,10 +1060,10 @@ discard block |
||
| 1060 | 1060 | * |
| 1061 | 1061 | * @return string $currency The currency name |
| 1062 | 1062 | */ |
| 1063 | -function give_get_payment_currency( $payment_id = 0 ) { |
|
| 1064 | - $currency = give_get_payment_currency_code( $payment_id ); |
|
| 1063 | +function give_get_payment_currency($payment_id = 0) { |
|
| 1064 | + $currency = give_get_payment_currency_code($payment_id); |
|
| 1065 | 1065 | |
| 1066 | - return apply_filters( 'give_payment_currency', give_get_currency_name( $currency ), $payment_id ); |
|
| 1066 | + return apply_filters('give_payment_currency', give_get_currency_name($currency), $payment_id); |
|
| 1067 | 1067 | } |
| 1068 | 1068 | |
| 1069 | 1069 | /** |
@@ -1075,8 +1075,8 @@ discard block |
||
| 1075 | 1075 | * |
| 1076 | 1076 | * @return string $key Purchase key |
| 1077 | 1077 | */ |
| 1078 | -function give_get_payment_key( $payment_id = 0 ) { |
|
| 1079 | - $payment = new Give_Payment( $payment_id ); |
|
| 1078 | +function give_get_payment_key($payment_id = 0) { |
|
| 1079 | + $payment = new Give_Payment($payment_id); |
|
| 1080 | 1080 | |
| 1081 | 1081 | return $payment->key; |
| 1082 | 1082 | } |
@@ -1092,8 +1092,8 @@ discard block |
||
| 1092 | 1092 | * |
| 1093 | 1093 | * @return string $number Payment order number |
| 1094 | 1094 | */ |
| 1095 | -function give_get_payment_number( $payment_id = 0 ) { |
|
| 1096 | - $payment = new Give_Payment( $payment_id ); |
|
| 1095 | +function give_get_payment_number($payment_id = 0) { |
|
| 1096 | + $payment = new Give_Payment($payment_id); |
|
| 1097 | 1097 | |
| 1098 | 1098 | return $payment->number; |
| 1099 | 1099 | } |
@@ -1107,23 +1107,23 @@ discard block |
||
| 1107 | 1107 | * |
| 1108 | 1108 | * @return string The formatted payment number |
| 1109 | 1109 | */ |
| 1110 | -function give_format_payment_number( $number ) { |
|
| 1110 | +function give_format_payment_number($number) { |
|
| 1111 | 1111 | |
| 1112 | - if ( ! give_get_option( 'enable_sequential' ) ) { |
|
| 1112 | + if ( ! give_get_option('enable_sequential')) { |
|
| 1113 | 1113 | return $number; |
| 1114 | 1114 | } |
| 1115 | 1115 | |
| 1116 | - if ( ! is_numeric( $number ) ) { |
|
| 1116 | + if ( ! is_numeric($number)) { |
|
| 1117 | 1117 | return $number; |
| 1118 | 1118 | } |
| 1119 | 1119 | |
| 1120 | - $prefix = give_get_option( 'sequential_prefix' ); |
|
| 1121 | - $number = absint( $number ); |
|
| 1122 | - $postfix = give_get_option( 'sequential_postfix' ); |
|
| 1120 | + $prefix = give_get_option('sequential_prefix'); |
|
| 1121 | + $number = absint($number); |
|
| 1122 | + $postfix = give_get_option('sequential_postfix'); |
|
| 1123 | 1123 | |
| 1124 | - $formatted_number = $prefix . $number . $postfix; |
|
| 1124 | + $formatted_number = $prefix.$number.$postfix; |
|
| 1125 | 1125 | |
| 1126 | - return apply_filters( 'give_format_payment_number', $formatted_number, $prefix, $number, $postfix ); |
|
| 1126 | + return apply_filters('give_format_payment_number', $formatted_number, $prefix, $number, $postfix); |
|
| 1127 | 1127 | } |
| 1128 | 1128 | |
| 1129 | 1129 | /** |
@@ -1136,17 +1136,17 @@ discard block |
||
| 1136 | 1136 | */ |
| 1137 | 1137 | function give_get_next_payment_number() { |
| 1138 | 1138 | |
| 1139 | - if ( ! give_get_option( 'enable_sequential' ) ) { |
|
| 1139 | + if ( ! give_get_option('enable_sequential')) { |
|
| 1140 | 1140 | return false; |
| 1141 | 1141 | } |
| 1142 | 1142 | |
| 1143 | - $number = get_option( 'give_last_payment_number' ); |
|
| 1144 | - $start = give_get_option( 'sequential_start', 1 ); |
|
| 1143 | + $number = get_option('give_last_payment_number'); |
|
| 1144 | + $start = give_get_option('sequential_start', 1); |
|
| 1145 | 1145 | $increment_number = true; |
| 1146 | 1146 | |
| 1147 | - if ( false !== $number ) { |
|
| 1147 | + if (false !== $number) { |
|
| 1148 | 1148 | |
| 1149 | - if ( empty( $number ) ) { |
|
| 1149 | + if (empty($number)) { |
|
| 1150 | 1150 | |
| 1151 | 1151 | $number = $start; |
| 1152 | 1152 | $increment_number = false; |
@@ -1156,24 +1156,24 @@ discard block |
||
| 1156 | 1156 | } else { |
| 1157 | 1157 | |
| 1158 | 1158 | // This case handles the first addition of the new option, as well as if it get's deleted for any reason |
| 1159 | - $payments = new Give_Payments_Query( array( |
|
| 1159 | + $payments = new Give_Payments_Query(array( |
|
| 1160 | 1160 | 'number' => 1, |
| 1161 | 1161 | 'order' => 'DESC', |
| 1162 | 1162 | 'orderby' => 'ID', |
| 1163 | 1163 | 'output' => 'posts', |
| 1164 | 1164 | 'fields' => 'ids' |
| 1165 | - ) ); |
|
| 1165 | + )); |
|
| 1166 | 1166 | $last_payment = $payments->get_payments(); |
| 1167 | 1167 | |
| 1168 | - if ( ! empty( $last_payment ) ) { |
|
| 1168 | + if ( ! empty($last_payment)) { |
|
| 1169 | 1169 | |
| 1170 | - $number = give_get_payment_number( $last_payment[0] ); |
|
| 1170 | + $number = give_get_payment_number($last_payment[0]); |
|
| 1171 | 1171 | |
| 1172 | 1172 | } |
| 1173 | 1173 | |
| 1174 | - if ( ! empty( $number ) && $number !== (int) $last_payment[0] ) { |
|
| 1174 | + if ( ! empty($number) && $number !== (int) $last_payment[0]) { |
|
| 1175 | 1175 | |
| 1176 | - $number = give_remove_payment_prefix_postfix( $number ); |
|
| 1176 | + $number = give_remove_payment_prefix_postfix($number); |
|
| 1177 | 1177 | |
| 1178 | 1178 | } else { |
| 1179 | 1179 | |
@@ -1183,13 +1183,13 @@ discard block |
||
| 1183 | 1183 | |
| 1184 | 1184 | } |
| 1185 | 1185 | |
| 1186 | - $increment_number = apply_filters( 'give_increment_payment_number', $increment_number, $number ); |
|
| 1186 | + $increment_number = apply_filters('give_increment_payment_number', $increment_number, $number); |
|
| 1187 | 1187 | |
| 1188 | - if ( $increment_number ) { |
|
| 1189 | - $number ++; |
|
| 1188 | + if ($increment_number) { |
|
| 1189 | + $number++; |
|
| 1190 | 1190 | } |
| 1191 | 1191 | |
| 1192 | - return apply_filters( 'give_get_next_payment_number', $number ); |
|
| 1192 | + return apply_filters('give_get_next_payment_number', $number); |
|
| 1193 | 1193 | } |
| 1194 | 1194 | |
| 1195 | 1195 | /** |
@@ -1201,25 +1201,25 @@ discard block |
||
| 1201 | 1201 | * |
| 1202 | 1202 | * @return string The new Payment number without prefix and postfix |
| 1203 | 1203 | */ |
| 1204 | -function give_remove_payment_prefix_postfix( $number ) { |
|
| 1204 | +function give_remove_payment_prefix_postfix($number) { |
|
| 1205 | 1205 | |
| 1206 | - $prefix = give_get_option( 'sequential_prefix' ); |
|
| 1207 | - $postfix = give_get_option( 'sequential_postfix' ); |
|
| 1206 | + $prefix = give_get_option('sequential_prefix'); |
|
| 1207 | + $postfix = give_get_option('sequential_postfix'); |
|
| 1208 | 1208 | |
| 1209 | 1209 | // Remove prefix |
| 1210 | - $number = preg_replace( '/' . $prefix . '/', '', $number, 1 ); |
|
| 1210 | + $number = preg_replace('/'.$prefix.'/', '', $number, 1); |
|
| 1211 | 1211 | |
| 1212 | 1212 | // Remove the postfix |
| 1213 | - $length = strlen( $number ); |
|
| 1214 | - $postfix_pos = strrpos( $number, $postfix ); |
|
| 1215 | - if ( false !== $postfix_pos ) { |
|
| 1216 | - $number = substr_replace( $number, '', $postfix_pos, $length ); |
|
| 1213 | + $length = strlen($number); |
|
| 1214 | + $postfix_pos = strrpos($number, $postfix); |
|
| 1215 | + if (false !== $postfix_pos) { |
|
| 1216 | + $number = substr_replace($number, '', $postfix_pos, $length); |
|
| 1217 | 1217 | } |
| 1218 | 1218 | |
| 1219 | 1219 | // Ensure it's a whole number |
| 1220 | - $number = intval( $number ); |
|
| 1220 | + $number = intval($number); |
|
| 1221 | 1221 | |
| 1222 | - return apply_filters( 'give_remove_payment_prefix_postfix', $number, $prefix, $postfix ); |
|
| 1222 | + return apply_filters('give_remove_payment_prefix_postfix', $number, $prefix, $postfix); |
|
| 1223 | 1223 | |
| 1224 | 1224 | } |
| 1225 | 1225 | |
@@ -1235,10 +1235,10 @@ discard block |
||
| 1235 | 1235 | * |
| 1236 | 1236 | * @return string $amount Fully formatted payment amount |
| 1237 | 1237 | */ |
| 1238 | -function give_payment_amount( $payment_id = 0 ) { |
|
| 1239 | - $amount = give_get_payment_amount( $payment_id ); |
|
| 1238 | +function give_payment_amount($payment_id = 0) { |
|
| 1239 | + $amount = give_get_payment_amount($payment_id); |
|
| 1240 | 1240 | |
| 1241 | - return give_currency_filter( give_format_amount( $amount ), give_get_payment_currency_code( $payment_id ) ); |
|
| 1241 | + return give_currency_filter(give_format_amount($amount), give_get_payment_currency_code($payment_id)); |
|
| 1242 | 1242 | } |
| 1243 | 1243 | |
| 1244 | 1244 | /** |
@@ -1251,11 +1251,11 @@ discard block |
||
| 1251 | 1251 | * |
| 1252 | 1252 | * @return mixed|void |
| 1253 | 1253 | */ |
| 1254 | -function give_get_payment_amount( $payment_id ) { |
|
| 1254 | +function give_get_payment_amount($payment_id) { |
|
| 1255 | 1255 | |
| 1256 | - $payment = new Give_Payment( $payment_id ); |
|
| 1256 | + $payment = new Give_Payment($payment_id); |
|
| 1257 | 1257 | |
| 1258 | - return apply_filters( 'give_payment_amount', floatval( $payment->total ), $payment_id ); |
|
| 1258 | + return apply_filters('give_payment_amount', floatval($payment->total), $payment_id); |
|
| 1259 | 1259 | } |
| 1260 | 1260 | |
| 1261 | 1261 | /** |
@@ -1271,10 +1271,10 @@ discard block |
||
| 1271 | 1271 | * |
| 1272 | 1272 | * @return array Fully formatted payment subtotal |
| 1273 | 1273 | */ |
| 1274 | -function give_payment_subtotal( $payment_id = 0 ) { |
|
| 1275 | - $subtotal = give_get_payment_subtotal( $payment_id ); |
|
| 1274 | +function give_payment_subtotal($payment_id = 0) { |
|
| 1275 | + $subtotal = give_get_payment_subtotal($payment_id); |
|
| 1276 | 1276 | |
| 1277 | - return give_currency_filter( give_format_amount( $subtotal ), give_get_payment_currency_code( $payment_id ) ); |
|
| 1277 | + return give_currency_filter(give_format_amount($subtotal), give_get_payment_currency_code($payment_id)); |
|
| 1278 | 1278 | } |
| 1279 | 1279 | |
| 1280 | 1280 | /** |
@@ -1288,8 +1288,8 @@ discard block |
||
| 1288 | 1288 | * |
| 1289 | 1289 | * @return float $subtotal Subtotal for payment (non formatted) |
| 1290 | 1290 | */ |
| 1291 | -function give_get_payment_subtotal( $payment_id = 0 ) { |
|
| 1292 | - $payment = new G_Payment( $payment_id ); |
|
| 1291 | +function give_get_payment_subtotal($payment_id = 0) { |
|
| 1292 | + $payment = new G_Payment($payment_id); |
|
| 1293 | 1293 | |
| 1294 | 1294 | return $payment->subtotal; |
| 1295 | 1295 | } |
@@ -1304,10 +1304,10 @@ discard block |
||
| 1304 | 1304 | * |
| 1305 | 1305 | * @return mixed array if payment fees found, false otherwise |
| 1306 | 1306 | */ |
| 1307 | -function give_get_payment_fees( $payment_id = 0, $type = 'all' ) { |
|
| 1308 | - $payment = new Give_Payment( $payment_id ); |
|
| 1307 | +function give_get_payment_fees($payment_id = 0, $type = 'all') { |
|
| 1308 | + $payment = new Give_Payment($payment_id); |
|
| 1309 | 1309 | |
| 1310 | - return $payment->get_fees( $type ); |
|
| 1310 | + return $payment->get_fees($type); |
|
| 1311 | 1311 | } |
| 1312 | 1312 | |
| 1313 | 1313 | /** |
@@ -1319,8 +1319,8 @@ discard block |
||
| 1319 | 1319 | * |
| 1320 | 1320 | * @return string The Transaction ID |
| 1321 | 1321 | */ |
| 1322 | -function give_get_payment_transaction_id( $payment_id = 0 ) { |
|
| 1323 | - $payment = new Give_Payment( $payment_id ); |
|
| 1322 | +function give_get_payment_transaction_id($payment_id = 0) { |
|
| 1323 | + $payment = new Give_Payment($payment_id); |
|
| 1324 | 1324 | |
| 1325 | 1325 | return $payment->transaction_id; |
| 1326 | 1326 | } |
@@ -1335,15 +1335,15 @@ discard block |
||
| 1335 | 1335 | * |
| 1336 | 1336 | * @return bool|mixed |
| 1337 | 1337 | */ |
| 1338 | -function give_set_payment_transaction_id( $payment_id = 0, $transaction_id = '' ) { |
|
| 1338 | +function give_set_payment_transaction_id($payment_id = 0, $transaction_id = '') { |
|
| 1339 | 1339 | |
| 1340 | - if ( empty( $payment_id ) || empty( $transaction_id ) ) { |
|
| 1340 | + if (empty($payment_id) || empty($transaction_id)) { |
|
| 1341 | 1341 | return false; |
| 1342 | 1342 | } |
| 1343 | 1343 | |
| 1344 | - $transaction_id = apply_filters( 'give_set_payment_transaction_id', $transaction_id, $payment_id ); |
|
| 1344 | + $transaction_id = apply_filters('give_set_payment_transaction_id', $transaction_id, $payment_id); |
|
| 1345 | 1345 | |
| 1346 | - return give_update_payment_meta( $payment_id, '_give_payment_transaction_id', $transaction_id ); |
|
| 1346 | + return give_update_payment_meta($payment_id, '_give_payment_transaction_id', $transaction_id); |
|
| 1347 | 1347 | } |
| 1348 | 1348 | |
| 1349 | 1349 | /** |
@@ -1357,12 +1357,12 @@ discard block |
||
| 1357 | 1357 | * |
| 1358 | 1358 | * @return int $purchase Purchase ID |
| 1359 | 1359 | */ |
| 1360 | -function give_get_purchase_id_by_key( $key ) { |
|
| 1360 | +function give_get_purchase_id_by_key($key) { |
|
| 1361 | 1361 | global $wpdb; |
| 1362 | 1362 | |
| 1363 | - $purchase = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_purchase_key' AND meta_value = %s LIMIT 1", $key ) ); |
|
| 1363 | + $purchase = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_purchase_key' AND meta_value = %s LIMIT 1", $key)); |
|
| 1364 | 1364 | |
| 1365 | - if ( $purchase != null ) { |
|
| 1365 | + if ($purchase != null) { |
|
| 1366 | 1366 | return $purchase; |
| 1367 | 1367 | } |
| 1368 | 1368 | |
@@ -1381,12 +1381,12 @@ discard block |
||
| 1381 | 1381 | * |
| 1382 | 1382 | * @return int $purchase Purchase ID |
| 1383 | 1383 | */ |
| 1384 | -function give_get_purchase_id_by_transaction_id( $key ) { |
|
| 1384 | +function give_get_purchase_id_by_transaction_id($key) { |
|
| 1385 | 1385 | global $wpdb; |
| 1386 | 1386 | |
| 1387 | - $purchase = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_transaction_id' AND meta_value = %s LIMIT 1", $key ) ); |
|
| 1387 | + $purchase = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = '_give_payment_transaction_id' AND meta_value = %s LIMIT 1", $key)); |
|
| 1388 | 1388 | |
| 1389 | - if ( $purchase != null ) { |
|
| 1389 | + if ($purchase != null) { |
|
| 1390 | 1390 | return $purchase; |
| 1391 | 1391 | } |
| 1392 | 1392 | |
@@ -1403,19 +1403,19 @@ discard block |
||
| 1403 | 1403 | * |
| 1404 | 1404 | * @return array $notes Payment Notes |
| 1405 | 1405 | */ |
| 1406 | -function give_get_payment_notes( $payment_id = 0, $search = '' ) { |
|
| 1406 | +function give_get_payment_notes($payment_id = 0, $search = '') { |
|
| 1407 | 1407 | |
| 1408 | - if ( empty( $payment_id ) && empty( $search ) ) { |
|
| 1408 | + if (empty($payment_id) && empty($search)) { |
|
| 1409 | 1409 | return false; |
| 1410 | 1410 | } |
| 1411 | 1411 | |
| 1412 | - remove_action( 'pre_get_comments', 'give_hide_payment_notes', 10 ); |
|
| 1413 | - remove_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 ); |
|
| 1412 | + remove_action('pre_get_comments', 'give_hide_payment_notes', 10); |
|
| 1413 | + remove_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2); |
|
| 1414 | 1414 | |
| 1415 | - $notes = get_comments( array( 'post_id' => $payment_id, 'order' => 'ASC', 'search' => $search ) ); |
|
| 1415 | + $notes = get_comments(array('post_id' => $payment_id, 'order' => 'ASC', 'search' => $search)); |
|
| 1416 | 1416 | |
| 1417 | - add_action( 'pre_get_comments', 'give_hide_payment_notes', 10 ); |
|
| 1418 | - add_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 ); |
|
| 1417 | + add_action('pre_get_comments', 'give_hide_payment_notes', 10); |
|
| 1418 | + add_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2); |
|
| 1419 | 1419 | |
| 1420 | 1420 | return $notes; |
| 1421 | 1421 | } |
@@ -1431,19 +1431,19 @@ discard block |
||
| 1431 | 1431 | * |
| 1432 | 1432 | * @return int The new note ID |
| 1433 | 1433 | */ |
| 1434 | -function give_insert_payment_note( $payment_id = 0, $note = '' ) { |
|
| 1435 | - if ( empty( $payment_id ) ) { |
|
| 1434 | +function give_insert_payment_note($payment_id = 0, $note = '') { |
|
| 1435 | + if (empty($payment_id)) { |
|
| 1436 | 1436 | return false; |
| 1437 | 1437 | } |
| 1438 | 1438 | |
| 1439 | - do_action( 'give_pre_insert_payment_note', $payment_id, $note ); |
|
| 1439 | + do_action('give_pre_insert_payment_note', $payment_id, $note); |
|
| 1440 | 1440 | |
| 1441 | - $note_id = wp_insert_comment( wp_filter_comment( array( |
|
| 1441 | + $note_id = wp_insert_comment(wp_filter_comment(array( |
|
| 1442 | 1442 | 'comment_post_ID' => $payment_id, |
| 1443 | 1443 | 'comment_content' => $note, |
| 1444 | 1444 | 'user_id' => is_admin() ? get_current_user_id() : 0, |
| 1445 | - 'comment_date' => current_time( 'mysql' ), |
|
| 1446 | - 'comment_date_gmt' => current_time( 'mysql', 1 ), |
|
| 1445 | + 'comment_date' => current_time('mysql'), |
|
| 1446 | + 'comment_date_gmt' => current_time('mysql', 1), |
|
| 1447 | 1447 | 'comment_approved' => 1, |
| 1448 | 1448 | 'comment_parent' => 0, |
| 1449 | 1449 | 'comment_author' => '', |
@@ -1452,9 +1452,9 @@ discard block |
||
| 1452 | 1452 | 'comment_author_email' => '', |
| 1453 | 1453 | 'comment_type' => 'give_payment_note' |
| 1454 | 1454 | |
| 1455 | - ) ) ); |
|
| 1455 | + ))); |
|
| 1456 | 1456 | |
| 1457 | - do_action( 'give_insert_payment_note', $note_id, $payment_id, $note ); |
|
| 1457 | + do_action('give_insert_payment_note', $note_id, $payment_id, $note); |
|
| 1458 | 1458 | |
| 1459 | 1459 | return $note_id; |
| 1460 | 1460 | } |
@@ -1469,14 +1469,14 @@ discard block |
||
| 1469 | 1469 | * |
| 1470 | 1470 | * @return bool True on success, false otherwise |
| 1471 | 1471 | */ |
| 1472 | -function give_delete_payment_note( $comment_id = 0, $payment_id = 0 ) { |
|
| 1473 | - if ( empty( $comment_id ) ) { |
|
| 1472 | +function give_delete_payment_note($comment_id = 0, $payment_id = 0) { |
|
| 1473 | + if (empty($comment_id)) { |
|
| 1474 | 1474 | return false; |
| 1475 | 1475 | } |
| 1476 | 1476 | |
| 1477 | - do_action( 'give_pre_delete_payment_note', $comment_id, $payment_id ); |
|
| 1478 | - $ret = wp_delete_comment( $comment_id, true ); |
|
| 1479 | - do_action( 'give_post_delete_payment_note', $comment_id, $payment_id ); |
|
| 1477 | + do_action('give_pre_delete_payment_note', $comment_id, $payment_id); |
|
| 1478 | + $ret = wp_delete_comment($comment_id, true); |
|
| 1479 | + do_action('give_post_delete_payment_note', $comment_id, $payment_id); |
|
| 1480 | 1480 | |
| 1481 | 1481 | return $ret; |
| 1482 | 1482 | } |
@@ -1491,32 +1491,32 @@ discard block |
||
| 1491 | 1491 | * |
| 1492 | 1492 | * @return string |
| 1493 | 1493 | */ |
| 1494 | -function give_get_payment_note_html( $note, $payment_id = 0 ) { |
|
| 1494 | +function give_get_payment_note_html($note, $payment_id = 0) { |
|
| 1495 | 1495 | |
| 1496 | - if ( is_numeric( $note ) ) { |
|
| 1497 | - $note = get_comment( $note ); |
|
| 1496 | + if (is_numeric($note)) { |
|
| 1497 | + $note = get_comment($note); |
|
| 1498 | 1498 | } |
| 1499 | 1499 | |
| 1500 | - if ( ! empty( $note->user_id ) ) { |
|
| 1501 | - $user = get_userdata( $note->user_id ); |
|
| 1500 | + if ( ! empty($note->user_id)) { |
|
| 1501 | + $user = get_userdata($note->user_id); |
|
| 1502 | 1502 | $user = $user->display_name; |
| 1503 | 1503 | } else { |
| 1504 | - $user = __( 'System', 'give' ); |
|
| 1504 | + $user = __('System', 'give'); |
|
| 1505 | 1505 | } |
| 1506 | 1506 | |
| 1507 | - $date_format = get_option( 'date_format' ) . ', ' . get_option( 'time_format' ); |
|
| 1507 | + $date_format = get_option('date_format').', '.get_option('time_format'); |
|
| 1508 | 1508 | |
| 1509 | - $delete_note_url = wp_nonce_url( add_query_arg( array( |
|
| 1509 | + $delete_note_url = wp_nonce_url(add_query_arg(array( |
|
| 1510 | 1510 | 'give-action' => 'delete_payment_note', |
| 1511 | 1511 | 'note_id' => $note->comment_ID, |
| 1512 | 1512 | 'payment_id' => $payment_id |
| 1513 | - ) ), 'give_delete_payment_note_' . $note->comment_ID ); |
|
| 1513 | + )), 'give_delete_payment_note_'.$note->comment_ID); |
|
| 1514 | 1514 | |
| 1515 | - $note_html = '<div class="give-payment-note" id="give-payment-note-' . $note->comment_ID . '">'; |
|
| 1515 | + $note_html = '<div class="give-payment-note" id="give-payment-note-'.$note->comment_ID.'">'; |
|
| 1516 | 1516 | $note_html .= '<p>'; |
| 1517 | - $note_html .= '<strong>' . $user . '</strong> – <span style="color:#aaa;font-style:italic;">' . date_i18n( $date_format, strtotime( $note->comment_date ) ) . '</span><br/>'; |
|
| 1517 | + $note_html .= '<strong>'.$user.'</strong> – <span style="color:#aaa;font-style:italic;">'.date_i18n($date_format, strtotime($note->comment_date)).'</span><br/>'; |
|
| 1518 | 1518 | $note_html .= $note->comment_content; |
| 1519 | - $note_html .= ' – <a href="' . esc_url( $delete_note_url ) . '" class="give-delete-payment-note" data-note-id="' . absint( $note->comment_ID ) . '" data-payment-id="' . absint( $payment_id ) . '" title="' . __( 'Delete this payment note', 'give' ) . '">' . __( 'Delete', 'give' ) . '</a>'; |
|
| 1519 | + $note_html .= ' – <a href="'.esc_url($delete_note_url).'" class="give-delete-payment-note" data-note-id="'.absint($note->comment_ID).'" data-payment-id="'.absint($payment_id).'" title="'.__('Delete this payment note', 'give').'">'.__('Delete', 'give').'</a>'; |
|
| 1520 | 1520 | $note_html .= '</p>'; |
| 1521 | 1521 | $note_html .= '</div>'; |
| 1522 | 1522 | |
@@ -1534,20 +1534,20 @@ discard block |
||
| 1534 | 1534 | * |
| 1535 | 1535 | * @return void |
| 1536 | 1536 | */ |
| 1537 | -function give_hide_payment_notes( $query ) { |
|
| 1537 | +function give_hide_payment_notes($query) { |
|
| 1538 | 1538 | global $wp_version; |
| 1539 | 1539 | |
| 1540 | - if ( version_compare( floatval( $wp_version ), '4.1', '>=' ) ) { |
|
| 1541 | - $types = isset( $query->query_vars['type__not_in'] ) ? $query->query_vars['type__not_in'] : array(); |
|
| 1542 | - if ( ! is_array( $types ) ) { |
|
| 1543 | - $types = array( $types ); |
|
| 1540 | + if (version_compare(floatval($wp_version), '4.1', '>=')) { |
|
| 1541 | + $types = isset($query->query_vars['type__not_in']) ? $query->query_vars['type__not_in'] : array(); |
|
| 1542 | + if ( ! is_array($types)) { |
|
| 1543 | + $types = array($types); |
|
| 1544 | 1544 | } |
| 1545 | 1545 | $types[] = 'give_payment_note'; |
| 1546 | 1546 | $query->query_vars['type__not_in'] = $types; |
| 1547 | 1547 | } |
| 1548 | 1548 | } |
| 1549 | 1549 | |
| 1550 | -add_action( 'pre_get_comments', 'give_hide_payment_notes', 10 ); |
|
| 1550 | +add_action('pre_get_comments', 'give_hide_payment_notes', 10); |
|
| 1551 | 1551 | |
| 1552 | 1552 | /** |
| 1553 | 1553 | * Exclude notes (comments) on give_payment post type from showing in Recent Comments widgets |
@@ -1559,17 +1559,17 @@ discard block |
||
| 1559 | 1559 | * |
| 1560 | 1560 | * @return array $clauses Updated comment clauses |
| 1561 | 1561 | */ |
| 1562 | -function give_hide_payment_notes_pre_41( $clauses, $wp_comment_query ) { |
|
| 1562 | +function give_hide_payment_notes_pre_41($clauses, $wp_comment_query) { |
|
| 1563 | 1563 | global $wpdb, $wp_version; |
| 1564 | 1564 | |
| 1565 | - if ( version_compare( floatval( $wp_version ), '4.1', '<' ) ) { |
|
| 1565 | + if (version_compare(floatval($wp_version), '4.1', '<')) { |
|
| 1566 | 1566 | $clauses['where'] .= ' AND comment_type != "give_payment_note"'; |
| 1567 | 1567 | } |
| 1568 | 1568 | |
| 1569 | 1569 | return $clauses; |
| 1570 | 1570 | } |
| 1571 | 1571 | |
| 1572 | -add_filter( 'comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2 ); |
|
| 1572 | +add_filter('comments_clauses', 'give_hide_payment_notes_pre_41', 10, 2); |
|
| 1573 | 1573 | |
| 1574 | 1574 | |
| 1575 | 1575 | /** |
@@ -1582,15 +1582,15 @@ discard block |
||
| 1582 | 1582 | * |
| 1583 | 1583 | * @return array $where |
| 1584 | 1584 | */ |
| 1585 | -function give_hide_payment_notes_from_feeds( $where, $wp_comment_query ) { |
|
| 1585 | +function give_hide_payment_notes_from_feeds($where, $wp_comment_query) { |
|
| 1586 | 1586 | global $wpdb; |
| 1587 | 1587 | |
| 1588 | - $where .= $wpdb->prepare( " AND comment_type != %s", 'give_payment_note' ); |
|
| 1588 | + $where .= $wpdb->prepare(" AND comment_type != %s", 'give_payment_note'); |
|
| 1589 | 1589 | |
| 1590 | 1590 | return $where; |
| 1591 | 1591 | } |
| 1592 | 1592 | |
| 1593 | -add_filter( 'comment_feed_where', 'give_hide_payment_notes_from_feeds', 10, 2 ); |
|
| 1593 | +add_filter('comment_feed_where', 'give_hide_payment_notes_from_feeds', 10, 2); |
|
| 1594 | 1594 | |
| 1595 | 1595 | |
| 1596 | 1596 | /** |
@@ -1604,32 +1604,32 @@ discard block |
||
| 1604 | 1604 | * |
| 1605 | 1605 | * @return array Array of comment counts |
| 1606 | 1606 | */ |
| 1607 | -function give_remove_payment_notes_in_comment_counts( $stats, $post_id ) { |
|
| 1607 | +function give_remove_payment_notes_in_comment_counts($stats, $post_id) { |
|
| 1608 | 1608 | global $wpdb, $pagenow; |
| 1609 | 1609 | |
| 1610 | - if ( 'index.php' != $pagenow ) { |
|
| 1610 | + if ('index.php' != $pagenow) { |
|
| 1611 | 1611 | return $stats; |
| 1612 | 1612 | } |
| 1613 | 1613 | |
| 1614 | 1614 | $post_id = (int) $post_id; |
| 1615 | 1615 | |
| 1616 | - if ( apply_filters( 'give_count_payment_notes_in_comments', false ) ) { |
|
| 1616 | + if (apply_filters('give_count_payment_notes_in_comments', false)) { |
|
| 1617 | 1617 | return $stats; |
| 1618 | 1618 | } |
| 1619 | 1619 | |
| 1620 | - $stats = wp_cache_get( "comments-{$post_id}", 'counts' ); |
|
| 1620 | + $stats = wp_cache_get("comments-{$post_id}", 'counts'); |
|
| 1621 | 1621 | |
| 1622 | - if ( false !== $stats ) { |
|
| 1622 | + if (false !== $stats) { |
|
| 1623 | 1623 | return $stats; |
| 1624 | 1624 | } |
| 1625 | 1625 | |
| 1626 | 1626 | $where = 'WHERE comment_type != "give_payment_note"'; |
| 1627 | 1627 | |
| 1628 | - if ( $post_id > 0 ) { |
|
| 1629 | - $where .= $wpdb->prepare( " AND comment_post_ID = %d", $post_id ); |
|
| 1628 | + if ($post_id > 0) { |
|
| 1629 | + $where .= $wpdb->prepare(" AND comment_post_ID = %d", $post_id); |
|
| 1630 | 1630 | } |
| 1631 | 1631 | |
| 1632 | - $count = $wpdb->get_results( "SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A ); |
|
| 1632 | + $count = $wpdb->get_results("SELECT comment_approved, COUNT( * ) AS num_comments FROM {$wpdb->comments} {$where} GROUP BY comment_approved", ARRAY_A); |
|
| 1633 | 1633 | |
| 1634 | 1634 | $total = 0; |
| 1635 | 1635 | $approved = array( |
@@ -1639,30 +1639,30 @@ discard block |
||
| 1639 | 1639 | 'trash' => 'trash', |
| 1640 | 1640 | 'post-trashed' => 'post-trashed' |
| 1641 | 1641 | ); |
| 1642 | - foreach ( (array) $count as $row ) { |
|
| 1642 | + foreach ((array) $count as $row) { |
|
| 1643 | 1643 | // Don't count post-trashed toward totals |
| 1644 | - if ( 'post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved'] ) { |
|
| 1644 | + if ('post-trashed' != $row['comment_approved'] && 'trash' != $row['comment_approved']) { |
|
| 1645 | 1645 | $total += $row['num_comments']; |
| 1646 | 1646 | } |
| 1647 | - if ( isset( $approved[ $row['comment_approved'] ] ) ) { |
|
| 1648 | - $stats[ $approved[ $row['comment_approved'] ] ] = $row['num_comments']; |
|
| 1647 | + if (isset($approved[$row['comment_approved']])) { |
|
| 1648 | + $stats[$approved[$row['comment_approved']]] = $row['num_comments']; |
|
| 1649 | 1649 | } |
| 1650 | 1650 | } |
| 1651 | 1651 | |
| 1652 | 1652 | $stats['total_comments'] = $total; |
| 1653 | - foreach ( $approved as $key ) { |
|
| 1654 | - if ( empty( $stats[ $key ] ) ) { |
|
| 1655 | - $stats[ $key ] = 0; |
|
| 1653 | + foreach ($approved as $key) { |
|
| 1654 | + if (empty($stats[$key])) { |
|
| 1655 | + $stats[$key] = 0; |
|
| 1656 | 1656 | } |
| 1657 | 1657 | } |
| 1658 | 1658 | |
| 1659 | 1659 | $stats = (object) $stats; |
| 1660 | - wp_cache_set( "comments-{$post_id}", $stats, 'counts' ); |
|
| 1660 | + wp_cache_set("comments-{$post_id}", $stats, 'counts'); |
|
| 1661 | 1661 | |
| 1662 | 1662 | return $stats; |
| 1663 | 1663 | } |
| 1664 | 1664 | |
| 1665 | -add_filter( 'wp_count_comments', 'give_remove_payment_notes_in_comment_counts', 10, 2 ); |
|
| 1665 | +add_filter('wp_count_comments', 'give_remove_payment_notes_in_comment_counts', 10, 2); |
|
| 1666 | 1666 | |
| 1667 | 1667 | |
| 1668 | 1668 | /** |
@@ -1675,9 +1675,9 @@ discard block |
||
| 1675 | 1675 | * |
| 1676 | 1676 | * @return string $where Modified where clause |
| 1677 | 1677 | */ |
| 1678 | -function give_filter_where_older_than_week( $where = '' ) { |
|
| 1678 | +function give_filter_where_older_than_week($where = '') { |
|
| 1679 | 1679 | // Payments older than one week |
| 1680 | - $start = date( 'Y-m-d', strtotime( '-7 days' ) ); |
|
| 1680 | + $start = date('Y-m-d', strtotime('-7 days')); |
|
| 1681 | 1681 | $where .= " AND post_date <= '{$start}'"; |
| 1682 | 1682 | |
| 1683 | 1683 | return $where; |
@@ -1696,37 +1696,37 @@ discard block |
||
| 1696 | 1696 | * |
| 1697 | 1697 | * @return string $form_title Returns the full title if $level_title false, otherwise returns the levels title |
| 1698 | 1698 | */ |
| 1699 | -function give_get_payment_form_title( $payment_meta, $level_title = false, $separator = '' ) { |
|
| 1699 | +function give_get_payment_form_title($payment_meta, $level_title = false, $separator = '') { |
|
| 1700 | 1700 | |
| 1701 | - $form_id = isset( $payment_meta['form_id'] ) ? $payment_meta['form_id'] : 0; |
|
| 1702 | - $form_title = isset( $payment_meta['form_title'] ) ? $payment_meta['form_title'] : ''; |
|
| 1703 | - $price_id = isset( $payment_meta['price_id'] ) ? $payment_meta['price_id'] : null; |
|
| 1701 | + $form_id = isset($payment_meta['form_id']) ? $payment_meta['form_id'] : 0; |
|
| 1702 | + $form_title = isset($payment_meta['form_title']) ? $payment_meta['form_title'] : ''; |
|
| 1703 | + $price_id = isset($payment_meta['price_id']) ? $payment_meta['price_id'] : null; |
|
| 1704 | 1704 | |
| 1705 | - if ( $level_title == true ) { |
|
| 1705 | + if ($level_title == true) { |
|
| 1706 | 1706 | $form_title = ''; |
| 1707 | 1707 | } |
| 1708 | 1708 | |
| 1709 | - if ( give_has_variable_prices( $form_id ) ) { |
|
| 1709 | + if (give_has_variable_prices($form_id)) { |
|
| 1710 | 1710 | |
| 1711 | - if ( ! empty( $separator ) ) { |
|
| 1712 | - $form_title .= ' ' . $separator; |
|
| 1711 | + if ( ! empty($separator)) { |
|
| 1712 | + $form_title .= ' '.$separator; |
|
| 1713 | 1713 | } |
| 1714 | 1714 | $form_title .= ' <span class="donation-level-text-wrap">'; |
| 1715 | 1715 | |
| 1716 | - if ( $price_id == 'custom' ) { |
|
| 1716 | + if ($price_id == 'custom') { |
|
| 1717 | 1717 | |
| 1718 | - $custom_amount_text = get_post_meta( $form_id, '_give_custom_amount_text', true ); |
|
| 1719 | - $form_title .= ! empty( $custom_amount_text ) ? $custom_amount_text : __( 'Custom Amount', 'give' ); |
|
| 1718 | + $custom_amount_text = get_post_meta($form_id, '_give_custom_amount_text', true); |
|
| 1719 | + $form_title .= ! empty($custom_amount_text) ? $custom_amount_text : __('Custom Amount', 'give'); |
|
| 1720 | 1720 | |
| 1721 | 1721 | } else { |
| 1722 | - $form_title .= give_get_price_option_name( $form_id, $price_id ); |
|
| 1722 | + $form_title .= give_get_price_option_name($form_id, $price_id); |
|
| 1723 | 1723 | } |
| 1724 | 1724 | |
| 1725 | 1725 | $form_title .= '</span>'; |
| 1726 | 1726 | |
| 1727 | 1727 | } |
| 1728 | 1728 | |
| 1729 | - return apply_filters( 'give_get_payment_form_title', $form_title, $payment_meta ); |
|
| 1729 | + return apply_filters('give_get_payment_form_title', $form_title, $payment_meta); |
|
| 1730 | 1730 | |
| 1731 | 1731 | } |
| 1732 | 1732 | |
@@ -1740,20 +1740,20 @@ discard block |
||
| 1740 | 1740 | * |
| 1741 | 1741 | * @return string $price_id |
| 1742 | 1742 | */ |
| 1743 | -function give_get_price_id( $form_id, $price ) { |
|
| 1743 | +function give_get_price_id($form_id, $price) { |
|
| 1744 | 1744 | |
| 1745 | 1745 | $price_id = 0; |
| 1746 | 1746 | |
| 1747 | - if ( give_has_variable_prices( $form_id ) ) { |
|
| 1747 | + if (give_has_variable_prices($form_id)) { |
|
| 1748 | 1748 | |
| 1749 | - $levels = maybe_unserialize( get_post_meta( $form_id, '_give_donation_levels', true ) ); |
|
| 1749 | + $levels = maybe_unserialize(get_post_meta($form_id, '_give_donation_levels', true)); |
|
| 1750 | 1750 | |
| 1751 | - foreach ( $levels as $level ) { |
|
| 1751 | + foreach ($levels as $level) { |
|
| 1752 | 1752 | |
| 1753 | - $level_amount = (float) give_sanitize_amount( $level['_give_amount'] ); |
|
| 1753 | + $level_amount = (float) give_sanitize_amount($level['_give_amount']); |
|
| 1754 | 1754 | |
| 1755 | 1755 | //check that this indeed the recurring price |
| 1756 | - if ( $level_amount == $price ) { |
|
| 1756 | + if ($level_amount == $price) { |
|
| 1757 | 1757 | |
| 1758 | 1758 | $price_id = $level['_give_id']['level_id']; |
| 1759 | 1759 | |