@@ -188,8 +188,8 @@ |
||
| 188 | 188 | |
| 189 | 189 | $payment_ids = implode( ',', $payment_ids ); |
| 190 | 190 | $customer->update( array( 'payment_ids' => $payment_ids, |
| 191 | - 'purchase_count' => $purchase_count, |
|
| 192 | - 'purchase_value' => $pending_total |
|
| 191 | + 'purchase_count' => $purchase_count, |
|
| 192 | + 'purchase_value' => $pending_total |
|
| 193 | 193 | ) ); |
| 194 | 194 | |
| 195 | 195 | $this->done = true; |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @since 1.5 |
| 51 | 51 | * @global object $wpdb Used to query the database using the WordPress |
| 52 | 52 | * Database API |
| 53 | - * @return array $data The data for the CSV file |
|
| 53 | + * @return boolean $data The data for the CSV file |
|
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -54,39 +54,39 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | |
| 57 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 58 | - $payments = $this->get_stored_data( 'give_recount_customer_payments_' . $customer->id, array() ); |
|
| 57 | + $customer = new Give_Customer($this->customer_id); |
|
| 58 | + $payments = $this->get_stored_data('give_recount_customer_payments_'.$customer->id, array()); |
|
| 59 | 59 | |
| 60 | - $offset = ( $this->step - 1 ) * $this->per_step; |
|
| 61 | - $step_items = array_slice( $payments, $offset, $this->per_step ); |
|
| 60 | + $offset = ($this->step - 1) * $this->per_step; |
|
| 61 | + $step_items = array_slice($payments, $offset, $this->per_step); |
|
| 62 | 62 | |
| 63 | - if ( count( $step_items ) > 0 ) { |
|
| 64 | - $pending_total = (float) $this->get_stored_data( 'give_stats_customer_pending_total' . $customer->id, 0 ); |
|
| 63 | + if (count($step_items) > 0) { |
|
| 64 | + $pending_total = (float) $this->get_stored_data('give_stats_customer_pending_total'.$customer->id, 0); |
|
| 65 | 65 | $step_total = 0; |
| 66 | 66 | |
| 67 | - $found_payment_ids = $this->get_stored_data( 'give_stats_found_payments_' . $customer->id, array() ); |
|
| 67 | + $found_payment_ids = $this->get_stored_data('give_stats_found_payments_'.$customer->id, array()); |
|
| 68 | 68 | |
| 69 | - foreach ( $step_items as $payment ) { |
|
| 70 | - $payment = get_post( $payment->ID ); |
|
| 69 | + foreach ($step_items as $payment) { |
|
| 70 | + $payment = get_post($payment->ID); |
|
| 71 | 71 | |
| 72 | - if ( is_null( $payment ) || is_wp_error( $payment ) || 'give_payment' !== $payment->post_type ) { |
|
| 72 | + if (is_null($payment) || is_wp_error($payment) || 'give_payment' !== $payment->post_type) { |
|
| 73 | 73 | |
| 74 | - $missing_payments = $this->get_stored_data( 'give_stats_missing_payments' . $customer->id, array() ); |
|
| 74 | + $missing_payments = $this->get_stored_data('give_stats_missing_payments'.$customer->id, array()); |
|
| 75 | 75 | $missing_payments[] = $payment->ID; |
| 76 | - $this->store_data( 'give_stats_missing_payments' . $customer->id, $missing_payments ); |
|
| 76 | + $this->store_data('give_stats_missing_payments'.$customer->id, $missing_payments); |
|
| 77 | 77 | |
| 78 | 78 | continue; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | $should_process_payment = 'publish' == $payment->post_status ? true : false; |
| 82 | - $should_process_payment = apply_filters( 'give_donor_recount_should_process_donation', $should_process_payment, $payment ); |
|
| 82 | + $should_process_payment = apply_filters('give_donor_recount_should_process_donation', $should_process_payment, $payment); |
|
| 83 | 83 | |
| 84 | - if ( true === $should_process_payment ) { |
|
| 84 | + if (true === $should_process_payment) { |
|
| 85 | 85 | |
| 86 | 86 | $found_payment_ids[] = $payment->ID; |
| 87 | 87 | |
| 88 | - if ( apply_filters( 'give_customer_recount_sholud_increase_value', true, $payment ) ) { |
|
| 89 | - $payment_amount = give_get_payment_amount( $payment->ID ); |
|
| 88 | + if (apply_filters('give_customer_recount_sholud_increase_value', true, $payment)) { |
|
| 89 | + $payment_amount = give_get_payment_amount($payment->ID); |
|
| 90 | 90 | $step_total += $payment_amount; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -95,8 +95,8 @@ discard block |
||
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | $updated_total = $pending_total + $step_total; |
| 98 | - $this->store_data( 'give_stats_customer_pending_total' . $customer->id, $updated_total ); |
|
| 99 | - $this->store_data( 'give_stats_found_payments_' . $customer->id, $found_payment_ids ); |
|
| 98 | + $this->store_data('give_stats_customer_pending_total'.$customer->id, $updated_total); |
|
| 99 | + $this->store_data('give_stats_found_payments_'.$customer->id, $found_payment_ids); |
|
| 100 | 100 | |
| 101 | 101 | return true; |
| 102 | 102 | } |
@@ -113,16 +113,16 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function get_percentage_complete() { |
| 115 | 115 | |
| 116 | - $payments = $this->get_stored_data( 'give_recount_customer_payments_' . $this->customer_id ); |
|
| 117 | - $total = count( $payments ); |
|
| 116 | + $payments = $this->get_stored_data('give_recount_customer_payments_'.$this->customer_id); |
|
| 117 | + $total = count($payments); |
|
| 118 | 118 | |
| 119 | 119 | $percentage = 100; |
| 120 | 120 | |
| 121 | - if ( $total > 0 ) { |
|
| 122 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 121 | + if ($total > 0) { |
|
| 122 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - if ( $percentage > 100 ) { |
|
| 125 | + if ($percentage > 100) { |
|
| 126 | 126 | $percentage = 100; |
| 127 | 127 | } |
| 128 | 128 | |
@@ -136,8 +136,8 @@ discard block |
||
| 136 | 136 | * |
| 137 | 137 | * @param array $request The Form Data passed into the batch processing |
| 138 | 138 | */ |
| 139 | - public function set_properties( $request ) { |
|
| 140 | - $this->customer_id = isset( $request['customer_id'] ) ? sanitize_text_field( $request['customer_id'] ) : false; |
|
| 139 | + public function set_properties($request) { |
|
| 140 | + $this->customer_id = isset($request['customer_id']) ? sanitize_text_field($request['customer_id']) : false; |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | /** |
@@ -148,62 +148,62 @@ discard block |
||
| 148 | 148 | */ |
| 149 | 149 | public function process_step() { |
| 150 | 150 | |
| 151 | - if ( ! $this->can_export() ) { |
|
| 152 | - wp_die( esc_html__( 'You do not have permission to recount stats.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 151 | + if ( ! $this->can_export()) { |
|
| 152 | + wp_die(esc_html__('You do not have permission to recount stats.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | $had_data = $this->get_data(); |
| 156 | 156 | |
| 157 | - if ( $had_data ) { |
|
| 157 | + if ($had_data) { |
|
| 158 | 158 | $this->done = false; |
| 159 | 159 | |
| 160 | 160 | return true; |
| 161 | 161 | } else { |
| 162 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 163 | - $payment_ids = get_option( 'give_stats_found_payments_' . $customer->id, array() ); |
|
| 164 | - $this->delete_data( 'give_stats_found_payments_' . $customer->id ); |
|
| 162 | + $customer = new Give_Customer($this->customer_id); |
|
| 163 | + $payment_ids = get_option('give_stats_found_payments_'.$customer->id, array()); |
|
| 164 | + $this->delete_data('give_stats_found_payments_'.$customer->id); |
|
| 165 | 165 | |
| 166 | - $removed_payments = array_unique( get_option( 'give_stats_missing_payments' . $customer->id, array() ) ); |
|
| 166 | + $removed_payments = array_unique(get_option('give_stats_missing_payments'.$customer->id, array())); |
|
| 167 | 167 | |
| 168 | 168 | // Find non-existing payments (deleted) and total up the donation count |
| 169 | 169 | $purchase_count = 0; |
| 170 | - foreach ( $payment_ids as $key => $payment_id ) { |
|
| 171 | - if ( in_array( $payment_id, $removed_payments ) ) { |
|
| 172 | - unset( $payment_ids[ $key ] ); |
|
| 170 | + foreach ($payment_ids as $key => $payment_id) { |
|
| 171 | + if (in_array($payment_id, $removed_payments)) { |
|
| 172 | + unset($payment_ids[$key]); |
|
| 173 | 173 | continue; |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - $payment = get_post( $payment_id ); |
|
| 177 | - if ( apply_filters( 'give_customer_recount_should_increase_count', true, $payment ) ) { |
|
| 178 | - $purchase_count ++; |
|
| 176 | + $payment = get_post($payment_id); |
|
| 177 | + if (apply_filters('give_customer_recount_should_increase_count', true, $payment)) { |
|
| 178 | + $purchase_count++; |
|
| 179 | 179 | } |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - $this->delete_data( 'give_stats_missing_payments' . $customer->id ); |
|
| 182 | + $this->delete_data('give_stats_missing_payments'.$customer->id); |
|
| 183 | 183 | |
| 184 | - $pending_total = $this->get_stored_data( 'give_stats_customer_pending_total' . $customer->id, 0 ); |
|
| 185 | - $this->delete_data( 'give_stats_customer_pending_total' . $customer->id ); |
|
| 186 | - $this->delete_data( 'give_recount_customer_stats_' . $customer->id ); |
|
| 187 | - $this->delete_data( 'give_recount_customer_payments_' . $this->customer_id ); |
|
| 184 | + $pending_total = $this->get_stored_data('give_stats_customer_pending_total'.$customer->id, 0); |
|
| 185 | + $this->delete_data('give_stats_customer_pending_total'.$customer->id); |
|
| 186 | + $this->delete_data('give_recount_customer_stats_'.$customer->id); |
|
| 187 | + $this->delete_data('give_recount_customer_payments_'.$this->customer_id); |
|
| 188 | 188 | |
| 189 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 190 | - $customer->update( array( 'payment_ids' => $payment_ids, |
|
| 189 | + $payment_ids = implode(',', $payment_ids); |
|
| 190 | + $customer->update(array('payment_ids' => $payment_ids, |
|
| 191 | 191 | 'purchase_count' => $purchase_count, |
| 192 | 192 | 'purchase_value' => $pending_total |
| 193 | - ) ); |
|
| 193 | + )); |
|
| 194 | 194 | |
| 195 | 195 | $this->done = true; |
| 196 | - $this->message = esc_html__( 'Donor stats successfully recounted.', 'give' ); |
|
| 196 | + $this->message = esc_html__('Donor stats successfully recounted.', 'give'); |
|
| 197 | 197 | |
| 198 | 198 | return false; |
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | public function headers() { |
| 203 | - ignore_user_abort( true ); |
|
| 203 | + ignore_user_abort(true); |
|
| 204 | 204 | |
| 205 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 206 | - set_time_limit( 0 ); |
|
| 205 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 206 | + set_time_limit(0); |
|
| 207 | 207 | } |
| 208 | 208 | } |
| 209 | 209 | |
@@ -230,26 +230,26 @@ discard block |
||
| 230 | 230 | * @return void |
| 231 | 231 | */ |
| 232 | 232 | public function pre_fetch() { |
| 233 | - if ( $this->step === 1 ) { |
|
| 234 | - $allowed_payment_status = apply_filters( 'give_recount_donors_donation_statuses', give_get_payment_status_keys() ); |
|
| 233 | + if ($this->step === 1) { |
|
| 234 | + $allowed_payment_status = apply_filters('give_recount_donors_donation_statuses', give_get_payment_status_keys()); |
|
| 235 | 235 | |
| 236 | 236 | // Before we start, let's zero out the customer's data |
| 237 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 238 | - $customer->update( array( 'purchase_value' => give_format_amount( 0 ), 'purchase_count' => 0 ) ); |
|
| 237 | + $customer = new Give_Customer($this->customer_id); |
|
| 238 | + $customer->update(array('purchase_value' => give_format_amount(0), 'purchase_count' => 0)); |
|
| 239 | 239 | |
| 240 | - $attached_payment_ids = explode( ',', $customer->payment_ids ); |
|
| 240 | + $attached_payment_ids = explode(',', $customer->payment_ids); |
|
| 241 | 241 | |
| 242 | 242 | $attached_args = array( |
| 243 | 243 | 'post__in' => $attached_payment_ids, |
| 244 | - 'number' => - 1, |
|
| 244 | + 'number' => -1, |
|
| 245 | 245 | 'status' => $allowed_payment_status, |
| 246 | 246 | ); |
| 247 | 247 | |
| 248 | - $attached_payments = give_get_payments( $attached_args ); |
|
| 248 | + $attached_payments = give_get_payments($attached_args); |
|
| 249 | 249 | |
| 250 | 250 | $unattached_args = array( |
| 251 | 251 | 'post__not_in' => $attached_payment_ids, |
| 252 | - 'number' => - 1, |
|
| 252 | + 'number' => -1, |
|
| 253 | 253 | 'status' => $allowed_payment_status, |
| 254 | 254 | 'meta_query' => array( |
| 255 | 255 | array( |
@@ -259,11 +259,11 @@ discard block |
||
| 259 | 259 | ), |
| 260 | 260 | ); |
| 261 | 261 | |
| 262 | - $unattached_payments = give_get_payments( $unattached_args ); |
|
| 262 | + $unattached_payments = give_get_payments($unattached_args); |
|
| 263 | 263 | |
| 264 | - $payments = array_merge( $attached_payments, $unattached_payments ); |
|
| 264 | + $payments = array_merge($attached_payments, $unattached_payments); |
|
| 265 | 265 | |
| 266 | - $this->store_data( 'give_recount_customer_payments_' . $customer->id, $payments ); |
|
| 266 | + $this->store_data('give_recount_customer_payments_'.$customer->id, $payments); |
|
| 267 | 267 | } |
| 268 | 268 | } |
| 269 | 269 | |
@@ -276,11 +276,11 @@ discard block |
||
| 276 | 276 | * |
| 277 | 277 | * @return mixed Returns the data from the database |
| 278 | 278 | */ |
| 279 | - private function get_stored_data( $key ) { |
|
| 279 | + private function get_stored_data($key) { |
|
| 280 | 280 | global $wpdb; |
| 281 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 281 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 282 | 282 | |
| 283 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 283 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | /** |
@@ -293,10 +293,10 @@ discard block |
||
| 293 | 293 | * |
| 294 | 294 | * @return void |
| 295 | 295 | */ |
| 296 | - private function store_data( $key, $value ) { |
|
| 296 | + private function store_data($key, $value) { |
|
| 297 | 297 | global $wpdb; |
| 298 | 298 | |
| 299 | - $value = maybe_serialize( $value ); |
|
| 299 | + $value = maybe_serialize($value); |
|
| 300 | 300 | |
| 301 | 301 | $data = array( |
| 302 | 302 | 'option_name' => $key, |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | '%s', |
| 311 | 311 | ); |
| 312 | 312 | |
| 313 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 313 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
@@ -322,9 +322,9 @@ discard block |
||
| 322 | 322 | * |
| 323 | 323 | * @return void |
| 324 | 324 | */ |
| 325 | - private function delete_data( $key ) { |
|
| 325 | + private function delete_data($key) { |
|
| 326 | 326 | global $wpdb; |
| 327 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 327 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 328 | 328 | } |
| 329 | 329 | |
| 330 | 330 | } |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
@@ -19,10 +19,10 @@ discard block |
||
| 19 | 19 | * @since 1.5 |
| 20 | 20 | */ |
| 21 | 21 | function give_register_batch_recount_store_earnings_tool() { |
| 22 | - add_action( 'give_batch_export_class_include', 'give_include_recount_income_tool_batch_processor', 10, 1 ); |
|
| 22 | + add_action('give_batch_export_class_include', 'give_include_recount_income_tool_batch_processor', 10, 1); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | -add_action( 'give_register_batch_exporter', 'give_register_batch_recount_store_earnings_tool', 10 ); |
|
| 25 | +add_action('give_register_batch_exporter', 'give_register_batch_recount_store_earnings_tool', 10); |
|
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * Loads the tools batch processing class for recounting store earnings |
@@ -33,11 +33,11 @@ discard block |
||
| 33 | 33 | * |
| 34 | 34 | * @return void |
| 35 | 35 | */ |
| 36 | -function give_include_recount_income_tool_batch_processor( $class ) { |
|
| 36 | +function give_include_recount_income_tool_batch_processor($class) { |
|
| 37 | 37 | |
| 38 | - $file_path = GIVE_PLUGIN_DIR . 'includes/admin/reporting/tools/class-give-tools-recount-income.php'; |
|
| 38 | + $file_path = GIVE_PLUGIN_DIR.'includes/admin/reporting/tools/class-give-tools-recount-income.php'; |
|
| 39 | 39 | |
| 40 | - if ( 'Give_Tools_Recount_Income' === $class && file_exists( $file_path ) ) { |
|
| 40 | + if ('Give_Tools_Recount_Income' === $class && file_exists($file_path)) { |
|
| 41 | 41 | require_once $file_path; |
| 42 | 42 | } |
| 43 | 43 | |
@@ -49,10 +49,10 @@ discard block |
||
| 49 | 49 | * @since 1.5 |
| 50 | 50 | */ |
| 51 | 51 | function give_register_batch_recount_form_tool() { |
| 52 | - add_action( 'give_batch_export_class_include', 'give_include_recount_form_tool_batch_processor', 10, 1 ); |
|
| 52 | + add_action('give_batch_export_class_include', 'give_include_recount_form_tool_batch_processor', 10, 1); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | -add_action( 'give_register_batch_exporter', 'give_register_batch_recount_form_tool', 10 ); |
|
| 55 | +add_action('give_register_batch_exporter', 'give_register_batch_recount_form_tool', 10); |
|
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | 58 | * Loads the tools batch processing class for recounting download stats |
@@ -63,11 +63,11 @@ discard block |
||
| 63 | 63 | * |
| 64 | 64 | * @return void |
| 65 | 65 | */ |
| 66 | -function give_include_recount_form_tool_batch_processor( $class ) { |
|
| 66 | +function give_include_recount_form_tool_batch_processor($class) { |
|
| 67 | 67 | |
| 68 | - $file_path = GIVE_PLUGIN_DIR . 'includes/admin/reporting/tools/class-give-tools-recount-form-stats.php'; |
|
| 68 | + $file_path = GIVE_PLUGIN_DIR.'includes/admin/reporting/tools/class-give-tools-recount-form-stats.php'; |
|
| 69 | 69 | |
| 70 | - if ( 'Give_Tools_Recount_Form_Stats' === $class && file_exists( $file_path ) ) { |
|
| 70 | + if ('Give_Tools_Recount_Form_Stats' === $class && file_exists($file_path)) { |
|
| 71 | 71 | require_once $file_path; |
| 72 | 72 | } |
| 73 | 73 | |
@@ -78,10 +78,10 @@ discard block |
||
| 78 | 78 | * @since 1.5 |
| 79 | 79 | */ |
| 80 | 80 | function give_register_batch_recount_all_tool() { |
| 81 | - add_action( 'give_batch_export_class_include', 'give_include_recount_all_tool_batch_processor', 10, 1 ); |
|
| 81 | + add_action('give_batch_export_class_include', 'give_include_recount_all_tool_batch_processor', 10, 1); |
|
| 82 | 82 | } |
| 83 | 83 | |
| 84 | -add_action( 'give_register_batch_exporter', 'give_register_batch_recount_all_tool', 10 ); |
|
| 84 | +add_action('give_register_batch_exporter', 'give_register_batch_recount_all_tool', 10); |
|
| 85 | 85 | |
| 86 | 86 | /** |
| 87 | 87 | * Loads the tools batch processing class for recounting all stats |
@@ -92,9 +92,9 @@ discard block |
||
| 92 | 92 | * |
| 93 | 93 | * @return void |
| 94 | 94 | */ |
| 95 | -function give_include_recount_all_tool_batch_processor( $class ) { |
|
| 96 | - $file_path = GIVE_PLUGIN_DIR . 'includes/admin/reporting/tools/class-give-tools-recount-all-stats.php'; |
|
| 97 | - if ( 'Give_Tools_Recount_All_Stats' === $class && file_exists( $file_path ) ) { |
|
| 95 | +function give_include_recount_all_tool_batch_processor($class) { |
|
| 96 | + $file_path = GIVE_PLUGIN_DIR.'includes/admin/reporting/tools/class-give-tools-recount-all-stats.php'; |
|
| 97 | + if ('Give_Tools_Recount_All_Stats' === $class && file_exists($file_path)) { |
|
| 98 | 98 | require_once $file_path; |
| 99 | 99 | } |
| 100 | 100 | |
@@ -106,10 +106,10 @@ discard block |
||
| 106 | 106 | * @since 1.5 |
| 107 | 107 | */ |
| 108 | 108 | function give_register_batch_reset_tool() { |
| 109 | - add_action( 'give_batch_export_class_include', 'give_include_reset_tool_batch_processor', 10, 1 ); |
|
| 109 | + add_action('give_batch_export_class_include', 'give_include_reset_tool_batch_processor', 10, 1); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | -add_action( 'give_register_batch_exporter', 'give_register_batch_reset_tool', 10 ); |
|
| 112 | +add_action('give_register_batch_exporter', 'give_register_batch_reset_tool', 10); |
|
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * Loads the tools batch processing class for resetting store and product earnings |
@@ -120,11 +120,11 @@ discard block |
||
| 120 | 120 | * |
| 121 | 121 | * @return void |
| 122 | 122 | */ |
| 123 | -function give_include_reset_tool_batch_processor( $class ) { |
|
| 123 | +function give_include_reset_tool_batch_processor($class) { |
|
| 124 | 124 | |
| 125 | - $file_path = GIVE_PLUGIN_DIR . 'includes/admin/reporting/tools/class-give-tools-reset-stats.php'; |
|
| 125 | + $file_path = GIVE_PLUGIN_DIR.'includes/admin/reporting/tools/class-give-tools-reset-stats.php'; |
|
| 126 | 126 | |
| 127 | - if ( 'Give_Tools_Reset_Stats' === $class && file_exists( $file_path ) ) { |
|
| 127 | + if ('Give_Tools_Reset_Stats' === $class && file_exists($file_path)) { |
|
| 128 | 128 | require_once $file_path; |
| 129 | 129 | } |
| 130 | 130 | |
@@ -135,10 +135,10 @@ discard block |
||
| 135 | 135 | * @since 1.5 |
| 136 | 136 | */ |
| 137 | 137 | function give_register_batch_customer_recount_tool() { |
| 138 | - add_action( 'give_batch_export_class_include', 'give_include_customer_recount_tool_batch_processor', 10, 1 ); |
|
| 138 | + add_action('give_batch_export_class_include', 'give_include_customer_recount_tool_batch_processor', 10, 1); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | -add_action( 'give_register_batch_exporter', 'give_register_batch_customer_recount_tool', 10 ); |
|
| 141 | +add_action('give_register_batch_exporter', 'give_register_batch_customer_recount_tool', 10); |
|
| 142 | 142 | |
| 143 | 143 | /** |
| 144 | 144 | * Loads the tools batch processing class for resetting all customer stats |
@@ -149,11 +149,11 @@ discard block |
||
| 149 | 149 | * |
| 150 | 150 | * @return void |
| 151 | 151 | */ |
| 152 | -function give_include_customer_recount_tool_batch_processor( $class ) { |
|
| 152 | +function give_include_customer_recount_tool_batch_processor($class) { |
|
| 153 | 153 | |
| 154 | - $file_path = GIVE_PLUGIN_DIR . 'includes/admin/reporting/tools/class-give-tools-recount-customer-stats.php'; |
|
| 154 | + $file_path = GIVE_PLUGIN_DIR.'includes/admin/reporting/tools/class-give-tools-recount-customer-stats.php'; |
|
| 155 | 155 | |
| 156 | - if ( 'Give_Tools_Recount_Customer_Stats' === $class && file_exists( $file_path ) ) { |
|
| 156 | + if ('Give_Tools_Recount_Customer_Stats' === $class && file_exists($file_path)) { |
|
| 157 | 157 | require_once $file_path; |
| 158 | 158 | } |
| 159 | 159 | |
@@ -164,10 +164,10 @@ discard block |
||
| 164 | 164 | * @since 1.5 |
| 165 | 165 | */ |
| 166 | 166 | function give_register_batch_delete_test_transactions_tool() { |
| 167 | - add_action( 'give_batch_export_class_include', 'give_include_delete_test_transactions_batch_processor', 10, 1 ); |
|
| 167 | + add_action('give_batch_export_class_include', 'give_include_delete_test_transactions_batch_processor', 10, 1); |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | -add_action( 'give_register_batch_exporter', 'give_register_batch_delete_test_transactions_tool', 10 ); |
|
| 170 | +add_action('give_register_batch_exporter', 'give_register_batch_delete_test_transactions_tool', 10); |
|
| 171 | 171 | |
| 172 | 172 | /** |
| 173 | 173 | * Loads the tools batch processing class for resetting all customer stats |
@@ -178,11 +178,11 @@ discard block |
||
| 178 | 178 | * |
| 179 | 179 | * @return void |
| 180 | 180 | */ |
| 181 | -function give_include_delete_test_transactions_batch_processor( $class ) { |
|
| 181 | +function give_include_delete_test_transactions_batch_processor($class) { |
|
| 182 | 182 | |
| 183 | - $file_path = GIVE_PLUGIN_DIR . 'includes/admin/reporting/tools/class-give-tools-delete-test-transactions.php'; |
|
| 183 | + $file_path = GIVE_PLUGIN_DIR.'includes/admin/reporting/tools/class-give-tools-delete-test-transactions.php'; |
|
| 184 | 184 | |
| 185 | - if ( 'Give_Tools_Delete_Test_Transactions' === $class && file_exists( $file_path ) ) { |
|
| 185 | + if ('Give_Tools_Delete_Test_Transactions' === $class && file_exists($file_path)) { |
|
| 186 | 186 | require_once $file_path; |
| 187 | 187 | } |
| 188 | 188 | |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @since 1.5 |
| 51 | 51 | * @global object $wpdb Used to query the database using the WordPress |
| 52 | 52 | * Database API |
| 53 | - * @return array $data The data for the CSV file |
|
| 53 | + * @return boolean $data The data for the CSV file |
|
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -55,22 +55,22 @@ discard block |
||
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
| 57 | 57 | |
| 58 | - $items = $this->get_stored_data( 'give_temp_reset_ids' ); |
|
| 58 | + $items = $this->get_stored_data('give_temp_reset_ids'); |
|
| 59 | 59 | |
| 60 | - if ( ! is_array( $items ) ) { |
|
| 60 | + if ( ! is_array($items)) { |
|
| 61 | 61 | return false; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | - $offset = ( $this->step - 1 ) * $this->per_step; |
|
| 65 | - $step_items = array_slice( $items, $offset, $this->per_step ); |
|
| 64 | + $offset = ($this->step - 1) * $this->per_step; |
|
| 65 | + $step_items = array_slice($items, $offset, $this->per_step); |
|
| 66 | 66 | |
| 67 | - if ( $step_items ) { |
|
| 67 | + if ($step_items) { |
|
| 68 | 68 | |
| 69 | 69 | $step_ids = array( |
| 70 | 70 | 'other' => array(), |
| 71 | 71 | ); |
| 72 | 72 | |
| 73 | - foreach ( $step_items as $item ) { |
|
| 73 | + foreach ($step_items as $item) { |
|
| 74 | 74 | |
| 75 | 75 | $step_ids['other'][] = $item['id']; |
| 76 | 76 | |
@@ -78,15 +78,15 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $sql = array(); |
| 80 | 80 | |
| 81 | - foreach ( $step_ids as $type => $ids ) { |
|
| 81 | + foreach ($step_ids as $type => $ids) { |
|
| 82 | 82 | |
| 83 | - if ( empty( $ids ) ) { |
|
| 83 | + if (empty($ids)) { |
|
| 84 | 84 | continue; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - $ids = implode( ',', $ids ); |
|
| 87 | + $ids = implode(',', $ids); |
|
| 88 | 88 | |
| 89 | - switch ( $type ) { |
|
| 89 | + switch ($type) { |
|
| 90 | 90 | case 'other': |
| 91 | 91 | $sql[] = "DELETE FROM $wpdb->posts WHERE id IN ($ids)"; |
| 92 | 92 | $sql[] = "DELETE FROM $wpdb->postmeta WHERE post_id IN ($ids)"; |
@@ -97,9 +97,9 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - if ( ! empty( $sql ) ) { |
|
| 101 | - foreach ( $sql as $query ) { |
|
| 102 | - $wpdb->query( $query ); |
|
| 100 | + if ( ! empty($sql)) { |
|
| 101 | + foreach ($sql as $query) { |
|
| 102 | + $wpdb->query($query); |
|
| 103 | 103 | } |
| 104 | 104 | } |
| 105 | 105 | |
@@ -119,16 +119,16 @@ discard block |
||
| 119 | 119 | */ |
| 120 | 120 | public function get_percentage_complete() { |
| 121 | 121 | |
| 122 | - $items = $this->get_stored_data( 'give_temp_reset_ids', false ); |
|
| 123 | - $total = count( $items ); |
|
| 122 | + $items = $this->get_stored_data('give_temp_reset_ids', false); |
|
| 123 | + $total = count($items); |
|
| 124 | 124 | |
| 125 | 125 | $percentage = 100; |
| 126 | 126 | |
| 127 | - if ( $total > 0 ) { |
|
| 128 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 127 | + if ($total > 0) { |
|
| 128 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - if ( $percentage > 100 ) { |
|
| 131 | + if ($percentage > 100) { |
|
| 132 | 132 | $percentage = 100; |
| 133 | 133 | } |
| 134 | 134 | |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | * |
| 143 | 143 | * @param array $request The Form Data passed into the batch processing |
| 144 | 144 | */ |
| 145 | - public function set_properties( $request ) { |
|
| 145 | + public function set_properties($request) { |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
@@ -153,30 +153,30 @@ discard block |
||
| 153 | 153 | */ |
| 154 | 154 | public function process_step() { |
| 155 | 155 | |
| 156 | - if ( ! $this->can_export() ) { |
|
| 157 | - wp_die( esc_html__( 'You do not have permission to delete test transactions.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 156 | + if ( ! $this->can_export()) { |
|
| 157 | + wp_die(esc_html__('You do not have permission to delete test transactions.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | $had_data = $this->get_data(); |
| 161 | 161 | |
| 162 | - if ( $had_data ) { |
|
| 162 | + if ($had_data) { |
|
| 163 | 163 | $this->done = false; |
| 164 | 164 | |
| 165 | 165 | return true; |
| 166 | 166 | } else { |
| 167 | - update_option( 'give_earnings_total', 0 ); |
|
| 168 | - delete_transient( 'give_earnings_total' ); |
|
| 169 | - delete_transient( 'give_estimated_monthly_stats' . true ); |
|
| 170 | - delete_transient( 'give_estimated_monthly_stats' . false ); |
|
| 171 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
| 167 | + update_option('give_earnings_total', 0); |
|
| 168 | + delete_transient('give_earnings_total'); |
|
| 169 | + delete_transient('give_estimated_monthly_stats'.true); |
|
| 170 | + delete_transient('give_estimated_monthly_stats'.false); |
|
| 171 | + $this->delete_data('give_temp_reset_ids'); |
|
| 172 | 172 | |
| 173 | 173 | // Reset the sequential order numbers |
| 174 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
| 175 | - delete_option( 'give_last_payment_number' ); |
|
| 174 | + if (give_get_option('enable_sequential')) { |
|
| 175 | + delete_option('give_last_payment_number'); |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | $this->done = true; |
| 179 | - $this->message = esc_html__( 'Test transactions successfully deleted.', 'give' ); |
|
| 179 | + $this->message = esc_html__('Test transactions successfully deleted.', 'give'); |
|
| 180 | 180 | |
| 181 | 181 | return false; |
| 182 | 182 | } |
@@ -186,10 +186,10 @@ discard block |
||
| 186 | 186 | * Headers |
| 187 | 187 | */ |
| 188 | 188 | public function headers() { |
| 189 | - ignore_user_abort( true ); |
|
| 189 | + ignore_user_abort(true); |
|
| 190 | 190 | |
| 191 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 192 | - set_time_limit( 0 ); |
|
| 191 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 192 | + set_time_limit(0); |
|
| 193 | 193 | } |
| 194 | 194 | } |
| 195 | 195 | |
@@ -213,26 +213,26 @@ discard block |
||
| 213 | 213 | */ |
| 214 | 214 | public function pre_fetch() { |
| 215 | 215 | |
| 216 | - if ( $this->step == 1 ) { |
|
| 217 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
| 216 | + if ($this->step == 1) { |
|
| 217 | + $this->delete_data('give_temp_reset_ids'); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | - $items = get_option( 'give_temp_reset_ids', false ); |
|
| 220 | + $items = get_option('give_temp_reset_ids', false); |
|
| 221 | 221 | |
| 222 | - if ( false === $items ) { |
|
| 222 | + if (false === $items) { |
|
| 223 | 223 | $items = array(); |
| 224 | 224 | |
| 225 | - $args = apply_filters( 'give_tools_reset_stats_total_args', array( |
|
| 225 | + $args = apply_filters('give_tools_reset_stats_total_args', array( |
|
| 226 | 226 | 'post_type' => 'give_payment', |
| 227 | 227 | 'post_status' => 'any', |
| 228 | - 'posts_per_page' => - 1, |
|
| 228 | + 'posts_per_page' => -1, |
|
| 229 | 229 | //ONLY TEST MODE TRANSACTIONS!!! |
| 230 | 230 | 'meta_key' => '_give_payment_mode', |
| 231 | 231 | 'meta_value' => 'test' |
| 232 | - ) ); |
|
| 232 | + )); |
|
| 233 | 233 | |
| 234 | - $posts = get_posts( $args ); |
|
| 235 | - foreach ( $posts as $post ) { |
|
| 234 | + $posts = get_posts($args); |
|
| 235 | + foreach ($posts as $post) { |
|
| 236 | 236 | $items[] = array( |
| 237 | 237 | 'id' => (int) $post->ID, |
| 238 | 238 | 'type' => $post->post_type, |
@@ -241,9 +241,9 @@ discard block |
||
| 241 | 241 | |
| 242 | 242 | // Allow filtering of items to remove with an unassociative array for each item |
| 243 | 243 | // The array contains the unique ID of the item, and a 'type' for you to use in the execution of the get_data method |
| 244 | - $items = apply_filters( 'give_reset_store_items', $items ); |
|
| 244 | + $items = apply_filters('give_reset_store_items', $items); |
|
| 245 | 245 | |
| 246 | - $this->store_data( 'give_temp_reset_ids', $items ); |
|
| 246 | + $this->store_data('give_temp_reset_ids', $items); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | 249 | } |
@@ -257,11 +257,11 @@ discard block |
||
| 257 | 257 | * |
| 258 | 258 | * @return mixed Returns the data from the database |
| 259 | 259 | */ |
| 260 | - private function get_stored_data( $key ) { |
|
| 260 | + private function get_stored_data($key) { |
|
| 261 | 261 | global $wpdb; |
| 262 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 262 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 263 | 263 | |
| 264 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 264 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | /** |
@@ -274,10 +274,10 @@ discard block |
||
| 274 | 274 | * |
| 275 | 275 | * @return void |
| 276 | 276 | */ |
| 277 | - private function store_data( $key, $value ) { |
|
| 277 | + private function store_data($key, $value) { |
|
| 278 | 278 | global $wpdb; |
| 279 | 279 | |
| 280 | - $value = maybe_serialize( $value ); |
|
| 280 | + $value = maybe_serialize($value); |
|
| 281 | 281 | |
| 282 | 282 | $data = array( |
| 283 | 283 | 'option_name' => $key, |
@@ -291,7 +291,7 @@ discard block |
||
| 291 | 291 | '%s', |
| 292 | 292 | ); |
| 293 | 293 | |
| 294 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 294 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | /** |
@@ -303,9 +303,9 @@ discard block |
||
| 303 | 303 | * |
| 304 | 304 | * @return void |
| 305 | 305 | */ |
| 306 | - private function delete_data( $key ) { |
|
| 306 | + private function delete_data($key) { |
|
| 307 | 307 | global $wpdb; |
| 308 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 308 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 309 | 309 | } |
| 310 | 310 | |
| 311 | 311 | } |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @since 1.5 |
| 51 | 51 | * @global object $wpdb Used to query the database using the WordPress |
| 52 | 52 | * Database API |
| 53 | - * @return array $data The data for the CSV file |
|
| 53 | + * @return boolean $data The data for the CSV file |
|
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -55,26 +55,26 @@ discard block |
||
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $give_logs, $wpdb; |
| 57 | 57 | |
| 58 | - $totals = $this->get_stored_data( 'give_temp_recount_all_stats' ); |
|
| 59 | - $payment_items = $this->get_stored_data( 'give_temp_payment_items' ); |
|
| 60 | - $processed_payments = $this->get_stored_data( 'give_temp_processed_payments' ); |
|
| 61 | - $accepted_statuses = apply_filters( 'give_recount_accepted_statuses', array( 'publish' ) ); |
|
| 58 | + $totals = $this->get_stored_data('give_temp_recount_all_stats'); |
|
| 59 | + $payment_items = $this->get_stored_data('give_temp_payment_items'); |
|
| 60 | + $processed_payments = $this->get_stored_data('give_temp_processed_payments'); |
|
| 61 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish')); |
|
| 62 | 62 | |
| 63 | - if ( false === $totals ) { |
|
| 63 | + if (false === $totals) { |
|
| 64 | 64 | $totals = array(); |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - if ( false === $payment_items ) { |
|
| 67 | + if (false === $payment_items) { |
|
| 68 | 68 | $payment_items = array(); |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - if ( false === $processed_payments ) { |
|
| 71 | + if (false === $processed_payments) { |
|
| 72 | 72 | $processed_payments = array(); |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - $all_forms = $this->get_stored_data( 'give_temp_form_ids' ); |
|
| 75 | + $all_forms = $this->get_stored_data('give_temp_form_ids'); |
|
| 76 | 76 | |
| 77 | - $args = apply_filters( 'give_recount_form_stats_args', array( |
|
| 77 | + $args = apply_filters('give_recount_form_stats_args', array( |
|
| 78 | 78 | 'post_parent__in' => $all_forms, |
| 79 | 79 | 'post_type' => 'give_log', |
| 80 | 80 | 'posts_per_page' => $this->per_step, |
@@ -82,73 +82,73 @@ discard block |
||
| 82 | 82 | 'paged' => $this->step, |
| 83 | 83 | 'log_type' => 'sale', |
| 84 | 84 | 'fields' => 'ids', |
| 85 | - ) ); |
|
| 85 | + )); |
|
| 86 | 86 | |
| 87 | - $log_ids = $give_logs->get_connected_logs( $args, 'sale' ); |
|
| 87 | + $log_ids = $give_logs->get_connected_logs($args, 'sale'); |
|
| 88 | 88 | |
| 89 | - if ( $log_ids ) { |
|
| 90 | - $log_ids = implode( ',', $log_ids ); |
|
| 89 | + if ($log_ids) { |
|
| 90 | + $log_ids = implode(',', $log_ids); |
|
| 91 | 91 | |
| 92 | - $payment_ids = $wpdb->get_col( "SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)" ); |
|
| 93 | - unset( $log_ids ); |
|
| 92 | + $payment_ids = $wpdb->get_col("SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)"); |
|
| 93 | + unset($log_ids); |
|
| 94 | 94 | |
| 95 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 96 | - $payments = $wpdb->get_results( "SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (" . $payment_ids . ")" ); |
|
| 97 | - unset( $payment_ids ); |
|
| 95 | + $payment_ids = implode(',', $payment_ids); |
|
| 96 | + $payments = $wpdb->get_results("SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (".$payment_ids.")"); |
|
| 97 | + unset($payment_ids); |
|
| 98 | 98 | |
| 99 | 99 | //Loop through payments |
| 100 | - foreach ( $payments as $payment ) { |
|
| 100 | + foreach ($payments as $payment) { |
|
| 101 | 101 | |
| 102 | 102 | // Prevent payments that have all ready been retrieved from a previous sales log from counting again. |
| 103 | - if ( in_array( $payment->ID, $processed_payments ) ) { |
|
| 103 | + if (in_array($payment->ID, $processed_payments)) { |
|
| 104 | 104 | continue; |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | //Verify accepted status' |
| 108 | - if ( ! in_array( $payment->post_status, $accepted_statuses ) ) { |
|
| 108 | + if ( ! in_array($payment->post_status, $accepted_statuses)) { |
|
| 109 | 109 | $processed_payments[] = $payment->ID; |
| 110 | 110 | continue; |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | - $payment_item = $payment_items[ $payment->ID ]; |
|
| 113 | + $payment_item = $payment_items[$payment->ID]; |
|
| 114 | 114 | |
| 115 | 115 | |
| 116 | - $form_id = isset( $payment_item['id'] ) ? $payment_item['id'] : ''; |
|
| 116 | + $form_id = isset($payment_item['id']) ? $payment_item['id'] : ''; |
|
| 117 | 117 | |
| 118 | 118 | //Must have a form ID |
| 119 | - if ( empty( $form_id ) ) { |
|
| 119 | + if (empty($form_id)) { |
|
| 120 | 120 | continue; |
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | //Form ID must be within $all_forms array to be validated |
| 124 | - if ( ! in_array( $form_id, $all_forms ) ) { |
|
| 124 | + if ( ! in_array($form_id, $all_forms)) { |
|
| 125 | 125 | continue; |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | //If array key doesn't exist, create it |
| 129 | - if ( ! array_key_exists( $form_id, $totals ) ) { |
|
| 130 | - $totals[ $form_id ] = array( |
|
| 129 | + if ( ! array_key_exists($form_id, $totals)) { |
|
| 130 | + $totals[$form_id] = array( |
|
| 131 | 131 | 'sales' => (int) 0, |
| 132 | 132 | 'earnings' => (float) 0, |
| 133 | 133 | ); |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - $totals[ $form_id ]['sales'] ++; |
|
| 137 | - $totals[ $form_id ]['earnings'] += $payment_item['price']; |
|
| 136 | + $totals[$form_id]['sales']++; |
|
| 137 | + $totals[$form_id]['earnings'] += $payment_item['price']; |
|
| 138 | 138 | |
| 139 | 139 | $processed_payments[] = $payment->ID; |
| 140 | 140 | |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - $this->store_data( 'give_temp_processed_payments', $processed_payments ); |
|
| 144 | - $this->store_data( 'give_temp_recount_all_stats', $totals ); |
|
| 143 | + $this->store_data('give_temp_processed_payments', $processed_payments); |
|
| 144 | + $this->store_data('give_temp_recount_all_stats', $totals); |
|
| 145 | 145 | |
| 146 | 146 | return true; |
| 147 | 147 | } |
| 148 | 148 | |
| 149 | - foreach ( $totals as $key => $stats ) { |
|
| 150 | - update_post_meta( $key, '_give_form_sales', $stats['sales'] ); |
|
| 151 | - update_post_meta( $key, '_give_form_earnings', $stats['earnings'] ); |
|
| 149 | + foreach ($totals as $key => $stats) { |
|
| 150 | + update_post_meta($key, '_give_form_sales', $stats['sales']); |
|
| 151 | + update_post_meta($key, '_give_form_earnings', $stats['earnings']); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | return false; |
@@ -163,20 +163,20 @@ discard block |
||
| 163 | 163 | */ |
| 164 | 164 | public function get_percentage_complete() { |
| 165 | 165 | |
| 166 | - $total = $this->get_stored_data( 'give_recount_all_total', false ); |
|
| 166 | + $total = $this->get_stored_data('give_recount_all_total', false); |
|
| 167 | 167 | |
| 168 | - if ( false === $total ) { |
|
| 168 | + if (false === $total) { |
|
| 169 | 169 | $this->pre_fetch(); |
| 170 | - $total = $this->get_stored_data( 'give_recount_all_total', 0 ); |
|
| 170 | + $total = $this->get_stored_data('give_recount_all_total', 0); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | $percentage = 100; |
| 174 | 174 | |
| 175 | - if ( $total > 0 ) { |
|
| 176 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 175 | + if ($total > 0) { |
|
| 176 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | - if ( $percentage > 100 ) { |
|
| 179 | + if ($percentage > 100) { |
|
| 180 | 180 | $percentage = 100; |
| 181 | 181 | } |
| 182 | 182 | |
@@ -190,8 +190,8 @@ discard block |
||
| 190 | 190 | * |
| 191 | 191 | * @param array $request The Form Data passed into the batch processing |
| 192 | 192 | */ |
| 193 | - public function set_properties( $request ) { |
|
| 194 | - $this->form_id = isset( $request['form_id'] ) ? sanitize_text_field( $request['form_id'] ) : false; |
|
| 193 | + public function set_properties($request) { |
|
| 194 | + $this->form_id = isset($request['form_id']) ? sanitize_text_field($request['form_id']) : false; |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
@@ -202,34 +202,34 @@ discard block |
||
| 202 | 202 | */ |
| 203 | 203 | public function process_step() { |
| 204 | 204 | |
| 205 | - if ( ! $this->can_export() ) { |
|
| 206 | - wp_die( esc_html__( 'You do not have permission to recount stats.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 205 | + if ( ! $this->can_export()) { |
|
| 206 | + wp_die(esc_html__('You do not have permission to recount stats.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 207 | 207 | } |
| 208 | 208 | |
| 209 | 209 | $had_data = $this->get_data(); |
| 210 | 210 | |
| 211 | - if ( $had_data ) { |
|
| 211 | + if ($had_data) { |
|
| 212 | 212 | $this->done = false; |
| 213 | 213 | |
| 214 | 214 | return true; |
| 215 | 215 | } else { |
| 216 | - $this->delete_data( 'give_recount_all_total' ); |
|
| 217 | - $this->delete_data( 'give_temp_recount_all_stats' ); |
|
| 218 | - $this->delete_data( 'give_temp_payment_items' ); |
|
| 219 | - $this->delete_data( 'give_temp_form_ids' ); |
|
| 220 | - $this->delete_data( 'give_temp_processed_payments' ); |
|
| 216 | + $this->delete_data('give_recount_all_total'); |
|
| 217 | + $this->delete_data('give_temp_recount_all_stats'); |
|
| 218 | + $this->delete_data('give_temp_payment_items'); |
|
| 219 | + $this->delete_data('give_temp_form_ids'); |
|
| 220 | + $this->delete_data('give_temp_processed_payments'); |
|
| 221 | 221 | $this->done = true; |
| 222 | - $this->message = esc_html__( 'Donation form income amounts and donation counts stats successfully recounted.', 'give' ); |
|
| 222 | + $this->message = esc_html__('Donation form income amounts and donation counts stats successfully recounted.', 'give'); |
|
| 223 | 223 | |
| 224 | 224 | return false; |
| 225 | 225 | } |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | public function headers() { |
| 229 | - ignore_user_abort( true ); |
|
| 229 | + ignore_user_abort(true); |
|
| 230 | 230 | |
| 231 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 232 | - set_time_limit( 0 ); |
|
| 231 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 232 | + set_time_limit(0); |
|
| 233 | 233 | } |
| 234 | 234 | } |
| 235 | 235 | |
@@ -258,76 +258,76 @@ discard block |
||
| 258 | 258 | |
| 259 | 259 | global $give_logs, $wpdb; |
| 260 | 260 | |
| 261 | - if ( $this->step == 1 ) { |
|
| 262 | - $this->delete_data( 'give_temp_recount_all_total' ); |
|
| 263 | - $this->delete_data( 'give_temp_recount_all_stats' ); |
|
| 264 | - $this->delete_data( 'give_temp_payment_items' ); |
|
| 265 | - $this->delete_data( 'give_temp_processed_payments' ); |
|
| 261 | + if ($this->step == 1) { |
|
| 262 | + $this->delete_data('give_temp_recount_all_total'); |
|
| 263 | + $this->delete_data('give_temp_recount_all_stats'); |
|
| 264 | + $this->delete_data('give_temp_payment_items'); |
|
| 265 | + $this->delete_data('give_temp_processed_payments'); |
|
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - $accepted_statuses = apply_filters( 'give_recount_accepted_statuses', array( 'publish' ) ); |
|
| 269 | - $total = $this->get_stored_data( 'give_temp_recount_all_total' ); |
|
| 268 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish')); |
|
| 269 | + $total = $this->get_stored_data('give_temp_recount_all_total'); |
|
| 270 | 270 | |
| 271 | - if ( false === $total ) { |
|
| 271 | + if (false === $total) { |
|
| 272 | 272 | $total = 0; |
| 273 | - $payment_items = $this->get_stored_data( 'give_temp_payment_items' ); |
|
| 273 | + $payment_items = $this->get_stored_data('give_temp_payment_items'); |
|
| 274 | 274 | |
| 275 | - if ( false === $payment_items ) { |
|
| 275 | + if (false === $payment_items) { |
|
| 276 | 276 | $payment_items = array(); |
| 277 | - $this->store_data( 'give_temp_payment_items', $payment_items ); |
|
| 277 | + $this->store_data('give_temp_payment_items', $payment_items); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - $all_forms = $this->get_stored_data( 'give_temp_form_ids' ); |
|
| 280 | + $all_forms = $this->get_stored_data('give_temp_form_ids'); |
|
| 281 | 281 | |
| 282 | - if ( false === $all_forms ) { |
|
| 282 | + if (false === $all_forms) { |
|
| 283 | 283 | $args = array( |
| 284 | 284 | 'post_status' => 'any', |
| 285 | 285 | 'post_type' => 'give_forms', |
| 286 | - 'posts_per_page' => - 1, |
|
| 286 | + 'posts_per_page' => -1, |
|
| 287 | 287 | 'fields' => 'ids', |
| 288 | 288 | ); |
| 289 | 289 | |
| 290 | - $all_forms = get_posts( $args ); |
|
| 291 | - $this->store_data( 'give_temp_form_ids', $all_forms ); |
|
| 290 | + $all_forms = get_posts($args); |
|
| 291 | + $this->store_data('give_temp_form_ids', $all_forms); |
|
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - $args = apply_filters( 'give_recount_form_stats_total_args', array( |
|
| 294 | + $args = apply_filters('give_recount_form_stats_total_args', array( |
|
| 295 | 295 | 'post_parent__in' => $all_forms, |
| 296 | 296 | 'post_type' => 'give_log', |
| 297 | 297 | 'post_status' => 'publish', |
| 298 | 298 | 'log_type' => 'sale', |
| 299 | 299 | 'fields' => 'ids', |
| 300 | 300 | 'nopaging' => true, |
| 301 | - ) ); |
|
| 301 | + )); |
|
| 302 | 302 | |
| 303 | - $all_logs = $give_logs->get_connected_logs( $args, 'sale' ); |
|
| 303 | + $all_logs = $give_logs->get_connected_logs($args, 'sale'); |
|
| 304 | 304 | |
| 305 | - if ( $all_logs ) { |
|
| 306 | - $log_ids = implode( ',', $all_logs ); |
|
| 307 | - $payment_ids = $wpdb->get_col( "SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)" ); |
|
| 308 | - unset( $log_ids ); |
|
| 305 | + if ($all_logs) { |
|
| 306 | + $log_ids = implode(',', $all_logs); |
|
| 307 | + $payment_ids = $wpdb->get_col("SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)"); |
|
| 308 | + unset($log_ids); |
|
| 309 | 309 | |
| 310 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 311 | - $payments = $wpdb->get_results( "SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (" . $payment_ids . ")" ); |
|
| 312 | - unset( $payment_ids ); |
|
| 310 | + $payment_ids = implode(',', $payment_ids); |
|
| 311 | + $payments = $wpdb->get_results("SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (".$payment_ids.")"); |
|
| 312 | + unset($payment_ids); |
|
| 313 | 313 | |
| 314 | - foreach ( $payments as $payment ) { |
|
| 314 | + foreach ($payments as $payment) { |
|
| 315 | 315 | |
| 316 | - $payment = new Give_Payment( $payment->ID ); |
|
| 316 | + $payment = new Give_Payment($payment->ID); |
|
| 317 | 317 | $form_id = $payment->form_id; |
| 318 | 318 | |
| 319 | 319 | //If for some reason somehow the form_ID isn't set check payment meta |
| 320 | - if ( empty( $payment->form_id ) ) { |
|
| 320 | + if (empty($payment->form_id)) { |
|
| 321 | 321 | $payment_meta = $payment->get_meta(); |
| 322 | - $form_id = isset( $payment_meta['form_id'] ) ? $payment_meta['form_id'] : 0; |
|
| 322 | + $form_id = isset($payment_meta['form_id']) ? $payment_meta['form_id'] : 0; |
|
| 323 | 323 | } |
| 324 | 324 | |
| 325 | - if ( ! in_array( $payment->post_status, $accepted_statuses ) ) { |
|
| 325 | + if ( ! in_array($payment->post_status, $accepted_statuses)) { |
|
| 326 | 326 | continue; |
| 327 | 327 | } |
| 328 | 328 | |
| 329 | - if ( ! array_key_exists( $payment->ID, $payment_items ) ) { |
|
| 330 | - $payment_items[ $payment->ID ] = array( |
|
| 329 | + if ( ! array_key_exists($payment->ID, $payment_items)) { |
|
| 330 | + $payment_items[$payment->ID] = array( |
|
| 331 | 331 | 'id' => $form_id, |
| 332 | 332 | 'payment_id' => $payment->ID, |
| 333 | 333 | 'price' => $payment->total |
@@ -336,11 +336,11 @@ discard block |
||
| 336 | 336 | |
| 337 | 337 | } |
| 338 | 338 | |
| 339 | - $total = count( $all_logs ); |
|
| 339 | + $total = count($all_logs); |
|
| 340 | 340 | } |
| 341 | 341 | |
| 342 | - $this->store_data( 'give_temp_payment_items', $payment_items ); |
|
| 343 | - $this->store_data( 'give_recount_all_total', $total ); |
|
| 342 | + $this->store_data('give_temp_payment_items', $payment_items); |
|
| 343 | + $this->store_data('give_recount_all_total', $total); |
|
| 344 | 344 | } |
| 345 | 345 | |
| 346 | 346 | } |
@@ -354,11 +354,11 @@ discard block |
||
| 354 | 354 | * |
| 355 | 355 | * @return mixed Returns the data from the database |
| 356 | 356 | */ |
| 357 | - private function get_stored_data( $key ) { |
|
| 357 | + private function get_stored_data($key) { |
|
| 358 | 358 | global $wpdb; |
| 359 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 359 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 360 | 360 | |
| 361 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 361 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 362 | 362 | } |
| 363 | 363 | |
| 364 | 364 | /** |
@@ -371,10 +371,10 @@ discard block |
||
| 371 | 371 | * |
| 372 | 372 | * @return void |
| 373 | 373 | */ |
| 374 | - private function store_data( $key, $value ) { |
|
| 374 | + private function store_data($key, $value) { |
|
| 375 | 375 | global $wpdb; |
| 376 | 376 | |
| 377 | - $value = maybe_serialize( $value ); |
|
| 377 | + $value = maybe_serialize($value); |
|
| 378 | 378 | |
| 379 | 379 | $data = array( |
| 380 | 380 | 'option_name' => $key, |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | '%s', |
| 389 | 389 | ); |
| 390 | 390 | |
| 391 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 391 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 392 | 392 | } |
| 393 | 393 | |
| 394 | 394 | /** |
@@ -400,9 +400,9 @@ discard block |
||
| 400 | 400 | * |
| 401 | 401 | * @return void |
| 402 | 402 | */ |
| 403 | - private function delete_data( $key ) { |
|
| 403 | + private function delete_data($key) { |
|
| 404 | 404 | global $wpdb; |
| 405 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 405 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 406 | 406 | } |
| 407 | 407 | |
| 408 | 408 | } |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @since 1.5 |
| 51 | 51 | * @global object $wpdb Used to query the database using the WordPress |
| 52 | 52 | * Database API |
| 53 | - * @return array $data The data for the CSV file |
|
| 53 | + * @return boolean $data The data for the CSV file |
|
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -56,32 +56,32 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | $args = array( |
| 58 | 58 | 'number' => $this->per_step, |
| 59 | - 'offset' => $this->per_step * ( $this->step - 1 ), |
|
| 59 | + 'offset' => $this->per_step * ($this->step - 1), |
|
| 60 | 60 | 'orderby' => 'id', |
| 61 | 61 | 'order' => 'DESC', |
| 62 | 62 | ); |
| 63 | 63 | |
| 64 | - $customers = Give()->customers->get_customers( $args ); |
|
| 64 | + $customers = Give()->customers->get_customers($args); |
|
| 65 | 65 | |
| 66 | - if ( $customers ) { |
|
| 66 | + if ($customers) { |
|
| 67 | 67 | |
| 68 | - $allowed_payment_status = apply_filters( 'give_recount_donors_donation_statuses', give_get_payment_status_keys() ); |
|
| 68 | + $allowed_payment_status = apply_filters('give_recount_donors_donation_statuses', give_get_payment_status_keys()); |
|
| 69 | 69 | |
| 70 | - foreach ( $customers as $customer ) { |
|
| 70 | + foreach ($customers as $customer) { |
|
| 71 | 71 | |
| 72 | - $attached_payment_ids = explode( ',', $customer->payment_ids ); |
|
| 72 | + $attached_payment_ids = explode(',', $customer->payment_ids); |
|
| 73 | 73 | |
| 74 | 74 | $attached_args = array( |
| 75 | 75 | 'post__in' => $attached_payment_ids, |
| 76 | - 'number' => - 1, |
|
| 76 | + 'number' => -1, |
|
| 77 | 77 | 'status' => $allowed_payment_status, |
| 78 | 78 | ); |
| 79 | 79 | |
| 80 | - $attached_payments = (array) give_get_payments( $attached_args ); |
|
| 80 | + $attached_payments = (array) give_get_payments($attached_args); |
|
| 81 | 81 | |
| 82 | 82 | $unattached_args = array( |
| 83 | 83 | 'post__not_in' => $attached_payment_ids, |
| 84 | - 'number' => - 1, |
|
| 84 | + 'number' => -1, |
|
| 85 | 85 | 'status' => $allowed_payment_status, |
| 86 | 86 | 'meta_query' => array( |
| 87 | 87 | array( |
@@ -92,29 +92,29 @@ discard block |
||
| 92 | 92 | ), |
| 93 | 93 | ); |
| 94 | 94 | |
| 95 | - $unattached_payments = give_get_payments( $unattached_args ); |
|
| 95 | + $unattached_payments = give_get_payments($unattached_args); |
|
| 96 | 96 | |
| 97 | - $payments = array_merge( $attached_payments, $unattached_payments ); |
|
| 97 | + $payments = array_merge($attached_payments, $unattached_payments); |
|
| 98 | 98 | |
| 99 | 99 | $purchase_value = 0.00; |
| 100 | 100 | $purchase_count = 0; |
| 101 | 101 | $payment_ids = array(); |
| 102 | 102 | |
| 103 | - if ( $payments ) { |
|
| 103 | + if ($payments) { |
|
| 104 | 104 | |
| 105 | - foreach ( $payments as $payment ) { |
|
| 105 | + foreach ($payments as $payment) { |
|
| 106 | 106 | |
| 107 | 107 | $should_process_payment = 'publish' == $payment->post_status ? true : false; |
| 108 | - $should_process_payment = apply_filters( 'give_donor_recount_should_process_donation', $should_process_payment, $payment ); |
|
| 108 | + $should_process_payment = apply_filters('give_donor_recount_should_process_donation', $should_process_payment, $payment); |
|
| 109 | 109 | |
| 110 | - if ( true === $should_process_payment ) { |
|
| 110 | + if (true === $should_process_payment) { |
|
| 111 | 111 | |
| 112 | - if ( apply_filters( 'give_customer_recount_should_increase_value', true, $payment ) ) { |
|
| 113 | - $purchase_value += give_get_payment_amount( $payment->ID ); |
|
| 112 | + if (apply_filters('give_customer_recount_should_increase_value', true, $payment)) { |
|
| 113 | + $purchase_value += give_get_payment_amount($payment->ID); |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - if ( apply_filters( 'give_customer_recount_should_increase_count', true, $payment ) ) { |
|
| 117 | - $purchase_count ++; |
|
| 116 | + if (apply_filters('give_customer_recount_should_increase_count', true, $payment)) { |
|
| 117 | + $purchase_count++; |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | } |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 127 | + $payment_ids = implode(',', $payment_ids); |
|
| 128 | 128 | |
| 129 | 129 | $customer_update_data = array( |
| 130 | 130 | 'purchase_count' => $purchase_count, |
@@ -132,8 +132,8 @@ discard block |
||
| 132 | 132 | 'payment_ids' => $payment_ids, |
| 133 | 133 | ); |
| 134 | 134 | |
| 135 | - $customer_instance = new Give_Customer( $customer->id ); |
|
| 136 | - $customer_instance->update( $customer_update_data ); |
|
| 135 | + $customer_instance = new Give_Customer($customer->id); |
|
| 136 | + $customer_instance->update($customer_update_data); |
|
| 137 | 137 | |
| 138 | 138 | } |
| 139 | 139 | |
@@ -153,21 +153,21 @@ discard block |
||
| 153 | 153 | public function get_percentage_complete() { |
| 154 | 154 | |
| 155 | 155 | $args = array( |
| 156 | - 'number' => - 1, |
|
| 156 | + 'number' => -1, |
|
| 157 | 157 | 'orderby' => 'id', |
| 158 | 158 | 'order' => 'DESC', |
| 159 | 159 | ); |
| 160 | 160 | |
| 161 | - $customers = Give()->customers->get_customers( $args ); |
|
| 162 | - $total = count( $customers ); |
|
| 161 | + $customers = Give()->customers->get_customers($args); |
|
| 162 | + $total = count($customers); |
|
| 163 | 163 | |
| 164 | 164 | $percentage = 100; |
| 165 | 165 | |
| 166 | - if ( $total > 0 ) { |
|
| 167 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 166 | + if ($total > 0) { |
|
| 167 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - if ( $percentage > 100 ) { |
|
| 170 | + if ($percentage > 100) { |
|
| 171 | 171 | $percentage = 100; |
| 172 | 172 | } |
| 173 | 173 | |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | * |
| 182 | 182 | * @param array $request The Form Data passed into the batch processing |
| 183 | 183 | */ |
| 184 | - public function set_properties( $request ) { |
|
| 184 | + public function set_properties($request) { |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -192,19 +192,19 @@ discard block |
||
| 192 | 192 | */ |
| 193 | 193 | public function process_step() { |
| 194 | 194 | |
| 195 | - if ( ! $this->can_export() ) { |
|
| 196 | - wp_die( esc_html__( 'You do not have permission to recount stats.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 195 | + if ( ! $this->can_export()) { |
|
| 196 | + wp_die(esc_html__('You do not have permission to recount stats.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | $had_data = $this->get_data(); |
| 200 | 200 | |
| 201 | - if ( $had_data ) { |
|
| 201 | + if ($had_data) { |
|
| 202 | 202 | $this->done = false; |
| 203 | 203 | |
| 204 | 204 | return true; |
| 205 | 205 | } else { |
| 206 | 206 | $this->done = true; |
| 207 | - $this->message = esc_html__( 'Donor stats have been successfully recounted.', 'give' ); |
|
| 207 | + $this->message = esc_html__('Donor stats have been successfully recounted.', 'give'); |
|
| 208 | 208 | |
| 209 | 209 | return false; |
| 210 | 210 | } |
@@ -214,10 +214,10 @@ discard block |
||
| 214 | 214 | * Headers |
| 215 | 215 | */ |
| 216 | 216 | public function headers() { |
| 217 | - ignore_user_abort( true ); |
|
| 217 | + ignore_user_abort(true); |
|
| 218 | 218 | |
| 219 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 220 | - set_time_limit( 0 ); |
|
| 219 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 220 | + set_time_limit(0); |
|
| 221 | 221 | } |
| 222 | 222 | } |
| 223 | 223 | |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @since 1.5 |
| 51 | 51 | * @global object $wpdb Used to query the database using the WordPress |
| 52 | 52 | * Database API |
| 53 | - * @return array $data The data for the CSV file |
|
| 53 | + * @return boolean $data The data for the CSV file |
|
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -62,23 +62,23 @@ discard block |
||
| 62 | 62 | public function get_data() { |
| 63 | 63 | global $give_logs, $wpdb; |
| 64 | 64 | |
| 65 | - $accepted_statuses = apply_filters( 'give_recount_accepted_statuses', array( 'publish' ) ); |
|
| 65 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish')); |
|
| 66 | 66 | |
| 67 | - if ( $this->step == 1 ) { |
|
| 68 | - $this->delete_data( 'give_temp_recount_form_stats' ); |
|
| 67 | + if ($this->step == 1) { |
|
| 68 | + $this->delete_data('give_temp_recount_form_stats'); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - $totals = $this->get_stored_data( 'give_temp_recount_form_stats' ); |
|
| 71 | + $totals = $this->get_stored_data('give_temp_recount_form_stats'); |
|
| 72 | 72 | |
| 73 | - if ( false === $totals ) { |
|
| 73 | + if (false === $totals) { |
|
| 74 | 74 | $totals = array( |
| 75 | 75 | 'earnings' => (float) 0, |
| 76 | 76 | 'sales' => 0, |
| 77 | 77 | ); |
| 78 | - $this->store_data( 'give_temp_recount_form_stats', $totals ); |
|
| 78 | + $this->store_data('give_temp_recount_form_stats', $totals); |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - $args = apply_filters( 'give_recount_form_stats_args', array( |
|
| 81 | + $args = apply_filters('give_recount_form_stats_args', array( |
|
| 82 | 82 | 'post_parent' => $this->form_id, |
| 83 | 83 | 'post_type' => 'give_log', |
| 84 | 84 | 'posts_per_page' => $this->per_step, |
@@ -86,49 +86,49 @@ discard block |
||
| 86 | 86 | 'paged' => $this->step, |
| 87 | 87 | 'log_type' => 'sale', |
| 88 | 88 | 'fields' => 'ids', |
| 89 | - ) ); |
|
| 89 | + )); |
|
| 90 | 90 | |
| 91 | - $log_ids = $give_logs->get_connected_logs( $args, 'sale' ); |
|
| 91 | + $log_ids = $give_logs->get_connected_logs($args, 'sale'); |
|
| 92 | 92 | $this->_log_ids_debug = array(); |
| 93 | 93 | |
| 94 | - if ( $log_ids ) { |
|
| 95 | - $log_ids = implode( ',', $log_ids ); |
|
| 96 | - $payment_ids = $wpdb->get_col( "SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)" ); |
|
| 97 | - unset( $log_ids ); |
|
| 94 | + if ($log_ids) { |
|
| 95 | + $log_ids = implode(',', $log_ids); |
|
| 96 | + $payment_ids = $wpdb->get_col("SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)"); |
|
| 97 | + unset($log_ids); |
|
| 98 | 98 | |
| 99 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 100 | - $payments = $wpdb->get_results( "SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (" . $payment_ids . ")" ); |
|
| 101 | - unset( $payment_ids ); |
|
| 99 | + $payment_ids = implode(',', $payment_ids); |
|
| 100 | + $payments = $wpdb->get_results("SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (".$payment_ids.")"); |
|
| 101 | + unset($payment_ids); |
|
| 102 | 102 | |
| 103 | - foreach ( $payments as $payment ) { |
|
| 103 | + foreach ($payments as $payment) { |
|
| 104 | 104 | |
| 105 | - $payment = new Give_Payment( $payment->ID ); |
|
| 105 | + $payment = new Give_Payment($payment->ID); |
|
| 106 | 106 | |
| 107 | 107 | //Ensure acceptible status only |
| 108 | - if ( ! in_array( $payment->post_status, $accepted_statuses ) ) { |
|
| 108 | + if ( ! in_array($payment->post_status, $accepted_statuses)) { |
|
| 109 | 109 | continue; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | //Ensure only payments for this form are counted |
| 113 | - if ( $payment->form_id != $this->form_id ) { |
|
| 113 | + if ($payment->form_id != $this->form_id) { |
|
| 114 | 114 | continue; |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | $this->_log_ids_debug[] = $payment->ID; |
| 118 | 118 | |
| 119 | - $totals['sales'] ++; |
|
| 119 | + $totals['sales']++; |
|
| 120 | 120 | $totals['earnings'] += $payment->total; |
| 121 | 121 | |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | - $this->store_data( 'give_temp_recount_form_stats', $totals ); |
|
| 124 | + $this->store_data('give_temp_recount_form_stats', $totals); |
|
| 125 | 125 | |
| 126 | 126 | return true; |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | |
| 130 | - update_post_meta( $this->form_id, '_give_form_sales', $totals['sales'] ); |
|
| 131 | - update_post_meta( $this->form_id, '_give_form_earnings', $totals['earnings'] ); |
|
| 130 | + update_post_meta($this->form_id, '_give_form_sales', $totals['sales']); |
|
| 131 | + update_post_meta($this->form_id, '_give_form_earnings', $totals['earnings']); |
|
| 132 | 132 | |
| 133 | 133 | return false; |
| 134 | 134 | |
@@ -143,54 +143,54 @@ discard block |
||
| 143 | 143 | public function get_percentage_complete() { |
| 144 | 144 | global $give_logs, $wpdb; |
| 145 | 145 | |
| 146 | - if ( $this->step == 1 ) { |
|
| 147 | - $this->delete_data( 'give_recount_total_' . $this->form_id ); |
|
| 146 | + if ($this->step == 1) { |
|
| 147 | + $this->delete_data('give_recount_total_'.$this->form_id); |
|
| 148 | 148 | } |
| 149 | 149 | |
| 150 | - $accepted_statuses = apply_filters( 'give_recount_accepted_statuses', array( 'publish' ) ); |
|
| 151 | - $total = $this->get_stored_data( 'give_recount_total_' . $this->form_id ); |
|
| 150 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish')); |
|
| 151 | + $total = $this->get_stored_data('give_recount_total_'.$this->form_id); |
|
| 152 | 152 | |
| 153 | - if ( false === $total ) { |
|
| 153 | + if (false === $total) { |
|
| 154 | 154 | $total = 0; |
| 155 | - $args = apply_filters( 'give_recount_form_stats_total_args', array( |
|
| 155 | + $args = apply_filters('give_recount_form_stats_total_args', array( |
|
| 156 | 156 | 'post_parent' => $this->form_id, |
| 157 | 157 | 'post_type' => 'give_log', |
| 158 | 158 | 'post_status' => 'publish', |
| 159 | 159 | 'log_type' => 'sale', |
| 160 | 160 | 'fields' => 'ids', |
| 161 | 161 | 'nopaging' => true, |
| 162 | - ) ); |
|
| 162 | + )); |
|
| 163 | 163 | |
| 164 | - $log_ids = $give_logs->get_connected_logs( $args, 'sale' ); |
|
| 164 | + $log_ids = $give_logs->get_connected_logs($args, 'sale'); |
|
| 165 | 165 | |
| 166 | - if ( $log_ids ) { |
|
| 167 | - $log_ids = implode( ',', $log_ids ); |
|
| 168 | - $payment_ids = $wpdb->get_col( "SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)" ); |
|
| 169 | - unset( $log_ids ); |
|
| 166 | + if ($log_ids) { |
|
| 167 | + $log_ids = implode(',', $log_ids); |
|
| 168 | + $payment_ids = $wpdb->get_col("SELECT meta_value FROM $wpdb->postmeta WHERE meta_key='_give_log_payment_id' AND post_id IN ($log_ids)"); |
|
| 169 | + unset($log_ids); |
|
| 170 | 170 | |
| 171 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 172 | - $payments = $wpdb->get_results( "SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (" . $payment_ids . ")" ); |
|
| 173 | - unset( $payment_ids ); |
|
| 171 | + $payment_ids = implode(',', $payment_ids); |
|
| 172 | + $payments = $wpdb->get_results("SELECT ID, post_status FROM $wpdb->posts WHERE ID IN (".$payment_ids.")"); |
|
| 173 | + unset($payment_ids); |
|
| 174 | 174 | |
| 175 | - foreach ( $payments as $payment ) { |
|
| 176 | - if ( in_array( $payment->post_status, $accepted_statuses ) ) { |
|
| 175 | + foreach ($payments as $payment) { |
|
| 176 | + if (in_array($payment->post_status, $accepted_statuses)) { |
|
| 177 | 177 | continue; |
| 178 | 178 | } |
| 179 | 179 | |
| 180 | - $total ++; |
|
| 180 | + $total++; |
|
| 181 | 181 | } |
| 182 | 182 | } |
| 183 | 183 | |
| 184 | - $this->store_data( 'give_recount_total_' . $this->form_id, $total ); |
|
| 184 | + $this->store_data('give_recount_total_'.$this->form_id, $total); |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | $percentage = 100; |
| 188 | 188 | |
| 189 | - if ( $total > 0 ) { |
|
| 190 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 189 | + if ($total > 0) { |
|
| 190 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 191 | 191 | } |
| 192 | 192 | |
| 193 | - if ( $percentage > 100 ) { |
|
| 193 | + if ($percentage > 100) { |
|
| 194 | 194 | $percentage = 100; |
| 195 | 195 | } |
| 196 | 196 | |
@@ -204,8 +204,8 @@ discard block |
||
| 204 | 204 | * |
| 205 | 205 | * @param array $request The Form Data passed into the batch processing |
| 206 | 206 | */ |
| 207 | - public function set_properties( $request ) { |
|
| 208 | - $this->form_id = isset( $request['form_id'] ) ? sanitize_text_field( $request['form_id'] ) : false; |
|
| 207 | + public function set_properties($request) { |
|
| 208 | + $this->form_id = isset($request['form_id']) ? sanitize_text_field($request['form_id']) : false; |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
@@ -216,31 +216,31 @@ discard block |
||
| 216 | 216 | */ |
| 217 | 217 | public function process_step() { |
| 218 | 218 | |
| 219 | - if ( ! $this->can_export() ) { |
|
| 220 | - wp_die( esc_html__( 'You do not have permission to recount stats.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 219 | + if ( ! $this->can_export()) { |
|
| 220 | + wp_die(esc_html__('You do not have permission to recount stats.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 221 | 221 | } |
| 222 | 222 | |
| 223 | 223 | $had_data = $this->get_data(); |
| 224 | 224 | |
| 225 | - if ( $had_data ) { |
|
| 225 | + if ($had_data) { |
|
| 226 | 226 | $this->done = false; |
| 227 | 227 | |
| 228 | 228 | return true; |
| 229 | 229 | } else { |
| 230 | - $this->delete_data( 'give_recount_total_' . $this->form_id ); |
|
| 231 | - $this->delete_data( 'give_temp_recount_form_stats' ); |
|
| 230 | + $this->delete_data('give_recount_total_'.$this->form_id); |
|
| 231 | + $this->delete_data('give_temp_recount_form_stats'); |
|
| 232 | 232 | $this->done = true; |
| 233 | - $this->message = sprintf( esc_html__( 'Donation counts and income amount statistics successfully recounted for "%s".', 'give' ), get_the_title( $this->form_id ) ); |
|
| 233 | + $this->message = sprintf(esc_html__('Donation counts and income amount statistics successfully recounted for "%s".', 'give'), get_the_title($this->form_id)); |
|
| 234 | 234 | |
| 235 | 235 | return false; |
| 236 | 236 | } |
| 237 | 237 | } |
| 238 | 238 | |
| 239 | 239 | public function headers() { |
| 240 | - ignore_user_abort( true ); |
|
| 240 | + ignore_user_abort(true); |
|
| 241 | 241 | |
| 242 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 243 | - set_time_limit( 0 ); |
|
| 242 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 243 | + set_time_limit(0); |
|
| 244 | 244 | } |
| 245 | 245 | } |
| 246 | 246 | |
@@ -268,11 +268,11 @@ discard block |
||
| 268 | 268 | * |
| 269 | 269 | * @return mixed Returns the data from the database |
| 270 | 270 | */ |
| 271 | - private function get_stored_data( $key ) { |
|
| 271 | + private function get_stored_data($key) { |
|
| 272 | 272 | global $wpdb; |
| 273 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 273 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 274 | 274 | |
| 275 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 275 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 276 | 276 | } |
| 277 | 277 | |
| 278 | 278 | /** |
@@ -285,10 +285,10 @@ discard block |
||
| 285 | 285 | * |
| 286 | 286 | * @return void |
| 287 | 287 | */ |
| 288 | - private function store_data( $key, $value ) { |
|
| 288 | + private function store_data($key, $value) { |
|
| 289 | 289 | global $wpdb; |
| 290 | 290 | |
| 291 | - $value = maybe_serialize( $value ); |
|
| 291 | + $value = maybe_serialize($value); |
|
| 292 | 292 | |
| 293 | 293 | $data = array( |
| 294 | 294 | 'option_name' => $key, |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | '%s', |
| 303 | 303 | ); |
| 304 | 304 | |
| 305 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 305 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
@@ -314,9 +314,9 @@ discard block |
||
| 314 | 314 | * |
| 315 | 315 | * @return void |
| 316 | 316 | */ |
| 317 | - private function delete_data( $key ) { |
|
| 317 | + private function delete_data($key) { |
|
| 318 | 318 | global $wpdb; |
| 319 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 319 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 320 | 320 | } |
| 321 | 321 | |
| 322 | 322 | } |
@@ -50,7 +50,7 @@ |
||
| 50 | 50 | * @since 1.5 |
| 51 | 51 | * @global object $wpdb Used to query the database using the WordPress |
| 52 | 52 | * Database API |
| 53 | - * @return array $data The data for the CSV file |
|
| 53 | + * @return boolean $data The data for the CSV file |
|
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | global $wpdb; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -54,50 +54,50 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | |
| 57 | - if ( $this->step == 1 ) { |
|
| 58 | - $this->delete_data( 'give_temp_recount_income' ); |
|
| 57 | + if ($this->step == 1) { |
|
| 58 | + $this->delete_data('give_temp_recount_income'); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | - $total = get_option( 'give_temp_recount_income', false ); |
|
| 61 | + $total = get_option('give_temp_recount_income', false); |
|
| 62 | 62 | |
| 63 | - if ( false === $total ) { |
|
| 63 | + if (false === $total) { |
|
| 64 | 64 | $total = (float) 0; |
| 65 | - $this->store_data( 'give_temp_recount_income', $total ); |
|
| 65 | + $this->store_data('give_temp_recount_income', $total); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - $accepted_statuses = apply_filters( 'give_recount_accepted_statuses', array( 'publish' ) ); |
|
| 68 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish')); |
|
| 69 | 69 | |
| 70 | - $args = apply_filters( 'give_recount_income_args', array( |
|
| 70 | + $args = apply_filters('give_recount_income_args', array( |
|
| 71 | 71 | 'number' => $this->per_step, |
| 72 | 72 | 'page' => $this->step, |
| 73 | 73 | 'status' => $accepted_statuses, |
| 74 | 74 | 'fields' => 'ids' |
| 75 | - ) ); |
|
| 75 | + )); |
|
| 76 | 76 | |
| 77 | - $payments = give_get_payments( $args ); |
|
| 77 | + $payments = give_get_payments($args); |
|
| 78 | 78 | |
| 79 | - if ( ! empty( $payments ) ) { |
|
| 79 | + if ( ! empty($payments)) { |
|
| 80 | 80 | |
| 81 | - foreach ( $payments as $payment ) { |
|
| 81 | + foreach ($payments as $payment) { |
|
| 82 | 82 | |
| 83 | - $total += give_get_payment_amount( $payment ); |
|
| 83 | + $total += give_get_payment_amount($payment); |
|
| 84 | 84 | |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - if ( $total < 0 ) { |
|
| 87 | + if ($total < 0) { |
|
| 88 | 88 | $totals = 0; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - $total = round( $total, give_currency_decimal_filter() ); |
|
| 91 | + $total = round($total, give_currency_decimal_filter()); |
|
| 92 | 92 | |
| 93 | - $this->store_data( 'give_temp_recount_income', $total ); |
|
| 93 | + $this->store_data('give_temp_recount_income', $total); |
|
| 94 | 94 | |
| 95 | 95 | return true; |
| 96 | 96 | |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - update_option( 'give_income_total', $total ); |
|
| 100 | - set_transient( 'give_income_total', $total, 86400 ); |
|
| 99 | + update_option('give_income_total', $total); |
|
| 100 | + set_transient('give_income_total', $total, 86400); |
|
| 101 | 101 | |
| 102 | 102 | return false; |
| 103 | 103 | |
@@ -111,25 +111,25 @@ discard block |
||
| 111 | 111 | */ |
| 112 | 112 | public function get_percentage_complete() { |
| 113 | 113 | |
| 114 | - $total = $this->get_stored_data( 'give_recount_income_total' ); |
|
| 114 | + $total = $this->get_stored_data('give_recount_income_total'); |
|
| 115 | 115 | |
| 116 | - if ( false === $total ) { |
|
| 117 | - $args = apply_filters( 'give_recount_income_total_args', array() ); |
|
| 116 | + if (false === $total) { |
|
| 117 | + $args = apply_filters('give_recount_income_total_args', array()); |
|
| 118 | 118 | |
| 119 | - $counts = give_count_payments( $args ); |
|
| 120 | - $total = absint( $counts->publish ); |
|
| 121 | - $total = apply_filters( 'give_recount_store_income_total', $total ); |
|
| 119 | + $counts = give_count_payments($args); |
|
| 120 | + $total = absint($counts->publish); |
|
| 121 | + $total = apply_filters('give_recount_store_income_total', $total); |
|
| 122 | 122 | |
| 123 | - $this->store_data( 'give_recount_income_total', $total ); |
|
| 123 | + $this->store_data('give_recount_income_total', $total); |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | $percentage = 100; |
| 127 | 127 | |
| 128 | - if ( $total > 0 ) { |
|
| 129 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 128 | + if ($total > 0) { |
|
| 129 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | - if ( $percentage > 100 ) { |
|
| 132 | + if ($percentage > 100) { |
|
| 133 | 133 | $percentage = 100; |
| 134 | 134 | } |
| 135 | 135 | |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | * |
| 144 | 144 | * @param array $request The Form Data passed into the batch processing |
| 145 | 145 | */ |
| 146 | - public function set_properties( $request ) { |
|
| 146 | + public function set_properties($request) { |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -154,31 +154,31 @@ discard block |
||
| 154 | 154 | */ |
| 155 | 155 | public function process_step() { |
| 156 | 156 | |
| 157 | - if ( ! $this->can_export() ) { |
|
| 158 | - wp_die( esc_html__( 'You do not have permission to recount stats.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 157 | + if ( ! $this->can_export()) { |
|
| 158 | + wp_die(esc_html__('You do not have permission to recount stats.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | $had_data = $this->get_data(); |
| 162 | 162 | |
| 163 | - if ( $had_data ) { |
|
| 163 | + if ($had_data) { |
|
| 164 | 164 | $this->done = false; |
| 165 | 165 | |
| 166 | 166 | return true; |
| 167 | 167 | } else { |
| 168 | - $this->delete_data( 'give_recount_income_total' ); |
|
| 169 | - $this->delete_data( 'give_temp_recount_income' ); |
|
| 168 | + $this->delete_data('give_recount_income_total'); |
|
| 169 | + $this->delete_data('give_temp_recount_income'); |
|
| 170 | 170 | $this->done = true; |
| 171 | - $this->message = esc_html__( 'Income stats have been successfully recounted.', 'give' ); |
|
| 171 | + $this->message = esc_html__('Income stats have been successfully recounted.', 'give'); |
|
| 172 | 172 | |
| 173 | 173 | return false; |
| 174 | 174 | } |
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | public function headers() { |
| 178 | - ignore_user_abort( true ); |
|
| 178 | + ignore_user_abort(true); |
|
| 179 | 179 | |
| 180 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 181 | - set_time_limit( 0 ); |
|
| 180 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 181 | + set_time_limit(0); |
|
| 182 | 182 | } |
| 183 | 183 | } |
| 184 | 184 | |
@@ -206,11 +206,11 @@ discard block |
||
| 206 | 206 | * |
| 207 | 207 | * @return mixed Returns the data from the database |
| 208 | 208 | */ |
| 209 | - private function get_stored_data( $key ) { |
|
| 209 | + private function get_stored_data($key) { |
|
| 210 | 210 | global $wpdb; |
| 211 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 211 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 212 | 212 | |
| 213 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 213 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | 216 | /** |
@@ -223,10 +223,10 @@ discard block |
||
| 223 | 223 | * |
| 224 | 224 | * @return void |
| 225 | 225 | */ |
| 226 | - private function store_data( $key, $value ) { |
|
| 226 | + private function store_data($key, $value) { |
|
| 227 | 227 | global $wpdb; |
| 228 | 228 | |
| 229 | - $value = maybe_serialize( $value ); |
|
| 229 | + $value = maybe_serialize($value); |
|
| 230 | 230 | |
| 231 | 231 | $data = array( |
| 232 | 232 | 'option_name' => $key, |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | '%s', |
| 241 | 241 | ); |
| 242 | 242 | |
| 243 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 243 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | /** |
@@ -252,9 +252,9 @@ discard block |
||
| 252 | 252 | * |
| 253 | 253 | * @return void |
| 254 | 254 | */ |
| 255 | - private function delete_data( $key ) { |
|
| 255 | + private function delete_data($key) { |
|
| 256 | 256 | global $wpdb; |
| 257 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 257 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | } |
@@ -206,6 +206,7 @@ |
||
| 206 | 206 | * Set Donor Data |
| 207 | 207 | * |
| 208 | 208 | * @param $donor |
| 209 | + * @param integer $i |
|
| 209 | 210 | */ |
| 210 | 211 | private function set_donor_data( $i, $data, $donor ) { |
| 211 | 212 | |
@@ -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 | |
@@ -46,16 +46,16 @@ discard block |
||
| 46 | 46 | * |
| 47 | 47 | * @param array $request The Form Data passed into the batch processing |
| 48 | 48 | */ |
| 49 | - public function set_properties( $request ) { |
|
| 49 | + public function set_properties($request) { |
|
| 50 | 50 | |
| 51 | 51 | //Set data from form submission |
| 52 | - if ( isset( $_POST['form'] ) ) { |
|
| 53 | - parse_str( $_POST['form'], $this->data ); |
|
| 52 | + if (isset($_POST['form'])) { |
|
| 53 | + parse_str($_POST['form'], $this->data); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | $this->form = $this->data['forms']; |
| 57 | 57 | |
| 58 | - $this->price_id = ! empty( $request['give_price_option'] ) && 0 !== $request['give_price_option'] ? absint( $request['give_price_option'] ) : null; |
|
| 58 | + $this->price_id = ! empty($request['give_price_option']) && 0 !== $request['give_price_option'] ? absint($request['give_price_option']) : null; |
|
| 59 | 59 | |
| 60 | 60 | } |
| 61 | 61 | |
@@ -70,36 +70,36 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | $cols = array(); |
| 72 | 72 | |
| 73 | - $columns = isset( $this->data['give_export_option'] ) ? $this->data['give_export_option'] : array(); |
|
| 73 | + $columns = isset($this->data['give_export_option']) ? $this->data['give_export_option'] : array(); |
|
| 74 | 74 | |
| 75 | - if ( empty( $columns ) ) { |
|
| 75 | + if (empty($columns)) { |
|
| 76 | 76 | return false; |
| 77 | 77 | } |
| 78 | - if ( ! empty( $columns['full_name'] ) ) { |
|
| 79 | - $cols['full_name'] = esc_html__( 'Full Name', 'give' ); |
|
| 78 | + if ( ! empty($columns['full_name'])) { |
|
| 79 | + $cols['full_name'] = esc_html__('Full Name', 'give'); |
|
| 80 | 80 | } |
| 81 | - if ( ! empty( $columns['email'] ) ) { |
|
| 82 | - $cols['email'] = esc_html__( 'Email Address', 'give' ); |
|
| 81 | + if ( ! empty($columns['email'])) { |
|
| 82 | + $cols['email'] = esc_html__('Email Address', 'give'); |
|
| 83 | 83 | } |
| 84 | - if ( ! empty( $columns['address'] ) ) { |
|
| 85 | - $cols['address_line1'] = esc_html__( 'Address 1', 'give' ); |
|
| 86 | - $cols['address_line2'] = esc_html__( 'Address 2', 'give' ); |
|
| 87 | - $cols['address_city'] = esc_html__( 'City', 'give' ); |
|
| 88 | - $cols['address_state'] = esc_html__( 'State', 'give' ); |
|
| 89 | - $cols['address_zip'] = esc_html__( 'Zip', 'give' ); |
|
| 90 | - $cols['address_country'] = esc_html__( 'Country', 'give' ); |
|
| 84 | + if ( ! empty($columns['address'])) { |
|
| 85 | + $cols['address_line1'] = esc_html__('Address 1', 'give'); |
|
| 86 | + $cols['address_line2'] = esc_html__('Address 2', 'give'); |
|
| 87 | + $cols['address_city'] = esc_html__('City', 'give'); |
|
| 88 | + $cols['address_state'] = esc_html__('State', 'give'); |
|
| 89 | + $cols['address_zip'] = esc_html__('Zip', 'give'); |
|
| 90 | + $cols['address_country'] = esc_html__('Country', 'give'); |
|
| 91 | 91 | } |
| 92 | - if ( ! empty( $columns['userid'] ) ) { |
|
| 93 | - $cols['userid'] = esc_html__( 'User ID', 'give' ); |
|
| 92 | + if ( ! empty($columns['userid'])) { |
|
| 93 | + $cols['userid'] = esc_html__('User ID', 'give'); |
|
| 94 | 94 | } |
| 95 | - if ( ! empty( $columns['date_first_donated'] ) ) { |
|
| 96 | - $cols['date_first_donated'] = esc_html__( 'First Donation Date', 'give' ); |
|
| 95 | + if ( ! empty($columns['date_first_donated'])) { |
|
| 96 | + $cols['date_first_donated'] = esc_html__('First Donation Date', 'give'); |
|
| 97 | 97 | } |
| 98 | - if ( ! empty( $columns['donations'] ) ) { |
|
| 99 | - $cols['donations'] = esc_html__( 'Number of Donations', 'give' ); |
|
| 98 | + if ( ! empty($columns['donations'])) { |
|
| 99 | + $cols['donations'] = esc_html__('Number of Donations', 'give'); |
|
| 100 | 100 | } |
| 101 | - if ( ! empty( $columns['donation_sum'] ) ) { |
|
| 102 | - $cols['donation_sum'] = esc_html__( 'Sum of Donations', 'give' ); |
|
| 101 | + if ( ! empty($columns['donation_sum'])) { |
|
| 102 | + $cols['donation_sum'] = esc_html__('Sum of Donations', 'give'); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | return $cols; |
@@ -119,20 +119,20 @@ discard block |
||
| 119 | 119 | |
| 120 | 120 | $i = 0; |
| 121 | 121 | |
| 122 | - if ( ! empty( $this->form ) ) { |
|
| 122 | + if ( ! empty($this->form)) { |
|
| 123 | 123 | |
| 124 | 124 | // Export donors of a specific product |
| 125 | 125 | global $give_logs; |
| 126 | 126 | |
| 127 | 127 | $args = array( |
| 128 | - 'post_parent' => absint( $this->form ), |
|
| 128 | + 'post_parent' => absint($this->form), |
|
| 129 | 129 | 'log_type' => 'sale', |
| 130 | 130 | 'posts_per_page' => 30, |
| 131 | 131 | 'paged' => $this->step |
| 132 | 132 | ); |
| 133 | 133 | |
| 134 | 134 | //Check for price option |
| 135 | - if ( null !== $this->price_id ) { |
|
| 135 | + if (null !== $this->price_id) { |
|
| 136 | 136 | $args['meta_query'] = array( |
| 137 | 137 | array( |
| 138 | 138 | 'key' => '_give_log_price_id', |
@@ -141,33 +141,33 @@ discard block |
||
| 141 | 141 | ); |
| 142 | 142 | } |
| 143 | 143 | |
| 144 | - $logs = $give_logs->get_connected_logs( $args ); |
|
| 144 | + $logs = $give_logs->get_connected_logs($args); |
|
| 145 | 145 | |
| 146 | - if ( $logs ) { |
|
| 147 | - foreach ( $logs as $log ) { |
|
| 148 | - $payment_id = get_post_meta( $log->ID, '_give_log_payment_id', true ); |
|
| 149 | - $payment = new Give_Payment( $payment_id ); |
|
| 150 | - $donor = Give()->customers->get_customer_by( 'id', $payment->customer_id ); |
|
| 151 | - $data[] = $this->set_donor_data( $i, $data, $donor ); |
|
| 152 | - $i ++; |
|
| 146 | + if ($logs) { |
|
| 147 | + foreach ($logs as $log) { |
|
| 148 | + $payment_id = get_post_meta($log->ID, '_give_log_payment_id', true); |
|
| 149 | + $payment = new Give_Payment($payment_id); |
|
| 150 | + $donor = Give()->customers->get_customer_by('id', $payment->customer_id); |
|
| 151 | + $data[] = $this->set_donor_data($i, $data, $donor); |
|
| 152 | + $i++; |
|
| 153 | 153 | } |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | } else { |
| 157 | 157 | |
| 158 | 158 | // Export all customers |
| 159 | - $offset = 30 * ( $this->step - 1 ); |
|
| 160 | - $donors = Give()->customers->get_customers( array( 'number' => 30, 'offset' => $offset ) ); |
|
| 159 | + $offset = 30 * ($this->step - 1); |
|
| 160 | + $donors = Give()->customers->get_customers(array('number' => 30, 'offset' => $offset)); |
|
| 161 | 161 | |
| 162 | - foreach ( $donors as $donor ) { |
|
| 162 | + foreach ($donors as $donor) { |
|
| 163 | 163 | |
| 164 | - $data[] = $this->set_donor_data( $i, $data, $donor ); |
|
| 165 | - $i ++; |
|
| 164 | + $data[] = $this->set_donor_data($i, $data, $donor); |
|
| 165 | + $i++; |
|
| 166 | 166 | } |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - $data = apply_filters( 'give_export_get_data', $data ); |
|
| 170 | - $data = apply_filters( "give_export_get_data_{$this->export_type}", $data ); |
|
| 169 | + $data = apply_filters('give_export_get_data', $data); |
|
| 170 | + $data = apply_filters("give_export_get_data_{$this->export_type}", $data); |
|
| 171 | 171 | |
| 172 | 172 | return $data; |
| 173 | 173 | } |
@@ -183,19 +183,19 @@ discard block |
||
| 183 | 183 | $percentage = 0; |
| 184 | 184 | |
| 185 | 185 | // We can't count the number when getting them for a specific form |
| 186 | - if ( empty( $this->form ) ) { |
|
| 186 | + if (empty($this->form)) { |
|
| 187 | 187 | |
| 188 | 188 | $total = Give()->customers->count(); |
| 189 | 189 | |
| 190 | - if ( $total > 0 ) { |
|
| 190 | + if ($total > 0) { |
|
| 191 | 191 | |
| 192 | - $percentage = ( ( 30 * $this->step ) / $total ) * 100; |
|
| 192 | + $percentage = ((30 * $this->step) / $total) * 100; |
|
| 193 | 193 | |
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | - if ( $percentage > 100 ) { |
|
| 198 | + if ($percentage > 100) { |
|
| 199 | 199 | $percentage = 100; |
| 200 | 200 | } |
| 201 | 201 | |
@@ -207,46 +207,46 @@ discard block |
||
| 207 | 207 | * |
| 208 | 208 | * @param $donor |
| 209 | 209 | */ |
| 210 | - private function set_donor_data( $i, $data, $donor ) { |
|
| 210 | + private function set_donor_data($i, $data, $donor) { |
|
| 211 | 211 | |
| 212 | 212 | $columns = $this->csv_cols(); |
| 213 | 213 | |
| 214 | 214 | //Set address variable |
| 215 | 215 | $address = ''; |
| 216 | - if ( isset( $donor->user_id ) && $donor->user_id > 0 ) { |
|
| 217 | - $address = give_get_donor_address( $donor->user_id ); |
|
| 216 | + if (isset($donor->user_id) && $donor->user_id > 0) { |
|
| 217 | + $address = give_get_donor_address($donor->user_id); |
|
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | //Set columns |
| 221 | - if ( ! empty( $columns['full_name'] ) ) { |
|
| 222 | - $data[ $i ]['full_name'] = $donor->name; |
|
| 221 | + if ( ! empty($columns['full_name'])) { |
|
| 222 | + $data[$i]['full_name'] = $donor->name; |
|
| 223 | 223 | } |
| 224 | - if ( ! empty( $columns['email'] ) ) { |
|
| 225 | - $data[ $i ]['email'] = $donor->email; |
|
| 224 | + if ( ! empty($columns['email'])) { |
|
| 225 | + $data[$i]['email'] = $donor->email; |
|
| 226 | 226 | } |
| 227 | - if ( ! empty( $columns['address_line1'] ) ) { |
|
| 227 | + if ( ! empty($columns['address_line1'])) { |
|
| 228 | 228 | |
| 229 | - $data[ $i ]['address_line1'] = isset( $address['line1'] ) ? $address['line1'] : ''; |
|
| 230 | - $data[ $i ]['address_line2'] = isset( $address['line2'] ) ? $address['line2'] : ''; |
|
| 231 | - $data[ $i ]['address_city'] = isset( $address['city'] ) ? $address['city'] : ''; |
|
| 232 | - $data[ $i ]['address_state'] = isset( $address['state'] ) ? $address['state'] : ''; |
|
| 233 | - $data[ $i ]['address_zip'] = isset( $address['zip'] ) ? $address['zip'] : ''; |
|
| 234 | - $data[ $i ]['address_country'] = isset( $address['country'] ) ? $address['country'] : ''; |
|
| 229 | + $data[$i]['address_line1'] = isset($address['line1']) ? $address['line1'] : ''; |
|
| 230 | + $data[$i]['address_line2'] = isset($address['line2']) ? $address['line2'] : ''; |
|
| 231 | + $data[$i]['address_city'] = isset($address['city']) ? $address['city'] : ''; |
|
| 232 | + $data[$i]['address_state'] = isset($address['state']) ? $address['state'] : ''; |
|
| 233 | + $data[$i]['address_zip'] = isset($address['zip']) ? $address['zip'] : ''; |
|
| 234 | + $data[$i]['address_country'] = isset($address['country']) ? $address['country'] : ''; |
|
| 235 | 235 | } |
| 236 | - if ( ! empty( $columns['userid'] ) ) { |
|
| 237 | - $data[ $i ]['userid'] = ! empty( $donor->user_id ) ? $donor->user_id : ''; |
|
| 236 | + if ( ! empty($columns['userid'])) { |
|
| 237 | + $data[$i]['userid'] = ! empty($donor->user_id) ? $donor->user_id : ''; |
|
| 238 | 238 | } |
| 239 | - if ( ! empty( $columns['date_first_donated'] ) ) { |
|
| 240 | - $data[ $i ]['date_first_donated'] = date_i18n( give_date_format(), strtotime( $donor->date_created ) ); |
|
| 239 | + if ( ! empty($columns['date_first_donated'])) { |
|
| 240 | + $data[$i]['date_first_donated'] = date_i18n(give_date_format(), strtotime($donor->date_created)); |
|
| 241 | 241 | } |
| 242 | - if ( ! empty( $columns['donations'] ) ) { |
|
| 243 | - $data[ $i ]['donations'] = $donor->purchase_count; |
|
| 242 | + if ( ! empty($columns['donations'])) { |
|
| 243 | + $data[$i]['donations'] = $donor->purchase_count; |
|
| 244 | 244 | } |
| 245 | - if ( ! empty( $columns['donation_sum'] ) ) { |
|
| 246 | - $data[ $i ]['donation_sum'] = give_format_amount( $donor->purchase_value ); |
|
| 245 | + if ( ! empty($columns['donation_sum'])) { |
|
| 246 | + $data[$i]['donation_sum'] = give_format_amount($donor->purchase_value); |
|
| 247 | 247 | } |
| 248 | 248 | |
| 249 | - return $data[ $i ]; |
|
| 249 | + return $data[$i]; |
|
| 250 | 250 | |
| 251 | 251 | } |
| 252 | 252 | |
@@ -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 | |
@@ -23,14 +23,14 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | global $typenow; |
| 25 | 25 | |
| 26 | - if ( $typenow != 'give_forms' ) { |
|
| 26 | + if ($typenow != 'give_forms') { |
|
| 27 | 27 | return true; |
| 28 | 28 | } |
| 29 | 29 | |
| 30 | 30 | return false; |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | -add_filter( 'give_shortcode_button_condition', 'give_shortcode_button_condition' ); |
|
| 33 | +add_filter('give_shortcode_button_condition', 'give_shortcode_button_condition'); |
|
| 34 | 34 | |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -40,11 +40,11 @@ discard block |
||
| 40 | 40 | * |
| 41 | 41 | * @return int|false |
| 42 | 42 | */ |
| 43 | -function get_form_id_from_args( $args ) { |
|
| 43 | +function get_form_id_from_args($args) { |
|
| 44 | 44 | |
| 45 | - if ( isset( $args['form_id'] ) && $args['form_id'] != 0 ) { |
|
| 45 | + if (isset($args['form_id']) && $args['form_id'] != 0) { |
|
| 46 | 46 | |
| 47 | - return intval( $args['form_id'] ); |
|
| 47 | + return intval($args['form_id']); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | return false; |
@@ -59,23 +59,23 @@ discard block |
||
| 59 | 59 | * |
| 60 | 60 | * @return bool |
| 61 | 61 | */ |
| 62 | -function give_is_float_labels_enabled( $args ) { |
|
| 62 | +function give_is_float_labels_enabled($args) { |
|
| 63 | 63 | |
| 64 | 64 | $float_labels = ''; |
| 65 | 65 | |
| 66 | - if ( ! empty( $args['float_labels'] ) ) { |
|
| 66 | + if ( ! empty($args['float_labels'])) { |
|
| 67 | 67 | $float_labels = $args['float_labels']; |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | - if ( empty( $float_labels ) ) { |
|
| 71 | - $float_labels = get_post_meta( $args['form_id'], '_give_form_floating_labels', true ); |
|
| 70 | + if (empty($float_labels)) { |
|
| 71 | + $float_labels = get_post_meta($args['form_id'], '_give_form_floating_labels', true); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | - if ( empty( $float_labels ) ) { |
|
| 75 | - $float_labels = give_get_option( 'enable_floatlabels' ) ? 'enabled' : 'disabled'; |
|
| 74 | + if (empty($float_labels)) { |
|
| 75 | + $float_labels = give_get_option('enable_floatlabels') ? 'enabled' : 'disabled'; |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - return ( $float_labels == 'enabled' ) ? true : false; |
|
| 78 | + return ($float_labels == 'enabled') ? true : false; |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | /** |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | |
| 91 | 91 | $can_checkout = true; |
| 92 | 92 | |
| 93 | - return (bool) apply_filters( 'give_can_checkout', $can_checkout ); |
|
| 93 | + return (bool) apply_filters('give_can_checkout', $can_checkout); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | /** |
@@ -103,9 +103,9 @@ discard block |
||
| 103 | 103 | function give_get_success_page_uri() { |
| 104 | 104 | global $give_options; |
| 105 | 105 | |
| 106 | - $success_page = isset( $give_options['success_page'] ) ? get_permalink( absint( $give_options['success_page'] ) ) : get_bloginfo( 'url' ); |
|
| 106 | + $success_page = isset($give_options['success_page']) ? get_permalink(absint($give_options['success_page'])) : get_bloginfo('url'); |
|
| 107 | 107 | |
| 108 | - return apply_filters( 'give_get_success_page_uri', $success_page ); |
|
| 108 | + return apply_filters('give_get_success_page_uri', $success_page); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -116,9 +116,9 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | function give_is_success_page() { |
| 118 | 118 | global $give_options; |
| 119 | - $is_success_page = isset( $give_options['success_page'] ) ? is_page( $give_options['success_page'] ) : false; |
|
| 119 | + $is_success_page = isset($give_options['success_page']) ? is_page($give_options['success_page']) : false; |
|
| 120 | 120 | |
| 121 | - return apply_filters( 'give_is_success_page', $is_success_page ); |
|
| 121 | + return apply_filters('give_is_success_page', $is_success_page); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |
@@ -132,17 +132,17 @@ discard block |
||
| 132 | 132 | * @since 1.0 |
| 133 | 133 | * @return void |
| 134 | 134 | */ |
| 135 | -function give_send_to_success_page( $query_string = null ) { |
|
| 135 | +function give_send_to_success_page($query_string = null) { |
|
| 136 | 136 | |
| 137 | 137 | $redirect = give_get_success_page_uri(); |
| 138 | 138 | |
| 139 | - if ( $query_string ) { |
|
| 139 | + if ($query_string) { |
|
| 140 | 140 | $redirect .= $query_string; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - $gateway = isset( $_REQUEST['give-gateway'] ) ? $_REQUEST['give-gateway'] : ''; |
|
| 143 | + $gateway = isset($_REQUEST['give-gateway']) ? $_REQUEST['give-gateway'] : ''; |
|
| 144 | 144 | |
| 145 | - wp_redirect( apply_filters( 'give_success_page_redirect', $redirect, $gateway, $query_string ) ); |
|
| 145 | + wp_redirect(apply_filters('give_success_page_redirect', $redirect, $gateway, $query_string)); |
|
| 146 | 146 | give_die(); |
| 147 | 147 | } |
| 148 | 148 | |
@@ -159,25 +159,25 @@ discard block |
||
| 159 | 159 | * @since 1.0 |
| 160 | 160 | * @return Void |
| 161 | 161 | */ |
| 162 | -function give_send_back_to_checkout( $args = array() ) { |
|
| 162 | +function give_send_back_to_checkout($args = array()) { |
|
| 163 | 163 | |
| 164 | - $redirect = ( isset( $_POST['give-current-url'] ) ) ? $_POST['give-current-url'] : ''; |
|
| 165 | - $form_id = isset( $_POST['give-form-id'] ) ? $_POST['give-form-id'] : 0; |
|
| 164 | + $redirect = (isset($_POST['give-current-url'])) ? $_POST['give-current-url'] : ''; |
|
| 165 | + $form_id = isset($_POST['give-form-id']) ? $_POST['give-form-id'] : 0; |
|
| 166 | 166 | |
| 167 | 167 | $defaults = array( |
| 168 | 168 | 'form-id' => (int) $form_id |
| 169 | 169 | ); |
| 170 | 170 | |
| 171 | 171 | // Check for backward compatibility |
| 172 | - if ( is_string( $args ) ) { |
|
| 173 | - $args = str_replace( '?', '', $args ); |
|
| 172 | + if (is_string($args)) { |
|
| 173 | + $args = str_replace('?', '', $args); |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - $args = wp_parse_args( $args, $defaults ); |
|
| 176 | + $args = wp_parse_args($args, $defaults); |
|
| 177 | 177 | |
| 178 | - $redirect = add_query_arg( $args, $redirect ) . '#give-form-' . $form_id . '-wrap'; |
|
| 178 | + $redirect = add_query_arg($args, $redirect).'#give-form-'.$form_id.'-wrap'; |
|
| 179 | 179 | |
| 180 | - wp_redirect( apply_filters( 'give_send_back_to_checkout', $redirect, $args ) ); |
|
| 180 | + wp_redirect(apply_filters('give_send_back_to_checkout', $redirect, $args)); |
|
| 181 | 181 | give_die(); |
| 182 | 182 | } |
| 183 | 183 | |
@@ -192,16 +192,16 @@ discard block |
||
| 192 | 192 | * @since 1.0 |
| 193 | 193 | * @return string |
| 194 | 194 | */ |
| 195 | -function give_get_success_page_url( $query_string = null ) { |
|
| 195 | +function give_get_success_page_url($query_string = null) { |
|
| 196 | 196 | |
| 197 | - $success_page = give_get_option( 'success_page', 0 ); |
|
| 198 | - $success_page = get_permalink( $success_page ); |
|
| 197 | + $success_page = give_get_option('success_page', 0); |
|
| 198 | + $success_page = get_permalink($success_page); |
|
| 199 | 199 | |
| 200 | - if ( $query_string ) { |
|
| 200 | + if ($query_string) { |
|
| 201 | 201 | $success_page .= $query_string; |
| 202 | 202 | } |
| 203 | 203 | |
| 204 | - return apply_filters( 'give_success_page_url', $success_page ); |
|
| 204 | + return apply_filters('give_success_page_url', $success_page); |
|
| 205 | 205 | |
| 206 | 206 | } |
| 207 | 207 | |
@@ -215,15 +215,15 @@ discard block |
||
| 215 | 215 | * |
| 216 | 216 | * @return mixed|void Full URL to the Transaction Failed page, if present, home page if it doesn't exist |
| 217 | 217 | */ |
| 218 | -function give_get_failed_transaction_uri( $extras = false ) { |
|
| 218 | +function give_get_failed_transaction_uri($extras = false) { |
|
| 219 | 219 | global $give_options; |
| 220 | 220 | |
| 221 | - $uri = ! empty( $give_options['failure_page'] ) ? trailingslashit( get_permalink( $give_options['failure_page'] ) ) : home_url(); |
|
| 222 | - if ( $extras ) { |
|
| 221 | + $uri = ! empty($give_options['failure_page']) ? trailingslashit(get_permalink($give_options['failure_page'])) : home_url(); |
|
| 222 | + if ($extras) { |
|
| 223 | 223 | $uri .= $extras; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | - return apply_filters( 'give_get_failed_transaction_uri', $uri ); |
|
| 226 | + return apply_filters('give_get_failed_transaction_uri', $uri); |
|
| 227 | 227 | } |
| 228 | 228 | |
| 229 | 229 | /** |
@@ -234,9 +234,9 @@ discard block |
||
| 234 | 234 | */ |
| 235 | 235 | function give_is_failed_transaction_page() { |
| 236 | 236 | global $give_options; |
| 237 | - $ret = isset( $give_options['failure_page'] ) ? is_page( $give_options['failure_page'] ) : false; |
|
| 237 | + $ret = isset($give_options['failure_page']) ? is_page($give_options['failure_page']) : false; |
|
| 238 | 238 | |
| 239 | - return apply_filters( 'give_is_failure_page', $ret ); |
|
| 239 | + return apply_filters('give_is_failure_page', $ret); |
|
| 240 | 240 | } |
| 241 | 241 | |
| 242 | 242 | /** |
@@ -248,18 +248,18 @@ discard block |
||
| 248 | 248 | */ |
| 249 | 249 | function give_listen_for_failed_payments() { |
| 250 | 250 | |
| 251 | - $failed_page = give_get_option( 'failure_page', 0 ); |
|
| 251 | + $failed_page = give_get_option('failure_page', 0); |
|
| 252 | 252 | |
| 253 | - if ( ! empty( $failed_page ) && is_page( $failed_page ) && ! empty( $_GET['payment-id'] ) ) { |
|
| 253 | + if ( ! empty($failed_page) && is_page($failed_page) && ! empty($_GET['payment-id'])) { |
|
| 254 | 254 | |
| 255 | - $payment_id = absint( $_GET['payment-id'] ); |
|
| 256 | - give_update_payment_status( $payment_id, 'failed' ); |
|
| 255 | + $payment_id = absint($_GET['payment-id']); |
|
| 256 | + give_update_payment_status($payment_id, 'failed'); |
|
| 257 | 257 | |
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | -add_action( 'template_redirect', 'give_listen_for_failed_payments' ); |
|
| 262 | +add_action('template_redirect', 'give_listen_for_failed_payments'); |
|
| 263 | 263 | |
| 264 | 264 | |
| 265 | 265 | /** |
@@ -272,11 +272,11 @@ discard block |
||
| 272 | 272 | * @since 1.0 |
| 273 | 273 | * @return bool |
| 274 | 274 | */ |
| 275 | -function give_field_is_required( $field = '', $form_id ) { |
|
| 275 | +function give_field_is_required($field = '', $form_id) { |
|
| 276 | 276 | |
| 277 | - $required_fields = give_purchase_form_required_fields( $form_id ); |
|
| 277 | + $required_fields = give_purchase_form_required_fields($form_id); |
|
| 278 | 278 | |
| 279 | - return array_key_exists( $field, $required_fields ); |
|
| 279 | + return array_key_exists($field, $required_fields); |
|
| 280 | 280 | } |
| 281 | 281 | |
| 282 | 282 | /** |
@@ -294,14 +294,14 @@ discard block |
||
| 294 | 294 | * |
| 295 | 295 | * @return void |
| 296 | 296 | */ |
| 297 | -function give_record_sale_in_log( $give_form_id = 0, $payment_id, $price_id = false, $sale_date = null ) { |
|
| 297 | +function give_record_sale_in_log($give_form_id = 0, $payment_id, $price_id = false, $sale_date = null) { |
|
| 298 | 298 | global $give_logs; |
| 299 | 299 | |
| 300 | 300 | $log_data = array( |
| 301 | 301 | 'post_parent' => $give_form_id, |
| 302 | 302 | 'log_type' => 'sale', |
| 303 | - 'post_date' => isset( $sale_date ) ? $sale_date : null, |
|
| 304 | - 'post_date_gmt' => isset( $sale_date ) ? $sale_date : null |
|
| 303 | + 'post_date' => isset($sale_date) ? $sale_date : null, |
|
| 304 | + 'post_date_gmt' => isset($sale_date) ? $sale_date : null |
|
| 305 | 305 | ); |
| 306 | 306 | |
| 307 | 307 | $log_meta = array( |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | 'price_id' => (int) $price_id |
| 310 | 310 | ); |
| 311 | 311 | |
| 312 | - $give_logs->insert_log( $log_data, $log_meta ); |
|
| 312 | + $give_logs->insert_log($log_data, $log_meta); |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | |
@@ -323,11 +323,11 @@ discard block |
||
| 323 | 323 | * |
| 324 | 324 | * @return bool|int |
| 325 | 325 | */ |
| 326 | -function give_increase_purchase_count( $form_id = 0, $quantity = 1 ) { |
|
| 326 | +function give_increase_purchase_count($form_id = 0, $quantity = 1) { |
|
| 327 | 327 | $quantity = (int) $quantity; |
| 328 | - $form = new Give_Donate_Form( $form_id ); |
|
| 328 | + $form = new Give_Donate_Form($form_id); |
|
| 329 | 329 | |
| 330 | - return $form->increase_sales( $quantity ); |
|
| 330 | + return $form->increase_sales($quantity); |
|
| 331 | 331 | } |
| 332 | 332 | |
| 333 | 333 | /** |
@@ -340,11 +340,11 @@ discard block |
||
| 340 | 340 | * |
| 341 | 341 | * @return bool|int |
| 342 | 342 | */ |
| 343 | -function give_decrease_purchase_count( $form_id = 0, $quantity = 1 ) { |
|
| 343 | +function give_decrease_purchase_count($form_id = 0, $quantity = 1) { |
|
| 344 | 344 | $quantity = (int) $quantity; |
| 345 | - $form = new Give_Donate_Form( $form_id ); |
|
| 345 | + $form = new Give_Donate_Form($form_id); |
|
| 346 | 346 | |
| 347 | - return $form->decrease_sales( $quantity ); |
|
| 347 | + return $form->decrease_sales($quantity); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | /** |
@@ -357,10 +357,10 @@ discard block |
||
| 357 | 357 | * |
| 358 | 358 | * @return bool|int |
| 359 | 359 | */ |
| 360 | -function give_increase_earnings( $give_form_id = 0, $amount ) { |
|
| 361 | - $form = new Give_Donate_Form( $give_form_id ); |
|
| 360 | +function give_increase_earnings($give_form_id = 0, $amount) { |
|
| 361 | + $form = new Give_Donate_Form($give_form_id); |
|
| 362 | 362 | |
| 363 | - return $form->increase_earnings( $amount ); |
|
| 363 | + return $form->increase_earnings($amount); |
|
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | /** |
@@ -373,10 +373,10 @@ discard block |
||
| 373 | 373 | * |
| 374 | 374 | * @return bool|int |
| 375 | 375 | */ |
| 376 | -function give_decrease_earnings( $form_id = 0, $amount ) { |
|
| 377 | - $form = new Give_Donate_Form( $form_id ); |
|
| 376 | +function give_decrease_earnings($form_id = 0, $amount) { |
|
| 377 | + $form = new Give_Donate_Form($form_id); |
|
| 378 | 378 | |
| 379 | - return $form->decrease_earnings( $amount ); |
|
| 379 | + return $form->decrease_earnings($amount); |
|
| 380 | 380 | } |
| 381 | 381 | |
| 382 | 382 | |
@@ -389,8 +389,8 @@ discard block |
||
| 389 | 389 | * |
| 390 | 390 | * @return int $earnings Earnings for a certain form |
| 391 | 391 | */ |
| 392 | -function give_get_form_earnings_stats( $form_id = 0 ) { |
|
| 393 | - $give_form = new Give_Donate_Form( $form_id ); |
|
| 392 | +function give_get_form_earnings_stats($form_id = 0) { |
|
| 393 | + $give_form = new Give_Donate_Form($form_id); |
|
| 394 | 394 | |
| 395 | 395 | return $give_form->earnings; |
| 396 | 396 | } |
@@ -405,8 +405,8 @@ discard block |
||
| 405 | 405 | * |
| 406 | 406 | * @return int $sales Amount of sales for a certain form |
| 407 | 407 | */ |
| 408 | -function give_get_form_sales_stats( $give_form_id = 0 ) { |
|
| 409 | - $give_form = new Give_Donate_Form( $give_form_id ); |
|
| 408 | +function give_get_form_sales_stats($give_form_id = 0) { |
|
| 409 | + $give_form = new Give_Donate_Form($give_form_id); |
|
| 410 | 410 | |
| 411 | 411 | return $give_form->sales; |
| 412 | 412 | } |
@@ -421,16 +421,16 @@ discard block |
||
| 421 | 421 | * |
| 422 | 422 | * @return float $sales Average monthly sales |
| 423 | 423 | */ |
| 424 | -function give_get_average_monthly_form_sales( $form_id = 0 ) { |
|
| 425 | - $sales = give_get_form_sales_stats( $form_id ); |
|
| 426 | - $release_date = get_post_field( 'post_date', $form_id ); |
|
| 424 | +function give_get_average_monthly_form_sales($form_id = 0) { |
|
| 425 | + $sales = give_get_form_sales_stats($form_id); |
|
| 426 | + $release_date = get_post_field('post_date', $form_id); |
|
| 427 | 427 | |
| 428 | - $diff = abs( current_time( 'timestamp' ) - strtotime( $release_date ) ); |
|
| 428 | + $diff = abs(current_time('timestamp') - strtotime($release_date)); |
|
| 429 | 429 | |
| 430 | - $months = floor( $diff / ( 30 * 60 * 60 * 24 ) ); // Number of months since publication |
|
| 430 | + $months = floor($diff / (30 * 60 * 60 * 24)); // Number of months since publication |
|
| 431 | 431 | |
| 432 | - if ( $months > 0 ) { |
|
| 433 | - $sales = ( $sales / $months ); |
|
| 432 | + if ($months > 0) { |
|
| 433 | + $sales = ($sales / $months); |
|
| 434 | 434 | } |
| 435 | 435 | |
| 436 | 436 | return $sales; |
@@ -446,16 +446,16 @@ discard block |
||
| 446 | 446 | * |
| 447 | 447 | * @return float $earnings Average monthly earnings |
| 448 | 448 | */ |
| 449 | -function give_get_average_monthly_form_earnings( $form_id = 0 ) { |
|
| 450 | - $earnings = give_get_form_earnings_stats( $form_id ); |
|
| 451 | - $release_date = get_post_field( 'post_date', $form_id ); |
|
| 449 | +function give_get_average_monthly_form_earnings($form_id = 0) { |
|
| 450 | + $earnings = give_get_form_earnings_stats($form_id); |
|
| 451 | + $release_date = get_post_field('post_date', $form_id); |
|
| 452 | 452 | |
| 453 | - $diff = abs( current_time( 'timestamp' ) - strtotime( $release_date ) ); |
|
| 453 | + $diff = abs(current_time('timestamp') - strtotime($release_date)); |
|
| 454 | 454 | |
| 455 | - $months = floor( $diff / ( 30 * 60 * 60 * 24 ) ); // Number of months since publication |
|
| 455 | + $months = floor($diff / (30 * 60 * 60 * 24)); // Number of months since publication |
|
| 456 | 456 | |
| 457 | - if ( $months > 0 ) { |
|
| 458 | - $earnings = ( $earnings / $months ); |
|
| 457 | + if ($months > 0) { |
|
| 458 | + $earnings = ($earnings / $months); |
|
| 459 | 459 | } |
| 460 | 460 | |
| 461 | 461 | return $earnings < 0 ? 0 : $earnings; |
@@ -475,25 +475,25 @@ discard block |
||
| 475 | 475 | * |
| 476 | 476 | * @return string $price_name Name of the price option |
| 477 | 477 | */ |
| 478 | -function give_get_price_option_name( $form_id = 0, $price_id = 0, $payment_id = 0 ) { |
|
| 478 | +function give_get_price_option_name($form_id = 0, $price_id = 0, $payment_id = 0) { |
|
| 479 | 479 | |
| 480 | - $prices = give_get_variable_prices( $form_id ); |
|
| 480 | + $prices = give_get_variable_prices($form_id); |
|
| 481 | 481 | $price_name = ''; |
| 482 | 482 | |
| 483 | - foreach ( $prices as $price ) { |
|
| 483 | + foreach ($prices as $price) { |
|
| 484 | 484 | |
| 485 | - if ( intval( $price['_give_id']['level_id'] ) == intval( $price_id ) ) { |
|
| 485 | + if (intval($price['_give_id']['level_id']) == intval($price_id)) { |
|
| 486 | 486 | |
| 487 | - $price_text = isset( $price['_give_text'] ) ? $price['_give_text'] : ''; |
|
| 488 | - $price_fallback = give_currency_filter( give_format_amount( $price['_give_amount'] ) ); |
|
| 489 | - $price_name = ! empty( $price_text ) ? $price_text : $price_fallback; |
|
| 487 | + $price_text = isset($price['_give_text']) ? $price['_give_text'] : ''; |
|
| 488 | + $price_fallback = give_currency_filter(give_format_amount($price['_give_amount'])); |
|
| 489 | + $price_name = ! empty($price_text) ? $price_text : $price_fallback; |
|
| 490 | 490 | |
| 491 | 491 | } |
| 492 | 492 | |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | 495 | |
| 496 | - return apply_filters( 'give_get_price_option_name', $price_name, $form_id, $payment_id, $price_id ); |
|
| 496 | + return apply_filters('give_get_price_option_name', $price_name, $form_id, $payment_id, $price_id); |
|
| 497 | 497 | } |
| 498 | 498 | |
| 499 | 499 | |
@@ -506,14 +506,14 @@ discard block |
||
| 506 | 506 | * |
| 507 | 507 | * @return string $range A fully formatted price range |
| 508 | 508 | */ |
| 509 | -function give_price_range( $form_id = 0 ) { |
|
| 510 | - $low = give_get_lowest_price_option( $form_id ); |
|
| 511 | - $high = give_get_highest_price_option( $form_id ); |
|
| 512 | - $range = '<span class="give_price_range_low">' . give_currency_filter( give_format_amount( $low ) ) . '</span>'; |
|
| 509 | +function give_price_range($form_id = 0) { |
|
| 510 | + $low = give_get_lowest_price_option($form_id); |
|
| 511 | + $high = give_get_highest_price_option($form_id); |
|
| 512 | + $range = '<span class="give_price_range_low">'.give_currency_filter(give_format_amount($low)).'</span>'; |
|
| 513 | 513 | $range .= '<span class="give_price_range_sep"> – </span>'; |
| 514 | - $range .= '<span class="give_price_range_high">' . give_currency_filter( give_format_amount( $high ) ) . '</span>'; |
|
| 514 | + $range .= '<span class="give_price_range_high">'.give_currency_filter(give_format_amount($high)).'</span>'; |
|
| 515 | 515 | |
| 516 | - return apply_filters( 'give_price_range', $range, $form_id, $low, $high ); |
|
| 516 | + return apply_filters('give_price_range', $range, $form_id, $low, $high); |
|
| 517 | 517 | } |
| 518 | 518 | |
| 519 | 519 | |
@@ -528,36 +528,36 @@ discard block |
||
| 528 | 528 | * |
| 529 | 529 | * @return int ID of the lowest price |
| 530 | 530 | */ |
| 531 | -function give_get_lowest_price_id( $form_id = 0 ) { |
|
| 531 | +function give_get_lowest_price_id($form_id = 0) { |
|
| 532 | 532 | |
| 533 | - if ( empty( $form_id ) ) { |
|
| 533 | + if (empty($form_id)) { |
|
| 534 | 534 | $form_id = get_the_ID(); |
| 535 | 535 | } |
| 536 | 536 | |
| 537 | - if ( ! give_has_variable_prices( $form_id ) ) { |
|
| 538 | - return give_get_form_price( $form_id ); |
|
| 537 | + if ( ! give_has_variable_prices($form_id)) { |
|
| 538 | + return give_get_form_price($form_id); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | - $prices = give_get_variable_prices( $form_id ); |
|
| 541 | + $prices = give_get_variable_prices($form_id); |
|
| 542 | 542 | |
| 543 | 543 | $low = 0.00; |
| 544 | 544 | $min_id = 1; |
| 545 | 545 | |
| 546 | - if ( ! empty( $prices ) ) { |
|
| 546 | + if ( ! empty($prices)) { |
|
| 547 | 547 | |
| 548 | - foreach ( $prices as $key => $price ) { |
|
| 548 | + foreach ($prices as $key => $price) { |
|
| 549 | 549 | |
| 550 | - if ( empty( $price['_give_amount'] ) ) { |
|
| 550 | + if (empty($price['_give_amount'])) { |
|
| 551 | 551 | continue; |
| 552 | 552 | } |
| 553 | 553 | |
| 554 | - if ( ! isset( $min ) ) { |
|
| 554 | + if ( ! isset($min)) { |
|
| 555 | 555 | $min = $price['_give_amount']; |
| 556 | 556 | } else { |
| 557 | - $min = min( $min, $price['_give_amount'] ); |
|
| 557 | + $min = min($min, $price['_give_amount']); |
|
| 558 | 558 | } |
| 559 | 559 | |
| 560 | - if ( $price['_give_amount'] == $min ) { |
|
| 560 | + if ($price['_give_amount'] == $min) { |
|
| 561 | 561 | $min_id = $price['_give_id']['level_id']; |
| 562 | 562 | } |
| 563 | 563 | } |
@@ -575,43 +575,43 @@ discard block |
||
| 575 | 575 | * |
| 576 | 576 | * @return float Amount of the lowest price |
| 577 | 577 | */ |
| 578 | -function give_get_lowest_price_option( $form_id = 0 ) { |
|
| 579 | - if ( empty( $form_id ) ) { |
|
| 578 | +function give_get_lowest_price_option($form_id = 0) { |
|
| 579 | + if (empty($form_id)) { |
|
| 580 | 580 | $form_id = get_the_ID(); |
| 581 | 581 | } |
| 582 | 582 | |
| 583 | - if ( ! give_has_variable_prices( $form_id ) ) { |
|
| 584 | - return give_get_form_price( $form_id ); |
|
| 583 | + if ( ! give_has_variable_prices($form_id)) { |
|
| 584 | + return give_get_form_price($form_id); |
|
| 585 | 585 | } |
| 586 | 586 | |
| 587 | - $prices = give_get_variable_prices( $form_id ); |
|
| 587 | + $prices = give_get_variable_prices($form_id); |
|
| 588 | 588 | |
| 589 | 589 | $low = 0.00; |
| 590 | 590 | |
| 591 | - if ( ! empty( $prices ) ) { |
|
| 591 | + if ( ! empty($prices)) { |
|
| 592 | 592 | |
| 593 | - foreach ( $prices as $key => $price ) { |
|
| 593 | + foreach ($prices as $key => $price) { |
|
| 594 | 594 | |
| 595 | - if ( empty( $price['_give_amount'] ) ) { |
|
| 595 | + if (empty($price['_give_amount'])) { |
|
| 596 | 596 | continue; |
| 597 | 597 | } |
| 598 | 598 | |
| 599 | - if ( ! isset( $min ) ) { |
|
| 599 | + if ( ! isset($min)) { |
|
| 600 | 600 | $min = $price['_give_amount']; |
| 601 | 601 | } else { |
| 602 | - $min = min( $min, give_sanitize_amount( $price['_give_amount'] ) ); |
|
| 602 | + $min = min($min, give_sanitize_amount($price['_give_amount'])); |
|
| 603 | 603 | } |
| 604 | 604 | |
| 605 | - if ( $price['_give_amount'] == $min ) { |
|
| 605 | + if ($price['_give_amount'] == $min) { |
|
| 606 | 606 | $min_id = $key; |
| 607 | 607 | } |
| 608 | 608 | } |
| 609 | 609 | |
| 610 | - $low = $prices[ $min_id ]['_give_amount']; |
|
| 610 | + $low = $prices[$min_id]['_give_amount']; |
|
| 611 | 611 | |
| 612 | 612 | } |
| 613 | 613 | |
| 614 | - return give_sanitize_amount( $low ); |
|
| 614 | + return give_sanitize_amount($low); |
|
| 615 | 615 | } |
| 616 | 616 | |
| 617 | 617 | /** |
@@ -623,41 +623,41 @@ discard block |
||
| 623 | 623 | * |
| 624 | 624 | * @return float Amount of the highest price |
| 625 | 625 | */ |
| 626 | -function give_get_highest_price_option( $form_id = 0 ) { |
|
| 626 | +function give_get_highest_price_option($form_id = 0) { |
|
| 627 | 627 | |
| 628 | - if ( empty( $form_id ) ) { |
|
| 628 | + if (empty($form_id)) { |
|
| 629 | 629 | $form_id = get_the_ID(); |
| 630 | 630 | } |
| 631 | 631 | |
| 632 | - if ( ! give_has_variable_prices( $form_id ) ) { |
|
| 633 | - return give_get_form_price( $form_id ); |
|
| 632 | + if ( ! give_has_variable_prices($form_id)) { |
|
| 633 | + return give_get_form_price($form_id); |
|
| 634 | 634 | } |
| 635 | 635 | |
| 636 | - $prices = give_get_variable_prices( $form_id ); |
|
| 636 | + $prices = give_get_variable_prices($form_id); |
|
| 637 | 637 | |
| 638 | 638 | $high = 0.00; |
| 639 | 639 | |
| 640 | - if ( ! empty( $prices ) ) { |
|
| 640 | + if ( ! empty($prices)) { |
|
| 641 | 641 | |
| 642 | 642 | $max = 0; |
| 643 | 643 | |
| 644 | - foreach ( $prices as $key => $price ) { |
|
| 645 | - if ( empty( $price['_give_amount'] ) ) { |
|
| 644 | + foreach ($prices as $key => $price) { |
|
| 645 | + if (empty($price['_give_amount'])) { |
|
| 646 | 646 | continue; |
| 647 | 647 | } |
| 648 | - $give_amount = give_sanitize_amount( $price['_give_amount'] ); |
|
| 648 | + $give_amount = give_sanitize_amount($price['_give_amount']); |
|
| 649 | 649 | |
| 650 | - $max = max( $max, $give_amount ); |
|
| 650 | + $max = max($max, $give_amount); |
|
| 651 | 651 | |
| 652 | - if ( $give_amount == $max ) { |
|
| 652 | + if ($give_amount == $max) { |
|
| 653 | 653 | $max_id = $key; |
| 654 | 654 | } |
| 655 | 655 | } |
| 656 | 656 | |
| 657 | - $high = $prices[ $max_id ]['_give_amount']; |
|
| 657 | + $high = $prices[$max_id]['_give_amount']; |
|
| 658 | 658 | } |
| 659 | 659 | |
| 660 | - return give_sanitize_amount( $high ); |
|
| 660 | + return give_sanitize_amount($high); |
|
| 661 | 661 | } |
| 662 | 662 | |
| 663 | 663 | /** |
@@ -669,15 +669,15 @@ discard block |
||
| 669 | 669 | * |
| 670 | 670 | * @return mixed string|int Price of the form |
| 671 | 671 | */ |
| 672 | -function give_get_form_price( $form_id = 0 ) { |
|
| 672 | +function give_get_form_price($form_id = 0) { |
|
| 673 | 673 | |
| 674 | - if ( empty( $form_id ) ) { |
|
| 674 | + if (empty($form_id)) { |
|
| 675 | 675 | return false; |
| 676 | 676 | } |
| 677 | 677 | |
| 678 | - $form = new Give_Donate_Form( $form_id ); |
|
| 678 | + $form = new Give_Donate_Form($form_id); |
|
| 679 | 679 | |
| 680 | - return $form->__get( 'price' ); |
|
| 680 | + return $form->__get('price'); |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | /** |
@@ -689,15 +689,15 @@ discard block |
||
| 689 | 689 | * |
| 690 | 690 | * @return mixed string|int Minimum price of the form |
| 691 | 691 | */ |
| 692 | -function give_get_form_minimum_price( $form_id = 0 ) { |
|
| 692 | +function give_get_form_minimum_price($form_id = 0) { |
|
| 693 | 693 | |
| 694 | - if ( empty( $form_id ) ) { |
|
| 694 | + if (empty($form_id)) { |
|
| 695 | 695 | return false; |
| 696 | 696 | } |
| 697 | 697 | |
| 698 | - $form = new Give_Donate_Form( $form_id ); |
|
| 698 | + $form = new Give_Donate_Form($form_id); |
|
| 699 | 699 | |
| 700 | - return $form->__get( 'minimum_price' ); |
|
| 700 | + return $form->__get('minimum_price'); |
|
| 701 | 701 | |
| 702 | 702 | } |
| 703 | 703 | |
@@ -712,52 +712,52 @@ discard block |
||
| 712 | 712 | * |
| 713 | 713 | * @return int $formatted_price |
| 714 | 714 | */ |
| 715 | -function give_price( $form_id = 0, $echo = true, $price_id = false ) { |
|
| 715 | +function give_price($form_id = 0, $echo = true, $price_id = false) { |
|
| 716 | 716 | |
| 717 | - if ( empty( $form_id ) ) { |
|
| 717 | + if (empty($form_id)) { |
|
| 718 | 718 | $form_id = get_the_ID(); |
| 719 | 719 | } |
| 720 | 720 | |
| 721 | - if ( give_has_variable_prices( $form_id ) ) { |
|
| 721 | + if (give_has_variable_prices($form_id)) { |
|
| 722 | 722 | |
| 723 | - $prices = give_get_variable_prices( $form_id ); |
|
| 723 | + $prices = give_get_variable_prices($form_id); |
|
| 724 | 724 | |
| 725 | - if ( false !== $price_id ) { |
|
| 725 | + if (false !== $price_id) { |
|
| 726 | 726 | |
| 727 | 727 | //loop through multi-prices to see which is default |
| 728 | - foreach ( $prices as $price ) { |
|
| 728 | + foreach ($prices as $price) { |
|
| 729 | 729 | //this is the default price |
| 730 | - if ( isset( $price['_give_default'] ) && $price['_give_default'] === 'default' ) { |
|
| 730 | + if (isset($price['_give_default']) && $price['_give_default'] === 'default') { |
|
| 731 | 731 | $price = (float) $price['_give_amount']; |
| 732 | 732 | }; |
| 733 | 733 | } |
| 734 | 734 | |
| 735 | 735 | } else { |
| 736 | 736 | |
| 737 | - $price = give_get_lowest_price_option( $form_id ); |
|
| 737 | + $price = give_get_lowest_price_option($form_id); |
|
| 738 | 738 | } |
| 739 | 739 | |
| 740 | - $price = give_sanitize_amount( $price ); |
|
| 740 | + $price = give_sanitize_amount($price); |
|
| 741 | 741 | |
| 742 | 742 | } else { |
| 743 | 743 | |
| 744 | - $price = give_get_form_price( $form_id ); |
|
| 744 | + $price = give_get_form_price($form_id); |
|
| 745 | 745 | |
| 746 | 746 | } |
| 747 | 747 | |
| 748 | - $price = apply_filters( 'give_form_price', give_sanitize_amount( $price ), $form_id ); |
|
| 749 | - $formatted_price = '<span class="give_price" id="give_price_' . $form_id . '">' . $price . '</span>'; |
|
| 750 | - $formatted_price = apply_filters( 'give_form_price_after_html', $formatted_price, $form_id, $price ); |
|
| 748 | + $price = apply_filters('give_form_price', give_sanitize_amount($price), $form_id); |
|
| 749 | + $formatted_price = '<span class="give_price" id="give_price_'.$form_id.'">'.$price.'</span>'; |
|
| 750 | + $formatted_price = apply_filters('give_form_price_after_html', $formatted_price, $form_id, $price); |
|
| 751 | 751 | |
| 752 | - if ( $echo ) { |
|
| 752 | + if ($echo) { |
|
| 753 | 753 | echo $formatted_price; |
| 754 | 754 | } else { |
| 755 | 755 | return $formatted_price; |
| 756 | 756 | } |
| 757 | 757 | } |
| 758 | 758 | |
| 759 | -add_filter( 'give_form_price', 'give_format_amount', 10 ); |
|
| 760 | -add_filter( 'give_form_price', 'give_currency_filter', 20 ); |
|
| 759 | +add_filter('give_form_price', 'give_format_amount', 10); |
|
| 760 | +add_filter('give_form_price', 'give_currency_filter', 20); |
|
| 761 | 761 | |
| 762 | 762 | |
| 763 | 763 | /** |
@@ -771,18 +771,18 @@ discard block |
||
| 771 | 771 | * |
| 772 | 772 | * @return float $amount Amount of the price option |
| 773 | 773 | */ |
| 774 | -function give_get_price_option_amount( $form_id = 0, $price_id = 0 ) { |
|
| 775 | - $prices = give_get_variable_prices( $form_id ); |
|
| 774 | +function give_get_price_option_amount($form_id = 0, $price_id = 0) { |
|
| 775 | + $prices = give_get_variable_prices($form_id); |
|
| 776 | 776 | |
| 777 | 777 | $amount = 0.00; |
| 778 | 778 | |
| 779 | - foreach ( $prices as $price ) { |
|
| 780 | - if ( isset( $price['_give_id']['level_id'] ) && $price['_give_id']['level_id'] == $price_id ) { |
|
| 781 | - $amount = isset( $price['_give_amount'] ) ? $price['_give_amount'] : 0.00; |
|
| 779 | + foreach ($prices as $price) { |
|
| 780 | + if (isset($price['_give_id']['level_id']) && $price['_give_id']['level_id'] == $price_id) { |
|
| 781 | + $amount = isset($price['_give_amount']) ? $price['_give_amount'] : 0.00; |
|
| 782 | 782 | }; |
| 783 | 783 | } |
| 784 | 784 | |
| 785 | - return apply_filters( 'give_get_price_option_amount', give_sanitize_amount( $amount ), $form_id, $price_id ); |
|
| 785 | + return apply_filters('give_get_price_option_amount', give_sanitize_amount($amount), $form_id, $price_id); |
|
| 786 | 786 | } |
| 787 | 787 | |
| 788 | 788 | /** |
@@ -794,13 +794,13 @@ discard block |
||
| 794 | 794 | * |
| 795 | 795 | * @return mixed string|int Goal of the form |
| 796 | 796 | */ |
| 797 | -function give_get_form_goal( $form_id = 0 ) { |
|
| 797 | +function give_get_form_goal($form_id = 0) { |
|
| 798 | 798 | |
| 799 | - if ( empty( $form_id ) ) { |
|
| 799 | + if (empty($form_id)) { |
|
| 800 | 800 | return false; |
| 801 | 801 | } |
| 802 | 802 | |
| 803 | - $form = new Give_Donate_Form( $form_id ); |
|
| 803 | + $form = new Give_Donate_Form($form_id); |
|
| 804 | 804 | |
| 805 | 805 | return $form->goal; |
| 806 | 806 | |
@@ -816,27 +816,27 @@ discard block |
||
| 816 | 816 | * |
| 817 | 817 | * @return string $formatted_goal |
| 818 | 818 | */ |
| 819 | -function give_goal( $form_id = 0, $echo = true ) { |
|
| 819 | +function give_goal($form_id = 0, $echo = true) { |
|
| 820 | 820 | |
| 821 | - if ( empty( $form_id ) ) { |
|
| 821 | + if (empty($form_id)) { |
|
| 822 | 822 | $form_id = get_the_ID(); |
| 823 | 823 | } |
| 824 | 824 | |
| 825 | - $goal = give_get_form_goal( $form_id ); |
|
| 825 | + $goal = give_get_form_goal($form_id); |
|
| 826 | 826 | |
| 827 | - $goal = apply_filters( 'give_form_goal', give_sanitize_amount( $goal ), $form_id ); |
|
| 828 | - $formatted_goal = '<span class="give_price" id="give_price_' . $form_id . '">' . $goal . '</span>'; |
|
| 829 | - $formatted_goal = apply_filters( 'give_form_price_after_html', $formatted_goal, $form_id, $goal ); |
|
| 827 | + $goal = apply_filters('give_form_goal', give_sanitize_amount($goal), $form_id); |
|
| 828 | + $formatted_goal = '<span class="give_price" id="give_price_'.$form_id.'">'.$goal.'</span>'; |
|
| 829 | + $formatted_goal = apply_filters('give_form_price_after_html', $formatted_goal, $form_id, $goal); |
|
| 830 | 830 | |
| 831 | - if ( $echo ) { |
|
| 831 | + if ($echo) { |
|
| 832 | 832 | echo $formatted_goal; |
| 833 | 833 | } else { |
| 834 | 834 | return $formatted_goal; |
| 835 | 835 | } |
| 836 | 836 | } |
| 837 | 837 | |
| 838 | -add_filter( 'give_form_goal', 'give_format_amount', 10 ); |
|
| 839 | -add_filter( 'give_form_goal', 'give_currency_filter', 20 ); |
|
| 838 | +add_filter('give_form_goal', 'give_format_amount', 10); |
|
| 839 | +add_filter('give_form_goal', 'give_currency_filter', 20); |
|
| 840 | 840 | |
| 841 | 841 | |
| 842 | 842 | /** |
@@ -846,13 +846,13 @@ discard block |
||
| 846 | 846 | * @global $give_options |
| 847 | 847 | * @return bool $ret Whether or not the logged_in_only setting is set |
| 848 | 848 | */ |
| 849 | -function give_logged_in_only( $form_id ) { |
|
| 849 | +function give_logged_in_only($form_id) { |
|
| 850 | 850 | |
| 851 | - $form_option = get_post_meta( $form_id, '_give_logged_in_only', true ); |
|
| 851 | + $form_option = get_post_meta($form_id, '_give_logged_in_only', true); |
|
| 852 | 852 | |
| 853 | - $ret = ! empty( $form_option ) ? $form_option : false; |
|
| 853 | + $ret = ! empty($form_option) ? $form_option : false; |
|
| 854 | 854 | |
| 855 | - return (bool) apply_filters( 'give_logged_in_only', $ret, $form_id ); |
|
| 855 | + return (bool) apply_filters('give_logged_in_only', $ret, $form_id); |
|
| 856 | 856 | |
| 857 | 857 | } |
| 858 | 858 | |
@@ -864,10 +864,10 @@ discard block |
||
| 864 | 864 | * |
| 865 | 865 | * @param $form_id |
| 866 | 866 | */ |
| 867 | -function give_show_login_register_option( $form_id ) { |
|
| 867 | +function give_show_login_register_option($form_id) { |
|
| 868 | 868 | |
| 869 | - $show_register_form = get_post_meta( $form_id, '_give_show_register_form', true ); |
|
| 869 | + $show_register_form = get_post_meta($form_id, '_give_show_register_form', true); |
|
| 870 | 870 | |
| 871 | - return apply_filters( 'give_show_register_form', $show_register_form, $form_id ); |
|
| 871 | + return apply_filters('give_show_register_form', $show_register_form, $form_id); |
|
| 872 | 872 | |
| 873 | 873 | } |
| 874 | 874 | \ No newline at end of file |
@@ -781,7 +781,7 @@ |
||
| 781 | 781 | foreach ( $prices as $price ) { |
| 782 | 782 | if ( isset( $price['_give_id']['level_id'] ) && $price['_give_id']['level_id'] == $price_id ) { |
| 783 | 783 | $amount = isset( $price['_give_amount'] ) ? $price['_give_amount'] : 0.00; |
| 784 | - break; |
|
| 784 | + break; |
|
| 785 | 785 | }; |
| 786 | 786 | } |
| 787 | 787 | |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | * Used to redirect a user back to the purchase |
| 157 | 157 | * page if there are errors present. |
| 158 | 158 | * |
| 159 | - * @param array $args |
|
| 159 | + * @param string $args |
|
| 160 | 160 | * |
| 161 | 161 | * @access public |
| 162 | 162 | * @since 1.0 |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | * |
| 391 | 391 | * @param int $form_id Give Form ID |
| 392 | 392 | * |
| 393 | - * @return int $earnings Earnings for a certain form |
|
| 393 | + * @return double $earnings Earnings for a certain form |
|
| 394 | 394 | */ |
| 395 | 395 | function give_get_form_earnings_stats( $form_id = 0 ) { |
| 396 | 396 | $give_form = new Give_Donate_Form( $form_id ); |