@@ -304,7 +304,6 @@ |
||
304 | 304 | * @access public |
305 | 305 | * @since 1.0 |
306 | 306 | * |
307 | - * @param array $item Contains all the data of the discount code |
|
308 | 307 | * @param string $column_name The name of the column |
309 | 308 | * |
310 | 309 | * @return string Column Name |
@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
13 | +if ( ! defined('ABSPATH')) { |
|
14 | 14 | exit; |
15 | 15 | } |
16 | 16 | |
17 | 17 | // Load WP_List_Table if not loaded |
18 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
19 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
18 | +if ( ! class_exists('WP_List_Table')) { |
|
19 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | /** |
@@ -120,37 +120,37 @@ discard block |
||
120 | 120 | global $status, $page; |
121 | 121 | |
122 | 122 | // Set parent defaults |
123 | - parent::__construct( array( |
|
124 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
125 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
123 | + parent::__construct(array( |
|
124 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
125 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
126 | 126 | 'ajax' => false // Does this table support ajax? |
127 | - ) ); |
|
127 | + )); |
|
128 | 128 | |
129 | 129 | $this->get_payment_counts(); |
130 | 130 | $this->process_bulk_action(); |
131 | - $this->base_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); |
|
131 | + $this->base_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history'); |
|
132 | 132 | } |
133 | 133 | |
134 | 134 | public function advanced_filters() { |
135 | - $start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null; |
|
136 | - $end_date = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : null; |
|
137 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : ''; |
|
135 | + $start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null; |
|
136 | + $end_date = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : null; |
|
137 | + $status = isset($_GET['status']) ? $_GET['status'] : ''; |
|
138 | 138 | ?> |
139 | 139 | <div id="give-payment-filters"> |
140 | 140 | <span id="give-payment-date-filters"> |
141 | - <label for="start-date" class="give-start-date-label"><?php _e( 'Start Date:', 'give' ); ?></label> |
|
141 | + <label for="start-date" class="give-start-date-label"><?php _e('Start Date:', 'give'); ?></label> |
|
142 | 142 | <input type="text" id="start-date" name="start-date" class="give_datepicker" value="<?php echo $start_date; ?>" placeholder="mm/dd/yyyy"/> |
143 | - <label for="end-date" class="give-end-date-label"><?php _e( 'End Date:', 'give' ); ?></label> |
|
143 | + <label for="end-date" class="give-end-date-label"><?php _e('End Date:', 'give'); ?></label> |
|
144 | 144 | <input type="text" id="end-date" name="end-date" class="give_datepicker" value="<?php echo $end_date; ?>" placeholder="mm/dd/yyyy"/> |
145 | - <input type="submit" class="button-secondary" value="<?php _e( 'Apply', 'give' ); ?>"/> |
|
145 | + <input type="submit" class="button-secondary" value="<?php _e('Apply', 'give'); ?>"/> |
|
146 | 146 | </span> |
147 | - <?php if ( ! empty( $status ) ) : ?> |
|
148 | - <input type="hidden" name="status" value="<?php echo esc_attr( $status ); ?>"/> |
|
147 | + <?php if ( ! empty($status)) : ?> |
|
148 | + <input type="hidden" name="status" value="<?php echo esc_attr($status); ?>"/> |
|
149 | 149 | <?php endif; ?> |
150 | - <?php if ( ! empty( $start_date ) || ! empty( $end_date ) ) : ?> |
|
151 | - <a href="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>" class="button-secondary"><?php _e( 'Clear Filter', 'give' ); ?></a> |
|
150 | + <?php if ( ! empty($start_date) || ! empty($end_date)) : ?> |
|
151 | + <a href="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>" class="button-secondary"><?php _e('Clear Filter', 'give'); ?></a> |
|
152 | 152 | <?php endif; ?> |
153 | - <?php $this->search_box( __( 'Search', 'give' ), 'give-payments' ); ?> |
|
153 | + <?php $this->search_box(__('Search', 'give'), 'give-payments'); ?> |
|
154 | 154 | </div> |
155 | 155 | |
156 | 156 | <?php |
@@ -167,25 +167,25 @@ discard block |
||
167 | 167 | * |
168 | 168 | * @return void |
169 | 169 | */ |
170 | - public function search_box( $text, $input_id ) { |
|
171 | - if ( empty( $_REQUEST['s'] ) && ! $this->has_items() ) { |
|
170 | + public function search_box($text, $input_id) { |
|
171 | + if (empty($_REQUEST['s']) && ! $this->has_items()) { |
|
172 | 172 | return; |
173 | 173 | } |
174 | 174 | |
175 | - $input_id = $input_id . '-search-input'; |
|
175 | + $input_id = $input_id.'-search-input'; |
|
176 | 176 | |
177 | - if ( ! empty( $_REQUEST['orderby'] ) ) { |
|
178 | - echo '<input type="hidden" name="orderby" value="' . esc_attr( $_REQUEST['orderby'] ) . '" />'; |
|
177 | + if ( ! empty($_REQUEST['orderby'])) { |
|
178 | + echo '<input type="hidden" name="orderby" value="'.esc_attr($_REQUEST['orderby']).'" />'; |
|
179 | 179 | } |
180 | - if ( ! empty( $_REQUEST['order'] ) ) { |
|
181 | - echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />'; |
|
180 | + if ( ! empty($_REQUEST['order'])) { |
|
181 | + echo '<input type="hidden" name="order" value="'.esc_attr($_REQUEST['order']).'" />'; |
|
182 | 182 | } |
183 | 183 | ?> |
184 | 184 | <p class="search-box"> |
185 | - <?php do_action( 'give_payment_history_search' ); ?> |
|
185 | + <?php do_action('give_payment_history_search'); ?> |
|
186 | 186 | <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label> |
187 | 187 | <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>"/> |
188 | - <?php submit_button( $text, 'button', false, false, array( 'ID' => 'search-submit' ) ); ?><br/> |
|
188 | + <?php submit_button($text, 'button', false, false, array('ID' => 'search-submit')); ?><br/> |
|
189 | 189 | </p> |
190 | 190 | <?php |
191 | 191 | } |
@@ -199,52 +199,52 @@ discard block |
||
199 | 199 | */ |
200 | 200 | public function get_views() { |
201 | 201 | |
202 | - $current = isset( $_GET['status'] ) ? $_GET['status'] : ''; |
|
203 | - $total_count = ' <span class="count">(' . $this->total_count . ')</span>'; |
|
204 | - $complete_count = ' <span class="count">(' . $this->complete_count . ')</span>'; |
|
205 | - $cancelled_count = ' <span class="count">(' . $this->cancelled_count . ')</span>'; |
|
206 | - $pending_count = ' <span class="count">(' . $this->pending_count . ')</span>'; |
|
207 | - $refunded_count = ' <span class="count">(' . $this->refunded_count . ')</span>'; |
|
208 | - $failed_count = ' <span class="count">(' . $this->failed_count . ')</span>'; |
|
209 | - $abandoned_count = ' <span class="count">(' . $this->abandoned_count . ')</span>'; |
|
210 | - $revoked_count = ' <span class="count">(' . $this->revoked_count . ')</span>'; |
|
202 | + $current = isset($_GET['status']) ? $_GET['status'] : ''; |
|
203 | + $total_count = ' <span class="count">('.$this->total_count.')</span>'; |
|
204 | + $complete_count = ' <span class="count">('.$this->complete_count.')</span>'; |
|
205 | + $cancelled_count = ' <span class="count">('.$this->cancelled_count.')</span>'; |
|
206 | + $pending_count = ' <span class="count">('.$this->pending_count.')</span>'; |
|
207 | + $refunded_count = ' <span class="count">('.$this->refunded_count.')</span>'; |
|
208 | + $failed_count = ' <span class="count">('.$this->failed_count.')</span>'; |
|
209 | + $abandoned_count = ' <span class="count">('.$this->abandoned_count.')</span>'; |
|
210 | + $revoked_count = ' <span class="count">('.$this->revoked_count.')</span>'; |
|
211 | 211 | |
212 | 212 | $views = array( |
213 | - 'all' => sprintf( '<a href="%s"%s>%s</a>', remove_query_arg( array( |
|
213 | + 'all' => sprintf('<a href="%s"%s>%s</a>', remove_query_arg(array( |
|
214 | 214 | 'status', |
215 | 215 | 'paged' |
216 | - ) ), $current === 'all' || $current == '' ? ' class="current"' : '', __( 'All', 'give' ) . $total_count ), |
|
217 | - 'publish' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
216 | + )), $current === 'all' || $current == '' ? ' class="current"' : '', __('All', 'give').$total_count), |
|
217 | + 'publish' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
218 | 218 | 'status' => 'publish', |
219 | 219 | 'paged' => false |
220 | - ) ) ), $current === 'publish' ? ' class="current"' : '', __( 'Completed', 'give' ) . $complete_count ), |
|
221 | - 'pending' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
220 | + ))), $current === 'publish' ? ' class="current"' : '', __('Completed', 'give').$complete_count), |
|
221 | + 'pending' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
222 | 222 | 'status' => 'pending', |
223 | 223 | 'paged' => false |
224 | - ) ) ), $current === 'pending' ? ' class="current"' : '', __( 'Pending', 'give' ) . $pending_count ), |
|
225 | - 'refunded' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
224 | + ))), $current === 'pending' ? ' class="current"' : '', __('Pending', 'give').$pending_count), |
|
225 | + 'refunded' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
226 | 226 | 'status' => 'refunded', |
227 | 227 | 'paged' => false |
228 | - ) ) ), $current === 'refunded' ? ' class="current"' : '', __( 'Refunded', 'give' ) . $refunded_count ), |
|
229 | - 'revoked' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
228 | + ))), $current === 'refunded' ? ' class="current"' : '', __('Refunded', 'give').$refunded_count), |
|
229 | + 'revoked' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
230 | 230 | 'status' => 'revoked', |
231 | 231 | 'paged' => false |
232 | - ) ) ), $current === 'revoked' ? ' class="current"' : '', __( 'Revoked', 'give' ) . $revoked_count ), |
|
233 | - 'failed' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
232 | + ))), $current === 'revoked' ? ' class="current"' : '', __('Revoked', 'give').$revoked_count), |
|
233 | + 'failed' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
234 | 234 | 'status' => 'failed', |
235 | 235 | 'paged' => false |
236 | - ) ) ), $current === 'failed' ? ' class="current"' : '', __( 'Failed', 'give' ) . $failed_count ), |
|
237 | - 'cancelled' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
236 | + ))), $current === 'failed' ? ' class="current"' : '', __('Failed', 'give').$failed_count), |
|
237 | + 'cancelled' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
238 | 238 | 'status' => 'cancelled', |
239 | 239 | 'paged' => false |
240 | - ) ) ), $current === 'cancelled' ? ' class="current"' : '', __( 'Cancelled', 'give' ) . $cancelled_count ), |
|
241 | - 'abandoned' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
240 | + ))), $current === 'cancelled' ? ' class="current"' : '', __('Cancelled', 'give').$cancelled_count), |
|
241 | + 'abandoned' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
242 | 242 | 'status' => 'abandoned', |
243 | 243 | 'paged' => false |
244 | - ) ) ), $current === 'abandoned' ? ' class="current"' : '', __( 'Abandoned', 'give' ) . $abandoned_count ) |
|
244 | + ))), $current === 'abandoned' ? ' class="current"' : '', __('Abandoned', 'give').$abandoned_count) |
|
245 | 245 | ); |
246 | 246 | |
247 | - return apply_filters( 'give_payments_table_views', $views ); |
|
247 | + return apply_filters('give_payments_table_views', $views); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | /** |
@@ -257,16 +257,16 @@ discard block |
||
257 | 257 | public function get_columns() { |
258 | 258 | $columns = array( |
259 | 259 | 'cb' => '<input type="checkbox" />', //Render a checkbox instead of text |
260 | - 'email' => __( 'Email', 'give' ), |
|
261 | - 'details' => __( 'Details', 'give' ), |
|
262 | - 'amount' => __( 'Amount', 'give' ), |
|
263 | - 'status' => __( 'Status', 'give' ), |
|
264 | - 'date' => __( 'Date', 'give' ), |
|
265 | - 'donor' => __( 'Donor', 'give' ), |
|
266 | - 'ID' => __( 'ID', 'give' ), |
|
260 | + 'email' => __('Email', 'give'), |
|
261 | + 'details' => __('Details', 'give'), |
|
262 | + 'amount' => __('Amount', 'give'), |
|
263 | + 'status' => __('Status', 'give'), |
|
264 | + 'date' => __('Date', 'give'), |
|
265 | + 'donor' => __('Donor', 'give'), |
|
266 | + 'ID' => __('ID', 'give'), |
|
267 | 267 | ); |
268 | 268 | |
269 | - return apply_filters( 'give_payments_table_columns', $columns ); |
|
269 | + return apply_filters('give_payments_table_columns', $columns); |
|
270 | 270 | } |
271 | 271 | |
272 | 272 | /** |
@@ -278,12 +278,12 @@ discard block |
||
278 | 278 | */ |
279 | 279 | public function get_sortable_columns() { |
280 | 280 | $columns = array( |
281 | - 'ID' => array( 'ID', true ), |
|
282 | - 'amount' => array( 'amount', false ), |
|
283 | - 'date' => array( 'date', false ) |
|
281 | + 'ID' => array('ID', true), |
|
282 | + 'amount' => array('amount', false), |
|
283 | + 'date' => array('date', false) |
|
284 | 284 | ); |
285 | 285 | |
286 | - return apply_filters( 'give_payments_table_sortable_columns', $columns ); |
|
286 | + return apply_filters('give_payments_table_sortable_columns', $columns); |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | /** |
@@ -309,32 +309,32 @@ discard block |
||
309 | 309 | * |
310 | 310 | * @return string Column Name |
311 | 311 | */ |
312 | - public function column_default( $payment, $column_name ) { |
|
313 | - switch ( $column_name ) { |
|
312 | + public function column_default($payment, $column_name) { |
|
313 | + switch ($column_name) { |
|
314 | 314 | case 'amount' : |
315 | - $amount = ! empty( $payment->total ) ? $payment->total : 0; |
|
316 | - $value = give_currency_filter( give_format_amount( $amount ), give_get_payment_currency_code( $payment->ID ) ); |
|
315 | + $amount = ! empty($payment->total) ? $payment->total : 0; |
|
316 | + $value = give_currency_filter(give_format_amount($amount), give_get_payment_currency_code($payment->ID)); |
|
317 | 317 | break; |
318 | 318 | case 'date' : |
319 | - $date = strtotime( $payment->date ); |
|
320 | - $value = date_i18n( get_option( 'date_format' ), $date ); |
|
319 | + $date = strtotime($payment->date); |
|
320 | + $value = date_i18n(get_option('date_format'), $date); |
|
321 | 321 | break; |
322 | 322 | case 'status' : |
323 | - $value = '<div class="give-donation-status status-' . sanitize_title( give_get_payment_status( $payment, true ) ) . '"><span class="give-donation-status-icon"></span> ' . give_get_payment_status( $payment, true ) . '</div>'; |
|
324 | - if ( $payment->mode == 'test' ) { |
|
325 | - $value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="' . __( 'This payment was made in test mode', 'give' ) . '">' . __( 'Test', 'give' ) . '</span>'; |
|
323 | + $value = '<div class="give-donation-status status-'.sanitize_title(give_get_payment_status($payment, true)).'"><span class="give-donation-status-icon"></span> '.give_get_payment_status($payment, true).'</div>'; |
|
324 | + if ($payment->mode == 'test') { |
|
325 | + $value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="'.__('This payment was made in test mode', 'give').'">'.__('Test', 'give').'</span>'; |
|
326 | 326 | } |
327 | 327 | break; |
328 | 328 | case 'details' : |
329 | - $value = '<div class="give-payment-details-link-wrap"><a href="' . esc_url( add_query_arg( 'id', $payment->ID, admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details' ) ) ) . '" class="give-payment-details-link button button-small">' . __( 'View Details', 'give' ) . '</a></div>'; |
|
329 | + $value = '<div class="give-payment-details-link-wrap"><a href="'.esc_url(add_query_arg('id', $payment->ID, admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details'))).'" class="give-payment-details-link button button-small">'.__('View Details', 'give').'</a></div>'; |
|
330 | 330 | break; |
331 | 331 | default: |
332 | - $value = isset( $payment->$column_name ) ? $payment->$column_name : ''; |
|
332 | + $value = isset($payment->$column_name) ? $payment->$column_name : ''; |
|
333 | 333 | break; |
334 | 334 | |
335 | 335 | } |
336 | 336 | |
337 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, $column_name ); |
|
337 | + return apply_filters('give_payments_table_column', $value, $payment->ID, $column_name); |
|
338 | 338 | } |
339 | 339 | |
340 | 340 | /** |
@@ -347,40 +347,40 @@ discard block |
||
347 | 347 | * |
348 | 348 | * @return string Data shown in the Email column |
349 | 349 | */ |
350 | - public function column_email( $payment ) { |
|
350 | + public function column_email($payment) { |
|
351 | 351 | |
352 | 352 | $row_actions = array(); |
353 | 353 | |
354 | - $email = give_get_payment_user_email( $payment->ID ); |
|
354 | + $email = give_get_payment_user_email($payment->ID); |
|
355 | 355 | |
356 | 356 | // Add search term string back to base URL |
357 | - $search_terms = ( isset( $_GET['s'] ) ? trim( $_GET['s'] ) : '' ); |
|
358 | - if ( ! empty( $search_terms ) ) { |
|
359 | - $this->base_url = add_query_arg( 's', $search_terms, $this->base_url ); |
|
357 | + $search_terms = (isset($_GET['s']) ? trim($_GET['s']) : ''); |
|
358 | + if ( ! empty($search_terms)) { |
|
359 | + $this->base_url = add_query_arg('s', $search_terms, $this->base_url); |
|
360 | 360 | } |
361 | 361 | |
362 | - if ( give_is_payment_complete( $payment->ID ) && ! empty( $email ) ) { |
|
363 | - $row_actions['email_links'] = '<a href="' . add_query_arg( array( |
|
362 | + if (give_is_payment_complete($payment->ID) && ! empty($email)) { |
|
363 | + $row_actions['email_links'] = '<a href="'.add_query_arg(array( |
|
364 | 364 | 'give-action' => 'email_links', |
365 | 365 | 'purchase_id' => $payment->ID |
366 | - ), $this->base_url ) . '">' . __( 'Resend Donation Receipt', 'give' ) . '</a>'; |
|
366 | + ), $this->base_url).'">'.__('Resend Donation Receipt', 'give').'</a>'; |
|
367 | 367 | |
368 | 368 | } |
369 | 369 | |
370 | - $row_actions['delete'] = '<a href="' . wp_nonce_url( add_query_arg( array( |
|
370 | + $row_actions['delete'] = '<a href="'.wp_nonce_url(add_query_arg(array( |
|
371 | 371 | 'give-action' => 'delete_payment', |
372 | 372 | 'purchase_id' => $payment->ID |
373 | - ), $this->base_url ), 'give_payment_nonce' ) . '">' . __( 'Delete', 'give' ) . '</a>'; |
|
373 | + ), $this->base_url), 'give_payment_nonce').'">'.__('Delete', 'give').'</a>'; |
|
374 | 374 | |
375 | - $row_actions = apply_filters( 'give_payment_row_actions', $row_actions, $payment ); |
|
375 | + $row_actions = apply_filters('give_payment_row_actions', $row_actions, $payment); |
|
376 | 376 | |
377 | - if ( empty($email) ) { |
|
378 | - $email = __( '(unknown)', 'give' ); |
|
377 | + if (empty($email)) { |
|
378 | + $email = __('(unknown)', 'give'); |
|
379 | 379 | } |
380 | 380 | |
381 | - $value = '<span class="give-email-column-value">' . $email . '</span>' . $this->row_actions( $row_actions ); |
|
381 | + $value = '<span class="give-email-column-value">'.$email.'</span>'.$this->row_actions($row_actions); |
|
382 | 382 | |
383 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'email' ); |
|
383 | + return apply_filters('give_payments_table_column', $value, $payment->ID, 'email'); |
|
384 | 384 | } |
385 | 385 | |
386 | 386 | /** |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | * |
394 | 394 | * @return string Displays a checkbox |
395 | 395 | */ |
396 | - public function column_cb( $payment ) { |
|
396 | + public function column_cb($payment) { |
|
397 | 397 | return sprintf( |
398 | 398 | '<input type="checkbox" name="%1$s[]" value="%2$s" />', |
399 | 399 | 'payment', |
@@ -411,8 +411,8 @@ discard block |
||
411 | 411 | * |
412 | 412 | * @return string Displays a checkbox |
413 | 413 | */ |
414 | - public function column_ID( $payment ) { |
|
415 | - return '<span class="give-payment-id">' . give_get_payment_number( $payment->ID ) . '</span>'; |
|
414 | + public function column_ID($payment) { |
|
415 | + return '<span class="give-payment-id">'.give_get_payment_number($payment->ID).'</span>'; |
|
416 | 416 | } |
417 | 417 | |
418 | 418 | /** |
@@ -425,19 +425,19 @@ discard block |
||
425 | 425 | * |
426 | 426 | * @return string Data shown in the User column |
427 | 427 | */ |
428 | - public function column_donor( $payment ) { |
|
428 | + public function column_donor($payment) { |
|
429 | 429 | |
430 | - $customer_id = give_get_payment_customer_id( $payment->ID ); |
|
430 | + $customer_id = give_get_payment_customer_id($payment->ID); |
|
431 | 431 | |
432 | - if( ! empty( $customer_id ) ) { |
|
433 | - $customer = new Give_Customer( $customer_id ); |
|
434 | - $value = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-customers&view=overview&id=$customer_id" ) ) . '">' . $customer->name . '</a>'; |
|
432 | + if ( ! empty($customer_id)) { |
|
433 | + $customer = new Give_Customer($customer_id); |
|
434 | + $value = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-customers&view=overview&id=$customer_id")).'">'.$customer->name.'</a>'; |
|
435 | 435 | } else { |
436 | - $email = give_get_payment_user_email( $payment->ID ); |
|
437 | - $value = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-payment-history&s=$email" ) ) . '">' . __( '(donor missing)', 'give' ) . '</a>'; |
|
436 | + $email = give_get_payment_user_email($payment->ID); |
|
437 | + $value = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-payment-history&s=$email")).'">'.__('(donor missing)', 'give').'</a>'; |
|
438 | 438 | } |
439 | 439 | |
440 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'donor' ); |
|
440 | + return apply_filters('give_payments_table_column', $value, $payment->ID, 'donor'); |
|
441 | 441 | } |
442 | 442 | |
443 | 443 | /** |
@@ -449,18 +449,18 @@ discard block |
||
449 | 449 | */ |
450 | 450 | public function get_bulk_actions() { |
451 | 451 | $actions = array( |
452 | - 'delete' => __( 'Delete', 'give' ), |
|
453 | - 'set-status-publish' => __( 'Set To Completed', 'give' ), |
|
454 | - 'set-status-pending' => __( 'Set To Pending', 'give' ), |
|
455 | - 'set-status-refunded' => __( 'Set To Refunded', 'give' ), |
|
456 | - 'set-status-revoked' => __( 'Set To Revoked', 'give' ), |
|
457 | - 'set-status-failed' => __( 'Set To Failed', 'give' ), |
|
458 | - 'set-status-cancelled' => __( 'Set To Cancelled', 'give' ), |
|
459 | - 'set-status-abandoned' => __( 'Set To Abandoned', 'give' ), |
|
460 | - 'resend-receipt' => __( 'Resend Email Receipts', 'give' ) |
|
452 | + 'delete' => __('Delete', 'give'), |
|
453 | + 'set-status-publish' => __('Set To Completed', 'give'), |
|
454 | + 'set-status-pending' => __('Set To Pending', 'give'), |
|
455 | + 'set-status-refunded' => __('Set To Refunded', 'give'), |
|
456 | + 'set-status-revoked' => __('Set To Revoked', 'give'), |
|
457 | + 'set-status-failed' => __('Set To Failed', 'give'), |
|
458 | + 'set-status-cancelled' => __('Set To Cancelled', 'give'), |
|
459 | + 'set-status-abandoned' => __('Set To Abandoned', 'give'), |
|
460 | + 'resend-receipt' => __('Resend Email Receipts', 'give') |
|
461 | 461 | ); |
462 | 462 | |
463 | - return apply_filters( 'give_payments_table_bulk_actions', $actions ); |
|
463 | + return apply_filters('give_payments_table_bulk_actions', $actions); |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | /** |
@@ -471,61 +471,61 @@ discard block |
||
471 | 471 | * @return void |
472 | 472 | */ |
473 | 473 | public function process_bulk_action() { |
474 | - $ids = isset( $_GET['payment'] ) ? $_GET['payment'] : false; |
|
474 | + $ids = isset($_GET['payment']) ? $_GET['payment'] : false; |
|
475 | 475 | $action = $this->current_action(); |
476 | 476 | |
477 | - if ( ! is_array( $ids ) ) { |
|
478 | - $ids = array( $ids ); |
|
477 | + if ( ! is_array($ids)) { |
|
478 | + $ids = array($ids); |
|
479 | 479 | } |
480 | 480 | |
481 | - if ( empty( $action ) ) { |
|
481 | + if (empty($action)) { |
|
482 | 482 | return; |
483 | 483 | } |
484 | 484 | |
485 | - foreach ( $ids as $id ) { |
|
485 | + foreach ($ids as $id) { |
|
486 | 486 | |
487 | 487 | // Detect when a bulk action is being triggered... |
488 | - if ( 'delete' === $this->current_action() ) { |
|
489 | - give_delete_purchase( $id ); |
|
488 | + if ('delete' === $this->current_action()) { |
|
489 | + give_delete_purchase($id); |
|
490 | 490 | } |
491 | 491 | |
492 | - if ( 'set-status-publish' === $this->current_action() ) { |
|
493 | - give_update_payment_status( $id, 'publish' ); |
|
492 | + if ('set-status-publish' === $this->current_action()) { |
|
493 | + give_update_payment_status($id, 'publish'); |
|
494 | 494 | } |
495 | 495 | |
496 | - if ( 'set-status-pending' === $this->current_action() ) { |
|
497 | - give_update_payment_status( $id, 'pending' ); |
|
496 | + if ('set-status-pending' === $this->current_action()) { |
|
497 | + give_update_payment_status($id, 'pending'); |
|
498 | 498 | } |
499 | 499 | |
500 | - if ( 'set-status-refunded' === $this->current_action() ) { |
|
501 | - give_update_payment_status( $id, 'refunded' ); |
|
500 | + if ('set-status-refunded' === $this->current_action()) { |
|
501 | + give_update_payment_status($id, 'refunded'); |
|
502 | 502 | } |
503 | 503 | |
504 | - if ( 'set-status-revoked' === $this->current_action() ) { |
|
505 | - give_update_payment_status( $id, 'revoked' ); |
|
504 | + if ('set-status-revoked' === $this->current_action()) { |
|
505 | + give_update_payment_status($id, 'revoked'); |
|
506 | 506 | } |
507 | 507 | |
508 | - if ( 'set-status-failed' === $this->current_action() ) { |
|
509 | - give_update_payment_status( $id, 'failed' ); |
|
508 | + if ('set-status-failed' === $this->current_action()) { |
|
509 | + give_update_payment_status($id, 'failed'); |
|
510 | 510 | } |
511 | 511 | |
512 | - if ( 'set-status-cancelled' === $this->current_action() ) { |
|
513 | - give_update_payment_status( $id, 'cancelled' ); |
|
512 | + if ('set-status-cancelled' === $this->current_action()) { |
|
513 | + give_update_payment_status($id, 'cancelled'); |
|
514 | 514 | } |
515 | 515 | |
516 | - if ( 'set-status-abandoned' === $this->current_action() ) { |
|
517 | - give_update_payment_status( $id, 'abandoned' ); |
|
516 | + if ('set-status-abandoned' === $this->current_action()) { |
|
517 | + give_update_payment_status($id, 'abandoned'); |
|
518 | 518 | } |
519 | 519 | |
520 | - if ( 'set-status-preapproval' === $this->current_action() ) { |
|
521 | - give_update_payment_status( $id, 'preapproval' ); |
|
520 | + if ('set-status-preapproval' === $this->current_action()) { |
|
521 | + give_update_payment_status($id, 'preapproval'); |
|
522 | 522 | } |
523 | 523 | |
524 | - if ( 'resend-receipt' === $this->current_action() ) { |
|
525 | - give_email_donation_receipt( $id, false ); |
|
524 | + if ('resend-receipt' === $this->current_action()) { |
|
525 | + give_email_donation_receipt($id, false); |
|
526 | 526 | } |
527 | 527 | |
528 | - do_action( 'give_payments_table_do_bulk_action', $id, $this->current_action() ); |
|
528 | + do_action('give_payments_table_do_bulk_action', $id, $this->current_action()); |
|
529 | 529 | } |
530 | 530 | |
531 | 531 | } |
@@ -543,27 +543,27 @@ discard block |
||
543 | 543 | |
544 | 544 | $args = array(); |
545 | 545 | |
546 | - if ( isset( $_GET['user'] ) ) { |
|
547 | - $args['user'] = urldecode( $_GET['user'] ); |
|
548 | - } elseif ( isset( $_GET['s'] ) ) { |
|
549 | - $is_user = strpos( $_GET['s'], strtolower( 'user:' ) ) !== false; |
|
550 | - if ( $is_user ) { |
|
551 | - $args['user'] = absint( trim( str_replace( 'user:', '', strtolower( $_GET['s'] ) ) ) ); |
|
552 | - unset( $args['s'] ); |
|
546 | + if (isset($_GET['user'])) { |
|
547 | + $args['user'] = urldecode($_GET['user']); |
|
548 | + } elseif (isset($_GET['s'])) { |
|
549 | + $is_user = strpos($_GET['s'], strtolower('user:')) !== false; |
|
550 | + if ($is_user) { |
|
551 | + $args['user'] = absint(trim(str_replace('user:', '', strtolower($_GET['s'])))); |
|
552 | + unset($args['s']); |
|
553 | 553 | } else { |
554 | - $args['s'] = sanitize_text_field( $_GET['s'] ); |
|
554 | + $args['s'] = sanitize_text_field($_GET['s']); |
|
555 | 555 | } |
556 | 556 | } |
557 | 557 | |
558 | - if ( ! empty( $_GET['start-date'] ) ) { |
|
559 | - $args['start-date'] = urldecode( $_GET['start-date'] ); |
|
558 | + if ( ! empty($_GET['start-date'])) { |
|
559 | + $args['start-date'] = urldecode($_GET['start-date']); |
|
560 | 560 | } |
561 | 561 | |
562 | - if ( ! empty( $_GET['end-date'] ) ) { |
|
563 | - $args['end-date'] = urldecode( $_GET['end-date'] ); |
|
562 | + if ( ! empty($_GET['end-date'])) { |
|
563 | + $args['end-date'] = urldecode($_GET['end-date']); |
|
564 | 564 | } |
565 | 565 | |
566 | - $payment_count = give_count_payments( $args ); |
|
566 | + $payment_count = give_count_payments($args); |
|
567 | 567 | $this->complete_count = $payment_count->publish; |
568 | 568 | $this->pending_count = $payment_count->pending; |
569 | 569 | $this->refunded_count = $payment_count->refunded; |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | $this->cancelled_count = $payment_count->cancelled; |
573 | 573 | $this->abandoned_count = $payment_count->abandoned; |
574 | 574 | |
575 | - foreach ( $payment_count as $count ) { |
|
575 | + foreach ($payment_count as $count) { |
|
576 | 576 | $this->total_count += $count; |
577 | 577 | } |
578 | 578 | } |
@@ -587,26 +587,26 @@ discard block |
||
587 | 587 | public function payments_data() { |
588 | 588 | |
589 | 589 | $per_page = $this->per_page; |
590 | - $orderby = isset( $_GET['orderby'] ) ? urldecode( $_GET['orderby'] ) : 'ID'; |
|
591 | - $order = isset( $_GET['order'] ) ? $_GET['order'] : 'DESC'; |
|
592 | - $user = isset( $_GET['user'] ) ? $_GET['user'] : null; |
|
593 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : give_get_payment_status_keys(); |
|
594 | - $meta_key = isset( $_GET['meta_key'] ) ? $_GET['meta_key'] : null; |
|
595 | - $year = isset( $_GET['year'] ) ? $_GET['year'] : null; |
|
596 | - $month = isset( $_GET['m'] ) ? $_GET['m'] : null; |
|
597 | - $day = isset( $_GET['day'] ) ? $_GET['day'] : null; |
|
598 | - $search = isset( $_GET['s'] ) ? sanitize_text_field( $_GET['s'] ) : null; |
|
599 | - $start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null; |
|
600 | - $end_date = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : $start_date; |
|
601 | - |
|
602 | - if ( ! empty( $search ) ) { |
|
590 | + $orderby = isset($_GET['orderby']) ? urldecode($_GET['orderby']) : 'ID'; |
|
591 | + $order = isset($_GET['order']) ? $_GET['order'] : 'DESC'; |
|
592 | + $user = isset($_GET['user']) ? $_GET['user'] : null; |
|
593 | + $status = isset($_GET['status']) ? $_GET['status'] : give_get_payment_status_keys(); |
|
594 | + $meta_key = isset($_GET['meta_key']) ? $_GET['meta_key'] : null; |
|
595 | + $year = isset($_GET['year']) ? $_GET['year'] : null; |
|
596 | + $month = isset($_GET['m']) ? $_GET['m'] : null; |
|
597 | + $day = isset($_GET['day']) ? $_GET['day'] : null; |
|
598 | + $search = isset($_GET['s']) ? sanitize_text_field($_GET['s']) : null; |
|
599 | + $start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null; |
|
600 | + $end_date = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : $start_date; |
|
601 | + |
|
602 | + if ( ! empty($search)) { |
|
603 | 603 | $status = 'any'; // Force all payment statuses when searching |
604 | 604 | } |
605 | 605 | |
606 | 606 | $args = array( |
607 | 607 | 'output' => 'payments', |
608 | 608 | 'number' => $per_page, |
609 | - 'page' => isset( $_GET['paged'] ) ? $_GET['paged'] : null, |
|
609 | + 'page' => isset($_GET['paged']) ? $_GET['paged'] : null, |
|
610 | 610 | 'orderby' => $orderby, |
611 | 611 | 'order' => $order, |
612 | 612 | 'user' => $user, |
@@ -620,14 +620,14 @@ discard block |
||
620 | 620 | 'end_date' => $end_date, |
621 | 621 | ); |
622 | 622 | |
623 | - if ( is_string( $search ) && false !== strpos( $search, 'txn:' ) ) { |
|
623 | + if (is_string($search) && false !== strpos($search, 'txn:')) { |
|
624 | 624 | |
625 | 625 | $args['search_in_notes'] = true; |
626 | - $args['s'] = trim( str_replace( 'txn:', '', $args['s'] ) ); |
|
626 | + $args['s'] = trim(str_replace('txn:', '', $args['s'])); |
|
627 | 627 | |
628 | 628 | } |
629 | 629 | |
630 | - $p_query = new Give_Payments_Query( $args ); |
|
630 | + $p_query = new Give_Payments_Query($args); |
|
631 | 631 | |
632 | 632 | return $p_query->get_payments(); |
633 | 633 | |
@@ -647,17 +647,17 @@ discard block |
||
647 | 647 | */ |
648 | 648 | public function prepare_items() { |
649 | 649 | |
650 | - wp_reset_vars( array( 'action', 'payment', 'orderby', 'order', 's' ) ); |
|
650 | + wp_reset_vars(array('action', 'payment', 'orderby', 'order', 's')); |
|
651 | 651 | |
652 | 652 | $columns = $this->get_columns(); |
653 | 653 | $hidden = array(); // No hidden columns |
654 | 654 | $sortable = $this->get_sortable_columns(); |
655 | 655 | $data = $this->payments_data(); |
656 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : 'any'; |
|
656 | + $status = isset($_GET['status']) ? $_GET['status'] : 'any'; |
|
657 | 657 | |
658 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
658 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
659 | 659 | |
660 | - switch ( $status ) { |
|
660 | + switch ($status) { |
|
661 | 661 | case 'publish': |
662 | 662 | $total_items = $this->complete_count; |
663 | 663 | break; |
@@ -684,18 +684,18 @@ discard block |
||
684 | 684 | break; |
685 | 685 | default: |
686 | 686 | // Retrieve the count of the non-default-Give status |
687 | - $count = wp_count_posts( 'give_payment' ); |
|
687 | + $count = wp_count_posts('give_payment'); |
|
688 | 688 | $total_items = $count->{$status}; |
689 | 689 | } |
690 | 690 | |
691 | 691 | $this->items = $data; |
692 | 692 | |
693 | - $this->set_pagination_args( array( |
|
693 | + $this->set_pagination_args(array( |
|
694 | 694 | 'total_items' => $total_items, |
695 | 695 | // WE have to calculate the total number of items |
696 | 696 | 'per_page' => $this->per_page, |
697 | 697 | // WE have to determine how many items to show on a page |
698 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
698 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
699 | 699 | // WE have to calculate the total number of pages |
700 | 700 | ) |
701 | 701 | ); |
@@ -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( __( 'You do not have permission to export data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
156 | + if ( ! $this->can_export()) { |
|
157 | + wp_die(__('You do not have permission to export data.', 'give'), __('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 = __( 'Test transactions successfully deleted.', 'give' ); |
|
179 | + $this->message = __('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!!! |
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 $give_logs, $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', 'revoked' ) ); |
|
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', 'revoked')); |
|
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( __( 'You do not have permission to export data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
205 | + if ( ! $this->can_export()) { |
|
206 | + wp_die(__('You do not have permission to export data.', 'give'), __('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 = __( 'Donation form income amounts and donation counts stats successfully recounted.', 'give' ); |
|
222 | + $this->message = __('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', 'revoked' ) ); |
|
269 | - $total = $this->get_stored_data( 'give_temp_recount_all_total' ); |
|
268 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish', 'revoked')); |
|
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 |
@@ -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_customer_payment_statuses', give_get_payment_status_keys() ); |
|
68 | + $allowed_payment_status = apply_filters('give_recount_customer_payment_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 || 'revoked' == $payment->post_status ? true : false; |
108 | - $should_process_payment = apply_filters( 'give_customer_recount_should_process_payment', $should_process_payment, $payment ); |
|
108 | + $should_process_payment = apply_filters('give_customer_recount_should_process_payment', $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( __( 'You do not have permission to export data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
195 | + if ( ! $this->can_export()) { |
|
196 | + wp_die(__('You do not have permission to export data.', 'give'), __('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 = __( 'Donor stats successfully recounted.', 'give' ); |
|
207 | + $this->message = __('Donor stats 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 |
@@ -57,7 +57,7 @@ |
||
57 | 57 | * @since 1.5 |
58 | 58 | * @global object $wpdb Used to query the database using the WordPress |
59 | 59 | * Database API |
60 | - * @return array $data The data for the CSV file |
|
60 | + * @return boolean $data The data for the CSV file |
|
61 | 61 | */ |
62 | 62 | public function get_data() { |
63 | 63 | global $give_logs, $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', 'revoked' ) ); |
|
65 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish', 'revoked')); |
|
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', 'revoked' ) ); |
|
151 | - $total = $this->get_stored_data( 'give_recount_total_' . $this->form_id ); |
|
150 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish', 'revoked')); |
|
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( __( 'You do not have permission to export data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
219 | + if ( ! $this->can_export()) { |
|
220 | + wp_die(__('You do not have permission to export data.', 'give'), __('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( __( 'Donation counts and income amount statistics successfully recounted for "%s".', 'give' ), get_the_title( $this->form_id ) ); |
|
233 | + $this->message = sprintf(__('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 |
@@ -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', 'revoked' ) ); |
|
68 | + $accepted_statuses = apply_filters('give_recount_accepted_statuses', array('publish', 'revoked')); |
|
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 ) + absint( $counts->revoked ); |
|
121 | - $total = apply_filters( 'give_recount_store_income_total', $total ); |
|
119 | + $counts = give_count_payments($args); |
|
120 | + $total = absint($counts->publish) + absint($counts->revoked); |
|
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( __( 'You do not have permission to export data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
157 | + if ( ! $this->can_export()) { |
|
158 | + wp_die(__('You do not have permission to export data.', 'give'), __('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 = __( 'Give income successfully recounted.', 'give' ); |
|
171 | + $this->message = __('Give income 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 | } |
@@ -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 |
@@ -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; |
@@ -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 || 'revoked' == $payment->post_status ? true : false; |
82 | - $should_process_payment = apply_filters( 'give_customer_recount_should_process_payment', $should_process_payment, $payment ); |
|
82 | + $should_process_payment = apply_filters('give_customer_recount_should_process_payment', $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( __( 'You do not have permission to modify this data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
151 | + if ( ! $this->can_export()) { |
|
152 | + wp_die(__('You do not have permission to modify this data.', 'give'), __('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 purchase 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_sholud_increase_count', true, $payment ) ) { |
|
178 | - $purchase_count ++; |
|
176 | + $payment = get_post($payment_id); |
|
177 | + if (apply_filters('give_customer_recount_sholud_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 = __( 'Donor stats successfully recounted.', 'give' ); |
|
196 | + $this->message = __('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_customer_payment_statuses', give_get_payment_status_keys() ); |
|
233 | + if ($this->step === 1) { |
|
234 | + $allowed_payment_status = apply_filters('give_recount_customer_payment_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_post_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_post_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 | } |
@@ -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,16 +55,16 @@ 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 | 'customers' => array(), |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | 'other' => array(), |
73 | 73 | ); |
74 | 74 | |
75 | - foreach ( $step_items as $item ) { |
|
75 | + foreach ($step_items as $item) { |
|
76 | 76 | |
77 | - switch ( $item['type'] ) { |
|
77 | + switch ($item['type']) { |
|
78 | 78 | case 'customer': |
79 | 79 | $step_ids['customers'][] = $item['id']; |
80 | 80 | break; |
@@ -82,8 +82,8 @@ discard block |
||
82 | 82 | $step_ids['give_forms'][] = $item['id']; |
83 | 83 | break; |
84 | 84 | default: |
85 | - $item_type = apply_filters( 'give_reset_item_type', 'other', $item ); |
|
86 | - $step_ids[ $item_type ][] = $item['id']; |
|
85 | + $item_type = apply_filters('give_reset_item_type', 'other', $item); |
|
86 | + $step_ids[$item_type][] = $item['id']; |
|
87 | 87 | break; |
88 | 88 | } |
89 | 89 | |
@@ -91,17 +91,17 @@ discard block |
||
91 | 91 | |
92 | 92 | $sql = array(); |
93 | 93 | |
94 | - foreach ( $step_ids as $type => $ids ) { |
|
94 | + foreach ($step_ids as $type => $ids) { |
|
95 | 95 | |
96 | - if ( empty( $ids ) ) { |
|
96 | + if (empty($ids)) { |
|
97 | 97 | continue; |
98 | 98 | } |
99 | 99 | |
100 | - $ids = implode( ',', $ids ); |
|
100 | + $ids = implode(',', $ids); |
|
101 | 101 | |
102 | - switch ( $type ) { |
|
102 | + switch ($type) { |
|
103 | 103 | case 'customers': |
104 | - $table_name = $wpdb->prefix . 'give_customers'; |
|
104 | + $table_name = $wpdb->prefix.'give_customers'; |
|
105 | 105 | $sql[] = "DELETE FROM $table_name WHERE id IN ($ids)"; |
106 | 106 | break; |
107 | 107 | case 'forms': |
@@ -116,17 +116,17 @@ discard block |
||
116 | 116 | break; |
117 | 117 | } |
118 | 118 | |
119 | - if ( ! in_array( $type, array( 'customers', 'forms', 'other' ) ) ) { |
|
119 | + if ( ! in_array($type, array('customers', 'forms', 'other'))) { |
|
120 | 120 | // Allows other types of custom post types to filter on their own post_type |
121 | 121 | // and add items to the query list, for the IDs found in their post type. |
122 | - $sql = apply_filters( 'give_reset_add_queries_' . $type, $sql, $ids ); |
|
122 | + $sql = apply_filters('give_reset_add_queries_'.$type, $sql, $ids); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | } |
126 | 126 | |
127 | - if ( ! empty( $sql ) ) { |
|
128 | - foreach ( $sql as $query ) { |
|
129 | - $wpdb->query( $query ); |
|
127 | + if ( ! empty($sql)) { |
|
128 | + foreach ($sql as $query) { |
|
129 | + $wpdb->query($query); |
|
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
@@ -146,16 +146,16 @@ discard block |
||
146 | 146 | */ |
147 | 147 | public function get_percentage_complete() { |
148 | 148 | |
149 | - $items = $this->get_stored_data( 'give_temp_reset_ids', false ); |
|
150 | - $total = count( $items ); |
|
149 | + $items = $this->get_stored_data('give_temp_reset_ids', false); |
|
150 | + $total = count($items); |
|
151 | 151 | |
152 | 152 | $percentage = 100; |
153 | 153 | |
154 | - if ( $total > 0 ) { |
|
155 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
154 | + if ($total > 0) { |
|
155 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
156 | 156 | } |
157 | 157 | |
158 | - if ( $percentage > 100 ) { |
|
158 | + if ($percentage > 100) { |
|
159 | 159 | $percentage = 100; |
160 | 160 | } |
161 | 161 | |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | * |
170 | 170 | * @param array $request The Form Data passed into the batch processing |
171 | 171 | */ |
172 | - public function set_properties( $request ) { |
|
172 | + public function set_properties($request) { |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | /** |
@@ -180,30 +180,30 @@ discard block |
||
180 | 180 | */ |
181 | 181 | public function process_step() { |
182 | 182 | |
183 | - if ( ! $this->can_export() ) { |
|
184 | - wp_die( __( 'You do not have permission to export data.', 'give' ), __( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
183 | + if ( ! $this->can_export()) { |
|
184 | + wp_die(__('You do not have permission to export data.', 'give'), __('Error', 'give'), array('response' => 403)); |
|
185 | 185 | } |
186 | 186 | |
187 | 187 | $had_data = $this->get_data(); |
188 | 188 | |
189 | - if ( $had_data ) { |
|
189 | + if ($had_data) { |
|
190 | 190 | $this->done = false; |
191 | 191 | |
192 | 192 | return true; |
193 | 193 | } else { |
194 | - update_option( 'give_earnings_total', 0 ); |
|
195 | - delete_transient( 'give_earnings_total' ); |
|
196 | - delete_transient( 'give_estimated_monthly_stats' . true ); |
|
197 | - delete_transient( 'give_estimated_monthly_stats' . false ); |
|
198 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
194 | + update_option('give_earnings_total', 0); |
|
195 | + delete_transient('give_earnings_total'); |
|
196 | + delete_transient('give_estimated_monthly_stats'.true); |
|
197 | + delete_transient('give_estimated_monthly_stats'.false); |
|
198 | + $this->delete_data('give_temp_reset_ids'); |
|
199 | 199 | |
200 | 200 | // Reset the sequential order numbers |
201 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
202 | - delete_option( 'give_last_payment_number' ); |
|
201 | + if (give_get_option('enable_sequential')) { |
|
202 | + delete_option('give_last_payment_number'); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | $this->done = true; |
206 | - $this->message = __( 'Donation forms, income, donations counts, and logs successfully reset.', 'give' ); |
|
206 | + $this->message = __('Donation forms, income, donations counts, and logs successfully reset.', 'give'); |
|
207 | 207 | |
208 | 208 | return false; |
209 | 209 | } |
@@ -213,10 +213,10 @@ discard block |
||
213 | 213 | * Headers |
214 | 214 | */ |
215 | 215 | public function headers() { |
216 | - ignore_user_abort( true ); |
|
216 | + ignore_user_abort(true); |
|
217 | 217 | |
218 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
219 | - set_time_limit( 0 ); |
|
218 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
219 | + set_time_limit(0); |
|
220 | 220 | } |
221 | 221 | } |
222 | 222 | |
@@ -240,35 +240,35 @@ discard block |
||
240 | 240 | */ |
241 | 241 | public function pre_fetch() { |
242 | 242 | |
243 | - if ( $this->step == 1 ) { |
|
244 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
243 | + if ($this->step == 1) { |
|
244 | + $this->delete_data('give_temp_reset_ids'); |
|
245 | 245 | } |
246 | 246 | |
247 | - $items = get_option( 'give_temp_reset_ids', false ); |
|
247 | + $items = get_option('give_temp_reset_ids', false); |
|
248 | 248 | |
249 | - if ( false === $items ) { |
|
249 | + if (false === $items) { |
|
250 | 250 | $items = array(); |
251 | 251 | |
252 | - $give_types_for_reset = array( 'give_forms', 'give_log', 'give_payment' ); |
|
253 | - $give_types_for_reset = apply_filters( 'give_reset_store_post_types', $give_types_for_reset ); |
|
252 | + $give_types_for_reset = array('give_forms', 'give_log', 'give_payment'); |
|
253 | + $give_types_for_reset = apply_filters('give_reset_store_post_types', $give_types_for_reset); |
|
254 | 254 | |
255 | - $args = apply_filters( 'give_tools_reset_stats_total_args', array( |
|
255 | + $args = apply_filters('give_tools_reset_stats_total_args', array( |
|
256 | 256 | 'post_type' => $give_types_for_reset, |
257 | 257 | 'post_status' => 'any', |
258 | - 'posts_per_page' => - 1, |
|
259 | - ) ); |
|
258 | + 'posts_per_page' => -1, |
|
259 | + )); |
|
260 | 260 | |
261 | - $posts = get_posts( $args ); |
|
262 | - foreach ( $posts as $post ) { |
|
261 | + $posts = get_posts($args); |
|
262 | + foreach ($posts as $post) { |
|
263 | 263 | $items[] = array( |
264 | 264 | 'id' => (int) $post->ID, |
265 | 265 | 'type' => $post->post_type, |
266 | 266 | ); |
267 | 267 | } |
268 | 268 | |
269 | - $customer_args = array( 'number' => - 1 ); |
|
270 | - $customers = Give()->customers->get_customers( $customer_args ); |
|
271 | - foreach ( $customers as $customer ) { |
|
269 | + $customer_args = array('number' => -1); |
|
270 | + $customers = Give()->customers->get_customers($customer_args); |
|
271 | + foreach ($customers as $customer) { |
|
272 | 272 | $items[] = array( |
273 | 273 | 'id' => (int) $customer->id, |
274 | 274 | 'type' => 'customer', |
@@ -277,9 +277,9 @@ discard block |
||
277 | 277 | |
278 | 278 | // Allow filtering of items to remove with an unassociative array for each item |
279 | 279 | // The array contains the unique ID of the item, and a 'type' for you to use in the execution of the get_data method |
280 | - $items = apply_filters( 'give_reset_store_items', $items ); |
|
280 | + $items = apply_filters('give_reset_store_items', $items); |
|
281 | 281 | |
282 | - $this->store_data( 'give_temp_reset_ids', $items ); |
|
282 | + $this->store_data('give_temp_reset_ids', $items); |
|
283 | 283 | } |
284 | 284 | |
285 | 285 | } |
@@ -293,11 +293,11 @@ discard block |
||
293 | 293 | * |
294 | 294 | * @return mixed Returns the data from the database |
295 | 295 | */ |
296 | - private function get_stored_data( $key ) { |
|
296 | + private function get_stored_data($key) { |
|
297 | 297 | global $wpdb; |
298 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
298 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
299 | 299 | |
300 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
300 | + return empty($value) ? false : maybe_unserialize($value); |
|
301 | 301 | } |
302 | 302 | |
303 | 303 | /** |
@@ -310,10 +310,10 @@ discard block |
||
310 | 310 | * |
311 | 311 | * @return void |
312 | 312 | */ |
313 | - private function store_data( $key, $value ) { |
|
313 | + private function store_data($key, $value) { |
|
314 | 314 | global $wpdb; |
315 | 315 | |
316 | - $value = maybe_serialize( $value ); |
|
316 | + $value = maybe_serialize($value); |
|
317 | 317 | |
318 | 318 | $data = array( |
319 | 319 | 'option_name' => $key, |
@@ -327,7 +327,7 @@ discard block |
||
327 | 327 | '%s', |
328 | 328 | ); |
329 | 329 | |
330 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
330 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
331 | 331 | } |
332 | 332 | |
333 | 333 | /** |
@@ -339,9 +339,9 @@ discard block |
||
339 | 339 | * |
340 | 340 | * @return void |
341 | 341 | */ |
342 | - private function delete_data( $key ) { |
|
342 | + private function delete_data($key) { |
|
343 | 343 | global $wpdb; |
344 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
344 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
345 | 345 | } |
346 | 346 | |
347 | 347 | } |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | * |
153 | 153 | * @since 1.0 |
154 | 154 | * |
155 | - * @param $key |
|
155 | + * @param string $key |
|
156 | 156 | * |
157 | 157 | * @return mixed |
158 | 158 | * @throws Exception |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | * |
180 | 180 | * @param array $data Array of attributes for a donation form |
181 | 181 | * |
182 | - * @return mixed false if data isn't passed and class not instantiated for creation, or New Form ID |
|
182 | + * @return boolean false if data isn't passed and class not instantiated for creation, or New Form ID |
|
183 | 183 | */ |
184 | 184 | public function create( $data = array() ) { |
185 | 185 |
@@ -100,12 +100,12 @@ discard block |
||
100 | 100 | * @param bool $_id |
101 | 101 | * @param array $_args |
102 | 102 | */ |
103 | - public function __construct( $_id = false, $_args = array() ) { |
|
103 | + public function __construct($_id = false, $_args = array()) { |
|
104 | 104 | |
105 | 105 | |
106 | - $donation_form = WP_Post::get_instance( $_id ); |
|
106 | + $donation_form = WP_Post::get_instance($_id); |
|
107 | 107 | |
108 | - return $this->setup_donation_form( $donation_form ); |
|
108 | + return $this->setup_donation_form($donation_form); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
@@ -117,23 +117,23 @@ discard block |
||
117 | 117 | * |
118 | 118 | * @return bool If the setup was successful or not |
119 | 119 | */ |
120 | - private function setup_donation_form( $donation_form ) { |
|
120 | + private function setup_donation_form($donation_form) { |
|
121 | 121 | |
122 | - if ( ! is_object( $donation_form ) ) { |
|
122 | + if ( ! is_object($donation_form)) { |
|
123 | 123 | return false; |
124 | 124 | } |
125 | 125 | |
126 | - if ( ! is_a( $donation_form, 'WP_Post' ) ) { |
|
126 | + if ( ! is_a($donation_form, 'WP_Post')) { |
|
127 | 127 | return false; |
128 | 128 | } |
129 | 129 | |
130 | - if ( 'give_forms' !== $donation_form->post_type ) { |
|
130 | + if ('give_forms' !== $donation_form->post_type) { |
|
131 | 131 | return false; |
132 | 132 | } |
133 | 133 | |
134 | - foreach ( $donation_form as $key => $value ) { |
|
134 | + foreach ($donation_form as $key => $value) { |
|
135 | 135 | |
136 | - switch ( $key ) { |
|
136 | + switch ($key) { |
|
137 | 137 | |
138 | 138 | default: |
139 | 139 | $this->$key = $value; |
@@ -157,15 +157,15 @@ discard block |
||
157 | 157 | * @return mixed |
158 | 158 | * @throws Exception |
159 | 159 | */ |
160 | - public function __get( $key ) { |
|
160 | + public function __get($key) { |
|
161 | 161 | |
162 | - if ( method_exists( $this, 'get_' . $key ) ) { |
|
162 | + if (method_exists($this, 'get_'.$key)) { |
|
163 | 163 | |
164 | - return call_user_func( array( $this, 'get_' . $key ) ); |
|
164 | + return call_user_func(array($this, 'get_'.$key)); |
|
165 | 165 | |
166 | 166 | } else { |
167 | 167 | |
168 | - return new WP_Error( 'give-form-invalid-property', sprintf( __( 'Can\'t get property %s', 'give' ), $key ) ); |
|
168 | + return new WP_Error('give-form-invalid-property', sprintf(__('Can\'t get property %s', 'give'), $key)); |
|
169 | 169 | |
170 | 170 | } |
171 | 171 | |
@@ -181,30 +181,30 @@ discard block |
||
181 | 181 | * |
182 | 182 | * @return mixed false if data isn't passed and class not instantiated for creation, or New Form ID |
183 | 183 | */ |
184 | - public function create( $data = array() ) { |
|
184 | + public function create($data = array()) { |
|
185 | 185 | |
186 | - if ( $this->id != 0 ) { |
|
186 | + if ($this->id != 0) { |
|
187 | 187 | return false; |
188 | 188 | } |
189 | 189 | |
190 | 190 | $defaults = array( |
191 | 191 | 'post_type' => 'give_forms', |
192 | 192 | 'post_status' => 'draft', |
193 | - 'post_title' => __( 'New Donation Form', 'give' ) |
|
193 | + 'post_title' => __('New Donation Form', 'give') |
|
194 | 194 | ); |
195 | 195 | |
196 | - $args = wp_parse_args( $data, $defaults ); |
|
196 | + $args = wp_parse_args($data, $defaults); |
|
197 | 197 | |
198 | 198 | /** |
199 | 199 | * Fired before a donation form is created |
200 | 200 | * |
201 | 201 | * @param array $args The post object arguments used for creation. |
202 | 202 | */ |
203 | - do_action( 'give_form_pre_create', $args ); |
|
203 | + do_action('give_form_pre_create', $args); |
|
204 | 204 | |
205 | - $id = wp_insert_post( $args, true ); |
|
205 | + $id = wp_insert_post($args, true); |
|
206 | 206 | |
207 | - $donation_form = WP_Post::get_instance( $id ); |
|
207 | + $donation_form = WP_Post::get_instance($id); |
|
208 | 208 | |
209 | 209 | /** |
210 | 210 | * Fired after a donation form is created |
@@ -212,9 +212,9 @@ discard block |
||
212 | 212 | * @param int $id The post ID of the created item. |
213 | 213 | * @param array $args The post object arguments used for creation. |
214 | 214 | */ |
215 | - do_action( 'give_form_post_create', $id, $args ); |
|
215 | + do_action('give_form_post_create', $id, $args); |
|
216 | 216 | |
217 | - return $this->setup_donation_form( $donation_form ); |
|
217 | + return $this->setup_donation_form($donation_form); |
|
218 | 218 | |
219 | 219 | } |
220 | 220 | |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | * @return string Name of the donation form |
238 | 238 | */ |
239 | 239 | public function get_name() { |
240 | - return get_the_title( $this->ID ); |
|
240 | + return get_the_title($this->ID); |
|
241 | 241 | } |
242 | 242 | |
243 | 243 | /** |
@@ -248,13 +248,13 @@ discard block |
||
248 | 248 | */ |
249 | 249 | public function get_price() { |
250 | 250 | |
251 | - if ( ! isset( $this->price ) ) { |
|
251 | + if ( ! isset($this->price)) { |
|
252 | 252 | |
253 | - $this->price = get_post_meta( $this->ID, '_give_set_price', true ); |
|
253 | + $this->price = get_post_meta($this->ID, '_give_set_price', true); |
|
254 | 254 | |
255 | - if ( $this->price ) { |
|
255 | + if ($this->price) { |
|
256 | 256 | |
257 | - $this->price = give_sanitize_amount( $this->price ); |
|
257 | + $this->price = give_sanitize_amount($this->price); |
|
258 | 258 | |
259 | 259 | } else { |
260 | 260 | |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | * @param string $price The donation form price. |
273 | 273 | * @param string|int $id The form ID. |
274 | 274 | */ |
275 | - return apply_filters( 'give_get_set_price', $this->price, $this->ID ); |
|
275 | + return apply_filters('give_get_set_price', $this->price, $this->ID); |
|
276 | 276 | } |
277 | 277 | |
278 | 278 | /** |
@@ -283,14 +283,14 @@ discard block |
||
283 | 283 | */ |
284 | 284 | public function get_minimum_price() { |
285 | 285 | |
286 | - if ( ! isset( $this->minimum_price ) ) { |
|
286 | + if ( ! isset($this->minimum_price)) { |
|
287 | 287 | |
288 | - $allow_custom_amount = get_post_meta( $this->ID, '_give_custom_amount', true ); |
|
289 | - $this->minimum_price = get_post_meta( $this->ID, '_give_custom_amount_minimum', true ); |
|
288 | + $allow_custom_amount = get_post_meta($this->ID, '_give_custom_amount', true); |
|
289 | + $this->minimum_price = get_post_meta($this->ID, '_give_custom_amount_minimum', true); |
|
290 | 290 | |
291 | - if ( $allow_custom_amount != 'no' && $this->minimum_price ) { |
|
291 | + if ($allow_custom_amount != 'no' && $this->minimum_price) { |
|
292 | 292 | |
293 | - $this->minimum_price = give_sanitize_amount( $this->minimum_price ); |
|
293 | + $this->minimum_price = give_sanitize_amount($this->minimum_price); |
|
294 | 294 | |
295 | 295 | } else { |
296 | 296 | |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | |
301 | 301 | } |
302 | 302 | |
303 | - return apply_filters( 'give_get_set_minimum_price', $this->minimum_price, $this->ID ); |
|
303 | + return apply_filters('give_get_set_minimum_price', $this->minimum_price, $this->ID); |
|
304 | 304 | } |
305 | 305 | |
306 | 306 | /** |
@@ -311,9 +311,9 @@ discard block |
||
311 | 311 | */ |
312 | 312 | public function get_prices() { |
313 | 313 | |
314 | - if ( ! isset( $this->prices ) ) { |
|
314 | + if ( ! isset($this->prices)) { |
|
315 | 315 | |
316 | - $this->prices = get_post_meta( $this->ID, '_give_donation_levels', true ); |
|
316 | + $this->prices = get_post_meta($this->ID, '_give_donation_levels', true); |
|
317 | 317 | |
318 | 318 | } |
319 | 319 | |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | * @param array $prices The array of mulit-level prices. |
326 | 326 | * @param int|string The ID of the form. |
327 | 327 | */ |
328 | - return apply_filters( 'give_get_donation_levels', $this->prices, $this->ID ); |
|
328 | + return apply_filters('give_get_donation_levels', $this->prices, $this->ID); |
|
329 | 329 | |
330 | 330 | } |
331 | 331 | |
@@ -337,13 +337,13 @@ discard block |
||
337 | 337 | */ |
338 | 338 | public function get_goal() { |
339 | 339 | |
340 | - if ( ! isset( $this->goal ) ) { |
|
340 | + if ( ! isset($this->goal)) { |
|
341 | 341 | |
342 | - $this->goal = get_post_meta( $this->ID, '_give_set_goal', true ); |
|
342 | + $this->goal = get_post_meta($this->ID, '_give_set_goal', true); |
|
343 | 343 | |
344 | - if ( $this->goal ) { |
|
344 | + if ($this->goal) { |
|
345 | 345 | |
346 | - $this->goal = give_sanitize_amount( $this->goal ); |
|
346 | + $this->goal = give_sanitize_amount($this->goal); |
|
347 | 347 | |
348 | 348 | } else { |
349 | 349 | |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | |
354 | 354 | } |
355 | 355 | |
356 | - return apply_filters( 'give_get_set_goal', $this->goal, $this->ID ); |
|
356 | + return apply_filters('give_get_set_goal', $this->goal, $this->ID); |
|
357 | 357 | |
358 | 358 | } |
359 | 359 | |
@@ -365,10 +365,10 @@ discard block |
||
365 | 365 | */ |
366 | 366 | public function is_single_price_mode() { |
367 | 367 | |
368 | - $option = get_post_meta( $this->ID, '_give_price_options_mode', true ); |
|
368 | + $option = get_post_meta($this->ID, '_give_price_options_mode', true); |
|
369 | 369 | $ret = 0; |
370 | 370 | |
371 | - if ( empty( $option ) || $option === 'set' ) { |
|
371 | + if (empty($option) || $option === 'set') { |
|
372 | 372 | $ret = 1; |
373 | 373 | } |
374 | 374 | |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | * @param bool $ret Is donation form in single price mode? |
381 | 381 | * @param int|string The ID of the donation form. |
382 | 382 | */ |
383 | - return (bool) apply_filters( 'give_single_price_option_mode', $ret, $this->ID ); |
|
383 | + return (bool) apply_filters('give_single_price_option_mode', $ret, $this->ID); |
|
384 | 384 | |
385 | 385 | } |
386 | 386 | |
@@ -394,10 +394,10 @@ discard block |
||
394 | 394 | */ |
395 | 395 | public function has_variable_prices() { |
396 | 396 | |
397 | - $option = get_post_meta( $this->ID, '_give_price_option', true ); |
|
397 | + $option = get_post_meta($this->ID, '_give_price_option', true); |
|
398 | 398 | $ret = 0; |
399 | 399 | |
400 | - if ( $option === 'multi' ) { |
|
400 | + if ($option === 'multi') { |
|
401 | 401 | $ret = 1; |
402 | 402 | } |
403 | 403 | |
@@ -407,7 +407,7 @@ discard block |
||
407 | 407 | * @param bool $ret Does donation form have variable prices? |
408 | 408 | * @param int|string The ID of the donation form. |
409 | 409 | */ |
410 | - return (bool) apply_filters( 'give_has_variable_prices', $ret, $this->ID ); |
|
410 | + return (bool) apply_filters('give_has_variable_prices', $ret, $this->ID); |
|
411 | 411 | |
412 | 412 | } |
413 | 413 | |
@@ -419,17 +419,17 @@ discard block |
||
419 | 419 | */ |
420 | 420 | public function get_type() { |
421 | 421 | |
422 | - if ( ! isset( $this->type ) ) { |
|
422 | + if ( ! isset($this->type)) { |
|
423 | 423 | |
424 | - $this->type = get_post_meta( $this->ID, '_give_price_option', true ); |
|
424 | + $this->type = get_post_meta($this->ID, '_give_price_option', true); |
|
425 | 425 | |
426 | - if ( empty( $this->type ) ) { |
|
426 | + if (empty($this->type)) { |
|
427 | 427 | $this->type = 'set'; |
428 | 428 | } |
429 | 429 | |
430 | 430 | } |
431 | 431 | |
432 | - return apply_filters( 'give_get_form_type', $this->type, $this->ID ); |
|
432 | + return apply_filters('give_get_form_type', $this->type, $this->ID); |
|
433 | 433 | |
434 | 434 | } |
435 | 435 | |
@@ -441,15 +441,15 @@ discard block |
||
441 | 441 | */ |
442 | 442 | public function get_sales() { |
443 | 443 | |
444 | - if ( ! isset( $this->sales ) ) { |
|
444 | + if ( ! isset($this->sales)) { |
|
445 | 445 | |
446 | - if ( '' == get_post_meta( $this->ID, '_give_form_sales', true ) ) { |
|
447 | - add_post_meta( $this->ID, '_give_form_sales', 0 ); |
|
446 | + if ('' == get_post_meta($this->ID, '_give_form_sales', true)) { |
|
447 | + add_post_meta($this->ID, '_give_form_sales', 0); |
|
448 | 448 | } // End if |
449 | 449 | |
450 | - $this->sales = get_post_meta( $this->ID, '_give_form_sales', true ); |
|
450 | + $this->sales = get_post_meta($this->ID, '_give_form_sales', true); |
|
451 | 451 | |
452 | - if ( $this->sales < 0 ) { |
|
452 | + if ($this->sales < 0) { |
|
453 | 453 | // Never let sales be less than zero |
454 | 454 | $this->sales = 0; |
455 | 455 | } |
@@ -469,13 +469,13 @@ discard block |
||
469 | 469 | * |
470 | 470 | * @return int|false New number of total sales |
471 | 471 | */ |
472 | - public function increase_sales( $quantity = 1 ) { |
|
472 | + public function increase_sales($quantity = 1) { |
|
473 | 473 | |
474 | - $sales = give_get_form_sales_stats( $this->ID ); |
|
475 | - $quantity = absint( $quantity ); |
|
474 | + $sales = give_get_form_sales_stats($this->ID); |
|
475 | + $quantity = absint($quantity); |
|
476 | 476 | $total_sales = $sales + $quantity; |
477 | 477 | |
478 | - if ( $this->update_meta( '_give_form_sales', $total_sales ) ) { |
|
478 | + if ($this->update_meta('_give_form_sales', $total_sales)) { |
|
479 | 479 | |
480 | 480 | $this->sales = $total_sales; |
481 | 481 | |
@@ -495,17 +495,17 @@ discard block |
||
495 | 495 | * |
496 | 496 | * @return int|false New number of total sales |
497 | 497 | */ |
498 | - public function decrease_sales( $quantity = 1 ) { |
|
498 | + public function decrease_sales($quantity = 1) { |
|
499 | 499 | |
500 | - $sales = give_get_form_sales_stats( $this->ID ); |
|
500 | + $sales = give_get_form_sales_stats($this->ID); |
|
501 | 501 | |
502 | 502 | // Only decrease if not already zero |
503 | - if ( $sales > 0 ) { |
|
503 | + if ($sales > 0) { |
|
504 | 504 | |
505 | - $quantity = absint( $quantity ); |
|
505 | + $quantity = absint($quantity); |
|
506 | 506 | $total_sales = $sales - $quantity; |
507 | 507 | |
508 | - if ( $this->update_meta( '_give_form_sales', $total_sales ) ) { |
|
508 | + if ($this->update_meta('_give_form_sales', $total_sales)) { |
|
509 | 509 | |
510 | 510 | $this->sales = $sales; |
511 | 511 | |
@@ -527,15 +527,15 @@ discard block |
||
527 | 527 | */ |
528 | 528 | public function get_earnings() { |
529 | 529 | |
530 | - if ( ! isset( $this->earnings ) ) { |
|
530 | + if ( ! isset($this->earnings)) { |
|
531 | 531 | |
532 | - if ( '' == get_post_meta( $this->ID, '_give_form_earnings', true ) ) { |
|
533 | - add_post_meta( $this->ID, '_give_form_earnings', 0 ); |
|
532 | + if ('' == get_post_meta($this->ID, '_give_form_earnings', true)) { |
|
533 | + add_post_meta($this->ID, '_give_form_earnings', 0); |
|
534 | 534 | } |
535 | 535 | |
536 | - $this->earnings = get_post_meta( $this->ID, '_give_form_earnings', true ); |
|
536 | + $this->earnings = get_post_meta($this->ID, '_give_form_earnings', true); |
|
537 | 537 | |
538 | - if ( $this->earnings < 0 ) { |
|
538 | + if ($this->earnings < 0) { |
|
539 | 539 | // Never let earnings be less than zero |
540 | 540 | $this->earnings = 0; |
541 | 541 | } |
@@ -552,12 +552,12 @@ discard block |
||
552 | 552 | * @since 1.0 |
553 | 553 | * @return float|false |
554 | 554 | */ |
555 | - public function increase_earnings( $amount = 0 ) { |
|
555 | + public function increase_earnings($amount = 0) { |
|
556 | 556 | |
557 | - $earnings = give_get_form_earnings_stats( $this->ID ); |
|
557 | + $earnings = give_get_form_earnings_stats($this->ID); |
|
558 | 558 | $new_amount = $earnings + (float) $amount; |
559 | 559 | |
560 | - if ( $this->update_meta( '_give_form_earnings', $new_amount ) ) { |
|
560 | + if ($this->update_meta('_give_form_earnings', $new_amount)) { |
|
561 | 561 | |
562 | 562 | $this->earnings = $new_amount; |
563 | 563 | |
@@ -575,16 +575,16 @@ discard block |
||
575 | 575 | * @since 1.0 |
576 | 576 | * @return float|false |
577 | 577 | */ |
578 | - public function decrease_earnings( $amount ) { |
|
578 | + public function decrease_earnings($amount) { |
|
579 | 579 | |
580 | - $earnings = give_get_form_earnings_stats( $this->ID ); |
|
580 | + $earnings = give_get_form_earnings_stats($this->ID); |
|
581 | 581 | |
582 | - if ( $earnings > 0 ) { |
|
582 | + if ($earnings > 0) { |
|
583 | 583 | // Only decrease if greater than zero |
584 | 584 | $new_amount = $earnings - (float) $amount; |
585 | 585 | |
586 | 586 | |
587 | - if ( $this->update_meta( '_give_form_earnings', $new_amount ) ) { |
|
587 | + if ($this->update_meta('_give_form_earnings', $new_amount)) { |
|
588 | 588 | |
589 | 589 | $this->earnings = $new_amount; |
590 | 590 | |
@@ -604,22 +604,22 @@ discard block |
||
604 | 604 | * @since 1.0 |
605 | 605 | * @return bool |
606 | 606 | */ |
607 | - public function is_free( $price_id = false ) { |
|
607 | + public function is_free($price_id = false) { |
|
608 | 608 | |
609 | 609 | $is_free = false; |
610 | - $variable_pricing = give_has_variable_prices( $this->ID ); |
|
610 | + $variable_pricing = give_has_variable_prices($this->ID); |
|
611 | 611 | |
612 | - if ( $variable_pricing && ! is_null( $price_id ) && $price_id !== false ) { |
|
613 | - $price = give_get_price_option_amount( $this->ID, $price_id ); |
|
614 | - } elseif ( ! $variable_pricing ) { |
|
615 | - $price = get_post_meta( $this->ID, '_give_set_price', true ); |
|
612 | + if ($variable_pricing && ! is_null($price_id) && $price_id !== false) { |
|
613 | + $price = give_get_price_option_amount($this->ID, $price_id); |
|
614 | + } elseif ( ! $variable_pricing) { |
|
615 | + $price = get_post_meta($this->ID, '_give_set_price', true); |
|
616 | 616 | } |
617 | 617 | |
618 | - if ( isset( $price ) && (float) $price == 0 ) { |
|
618 | + if (isset($price) && (float) $price == 0) { |
|
619 | 619 | $is_free = true; |
620 | 620 | } |
621 | 621 | |
622 | - return (bool) apply_filters( 'give_is_free_donation', $is_free, $this->ID, $price_id ); |
|
622 | + return (bool) apply_filters('give_is_free_donation', $is_free, $this->ID, $price_id); |
|
623 | 623 | |
624 | 624 | } |
625 | 625 | |
@@ -635,28 +635,28 @@ discard block |
||
635 | 635 | * |
636 | 636 | * @return bool The result of the update query |
637 | 637 | */ |
638 | - private function update_meta( $meta_key = '', $meta_value = '' ) { |
|
638 | + private function update_meta($meta_key = '', $meta_value = '') { |
|
639 | 639 | |
640 | 640 | global $wpdb; |
641 | 641 | |
642 | - if ( empty( $meta_key ) || empty( $meta_value ) ) { |
|
642 | + if (empty($meta_key) || empty($meta_value)) { |
|
643 | 643 | return false; |
644 | 644 | } |
645 | 645 | |
646 | 646 | // Make sure if it needs to be serialized, we do |
647 | - $meta_value = maybe_serialize( $meta_value ); |
|
647 | + $meta_value = maybe_serialize($meta_value); |
|
648 | 648 | |
649 | - if ( is_numeric( $meta_value ) ) { |
|
650 | - $value_type = is_float( $meta_value ) ? '%f' : '%d'; |
|
649 | + if (is_numeric($meta_value)) { |
|
650 | + $value_type = is_float($meta_value) ? '%f' : '%d'; |
|
651 | 651 | } else { |
652 | 652 | $value_type = "'%s'"; |
653 | 653 | } |
654 | 654 | |
655 | - $sql = $wpdb->prepare( "UPDATE $wpdb->postmeta SET meta_value = $value_type WHERE post_id = $this->ID AND meta_key = '%s'", $meta_value, $meta_key ); |
|
655 | + $sql = $wpdb->prepare("UPDATE $wpdb->postmeta SET meta_value = $value_type WHERE post_id = $this->ID AND meta_key = '%s'", $meta_value, $meta_key); |
|
656 | 656 | |
657 | - if ( $wpdb->query( $sql ) ) { |
|
657 | + if ($wpdb->query($sql)) { |
|
658 | 658 | |
659 | - clean_post_cache( $this->ID ); |
|
659 | + clean_post_cache($this->ID); |
|
660 | 660 | |
661 | 661 | return true; |
662 | 662 |