@@ -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 | |
@@ -42,9 +42,9 @@ discard block |
||
| 42 | 42 | give_ignore_user_abort(); |
| 43 | 43 | |
| 44 | 44 | nocache_headers(); |
| 45 | - header( 'Content-Type: application/json; charset=utf-8' ); |
|
| 46 | - header( 'Content-Disposition: attachment; filename=' . apply_filters( 'give_core_settings_export_filename', 'give-export-' . $this->export_type . '-' . date( 'n' ) . '-' . date( 'Y' ) ) . '.json' ); |
|
| 47 | - header( 'Expires: 0' ); |
|
| 45 | + header('Content-Type: application/json; charset=utf-8'); |
|
| 46 | + header('Content-Disposition: attachment; filename='.apply_filters('give_core_settings_export_filename', 'give-export-'.$this->export_type.'-'.date('n').'-'.date('Y')).'.json'); |
|
| 47 | + header('Expires: 0'); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** |
@@ -54,18 +54,18 @@ discard block |
||
| 54 | 54 | * @since 1.8.17 |
| 55 | 55 | */ |
| 56 | 56 | public function json_core_settings_export() { |
| 57 | - $settings_excludes = isset( $_POST['settings_export_excludes'] ) ? give_clean( $_POST['settings_export_excludes'] ) : array(); |
|
| 58 | - $give_settings = get_option( 'give_settings' ); |
|
| 57 | + $settings_excludes = isset($_POST['settings_export_excludes']) ? give_clean($_POST['settings_export_excludes']) : array(); |
|
| 58 | + $give_settings = get_option('give_settings'); |
|
| 59 | 59 | |
| 60 | - if ( is_array( $settings_excludes ) && ! empty( $settings_excludes ) ) { |
|
| 61 | - foreach ( $settings_excludes as $key => $value ) { |
|
| 62 | - if ( give_is_setting_enabled( $value ) ) { |
|
| 63 | - unset( $give_settings[ $key ] ); |
|
| 60 | + if (is_array($settings_excludes) && ! empty($settings_excludes)) { |
|
| 61 | + foreach ($settings_excludes as $key => $value) { |
|
| 62 | + if (give_is_setting_enabled($value)) { |
|
| 63 | + unset($give_settings[$key]); |
|
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | - echo wp_json_encode( $give_settings ); |
|
| 68 | + echo wp_json_encode($give_settings); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | /** |
@@ -75,11 +75,11 @@ discard block |
||
| 75 | 75 | * @since 1.8.17 |
| 76 | 76 | */ |
| 77 | 77 | public function export() { |
| 78 | - if ( ! $this->can_export() ) { |
|
| 78 | + if ( ! $this->can_export()) { |
|
| 79 | 79 | wp_die( |
| 80 | - esc_html__( 'You do not have permission to export data.', 'give' ), |
|
| 81 | - esc_html__( 'Error', 'give' ), |
|
| 82 | - array( 'response' => 403 ) |
|
| 80 | + esc_html__('You do not have permission to export data.', 'give'), |
|
| 81 | + esc_html__('Error', 'give'), |
|
| 82 | + array('response' => 403) |
|
| 83 | 83 | ); |
| 84 | 84 | } |
| 85 | 85 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * Admin View: Exports |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 6 | +if ( ! defined('ABSPATH')) { |
|
| 7 | 7 | exit; |
| 8 | 8 | } ?> |
| 9 | 9 | |
@@ -18,14 +18,14 @@ discard block |
||
| 18 | 18 | * |
| 19 | 19 | * @since 1.0 |
| 20 | 20 | */ |
| 21 | - do_action( 'give_tools_tab_export_content_top' ); |
|
| 21 | + do_action('give_tools_tab_export_content_top'); |
|
| 22 | 22 | ?> |
| 23 | 23 | |
| 24 | 24 | <table class="widefat export-options-table give-table striped"> |
| 25 | 25 | <thead> |
| 26 | 26 | <tr> |
| 27 | - <th scope="col"><?php _e( 'Export Type', 'give' ); ?></th> |
|
| 28 | - <th scope="col"><?php _e( 'Export Options', 'give' ); ?></th> |
|
| 27 | + <th scope="col"><?php _e('Export Type', 'give'); ?></th> |
|
| 28 | + <th scope="col"><?php _e('Export Options', 'give'); ?></th> |
|
| 29 | 29 | </tr> |
| 30 | 30 | </thead> |
| 31 | 31 | <tbody> |
@@ -38,20 +38,20 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @since 1.0 |
| 40 | 40 | */ |
| 41 | - do_action( 'give_tools_tab_export_table_top' ); |
|
| 41 | + do_action('give_tools_tab_export_table_top'); |
|
| 42 | 42 | ?> |
| 43 | 43 | |
| 44 | 44 | <tr class="give-export-donations-history"> |
| 45 | 45 | <td scope="row" class="row-title"> |
| 46 | 46 | <h3> |
| 47 | - <span><?php _e( 'Export Donation History', 'give' ); ?></span> |
|
| 47 | + <span><?php _e('Export Donation History', 'give'); ?></span> |
|
| 48 | 48 | </h3> |
| 49 | - <p><?php _e( 'Download a CSV of all donations recorded.', 'give' ); ?></p> |
|
| 49 | + <p><?php _e('Download a CSV of all donations recorded.', 'give'); ?></p> |
|
| 50 | 50 | </td> |
| 51 | 51 | <td> |
| 52 | 52 | <a class="button" |
| 53 | - href="<?php echo add_query_arg( array( 'type' => 'export_donations' ) ); ?>"> |
|
| 54 | - <?php _e( 'Generate CSV', 'give' ); ?> |
|
| 53 | + href="<?php echo add_query_arg(array('type' => 'export_donations')); ?>"> |
|
| 54 | + <?php _e('Generate CSV', 'give'); ?> |
|
| 55 | 55 | </a> |
| 56 | 56 | </td> |
| 57 | 57 | </tr> |
@@ -59,38 +59,38 @@ discard block |
||
| 59 | 59 | <tr class="give-export-pdf-sales-earnings"> |
| 60 | 60 | <td scope="row" class="row-title"> |
| 61 | 61 | <h3> |
| 62 | - <span><?php _e( 'Export PDF of Donations and Income', 'give' ); ?></span> |
|
| 62 | + <span><?php _e('Export PDF of Donations and Income', 'give'); ?></span> |
|
| 63 | 63 | </h3> |
| 64 | - <p><?php _e( 'Download a PDF of Donations and Income reports for all forms for the current year.', 'give' ); ?></p> |
|
| 64 | + <p><?php _e('Download a PDF of Donations and Income reports for all forms for the current year.', 'give'); ?></p> |
|
| 65 | 65 | </td> |
| 66 | 66 | <td> |
| 67 | 67 | <a class="button" |
| 68 | - href="<?php echo wp_nonce_url( add_query_arg( array( 'give-action' => 'generate_pdf' ) ), 'give_generate_pdf' ); ?>"> |
|
| 69 | - <?php _e( 'Generate PDF', 'give' ); ?> |
|
| 68 | + href="<?php echo wp_nonce_url(add_query_arg(array('give-action' => 'generate_pdf')), 'give_generate_pdf'); ?>"> |
|
| 69 | + <?php _e('Generate PDF', 'give'); ?> |
|
| 70 | 70 | </a> |
| 71 | 71 | </td> |
| 72 | 72 | </tr> |
| 73 | 73 | <tr class="give-export-sales-earnings"> |
| 74 | 74 | <td scope="row" class="row-title"> |
| 75 | 75 | <h3> |
| 76 | - <span><?php _e( 'Export Income and Donation Stats', 'give' ); ?></span> |
|
| 76 | + <span><?php _e('Export Income and Donation Stats', 'give'); ?></span> |
|
| 77 | 77 | </h3> |
| 78 | - <p><?php _e( 'Download a CSV of income and donations over time.', 'give' ); ?></p> |
|
| 78 | + <p><?php _e('Download a CSV of income and donations over time.', 'give'); ?></p> |
|
| 79 | 79 | </td> |
| 80 | 80 | <td> |
| 81 | 81 | <form method="post"> |
| 82 | 82 | <?php |
| 83 | 83 | printf( |
| 84 | 84 | /* translators: 1: start date dropdown 2: end date dropdown */ |
| 85 | - esc_html__( '%1$s to %2$s', 'give' ), |
|
| 86 | - Give()->html->year_dropdown( 'start_year' ) . ' ' . Give()->html->month_dropdown( 'start_month' ), |
|
| 87 | - Give()->html->year_dropdown( 'end_year' ) . ' ' . Give()->html->month_dropdown( 'end_month' ) |
|
| 85 | + esc_html__('%1$s to %2$s', 'give'), |
|
| 86 | + Give()->html->year_dropdown('start_year').' '.Give()->html->month_dropdown('start_month'), |
|
| 87 | + Give()->html->year_dropdown('end_year').' '.Give()->html->month_dropdown('end_month') |
|
| 88 | 88 | ); |
| 89 | 89 | ?> |
| 90 | 90 | <input type="hidden" name="give-action" |
| 91 | 91 | value="earnings_export"/> |
| 92 | 92 | <input type="submit" |
| 93 | - value="<?php esc_attr_e( 'Generate CSV', 'give' ); ?>" |
|
| 93 | + value="<?php esc_attr_e('Generate CSV', 'give'); ?>" |
|
| 94 | 94 | class="button-secondary"/> |
| 95 | 95 | </form> |
| 96 | 96 | </td> |
@@ -99,96 +99,96 @@ discard block |
||
| 99 | 99 | <tr class="give-export-donors"> |
| 100 | 100 | <td scope="row" class="row-title"> |
| 101 | 101 | <h3> |
| 102 | - <span><?php _e( 'Export Donors', 'give' ); ?></span> |
|
| 102 | + <span><?php _e('Export Donors', 'give'); ?></span> |
|
| 103 | 103 | </h3> |
| 104 | - <p><?php _e( 'Download a CSV of donors. Column values reflect totals across all donation forms by default, or a single donation form if selected.', 'give' ); ?></p> |
|
| 104 | + <p><?php _e('Download a CSV of donors. Column values reflect totals across all donation forms by default, or a single donation form if selected.', 'give'); ?></p> |
|
| 105 | 105 | </td> |
| 106 | 106 | <td> |
| 107 | 107 | <form method="post" id="give_donor_export" class="give-export-form"> |
| 108 | 108 | <?php |
| 109 | 109 | // Start Date form field for donors |
| 110 | - echo Give()->html->date_field( array( |
|
| 110 | + echo Give()->html->date_field(array( |
|
| 111 | 111 | 'id' => 'give_donor_export_start_date', |
| 112 | 112 | 'name' => 'donor_export_start_date', |
| 113 | - 'placeholder' => esc_attr__( 'Start date', 'give' ), |
|
| 114 | - ) ); |
|
| 113 | + 'placeholder' => esc_attr__('Start date', 'give'), |
|
| 114 | + )); |
|
| 115 | 115 | |
| 116 | 116 | // End Date form field for donors |
| 117 | - echo Give()->html->date_field( array( |
|
| 117 | + echo Give()->html->date_field(array( |
|
| 118 | 118 | 'id' => 'give_donor_export_end_date', |
| 119 | 119 | 'name' => 'donor_export_end_date', |
| 120 | - 'placeholder' => esc_attr__( 'End date', 'give' ), |
|
| 121 | - ) ); |
|
| 120 | + 'placeholder' => esc_attr__('End date', 'give'), |
|
| 121 | + )); |
|
| 122 | 122 | |
| 123 | 123 | // Donation forms dropdown for donors export |
| 124 | - echo Give()->html->forms_dropdown( array( |
|
| 124 | + echo Give()->html->forms_dropdown(array( |
|
| 125 | 125 | 'name' => 'forms', |
| 126 | 126 | 'id' => 'give_donor_export_form', |
| 127 | 127 | 'chosen' => true, |
| 128 | - ) ); |
|
| 128 | + )); |
|
| 129 | 129 | ?> |
| 130 | - <input type="submit" value="<?php esc_attr_e( 'Generate CSV', 'give' ); ?>" |
|
| 130 | + <input type="submit" value="<?php esc_attr_e('Generate CSV', 'give'); ?>" |
|
| 131 | 131 | class="button-secondary"/> |
| 132 | 132 | |
| 133 | 133 | <div id="export-donor-options-wrap" |
| 134 | 134 | class="give-clearfix"> |
| 135 | - <p><?php _e( 'Export Columns:', 'give' ); ?></p> |
|
| 135 | + <p><?php _e('Export Columns:', 'give'); ?></p> |
|
| 136 | 136 | <ul id="give-export-option-ul"> |
| 137 | 137 | <li> |
| 138 | 138 | <label for="give-export-fullname"> |
| 139 | 139 | <input type="checkbox" checked |
| 140 | 140 | name="give_export_option[full_name]" |
| 141 | - id="give-export-fullname"><?php _e( 'Name', 'give' ); ?> |
|
| 141 | + id="give-export-fullname"><?php _e('Name', 'give'); ?> |
|
| 142 | 142 | </label> |
| 143 | 143 | </li> |
| 144 | 144 | <li> |
| 145 | 145 | <label for="give-export-email"> |
| 146 | 146 | <input type="checkbox" checked |
| 147 | 147 | name="give_export_option[email]" |
| 148 | - id="give-export-email"><?php _e( 'Email', 'give' ); ?> |
|
| 148 | + id="give-export-email"><?php _e('Email', 'give'); ?> |
|
| 149 | 149 | </label> |
| 150 | 150 | </li> |
| 151 | 151 | <li> |
| 152 | 152 | <label for="give-export-address"> |
| 153 | 153 | <input type="checkbox" checked |
| 154 | 154 | name="give_export_option[address]" |
| 155 | - id="give-export-address"><?php _e( 'Address', 'give' ); ?> |
|
| 155 | + id="give-export-address"><?php _e('Address', 'give'); ?> |
|
| 156 | 156 | </label> |
| 157 | 157 | </li> |
| 158 | 158 | <li> |
| 159 | 159 | <label for="give-export-userid"> |
| 160 | 160 | <input type="checkbox" checked |
| 161 | 161 | name="give_export_option[userid]" |
| 162 | - id="give-export-userid"><?php _e( 'User ID', 'give' ); ?> |
|
| 162 | + id="give-export-userid"><?php _e('User ID', 'give'); ?> |
|
| 163 | 163 | </label> |
| 164 | 164 | </li> |
| 165 | 165 | <li> |
| 166 | 166 | <label for="give-export-first-donation-date"> |
| 167 | 167 | <input type="checkbox" checked |
| 168 | 168 | name="give_export_option[donor_created_date]" |
| 169 | - id="give-export-first-donation-date"><?php _e( 'Donor Created Date', 'give' ); ?> |
|
| 169 | + id="give-export-first-donation-date"><?php _e('Donor Created Date', 'give'); ?> |
|
| 170 | 170 | </label> |
| 171 | 171 | </li> |
| 172 | 172 | <li> |
| 173 | 173 | <label for="give-export-donation-number"> |
| 174 | 174 | <input type="checkbox" checked |
| 175 | 175 | name="give_export_option[donations]" |
| 176 | - id="give-export-donation-number"><?php _e( 'Number of Donations', 'give' ); ?> |
|
| 176 | + id="give-export-donation-number"><?php _e('Number of Donations', 'give'); ?> |
|
| 177 | 177 | </label> |
| 178 | 178 | </li> |
| 179 | 179 | <li> |
| 180 | 180 | <label for="give-export-donation-sum"> |
| 181 | 181 | <input type="checkbox" checked |
| 182 | 182 | name="give_export_option[donation_sum]" |
| 183 | - id="give-export-donation-sum"><?php _e( 'Total Donated', 'give' ); ?> |
|
| 183 | + id="give-export-donation-sum"><?php _e('Total Donated', 'give'); ?> |
|
| 184 | 184 | </label> |
| 185 | 185 | </li> |
| 186 | 186 | </ul> |
| 187 | 187 | </div> |
| 188 | - <?php wp_nonce_field( 'give_ajax_export', 'give_ajax_export' ); ?> |
|
| 188 | + <?php wp_nonce_field('give_ajax_export', 'give_ajax_export'); ?> |
|
| 189 | 189 | <input type="hidden" name="give-export-class" value="Give_Batch_Donors_Export"/> |
| 190 | 190 | <input type="hidden" name="give_export_option[query_id]" |
| 191 | - value="<?php echo uniqid( 'give_' ); ?>"/> |
|
| 191 | + value="<?php echo uniqid('give_'); ?>"/> |
|
| 192 | 192 | </form> |
| 193 | 193 | </td> |
| 194 | 194 | </tr> |
@@ -196,32 +196,32 @@ discard block |
||
| 196 | 196 | <tr class="give-export-core-settings"> |
| 197 | 197 | <td scope="row" class="row-title"> |
| 198 | 198 | <h3> |
| 199 | - <span><?php _e( 'Export Give Settings', 'give' ); ?></span> |
|
| 199 | + <span><?php _e('Export Give Settings', 'give'); ?></span> |
|
| 200 | 200 | </h3> |
| 201 | - <p><?php _e( 'Download an export of Give\'s settings and import it in a new WordPress installation.', 'give' ); ?></p> |
|
| 201 | + <p><?php _e('Download an export of Give\'s settings and import it in a new WordPress installation.', 'give'); ?></p> |
|
| 202 | 202 | </td> |
| 203 | 203 | <td> |
| 204 | 204 | <form method="post"> |
| 205 | 205 | <?php |
| 206 | - $export_excludes = apply_filters( 'settings_export_excludes', array() ); |
|
| 207 | - if ( ! empty( $export_excludes ) ) { |
|
| 206 | + $export_excludes = apply_filters('settings_export_excludes', array()); |
|
| 207 | + if ( ! empty($export_excludes)) { |
|
| 208 | 208 | ?> |
| 209 | - <i class="settings-excludes-title"><?php echo __( 'Checked options from the list will not be exported.', 'give' ); ?></i> |
|
| 209 | + <i class="settings-excludes-title"><?php echo __('Checked options from the list will not be exported.', 'give'); ?></i> |
|
| 210 | 210 | <ul class="settings-excludes-list"> |
| 211 | - <?php foreach ( $export_excludes as $option_key => $option_label ) { ?> |
|
| 211 | + <?php foreach ($export_excludes as $option_key => $option_label) { ?> |
|
| 212 | 212 | <li> |
| 213 | 213 | <label for="settings_export_excludes[<?php echo $option_key ?>]"> |
| 214 | 214 | <input |
| 215 | 215 | type="checkbox" checked |
| 216 | 216 | name="settings_export_excludes[<?php echo $option_key ?>]" |
| 217 | - id="settings_export_excludes[<?php echo $option_key ?>]"><?php echo esc_html( $option_label ); ?> |
|
| 217 | + id="settings_export_excludes[<?php echo $option_key ?>]"><?php echo esc_html($option_label); ?> |
|
| 218 | 218 | </label> |
| 219 | 219 | </li> |
| 220 | 220 | <?php } ?> |
| 221 | 221 | </ul> |
| 222 | 222 | <?php } ?> |
| 223 | 223 | <input type="hidden" name="give-action" value="core_settings_export"/> |
| 224 | - <input type="submit" value="<?php esc_attr_e( 'Export JSON', 'give' ); ?>" |
|
| 224 | + <input type="submit" value="<?php esc_attr_e('Export JSON', 'give'); ?>" |
|
| 225 | 225 | class="button-secondary"/> |
| 226 | 226 | </form> |
| 227 | 227 | </td> |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | * |
| 236 | 236 | * @since 1.0 |
| 237 | 237 | */ |
| 238 | - do_action( 'give_tools_tab_export_table_bottom' ); |
|
| 238 | + do_action('give_tools_tab_export_table_bottom'); |
|
| 239 | 239 | ?> |
| 240 | 240 | </tbody> |
| 241 | 241 | </table> |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | * |
| 247 | 247 | * @since 1.0 |
| 248 | 248 | */ |
| 249 | - do_action( 'give_tools_tab_export_content_bottom' ); |
|
| 249 | + do_action('give_tools_tab_export_content_bottom'); |
|
| 250 | 250 | ?> |
| 251 | 251 | |
| 252 | 252 | </div> |
@@ -3,11 +3,11 @@ discard block |
||
| 3 | 3 | * Admin View: Exports |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 6 | +if ( ! defined('ABSPATH')) { |
|
| 7 | 7 | exit; |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | -if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 10 | +if ( ! current_user_can('manage_give_settings')) { |
|
| 11 | 11 | return; |
| 12 | 12 | } |
| 13 | 13 | |
@@ -16,29 +16,29 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | * @since 1.5 |
| 18 | 18 | */ |
| 19 | -do_action( 'give_tools_recount_stats_before' ); |
|
| 19 | +do_action('give_tools_recount_stats_before'); |
|
| 20 | 20 | ?> |
| 21 | 21 | <div id="poststuff"> |
| 22 | 22 | <div class="postbox"> |
| 23 | 23 | |
| 24 | - <h2 class="hndle ui-sortable-handle"><span><?php esc_html_e( 'Recount Stats', 'give' ); ?></span></h2> |
|
| 24 | + <h2 class="hndle ui-sortable-handle"><span><?php esc_html_e('Recount Stats', 'give'); ?></span></h2> |
|
| 25 | 25 | |
| 26 | 26 | <div class="inside recount-stats-controls"> |
| 27 | - <p><?php esc_html_e( 'Use these tools to recount stats, delete test transactions, or reset stats.', 'give' ); ?></p> |
|
| 27 | + <p><?php esc_html_e('Use these tools to recount stats, delete test transactions, or reset stats.', 'give'); ?></p> |
|
| 28 | 28 | <form method="post" id="give-tools-recount-form" class="give-export-form"> |
| 29 | 29 | |
| 30 | - <?php wp_nonce_field( 'give_ajax_export', 'give_ajax_export' ); ?> |
|
| 30 | + <?php wp_nonce_field('give_ajax_export', 'give_ajax_export'); ?> |
|
| 31 | 31 | |
| 32 | 32 | <select name="give-export-class" id="recount-stats-type"> |
| 33 | - <option value="0" selected="selected" disabled="disabled"><?php esc_html_e( 'Please select an option', 'give' ); ?></option> |
|
| 34 | - <option data-type="recount-stats" value="Give_Tools_Recount_Income"><?php esc_html_e( 'Recalculate Total Donation Income Amount', 'give' ); ?></option> |
|
| 35 | - <option data-type="recount-form" value="Give_Tools_Recount_Form_Stats"><?php esc_html_e( 'Recalculate Income Amount and Donation Counts for a Form', 'give' ); ?></option> |
|
| 36 | - <option data-type="recount-all" value="Give_Tools_Recount_All_Stats"><?php esc_html_e( 'Recalculate Income Amount and Donation Counts for All Forms', 'give' ); ?></option> |
|
| 37 | - <option data-type="recount-donor-stats" value="Give_Tools_Recount_Donor_Stats"><?php esc_html_e( 'Recalculate Donor Statistics', 'give' ); ?></option> |
|
| 38 | - <option data-type="delete-test-transactions" value="Give_Tools_Delete_Test_Transactions"><?php esc_html_e( 'Delete Test Payments', 'give' ); ?></option> |
|
| 39 | - <option data-type="delete-test-donors" value="Give_Tools_Delete_Donors"><?php esc_html_e( 'Delete Test Donors and Payments', 'give' ); ?></option> |
|
| 40 | - <option data-type="delete-import-donors" value="Give_Tools_Import_Donors"><?php esc_html_e( 'Delete Imported Donors and Payments', 'give' ); ?></option> |
|
| 41 | - <option data-type="reset-stats" value="Give_Tools_Reset_Stats"><?php esc_html_e( 'Delete All Data', 'give' ); ?></option> |
|
| 33 | + <option value="0" selected="selected" disabled="disabled"><?php esc_html_e('Please select an option', 'give'); ?></option> |
|
| 34 | + <option data-type="recount-stats" value="Give_Tools_Recount_Income"><?php esc_html_e('Recalculate Total Donation Income Amount', 'give'); ?></option> |
|
| 35 | + <option data-type="recount-form" value="Give_Tools_Recount_Form_Stats"><?php esc_html_e('Recalculate Income Amount and Donation Counts for a Form', 'give'); ?></option> |
|
| 36 | + <option data-type="recount-all" value="Give_Tools_Recount_All_Stats"><?php esc_html_e('Recalculate Income Amount and Donation Counts for All Forms', 'give'); ?></option> |
|
| 37 | + <option data-type="recount-donor-stats" value="Give_Tools_Recount_Donor_Stats"><?php esc_html_e('Recalculate Donor Statistics', 'give'); ?></option> |
|
| 38 | + <option data-type="delete-test-transactions" value="Give_Tools_Delete_Test_Transactions"><?php esc_html_e('Delete Test Payments', 'give'); ?></option> |
|
| 39 | + <option data-type="delete-test-donors" value="Give_Tools_Delete_Donors"><?php esc_html_e('Delete Test Donors and Payments', 'give'); ?></option> |
|
| 40 | + <option data-type="delete-import-donors" value="Give_Tools_Import_Donors"><?php esc_html_e('Delete Imported Donors and Payments', 'give'); ?></option> |
|
| 41 | + <option data-type="reset-stats" value="Give_Tools_Reset_Stats"><?php esc_html_e('Delete All Data', 'give'); ?></option> |
|
| 42 | 42 | <?php |
| 43 | 43 | /** |
| 44 | 44 | * Fires in the recount stats selectbox. |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | * |
| 48 | 48 | * @since 1.5 |
| 49 | 49 | */ |
| 50 | - do_action( 'give_recount_tool_options' ); |
|
| 50 | + do_action('give_recount_tool_options'); |
|
| 51 | 51 | ?> |
| 52 | 52 | </select> |
| 53 | 53 | |
@@ -56,32 +56,32 @@ discard block |
||
| 56 | 56 | $args = array( |
| 57 | 57 | 'class' => 'tools-form-dropdown-recount-form-select', |
| 58 | 58 | 'name' => 'form_id', |
| 59 | - 'number' => - 1, |
|
| 59 | + 'number' => -1, |
|
| 60 | 60 | 'chosen' => true, |
| 61 | - 'placeholder' => __( 'Select Form', 'give' ), |
|
| 61 | + 'placeholder' => __('Select Form', 'give'), |
|
| 62 | 62 | ); |
| 63 | - echo Give()->html->forms_dropdown( $args ); |
|
| 63 | + echo Give()->html->forms_dropdown($args); |
|
| 64 | 64 | ?> |
| 65 | 65 | </span> |
| 66 | 66 | |
| 67 | 67 | <span class="tools-form-dropdown tools-form-dropdown-delete-import-donors" style="display: none"> |
| 68 | 68 | <label for="delete-import-donors"> |
| 69 | 69 | <?php |
| 70 | - echo Give()->html->checkbox( array( 'name' => 'delete-import-donors' ) ); |
|
| 71 | - esc_html_e( 'Delete imported WordPress users', 'give' ); |
|
| 70 | + echo Give()->html->checkbox(array('name' => 'delete-import-donors')); |
|
| 71 | + esc_html_e('Delete imported WordPress users', 'give'); |
|
| 72 | 72 | ?> |
| 73 | 73 | </label> |
| 74 | 74 | </span> |
| 75 | 75 | |
| 76 | - <input type="submit" id="recount-stats-submit" value="<?php esc_attr_e( 'Submit', 'give' ); ?>" class="button-secondary"/> |
|
| 76 | + <input type="submit" id="recount-stats-submit" value="<?php esc_attr_e('Submit', 'give'); ?>" class="button-secondary"/> |
|
| 77 | 77 | |
| 78 | 78 | <br/> |
| 79 | 79 | |
| 80 | 80 | <span class="give-recount-stats-descriptions"> |
| 81 | - <span id="recount-stats"><?php esc_html_e( 'Recalculates the overall donation income amount.', 'give' ); ?></span> |
|
| 82 | - <span id="recount-form"><?php esc_html_e( 'Recalculates the donation and income stats for a specific form.', 'give' ); ?></span> |
|
| 83 | - <span id="recount-all"><?php esc_html_e( 'Recalculates the earnings and sales stats for all forms.', 'give' ); ?></span> |
|
| 84 | - <span id="recount-customer-stats"><?php esc_html_e( 'Recalculates the lifetime value and donation counts for all donors.', 'give' ); ?></span> |
|
| 81 | + <span id="recount-stats"><?php esc_html_e('Recalculates the overall donation income amount.', 'give'); ?></span> |
|
| 82 | + <span id="recount-form"><?php esc_html_e('Recalculates the donation and income stats for a specific form.', 'give'); ?></span> |
|
| 83 | + <span id="recount-all"><?php esc_html_e('Recalculates the earnings and sales stats for all forms.', 'give'); ?></span> |
|
| 84 | + <span id="recount-customer-stats"><?php esc_html_e('Recalculates the lifetime value and donation counts for all donors.', 'give'); ?></span> |
|
| 85 | 85 | <?php |
| 86 | 86 | /** |
| 87 | 87 | * Fires in the recount stats description area. |
@@ -90,10 +90,10 @@ discard block |
||
| 90 | 90 | * |
| 91 | 91 | * @since 1.5 |
| 92 | 92 | */ |
| 93 | - do_action( 'give_recount_tool_descriptions' ); |
|
| 93 | + do_action('give_recount_tool_descriptions'); |
|
| 94 | 94 | ?> |
| 95 | - <span id="delete-test-transactions"><strong><?php esc_html_e( 'Deletes', 'give' ); ?></strong> <?php esc_html_e( 'all TEST donations, donors, and related log entries.', 'give' ); ?></span> |
|
| 96 | - <span id="reset-stats"><strong><?php esc_html_e( 'Deletes', 'give' ); ?></strong> <?php esc_html_e( 'ALL donations, donors, and related log entries regardless of test or live mode.', 'give' ); ?></span> |
|
| 95 | + <span id="delete-test-transactions"><strong><?php esc_html_e('Deletes', 'give'); ?></strong> <?php esc_html_e('all TEST donations, donors, and related log entries.', 'give'); ?></span> |
|
| 96 | + <span id="reset-stats"><strong><?php esc_html_e('Deletes', 'give'); ?></strong> <?php esc_html_e('ALL donations, donors, and related log entries regardless of test or live mode.', 'give'); ?></span> |
|
| 97 | 97 | </span> |
| 98 | 98 | |
| 99 | 99 | <span class="spinner"></span> |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | * |
| 108 | 108 | * @since 1.5 |
| 109 | 109 | */ |
| 110 | - do_action( 'give_tools_recount_forms' ); |
|
| 110 | + do_action('give_tools_recount_forms'); |
|
| 111 | 111 | ?> |
| 112 | 112 | </div><!-- .inside --> |
| 113 | 113 | </div><!-- .postbox --> |
@@ -118,4 +118,4 @@ discard block |
||
| 118 | 118 | * |
| 119 | 119 | * @since 1.5 |
| 120 | 120 | */ |
| 121 | -do_action( 'give_tools_recount_stats_after' ); |
|
| 121 | +do_action('give_tools_recount_stats_after'); |
|
@@ -3,11 +3,11 @@ discard block |
||
| 3 | 3 | * Admin View: Import Donations |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 6 | +if ( ! defined('ABSPATH')) { |
|
| 7 | 7 | exit; |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | -if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 10 | +if ( ! current_user_can('manage_give_settings')) { |
|
| 11 | 11 | return; |
| 12 | 12 | } |
| 13 | 13 | |
@@ -16,18 +16,18 @@ discard block |
||
| 16 | 16 | * |
| 17 | 17 | * @since 1.8.13 |
| 18 | 18 | */ |
| 19 | -do_action( 'give_tools_import_donations_main_before' ); |
|
| 19 | +do_action('give_tools_import_donations_main_before'); |
|
| 20 | 20 | ?> |
| 21 | 21 | <div id="poststuff"> |
| 22 | 22 | <div class="postbox"> |
| 23 | 23 | <h1 class="give-importer-h1" align="center"> |
| 24 | 24 | <?php |
| 25 | - _e( 'Import Donations', 'give' ); |
|
| 25 | + _e('Import Donations', 'give'); |
|
| 26 | 26 | |
| 27 | - if ( ! empty( $_POST['mapto'] ) && ! empty( $_GET['dry_run'] ) ) { |
|
| 27 | + if ( ! empty($_POST['mapto']) && ! empty($_GET['dry_run'])) { |
|
| 28 | 28 | printf( |
| 29 | 29 | '<strong> %s</strong>', |
| 30 | - __( '(Dry Run)', 'give' ) |
|
| 30 | + __('(Dry Run)', 'give') |
|
| 31 | 31 | ); |
| 32 | 32 | } |
| 33 | 33 | ?> |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | * |
| 40 | 40 | * @since 1.8.14 |
| 41 | 41 | */ |
| 42 | - do_action( 'give_tools_import_donations_form_before_start' ); |
|
| 42 | + do_action('give_tools_import_donations_form_before_start'); |
|
| 43 | 43 | ?> |
| 44 | 44 | <form method="post" id="give-import-donations-form" class="give-import-form tools-setting-page-import tools-setting-page-import"> |
| 45 | 45 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | * |
| 50 | 50 | * @since 1.8.14 |
| 51 | 51 | */ |
| 52 | - do_action( 'give_tools_import_donations_form_start' ); |
|
| 52 | + do_action('give_tools_import_donations_form_start'); |
|
| 53 | 53 | ?> |
| 54 | 54 | |
| 55 | 55 | <?php |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * |
| 59 | 59 | * @since 1.8.14 |
| 60 | 60 | */ |
| 61 | - do_action( 'give_tools_import_donations_form_end' ); |
|
| 61 | + do_action('give_tools_import_donations_form_end'); |
|
| 62 | 62 | ?> |
| 63 | 63 | </form> |
| 64 | 64 | <?php |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | * |
| 68 | 68 | * @since 1.8.14 |
| 69 | 69 | */ |
| 70 | - do_action( 'give_tools_import_donations_form_after_end' ); |
|
| 70 | + do_action('give_tools_import_donations_form_after_end'); |
|
| 71 | 71 | ?> |
| 72 | 72 | </div><!-- .inside --> |
| 73 | 73 | </div><!-- .postbox --> |
@@ -78,4 +78,4 @@ discard block |
||
| 78 | 78 | * |
| 79 | 79 | * @since 1.8.13 |
| 80 | 80 | */ |
| 81 | -do_action( 'give_tools_import_donations_main_after' ); |
|
| 81 | +do_action('give_tools_import_donations_main_after'); |
|
@@ -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 | |
@@ -21,12 +21,12 @@ discard block |
||
| 21 | 21 | * @return void |
| 22 | 22 | */ |
| 23 | 23 | function give_register_dashboard_widgets() { |
| 24 | - if ( current_user_can( apply_filters( 'give_dashboard_stats_cap', 'view_give_reports' ) ) ) { |
|
| 25 | - wp_add_dashboard_widget( 'give_dashboard_sales', __( 'Give: Donation Statistics', 'give' ), 'give_dashboard_sales_widget' ); |
|
| 24 | + if (current_user_can(apply_filters('give_dashboard_stats_cap', 'view_give_reports'))) { |
|
| 25 | + wp_add_dashboard_widget('give_dashboard_sales', __('Give: Donation Statistics', 'give'), 'give_dashboard_sales_widget'); |
|
| 26 | 26 | } |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | -add_action( 'wp_dashboard_setup', 'give_register_dashboard_widgets', 10 ); |
|
| 29 | +add_action('wp_dashboard_setup', 'give_register_dashboard_widgets', 10); |
|
| 30 | 30 | |
| 31 | 31 | /** |
| 32 | 32 | * Sales Summary Dashboard Widget |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | function give_dashboard_sales_widget() { |
| 40 | 40 | |
| 41 | - if ( ! current_user_can( apply_filters( 'give_dashboard_stats_cap', 'view_give_reports' ) ) ) { |
|
| 41 | + if ( ! current_user_can(apply_filters('give_dashboard_stats_cap', 'view_give_reports'))) { |
|
| 42 | 42 | return; |
| 43 | 43 | } |
| 44 | 44 | $stats = new Give_Payment_Stats(); ?> |
@@ -46,27 +46,27 @@ discard block |
||
| 46 | 46 | <div class="give-dashboard-widget"> |
| 47 | 47 | |
| 48 | 48 | <div class="give-dashboard-today give-clearfix"> |
| 49 | - <h3 class="give-dashboard-date-today"><?php echo date_i18n( _x( 'F j, Y', 'dashboard widget', 'give' ) ); ?></h3> |
|
| 49 | + <h3 class="give-dashboard-date-today"><?php echo date_i18n(_x('F j, Y', 'dashboard widget', 'give')); ?></h3> |
|
| 50 | 50 | |
| 51 | 51 | <p class="give-dashboard-happy-day"><?php |
| 52 | 52 | printf( |
| 53 | 53 | /* translators: %s: day of the week */ |
| 54 | - __( 'Happy %s!', 'give' ), |
|
| 55 | - date_i18n( 'l', current_time( 'timestamp' ) ) |
|
| 54 | + __('Happy %s!', 'give'), |
|
| 55 | + date_i18n('l', current_time('timestamp')) |
|
| 56 | 56 | ); |
| 57 | 57 | ?></p> |
| 58 | 58 | |
| 59 | 59 | <p class="give-dashboard-today-earnings"><?php |
| 60 | - $earnings_today = $stats->get_earnings( 0, 'today', false ); |
|
| 61 | - echo give_currency_filter( give_format_amount( $earnings_today, array( 'sanitize' => false ) ) ); |
|
| 60 | + $earnings_today = $stats->get_earnings(0, 'today', false); |
|
| 61 | + echo give_currency_filter(give_format_amount($earnings_today, array('sanitize' => false))); |
|
| 62 | 62 | ?></p> |
| 63 | 63 | |
| 64 | 64 | <p class="give-donations-today"><?php |
| 65 | - $donations_today = $stats->get_sales( 0, 'today', false ); |
|
| 65 | + $donations_today = $stats->get_sales(0, 'today', false); |
|
| 66 | 66 | printf( |
| 67 | 67 | /* translators: %s: daily donation count */ |
| 68 | - __( '%s donations today', 'give' ), |
|
| 69 | - give_format_amount( $donations_today, array( 'decimal' => false, 'sanitize' => false ) ) |
|
| 68 | + __('%s donations today', 'give'), |
|
| 69 | + give_format_amount($donations_today, array('decimal' => false, 'sanitize' => false)) |
|
| 70 | 70 | ); |
| 71 | 71 | ?></p> |
| 72 | 72 | |
@@ -76,34 +76,34 @@ discard block |
||
| 76 | 76 | <table class="give-table-stats"> |
| 77 | 77 | <thead style="display: none;"> |
| 78 | 78 | <tr> |
| 79 | - <th><?php _e( 'This Week', 'give' ); ?></th> |
|
| 80 | - <th><?php _e( 'This Month', 'give' ); ?></th> |
|
| 81 | - <th><?php _e( 'Past 30 Days', 'give' ); ?></th> |
|
| 79 | + <th><?php _e('This Week', 'give'); ?></th> |
|
| 80 | + <th><?php _e('This Month', 'give'); ?></th> |
|
| 81 | + <th><?php _e('Past 30 Days', 'give'); ?></th> |
|
| 82 | 82 | </tr> |
| 83 | 83 | </thead> |
| 84 | 84 | <tbody> |
| 85 | 85 | <tr id="give-table-stats-tr-1"> |
| 86 | 86 | <td> |
| 87 | - <p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'this_week' ), array( 'sanitize' => false ) ) ); ?></p> |
|
| 87 | + <p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'this_week'), array('sanitize' => false))); ?></p> |
|
| 88 | 88 | |
| 89 | - <p class="give-dashboard-stat-total-label"><?php _e( 'This Week', 'give' ); ?></p> |
|
| 89 | + <p class="give-dashboard-stat-total-label"><?php _e('This Week', 'give'); ?></p> |
|
| 90 | 90 | </td> |
| 91 | 91 | <td> |
| 92 | - <p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'this_month' ), array( 'sanitize' => false ) ) ); ?></p> |
|
| 92 | + <p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'this_month'), array('sanitize' => false))); ?></p> |
|
| 93 | 93 | |
| 94 | - <p class="give-dashboard-stat-total-label"><?php _e( 'This Month', 'give' ); ?></p> |
|
| 94 | + <p class="give-dashboard-stat-total-label"><?php _e('This Month', 'give'); ?></p> |
|
| 95 | 95 | </td> |
| 96 | 96 | </tr> |
| 97 | 97 | <tr id="give-table-stats-tr-2"> |
| 98 | 98 | <td> |
| 99 | - <p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'last_month' ), array( 'sanitize' => false ) ) ) ?></p> |
|
| 99 | + <p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'last_month'), array('sanitize' => false))) ?></p> |
|
| 100 | 100 | |
| 101 | - <p class="give-dashboard-stat-total-label"><?php _e( 'Last Month', 'give' ); ?></p> |
|
| 101 | + <p class="give-dashboard-stat-total-label"><?php _e('Last Month', 'give'); ?></p> |
|
| 102 | 102 | </td> |
| 103 | 103 | <td> |
| 104 | - <p class="give-dashboard-stat-total"><?php echo give_currency_filter( give_format_amount( $stats->get_earnings( 0, 'this_quarter' ), array( 'sanitize' => false ) ) ) ?></p> |
|
| 104 | + <p class="give-dashboard-stat-total"><?php echo give_currency_filter(give_format_amount($stats->get_earnings(0, 'this_quarter'), array('sanitize' => false))) ?></p> |
|
| 105 | 105 | |
| 106 | - <p class="give-dashboard-stat-total-label"><?php _e( 'This Quarter', 'give' ); ?></p> |
|
| 106 | + <p class="give-dashboard-stat-total-label"><?php _e('This Quarter', 'give'); ?></p> |
|
| 107 | 107 | </td> |
| 108 | 108 | </tr> |
| 109 | 109 | </tbody> |
@@ -123,24 +123,24 @@ discard block |
||
| 123 | 123 | * |
| 124 | 124 | * @return array |
| 125 | 125 | */ |
| 126 | -function give_dashboard_at_a_glance_widget( $items ) { |
|
| 126 | +function give_dashboard_at_a_glance_widget($items) { |
|
| 127 | 127 | |
| 128 | - $num_posts = wp_count_posts( 'give_forms' ); |
|
| 128 | + $num_posts = wp_count_posts('give_forms'); |
|
| 129 | 129 | |
| 130 | - if ( $num_posts && $num_posts->publish ) { |
|
| 130 | + if ($num_posts && $num_posts->publish) { |
|
| 131 | 131 | |
| 132 | 132 | $text = sprintf( |
| 133 | 133 | /* translators: %s: number of posts published */ |
| 134 | - _n( '%s Give Form', '%s Give Forms', $num_posts->publish, 'give' ), |
|
| 134 | + _n('%s Give Form', '%s Give Forms', $num_posts->publish, 'give'), |
|
| 135 | 135 | $num_posts->publish |
| 136 | 136 | ); |
| 137 | 137 | |
| 138 | - $text = sprintf( $text, number_format_i18n( $num_posts->publish ) ); |
|
| 138 | + $text = sprintf($text, number_format_i18n($num_posts->publish)); |
|
| 139 | 139 | |
| 140 | - if ( current_user_can( 'edit_give_forms', get_current_user_id() ) ) { |
|
| 140 | + if (current_user_can('edit_give_forms', get_current_user_id())) { |
|
| 141 | 141 | $text = sprintf( |
| 142 | 142 | '<a class="give-forms-count" href="%1$s">%2$s</a>', |
| 143 | - admin_url( 'edit.php?post_type=give_forms' ), |
|
| 143 | + admin_url('edit.php?post_type=give_forms'), |
|
| 144 | 144 | $text |
| 145 | 145 | ); |
| 146 | 146 | } else { |
@@ -156,4 +156,4 @@ discard block |
||
| 156 | 156 | return $items; |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | -add_filter( 'dashboard_glance_items', 'give_dashboard_at_a_glance_widget', 1, 1 ); |
|
| 159 | +add_filter('dashboard_glance_items', 'give_dashboard_at_a_glance_widget', 1, 1); |
|
@@ -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,10 +24,10 @@ discard block |
||
| 24 | 24 | * @return void |
| 25 | 25 | */ |
| 26 | 26 | function give_payment_history_page() { |
| 27 | - if ( isset( $_GET['view'] ) && 'view-payment-details' == $_GET['view'] ) { |
|
| 28 | - require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/view-payment-details.php'; |
|
| 27 | + if (isset($_GET['view']) && 'view-payment-details' == $_GET['view']) { |
|
| 28 | + require_once GIVE_PLUGIN_DIR.'includes/admin/payments/view-payment-details.php'; |
|
| 29 | 29 | } else { |
| 30 | - require_once GIVE_PLUGIN_DIR . 'includes/admin/payments/class-payments-table.php'; |
|
| 30 | + require_once GIVE_PLUGIN_DIR.'includes/admin/payments/class-payments-table.php'; |
|
| 31 | 31 | $payments_table = new Give_Payment_History_Table(); |
| 32 | 32 | $payments_table->prepare_items(); |
| 33 | 33 | ?> |
@@ -41,23 +41,23 @@ discard block |
||
| 41 | 41 | * |
| 42 | 42 | * @since 1.7 |
| 43 | 43 | */ |
| 44 | - do_action( 'give_payments_page_top' ); |
|
| 44 | + do_action('give_payments_page_top'); |
|
| 45 | 45 | ?> |
| 46 | 46 | <hr class="wp-header-end"> |
| 47 | 47 | |
| 48 | - <form id="give-payments-advanced-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>"> |
|
| 48 | + <form id="give-payments-advanced-filter" method="get" action="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>"> |
|
| 49 | 49 | <input type="hidden" name="post_type" value="give_forms" /> |
| 50 | 50 | <input type="hidden" name="page" value="give-payment-history" /> |
| 51 | 51 | <?php $payments_table->views() ?> |
| 52 | 52 | <?php $payments_table->advanced_filters(); ?> |
| 53 | 53 | </form> |
| 54 | 54 | |
| 55 | - <form id="give-payments-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>"> |
|
| 55 | + <form id="give-payments-filter" method="get" action="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>"> |
|
| 56 | 56 | <input type="hidden" name="post_type" value="give_forms" /> |
| 57 | 57 | <input type="hidden" name="page" value="give-payment-history" /> |
| 58 | 58 | <?php |
| 59 | - if ( ! empty( $_GET['donor'] ) ) { |
|
| 60 | - echo sprintf( '<input type="hidden" name="donor" value="%s"/>', absint( $_GET['donor'] ) ); |
|
| 59 | + if ( ! empty($_GET['donor'])) { |
|
| 60 | + echo sprintf('<input type="hidden" name="donor" value="%s"/>', absint($_GET['donor'])); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | $payments_table->display(); |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | * |
| 71 | 71 | * @since 1.7 |
| 72 | 72 | */ |
| 73 | - do_action( 'give_payments_page_bottom' ); |
|
| 73 | + do_action('give_payments_page_bottom'); |
|
| 74 | 74 | ?> |
| 75 | 75 | |
| 76 | 76 | </div> |
@@ -87,29 +87,29 @@ discard block |
||
| 87 | 87 | * @param $title |
| 88 | 88 | * @return string |
| 89 | 89 | */ |
| 90 | -function give_view_donation_details_title( $admin_title, $title ) { |
|
| 90 | +function give_view_donation_details_title($admin_title, $title) { |
|
| 91 | 91 | |
| 92 | - if ( 'give_forms_page_give-payment-history' != get_current_screen()->base ) { |
|
| 92 | + if ('give_forms_page_give-payment-history' != get_current_screen()->base) { |
|
| 93 | 93 | return $admin_title; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | - if( ! isset( $_GET['give-action'] ) ) { |
|
| 96 | + if ( ! isset($_GET['give-action'])) { |
|
| 97 | 97 | return $admin_title; |
| 98 | 98 | } |
| 99 | 99 | |
| 100 | - switch( $_GET['give-action'] ) : |
|
| 100 | + switch ($_GET['give-action']) : |
|
| 101 | 101 | |
| 102 | 102 | case 'view-payment-details' : |
| 103 | 103 | $title = sprintf( |
| 104 | 104 | /* translators: %s: admin title */ |
| 105 | - esc_html__( 'View Donation Details - %s', 'give' ), |
|
| 105 | + esc_html__('View Donation Details - %s', 'give'), |
|
| 106 | 106 | $admin_title |
| 107 | 107 | ); |
| 108 | 108 | break; |
| 109 | 109 | case 'edit-payment' : |
| 110 | 110 | $title = sprintf( |
| 111 | 111 | /* translators: %s: admin title */ |
| 112 | - esc_html__( 'Edit Donation - %s', 'give' ), |
|
| 112 | + esc_html__('Edit Donation - %s', 'give'), |
|
| 113 | 113 | $admin_title |
| 114 | 114 | ); |
| 115 | 115 | break; |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | |
| 121 | 121 | return $title; |
| 122 | 122 | } |
| 123 | -add_filter( 'admin_title', 'give_view_donation_details_title', 10, 2 ); |
|
| 123 | +add_filter('admin_title', 'give_view_donation_details_title', 10, 2); |
|
| 124 | 124 | |
| 125 | 125 | /** |
| 126 | 126 | * Intercept default Edit post links for Give payments and rewrite them to the View Order Details screen. |
@@ -132,20 +132,20 @@ discard block |
||
| 132 | 132 | * @param $context |
| 133 | 133 | * @return string |
| 134 | 134 | */ |
| 135 | -function give_override_edit_post_for_payment_link( $url, $post_id = 0, $context ) { |
|
| 135 | +function give_override_edit_post_for_payment_link($url, $post_id = 0, $context) { |
|
| 136 | 136 | |
| 137 | - $post = get_post( $post_id ); |
|
| 137 | + $post = get_post($post_id); |
|
| 138 | 138 | |
| 139 | - if( ! $post ) { |
|
| 139 | + if ( ! $post) { |
|
| 140 | 140 | return $url; |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - if( 'give_payment' != $post->post_type ) { |
|
| 143 | + if ('give_payment' != $post->post_type) { |
|
| 144 | 144 | return $url; |
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - $url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id=' . $post_id ); |
|
| 147 | + $url = admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-payment-details&id='.$post_id); |
|
| 148 | 148 | |
| 149 | 149 | return $url; |
| 150 | 150 | } |
| 151 | -add_filter( 'get_edit_post_link', 'give_override_edit_post_for_payment_link', 10, 3 ); |
|
| 151 | +add_filter('get_edit_post_link', 'give_override_edit_post_for_payment_link', 10, 3); |
|
@@ -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 | |
@@ -27,30 +27,30 @@ discard block |
||
| 27 | 27 | * |
| 28 | 28 | * @return mixed |
| 29 | 29 | */ |
| 30 | -function __give_sanitize_number_decimals_setting_field( $value ) { |
|
| 30 | +function __give_sanitize_number_decimals_setting_field($value) { |
|
| 31 | 31 | $value_changed = false; |
| 32 | 32 | $old_value = $value; |
| 33 | 33 | |
| 34 | - if ( isset( $_POST['decimal_separator'] ) ) { |
|
| 35 | - $value = ! empty( $_POST['decimal_separator'] ) ? $value : 0; |
|
| 34 | + if (isset($_POST['decimal_separator'])) { |
|
| 35 | + $value = ! empty($_POST['decimal_separator']) ? $value : 0; |
|
| 36 | 36 | $value_changed = true; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if ( $value_changed && ( $old_value !== $value ) ) { |
|
| 40 | - Give_Admin_Settings::add_error( 'give-number-decimal', __( 'The \'Number of Decimals\' option has been automatically set to zero because the \'Decimal Separator\' is not set.', 'give' ) ); |
|
| 39 | + if ($value_changed && ($old_value !== $value)) { |
|
| 40 | + Give_Admin_Settings::add_error('give-number-decimal', __('The \'Number of Decimals\' option has been automatically set to zero because the \'Decimal Separator\' is not set.', 'give')); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | - $value = absint( $value ); |
|
| 43 | + $value = absint($value); |
|
| 44 | 44 | |
| 45 | - if ( 6 <= $value ) { |
|
| 45 | + if (6 <= $value) { |
|
| 46 | 46 | $value = 5; |
| 47 | - Give_Admin_Settings::add_error( 'give-number-decimal', __( 'The \'Number of Decimals\' option has been automatically set to 5 because you entered a number higher than the maximum allowed.', 'give' ) ); |
|
| 47 | + Give_Admin_Settings::add_error('give-number-decimal', __('The \'Number of Decimals\' option has been automatically set to 5 because you entered a number higher than the maximum allowed.', 'give')); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - return absint( $value ); |
|
| 50 | + return absint($value); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | -add_filter( 'give_admin_settings_sanitize_option_number_decimals', '__give_sanitize_number_decimals_setting_field', 10 ); |
|
| 53 | +add_filter('give_admin_settings_sanitize_option_number_decimals', '__give_sanitize_number_decimals_setting_field', 10); |
|
| 54 | 54 | |
| 55 | 55 | |
| 56 | 56 | /** |
@@ -66,20 +66,20 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * @return mixed |
| 68 | 68 | */ |
| 69 | -function __give_validate_decimal_separator_setting_field( $value ) { |
|
| 70 | - $thousand_separator = isset( $_POST['thousands_separator'] ) ? give_clean( $_POST['thousands_separator'] ) : ''; |
|
| 71 | - $decimal_separator = isset( $_POST['decimal_separator'] ) ? give_clean( $_POST['decimal_separator'] ) : ''; |
|
| 69 | +function __give_validate_decimal_separator_setting_field($value) { |
|
| 70 | + $thousand_separator = isset($_POST['thousands_separator']) ? give_clean($_POST['thousands_separator']) : ''; |
|
| 71 | + $decimal_separator = isset($_POST['decimal_separator']) ? give_clean($_POST['decimal_separator']) : ''; |
|
| 72 | 72 | |
| 73 | - if ( $decimal_separator === $thousand_separator ) { |
|
| 73 | + if ($decimal_separator === $thousand_separator) { |
|
| 74 | 74 | $value = ''; |
| 75 | 75 | $_POST['number_decimals'] = 0; |
| 76 | - Give_Admin_Settings::add_error( 'give-decimal-separator', __( 'The \'Decimal Separator\' option has automatically been set to empty because it can not be equal to the \'Thousand Separator\'', 'give' ) ); |
|
| 76 | + Give_Admin_Settings::add_error('give-decimal-separator', __('The \'Decimal Separator\' option has automatically been set to empty because it can not be equal to the \'Thousand Separator\'', 'give')); |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | return $value; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | -add_filter( 'give_admin_settings_sanitize_option_decimal_separator', '__give_validate_decimal_separator_setting_field', 10 ); |
|
| 82 | +add_filter('give_admin_settings_sanitize_option_decimal_separator', '__give_validate_decimal_separator_setting_field', 10); |
|
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * Change $delimiter text to symbol. |
@@ -90,16 +90,16 @@ discard block |
||
| 90 | 90 | * |
| 91 | 91 | * @return string $delimiter. |
| 92 | 92 | */ |
| 93 | -function __give_import_delimiter_set_callback( $delimiter ) { |
|
| 93 | +function __give_import_delimiter_set_callback($delimiter) { |
|
| 94 | 94 | $delimite_type = array( |
| 95 | 95 | 'csv' => ',', |
| 96 | 96 | 'tab-separated-values' => "\t", |
| 97 | 97 | ); |
| 98 | 98 | |
| 99 | - return ( array_key_exists( $delimiter, $delimite_type ) ? $delimite_type[ $delimiter ] : ',' ); |
|
| 99 | + return (array_key_exists($delimiter, $delimite_type) ? $delimite_type[$delimiter] : ','); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | -add_filter( 'give_import_delimiter_set', '__give_import_delimiter_set_callback', 10 ); |
|
| 102 | +add_filter('give_import_delimiter_set', '__give_import_delimiter_set_callback', 10); |
|
| 103 | 103 | |
| 104 | 104 | /** |
| 105 | 105 | * Give unset the page id from the core setting data from the json files. |
@@ -111,17 +111,17 @@ discard block |
||
| 111 | 111 | * |
| 112 | 112 | * @return array $json_to_array |
| 113 | 113 | */ |
| 114 | -function give_import_core_settings_merge_pages( $json_to_array, $type ) { |
|
| 115 | - if ( 'merge' === $type ) { |
|
| 116 | - unset( $json_to_array['success_page'] ); |
|
| 117 | - unset( $json_to_array['failure_page'] ); |
|
| 118 | - unset( $json_to_array['history_page'] ); |
|
| 114 | +function give_import_core_settings_merge_pages($json_to_array, $type) { |
|
| 115 | + if ('merge' === $type) { |
|
| 116 | + unset($json_to_array['success_page']); |
|
| 117 | + unset($json_to_array['failure_page']); |
|
| 118 | + unset($json_to_array['history_page']); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | return $json_to_array; |
| 122 | 122 | } |
| 123 | 123 | |
| 124 | -add_filter( 'give_import_core_settings_data', 'give_import_core_settings_merge_pages', 11, 2 ); |
|
| 124 | +add_filter('give_import_core_settings_data', 'give_import_core_settings_merge_pages', 11, 2); |
|
| 125 | 125 | |
| 126 | 126 | /** |
| 127 | 127 | * Give check the image size from the core setting data from the json files. |
@@ -133,18 +133,18 @@ discard block |
||
| 133 | 133 | * |
| 134 | 134 | * @return array $json_to_array |
| 135 | 135 | */ |
| 136 | -function give_import_core_settings_merge_image_size( $json_to_array, $type ) { |
|
| 137 | - if ( 'merge' === $type ) { |
|
| 136 | +function give_import_core_settings_merge_image_size($json_to_array, $type) { |
|
| 137 | + if ('merge' === $type) { |
|
| 138 | 138 | // Featured image sizes import under Display Options > Post Types > Featured Image Size. |
| 139 | 139 | if ( |
| 140 | - ! empty( $json_to_array['form_featured_img'] ) |
|
| 141 | - && ! empty( $json_to_array['featured_image_size'] ) |
|
| 142 | - && give_is_setting_enabled( $json_to_array['form_featured_img'] ) |
|
| 140 | + ! empty($json_to_array['form_featured_img']) |
|
| 141 | + && ! empty($json_to_array['featured_image_size']) |
|
| 142 | + && give_is_setting_enabled($json_to_array['form_featured_img']) |
|
| 143 | 143 | ) { |
| 144 | 144 | $images_sizes = get_intermediate_image_sizes(); |
| 145 | 145 | |
| 146 | - if ( ! in_array( $json_to_array['featured_image_size'], $images_sizes, true ) ) { |
|
| 147 | - unset( $json_to_array['featured_image_size'] ); |
|
| 146 | + if ( ! in_array($json_to_array['featured_image_size'], $images_sizes, true)) { |
|
| 147 | + unset($json_to_array['featured_image_size']); |
|
| 148 | 148 | } |
| 149 | 149 | } |
| 150 | 150 | } |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | return $json_to_array; |
| 153 | 153 | } |
| 154 | 154 | |
| 155 | -add_filter( 'give_import_core_settings_data', 'give_import_core_settings_merge_image_size', 12, 2 ); |
|
| 155 | +add_filter('give_import_core_settings_data', 'give_import_core_settings_merge_image_size', 12, 2); |
|
| 156 | 156 | |
| 157 | 157 | /** |
| 158 | 158 | * Give upload the image logo from the core setting data from the json files. |
@@ -164,24 +164,24 @@ discard block |
||
| 164 | 164 | * |
| 165 | 165 | * @return array $json_to_array |
| 166 | 166 | */ |
| 167 | -function give_import_core_settings_merge_upload_image( $json_to_array, $type ) { |
|
| 168 | - if ( 'merge' === $type ) { |
|
| 167 | +function give_import_core_settings_merge_upload_image($json_to_array, $type) { |
|
| 168 | + if ('merge' === $type) { |
|
| 169 | 169 | // Emails > Email Settings > Logo. |
| 170 | - if ( ! empty( $json_to_array['email_logo'] ) ) { |
|
| 170 | + if ( ! empty($json_to_array['email_logo'])) { |
|
| 171 | 171 | |
| 172 | 172 | // Need to require these files. |
| 173 | - if ( ! function_exists( 'media_handle_upload' ) ) { |
|
| 174 | - require_once( ABSPATH . 'wp-admin/includes/image.php' ); |
|
| 175 | - require_once( ABSPATH . 'wp-admin/includes/file.php' ); |
|
| 176 | - require_once( ABSPATH . 'wp-admin/includes/media.php' ); |
|
| 173 | + if ( ! function_exists('media_handle_upload')) { |
|
| 174 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 175 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
| 176 | + require_once(ABSPATH.'wp-admin/includes/media.php'); |
|
| 177 | 177 | } |
| 178 | 178 | |
| 179 | 179 | $url = $json_to_array['email_logo']; |
| 180 | - $new_url = media_sideload_image( $url, 0, null, 'src' ); |
|
| 181 | - if ( ! is_wp_error( $new_url ) ) { |
|
| 180 | + $new_url = media_sideload_image($url, 0, null, 'src'); |
|
| 181 | + if ( ! is_wp_error($new_url)) { |
|
| 182 | 182 | $json_to_array['email_logo'] = $new_url; |
| 183 | 183 | } else { |
| 184 | - unset( $json_to_array['email_logo'] ); |
|
| 184 | + unset($json_to_array['email_logo']); |
|
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | 187 | } |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | return $json_to_array; |
| 190 | 190 | } |
| 191 | 191 | |
| 192 | -add_filter( 'give_import_core_settings_data', 'give_import_core_settings_merge_upload_image', 13, 2 ); |
|
| 192 | +add_filter('give_import_core_settings_data', 'give_import_core_settings_merge_upload_image', 13, 2); |
|
| 193 | 193 | |
| 194 | 194 | /** |
| 195 | 195 | * Give unset the license key from the core setting data from the json files. |
@@ -201,12 +201,12 @@ discard block |
||
| 201 | 201 | * |
| 202 | 202 | * @return array $json_to_array |
| 203 | 203 | */ |
| 204 | -function give_import_core_settings_merge_license_key( $json_to_array, $type ) { |
|
| 205 | - if ( 'merge' === $type ) { |
|
| 206 | - foreach ( $json_to_array as $key => $value ) { |
|
| 207 | - $is_license_key = strpos( '_license_key', $key ); |
|
| 208 | - if ( ! empty( $is_license_key ) ) { |
|
| 209 | - unset( $json_to_array[ $key ] ); |
|
| 204 | +function give_import_core_settings_merge_license_key($json_to_array, $type) { |
|
| 205 | + if ('merge' === $type) { |
|
| 206 | + foreach ($json_to_array as $key => $value) { |
|
| 207 | + $is_license_key = strpos('_license_key', $key); |
|
| 208 | + if ( ! empty($is_license_key)) { |
|
| 209 | + unset($json_to_array[$key]); |
|
| 210 | 210 | } |
| 211 | 211 | } |
| 212 | 212 | } |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | return $json_to_array; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | -add_filter( 'give_import_core_settings_data', 'give_import_core_settings_merge_license_key', 14, 2 ); |
|
| 217 | +add_filter('give_import_core_settings_data', 'give_import_core_settings_merge_license_key', 14, 2); |
|
| 218 | 218 | |
| 219 | 219 | /** |
| 220 | 220 | * Give merge the json data and setting data. |
@@ -227,16 +227,16 @@ discard block |
||
| 227 | 227 | * |
| 228 | 228 | * @return array $json_to_array |
| 229 | 229 | */ |
| 230 | -function give_import_core_settings_merge_data( $json_to_array, $type, $host_give_options ) { |
|
| 231 | - if ( 'merge' === $type ) { |
|
| 232 | - $json_to_array_merge = array_merge( $host_give_options, $json_to_array ); |
|
| 230 | +function give_import_core_settings_merge_data($json_to_array, $type, $host_give_options) { |
|
| 231 | + if ('merge' === $type) { |
|
| 232 | + $json_to_array_merge = array_merge($host_give_options, $json_to_array); |
|
| 233 | 233 | $json_to_array = $json_to_array_merge; |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | return $json_to_array; |
| 237 | 237 | } |
| 238 | 238 | |
| 239 | -add_filter( 'give_import_core_settings_data', 'give_import_core_settings_merge_data', 1000, 3 ); |
|
| 239 | +add_filter('give_import_core_settings_data', 'give_import_core_settings_merge_data', 1000, 3); |
|
| 240 | 240 | |
| 241 | 241 | /** |
| 242 | 242 | * Backward Compatibility - Cleanup User Roles. |
@@ -247,11 +247,11 @@ discard block |
||
| 247 | 247 | * |
| 248 | 248 | * @return mixed |
| 249 | 249 | */ |
| 250 | -function give_bc_1817_cleanup_user_roles( $caps ) { |
|
| 250 | +function give_bc_1817_cleanup_user_roles($caps) { |
|
| 251 | 251 | |
| 252 | 252 | if ( |
| 253 | - ! give_has_upgrade_completed( 'v1817_cleanup_user_roles' ) && |
|
| 254 | - ! isset( $caps['view_give_payments'] ) |
|
| 253 | + ! give_has_upgrade_completed('v1817_cleanup_user_roles') && |
|
| 254 | + ! isset($caps['view_give_payments']) |
|
| 255 | 255 | ) { |
| 256 | 256 | give_v1817_process_cleanup_user_roles(); |
| 257 | 257 | } |
@@ -259,4 +259,4 @@ discard block |
||
| 259 | 259 | return $caps; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | -add_filter( 'user_has_cap', 'give_bc_1817_cleanup_user_roles' ); |
|
| 262 | +add_filter('user_has_cap', 'give_bc_1817_cleanup_user_roles'); |
|
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | * @return static |
| 56 | 56 | */ |
| 57 | 57 | public static function get_instance() { |
| 58 | - if ( null === static::$instance ) { |
|
| 58 | + if (null === static::$instance) { |
|
| 59 | 59 | self::$instance = new static(); |
| 60 | 60 | } |
| 61 | 61 | |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * @access public |
| 80 | 80 | */ |
| 81 | 81 | public function setup_hooks() { |
| 82 | - add_action( 'init', array( $this, 'load_translated_texts' ), 999 ); |
|
| 82 | + add_action('init', array($this, 'load_translated_texts'), 999); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | /** |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | * |
| 111 | 111 | * @return bool|WP_Error false on success otherwise WP_Error object |
| 112 | 112 | */ |
| 113 | - public static function add_text( $args = array() ) { |
|
| 113 | + public static function add_text($args = array()) { |
|
| 114 | 114 | $error = false; |
| 115 | 115 | |
| 116 | 116 | // Set text params. |
@@ -126,43 +126,43 @@ discard block |
||
| 126 | 126 | |
| 127 | 127 | try { |
| 128 | 128 | // Check for errors. |
| 129 | - if ( empty( $args['text'] ) ) { |
|
| 129 | + if (empty($args['text'])) { |
|
| 130 | 130 | /* @var WP_Error $error */ |
| 131 | - $error = new WP_Error( 'EMPTY_TEXT', __( 'Empty string is not allowed.', 'give' ), $args ); |
|
| 132 | - throw new Exception( $error->get_error_message( 'EMPTY_TEXT' ) ); |
|
| 131 | + $error = new WP_Error('EMPTY_TEXT', __('Empty string is not allowed.', 'give'), $args); |
|
| 132 | + throw new Exception($error->get_error_message('EMPTY_TEXT')); |
|
| 133 | 133 | |
| 134 | - } elseif ( empty( $args['id'] ) ) { |
|
| 134 | + } elseif (empty($args['id'])) { |
|
| 135 | 135 | /* @var WP_Error $error */ |
| 136 | - $error = new WP_Error( 'EMPTY_ID', __( 'Empty ID is not allowed.', 'give' ), $args ); |
|
| 137 | - throw new Exception( $error->get_error_message( 'EMPTY_ID' ) ); |
|
| 136 | + $error = new WP_Error('EMPTY_ID', __('Empty ID is not allowed.', 'give'), $args); |
|
| 137 | + throw new Exception($error->get_error_message('EMPTY_ID')); |
|
| 138 | 138 | |
| 139 | 139 | } elseif ( |
| 140 | - empty( $args['group'] ) && |
|
| 141 | - array_key_exists( $args['id'], self::$text_configs ) |
|
| 140 | + empty($args['group']) && |
|
| 141 | + array_key_exists($args['id'], self::$text_configs) |
|
| 142 | 142 | ) { |
| 143 | 143 | /* @var WP_Error $error */ |
| 144 | - $error = new WP_Error( 'TEXT_ID_ALREADY_EXIST', __( 'Text ID without a group already exists.', 'give' ), $args ); |
|
| 145 | - throw new Exception( $error->get_error_message( 'TEXT_ID_ALREADY_EXIST' ) ); |
|
| 144 | + $error = new WP_Error('TEXT_ID_ALREADY_EXIST', __('Text ID without a group already exists.', 'give'), $args); |
|
| 145 | + throw new Exception($error->get_error_message('TEXT_ID_ALREADY_EXIST')); |
|
| 146 | 146 | |
| 147 | 147 | } elseif ( |
| 148 | - ! empty( $args['group'] ) && |
|
| 149 | - ! empty( self::$text_configs[ $args['group'] ] ) && |
|
| 150 | - array_key_exists( $args['id'], self::$text_configs[ $args['group'] ] ) |
|
| 148 | + ! empty($args['group']) && |
|
| 149 | + ! empty(self::$text_configs[$args['group']]) && |
|
| 150 | + array_key_exists($args['id'], self::$text_configs[$args['group']]) |
|
| 151 | 151 | ) { |
| 152 | 152 | /* @var WP_Error $error */ |
| 153 | - $error = new WP_Error( 'TEXT_ID_WITHIN_GROUP_ALREADY_EXIST', __( 'Text ID within a group already exists.', 'give' ), $args ); |
|
| 154 | - throw new Exception( $error->get_error_message( 'TEXT_ID_WITHIN_GROUP_ALREADY_EXIST' ) ); |
|
| 153 | + $error = new WP_Error('TEXT_ID_WITHIN_GROUP_ALREADY_EXIST', __('Text ID within a group already exists.', 'give'), $args); |
|
| 154 | + throw new Exception($error->get_error_message('TEXT_ID_WITHIN_GROUP_ALREADY_EXIST')); |
|
| 155 | 155 | |
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | // Add text. |
| 159 | - if ( ! empty( $args['group'] ) ) { |
|
| 160 | - self::$text_configs[ $args['group'] ][ $args['id'] ] = $args; |
|
| 159 | + if ( ! empty($args['group'])) { |
|
| 160 | + self::$text_configs[$args['group']][$args['id']] = $args; |
|
| 161 | 161 | } else { |
| 162 | - self::$text_configs[ $args['id'] ] = $args; |
|
| 162 | + self::$text_configs[$args['id']] = $args; |
|
| 163 | 163 | } |
| 164 | - } catch ( Exception $e ) { |
|
| 165 | - error_log( $e->getMessage() ); |
|
| 164 | + } catch (Exception $e) { |
|
| 165 | + error_log($e->getMessage()); |
|
| 166 | 166 | }// End try(). |
| 167 | 167 | |
| 168 | 168 | /** |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | * |
| 171 | 171 | * @since 2.0 |
| 172 | 172 | */ |
| 173 | - self::$text_configs = apply_filters( 'give_texts', self::$text_configs ); |
|
| 173 | + self::$text_configs = apply_filters('give_texts', self::$text_configs); |
|
| 174 | 174 | |
| 175 | 175 | return $error; |
| 176 | 176 | } |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * |
| 186 | 186 | * @return string |
| 187 | 187 | */ |
| 188 | - public static function add_label( $args = array() ) { |
|
| 188 | + public static function add_label($args = array()) { |
|
| 189 | 189 | // Set text params. |
| 190 | 190 | $args = wp_parse_args( |
| 191 | 191 | $args, |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | $args['type'] = 'label'; |
| 200 | 200 | $args['id'] = "{$args['id']}_label"; |
| 201 | 201 | |
| 202 | - return self::add_text( $args ); |
|
| 202 | + return self::add_text($args); |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | 205 | /** |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | * |
| 213 | 213 | * @return string |
| 214 | 214 | */ |
| 215 | - public static function add_tooltip( $args = array() ) { |
|
| 215 | + public static function add_tooltip($args = array()) { |
|
| 216 | 216 | // Set text params. |
| 217 | 217 | $args = wp_parse_args( |
| 218 | 218 | $args, |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | $args['type'] = 'tooltip'; |
| 227 | 227 | $args['id'] = "{$args['id']}_tooltip"; |
| 228 | 228 | |
| 229 | - return self::add_text( $args ); |
|
| 229 | + return self::add_text($args); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | * |
| 240 | 240 | * @return string |
| 241 | 241 | */ |
| 242 | - public static function add_translation( $args = array() ) { |
|
| 242 | + public static function add_translation($args = array()) { |
|
| 243 | 243 | $args = wp_parse_args( |
| 244 | 244 | $args, |
| 245 | 245 | array( |
@@ -250,14 +250,14 @@ discard block |
||
| 250 | 250 | ); |
| 251 | 251 | |
| 252 | 252 | // Bailout. |
| 253 | - if ( empty( $args['id'] ) ) { |
|
| 253 | + if (empty($args['id'])) { |
|
| 254 | 254 | return; |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | - if ( ! empty( $args['group'] ) ) { |
|
| 258 | - self::$text_translations[ $args['group'] ][ $args['id'] ] = $args['text']; |
|
| 257 | + if ( ! empty($args['group'])) { |
|
| 258 | + self::$text_translations[$args['group']][$args['id']] = $args['text']; |
|
| 259 | 259 | } else { |
| 260 | - self::$text_translations[ $args['id'] ] = $args['text']; |
|
| 260 | + self::$text_translations[$args['id']] = $args['text']; |
|
| 261 | 261 | } |
| 262 | 262 | } |
| 263 | 263 | |
@@ -273,12 +273,12 @@ discard block |
||
| 273 | 273 | * |
| 274 | 274 | * @return string |
| 275 | 275 | */ |
| 276 | - public static function add_label_translation( $id, $group = '', $text = '' ) { |
|
| 277 | - return self::get_text( array( |
|
| 276 | + public static function add_label_translation($id, $group = '', $text = '') { |
|
| 277 | + return self::get_text(array( |
|
| 278 | 278 | 'id' => "{$id}_label", |
| 279 | 279 | 'group' => $group, |
| 280 | 280 | 'text' => $text, |
| 281 | - ) ); |
|
| 281 | + )); |
|
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | /** |
@@ -293,12 +293,12 @@ discard block |
||
| 293 | 293 | * |
| 294 | 294 | * @return string |
| 295 | 295 | */ |
| 296 | - public static function add_tooltip_translation( $id, $group = '', $text = '' ) { |
|
| 297 | - return self::get_text( array( |
|
| 296 | + public static function add_tooltip_translation($id, $group = '', $text = '') { |
|
| 297 | + return self::get_text(array( |
|
| 298 | 298 | 'id' => "{$id}_label", |
| 299 | 299 | 'group' => $group, |
| 300 | 300 | 'text' => $text, |
| 301 | - ) ); |
|
| 301 | + )); |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | 304 | /** |
@@ -312,12 +312,12 @@ discard block |
||
| 312 | 312 | * |
| 313 | 313 | * @return string |
| 314 | 314 | */ |
| 315 | - public static function get_label( $id, $group = '' ) { |
|
| 316 | - return self::get_text( array( |
|
| 315 | + public static function get_label($id, $group = '') { |
|
| 316 | + return self::get_text(array( |
|
| 317 | 317 | 'id' => "{$id}_label", |
| 318 | 318 | 'group' => $group, |
| 319 | 319 | 'type' => 'label', |
| 320 | - ) ); |
|
| 320 | + )); |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | /** |
@@ -331,12 +331,12 @@ discard block |
||
| 331 | 331 | * |
| 332 | 332 | * @return string |
| 333 | 333 | */ |
| 334 | - public static function get_tooltip( $id, $group = '' ) { |
|
| 335 | - return self::get_text( array( |
|
| 334 | + public static function get_tooltip($id, $group = '') { |
|
| 335 | + return self::get_text(array( |
|
| 336 | 336 | 'id' => "{$id}_tooltip", |
| 337 | 337 | 'group' => $group, |
| 338 | 338 | 'type' => 'tooltip', |
| 339 | - ) ); |
|
| 339 | + )); |
|
| 340 | 340 | } |
| 341 | 341 | |
| 342 | 342 | /** |
@@ -349,11 +349,11 @@ discard block |
||
| 349 | 349 | * |
| 350 | 350 | * @return string |
| 351 | 351 | */ |
| 352 | - public static function get_text( $args = array() ) { |
|
| 352 | + public static function get_text($args = array()) { |
|
| 353 | 353 | $text = ''; |
| 354 | 354 | |
| 355 | 355 | // Bailout. |
| 356 | - if ( empty( $args ) ) { |
|
| 356 | + if (empty($args)) { |
|
| 357 | 357 | return $text; |
| 358 | 358 | } |
| 359 | 359 | |
@@ -369,40 +369,40 @@ discard block |
||
| 369 | 369 | |
| 370 | 370 | // Check if text exist. |
| 371 | 371 | if ( |
| 372 | - empty( $args['id'] ) || |
|
| 373 | - ( empty( $args['group'] ) && ! array_key_exists( $args['id'], self::$text_configs ) ) || |
|
| 374 | - ( ! empty( $args['group'] ) && ! empty( self::$text_configs[ $args['group'] ] ) && ! array_key_exists( $args['id'], self::$text_configs[ $args['group'] ] ) ) |
|
| 372 | + empty($args['id']) || |
|
| 373 | + (empty($args['group']) && ! array_key_exists($args['id'], self::$text_configs)) || |
|
| 374 | + ( ! empty($args['group']) && ! empty(self::$text_configs[$args['group']]) && ! array_key_exists($args['id'], self::$text_configs[$args['group']])) |
|
| 375 | 375 | ) { |
| 376 | 376 | return $text; |
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 379 | // Get text value. |
| 380 | 380 | if ( |
| 381 | - ! empty( $args['group'] ) && |
|
| 382 | - array_key_exists( $args['group'], self::$text_configs ) |
|
| 381 | + ! empty($args['group']) && |
|
| 382 | + array_key_exists($args['group'], self::$text_configs) |
|
| 383 | 383 | ) { |
| 384 | - $text = self::$text_configs[ $args['group'] ][ $args['id'] ]['text']; |
|
| 384 | + $text = self::$text_configs[$args['group']][$args['id']]['text']; |
|
| 385 | 385 | |
| 386 | 386 | // Get translated text if exist. |
| 387 | 387 | if ( |
| 388 | - ! empty( self::$text_translations ) && |
|
| 389 | - ! empty( self::$text_translations[ $args['group'] ] ) && |
|
| 390 | - array_key_exists( $args['id'], self::$text_translations[ $args['group'] ] ) |
|
| 388 | + ! empty(self::$text_translations) && |
|
| 389 | + ! empty(self::$text_translations[$args['group']]) && |
|
| 390 | + array_key_exists($args['id'], self::$text_translations[$args['group']]) |
|
| 391 | 391 | ) { |
| 392 | - $text = self::$text_translations[ $args['group'] ][ $args['id'] ]; |
|
| 392 | + $text = self::$text_translations[$args['group']][$args['id']]; |
|
| 393 | 393 | } |
| 394 | 394 | } elseif ( |
| 395 | - empty( $args['group'] ) && |
|
| 396 | - array_key_exists( $args['id'], self::$text_configs ) |
|
| 395 | + empty($args['group']) && |
|
| 396 | + array_key_exists($args['id'], self::$text_configs) |
|
| 397 | 397 | ) { |
| 398 | - $text = self::$text_configs[ $args['id'] ]['text']; |
|
| 398 | + $text = self::$text_configs[$args['id']]['text']; |
|
| 399 | 399 | |
| 400 | 400 | // Get translated text if exist. |
| 401 | 401 | if ( |
| 402 | - ! empty( self::$text_translations ) && |
|
| 403 | - array_key_exists( $args['id'], self::$text_translations ) |
|
| 402 | + ! empty(self::$text_translations) && |
|
| 403 | + array_key_exists($args['id'], self::$text_translations) |
|
| 404 | 404 | ) { |
| 405 | - $text = self::$text_translations[ $args['id'] ]; |
|
| 405 | + $text = self::$text_translations[$args['id']]; |
|
| 406 | 406 | } |
| 407 | 407 | } |
| 408 | 408 | |
@@ -411,7 +411,7 @@ discard block |
||
| 411 | 411 | * |
| 412 | 412 | * @since 2.0 |
| 413 | 413 | */ |
| 414 | - $text = apply_filters( 'give_text', $text, $args, self::$text_configs, self::$text_translations ); |
|
| 414 | + $text = apply_filters('give_text', $text, $args, self::$text_configs, self::$text_translations); |
|
| 415 | 415 | |
| 416 | 416 | return $text; |
| 417 | 417 | } |
@@ -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 | |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | public function __construct() { |
| 107 | 107 | |
| 108 | 108 | // get it started |
| 109 | - add_action( 'init', array( $this, 'init' ) ); |
|
| 109 | + add_action('init', array($this, 'init')); |
|
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | /** |
@@ -122,28 +122,28 @@ discard block |
||
| 122 | 122 | public function init() { |
| 123 | 123 | |
| 124 | 124 | // Bail Out, if user is logged in. |
| 125 | - if ( is_user_logged_in() ) { |
|
| 125 | + if (is_user_logged_in()) { |
|
| 126 | 126 | return; |
| 127 | 127 | } |
| 128 | 128 | |
| 129 | 129 | // Are db columns setup? |
| 130 | - $column_exists = Give()->donors->does_column_exist( 'token' ); |
|
| 131 | - if ( ! $column_exists ) { |
|
| 130 | + $column_exists = Give()->donors->does_column_exist('token'); |
|
| 131 | + if ( ! $column_exists) { |
|
| 132 | 132 | $this->create_columns(); |
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | // Timeouts. |
| 136 | - $this->verify_throttle = apply_filters( 'give_nl_verify_throttle', 300 ); |
|
| 137 | - $this->limit_throttle = apply_filters( 'give_nl_limit_throttle', 3 ); |
|
| 138 | - $this->token_expiration = apply_filters( 'give_nl_token_expiration', 7200 ); |
|
| 136 | + $this->verify_throttle = apply_filters('give_nl_verify_throttle', 300); |
|
| 137 | + $this->limit_throttle = apply_filters('give_nl_limit_throttle', 3); |
|
| 138 | + $this->token_expiration = apply_filters('give_nl_token_expiration', 7200); |
|
| 139 | 139 | |
| 140 | 140 | // Setup login. |
| 141 | 141 | $this->check_for_token(); |
| 142 | 142 | |
| 143 | - if ( $this->token_exists ) { |
|
| 144 | - add_filter( 'give_can_view_receipt', '__return_true' ); |
|
| 145 | - add_filter( 'give_user_pending_verification', '__return_false' ); |
|
| 146 | - add_filter( 'give_get_users_donations_args', array( $this, 'users_donations_args' ) ); |
|
| 143 | + if ($this->token_exists) { |
|
| 144 | + add_filter('give_can_view_receipt', '__return_true'); |
|
| 145 | + add_filter('give_user_pending_verification', '__return_false'); |
|
| 146 | + add_filter('give_get_users_donations_args', array($this, 'users_donations_args')); |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | } |
@@ -158,23 +158,23 @@ discard block |
||
| 158 | 158 | * |
| 159 | 159 | * @return bool |
| 160 | 160 | */ |
| 161 | - public function can_send_email( $donor_id ) { |
|
| 161 | + public function can_send_email($donor_id) { |
|
| 162 | 162 | |
| 163 | - $donor = Give()->donors->get_donor_by( 'id', $donor_id ); |
|
| 163 | + $donor = Give()->donors->get_donor_by('id', $donor_id); |
|
| 164 | 164 | |
| 165 | - if ( is_object( $donor ) && count( $donor ) > 0 ) { |
|
| 165 | + if (is_object($donor) && count($donor) > 0) { |
|
| 166 | 166 | |
| 167 | - $email_throttle_count = (int) give_get_meta( $donor_id, '_give_email_throttle_count', true ); |
|
| 167 | + $email_throttle_count = (int) give_get_meta($donor_id, '_give_email_throttle_count', true); |
|
| 168 | 168 | |
| 169 | 169 | $cache_key = "give_cache_email_throttle_limit_exhausted_{$donor_id}"; |
| 170 | 170 | if ( |
| 171 | 171 | $email_throttle_count < $this->limit_throttle && |
| 172 | - true !== Give_Cache::get( $cache_key ) |
|
| 172 | + true !== Give_Cache::get($cache_key) |
|
| 173 | 173 | ) { |
| 174 | - give_update_meta( $donor_id, '_give_email_throttle_count', $email_throttle_count + 1 ); |
|
| 174 | + give_update_meta($donor_id, '_give_email_throttle_count', $email_throttle_count + 1); |
|
| 175 | 175 | } else { |
| 176 | - give_update_meta( $donor_id, '_give_email_throttle_count', 0 ); |
|
| 177 | - Give_Cache::set( $cache_key, true, $this->verify_throttle ); |
|
| 176 | + give_update_meta($donor_id, '_give_email_throttle_count', 0); |
|
| 177 | + Give_Cache::set($cache_key, true, $this->verify_throttle); |
|
| 178 | 178 | return false; |
| 179 | 179 | } |
| 180 | 180 | |
@@ -194,8 +194,8 @@ discard block |
||
| 194 | 194 | * |
| 195 | 195 | * @return bool |
| 196 | 196 | */ |
| 197 | - public function send_email( $donor_id, $email ) { |
|
| 198 | - return apply_filters( 'give_email-access_email_notification', $donor_id, $email ); |
|
| 197 | + public function send_email($donor_id, $email) { |
|
| 198 | + return apply_filters('give_email-access_email_notification', $donor_id, $email); |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | /** |
@@ -208,28 +208,28 @@ discard block |
||
| 208 | 208 | */ |
| 209 | 209 | public function check_for_token() { |
| 210 | 210 | |
| 211 | - $token = isset( $_GET['give_nl'] ) ? give_clean( $_GET['give_nl'] ) : ''; |
|
| 211 | + $token = isset($_GET['give_nl']) ? give_clean($_GET['give_nl']) : ''; |
|
| 212 | 212 | |
| 213 | 213 | // Check for cookie. |
| 214 | - if ( empty( $token ) ) { |
|
| 215 | - $token = isset( $_COOKIE['give_nl'] ) ? give_clean( $_COOKIE['give_nl'] ) : ''; |
|
| 214 | + if (empty($token)) { |
|
| 215 | + $token = isset($_COOKIE['give_nl']) ? give_clean($_COOKIE['give_nl']) : ''; |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | // Must have a token. |
| 219 | - if ( ! empty( $token ) ) { |
|
| 219 | + if ( ! empty($token)) { |
|
| 220 | 220 | |
| 221 | - if ( ! $this->is_valid_token( $token ) ) { |
|
| 222 | - if ( ! $this->is_valid_verify_key( $token ) ) { |
|
| 221 | + if ( ! $this->is_valid_token($token)) { |
|
| 222 | + if ( ! $this->is_valid_verify_key($token)) { |
|
| 223 | 223 | return false; |
| 224 | 224 | } |
| 225 | 225 | } |
| 226 | 226 | |
| 227 | 227 | // Set Receipt Access Session. |
| 228 | - Give()->session->set( 'receipt_access', true ); |
|
| 228 | + Give()->session->set('receipt_access', true); |
|
| 229 | 229 | $this->token_exists = true; |
| 230 | 230 | // Set cookie. |
| 231 | - $lifetime = current_time( 'timestamp' ) + Give()->session->set_expiration_time(); |
|
| 232 | - @setcookie( 'give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false ); |
|
| 231 | + $lifetime = current_time('timestamp') + Give()->session->set_expiration_time(); |
|
| 232 | + @setcookie('give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false); |
|
| 233 | 233 | |
| 234 | 234 | return true; |
| 235 | 235 | } |
@@ -245,26 +245,26 @@ discard block |
||
| 245 | 245 | * |
| 246 | 246 | * @return bool |
| 247 | 247 | */ |
| 248 | - public function is_valid_token( $token ) { |
|
| 248 | + public function is_valid_token($token) { |
|
| 249 | 249 | |
| 250 | 250 | global $wpdb; |
| 251 | 251 | |
| 252 | 252 | // Make sure token isn't expired. |
| 253 | - $expires = date( 'Y-m-d H:i:s', time() - $this->token_expiration ); |
|
| 253 | + $expires = date('Y-m-d H:i:s', time() - $this->token_expiration); |
|
| 254 | 254 | |
| 255 | 255 | $email = $wpdb->get_var( |
| 256 | - $wpdb->prepare( "SELECT email FROM {$wpdb->donors} WHERE verify_key = %s AND verify_throttle >= %s LIMIT 1", $token, $expires ) |
|
| 256 | + $wpdb->prepare("SELECT email FROM {$wpdb->donors} WHERE verify_key = %s AND verify_throttle >= %s LIMIT 1", $token, $expires) |
|
| 257 | 257 | ); |
| 258 | 258 | |
| 259 | - if ( ! empty( $email ) ) { |
|
| 259 | + if ( ! empty($email)) { |
|
| 260 | 260 | $this->token_email = $email; |
| 261 | 261 | $this->token = $token; |
| 262 | 262 | return true; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | 265 | // Set error only if email access form isn't being submitted. |
| 266 | - if ( ! isset( $_POST['give_email'] ) && ! isset( $_POST['_wpnonce'] ) ) { |
|
| 267 | - give_set_error( 'give_email_token_expired', apply_filters( 'give_email_token_expired_message', __( 'Your access token has expired. Please request a new one below:', 'give' ) ) ); |
|
| 266 | + if ( ! isset($_POST['give_email']) && ! isset($_POST['_wpnonce'])) { |
|
| 267 | + give_set_error('give_email_token_expired', apply_filters('give_email_token_expired_message', __('Your access token has expired. Please request a new one below:', 'give'))); |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | return false; |
@@ -283,25 +283,25 @@ discard block |
||
| 283 | 283 | * |
| 284 | 284 | * @return void |
| 285 | 285 | */ |
| 286 | - public function set_verify_key( $donor_id, $email, $verify_key ) { |
|
| 286 | + public function set_verify_key($donor_id, $email, $verify_key) { |
|
| 287 | 287 | global $wpdb; |
| 288 | 288 | |
| 289 | - $now = date( 'Y-m-d H:i:s' ); |
|
| 289 | + $now = date('Y-m-d H:i:s'); |
|
| 290 | 290 | |
| 291 | 291 | // Insert or update? |
| 292 | 292 | $row_id = (int) $wpdb->get_var( |
| 293 | - $wpdb->prepare( "SELECT id FROM {$wpdb->donors} WHERE id = %d LIMIT 1", $donor_id ) |
|
| 293 | + $wpdb->prepare("SELECT id FROM {$wpdb->donors} WHERE id = %d LIMIT 1", $donor_id) |
|
| 294 | 294 | ); |
| 295 | 295 | |
| 296 | 296 | // Update. |
| 297 | - if ( ! empty( $row_id ) ) { |
|
| 297 | + if ( ! empty($row_id)) { |
|
| 298 | 298 | $wpdb->query( |
| 299 | - $wpdb->prepare( "UPDATE {$wpdb->donors} SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id ) |
|
| 299 | + $wpdb->prepare("UPDATE {$wpdb->donors} SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id) |
|
| 300 | 300 | ); |
| 301 | 301 | } // Insert. |
| 302 | 302 | else { |
| 303 | 303 | $wpdb->query( |
| 304 | - $wpdb->prepare( "INSERT INTO {$wpdb->donors} ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now ) |
|
| 304 | + $wpdb->prepare("INSERT INTO {$wpdb->donors} ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now) |
|
| 305 | 305 | ); |
| 306 | 306 | } |
| 307 | 307 | } |
@@ -316,21 +316,21 @@ discard block |
||
| 316 | 316 | * |
| 317 | 317 | * @return bool |
| 318 | 318 | */ |
| 319 | - public function is_valid_verify_key( $token ) { |
|
| 319 | + public function is_valid_verify_key($token) { |
|
| 320 | 320 | /* @var WPDB $wpdb */ |
| 321 | 321 | global $wpdb; |
| 322 | 322 | |
| 323 | 323 | // See if the verify_key exists. |
| 324 | 324 | $row = $wpdb->get_row( |
| 325 | - $wpdb->prepare( "SELECT id, email FROM {$wpdb->donors} WHERE verify_key = %s LIMIT 1", $token ) |
|
| 325 | + $wpdb->prepare("SELECT id, email FROM {$wpdb->donors} WHERE verify_key = %s LIMIT 1", $token) |
|
| 326 | 326 | ); |
| 327 | 327 | |
| 328 | - $now = date( 'Y-m-d H:i:s' ); |
|
| 328 | + $now = date('Y-m-d H:i:s'); |
|
| 329 | 329 | |
| 330 | 330 | // Set token and remove verify key. |
| 331 | - if ( ! empty( $row ) ) { |
|
| 331 | + if ( ! empty($row)) { |
|
| 332 | 332 | $wpdb->query( |
| 333 | - $wpdb->prepare( "UPDATE {$wpdb->donors} SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id ) |
|
| 333 | + $wpdb->prepare("UPDATE {$wpdb->donors} SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id) |
|
| 334 | 334 | ); |
| 335 | 335 | |
| 336 | 336 | $this->token_email = $row->email; |
@@ -354,7 +354,7 @@ discard block |
||
| 354 | 354 | * |
| 355 | 355 | * @return mixed |
| 356 | 356 | */ |
| 357 | - public function users_donations_args( $args ) { |
|
| 357 | + public function users_donations_args($args) { |
|
| 358 | 358 | $args['user'] = $this->token_email; |
| 359 | 359 | |
| 360 | 360 | return $args; |
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | global $wpdb; |
| 376 | 376 | |
| 377 | 377 | // Create columns in donors table. |
| 378 | - $wpdb->query( "ALTER TABLE {$wpdb->donors} ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`" ); |
|
| 378 | + $wpdb->query("ALTER TABLE {$wpdb->donors} ADD `token` VARCHAR(255) CHARACTER SET utf8 NOT NULL, ADD `verify_key` VARCHAR(255) CHARACTER SET utf8 NOT NULL AFTER `token`, ADD `verify_throttle` DATETIME NOT NULL AFTER `verify_key`"); |
|
| 379 | 379 | } |
| 380 | 380 | |
| 381 | 381 | } |