@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | 14 | // Exit if accessed directly. |
| 15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 15 | +if ( ! defined('ABSPATH')) { |
|
| 16 | 16 | exit; |
| 17 | 17 | } |
| 18 | 18 | |
@@ -39,30 +39,30 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | public function csv_cols() { |
| 41 | 41 | $cols = array( |
| 42 | - 'id' => esc_html__( 'ID', 'give' ), // unaltered payment ID (use for querying). |
|
| 43 | - 'seq_id' => esc_html__( 'Payment Number', 'give' ), // sequential payment ID. |
|
| 44 | - 'email' => esc_html__( 'Email', 'give' ), |
|
| 45 | - 'first' => esc_html__( 'First Name', 'give' ), |
|
| 46 | - 'last' => esc_html__( 'Last Name', 'give' ), |
|
| 47 | - 'address1' => esc_html__( 'Address 1', 'give' ), |
|
| 48 | - 'address2' => esc_html__( 'Address 2', 'give' ), |
|
| 49 | - 'city' => esc_html__( 'City', 'give' ), |
|
| 50 | - 'state' => esc_html__( 'State', 'give' ), |
|
| 51 | - 'country' => esc_html__( 'Country', 'give' ), |
|
| 52 | - 'zip' => esc_html__( 'Zip / Postal Code', 'give' ), |
|
| 53 | - 'form_id' => esc_html__( 'Form ID', 'give' ), |
|
| 54 | - 'form_name' => esc_html__( 'Form Name', 'give' ), |
|
| 55 | - 'amount' => esc_html__( 'Amount', 'give' ) . ' (' . html_entity_decode( give_currency_filter( '' ) ) . ')', |
|
| 56 | - 'gateway' => esc_html__( 'Payment Method', 'give' ), |
|
| 57 | - 'trans_id' => esc_html__( 'Transaction ID', 'give' ), |
|
| 58 | - 'key' => esc_html__( 'Key', 'give' ), |
|
| 59 | - 'date' => esc_html__( 'Date', 'give' ), |
|
| 60 | - 'user' => esc_html__( 'User', 'give' ), |
|
| 61 | - 'status' => esc_html__( 'Status', 'give' ) |
|
| 42 | + 'id' => esc_html__('ID', 'give'), // unaltered payment ID (use for querying). |
|
| 43 | + 'seq_id' => esc_html__('Payment Number', 'give'), // sequential payment ID. |
|
| 44 | + 'email' => esc_html__('Email', 'give'), |
|
| 45 | + 'first' => esc_html__('First Name', 'give'), |
|
| 46 | + 'last' => esc_html__('Last Name', 'give'), |
|
| 47 | + 'address1' => esc_html__('Address 1', 'give'), |
|
| 48 | + 'address2' => esc_html__('Address 2', 'give'), |
|
| 49 | + 'city' => esc_html__('City', 'give'), |
|
| 50 | + 'state' => esc_html__('State', 'give'), |
|
| 51 | + 'country' => esc_html__('Country', 'give'), |
|
| 52 | + 'zip' => esc_html__('Zip / Postal Code', 'give'), |
|
| 53 | + 'form_id' => esc_html__('Form ID', 'give'), |
|
| 54 | + 'form_name' => esc_html__('Form Name', 'give'), |
|
| 55 | + 'amount' => esc_html__('Amount', 'give').' ('.html_entity_decode(give_currency_filter('')).')', |
|
| 56 | + 'gateway' => esc_html__('Payment Method', 'give'), |
|
| 57 | + 'trans_id' => esc_html__('Transaction ID', 'give'), |
|
| 58 | + 'key' => esc_html__('Key', 'give'), |
|
| 59 | + 'date' => esc_html__('Date', 'give'), |
|
| 60 | + 'user' => esc_html__('User', 'give'), |
|
| 61 | + 'status' => esc_html__('Status', 'give') |
|
| 62 | 62 | ); |
| 63 | 63 | |
| 64 | - if ( ! give_get_option( 'enable_sequential' ) ) { |
|
| 65 | - unset( $cols['seq_id'] ); |
|
| 64 | + if ( ! give_get_option('enable_sequential')) { |
|
| 65 | + unset($cols['seq_id']); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | return $cols; |
@@ -87,12 +87,12 @@ discard block |
||
| 87 | 87 | 'status' => $this->status |
| 88 | 88 | ); |
| 89 | 89 | |
| 90 | - if ( ! empty( $this->start ) || ! empty( $this->end ) ) { |
|
| 90 | + if ( ! empty($this->start) || ! empty($this->end)) { |
|
| 91 | 91 | |
| 92 | 92 | $args['date_query'] = array( |
| 93 | 93 | array( |
| 94 | - 'after' => date( 'Y-n-d 00:00:00', strtotime( $this->start ) ), |
|
| 95 | - 'before' => date( 'Y-n-d 23:59:59', strtotime( $this->end ) ), |
|
| 94 | + 'after' => date('Y-n-d 00:00:00', strtotime($this->start)), |
|
| 95 | + 'before' => date('Y-n-d 23:59:59', strtotime($this->end)), |
|
| 96 | 96 | 'inclusive' => true |
| 97 | 97 | ) |
| 98 | 98 | ); |
@@ -101,52 +101,52 @@ discard block |
||
| 101 | 101 | |
| 102 | 102 | //echo json_encode($args ); exit; |
| 103 | 103 | |
| 104 | - $payments = give_get_payments( $args ); |
|
| 104 | + $payments = give_get_payments($args); |
|
| 105 | 105 | |
| 106 | - if ( $payments ) { |
|
| 106 | + if ($payments) { |
|
| 107 | 107 | |
| 108 | - foreach ( $payments as $payment ) { |
|
| 109 | - $payment_meta = give_get_payment_meta( $payment->ID ); |
|
| 110 | - $user_info = give_get_payment_meta_user_info( $payment->ID ); |
|
| 111 | - $total = give_get_payment_amount( $payment->ID ); |
|
| 112 | - $user_id = isset( $user_info['id'] ) && $user_info['id'] != - 1 ? $user_info['id'] : $user_info['email']; |
|
| 108 | + foreach ($payments as $payment) { |
|
| 109 | + $payment_meta = give_get_payment_meta($payment->ID); |
|
| 110 | + $user_info = give_get_payment_meta_user_info($payment->ID); |
|
| 111 | + $total = give_get_payment_amount($payment->ID); |
|
| 112 | + $user_id = isset($user_info['id']) && $user_info['id'] != - 1 ? $user_info['id'] : $user_info['email']; |
|
| 113 | 113 | $products = ''; |
| 114 | 114 | $skus = ''; |
| 115 | 115 | |
| 116 | - if ( is_numeric( $user_id ) ) { |
|
| 117 | - $user = get_userdata( $user_id ); |
|
| 116 | + if (is_numeric($user_id)) { |
|
| 117 | + $user = get_userdata($user_id); |
|
| 118 | 118 | } else { |
| 119 | 119 | $user = false; |
| 120 | 120 | } |
| 121 | 121 | |
| 122 | 122 | $data[] = array( |
| 123 | 123 | 'id' => $payment->ID, |
| 124 | - 'seq_id' => give_get_payment_number( $payment->ID ), |
|
| 124 | + 'seq_id' => give_get_payment_number($payment->ID), |
|
| 125 | 125 | 'email' => $payment_meta['email'], |
| 126 | 126 | 'first' => $user_info['first_name'], |
| 127 | 127 | 'last' => $user_info['last_name'], |
| 128 | - 'address1' => isset( $user_info['address']['line1'] ) ? $user_info['address']['line1'] : '', |
|
| 129 | - 'address2' => isset( $user_info['address']['line2'] ) ? $user_info['address']['line2'] : '', |
|
| 130 | - 'city' => isset( $user_info['address']['city'] ) ? $user_info['address']['city'] : '', |
|
| 131 | - 'state' => isset( $user_info['address']['state'] ) ? $user_info['address']['state'] : '', |
|
| 132 | - 'country' => isset( $user_info['address']['country'] ) ? $user_info['address']['country'] : '', |
|
| 133 | - 'zip' => isset( $user_info['address']['zip'] ) ? $user_info['address']['zip'] : '', |
|
| 134 | - 'form_id' => isset( $payment_meta['form_id'] ) ? $payment_meta['form_id'] : '', |
|
| 135 | - 'form_name' => isset( $payment_meta['form_title'] ) ? $payment_meta['form_title'] : '', |
|
| 128 | + 'address1' => isset($user_info['address']['line1']) ? $user_info['address']['line1'] : '', |
|
| 129 | + 'address2' => isset($user_info['address']['line2']) ? $user_info['address']['line2'] : '', |
|
| 130 | + 'city' => isset($user_info['address']['city']) ? $user_info['address']['city'] : '', |
|
| 131 | + 'state' => isset($user_info['address']['state']) ? $user_info['address']['state'] : '', |
|
| 132 | + 'country' => isset($user_info['address']['country']) ? $user_info['address']['country'] : '', |
|
| 133 | + 'zip' => isset($user_info['address']['zip']) ? $user_info['address']['zip'] : '', |
|
| 134 | + 'form_id' => isset($payment_meta['form_id']) ? $payment_meta['form_id'] : '', |
|
| 135 | + 'form_name' => isset($payment_meta['form_title']) ? $payment_meta['form_title'] : '', |
|
| 136 | 136 | 'skus' => $skus, |
| 137 | - 'amount' => html_entity_decode( give_format_amount( $total ) ), |
|
| 138 | - 'gateway' => give_get_gateway_admin_label( get_post_meta( $payment->ID, '_give_payment_gateway', true ) ), |
|
| 139 | - 'trans_id' => give_get_payment_transaction_id( $payment->ID ), |
|
| 137 | + 'amount' => html_entity_decode(give_format_amount($total)), |
|
| 138 | + 'gateway' => give_get_gateway_admin_label(get_post_meta($payment->ID, '_give_payment_gateway', true)), |
|
| 139 | + 'trans_id' => give_get_payment_transaction_id($payment->ID), |
|
| 140 | 140 | 'key' => $payment_meta['key'], |
| 141 | 141 | 'date' => $payment->post_date, |
| 142 | - 'user' => $user ? $user->display_name : __( 'guest', 'give' ), |
|
| 143 | - 'status' => give_get_payment_status( $payment, true ) |
|
| 142 | + 'user' => $user ? $user->display_name : __('guest', 'give'), |
|
| 143 | + 'status' => give_get_payment_status($payment, true) |
|
| 144 | 144 | ); |
| 145 | 145 | |
| 146 | 146 | } |
| 147 | 147 | |
| 148 | - $data = apply_filters( 'give_export_get_data', $data ); |
|
| 149 | - $data = apply_filters( "give_export_get_data_{$this->export_type}", $data ); |
|
| 148 | + $data = apply_filters('give_export_get_data', $data); |
|
| 149 | + $data = apply_filters("give_export_get_data_{$this->export_type}", $data); |
|
| 150 | 150 | |
| 151 | 151 | return $data; |
| 152 | 152 | |
@@ -166,27 +166,27 @@ discard block |
||
| 166 | 166 | |
| 167 | 167 | $status = $this->status; |
| 168 | 168 | $args = array( |
| 169 | - 'start-date' => date( 'n/d/Y', strtotime( $this->start ) ), |
|
| 170 | - 'end-date' => date( 'n/d/Y', strtotime( $this->end ) ), |
|
| 169 | + 'start-date' => date('n/d/Y', strtotime($this->start)), |
|
| 170 | + 'end-date' => date('n/d/Y', strtotime($this->end)), |
|
| 171 | 171 | ); |
| 172 | 172 | |
| 173 | - if ( 'any' == $status ) { |
|
| 173 | + if ('any' == $status) { |
|
| 174 | 174 | |
| 175 | - $total = array_sum( (array) give_count_payments( $args ) ); |
|
| 175 | + $total = array_sum((array) give_count_payments($args)); |
|
| 176 | 176 | |
| 177 | 177 | } else { |
| 178 | 178 | |
| 179 | - $total = give_count_payments( $args )->$status; |
|
| 179 | + $total = give_count_payments($args)->$status; |
|
| 180 | 180 | |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | $percentage = 100; |
| 184 | 184 | |
| 185 | - if ( $total > 0 ) { |
|
| 186 | - $percentage = ( ( 30 * $this->step ) / $total ) * 100; |
|
| 185 | + if ($total > 0) { |
|
| 186 | + $percentage = ((30 * $this->step) / $total) * 100; |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - if ( $percentage > 100 ) { |
|
| 189 | + if ($percentage > 100) { |
|
| 190 | 190 | $percentage = 100; |
| 191 | 191 | } |
| 192 | 192 | |
@@ -200,9 +200,9 @@ discard block |
||
| 200 | 200 | * |
| 201 | 201 | * @param array $request The Form Data passed into the batch processing. |
| 202 | 202 | */ |
| 203 | - public function set_properties( $request ) { |
|
| 204 | - $this->start = isset( $request['start'] ) ? sanitize_text_field( $request['start'] ) : ''; |
|
| 205 | - $this->end = isset( $request['end'] ) ? sanitize_text_field( $request['end'] ) : ''; |
|
| 206 | - $this->status = isset( $request['status'] ) ? sanitize_text_field( $request['status'] ) : 'complete'; |
|
| 203 | + public function set_properties($request) { |
|
| 204 | + $this->start = isset($request['start']) ? sanitize_text_field($request['start']) : ''; |
|
| 205 | + $this->end = isset($request['end']) ? sanitize_text_field($request['end']) : ''; |
|
| 206 | + $this->status = isset($request['status']) ? sanitize_text_field($request['status']) : 'complete'; |
|
| 207 | 207 | } |
| 208 | 208 | } |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | 14 | // Exit if accessed directly |
| 15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 15 | +if ( ! defined('ABSPATH')) { |
|
| 16 | 16 | exit; |
| 17 | 17 | } |
| 18 | 18 | |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | * @return bool Whether we can export or not |
| 38 | 38 | */ |
| 39 | 39 | public function can_export() { |
| 40 | - return (bool) apply_filters( 'give_export_capability', current_user_can( 'export_give_reports' ) ); |
|
| 40 | + return (bool) apply_filters('give_export_capability', current_user_can('export_give_reports')); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | /** |
@@ -48,16 +48,16 @@ discard block |
||
| 48 | 48 | * @return void |
| 49 | 49 | */ |
| 50 | 50 | public function headers() { |
| 51 | - ignore_user_abort( true ); |
|
| 51 | + ignore_user_abort(true); |
|
| 52 | 52 | |
| 53 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 54 | - set_time_limit( 0 ); |
|
| 53 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 54 | + set_time_limit(0); |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | nocache_headers(); |
| 58 | - header( 'Content-Type: text/csv; charset=utf-8' ); |
|
| 59 | - header( 'Content-Disposition: attachment; filename=give-export-' . $this->export_type . '-' . date( 'm-d-Y' ) . '.csv' ); |
|
| 60 | - header( "Expires: 0" ); |
|
| 58 | + header('Content-Type: text/csv; charset=utf-8'); |
|
| 59 | + header('Content-Disposition: attachment; filename=give-export-'.$this->export_type.'-'.date('m-d-Y').'.csv'); |
|
| 60 | + header("Expires: 0"); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | /** |
@@ -69,8 +69,8 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | public function csv_cols() { |
| 71 | 71 | $cols = array( |
| 72 | - 'id' => esc_html__( 'ID', 'give' ), |
|
| 73 | - 'date' => esc_html__( 'Date', 'give' ) |
|
| 72 | + 'id' => esc_html__('ID', 'give'), |
|
| 73 | + 'date' => esc_html__('Date', 'give') |
|
| 74 | 74 | ); |
| 75 | 75 | |
| 76 | 76 | return $cols; |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | public function get_csv_cols() { |
| 87 | 87 | $cols = $this->csv_cols(); |
| 88 | 88 | |
| 89 | - return apply_filters( "give_export_csv_cols_{$this->export_type}", $cols ); |
|
| 89 | + return apply_filters("give_export_csv_cols_{$this->export_type}", $cols); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
@@ -100,10 +100,10 @@ discard block |
||
| 100 | 100 | public function csv_cols_out() { |
| 101 | 101 | $cols = $this->get_csv_cols(); |
| 102 | 102 | $i = 1; |
| 103 | - foreach ( $cols as $col_id => $column ) { |
|
| 104 | - echo '"' . addslashes( $column ) . '"'; |
|
| 105 | - echo $i == count( $cols ) ? '' : ','; |
|
| 106 | - $i ++; |
|
| 103 | + foreach ($cols as $col_id => $column) { |
|
| 104 | + echo '"'.addslashes($column).'"'; |
|
| 105 | + echo $i == count($cols) ? '' : ','; |
|
| 106 | + $i++; |
|
| 107 | 107 | } |
| 108 | 108 | echo "\r\n"; |
| 109 | 109 | } |
@@ -120,16 +120,16 @@ discard block |
||
| 120 | 120 | $data = array( |
| 121 | 121 | 0 => array( |
| 122 | 122 | 'id' => '', |
| 123 | - 'data' => date( 'F j, Y' ) |
|
| 123 | + 'data' => date('F j, Y') |
|
| 124 | 124 | ), |
| 125 | 125 | 1 => array( |
| 126 | 126 | 'id' => '', |
| 127 | - 'data' => date( 'F j, Y' ) |
|
| 127 | + 'data' => date('F j, Y') |
|
| 128 | 128 | ) |
| 129 | 129 | ); |
| 130 | 130 | |
| 131 | - $data = apply_filters( 'give_export_get_data', $data ); |
|
| 132 | - $data = apply_filters( "give_export_get_data_{$this->export_type}", $data ); |
|
| 131 | + $data = apply_filters('give_export_get_data', $data); |
|
| 132 | + $data = apply_filters("give_export_get_data_{$this->export_type}", $data); |
|
| 133 | 133 | |
| 134 | 134 | return $data; |
| 135 | 135 | } |
@@ -147,14 +147,14 @@ discard block |
||
| 147 | 147 | $cols = $this->get_csv_cols(); |
| 148 | 148 | |
| 149 | 149 | // Output each row |
| 150 | - foreach ( $data as $row ) { |
|
| 150 | + foreach ($data as $row) { |
|
| 151 | 151 | $i = 1; |
| 152 | - foreach ( $row as $col_id => $column ) { |
|
| 152 | + foreach ($row as $col_id => $column) { |
|
| 153 | 153 | // Make sure the column is valid |
| 154 | - if ( array_key_exists( $col_id, $cols ) ) { |
|
| 155 | - echo '"' . addslashes( $column ) . '"'; |
|
| 156 | - echo $i == count( $cols ) ? '' : ','; |
|
| 157 | - $i ++; |
|
| 154 | + if (array_key_exists($col_id, $cols)) { |
|
| 155 | + echo '"'.addslashes($column).'"'; |
|
| 156 | + echo $i == count($cols) ? '' : ','; |
|
| 157 | + $i++; |
|
| 158 | 158 | } |
| 159 | 159 | } |
| 160 | 160 | echo "\r\n"; |
@@ -173,8 +173,8 @@ discard block |
||
| 173 | 173 | * @return void |
| 174 | 174 | */ |
| 175 | 175 | public function export() { |
| 176 | - if ( ! $this->can_export() ) { |
|
| 177 | - wp_die( esc_html__( 'You do not have permission to export data.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 176 | + if ( ! $this->can_export()) { |
|
| 177 | + wp_die(esc_html__('You do not have permission to export data.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | // Set headers |
@@ -9,13 +9,13 @@ discard block |
||
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | 11 | // Exit if accessed directly. |
| 12 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 12 | +if ( ! defined('ABSPATH')) { |
|
| 13 | 13 | exit; |
| 14 | 14 | } |
| 15 | 15 | |
| 16 | 16 | // Load WP_List_Table if not loaded. |
| 17 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
| 18 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 17 | +if ( ! class_exists('WP_List_Table')) { |
|
| 18 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -44,11 +44,11 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | public function __construct() { |
| 46 | 46 | // Set parent defaults. |
| 47 | - parent::__construct( array( |
|
| 48 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records. |
|
| 49 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records. |
|
| 47 | + parent::__construct(array( |
|
| 48 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records. |
|
| 49 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records. |
|
| 50 | 50 | 'ajax' => false // Does this table support ajax?. |
| 51 | - ) ); |
|
| 51 | + )); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | /** |
@@ -62,19 +62,19 @@ discard block |
||
| 62 | 62 | * |
| 63 | 63 | * @return string Column Name. |
| 64 | 64 | */ |
| 65 | - public function column_default( $item, $column_name ) { |
|
| 65 | + public function column_default($item, $column_name) { |
|
| 66 | 66 | |
| 67 | - switch ( $column_name ) { |
|
| 67 | + switch ($column_name) { |
|
| 68 | 68 | case 'ID' : |
| 69 | 69 | return $item['ID_label']; |
| 70 | 70 | case 'payment_id' : |
| 71 | - return empty( $item->payment_id ) ? esc_html__( 'n/a', 'give' ) : $item->payment_id; |
|
| 71 | + return empty($item->payment_id) ? esc_html__('n/a', 'give') : $item->payment_id; |
|
| 72 | 72 | case 'gateway' : |
| 73 | - return empty( $item->gateway ) ? esc_html__( 'n/a', 'give' ) : $item->gateway; |
|
| 73 | + return empty($item->gateway) ? esc_html__('n/a', 'give') : $item->gateway; |
|
| 74 | 74 | case 'error' : |
| 75 | - return get_the_title( $item['ID'] ) ? get_the_title( $item['ID'] ) : esc_html__( 'Payment Error', 'give' ); |
|
| 75 | + return get_the_title($item['ID']) ? get_the_title($item['ID']) : esc_html__('Payment Error', 'give'); |
|
| 76 | 76 | default: |
| 77 | - return $item[ $column_name ]; |
|
| 77 | + return $item[$column_name]; |
|
| 78 | 78 | } |
| 79 | 79 | } |
| 80 | 80 | |
@@ -88,27 +88,27 @@ discard block |
||
| 88 | 88 | * |
| 89 | 89 | * @return void |
| 90 | 90 | */ |
| 91 | - public function column_message( $item ) { ?> |
|
| 92 | - <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox give-error-log-details-link button button-small" data-tooltip="<?php esc_attr_e( 'View Log Message', 'give' ); ?>"><span class="dashicons dashicons-visibility"></span></a> |
|
| 91 | + public function column_message($item) { ?> |
|
| 92 | + <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox give-error-log-details-link button button-small" data-tooltip="<?php esc_attr_e('View Log Message', 'give'); ?>"><span class="dashicons dashicons-visibility"></span></a> |
|
| 93 | 93 | <div id="log-message-<?php echo $item['ID']; ?>" style="display:none;"> |
| 94 | 94 | <?php |
| 95 | 95 | |
| 96 | - $log_message = get_post_field( 'post_content', $item['ID'] ); |
|
| 96 | + $log_message = get_post_field('post_content', $item['ID']); |
|
| 97 | 97 | |
| 98 | - $serialized = strpos( $log_message, '{"' ); |
|
| 98 | + $serialized = strpos($log_message, '{"'); |
|
| 99 | 99 | |
| 100 | 100 | // Check to see if the log message contains serialized information |
| 101 | - if ( $serialized !== false ) { |
|
| 102 | - $length = strlen( $log_message ) - $serialized; |
|
| 103 | - $intro = substr( $log_message, 0, - $length ); |
|
| 104 | - $data = substr( $log_message, $serialized, strlen( $log_message ) - 1 ); |
|
| 101 | + if ($serialized !== false) { |
|
| 102 | + $length = strlen($log_message) - $serialized; |
|
| 103 | + $intro = substr($log_message, 0, - $length); |
|
| 104 | + $data = substr($log_message, $serialized, strlen($log_message) - 1); |
|
| 105 | 105 | |
| 106 | - echo wpautop( $intro ); |
|
| 107 | - echo wpautop( '<strong>' . esc_html__( 'Log data:', 'give' ) . '</strong>' ); |
|
| 108 | - echo '<div style="word-wrap: break-word;">' . wpautop( $data ) . '</div>'; |
|
| 106 | + echo wpautop($intro); |
|
| 107 | + echo wpautop('<strong>'.esc_html__('Log data:', 'give').'</strong>'); |
|
| 108 | + echo '<div style="word-wrap: break-word;">'.wpautop($data).'</div>'; |
|
| 109 | 109 | } else { |
| 110 | 110 | // No serialized data found |
| 111 | - echo wpautop( $log_message ); |
|
| 111 | + echo wpautop($log_message); |
|
| 112 | 112 | } |
| 113 | 113 | ?> |
| 114 | 114 | </div> |
@@ -124,12 +124,12 @@ discard block |
||
| 124 | 124 | */ |
| 125 | 125 | public function get_columns() { |
| 126 | 126 | $columns = array( |
| 127 | - 'ID' => esc_html__( 'Log ID', 'give' ), |
|
| 128 | - 'error' => esc_html__( 'Error', 'give' ), |
|
| 129 | - 'gateway' => esc_html__( 'Gateway', 'give' ), |
|
| 130 | - 'payment_id' => esc_html__( 'Donation ID', 'give' ), |
|
| 131 | - 'date' => esc_html__( 'Date', 'give' ), |
|
| 132 | - 'message' => esc_html__( 'Details', 'give' ) |
|
| 127 | + 'ID' => esc_html__('Log ID', 'give'), |
|
| 128 | + 'error' => esc_html__('Error', 'give'), |
|
| 129 | + 'gateway' => esc_html__('Gateway', 'give'), |
|
| 130 | + 'payment_id' => esc_html__('Donation ID', 'give'), |
|
| 131 | + 'date' => esc_html__('Date', 'give'), |
|
| 132 | + 'message' => esc_html__('Details', 'give') |
|
| 133 | 133 | ); |
| 134 | 134 | |
| 135 | 135 | return $columns; |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | * @return int Current page number |
| 144 | 144 | */ |
| 145 | 145 | public function get_paged() { |
| 146 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 146 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | * @since 1.0 |
| 154 | 154 | * @return void |
| 155 | 155 | */ |
| 156 | - public function bulk_actions( $which = '' ) { |
|
| 156 | + public function bulk_actions($which = '') { |
|
| 157 | 157 | give_log_views(); |
| 158 | 158 | } |
| 159 | 159 | |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | |
| 172 | 172 | // Prevent the queries from getting cached. |
| 173 | 173 | // Without this there are occasional memory issues for some installs. |
| 174 | - wp_suspend_cache_addition( true ); |
|
| 174 | + wp_suspend_cache_addition(true); |
|
| 175 | 175 | |
| 176 | 176 | $logs_data = array(); |
| 177 | 177 | $paged = $this->get_paged(); |
@@ -180,17 +180,17 @@ discard block |
||
| 180 | 180 | 'paged' => $paged |
| 181 | 181 | ); |
| 182 | 182 | |
| 183 | - $logs = $give_logs->get_connected_logs( $log_query ); |
|
| 183 | + $logs = $give_logs->get_connected_logs($log_query); |
|
| 184 | 184 | |
| 185 | - if ( $logs ) { |
|
| 186 | - foreach ( $logs as $log ) { |
|
| 185 | + if ($logs) { |
|
| 186 | + foreach ($logs as $log) { |
|
| 187 | 187 | |
| 188 | 188 | $logs_data[] = array( |
| 189 | 189 | 'ID' => $log->ID, |
| 190 | - 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>' . $log->ID . '</span>', |
|
| 190 | + 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>'.$log->ID.'</span>', |
|
| 191 | 191 | 'payment_id' => $log->post_parent, |
| 192 | 192 | 'error' => 'error', |
| 193 | - 'gateway' => give_get_payment_gateway( $log->post_parent ), |
|
| 193 | + 'gateway' => give_get_payment_gateway($log->post_parent), |
|
| 194 | 194 | 'date' => $log->post_date |
| 195 | 195 | ); |
| 196 | 196 | } |
@@ -212,19 +212,19 @@ discard block |
||
| 212 | 212 | * |
| 213 | 213 | * @param string $which |
| 214 | 214 | */ |
| 215 | - protected function display_tablenav( $which ) { |
|
| 216 | - if ( 'top' === $which ) { |
|
| 217 | - wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
|
| 215 | + protected function display_tablenav($which) { |
|
| 216 | + if ('top' === $which) { |
|
| 217 | + wp_nonce_field('bulk-'.$this->_args['plural']); |
|
| 218 | 218 | } |
| 219 | 219 | ?> |
| 220 | - <div class="tablenav <?php echo esc_attr( $which ); ?>"> |
|
| 220 | + <div class="tablenav <?php echo esc_attr($which); ?>"> |
|
| 221 | 221 | |
| 222 | 222 | <div class="alignleft actions bulkactions"> |
| 223 | - <?php $this->bulk_actions( $which ); ?> |
|
| 223 | + <?php $this->bulk_actions($which); ?> |
|
| 224 | 224 | </div> |
| 225 | 225 | <?php |
| 226 | - $this->extra_tablenav( $which ); |
|
| 227 | - $this->pagination( $which ); |
|
| 226 | + $this->extra_tablenav($which); |
|
| 227 | + $this->pagination($which); |
|
| 228 | 228 | ?> |
| 229 | 229 | |
| 230 | 230 | <br class="clear"/> |
@@ -251,14 +251,14 @@ discard block |
||
| 251 | 251 | $columns = $this->get_columns(); |
| 252 | 252 | $hidden = array(); // No hidden columns |
| 253 | 253 | $sortable = $this->get_sortable_columns(); |
| 254 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 254 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
| 255 | 255 | $this->items = $this->get_logs(); |
| 256 | - $total_items = $give_logs->get_log_count( 0, 'gateway_error' ); |
|
| 256 | + $total_items = $give_logs->get_log_count(0, 'gateway_error'); |
|
| 257 | 257 | |
| 258 | - $this->set_pagination_args( array( |
|
| 258 | + $this->set_pagination_args(array( |
|
| 259 | 259 | 'total_items' => $total_items, |
| 260 | 260 | 'per_page' => $this->per_page, |
| 261 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
| 261 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
| 262 | 262 | ) |
| 263 | 263 | ); |
| 264 | 264 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -56,32 +56,32 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | $args = array( |
| 58 | 58 | 'number' => $this->per_step, |
| 59 | - 'offset' => $this->per_step * ( $this->step - 1 ), |
|
| 59 | + 'offset' => $this->per_step * ($this->step - 1), |
|
| 60 | 60 | 'orderby' => 'id', |
| 61 | 61 | 'order' => 'DESC', |
| 62 | 62 | ); |
| 63 | 63 | |
| 64 | - $customers = Give()->customers->get_customers( $args ); |
|
| 64 | + $customers = Give()->customers->get_customers($args); |
|
| 65 | 65 | |
| 66 | - if ( $customers ) { |
|
| 66 | + if ($customers) { |
|
| 67 | 67 | |
| 68 | - $allowed_payment_status = apply_filters( 'give_recount_donors_donation_statuses', give_get_payment_status_keys() ); |
|
| 68 | + $allowed_payment_status = apply_filters('give_recount_donors_donation_statuses', give_get_payment_status_keys()); |
|
| 69 | 69 | |
| 70 | - foreach ( $customers as $customer ) { |
|
| 70 | + foreach ($customers as $customer) { |
|
| 71 | 71 | |
| 72 | - $attached_payment_ids = explode( ',', $customer->payment_ids ); |
|
| 72 | + $attached_payment_ids = explode(',', $customer->payment_ids); |
|
| 73 | 73 | |
| 74 | 74 | $attached_args = array( |
| 75 | 75 | 'post__in' => $attached_payment_ids, |
| 76 | - 'number' => - 1, |
|
| 76 | + 'number' => -1, |
|
| 77 | 77 | 'status' => $allowed_payment_status, |
| 78 | 78 | ); |
| 79 | 79 | |
| 80 | - $attached_payments = (array) give_get_payments( $attached_args ); |
|
| 80 | + $attached_payments = (array) give_get_payments($attached_args); |
|
| 81 | 81 | |
| 82 | 82 | $unattached_args = array( |
| 83 | 83 | 'post__not_in' => $attached_payment_ids, |
| 84 | - 'number' => - 1, |
|
| 84 | + 'number' => -1, |
|
| 85 | 85 | 'status' => $allowed_payment_status, |
| 86 | 86 | 'meta_query' => array( |
| 87 | 87 | array( |
@@ -92,29 +92,29 @@ discard block |
||
| 92 | 92 | ), |
| 93 | 93 | ); |
| 94 | 94 | |
| 95 | - $unattached_payments = give_get_payments( $unattached_args ); |
|
| 95 | + $unattached_payments = give_get_payments($unattached_args); |
|
| 96 | 96 | |
| 97 | - $payments = array_merge( $attached_payments, $unattached_payments ); |
|
| 97 | + $payments = array_merge($attached_payments, $unattached_payments); |
|
| 98 | 98 | |
| 99 | 99 | $purchase_value = 0.00; |
| 100 | 100 | $purchase_count = 0; |
| 101 | 101 | $payment_ids = array(); |
| 102 | 102 | |
| 103 | - if ( $payments ) { |
|
| 103 | + if ($payments) { |
|
| 104 | 104 | |
| 105 | - foreach ( $payments as $payment ) { |
|
| 105 | + foreach ($payments as $payment) { |
|
| 106 | 106 | |
| 107 | 107 | $should_process_payment = 'publish' == $payment->post_status ? true : false; |
| 108 | - $should_process_payment = apply_filters( 'give_donor_recount_should_process_donation', $should_process_payment, $payment ); |
|
| 108 | + $should_process_payment = apply_filters('give_donor_recount_should_process_donation', $should_process_payment, $payment); |
|
| 109 | 109 | |
| 110 | - if ( true === $should_process_payment ) { |
|
| 110 | + if (true === $should_process_payment) { |
|
| 111 | 111 | |
| 112 | - if ( apply_filters( 'give_customer_recount_should_increase_value', true, $payment ) ) { |
|
| 113 | - $purchase_value += give_get_payment_amount( $payment->ID ); |
|
| 112 | + if (apply_filters('give_customer_recount_should_increase_value', true, $payment)) { |
|
| 113 | + $purchase_value += give_get_payment_amount($payment->ID); |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - if ( apply_filters( 'give_customer_recount_should_increase_count', true, $payment ) ) { |
|
| 117 | - $purchase_count ++; |
|
| 116 | + if (apply_filters('give_customer_recount_should_increase_count', true, $payment)) { |
|
| 117 | + $purchase_count++; |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | } |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | |
| 125 | 125 | } |
| 126 | 126 | |
| 127 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 127 | + $payment_ids = implode(',', $payment_ids); |
|
| 128 | 128 | |
| 129 | 129 | $customer_update_data = array( |
| 130 | 130 | 'purchase_count' => $purchase_count, |
@@ -132,8 +132,8 @@ discard block |
||
| 132 | 132 | 'payment_ids' => $payment_ids, |
| 133 | 133 | ); |
| 134 | 134 | |
| 135 | - $customer_instance = new Give_Customer( $customer->id ); |
|
| 136 | - $customer_instance->update( $customer_update_data ); |
|
| 135 | + $customer_instance = new Give_Customer($customer->id); |
|
| 136 | + $customer_instance->update($customer_update_data); |
|
| 137 | 137 | |
| 138 | 138 | } |
| 139 | 139 | |
@@ -153,21 +153,21 @@ discard block |
||
| 153 | 153 | public function get_percentage_complete() { |
| 154 | 154 | |
| 155 | 155 | $args = array( |
| 156 | - 'number' => - 1, |
|
| 156 | + 'number' => -1, |
|
| 157 | 157 | 'orderby' => 'id', |
| 158 | 158 | 'order' => 'DESC', |
| 159 | 159 | ); |
| 160 | 160 | |
| 161 | - $customers = Give()->customers->get_customers( $args ); |
|
| 162 | - $total = count( $customers ); |
|
| 161 | + $customers = Give()->customers->get_customers($args); |
|
| 162 | + $total = count($customers); |
|
| 163 | 163 | |
| 164 | 164 | $percentage = 100; |
| 165 | 165 | |
| 166 | - if ( $total > 0 ) { |
|
| 167 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 166 | + if ($total > 0) { |
|
| 167 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 168 | 168 | } |
| 169 | 169 | |
| 170 | - if ( $percentage > 100 ) { |
|
| 170 | + if ($percentage > 100) { |
|
| 171 | 171 | $percentage = 100; |
| 172 | 172 | } |
| 173 | 173 | |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | * |
| 182 | 182 | * @param array $request The Form Data passed into the batch processing |
| 183 | 183 | */ |
| 184 | - public function set_properties( $request ) { |
|
| 184 | + public function set_properties($request) { |
|
| 185 | 185 | } |
| 186 | 186 | |
| 187 | 187 | /** |
@@ -192,19 +192,19 @@ discard block |
||
| 192 | 192 | */ |
| 193 | 193 | public function process_step() { |
| 194 | 194 | |
| 195 | - if ( ! $this->can_export() ) { |
|
| 196 | - wp_die( esc_html__( 'You do not have permission to recount stats.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 195 | + if ( ! $this->can_export()) { |
|
| 196 | + wp_die(esc_html__('You do not have permission to recount stats.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | $had_data = $this->get_data(); |
| 200 | 200 | |
| 201 | - if ( $had_data ) { |
|
| 201 | + if ($had_data) { |
|
| 202 | 202 | $this->done = false; |
| 203 | 203 | |
| 204 | 204 | return true; |
| 205 | 205 | } else { |
| 206 | 206 | $this->done = true; |
| 207 | - $this->message = esc_html__( 'Donor stats have been successfully recounted.', 'give' ); |
|
| 207 | + $this->message = esc_html__('Donor stats have been successfully recounted.', 'give'); |
|
| 208 | 208 | |
| 209 | 209 | return false; |
| 210 | 210 | } |
@@ -214,10 +214,10 @@ discard block |
||
| 214 | 214 | * Headers |
| 215 | 215 | */ |
| 216 | 216 | public function headers() { |
| 217 | - ignore_user_abort( true ); |
|
| 217 | + ignore_user_abort(true); |
|
| 218 | 218 | |
| 219 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 220 | - set_time_limit( 0 ); |
|
| 219 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 220 | + set_time_limit(0); |
|
| 221 | 221 | } |
| 222 | 222 | } |
| 223 | 223 | |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | 13 | // Exit if accessed directly |
| 14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 14 | +if ( ! defined('ABSPATH')) { |
|
| 15 | 15 | exit; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -54,39 +54,39 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function get_data() { |
| 56 | 56 | |
| 57 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 58 | - $payments = $this->get_stored_data( 'give_recount_customer_payments_' . $customer->id, array() ); |
|
| 57 | + $customer = new Give_Customer($this->customer_id); |
|
| 58 | + $payments = $this->get_stored_data('give_recount_customer_payments_'.$customer->id, array()); |
|
| 59 | 59 | |
| 60 | - $offset = ( $this->step - 1 ) * $this->per_step; |
|
| 61 | - $step_items = array_slice( $payments, $offset, $this->per_step ); |
|
| 60 | + $offset = ($this->step - 1) * $this->per_step; |
|
| 61 | + $step_items = array_slice($payments, $offset, $this->per_step); |
|
| 62 | 62 | |
| 63 | - if ( count( $step_items ) > 0 ) { |
|
| 64 | - $pending_total = (float) $this->get_stored_data( 'give_stats_customer_pending_total' . $customer->id, 0 ); |
|
| 63 | + if (count($step_items) > 0) { |
|
| 64 | + $pending_total = (float) $this->get_stored_data('give_stats_customer_pending_total'.$customer->id, 0); |
|
| 65 | 65 | $step_total = 0; |
| 66 | 66 | |
| 67 | - $found_payment_ids = $this->get_stored_data( 'give_stats_found_payments_' . $customer->id, array() ); |
|
| 67 | + $found_payment_ids = $this->get_stored_data('give_stats_found_payments_'.$customer->id, array()); |
|
| 68 | 68 | |
| 69 | - foreach ( $step_items as $payment ) { |
|
| 70 | - $payment = get_post( $payment->ID ); |
|
| 69 | + foreach ($step_items as $payment) { |
|
| 70 | + $payment = get_post($payment->ID); |
|
| 71 | 71 | |
| 72 | - if ( is_null( $payment ) || is_wp_error( $payment ) || 'give_payment' !== $payment->post_type ) { |
|
| 72 | + if (is_null($payment) || is_wp_error($payment) || 'give_payment' !== $payment->post_type) { |
|
| 73 | 73 | |
| 74 | - $missing_payments = $this->get_stored_data( 'give_stats_missing_payments' . $customer->id, array() ); |
|
| 74 | + $missing_payments = $this->get_stored_data('give_stats_missing_payments'.$customer->id, array()); |
|
| 75 | 75 | $missing_payments[] = $payment->ID; |
| 76 | - $this->store_data( 'give_stats_missing_payments' . $customer->id, $missing_payments ); |
|
| 76 | + $this->store_data('give_stats_missing_payments'.$customer->id, $missing_payments); |
|
| 77 | 77 | |
| 78 | 78 | continue; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | $should_process_payment = 'publish' == $payment->post_status ? true : false; |
| 82 | - $should_process_payment = apply_filters( 'give_donor_recount_should_process_donation', $should_process_payment, $payment ); |
|
| 82 | + $should_process_payment = apply_filters('give_donor_recount_should_process_donation', $should_process_payment, $payment); |
|
| 83 | 83 | |
| 84 | - if ( true === $should_process_payment ) { |
|
| 84 | + if (true === $should_process_payment) { |
|
| 85 | 85 | |
| 86 | 86 | $found_payment_ids[] = $payment->ID; |
| 87 | 87 | |
| 88 | - if ( apply_filters( 'give_customer_recount_sholud_increase_value', true, $payment ) ) { |
|
| 89 | - $payment_amount = give_get_payment_amount( $payment->ID ); |
|
| 88 | + if (apply_filters('give_customer_recount_sholud_increase_value', true, $payment)) { |
|
| 89 | + $payment_amount = give_get_payment_amount($payment->ID); |
|
| 90 | 90 | $step_total += $payment_amount; |
| 91 | 91 | } |
| 92 | 92 | |
@@ -95,8 +95,8 @@ discard block |
||
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | $updated_total = $pending_total + $step_total; |
| 98 | - $this->store_data( 'give_stats_customer_pending_total' . $customer->id, $updated_total ); |
|
| 99 | - $this->store_data( 'give_stats_found_payments_' . $customer->id, $found_payment_ids ); |
|
| 98 | + $this->store_data('give_stats_customer_pending_total'.$customer->id, $updated_total); |
|
| 99 | + $this->store_data('give_stats_found_payments_'.$customer->id, $found_payment_ids); |
|
| 100 | 100 | |
| 101 | 101 | return true; |
| 102 | 102 | } |
@@ -113,16 +113,16 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | public function get_percentage_complete() { |
| 115 | 115 | |
| 116 | - $payments = $this->get_stored_data( 'give_recount_customer_payments_' . $this->customer_id ); |
|
| 117 | - $total = count( $payments ); |
|
| 116 | + $payments = $this->get_stored_data('give_recount_customer_payments_'.$this->customer_id); |
|
| 117 | + $total = count($payments); |
|
| 118 | 118 | |
| 119 | 119 | $percentage = 100; |
| 120 | 120 | |
| 121 | - if ( $total > 0 ) { |
|
| 122 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 121 | + if ($total > 0) { |
|
| 122 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | - if ( $percentage > 100 ) { |
|
| 125 | + if ($percentage > 100) { |
|
| 126 | 126 | $percentage = 100; |
| 127 | 127 | } |
| 128 | 128 | |
@@ -136,8 +136,8 @@ discard block |
||
| 136 | 136 | * |
| 137 | 137 | * @param array $request The Form Data passed into the batch processing |
| 138 | 138 | */ |
| 139 | - public function set_properties( $request ) { |
|
| 140 | - $this->customer_id = isset( $request['customer_id'] ) ? sanitize_text_field( $request['customer_id'] ) : false; |
|
| 139 | + public function set_properties($request) { |
|
| 140 | + $this->customer_id = isset($request['customer_id']) ? sanitize_text_field($request['customer_id']) : false; |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | /** |
@@ -148,62 +148,62 @@ discard block |
||
| 148 | 148 | */ |
| 149 | 149 | public function process_step() { |
| 150 | 150 | |
| 151 | - if ( ! $this->can_export() ) { |
|
| 152 | - wp_die( esc_html__( 'You do not have permission to recount stats.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 151 | + if ( ! $this->can_export()) { |
|
| 152 | + wp_die(esc_html__('You do not have permission to recount stats.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | $had_data = $this->get_data(); |
| 156 | 156 | |
| 157 | - if ( $had_data ) { |
|
| 157 | + if ($had_data) { |
|
| 158 | 158 | $this->done = false; |
| 159 | 159 | |
| 160 | 160 | return true; |
| 161 | 161 | } else { |
| 162 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 163 | - $payment_ids = get_option( 'give_stats_found_payments_' . $customer->id, array() ); |
|
| 164 | - $this->delete_data( 'give_stats_found_payments_' . $customer->id ); |
|
| 162 | + $customer = new Give_Customer($this->customer_id); |
|
| 163 | + $payment_ids = get_option('give_stats_found_payments_'.$customer->id, array()); |
|
| 164 | + $this->delete_data('give_stats_found_payments_'.$customer->id); |
|
| 165 | 165 | |
| 166 | - $removed_payments = array_unique( get_option( 'give_stats_missing_payments' . $customer->id, array() ) ); |
|
| 166 | + $removed_payments = array_unique(get_option('give_stats_missing_payments'.$customer->id, array())); |
|
| 167 | 167 | |
| 168 | 168 | // Find non-existing payments (deleted) and total up the donation count |
| 169 | 169 | $purchase_count = 0; |
| 170 | - foreach ( $payment_ids as $key => $payment_id ) { |
|
| 171 | - if ( in_array( $payment_id, $removed_payments ) ) { |
|
| 172 | - unset( $payment_ids[ $key ] ); |
|
| 170 | + foreach ($payment_ids as $key => $payment_id) { |
|
| 171 | + if (in_array($payment_id, $removed_payments)) { |
|
| 172 | + unset($payment_ids[$key]); |
|
| 173 | 173 | continue; |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - $payment = get_post( $payment_id ); |
|
| 177 | - if ( apply_filters( 'give_customer_recount_should_increase_count', true, $payment ) ) { |
|
| 178 | - $purchase_count ++; |
|
| 176 | + $payment = get_post($payment_id); |
|
| 177 | + if (apply_filters('give_customer_recount_should_increase_count', true, $payment)) { |
|
| 178 | + $purchase_count++; |
|
| 179 | 179 | } |
| 180 | 180 | } |
| 181 | 181 | |
| 182 | - $this->delete_data( 'give_stats_missing_payments' . $customer->id ); |
|
| 182 | + $this->delete_data('give_stats_missing_payments'.$customer->id); |
|
| 183 | 183 | |
| 184 | - $pending_total = $this->get_stored_data( 'give_stats_customer_pending_total' . $customer->id, 0 ); |
|
| 185 | - $this->delete_data( 'give_stats_customer_pending_total' . $customer->id ); |
|
| 186 | - $this->delete_data( 'give_recount_customer_stats_' . $customer->id ); |
|
| 187 | - $this->delete_data( 'give_recount_customer_payments_' . $this->customer_id ); |
|
| 184 | + $pending_total = $this->get_stored_data('give_stats_customer_pending_total'.$customer->id, 0); |
|
| 185 | + $this->delete_data('give_stats_customer_pending_total'.$customer->id); |
|
| 186 | + $this->delete_data('give_recount_customer_stats_'.$customer->id); |
|
| 187 | + $this->delete_data('give_recount_customer_payments_'.$this->customer_id); |
|
| 188 | 188 | |
| 189 | - $payment_ids = implode( ',', $payment_ids ); |
|
| 190 | - $customer->update( array( 'payment_ids' => $payment_ids, |
|
| 189 | + $payment_ids = implode(',', $payment_ids); |
|
| 190 | + $customer->update(array('payment_ids' => $payment_ids, |
|
| 191 | 191 | 'purchase_count' => $purchase_count, |
| 192 | 192 | 'purchase_value' => $pending_total |
| 193 | - ) ); |
|
| 193 | + )); |
|
| 194 | 194 | |
| 195 | 195 | $this->done = true; |
| 196 | - $this->message = esc_html__( 'Donor stats successfully recounted.', 'give' ); |
|
| 196 | + $this->message = esc_html__('Donor stats successfully recounted.', 'give'); |
|
| 197 | 197 | |
| 198 | 198 | return false; |
| 199 | 199 | } |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | public function headers() { |
| 203 | - ignore_user_abort( true ); |
|
| 203 | + ignore_user_abort(true); |
|
| 204 | 204 | |
| 205 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 206 | - set_time_limit( 0 ); |
|
| 205 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 206 | + set_time_limit(0); |
|
| 207 | 207 | } |
| 208 | 208 | } |
| 209 | 209 | |
@@ -230,26 +230,26 @@ discard block |
||
| 230 | 230 | * @return void |
| 231 | 231 | */ |
| 232 | 232 | public function pre_fetch() { |
| 233 | - if ( $this->step === 1 ) { |
|
| 234 | - $allowed_payment_status = apply_filters( 'give_recount_donors_donation_statuses', give_get_payment_status_keys() ); |
|
| 233 | + if ($this->step === 1) { |
|
| 234 | + $allowed_payment_status = apply_filters('give_recount_donors_donation_statuses', give_get_payment_status_keys()); |
|
| 235 | 235 | |
| 236 | 236 | // Before we start, let's zero out the customer's data |
| 237 | - $customer = new Give_Customer( $this->customer_id ); |
|
| 238 | - $customer->update( array( 'purchase_value' => give_format_amount( 0 ), 'purchase_count' => 0 ) ); |
|
| 237 | + $customer = new Give_Customer($this->customer_id); |
|
| 238 | + $customer->update(array('purchase_value' => give_format_amount(0), 'purchase_count' => 0)); |
|
| 239 | 239 | |
| 240 | - $attached_payment_ids = explode( ',', $customer->payment_ids ); |
|
| 240 | + $attached_payment_ids = explode(',', $customer->payment_ids); |
|
| 241 | 241 | |
| 242 | 242 | $attached_args = array( |
| 243 | 243 | 'post__in' => $attached_payment_ids, |
| 244 | - 'number' => - 1, |
|
| 244 | + 'number' => -1, |
|
| 245 | 245 | 'status' => $allowed_payment_status, |
| 246 | 246 | ); |
| 247 | 247 | |
| 248 | - $attached_payments = give_get_payments( $attached_args ); |
|
| 248 | + $attached_payments = give_get_payments($attached_args); |
|
| 249 | 249 | |
| 250 | 250 | $unattached_args = array( |
| 251 | 251 | 'post__not_in' => $attached_payment_ids, |
| 252 | - 'number' => - 1, |
|
| 252 | + 'number' => -1, |
|
| 253 | 253 | 'status' => $allowed_payment_status, |
| 254 | 254 | 'meta_query' => array( |
| 255 | 255 | array( |
@@ -259,11 +259,11 @@ discard block |
||
| 259 | 259 | ), |
| 260 | 260 | ); |
| 261 | 261 | |
| 262 | - $unattached_payments = give_get_payments( $unattached_args ); |
|
| 262 | + $unattached_payments = give_get_payments($unattached_args); |
|
| 263 | 263 | |
| 264 | - $payments = array_merge( $attached_payments, $unattached_payments ); |
|
| 264 | + $payments = array_merge($attached_payments, $unattached_payments); |
|
| 265 | 265 | |
| 266 | - $this->store_data( 'give_recount_customer_payments_' . $customer->id, $payments ); |
|
| 266 | + $this->store_data('give_recount_customer_payments_'.$customer->id, $payments); |
|
| 267 | 267 | } |
| 268 | 268 | } |
| 269 | 269 | |
@@ -276,11 +276,11 @@ discard block |
||
| 276 | 276 | * |
| 277 | 277 | * @return mixed Returns the data from the database |
| 278 | 278 | */ |
| 279 | - private function get_stored_data( $key ) { |
|
| 279 | + private function get_stored_data($key) { |
|
| 280 | 280 | global $wpdb; |
| 281 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 281 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 282 | 282 | |
| 283 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 283 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | /** |
@@ -293,10 +293,10 @@ discard block |
||
| 293 | 293 | * |
| 294 | 294 | * @return void |
| 295 | 295 | */ |
| 296 | - private function store_data( $key, $value ) { |
|
| 296 | + private function store_data($key, $value) { |
|
| 297 | 297 | global $wpdb; |
| 298 | 298 | |
| 299 | - $value = maybe_serialize( $value ); |
|
| 299 | + $value = maybe_serialize($value); |
|
| 300 | 300 | |
| 301 | 301 | $data = array( |
| 302 | 302 | 'option_name' => $key, |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | '%s', |
| 311 | 311 | ); |
| 312 | 312 | |
| 313 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 313 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
@@ -322,9 +322,9 @@ discard block |
||
| 322 | 322 | * |
| 323 | 323 | * @return void |
| 324 | 324 | */ |
| 325 | - private function delete_data( $key ) { |
|
| 325 | + private function delete_data($key) { |
|
| 326 | 326 | global $wpdb; |
| 327 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 327 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 328 | 328 | } |
| 329 | 329 | |
| 330 | 330 | } |
@@ -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,18 +116,18 @@ 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 | 127 | |
| 128 | - if ( ! empty( $sql ) ) { |
|
| 129 | - foreach ( $sql as $query ) { |
|
| 130 | - $wpdb->query( $query ); |
|
| 128 | + if ( ! empty($sql)) { |
|
| 129 | + foreach ($sql as $query) { |
|
| 130 | + $wpdb->query($query); |
|
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | |
@@ -147,16 +147,16 @@ discard block |
||
| 147 | 147 | */ |
| 148 | 148 | public function get_percentage_complete() { |
| 149 | 149 | |
| 150 | - $items = $this->get_stored_data( 'give_temp_reset_ids', false ); |
|
| 151 | - $total = count( $items ); |
|
| 150 | + $items = $this->get_stored_data('give_temp_reset_ids', false); |
|
| 151 | + $total = count($items); |
|
| 152 | 152 | |
| 153 | 153 | $percentage = 100; |
| 154 | 154 | |
| 155 | - if ( $total > 0 ) { |
|
| 156 | - $percentage = ( ( $this->per_step * $this->step ) / $total ) * 100; |
|
| 155 | + if ($total > 0) { |
|
| 156 | + $percentage = (($this->per_step * $this->step) / $total) * 100; |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - if ( $percentage > 100 ) { |
|
| 159 | + if ($percentage > 100) { |
|
| 160 | 160 | $percentage = 100; |
| 161 | 161 | } |
| 162 | 162 | |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | * |
| 171 | 171 | * @param array $request The Form Data passed into the batch processing |
| 172 | 172 | */ |
| 173 | - public function set_properties( $request ) { |
|
| 173 | + public function set_properties($request) { |
|
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | /** |
@@ -181,30 +181,30 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | public function process_step() { |
| 183 | 183 | |
| 184 | - if ( ! $this->can_export() ) { |
|
| 185 | - wp_die( esc_html__( 'You do not have permission to reset data.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 184 | + if ( ! $this->can_export()) { |
|
| 185 | + wp_die(esc_html__('You do not have permission to reset data.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | $had_data = $this->get_data(); |
| 189 | 189 | |
| 190 | - if ( $had_data ) { |
|
| 190 | + if ($had_data) { |
|
| 191 | 191 | $this->done = false; |
| 192 | 192 | |
| 193 | 193 | return true; |
| 194 | 194 | } else { |
| 195 | - update_option( 'give_earnings_total', 0 ); |
|
| 196 | - delete_transient( 'give_earnings_total' ); |
|
| 197 | - delete_transient( 'give_estimated_monthly_stats' . true ); |
|
| 198 | - delete_transient( 'give_estimated_monthly_stats' . false ); |
|
| 199 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
| 195 | + update_option('give_earnings_total', 0); |
|
| 196 | + delete_transient('give_earnings_total'); |
|
| 197 | + delete_transient('give_estimated_monthly_stats'.true); |
|
| 198 | + delete_transient('give_estimated_monthly_stats'.false); |
|
| 199 | + $this->delete_data('give_temp_reset_ids'); |
|
| 200 | 200 | |
| 201 | 201 | // Reset the sequential order numbers |
| 202 | - if ( give_get_option( 'enable_sequential' ) ) { |
|
| 203 | - delete_option( 'give_last_payment_number' ); |
|
| 202 | + if (give_get_option('enable_sequential')) { |
|
| 203 | + delete_option('give_last_payment_number'); |
|
| 204 | 204 | } |
| 205 | 205 | |
| 206 | 206 | $this->done = true; |
| 207 | - $this->message = esc_html__( 'Donation forms, income, donations counts, and logs successfully reset.', 'give' ); |
|
| 207 | + $this->message = esc_html__('Donation forms, income, donations counts, and logs successfully reset.', '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 | |
@@ -241,35 +241,35 @@ discard block |
||
| 241 | 241 | */ |
| 242 | 242 | public function pre_fetch() { |
| 243 | 243 | |
| 244 | - if ( $this->step == 1 ) { |
|
| 245 | - $this->delete_data( 'give_temp_reset_ids' ); |
|
| 244 | + if ($this->step == 1) { |
|
| 245 | + $this->delete_data('give_temp_reset_ids'); |
|
| 246 | 246 | } |
| 247 | 247 | |
| 248 | - $items = get_option( 'give_temp_reset_ids', false ); |
|
| 248 | + $items = get_option('give_temp_reset_ids', false); |
|
| 249 | 249 | |
| 250 | - if ( false === $items ) { |
|
| 250 | + if (false === $items) { |
|
| 251 | 251 | $items = array(); |
| 252 | 252 | |
| 253 | - $give_types_for_reset = array( 'give_forms', 'give_log', 'give_payment' ); |
|
| 254 | - $give_types_for_reset = apply_filters( 'give_reset_store_post_types', $give_types_for_reset ); |
|
| 253 | + $give_types_for_reset = array('give_forms', 'give_log', 'give_payment'); |
|
| 254 | + $give_types_for_reset = apply_filters('give_reset_store_post_types', $give_types_for_reset); |
|
| 255 | 255 | |
| 256 | - $args = apply_filters( 'give_tools_reset_stats_total_args', array( |
|
| 256 | + $args = apply_filters('give_tools_reset_stats_total_args', array( |
|
| 257 | 257 | 'post_type' => $give_types_for_reset, |
| 258 | 258 | 'post_status' => 'any', |
| 259 | - 'posts_per_page' => - 1, |
|
| 260 | - ) ); |
|
| 259 | + 'posts_per_page' => -1, |
|
| 260 | + )); |
|
| 261 | 261 | |
| 262 | - $posts = get_posts( $args ); |
|
| 263 | - foreach ( $posts as $post ) { |
|
| 262 | + $posts = get_posts($args); |
|
| 263 | + foreach ($posts as $post) { |
|
| 264 | 264 | $items[] = array( |
| 265 | 265 | 'id' => (int) $post->ID, |
| 266 | 266 | 'type' => $post->post_type, |
| 267 | 267 | ); |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | - $customer_args = array( 'number' => - 1 ); |
|
| 271 | - $customers = Give()->customers->get_customers( $customer_args ); |
|
| 272 | - foreach ( $customers as $customer ) { |
|
| 270 | + $customer_args = array('number' => -1); |
|
| 271 | + $customers = Give()->customers->get_customers($customer_args); |
|
| 272 | + foreach ($customers as $customer) { |
|
| 273 | 273 | $items[] = array( |
| 274 | 274 | 'id' => (int) $customer->id, |
| 275 | 275 | 'type' => 'customer', |
@@ -278,9 +278,9 @@ discard block |
||
| 278 | 278 | |
| 279 | 279 | // Allow filtering of items to remove with an unassociative array for each item |
| 280 | 280 | // The array contains the unique ID of the item, and a 'type' for you to use in the execution of the get_data method |
| 281 | - $items = apply_filters( 'give_reset_store_items', $items ); |
|
| 281 | + $items = apply_filters('give_reset_store_items', $items); |
|
| 282 | 282 | |
| 283 | - $this->store_data( 'give_temp_reset_ids', $items ); |
|
| 283 | + $this->store_data('give_temp_reset_ids', $items); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | } |
@@ -294,11 +294,11 @@ discard block |
||
| 294 | 294 | * |
| 295 | 295 | * @return mixed Returns the data from the database |
| 296 | 296 | */ |
| 297 | - private function get_stored_data( $key ) { |
|
| 297 | + private function get_stored_data($key) { |
|
| 298 | 298 | global $wpdb; |
| 299 | - $value = $wpdb->get_var( $wpdb->prepare( "SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key ) ); |
|
| 299 | + $value = $wpdb->get_var($wpdb->prepare("SELECT option_value FROM $wpdb->options WHERE option_name = '%s'", $key)); |
|
| 300 | 300 | |
| 301 | - return empty( $value ) ? false : maybe_unserialize( $value ); |
|
| 301 | + return empty($value) ? false : maybe_unserialize($value); |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | 304 | /** |
@@ -311,10 +311,10 @@ discard block |
||
| 311 | 311 | * |
| 312 | 312 | * @return void |
| 313 | 313 | */ |
| 314 | - private function store_data( $key, $value ) { |
|
| 314 | + private function store_data($key, $value) { |
|
| 315 | 315 | global $wpdb; |
| 316 | 316 | |
| 317 | - $value = maybe_serialize( $value ); |
|
| 317 | + $value = maybe_serialize($value); |
|
| 318 | 318 | |
| 319 | 319 | $data = array( |
| 320 | 320 | 'option_name' => $key, |
@@ -328,7 +328,7 @@ discard block |
||
| 328 | 328 | '%s', |
| 329 | 329 | ); |
| 330 | 330 | |
| 331 | - $wpdb->replace( $wpdb->options, $data, $formats ); |
|
| 331 | + $wpdb->replace($wpdb->options, $data, $formats); |
|
| 332 | 332 | } |
| 333 | 333 | |
| 334 | 334 | /** |
@@ -340,9 +340,9 @@ discard block |
||
| 340 | 340 | * |
| 341 | 341 | * @return void |
| 342 | 342 | */ |
| 343 | - private function delete_data( $key ) { |
|
| 343 | + private function delete_data($key) { |
|
| 344 | 344 | global $wpdb; |
| 345 | - $wpdb->delete( $wpdb->options, array( 'option_name' => $key ) ); |
|
| 345 | + $wpdb->delete($wpdb->options, array('option_name' => $key)); |
|
| 346 | 346 | } |
| 347 | 347 | |
| 348 | 348 | } |
@@ -12,7 +12,7 @@ discard block |
||
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | 14 | // Exit if accessed directly |
| 15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 15 | +if ( ! defined('ABSPATH')) { |
|
| 16 | 16 | exit; |
| 17 | 17 | } |
| 18 | 18 | |
@@ -38,16 +38,16 @@ discard block |
||
| 38 | 38 | * @return void |
| 39 | 39 | */ |
| 40 | 40 | public function headers() { |
| 41 | - ignore_user_abort( true ); |
|
| 41 | + ignore_user_abort(true); |
|
| 42 | 42 | |
| 43 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 44 | - set_time_limit( 0 ); |
|
| 43 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 44 | + set_time_limit(0); |
|
| 45 | 45 | } |
| 46 | 46 | |
| 47 | 47 | nocache_headers(); |
| 48 | - header( 'Content-Type: text/csv; charset=utf-8' ); |
|
| 49 | - header( 'Content-Disposition: attachment; filename=' . apply_filters( 'give_earnings_export_filename', 'give-export-' . $this->export_type . '-' . date( 'n' ) . '-' . date( 'Y' ) ) . '.csv' ); |
|
| 50 | - header( "Expires: 0" ); |
|
| 48 | + header('Content-Type: text/csv; charset=utf-8'); |
|
| 49 | + header('Content-Disposition: attachment; filename='.apply_filters('give_earnings_export_filename', 'give-export-'.$this->export_type.'-'.date('n').'-'.date('Y')).'.csv'); |
|
| 50 | + header("Expires: 0"); |
|
| 51 | 51 | |
| 52 | 52 | } |
| 53 | 53 | |
@@ -61,10 +61,10 @@ discard block |
||
| 61 | 61 | public function csv_cols() { |
| 62 | 62 | |
| 63 | 63 | $cols = array( |
| 64 | - 'date' => esc_html__( 'Date', 'give' ), |
|
| 65 | - 'donations' => esc_html__( 'Donations', 'give' ), |
|
| 64 | + 'date' => esc_html__('Date', 'give'), |
|
| 65 | + 'donations' => esc_html__('Donations', 'give'), |
|
| 66 | 66 | /* translators: %s: currency */ |
| 67 | - 'earnings' => sprintf( esc_html__( 'Income (%s)', 'give' ), html_entity_decode( give_currency_filter( '' ) ) ) |
|
| 67 | + 'earnings' => sprintf(esc_html__('Income (%s)', 'give'), html_entity_decode(give_currency_filter(''))) |
|
| 68 | 68 | ); |
| 69 | 69 | |
| 70 | 70 | return $cols; |
@@ -79,28 +79,28 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | public function get_data() { |
| 81 | 81 | |
| 82 | - $start_year = isset( $_POST['start_year'] ) ? absint( $_POST['start_year'] ) : date( 'Y' ); |
|
| 83 | - $end_year = isset( $_POST['end_year'] ) ? absint( $_POST['end_year'] ) : date( 'Y' ); |
|
| 84 | - $start_month = isset( $_POST['start_month'] ) ? absint( $_POST['start_month'] ) : date( 'n' ); |
|
| 85 | - $end_month = isset( $_POST['end_month'] ) ? absint( $_POST['end_month'] ) : date( 'n' ); |
|
| 82 | + $start_year = isset($_POST['start_year']) ? absint($_POST['start_year']) : date('Y'); |
|
| 83 | + $end_year = isset($_POST['end_year']) ? absint($_POST['end_year']) : date('Y'); |
|
| 84 | + $start_month = isset($_POST['start_month']) ? absint($_POST['start_month']) : date('n'); |
|
| 85 | + $end_month = isset($_POST['end_month']) ? absint($_POST['end_month']) : date('n'); |
|
| 86 | 86 | |
| 87 | 87 | $data = array(); |
| 88 | 88 | $year = $start_year; |
| 89 | 89 | $stats = new Give_Payment_Stats; |
| 90 | 90 | |
| 91 | - while ( $year <= $end_year ) { |
|
| 91 | + while ($year <= $end_year) { |
|
| 92 | 92 | |
| 93 | - if ( $year == $start_year && $year == $end_year ) { |
|
| 93 | + if ($year == $start_year && $year == $end_year) { |
|
| 94 | 94 | |
| 95 | 95 | $m1 = $start_month; |
| 96 | 96 | $m2 = $end_month; |
| 97 | 97 | |
| 98 | - } elseif ( $year == $start_year ) { |
|
| 98 | + } elseif ($year == $start_year) { |
|
| 99 | 99 | |
| 100 | 100 | $m1 = $start_month; |
| 101 | 101 | $m2 = 12; |
| 102 | 102 | |
| 103 | - } elseif ( $year == $end_year ) { |
|
| 103 | + } elseif ($year == $end_year) { |
|
| 104 | 104 | |
| 105 | 105 | $m1 = 1; |
| 106 | 106 | $m2 = $end_month; |
@@ -112,28 +112,28 @@ discard block |
||
| 112 | 112 | |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - while ( $m1 <= $m2 ) { |
|
| 115 | + while ($m1 <= $m2) { |
|
| 116 | 116 | |
| 117 | - $date1 = mktime( 0, 0, 0, $m1, 1, $year ); |
|
| 118 | - $date2 = mktime( 0, 0, 0, $m1, cal_days_in_month( CAL_GREGORIAN, $m1, $year ), $year ); |
|
| 117 | + $date1 = mktime(0, 0, 0, $m1, 1, $year); |
|
| 118 | + $date2 = mktime(0, 0, 0, $m1, cal_days_in_month(CAL_GREGORIAN, $m1, $year), $year); |
|
| 119 | 119 | |
| 120 | 120 | $data[] = array( |
| 121 | - 'date' => date_i18n( 'F Y', $date1 ), |
|
| 122 | - 'donations' => $stats->get_sales( 0, $date1, $date2 ), |
|
| 123 | - 'earnings' => give_format_amount( $stats->get_earnings( 0, $date1, $date2 ) ), |
|
| 121 | + 'date' => date_i18n('F Y', $date1), |
|
| 122 | + 'donations' => $stats->get_sales(0, $date1, $date2), |
|
| 123 | + 'earnings' => give_format_amount($stats->get_earnings(0, $date1, $date2)), |
|
| 124 | 124 | ); |
| 125 | 125 | |
| 126 | - $m1 ++; |
|
| 126 | + $m1++; |
|
| 127 | 127 | |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | |
| 131 | - $year ++; |
|
| 131 | + $year++; |
|
| 132 | 132 | |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | - $data = apply_filters( 'give_export_get_data', $data ); |
|
| 136 | - $data = apply_filters( "give_export_get_data_{$this->export_type}", $data ); |
|
| 135 | + $data = apply_filters('give_export_get_data', $data); |
|
| 136 | + $data = apply_filters("give_export_get_data_{$this->export_type}", $data); |
|
| 137 | 137 | |
| 138 | 138 | return $data; |
| 139 | 139 | } |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | // Exit if accessed directly |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
@@ -24,51 +24,51 @@ discard block |
||
| 24 | 24 | function give_hide_subscription_notices() { |
| 25 | 25 | |
| 26 | 26 | // Hide subscription notices permanently. |
| 27 | - if ( ! empty( $_GET['_give_hide_license_notices_permanently'] ) ) { |
|
| 27 | + if ( ! empty($_GET['_give_hide_license_notices_permanently'])) { |
|
| 28 | 28 | global $current_user; |
| 29 | 29 | |
| 30 | 30 | // check previously disabled notice ids. |
| 31 | - $already_dismiss_notices = ( $already_dismiss_notices = get_user_meta( $current_user->ID, '_give_hide_license_notices_permanently', true ) ) |
|
| 31 | + $already_dismiss_notices = ($already_dismiss_notices = get_user_meta($current_user->ID, '_give_hide_license_notices_permanently', true)) |
|
| 32 | 32 | ? $already_dismiss_notices |
| 33 | 33 | : array(); |
| 34 | 34 | |
| 35 | 35 | // Get notice id. |
| 36 | - $notice_id = sanitize_text_field( $_GET['_give_hide_license_notices_permanently'] ); |
|
| 36 | + $notice_id = sanitize_text_field($_GET['_give_hide_license_notices_permanently']); |
|
| 37 | 37 | |
| 38 | - if( ! in_array( $notice_id, $already_dismiss_notices ) ) { |
|
| 38 | + if ( ! in_array($notice_id, $already_dismiss_notices)) { |
|
| 39 | 39 | $already_dismiss_notices[] = $notice_id; |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | // Store subscription ids. |
| 43 | - update_user_meta( $current_user->ID, '_give_hide_license_notices_permanently', $already_dismiss_notices ); |
|
| 43 | + update_user_meta($current_user->ID, '_give_hide_license_notices_permanently', $already_dismiss_notices); |
|
| 44 | 44 | |
| 45 | 45 | // Redirect user. |
| 46 | - wp_safe_redirect( remove_query_arg( '_give_hide_license_notices_permanently', $_SERVER['REQUEST_URI'] ) ); |
|
| 46 | + wp_safe_redirect(remove_query_arg('_give_hide_license_notices_permanently', $_SERVER['REQUEST_URI'])); |
|
| 47 | 47 | exit(); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | // Hide subscription notices shortly. |
| 51 | - if ( ! empty( $_GET['_give_hide_license_notices_shortly'] ) ) { |
|
| 51 | + if ( ! empty($_GET['_give_hide_license_notices_shortly'])) { |
|
| 52 | 52 | global $current_user; |
| 53 | 53 | |
| 54 | 54 | // Get notice id. |
| 55 | - $notice_id = sanitize_text_field( $_GET['_give_hide_license_notices_shortly'] ); |
|
| 55 | + $notice_id = sanitize_text_field($_GET['_give_hide_license_notices_shortly']); |
|
| 56 | 56 | |
| 57 | 57 | // Transient key name. |
| 58 | 58 | $transient_key = "_give_hide_license_notices_shortly_{$current_user->ID}_{$notice_id}"; |
| 59 | 59 | |
| 60 | - if( get_transient( $transient_key ) ) { |
|
| 60 | + if (get_transient($transient_key)) { |
|
| 61 | 61 | return; |
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | |
| 65 | 65 | // Hide notice for 24 hours. |
| 66 | - set_transient( $transient_key, true, 24 * HOUR_IN_SECONDS ); |
|
| 66 | + set_transient($transient_key, true, 24 * HOUR_IN_SECONDS); |
|
| 67 | 67 | |
| 68 | 68 | // Redirect user. |
| 69 | - wp_safe_redirect( remove_query_arg( '_give_hide_license_notices_shortly', $_SERVER['REQUEST_URI'] ) ); |
|
| 69 | + wp_safe_redirect(remove_query_arg('_give_hide_license_notices_shortly', $_SERVER['REQUEST_URI'])); |
|
| 70 | 70 | exit(); |
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | -add_action( 'admin_init', 'give_hide_subscription_notices' ); |
|
| 75 | 74 | \ No newline at end of file |
| 75 | +add_action('admin_init', 'give_hide_subscription_notices'); |
|
| 76 | 76 | \ No newline at end of file |
@@ -23,52 +23,52 @@ |
||
| 23 | 23 | */ |
| 24 | 24 | function give_hide_subscription_notices() { |
| 25 | 25 | |
| 26 | - // Hide subscription notices permanently. |
|
| 27 | - if ( ! empty( $_GET['_give_hide_license_notices_permanently'] ) ) { |
|
| 28 | - $current_user = wp_get_current_user(); |
|
| 26 | + // Hide subscription notices permanently. |
|
| 27 | + if ( ! empty( $_GET['_give_hide_license_notices_permanently'] ) ) { |
|
| 28 | + $current_user = wp_get_current_user(); |
|
| 29 | 29 | |
| 30 | - // check previously disabled notice ids. |
|
| 31 | - $already_dismiss_notices = ( $already_dismiss_notices = get_user_meta( $current_user->ID, '_give_hide_license_notices_permanently', true ) ) |
|
| 32 | - ? $already_dismiss_notices |
|
| 33 | - : array(); |
|
| 30 | + // check previously disabled notice ids. |
|
| 31 | + $already_dismiss_notices = ( $already_dismiss_notices = get_user_meta( $current_user->ID, '_give_hide_license_notices_permanently', true ) ) |
|
| 32 | + ? $already_dismiss_notices |
|
| 33 | + : array(); |
|
| 34 | 34 | |
| 35 | - // Get notice id. |
|
| 36 | - $notice_id = sanitize_text_field( $_GET['_give_hide_license_notices_permanently'] ); |
|
| 35 | + // Get notice id. |
|
| 36 | + $notice_id = sanitize_text_field( $_GET['_give_hide_license_notices_permanently'] ); |
|
| 37 | 37 | |
| 38 | - if( ! in_array( $notice_id, $already_dismiss_notices ) ) { |
|
| 39 | - $already_dismiss_notices[] = $notice_id; |
|
| 40 | - } |
|
| 38 | + if( ! in_array( $notice_id, $already_dismiss_notices ) ) { |
|
| 39 | + $already_dismiss_notices[] = $notice_id; |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - // Store subscription ids. |
|
| 43 | - update_user_meta( $current_user->ID, '_give_hide_license_notices_permanently', $already_dismiss_notices ); |
|
| 42 | + // Store subscription ids. |
|
| 43 | + update_user_meta( $current_user->ID, '_give_hide_license_notices_permanently', $already_dismiss_notices ); |
|
| 44 | 44 | |
| 45 | - // Redirect user. |
|
| 46 | - wp_safe_redirect( remove_query_arg( '_give_hide_license_notices_permanently', $_SERVER['REQUEST_URI'] ) ); |
|
| 47 | - exit(); |
|
| 48 | - } |
|
| 45 | + // Redirect user. |
|
| 46 | + wp_safe_redirect( remove_query_arg( '_give_hide_license_notices_permanently', $_SERVER['REQUEST_URI'] ) ); |
|
| 47 | + exit(); |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - // Hide subscription notices shortly. |
|
| 51 | - if ( ! empty( $_GET['_give_hide_license_notices_shortly'] ) ) { |
|
| 52 | - $current_user = wp_get_current_user(); |
|
| 50 | + // Hide subscription notices shortly. |
|
| 51 | + if ( ! empty( $_GET['_give_hide_license_notices_shortly'] ) ) { |
|
| 52 | + $current_user = wp_get_current_user(); |
|
| 53 | 53 | |
| 54 | - // Get notice id. |
|
| 55 | - $notice_id = sanitize_text_field( $_GET['_give_hide_license_notices_shortly'] ); |
|
| 54 | + // Get notice id. |
|
| 55 | + $notice_id = sanitize_text_field( $_GET['_give_hide_license_notices_shortly'] ); |
|
| 56 | 56 | |
| 57 | - // Transient key name. |
|
| 58 | - $transient_key = "_give_hide_license_notices_shortly_{$current_user->ID}_{$notice_id}"; |
|
| 57 | + // Transient key name. |
|
| 58 | + $transient_key = "_give_hide_license_notices_shortly_{$current_user->ID}_{$notice_id}"; |
|
| 59 | 59 | |
| 60 | - if( get_transient( $transient_key ) ) { |
|
| 61 | - return; |
|
| 62 | - } |
|
| 60 | + if( get_transient( $transient_key ) ) { |
|
| 61 | + return; |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | 64 | |
| 65 | - // Hide notice for 24 hours. |
|
| 66 | - set_transient( $transient_key, true, 24 * HOUR_IN_SECONDS ); |
|
| 65 | + // Hide notice for 24 hours. |
|
| 66 | + set_transient( $transient_key, true, 24 * HOUR_IN_SECONDS ); |
|
| 67 | 67 | |
| 68 | - // Redirect user. |
|
| 69 | - wp_safe_redirect( remove_query_arg( '_give_hide_license_notices_shortly', $_SERVER['REQUEST_URI'] ) ); |
|
| 70 | - exit(); |
|
| 71 | - } |
|
| 68 | + // Redirect user. |
|
| 69 | + wp_safe_redirect( remove_query_arg( '_give_hide_license_notices_shortly', $_SERVER['REQUEST_URI'] ) ); |
|
| 70 | + exit(); |
|
| 71 | + } |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | add_action( 'admin_init', 'give_hide_subscription_notices' ); |
| 75 | 75 | \ No newline at end of file |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | 15 | // Exit if accessed directly |
| 16 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 16 | +if ( ! defined('ABSPATH')) { |
|
| 17 | 17 | exit; |
| 18 | 18 | } |
| 19 | 19 | |
@@ -26,30 +26,30 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | function give_do_automatic_upgrades() { |
| 28 | 28 | $did_upgrade = false; |
| 29 | - $give_version = preg_replace( '/[^0-9.].*/', '', get_option( 'give_version' ) ); |
|
| 29 | + $give_version = preg_replace('/[^0-9.].*/', '', get_option('give_version')); |
|
| 30 | 30 | |
| 31 | - if ( ! $give_version ) { |
|
| 31 | + if ( ! $give_version) { |
|
| 32 | 32 | // 1.0 is the first version to use this option so we must add it. |
| 33 | 33 | $give_version = '1.0'; |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | - switch ( true ) { |
|
| 36 | + switch (true) { |
|
| 37 | 37 | |
| 38 | - case version_compare( $give_version, '1.6', '<' ) : |
|
| 38 | + case version_compare($give_version, '1.6', '<') : |
|
| 39 | 39 | give_v16_upgrades(); |
| 40 | 40 | $did_upgrade = true; |
| 41 | 41 | |
| 42 | - case version_compare( $give_version, '1.7', '<' ) : |
|
| 42 | + case version_compare($give_version, '1.7', '<') : |
|
| 43 | 43 | give_v17_upgrades(); |
| 44 | 44 | $did_upgrade = true; |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - if ( $did_upgrade ) { |
|
| 48 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
| 47 | + if ($did_upgrade) { |
|
| 48 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
| 49 | 49 | } |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | -add_action( 'admin_init', 'give_do_automatic_upgrades' ); |
|
| 52 | +add_action('admin_init', 'give_do_automatic_upgrades'); |
|
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | 55 | * Display Upgrade Notices |
@@ -59,18 +59,18 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | function give_show_upgrade_notices() { |
| 61 | 61 | |
| 62 | - if ( isset( $_GET['page'] ) && $_GET['page'] == 'give-upgrades' ) { |
|
| 62 | + if (isset($_GET['page']) && $_GET['page'] == 'give-upgrades') { |
|
| 63 | 63 | return; |
| 64 | 64 | } // Don't show notices on the upgrades page |
| 65 | 65 | |
| 66 | - $give_version = get_option( 'give_version' ); |
|
| 66 | + $give_version = get_option('give_version'); |
|
| 67 | 67 | |
| 68 | - if ( ! $give_version ) { |
|
| 68 | + if ( ! $give_version) { |
|
| 69 | 69 | // 1.0 is the first version to use this option so we must add it |
| 70 | 70 | $give_version = '1.0'; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - $give_version = preg_replace( '/[^0-9.].*/', '', $give_version ); |
|
| 73 | + $give_version = preg_replace('/[^0-9.].*/', '', $give_version); |
|
| 74 | 74 | |
| 75 | 75 | /* |
| 76 | 76 | * NOTICE: |
@@ -81,20 +81,20 @@ discard block |
||
| 81 | 81 | */ |
| 82 | 82 | |
| 83 | 83 | //v1.3.2 Upgrades |
| 84 | - if ( version_compare( $give_version, '1.3.2', '<' ) || ! give_has_upgrade_completed( 'upgrade_give_payment_customer_id' ) ) { |
|
| 84 | + if (version_compare($give_version, '1.3.2', '<') || ! give_has_upgrade_completed('upgrade_give_payment_customer_id')) { |
|
| 85 | 85 | printf( |
| 86 | 86 | /* translators: %s: upgrade URL */ |
| 87 | - '<div class="updated"><p>' . __( 'Give needs to upgrade the donor database, click <a href="%s">here</a> to start the upgrade.', 'give' ) . '</p></div>', |
|
| 88 | - esc_url( admin_url( 'index.php?page=give-upgrades&give-upgrade=upgrade_give_payment_customer_id' ) ) |
|
| 87 | + '<div class="updated"><p>'.__('Give needs to upgrade the donor database, click <a href="%s">here</a> to start the upgrade.', 'give').'</p></div>', |
|
| 88 | + esc_url(admin_url('index.php?page=give-upgrades&give-upgrade=upgrade_give_payment_customer_id')) |
|
| 89 | 89 | ); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | //v1.3.4 Upgrades //ensure the user has gone through 1.3.4 |
| 93 | - if ( version_compare( $give_version, '1.3.4', '<' ) || ( ! give_has_upgrade_completed( 'upgrade_give_offline_status' ) && give_has_upgrade_completed( 'upgrade_give_payment_customer_id' ) ) ) { |
|
| 93 | + if (version_compare($give_version, '1.3.4', '<') || ( ! give_has_upgrade_completed('upgrade_give_offline_status') && give_has_upgrade_completed('upgrade_give_payment_customer_id'))) { |
|
| 94 | 94 | printf( |
| 95 | 95 | /* translators: %s: upgrade URL */ |
| 96 | - '<div class="updated"><p>' . __( 'Give needs to upgrade the donations database, click <a href="%s">here</a> to start the upgrade.', 'give' ) . '</p></div>', |
|
| 97 | - esc_url( admin_url( 'index.php?page=give-upgrades&give-upgrade=upgrade_give_offline_status' ) ) |
|
| 96 | + '<div class="updated"><p>'.__('Give needs to upgrade the donations database, click <a href="%s">here</a> to start the upgrade.', 'give').'</p></div>', |
|
| 97 | + esc_url(admin_url('index.php?page=give-upgrades&give-upgrade=upgrade_give_offline_status')) |
|
| 98 | 98 | ); |
| 99 | 99 | } |
| 100 | 100 | |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | } |
| 106 | 106 | |
| 107 | -add_action( 'admin_notices', 'give_show_upgrade_notices' ); |
|
| 107 | +add_action('admin_notices', 'give_show_upgrade_notices'); |
|
| 108 | 108 | |
| 109 | 109 | /** |
| 110 | 110 | * Triggers all upgrade functions |
@@ -116,26 +116,26 @@ discard block |
||
| 116 | 116 | */ |
| 117 | 117 | function give_trigger_upgrades() { |
| 118 | 118 | |
| 119 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 120 | - wp_die( esc_html__( 'You do not have permission to do Give upgrades.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 119 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 120 | + wp_die(esc_html__('You do not have permission to do Give upgrades.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | - $give_version = get_option( 'give_version' ); |
|
| 123 | + $give_version = get_option('give_version'); |
|
| 124 | 124 | |
| 125 | - if ( ! $give_version ) { |
|
| 125 | + if ( ! $give_version) { |
|
| 126 | 126 | // 1.0 is the first version to use this option so we must add it |
| 127 | 127 | $give_version = '1.0'; |
| 128 | - add_option( 'give_version', $give_version ); |
|
| 128 | + add_option('give_version', $give_version); |
|
| 129 | 129 | } |
| 130 | 130 | |
| 131 | - update_option( 'give_version', GIVE_VERSION ); |
|
| 131 | + update_option('give_version', GIVE_VERSION); |
|
| 132 | 132 | |
| 133 | - if ( DOING_AJAX ) { |
|
| 134 | - die( 'complete' ); |
|
| 133 | + if (DOING_AJAX) { |
|
| 134 | + die('complete'); |
|
| 135 | 135 | } // Let AJAX know that the upgrade is complete |
| 136 | 136 | } |
| 137 | 137 | |
| 138 | -add_action( 'wp_ajax_give_trigger_upgrades', 'give_trigger_upgrades' ); |
|
| 138 | +add_action('wp_ajax_give_trigger_upgrades', 'give_trigger_upgrades'); |
|
| 139 | 139 | |
| 140 | 140 | /** |
| 141 | 141 | * Check if the upgrade routine has been run for a specific action |
@@ -146,15 +146,15 @@ discard block |
||
| 146 | 146 | * |
| 147 | 147 | * @return bool If the action has been added to the completed actions array |
| 148 | 148 | */ |
| 149 | -function give_has_upgrade_completed( $upgrade_action = '' ) { |
|
| 149 | +function give_has_upgrade_completed($upgrade_action = '') { |
|
| 150 | 150 | |
| 151 | - if ( empty( $upgrade_action ) ) { |
|
| 151 | + if (empty($upgrade_action)) { |
|
| 152 | 152 | return false; |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | $completed_upgrades = give_get_completed_upgrades(); |
| 156 | 156 | |
| 157 | - return in_array( $upgrade_action, $completed_upgrades ); |
|
| 157 | + return in_array($upgrade_action, $completed_upgrades); |
|
| 158 | 158 | |
| 159 | 159 | } |
| 160 | 160 | |
@@ -167,9 +167,9 @@ discard block |
||
| 167 | 167 | * |
| 168 | 168 | * @return bool If the function was successfully added |
| 169 | 169 | */ |
| 170 | -function give_set_upgrade_complete( $upgrade_action = '' ) { |
|
| 170 | +function give_set_upgrade_complete($upgrade_action = '') { |
|
| 171 | 171 | |
| 172 | - if ( empty( $upgrade_action ) ) { |
|
| 172 | + if (empty($upgrade_action)) { |
|
| 173 | 173 | return false; |
| 174 | 174 | } |
| 175 | 175 | |
@@ -177,9 +177,9 @@ discard block |
||
| 177 | 177 | $completed_upgrades[] = $upgrade_action; |
| 178 | 178 | |
| 179 | 179 | // Remove any blanks, and only show uniques |
| 180 | - $completed_upgrades = array_unique( array_values( $completed_upgrades ) ); |
|
| 180 | + $completed_upgrades = array_unique(array_values($completed_upgrades)); |
|
| 181 | 181 | |
| 182 | - return update_option( 'give_completed_upgrades', $completed_upgrades ); |
|
| 182 | + return update_option('give_completed_upgrades', $completed_upgrades); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -190,9 +190,9 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | function give_get_completed_upgrades() { |
| 192 | 192 | |
| 193 | - $completed_upgrades = get_option( 'give_completed_upgrades' ); |
|
| 193 | + $completed_upgrades = get_option('give_completed_upgrades'); |
|
| 194 | 194 | |
| 195 | - if ( false === $completed_upgrades ) { |
|
| 195 | + if (false === $completed_upgrades) { |
|
| 196 | 196 | $completed_upgrades = array(); |
| 197 | 197 | } |
| 198 | 198 | |
@@ -210,30 +210,30 @@ discard block |
||
| 210 | 210 | */ |
| 211 | 211 | function give_v132_upgrade_give_payment_customer_id() { |
| 212 | 212 | global $wpdb; |
| 213 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 214 | - wp_die( esc_html__( 'You do not have permission to do Give upgrades.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 213 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 214 | + wp_die(esc_html__('You do not have permission to do Give upgrades.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 215 | 215 | } |
| 216 | 216 | |
| 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 | //UPDATE DB METAKEYS |
| 224 | 224 | $sql = "UPDATE $wpdb->postmeta SET meta_key = '_give_payment_customer_id' WHERE meta_key = '_give_payment_donor_id'"; |
| 225 | - $query = $wpdb->query( $sql ); |
|
| 225 | + $query = $wpdb->query($sql); |
|
| 226 | 226 | |
| 227 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
| 228 | - give_set_upgrade_complete( 'upgrade_give_payment_customer_id' ); |
|
| 229 | - delete_option( 'give_doing_upgrade' ); |
|
| 230 | - wp_redirect( admin_url() ); |
|
| 227 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
| 228 | + give_set_upgrade_complete('upgrade_give_payment_customer_id'); |
|
| 229 | + delete_option('give_doing_upgrade'); |
|
| 230 | + wp_redirect(admin_url()); |
|
| 231 | 231 | exit; |
| 232 | 232 | |
| 233 | 233 | |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | -add_action( 'give_upgrade_give_payment_customer_id', 'give_v132_upgrade_give_payment_customer_id' ); |
|
| 236 | +add_action('give_upgrade_give_payment_customer_id', 'give_v132_upgrade_give_payment_customer_id'); |
|
| 237 | 237 | |
| 238 | 238 | /** |
| 239 | 239 | * Upgrades the Offline Status |
@@ -247,14 +247,14 @@ discard block |
||
| 247 | 247 | |
| 248 | 248 | global $wpdb; |
| 249 | 249 | |
| 250 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 251 | - wp_die( esc_html__( 'You do not have permission to do Give upgrades.', 'give' ), esc_html__( 'Error', 'give' ), array( 'response' => 403 ) ); |
|
| 250 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 251 | + wp_die(esc_html__('You do not have permission to do Give upgrades.', 'give'), esc_html__('Error', 'give'), array('response' => 403)); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - ignore_user_abort( true ); |
|
| 254 | + ignore_user_abort(true); |
|
| 255 | 255 | |
| 256 | - if ( ! give_is_func_disabled( 'set_time_limit' ) && ! ini_get( 'safe_mode' ) ) { |
|
| 257 | - @set_time_limit( 0 ); |
|
| 256 | + if ( ! give_is_func_disabled('set_time_limit') && ! ini_get('safe_mode')) { |
|
| 257 | + @set_time_limit(0); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | // Get abandoned offline payments |
@@ -264,35 +264,35 @@ discard block |
||
| 264 | 264 | $where .= "AND ( p.post_status = 'abandoned' )"; |
| 265 | 265 | $where .= "AND ( m.meta_key = '_give_payment_gateway' AND m.meta_value = 'offline' )"; |
| 266 | 266 | |
| 267 | - $sql = $select . $join . $where; |
|
| 268 | - $found_payments = $wpdb->get_col( $sql ); |
|
| 267 | + $sql = $select.$join.$where; |
|
| 268 | + $found_payments = $wpdb->get_col($sql); |
|
| 269 | 269 | |
| 270 | 270 | |
| 271 | - foreach ( $found_payments as $payment ) { |
|
| 271 | + foreach ($found_payments as $payment) { |
|
| 272 | 272 | |
| 273 | 273 | //Only change ones marked abandoned since our release last week |
| 274 | 274 | //because the admin may have marked some abandoned themselves |
| 275 | - $modified_time = get_post_modified_time( 'U', false, $payment ); |
|
| 275 | + $modified_time = get_post_modified_time('U', false, $payment); |
|
| 276 | 276 | |
| 277 | 277 | //1450124863 = 12/10/2015 20:42:25 |
| 278 | - if ( $modified_time >= 1450124863 ) { |
|
| 278 | + if ($modified_time >= 1450124863) { |
|
| 279 | 279 | |
| 280 | - give_update_payment_status( $payment, 'pending' ); |
|
| 280 | + give_update_payment_status($payment, 'pending'); |
|
| 281 | 281 | |
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | } |
| 285 | 285 | |
| 286 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
| 287 | - give_set_upgrade_complete( 'upgrade_give_offline_status' ); |
|
| 288 | - delete_option( 'give_doing_upgrade' ); |
|
| 289 | - wp_redirect( admin_url() ); |
|
| 286 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
| 287 | + give_set_upgrade_complete('upgrade_give_offline_status'); |
|
| 288 | + delete_option('give_doing_upgrade'); |
|
| 289 | + wp_redirect(admin_url()); |
|
| 290 | 290 | exit; |
| 291 | 291 | |
| 292 | 292 | |
| 293 | 293 | } |
| 294 | 294 | |
| 295 | -add_action( 'give_upgrade_give_offline_status', 'give_v134_upgrade_give_offline_status' ); |
|
| 295 | +add_action('give_upgrade_give_offline_status', 'give_v134_upgrade_give_offline_status'); |
|
| 296 | 296 | |
| 297 | 297 | /** |
| 298 | 298 | * Cleanup User Roles |
@@ -303,17 +303,17 @@ discard block |
||
| 303 | 303 | */ |
| 304 | 304 | function give_v152_cleanup_users() { |
| 305 | 305 | |
| 306 | - $give_version = get_option( 'give_version' ); |
|
| 306 | + $give_version = get_option('give_version'); |
|
| 307 | 307 | |
| 308 | - if ( ! $give_version ) { |
|
| 308 | + if ( ! $give_version) { |
|
| 309 | 309 | // 1.0 is the first version to use this option so we must add it |
| 310 | 310 | $give_version = '1.0'; |
| 311 | 311 | } |
| 312 | 312 | |
| 313 | - $give_version = preg_replace( '/[^0-9.].*/', '', $give_version ); |
|
| 313 | + $give_version = preg_replace('/[^0-9.].*/', '', $give_version); |
|
| 314 | 314 | |
| 315 | 315 | //v1.5.2 Upgrades |
| 316 | - if ( version_compare( $give_version, '1.5.2', '<' ) || ! give_has_upgrade_completed( 'upgrade_give_user_caps_cleanup' ) ) { |
|
| 316 | + if (version_compare($give_version, '1.5.2', '<') || ! give_has_upgrade_completed('upgrade_give_user_caps_cleanup')) { |
|
| 317 | 317 | |
| 318 | 318 | //Delete all caps with "ss" |
| 319 | 319 | //Also delete all unused "campaign" roles |
@@ -360,9 +360,9 @@ discard block |
||
| 360 | 360 | ); |
| 361 | 361 | |
| 362 | 362 | global $wp_roles; |
| 363 | - foreach ( $delete_caps as $cap ) { |
|
| 364 | - foreach ( array_keys( $wp_roles->roles ) as $role ) { |
|
| 365 | - $wp_roles->remove_cap( $role, $cap ); |
|
| 363 | + foreach ($delete_caps as $cap) { |
|
| 364 | + foreach (array_keys($wp_roles->roles) as $role) { |
|
| 365 | + $wp_roles->remove_cap($role, $cap); |
|
| 366 | 366 | } |
| 367 | 367 | } |
| 368 | 368 | |
@@ -372,15 +372,15 @@ discard block |
||
| 372 | 372 | $roles->add_caps(); |
| 373 | 373 | |
| 374 | 374 | //The Update Ran |
| 375 | - update_option( 'give_version', preg_replace( '/[^0-9.].*/', '', GIVE_VERSION ) ); |
|
| 376 | - give_set_upgrade_complete( 'upgrade_give_user_caps_cleanup' ); |
|
| 377 | - delete_option( 'give_doing_upgrade' ); |
|
| 375 | + update_option('give_version', preg_replace('/[^0-9.].*/', '', GIVE_VERSION)); |
|
| 376 | + give_set_upgrade_complete('upgrade_give_user_caps_cleanup'); |
|
| 377 | + delete_option('give_doing_upgrade'); |
|
| 378 | 378 | |
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | } |
| 382 | 382 | |
| 383 | -add_action( 'admin_init', 'give_v152_cleanup_users' ); |
|
| 383 | +add_action('admin_init', 'give_v152_cleanup_users'); |
|
| 384 | 384 | |
| 385 | 385 | /** |
| 386 | 386 | * 1.6 Upgrade routine to create the customer meta table. |
@@ -410,60 +410,60 @@ discard block |
||
| 410 | 410 | * |
| 411 | 411 | * @since 1.7 |
| 412 | 412 | */ |
| 413 | -function give_upgrade_addon_license_data(){ |
|
| 413 | +function give_upgrade_addon_license_data() { |
|
| 414 | 414 | global $give_options; |
| 415 | 415 | |
| 416 | 416 | $api_url = 'https://givewp.com/give-sl-api/'; |
| 417 | 417 | |
| 418 | 418 | // Get addons license key. |
| 419 | 419 | $addons = array(); |
| 420 | - foreach ( $give_options as $key => $value ) { |
|
| 421 | - if( false !== strpos( $key, '_license_key' ) ) { |
|
| 420 | + foreach ($give_options as $key => $value) { |
|
| 421 | + if (false !== strpos($key, '_license_key')) { |
|
| 422 | 422 | $addons[$key] = $value; |
| 423 | 423 | } |
| 424 | 424 | } |
| 425 | 425 | |
| 426 | 426 | // Bailout: We do not have any addon license data to upgrade. |
| 427 | - if( empty( $addons ) ) { |
|
| 427 | + if (empty($addons)) { |
|
| 428 | 428 | return false; |
| 429 | 429 | } |
| 430 | 430 | |
| 431 | - foreach ( $addons as $key => $addon_license ) { |
|
| 431 | + foreach ($addons as $key => $addon_license) { |
|
| 432 | 432 | |
| 433 | 433 | // Get addon shortname. |
| 434 | - $shortname = str_replace( '_license_key', '', $key ); |
|
| 434 | + $shortname = str_replace('_license_key', '', $key); |
|
| 435 | 435 | |
| 436 | 436 | // Addon license option name. |
| 437 | - $addon_license_option_name = $shortname . '_license_active'; |
|
| 437 | + $addon_license_option_name = $shortname.'_license_active'; |
|
| 438 | 438 | |
| 439 | 439 | // bailout if license is empty. |
| 440 | - if( empty( $addon_license ) ) { |
|
| 441 | - delete_option( $addon_license_option_name ); |
|
| 440 | + if (empty($addon_license)) { |
|
| 441 | + delete_option($addon_license_option_name); |
|
| 442 | 442 | continue; |
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | // Get addon name. |
| 446 | 446 | $addon_name = array(); |
| 447 | - $addon_name_parts = explode( '_', str_replace( 'give_', '', $shortname ) ); |
|
| 448 | - foreach ( $addon_name_parts as $name_part ) { |
|
| 447 | + $addon_name_parts = explode('_', str_replace('give_', '', $shortname)); |
|
| 448 | + foreach ($addon_name_parts as $name_part) { |
|
| 449 | 449 | |
| 450 | 450 | // Fix addon name |
| 451 | - switch ( $name_part ) { |
|
| 451 | + switch ($name_part) { |
|
| 452 | 452 | case 'authorizenet' : |
| 453 | 453 | $name_part = 'authorize.net'; |
| 454 | 454 | break; |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | - $addon_name[] = ucfirst( $name_part ); |
|
| 457 | + $addon_name[] = ucfirst($name_part); |
|
| 458 | 458 | } |
| 459 | 459 | |
| 460 | - $addon_name = implode( ' ', $addon_name ); |
|
| 460 | + $addon_name = implode(' ', $addon_name); |
|
| 461 | 461 | |
| 462 | 462 | // Data to send to the API |
| 463 | 463 | $api_params = array( |
| 464 | 464 | 'edd_action' => 'activate_license', //never change from "edd_" to "give_"! |
| 465 | 465 | 'license' => $addon_license, |
| 466 | - 'item_name' => urlencode( $addon_name ), |
|
| 466 | + 'item_name' => urlencode($addon_name), |
|
| 467 | 467 | 'url' => home_url() |
| 468 | 468 | ); |
| 469 | 469 | |
@@ -478,16 +478,16 @@ discard block |
||
| 478 | 478 | ); |
| 479 | 479 | |
| 480 | 480 | // Make sure there are no errors |
| 481 | - if ( is_wp_error( $response ) ) { |
|
| 482 | - delete_option( $addon_license_option_name ); |
|
| 481 | + if (is_wp_error($response)) { |
|
| 482 | + delete_option($addon_license_option_name); |
|
| 483 | 483 | continue; |
| 484 | 484 | } |
| 485 | 485 | |
| 486 | 486 | // Tell WordPress to look for updates |
| 487 | - set_site_transient( 'update_plugins', null ); |
|
| 487 | + set_site_transient('update_plugins', null); |
|
| 488 | 488 | |
| 489 | 489 | // Decode license data |
| 490 | - $license_data = json_decode( wp_remote_retrieve_body( $response ) ); |
|
| 491 | - update_option( $addon_license_option_name, $license_data ); |
|
| 490 | + $license_data = json_decode(wp_remote_retrieve_body($response)); |
|
| 491 | + update_option($addon_license_option_name, $license_data); |
|
| 492 | 492 | } |
| 493 | 493 | } |
| 494 | 494 | \ No newline at end of file |
@@ -411,83 +411,83 @@ |
||
| 411 | 411 | * @since 1.7 |
| 412 | 412 | */ |
| 413 | 413 | function give_upgrade_addon_license_data(){ |
| 414 | - $give_options = give_get_settings(); |
|
| 415 | - |
|
| 416 | - $api_url = 'https://givewp.com/give-sl-api/'; |
|
| 417 | - |
|
| 418 | - // Get addons license key. |
|
| 419 | - $addons = array(); |
|
| 420 | - foreach ( $give_options as $key => $value ) { |
|
| 421 | - if( false !== strpos( $key, '_license_key' ) ) { |
|
| 422 | - $addons[$key] = $value; |
|
| 423 | - } |
|
| 424 | - } |
|
| 425 | - |
|
| 426 | - // Bailout: We do not have any addon license data to upgrade. |
|
| 427 | - if( empty( $addons ) ) { |
|
| 428 | - return false; |
|
| 429 | - } |
|
| 414 | + $give_options = give_get_settings(); |
|
| 415 | + |
|
| 416 | + $api_url = 'https://givewp.com/give-sl-api/'; |
|
| 417 | + |
|
| 418 | + // Get addons license key. |
|
| 419 | + $addons = array(); |
|
| 420 | + foreach ( $give_options as $key => $value ) { |
|
| 421 | + if( false !== strpos( $key, '_license_key' ) ) { |
|
| 422 | + $addons[$key] = $value; |
|
| 423 | + } |
|
| 424 | + } |
|
| 425 | + |
|
| 426 | + // Bailout: We do not have any addon license data to upgrade. |
|
| 427 | + if( empty( $addons ) ) { |
|
| 428 | + return false; |
|
| 429 | + } |
|
| 430 | 430 | |
| 431 | - foreach ( $addons as $key => $addon_license ) { |
|
| 432 | - |
|
| 433 | - // Get addon shortname. |
|
| 434 | - $shortname = str_replace( '_license_key', '', $key ); |
|
| 435 | - |
|
| 436 | - // Addon license option name. |
|
| 437 | - $addon_license_option_name = $shortname . '_license_active'; |
|
| 438 | - |
|
| 439 | - // bailout if license is empty. |
|
| 440 | - if( empty( $addon_license ) ) { |
|
| 441 | - delete_option( $addon_license_option_name ); |
|
| 442 | - continue; |
|
| 443 | - } |
|
| 444 | - |
|
| 445 | - // Get addon name. |
|
| 446 | - $addon_name = array(); |
|
| 447 | - $addon_name_parts = explode( '_', str_replace( 'give_', '', $shortname ) ); |
|
| 448 | - foreach ( $addon_name_parts as $name_part ) { |
|
| 449 | - |
|
| 450 | - // Fix addon name |
|
| 451 | - switch ( $name_part ) { |
|
| 452 | - case 'authorizenet' : |
|
| 453 | - $name_part = 'authorize.net'; |
|
| 454 | - break; |
|
| 455 | - } |
|
| 456 | - |
|
| 457 | - $addon_name[] = ucfirst( $name_part ); |
|
| 458 | - } |
|
| 459 | - |
|
| 460 | - $addon_name = implode( ' ', $addon_name ); |
|
| 461 | - |
|
| 462 | - // Data to send to the API |
|
| 463 | - $api_params = array( |
|
| 464 | - 'edd_action' => 'activate_license', //never change from "edd_" to "give_"! |
|
| 465 | - 'license' => $addon_license, |
|
| 466 | - 'item_name' => urlencode( $addon_name ), |
|
| 467 | - 'url' => home_url() |
|
| 468 | - ); |
|
| 469 | - |
|
| 470 | - // Call the API |
|
| 471 | - $response = wp_remote_post( |
|
| 472 | - $api_url, |
|
| 473 | - array( |
|
| 474 | - 'timeout' => 15, |
|
| 475 | - 'sslverify' => false, |
|
| 476 | - 'body' => $api_params |
|
| 477 | - ) |
|
| 478 | - ); |
|
| 479 | - |
|
| 480 | - // Make sure there are no errors |
|
| 481 | - if ( is_wp_error( $response ) ) { |
|
| 482 | - delete_option( $addon_license_option_name ); |
|
| 483 | - continue; |
|
| 484 | - } |
|
| 485 | - |
|
| 486 | - // Tell WordPress to look for updates |
|
| 487 | - set_site_transient( 'update_plugins', null ); |
|
| 488 | - |
|
| 489 | - // Decode license data |
|
| 490 | - $license_data = json_decode( wp_remote_retrieve_body( $response ) ); |
|
| 491 | - update_option( $addon_license_option_name, $license_data ); |
|
| 492 | - } |
|
| 431 | + foreach ( $addons as $key => $addon_license ) { |
|
| 432 | + |
|
| 433 | + // Get addon shortname. |
|
| 434 | + $shortname = str_replace( '_license_key', '', $key ); |
|
| 435 | + |
|
| 436 | + // Addon license option name. |
|
| 437 | + $addon_license_option_name = $shortname . '_license_active'; |
|
| 438 | + |
|
| 439 | + // bailout if license is empty. |
|
| 440 | + if( empty( $addon_license ) ) { |
|
| 441 | + delete_option( $addon_license_option_name ); |
|
| 442 | + continue; |
|
| 443 | + } |
|
| 444 | + |
|
| 445 | + // Get addon name. |
|
| 446 | + $addon_name = array(); |
|
| 447 | + $addon_name_parts = explode( '_', str_replace( 'give_', '', $shortname ) ); |
|
| 448 | + foreach ( $addon_name_parts as $name_part ) { |
|
| 449 | + |
|
| 450 | + // Fix addon name |
|
| 451 | + switch ( $name_part ) { |
|
| 452 | + case 'authorizenet' : |
|
| 453 | + $name_part = 'authorize.net'; |
|
| 454 | + break; |
|
| 455 | + } |
|
| 456 | + |
|
| 457 | + $addon_name[] = ucfirst( $name_part ); |
|
| 458 | + } |
|
| 459 | + |
|
| 460 | + $addon_name = implode( ' ', $addon_name ); |
|
| 461 | + |
|
| 462 | + // Data to send to the API |
|
| 463 | + $api_params = array( |
|
| 464 | + 'edd_action' => 'activate_license', //never change from "edd_" to "give_"! |
|
| 465 | + 'license' => $addon_license, |
|
| 466 | + 'item_name' => urlencode( $addon_name ), |
|
| 467 | + 'url' => home_url() |
|
| 468 | + ); |
|
| 469 | + |
|
| 470 | + // Call the API |
|
| 471 | + $response = wp_remote_post( |
|
| 472 | + $api_url, |
|
| 473 | + array( |
|
| 474 | + 'timeout' => 15, |
|
| 475 | + 'sslverify' => false, |
|
| 476 | + 'body' => $api_params |
|
| 477 | + ) |
|
| 478 | + ); |
|
| 479 | + |
|
| 480 | + // Make sure there are no errors |
|
| 481 | + if ( is_wp_error( $response ) ) { |
|
| 482 | + delete_option( $addon_license_option_name ); |
|
| 483 | + continue; |
|
| 484 | + } |
|
| 485 | + |
|
| 486 | + // Tell WordPress to look for updates |
|
| 487 | + set_site_transient( 'update_plugins', null ); |
|
| 488 | + |
|
| 489 | + // Decode license data |
|
| 490 | + $license_data = json_decode( wp_remote_retrieve_body( $response ) ); |
|
| 491 | + update_option( $addon_license_option_name, $license_data ); |
|
| 492 | + } |
|
| 493 | 493 | } |
| 494 | 494 | \ No newline at end of file |