@@ -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,7 +21,7 @@ discard block |
||
| 21 | 21 | * @return string |
| 22 | 22 | */ |
| 23 | 23 | function give_get_templates_dir() { |
| 24 | - return GIVE_PLUGIN_DIR . 'templates'; |
|
| 24 | + return GIVE_PLUGIN_DIR.'templates'; |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * @return string |
| 32 | 32 | */ |
| 33 | 33 | function give_get_templates_url() { |
| 34 | - return GIVE_PLUGIN_URL . 'templates'; |
|
| 34 | + return GIVE_PLUGIN_URL.'templates'; |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /** |
@@ -51,23 +51,23 @@ discard block |
||
| 51 | 51 | * @uses load_template() |
| 52 | 52 | * @uses get_template_part() |
| 53 | 53 | */ |
| 54 | -function give_get_template_part( $slug, $name = null, $load = true ) { |
|
| 54 | +function give_get_template_part($slug, $name = null, $load = true) { |
|
| 55 | 55 | |
| 56 | 56 | // Execute code for this part |
| 57 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
| 57 | + do_action('get_template_part_'.$slug, $slug, $name); |
|
| 58 | 58 | |
| 59 | 59 | // Setup possible parts |
| 60 | 60 | $templates = array(); |
| 61 | - if ( isset( $name ) ) { |
|
| 62 | - $templates[] = $slug . '-' . $name . '.php'; |
|
| 61 | + if (isset($name)) { |
|
| 62 | + $templates[] = $slug.'-'.$name.'.php'; |
|
| 63 | 63 | } |
| 64 | - $templates[] = $slug . '.php'; |
|
| 64 | + $templates[] = $slug.'.php'; |
|
| 65 | 65 | |
| 66 | 66 | // Allow template parts to be filtered |
| 67 | - $templates = apply_filters( 'give_get_template_part', $templates, $slug, $name ); |
|
| 67 | + $templates = apply_filters('give_get_template_part', $templates, $slug, $name); |
|
| 68 | 68 | |
| 69 | 69 | // Return the part that is found |
| 70 | - return give_locate_template( $templates, $load, false ); |
|
| 70 | + return give_locate_template($templates, $load, false); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -88,37 +88,37 @@ discard block |
||
| 88 | 88 | * |
| 89 | 89 | * @return string The template filename if one is located. |
| 90 | 90 | */ |
| 91 | -function give_locate_template( $template_names, $load = false, $require_once = true ) { |
|
| 91 | +function give_locate_template($template_names, $load = false, $require_once = true) { |
|
| 92 | 92 | // No file found yet |
| 93 | 93 | $located = false; |
| 94 | 94 | |
| 95 | 95 | // Try to find a template file |
| 96 | - foreach ( (array) $template_names as $template_name ) { |
|
| 96 | + foreach ((array) $template_names as $template_name) { |
|
| 97 | 97 | |
| 98 | 98 | // Continue if template is empty |
| 99 | - if ( empty( $template_name ) ) { |
|
| 99 | + if (empty($template_name)) { |
|
| 100 | 100 | continue; |
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | // Trim off any slashes from the template name |
| 104 | - $template_name = ltrim( $template_name, '/' ); |
|
| 104 | + $template_name = ltrim($template_name, '/'); |
|
| 105 | 105 | |
| 106 | 106 | // try locating this template file by looping through the template paths |
| 107 | - foreach ( give_get_theme_template_paths() as $template_path ) { |
|
| 107 | + foreach (give_get_theme_template_paths() as $template_path) { |
|
| 108 | 108 | |
| 109 | - if ( file_exists( $template_path . $template_name ) ) { |
|
| 110 | - $located = $template_path . $template_name; |
|
| 109 | + if (file_exists($template_path.$template_name)) { |
|
| 110 | + $located = $template_path.$template_name; |
|
| 111 | 111 | break; |
| 112 | 112 | } |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - if ( $located ) { |
|
| 115 | + if ($located) { |
|
| 116 | 116 | break; |
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - if ( ( true == $load ) && ! empty( $located ) ) { |
|
| 121 | - load_template( $located, $require_once ); |
|
| 120 | + if ((true == $load) && ! empty($located)) { |
|
| 121 | + load_template($located, $require_once); |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | return $located; |
@@ -135,17 +135,17 @@ discard block |
||
| 135 | 135 | $template_dir = give_get_theme_template_dir_name(); |
| 136 | 136 | |
| 137 | 137 | $file_paths = array( |
| 138 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
| 139 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
| 138 | + 1 => trailingslashit(get_stylesheet_directory()).$template_dir, |
|
| 139 | + 10 => trailingslashit(get_template_directory()).$template_dir, |
|
| 140 | 140 | 100 => give_get_templates_dir() |
| 141 | 141 | ); |
| 142 | 142 | |
| 143 | - $file_paths = apply_filters( 'give_template_paths', $file_paths ); |
|
| 143 | + $file_paths = apply_filters('give_template_paths', $file_paths); |
|
| 144 | 144 | |
| 145 | 145 | // sort the file paths based on priority |
| 146 | - ksort( $file_paths, SORT_NUMERIC ); |
|
| 146 | + ksort($file_paths, SORT_NUMERIC); |
|
| 147 | 147 | |
| 148 | - return array_map( 'trailingslashit', $file_paths ); |
|
| 148 | + return array_map('trailingslashit', $file_paths); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | /** |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @return string |
| 158 | 158 | */ |
| 159 | 159 | function give_get_theme_template_dir_name() { |
| 160 | - return trailingslashit( apply_filters( 'give_templates_dir', 'give' ) ); |
|
| 160 | + return trailingslashit(apply_filters('give_templates_dir', 'give')); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | /** |
@@ -167,10 +167,10 @@ discard block |
||
| 167 | 167 | * @return void |
| 168 | 168 | */ |
| 169 | 169 | function give_version_in_header() { |
| 170 | - echo '<meta name="generator" content="Give v' . GIVE_VERSION . '" />' . "\n"; |
|
| 170 | + echo '<meta name="generator" content="Give v'.GIVE_VERSION.'" />'."\n"; |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | -add_action( 'wp_head', 'give_version_in_header' ); |
|
| 173 | +add_action('wp_head', 'give_version_in_header'); |
|
| 174 | 174 | |
| 175 | 175 | /** |
| 176 | 176 | * Determines if we're currently on the Donations History page. |
@@ -180,9 +180,9 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | function give_is_donation_history_page() { |
| 182 | 182 | |
| 183 | - $ret = is_page( give_get_option( 'history_page' ) ); |
|
| 183 | + $ret = is_page(give_get_option('history_page')); |
|
| 184 | 184 | |
| 185 | - return apply_filters( 'give_is_donation_history_page', $ret ); |
|
| 185 | + return apply_filters('give_is_donation_history_page', $ret); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | /** |
@@ -194,25 +194,25 @@ discard block |
||
| 194 | 194 | * |
| 195 | 195 | * @return array Modified array of classes |
| 196 | 196 | */ |
| 197 | -function give_add_body_classes( $class ) { |
|
| 197 | +function give_add_body_classes($class) { |
|
| 198 | 198 | $classes = (array) $class; |
| 199 | 199 | |
| 200 | - if ( give_is_success_page() ) { |
|
| 200 | + if (give_is_success_page()) { |
|
| 201 | 201 | $classes[] = 'give-success'; |
| 202 | 202 | $classes[] = 'give-page'; |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - if ( give_is_failed_transaction_page() ) { |
|
| 205 | + if (give_is_failed_transaction_page()) { |
|
| 206 | 206 | $classes[] = 'give-failed-transaction'; |
| 207 | 207 | $classes[] = 'give-page'; |
| 208 | 208 | } |
| 209 | 209 | |
| 210 | - if ( give_is_donation_history_page() ) { |
|
| 210 | + if (give_is_donation_history_page()) { |
|
| 211 | 211 | $classes[] = 'give-donation-history'; |
| 212 | 212 | $classes[] = 'give-page'; |
| 213 | 213 | } |
| 214 | 214 | |
| 215 | - if ( give_is_test_mode() ) { |
|
| 215 | + if (give_is_test_mode()) { |
|
| 216 | 216 | $classes[] = 'give-test-mode'; |
| 217 | 217 | $classes[] = 'give-page'; |
| 218 | 218 | } |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | //Theme-specific Classes used to prevent conflicts via CSS |
| 221 | 221 | $current_theme = wp_get_theme(); |
| 222 | 222 | |
| 223 | - switch ( $current_theme->template ) { |
|
| 223 | + switch ($current_theme->template) { |
|
| 224 | 224 | |
| 225 | 225 | case 'Divi': |
| 226 | 226 | $classes[] = 'give-divi'; |
@@ -234,10 +234,10 @@ discard block |
||
| 234 | 234 | |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - return array_unique( $classes ); |
|
| 237 | + return array_unique($classes); |
|
| 238 | 238 | } |
| 239 | 239 | |
| 240 | -add_filter( 'body_class', 'give_add_body_classes' ); |
|
| 240 | +add_filter('body_class', 'give_add_body_classes'); |
|
| 241 | 241 | |
| 242 | 242 | |
| 243 | 243 | /** |
@@ -253,22 +253,22 @@ discard block |
||
| 253 | 253 | * |
| 254 | 254 | * @return array |
| 255 | 255 | */ |
| 256 | -function give_add_post_class( $classes, $class = '', $post_id = '' ) { |
|
| 257 | - if ( ! $post_id || 'give_forms' !== get_post_type( $post_id ) ) { |
|
| 256 | +function give_add_post_class($classes, $class = '', $post_id = '') { |
|
| 257 | + if ( ! $post_id || 'give_forms' !== get_post_type($post_id)) { |
|
| 258 | 258 | return $classes; |
| 259 | 259 | } |
| 260 | 260 | |
| 261 | 261 | //@TODO: Add classes for custom taxonomy and form configurations (multi vs single donations, etc). |
| 262 | 262 | |
| 263 | - if ( false !== ( $key = array_search( 'hentry', $classes ) ) ) { |
|
| 264 | - unset( $classes[ $key ] ); |
|
| 263 | + if (false !== ($key = array_search('hentry', $classes))) { |
|
| 264 | + unset($classes[$key]); |
|
| 265 | 265 | } |
| 266 | 266 | |
| 267 | 267 | return $classes; |
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | |
| 271 | -add_filter( 'post_class', 'give_add_post_class', 20, 3 ); |
|
| 271 | +add_filter('post_class', 'give_add_post_class', 20, 3); |
|
| 272 | 272 | |
| 273 | 273 | /** |
| 274 | 274 | * Get the placeholder image URL for forms etc |
@@ -278,84 +278,84 @@ discard block |
||
| 278 | 278 | */ |
| 279 | 279 | function give_get_placeholder_img_src() { |
| 280 | 280 | |
| 281 | - $placeholder_url = 'http://placehold.it/600x600&text=' . urlencode( esc_attr__( 'Give Placeholder Image', 'give' ) ); |
|
| 281 | + $placeholder_url = 'http://placehold.it/600x600&text='.urlencode(esc_attr__('Give Placeholder Image', 'give')); |
|
| 282 | 282 | |
| 283 | - return apply_filters( 'give_placeholder_img_src', $placeholder_url ); |
|
| 283 | + return apply_filters('give_placeholder_img_src', $placeholder_url); |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | |
| 287 | 287 | /** |
| 288 | 288 | * Global |
| 289 | 289 | */ |
| 290 | -if ( ! function_exists( 'give_output_content_wrapper' ) ) { |
|
| 290 | +if ( ! function_exists('give_output_content_wrapper')) { |
|
| 291 | 291 | |
| 292 | 292 | /** |
| 293 | 293 | * Output the start of the page wrapper. |
| 294 | 294 | */ |
| 295 | 295 | function give_output_content_wrapper() { |
| 296 | - give_get_template_part( 'global/wrapper-start' ); |
|
| 296 | + give_get_template_part('global/wrapper-start'); |
|
| 297 | 297 | } |
| 298 | 298 | } |
| 299 | -if ( ! function_exists( 'give_output_content_wrapper_end' ) ) { |
|
| 299 | +if ( ! function_exists('give_output_content_wrapper_end')) { |
|
| 300 | 300 | |
| 301 | 301 | /** |
| 302 | 302 | * Output the end of the page wrapper. |
| 303 | 303 | */ |
| 304 | 304 | function give_output_content_wrapper_end() { |
| 305 | - give_get_template_part( 'global/wrapper-end' ); |
|
| 305 | + give_get_template_part('global/wrapper-end'); |
|
| 306 | 306 | } |
| 307 | 307 | } |
| 308 | 308 | |
| 309 | 309 | /** |
| 310 | 310 | * Single Give Form |
| 311 | 311 | */ |
| 312 | -if ( ! function_exists( 'give_left_sidebar_pre_wrap' ) ) { |
|
| 312 | +if ( ! function_exists('give_left_sidebar_pre_wrap')) { |
|
| 313 | 313 | function give_left_sidebar_pre_wrap() { |
| 314 | - echo apply_filters( 'give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">' ); |
|
| 314 | + echo apply_filters('give_left_sidebar_pre_wrap', '<div id="give-sidebar-left" class="give-sidebar give-single-form-sidebar-left">'); |
|
| 315 | 315 | } |
| 316 | 316 | } |
| 317 | 317 | |
| 318 | -if ( ! function_exists( 'give_left_sidebar_post_wrap' ) ) { |
|
| 318 | +if ( ! function_exists('give_left_sidebar_post_wrap')) { |
|
| 319 | 319 | function give_left_sidebar_post_wrap() { |
| 320 | - echo apply_filters( 'give_left_sidebar_post_wrap', '</div>' ); |
|
| 320 | + echo apply_filters('give_left_sidebar_post_wrap', '</div>'); |
|
| 321 | 321 | } |
| 322 | 322 | } |
| 323 | 323 | |
| 324 | -if ( ! function_exists( 'give_get_forms_sidebar' ) ) { |
|
| 324 | +if ( ! function_exists('give_get_forms_sidebar')) { |
|
| 325 | 325 | function give_get_forms_sidebar() { |
| 326 | - give_get_template_part( 'single-give-form/sidebar' ); |
|
| 326 | + give_get_template_part('single-give-form/sidebar'); |
|
| 327 | 327 | } |
| 328 | 328 | } |
| 329 | 329 | |
| 330 | -if ( ! function_exists( 'give_show_form_images' ) ) { |
|
| 330 | +if ( ! function_exists('give_show_form_images')) { |
|
| 331 | 331 | |
| 332 | 332 | /** |
| 333 | 333 | * Output the product image before the single product summary. |
| 334 | 334 | */ |
| 335 | 335 | function give_show_form_images() { |
| 336 | - $featured_image_option = give_get_option( 'disable_form_featured_img' ); |
|
| 337 | - if ( $featured_image_option !== 'on' ) { |
|
| 338 | - give_get_template_part( 'single-give-form/featured-image' ); |
|
| 336 | + $featured_image_option = give_get_option('disable_form_featured_img'); |
|
| 337 | + if ($featured_image_option !== 'on') { |
|
| 338 | + give_get_template_part('single-give-form/featured-image'); |
|
| 339 | 339 | } |
| 340 | 340 | } |
| 341 | 341 | } |
| 342 | 342 | |
| 343 | -if ( ! function_exists( 'give_template_single_title' ) ) { |
|
| 343 | +if ( ! function_exists('give_template_single_title')) { |
|
| 344 | 344 | |
| 345 | 345 | /** |
| 346 | 346 | * Output the product title. |
| 347 | 347 | */ |
| 348 | 348 | function give_template_single_title() { |
| 349 | - give_get_template_part( 'single-give-form/title' ); |
|
| 349 | + give_get_template_part('single-give-form/title'); |
|
| 350 | 350 | } |
| 351 | 351 | } |
| 352 | 352 | |
| 353 | -if ( ! function_exists( 'give_show_avatars' ) ) { |
|
| 353 | +if ( ! function_exists('give_show_avatars')) { |
|
| 354 | 354 | |
| 355 | 355 | /** |
| 356 | 356 | * Output the product title. |
| 357 | 357 | */ |
| 358 | 358 | function give_show_avatars() { |
| 359 | - echo do_shortcode( '[give_donators_gravatars]' ); |
|
| 359 | + echo do_shortcode('[give_donators_gravatars]'); |
|
| 360 | 360 | } |
| 361 | 361 | } |
| 362 | 362 | \ No newline at end of file |
@@ -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 | |
@@ -41,8 +41,8 @@ discard block |
||
| 41 | 41 | * |
| 42 | 42 | * @return string $message Fully formatted message |
| 43 | 43 | */ |
| 44 | -function give_email_template_tags( $message, $payment_data, $payment_id, $admin_notice = false ) { |
|
| 45 | - return give_do_email_tags( $message, $payment_id ); |
|
| 44 | +function give_email_template_tags($message, $payment_data, $payment_id, $admin_notice = false) { |
|
| 45 | + return give_do_email_tags($message, $payment_id); |
|
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
@@ -55,38 +55,38 @@ discard block |
||
| 55 | 55 | * |
| 56 | 56 | * @return string $message Fully formatted message |
| 57 | 57 | */ |
| 58 | -function give_email_preview_template_tags( $message ) { |
|
| 58 | +function give_email_preview_template_tags($message) { |
|
| 59 | 59 | global $give_options; |
| 60 | 60 | |
| 61 | - $price = give_currency_filter( give_format_amount( 10.50 ) ); |
|
| 61 | + $price = give_currency_filter(give_format_amount(10.50)); |
|
| 62 | 62 | |
| 63 | 63 | $gateway = 'PayPal'; |
| 64 | 64 | |
| 65 | - $receipt_id = strtolower( md5( uniqid() ) ); |
|
| 65 | + $receipt_id = strtolower(md5(uniqid())); |
|
| 66 | 66 | |
| 67 | - $notes = __( 'These are some sample notes added to a donation.', 'give' ); |
|
| 67 | + $notes = __('These are some sample notes added to a donation.', 'give'); |
|
| 68 | 68 | |
| 69 | - $payment_id = rand( 1, 100 ); |
|
| 69 | + $payment_id = rand(1, 100); |
|
| 70 | 70 | |
| 71 | 71 | $user = wp_get_current_user(); |
| 72 | 72 | |
| 73 | - $message = str_replace( '{name}', $user->display_name, $message ); |
|
| 74 | - $message = str_replace( '{fullname}', $user->display_name, $message ); |
|
| 75 | - $message = str_replace( '{username}', $user->user_login, $message ); |
|
| 76 | - $message = str_replace( '{date}', date( get_option( 'date_format' ), current_time( 'timestamp' ) ), $message ); |
|
| 77 | - $message = str_replace( '{price}', $price, $message ); |
|
| 78 | - $message = str_replace( '{donation}', 'Sample Donation Form Title', $message ); |
|
| 79 | - $message = str_replace( '{receipt_id}', $receipt_id, $message ); |
|
| 80 | - $message = str_replace( '{payment_method}', $gateway, $message ); |
|
| 81 | - $message = str_replace( '{sitename}', get_bloginfo( 'name' ), $message ); |
|
| 82 | - $message = str_replace( '{product_notes}', $notes, $message ); |
|
| 83 | - $message = str_replace( '{payment_id}', $payment_id, $message ); |
|
| 84 | - $message = str_replace( '{receipt_link}', sprintf( __( '%1$sView the receipt in your browser %2$s', 'give' ), '<a href="' . esc_url( add_query_arg( array( |
|
| 73 | + $message = str_replace('{name}', $user->display_name, $message); |
|
| 74 | + $message = str_replace('{fullname}', $user->display_name, $message); |
|
| 75 | + $message = str_replace('{username}', $user->user_login, $message); |
|
| 76 | + $message = str_replace('{date}', date(get_option('date_format'), current_time('timestamp')), $message); |
|
| 77 | + $message = str_replace('{price}', $price, $message); |
|
| 78 | + $message = str_replace('{donation}', 'Sample Donation Form Title', $message); |
|
| 79 | + $message = str_replace('{receipt_id}', $receipt_id, $message); |
|
| 80 | + $message = str_replace('{payment_method}', $gateway, $message); |
|
| 81 | + $message = str_replace('{sitename}', get_bloginfo('name'), $message); |
|
| 82 | + $message = str_replace('{product_notes}', $notes, $message); |
|
| 83 | + $message = str_replace('{payment_id}', $payment_id, $message); |
|
| 84 | + $message = str_replace('{receipt_link}', sprintf(__('%1$sView the receipt in your browser %2$s', 'give'), '<a href="'.esc_url(add_query_arg(array( |
|
| 85 | 85 | 'payment_key' => $receipt_id, |
| 86 | 86 | 'give_action' => 'view_receipt' |
| 87 | - ), home_url() ) ) . '">', '»</a>' ), $message ); |
|
| 87 | + ), home_url())).'">', '»</a>'), $message); |
|
| 88 | 88 | |
| 89 | - return wpautop( apply_filters( 'give_email_preview_template_tags', $message ) ); |
|
| 89 | + return wpautop(apply_filters('give_email_preview_template_tags', $message)); |
|
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | /** |
@@ -99,20 +99,20 @@ discard block |
||
| 99 | 99 | * @since 1.0 |
| 100 | 100 | * @return array|bool |
| 101 | 101 | */ |
| 102 | -add_filter( 'give_settings_emails', 'give_email_template_preview' ); |
|
| 102 | +add_filter('give_settings_emails', 'give_email_template_preview'); |
|
| 103 | 103 | |
| 104 | -function give_email_template_preview( $array ) { |
|
| 104 | +function give_email_template_preview($array) { |
|
| 105 | 105 | |
| 106 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 106 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 107 | 107 | return false; |
| 108 | 108 | } |
| 109 | 109 | $custom_field = array( |
| 110 | - 'name' => __( 'Preview Email', 'give' ), |
|
| 111 | - 'desc' => __( 'Click the buttons to preview emails.', 'give' ), |
|
| 110 | + 'name' => __('Preview Email', 'give'), |
|
| 111 | + 'desc' => __('Click the buttons to preview emails.', 'give'), |
|
| 112 | 112 | 'id' => 'give_email_preview_buttons', |
| 113 | 113 | 'type' => 'email_preview_buttons' |
| 114 | 114 | ); |
| 115 | - array_splice( $array, 5, 0, array( $custom_field ) ); |
|
| 115 | + array_splice($array, 5, 0, array($custom_field)); |
|
| 116 | 116 | |
| 117 | 117 | return $array; // splice in at position 3; |
| 118 | 118 | } |
@@ -128,11 +128,11 @@ discard block |
||
| 128 | 128 | function give_email_preview_buttons_callback() { |
| 129 | 129 | ob_start(); |
| 130 | 130 | ?> |
| 131 | - <a href="<?php echo esc_url( add_query_arg( array( 'give_action' => 'preview_email' ), home_url() ) ); ?>" class="button-secondary" target="_blank" title="<?php _e( 'Donation Receipt Preview', 'give' ); ?> "><?php _e( 'Preview Donation Receipt', 'give' ); ?></a> |
|
| 132 | - <a href="<?php echo wp_nonce_url( add_query_arg( array( |
|
| 131 | + <a href="<?php echo esc_url(add_query_arg(array('give_action' => 'preview_email'), home_url())); ?>" class="button-secondary" target="_blank" title="<?php _e('Donation Receipt Preview', 'give'); ?> "><?php _e('Preview Donation Receipt', 'give'); ?></a> |
|
| 132 | + <a href="<?php echo wp_nonce_url(add_query_arg(array( |
|
| 133 | 133 | 'give_action' => 'send_test_email', |
| 134 | 134 | 'give-message' => 'sent-test-email' |
| 135 | - ) ), 'give-test-email' ); ?>" title="<?php _e( 'This will send a demo donation receipt to the emails listed below.', 'give' ); ?>" class="button-secondary"><?php _e( 'Send Test Email', 'give' ); ?></a> |
|
| 135 | + )), 'give-test-email'); ?>" title="<?php _e('This will send a demo donation receipt to the emails listed below.', 'give'); ?>" class="button-secondary"><?php _e('Send Test Email', 'give'); ?></a> |
|
| 136 | 136 | <?php |
| 137 | 137 | echo ob_get_clean(); |
| 138 | 138 | } |
@@ -145,27 +145,27 @@ discard block |
||
| 145 | 145 | */ |
| 146 | 146 | function give_display_email_template_preview() { |
| 147 | 147 | |
| 148 | - if ( empty( $_GET['give_action'] ) ) { |
|
| 148 | + if (empty($_GET['give_action'])) { |
|
| 149 | 149 | return; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - if ( 'preview_email' !== $_GET['give_action'] ) { |
|
| 152 | + if ('preview_email' !== $_GET['give_action']) { |
|
| 153 | 153 | return; |
| 154 | 154 | } |
| 155 | 155 | |
| 156 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 156 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 157 | 157 | return; |
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - Give()->emails->heading = __( 'Donation Receipt', 'give' ); |
|
| 160 | + Give()->emails->heading = __('Donation Receipt', 'give'); |
|
| 161 | 161 | |
| 162 | - echo Give()->emails->build_email( give_email_preview_template_tags( give_get_email_body_content( 0, array() ) ) ); |
|
| 162 | + echo Give()->emails->build_email(give_email_preview_template_tags(give_get_email_body_content(0, array()))); |
|
| 163 | 163 | |
| 164 | 164 | exit; |
| 165 | 165 | |
| 166 | 166 | } |
| 167 | 167 | |
| 168 | -add_action( 'template_redirect', 'give_display_email_template_preview' ); |
|
| 168 | +add_action('template_redirect', 'give_display_email_template_preview'); |
|
| 169 | 169 | |
| 170 | 170 | /** |
| 171 | 171 | * Email Template Body |
@@ -177,19 +177,19 @@ discard block |
||
| 177 | 177 | * |
| 178 | 178 | * @return string $email_body Body of the email |
| 179 | 179 | */ |
| 180 | -function give_get_email_body_content( $payment_id = 0, $payment_data = array() ) { |
|
| 180 | +function give_get_email_body_content($payment_id = 0, $payment_data = array()) { |
|
| 181 | 181 | |
| 182 | 182 | global $give_options; |
| 183 | 183 | |
| 184 | 184 | $default_email_body = give_get_default_donation_receipt_email(); |
| 185 | 185 | |
| 186 | - $email = isset( $give_options['donation_receipt'] ) ? stripslashes( $give_options['donation_receipt'] ) : $default_email_body; |
|
| 186 | + $email = isset($give_options['donation_receipt']) ? stripslashes($give_options['donation_receipt']) : $default_email_body; |
|
| 187 | 187 | |
| 188 | - $email_body = wpautop( $email ); |
|
| 188 | + $email_body = wpautop($email); |
|
| 189 | 189 | |
| 190 | - $email_body = apply_filters( 'give_donation_receipt_' . Give()->emails->get_template(), $email_body, $payment_id, $payment_data ); |
|
| 190 | + $email_body = apply_filters('give_donation_receipt_'.Give()->emails->get_template(), $email_body, $payment_id, $payment_data); |
|
| 191 | 191 | |
| 192 | - return apply_filters( 'give_donation_receipt', $email_body, $payment_id, $payment_data ); |
|
| 192 | + return apply_filters('give_donation_receipt', $email_body, $payment_id, $payment_data); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | |
@@ -205,37 +205,37 @@ discard block |
||
| 205 | 205 | * |
| 206 | 206 | * @return string $email_body Body of the email |
| 207 | 207 | */ |
| 208 | -function give_get_donation_notification_body_content( $payment_id = 0, $payment_data = array() ) { |
|
| 208 | +function give_get_donation_notification_body_content($payment_id = 0, $payment_data = array()) { |
|
| 209 | 209 | global $give_options; |
| 210 | 210 | |
| 211 | - $user_info = maybe_unserialize( $payment_data['user_info'] ); |
|
| 212 | - $email = give_get_payment_user_email( $payment_id ); |
|
| 211 | + $user_info = maybe_unserialize($payment_data['user_info']); |
|
| 212 | + $email = give_get_payment_user_email($payment_id); |
|
| 213 | 213 | |
| 214 | - if ( isset( $user_info['id'] ) && $user_info['id'] > 0 ) { |
|
| 215 | - $user_data = get_userdata( $user_info['id'] ); |
|
| 214 | + if (isset($user_info['id']) && $user_info['id'] > 0) { |
|
| 215 | + $user_data = get_userdata($user_info['id']); |
|
| 216 | 216 | $name = $user_data->display_name; |
| 217 | - } elseif ( isset( $user_info['first_name'] ) && isset( $user_info['last_name'] ) ) { |
|
| 218 | - $name = $user_info['first_name'] . ' ' . $user_info['last_name']; |
|
| 217 | + } elseif (isset($user_info['first_name']) && isset($user_info['last_name'])) { |
|
| 218 | + $name = $user_info['first_name'].' '.$user_info['last_name']; |
|
| 219 | 219 | } else { |
| 220 | 220 | $name = $email; |
| 221 | 221 | } |
| 222 | 222 | |
| 223 | - $gateway = give_get_gateway_admin_label( get_post_meta( $payment_id, '_give_payment_gateway', true ) ); |
|
| 223 | + $gateway = give_get_gateway_admin_label(get_post_meta($payment_id, '_give_payment_gateway', true)); |
|
| 224 | 224 | |
| 225 | - $default_email_body = __( 'Hello', 'give' ) . "\n\n" . __( 'A donation has been made', 'give' ) . ".\n\n"; |
|
| 226 | - $default_email_body .= sprintf( __( '%s sold:', 'give' ), give_get_forms_label_plural() ) . "\n\n"; |
|
| 225 | + $default_email_body = __('Hello', 'give')."\n\n".__('A donation has been made', 'give').".\n\n"; |
|
| 226 | + $default_email_body .= sprintf(__('%s sold:', 'give'), give_get_forms_label_plural())."\n\n"; |
|
| 227 | 227 | |
| 228 | - $default_email_body .= __( 'Donor: ', 'give' ) . " " . html_entity_decode( $name, ENT_COMPAT, 'UTF-8' ) . "\n"; |
|
| 229 | - $default_email_body .= __( 'Amount: ', 'give' ) . " " . html_entity_decode( give_currency_filter( give_format_amount( give_get_payment_amount( $payment_id ) ) ), ENT_COMPAT, 'UTF-8' ) . "\n"; |
|
| 230 | - $default_email_body .= __( 'Payment Method: ', 'give' ) . " " . $gateway . "\n\n"; |
|
| 228 | + $default_email_body .= __('Donor: ', 'give')." ".html_entity_decode($name, ENT_COMPAT, 'UTF-8')."\n"; |
|
| 229 | + $default_email_body .= __('Amount: ', 'give')." ".html_entity_decode(give_currency_filter(give_format_amount(give_get_payment_amount($payment_id))), ENT_COMPAT, 'UTF-8')."\n"; |
|
| 230 | + $default_email_body .= __('Payment Method: ', 'give')." ".$gateway."\n\n"; |
|
| 231 | 231 | |
| 232 | - $default_email_body .= __( 'Thank you', 'give' ); |
|
| 232 | + $default_email_body .= __('Thank you', 'give'); |
|
| 233 | 233 | |
| 234 | - $email = isset( $give_options['donation_notification'] ) ? stripslashes( $give_options['donation_notification'] ) : $default_email_body; |
|
| 234 | + $email = isset($give_options['donation_notification']) ? stripslashes($give_options['donation_notification']) : $default_email_body; |
|
| 235 | 235 | |
| 236 | - $email_body = give_do_email_tags( $email, $payment_id ); |
|
| 236 | + $email_body = give_do_email_tags($email, $payment_id); |
|
| 237 | 237 | |
| 238 | - return apply_filters( 'give_donation_notification', wpautop( $email_body ), $payment_id, $payment_data ); |
|
| 238 | + return apply_filters('give_donation_notification', wpautop($email_body), $payment_id, $payment_data); |
|
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | /** |
@@ -248,15 +248,15 @@ discard block |
||
| 248 | 248 | * @since 1.0 |
| 249 | 249 | */ |
| 250 | 250 | function give_render_receipt_in_browser() { |
| 251 | - if ( ! isset( $_GET['payment_key'] ) ) { |
|
| 252 | - wp_die( __( 'Missing donation payment key.', 'give' ), __( 'Error', 'give' ) ); |
|
| 251 | + if ( ! isset($_GET['payment_key'])) { |
|
| 252 | + wp_die(__('Missing donation payment key.', 'give'), __('Error', 'give')); |
|
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - $key = urlencode( $_GET['payment_key'] ); |
|
| 255 | + $key = urlencode($_GET['payment_key']); |
|
| 256 | 256 | |
| 257 | 257 | ob_start(); |
| 258 | 258 | //Disallows caching of the page |
| 259 | - header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); |
|
| 259 | + header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT"); |
|
| 260 | 260 | header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1 |
| 261 | 261 | header("Cache-Control: post-check=0, pre-check=0", false); |
| 262 | 262 | header("Pragma: no-cache"); // HTTP/1.0 |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | <!DOCTYPE html> |
| 266 | 266 | <html lang="en"> |
| 267 | 267 | <head> |
| 268 | - <title><?php _e( 'Donation Receipt', 'give' ); ?></title> |
|
| 268 | + <title><?php _e('Donation Receipt', 'give'); ?></title> |
|
| 269 | 269 | <meta charset="utf-8" /> |
| 270 | 270 | |
| 271 | 271 | <!-- Further disallowing of caching of this page --> |
@@ -279,12 +279,12 @@ discard block |
||
| 279 | 279 | |
| 280 | 280 | <?php wp_head(); ?> |
| 281 | 281 | </head> |
| 282 | - <body class="<?php echo apply_filters( 'give_receipt_page_body_class', 'give_receipt_page' ); ?>"> |
|
| 282 | + <body class="<?php echo apply_filters('give_receipt_page_body_class', 'give_receipt_page'); ?>"> |
|
| 283 | 283 | |
| 284 | 284 | <div id="give_receipt_wrapper"> |
| 285 | - <?php do_action( 'give_render_receipt_in_browser_before' ); ?> |
|
| 286 | - <?php echo do_shortcode( '[give_receipt payment_key=' . $key . ']' ); ?> |
|
| 287 | - <?php do_action( 'give_render_receipt_in_browser_after' ); ?> |
|
| 285 | + <?php do_action('give_render_receipt_in_browser_before'); ?> |
|
| 286 | + <?php echo do_shortcode('[give_receipt payment_key='.$key.']'); ?> |
|
| 287 | + <?php do_action('give_render_receipt_in_browser_after'); ?> |
|
| 288 | 288 | </div> |
| 289 | 289 | |
| 290 | 290 | <?php wp_footer(); ?> |
@@ -295,4 +295,4 @@ discard block |
||
| 295 | 295 | die(); |
| 296 | 296 | } |
| 297 | 297 | |
| 298 | -add_action( 'give_view_receipt', 'give_render_receipt_in_browser' ); |
|
| 298 | +add_action('give_view_receipt', 'give_render_receipt_in_browser'); |
|
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | * |
| 50 | 50 | * @since: 1.4 |
| 51 | 51 | * |
| 52 | - * @return bool |
|
| 52 | + * @return boolean|null |
|
| 53 | 53 | */ |
| 54 | 54 | function give_allow_sessions_for_sysinfo() { |
| 55 | 55 | if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) { |
@@ -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 | |
@@ -24,14 +24,14 @@ discard block |
||
| 24 | 24 | */ |
| 25 | 25 | function give_system_info_callback() { |
| 26 | 26 | |
| 27 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 27 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 28 | 28 | return; |
| 29 | 29 | } |
| 30 | 30 | ?> |
| 31 | 31 | <textarea readonly="readonly" onclick="this.focus(); this.select()" id="system-info-textarea" name="give-sysinfo" title="To copy the system info, click below then press Ctrl + C (PC) or Cmd + C (Mac)."><?php echo give_tools_sysinfo_get(); ?></textarea> |
| 32 | 32 | <p class="submit"> |
| 33 | 33 | <input type="hidden" name="give-action" value="download_sysinfo"/> |
| 34 | - <?php submit_button( 'Download System Info File', 'secondary', 'give-download-sysinfo', false ); ?> |
|
| 34 | + <?php submit_button('Download System Info File', 'secondary', 'give-download-sysinfo', false); ?> |
|
| 35 | 35 | </p> |
| 36 | 36 | <style> |
| 37 | 37 | .give_forms_page_give-settings .give-submit-wrap { |
@@ -52,12 +52,12 @@ discard block |
||
| 52 | 52 | * @return bool |
| 53 | 53 | */ |
| 54 | 54 | function give_allow_sessions_for_sysinfo() { |
| 55 | - if ( is_admin() && ( isset( $_GET['page'] ) && isset( $_GET['tab'] ) ) && ( $_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings' ) ) { |
|
| 55 | + if (is_admin() && (isset($_GET['page']) && isset($_GET['tab'])) && ($_GET['tab'] == 'system_info' && $_GET['page'] == 'give-settings')) { |
|
| 56 | 56 | return true; |
| 57 | 57 | } |
| 58 | 58 | } |
| 59 | 59 | |
| 60 | -add_filter( 'give_start_session', 'give_allow_sessions_for_sysinfo' ); |
|
| 60 | +add_filter('give_start_session', 'give_allow_sessions_for_sysinfo'); |
|
| 61 | 61 | |
| 62 | 62 | |
| 63 | 63 | /** |
@@ -72,63 +72,63 @@ discard block |
||
| 72 | 72 | function give_tools_sysinfo_get() { |
| 73 | 73 | global $wpdb, $give_options; |
| 74 | 74 | |
| 75 | - if ( ! class_exists( 'Browser' ) ) { |
|
| 76 | - require_once GIVE_PLUGIN_DIR . 'includes/libraries/browser.php'; |
|
| 75 | + if ( ! class_exists('Browser')) { |
|
| 76 | + require_once GIVE_PLUGIN_DIR.'includes/libraries/browser.php'; |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | $browser = new Browser(); |
| 80 | 80 | |
| 81 | 81 | // Get theme info |
| 82 | - if ( get_bloginfo( 'version' ) < '3.4' ) { |
|
| 83 | - $theme_data = wp_get_theme( get_stylesheet_directory() . '/style.css' ); |
|
| 84 | - $theme = $theme_data['Name'] . ' ' . $theme_data['Version']; |
|
| 82 | + if (get_bloginfo('version') < '3.4') { |
|
| 83 | + $theme_data = wp_get_theme(get_stylesheet_directory().'/style.css'); |
|
| 84 | + $theme = $theme_data['Name'].' '.$theme_data['Version']; |
|
| 85 | 85 | } else { |
| 86 | 86 | $theme_data = wp_get_theme(); |
| 87 | - $theme = $theme_data->Name . ' ' . $theme_data->Version; |
|
| 87 | + $theme = $theme_data->Name.' '.$theme_data->Version; |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | // Try to identify the hosting provider |
| 91 | 91 | $host = give_get_host(); |
| 92 | 92 | |
| 93 | - $return = '### Begin System Info ###' . "\n\n"; |
|
| 93 | + $return = '### Begin System Info ###'."\n\n"; |
|
| 94 | 94 | |
| 95 | 95 | // Start with the basics... |
| 96 | - $return .= '-- Site Info' . "\n\n"; |
|
| 97 | - $return .= 'Site URL: ' . site_url() . "\n"; |
|
| 98 | - $return .= 'Home URL: ' . home_url() . "\n"; |
|
| 99 | - $return .= 'Multisite: ' . ( is_multisite() ? 'Yes' : 'No' ) . "\n"; |
|
| 96 | + $return .= '-- Site Info'."\n\n"; |
|
| 97 | + $return .= 'Site URL: '.site_url()."\n"; |
|
| 98 | + $return .= 'Home URL: '.home_url()."\n"; |
|
| 99 | + $return .= 'Multisite: '.(is_multisite() ? 'Yes' : 'No')."\n"; |
|
| 100 | 100 | |
| 101 | - $return = apply_filters( 'give_sysinfo_after_site_info', $return ); |
|
| 101 | + $return = apply_filters('give_sysinfo_after_site_info', $return); |
|
| 102 | 102 | |
| 103 | 103 | // Can we determine the site's host? |
| 104 | - if ( $host ) { |
|
| 105 | - $return .= "\n" . '-- Hosting Provider' . "\n\n"; |
|
| 106 | - $return .= 'Host: ' . $host . "\n"; |
|
| 104 | + if ($host) { |
|
| 105 | + $return .= "\n".'-- Hosting Provider'."\n\n"; |
|
| 106 | + $return .= 'Host: '.$host."\n"; |
|
| 107 | 107 | |
| 108 | - $return = apply_filters( 'give_sysinfo_after_host_info', $return ); |
|
| 108 | + $return = apply_filters('give_sysinfo_after_host_info', $return); |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | // The local users' browser information, handled by the Browser class |
| 112 | - $return .= "\n" . '-- User Browser' . "\n\n"; |
|
| 112 | + $return .= "\n".'-- User Browser'."\n\n"; |
|
| 113 | 113 | $return .= $browser; |
| 114 | 114 | |
| 115 | - $return = apply_filters( 'give_sysinfo_after_user_browser', $return ); |
|
| 115 | + $return = apply_filters('give_sysinfo_after_user_browser', $return); |
|
| 116 | 116 | |
| 117 | 117 | // WordPress configuration |
| 118 | - $return .= "\n" . '-- WordPress Configuration' . "\n\n"; |
|
| 119 | - $return .= 'Version: ' . get_bloginfo( 'version' ) . "\n"; |
|
| 120 | - $return .= 'Language: ' . ( defined( 'WPLANG' ) && WPLANG ? WPLANG : 'en_US' ) . "\n"; |
|
| 121 | - $return .= 'Permalink Structure: ' . ( get_option( 'permalink_structure' ) ? get_option( 'permalink_structure' ) : 'Default' ) . "\n"; |
|
| 122 | - $return .= 'Active Theme: ' . $theme . "\n"; |
|
| 123 | - $return .= 'Show On Front: ' . get_option( 'show_on_front' ) . "\n"; |
|
| 118 | + $return .= "\n".'-- WordPress Configuration'."\n\n"; |
|
| 119 | + $return .= 'Version: '.get_bloginfo('version')."\n"; |
|
| 120 | + $return .= 'Language: '.(defined('WPLANG') && WPLANG ? WPLANG : 'en_US')."\n"; |
|
| 121 | + $return .= 'Permalink Structure: '.(get_option('permalink_structure') ? get_option('permalink_structure') : 'Default')."\n"; |
|
| 122 | + $return .= 'Active Theme: '.$theme."\n"; |
|
| 123 | + $return .= 'Show On Front: '.get_option('show_on_front')."\n"; |
|
| 124 | 124 | |
| 125 | 125 | // Only show page specs if frontpage is set to 'page' |
| 126 | - if ( get_option( 'show_on_front' ) == 'page' ) { |
|
| 127 | - $front_page_id = get_option( 'page_on_front' ); |
|
| 128 | - $blog_page_id = get_option( 'page_for_posts' ); |
|
| 126 | + if (get_option('show_on_front') == 'page') { |
|
| 127 | + $front_page_id = get_option('page_on_front'); |
|
| 128 | + $blog_page_id = get_option('page_for_posts'); |
|
| 129 | 129 | |
| 130 | - $return .= 'Page On Front: ' . ( $front_page_id != 0 ? get_the_title( $front_page_id ) . ' (#' . $front_page_id . ')' : 'Unset' ) . "\n"; |
|
| 131 | - $return .= 'Page For Posts: ' . ( $blog_page_id != 0 ? get_the_title( $blog_page_id ) . ' (#' . $blog_page_id . ')' : 'Unset' ) . "\n"; |
|
| 130 | + $return .= 'Page On Front: '.($front_page_id != 0 ? get_the_title($front_page_id).' (#'.$front_page_id.')' : 'Unset')."\n"; |
|
| 131 | + $return .= 'Page For Posts: '.($blog_page_id != 0 ? get_the_title($blog_page_id).' (#'.$blog_page_id.')' : 'Unset')."\n"; |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | // Make sure wp_remote_post() is working |
@@ -137,205 +137,205 @@ discard block |
||
| 137 | 137 | $params = array( |
| 138 | 138 | 'sslverify' => false, |
| 139 | 139 | 'timeout' => 60, |
| 140 | - 'user-agent' => 'Give/' . GIVE_VERSION, |
|
| 140 | + 'user-agent' => 'Give/'.GIVE_VERSION, |
|
| 141 | 141 | 'body' => $request |
| 142 | 142 | ); |
| 143 | 143 | |
| 144 | - $response = wp_remote_post( 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 144 | + $response = wp_remote_post('https://www.paypal.com/cgi-bin/webscr', $params); |
|
| 145 | 145 | |
| 146 | - if ( ! is_wp_error( $response ) && $response['response']['code'] >= 200 && $response['response']['code'] < 300 ) { |
|
| 146 | + if ( ! is_wp_error($response) && $response['response']['code'] >= 200 && $response['response']['code'] < 300) { |
|
| 147 | 147 | $WP_REMOTE_POST = 'wp_remote_post() works'; |
| 148 | 148 | } else { |
| 149 | 149 | $WP_REMOTE_POST = 'wp_remote_post() does not work'; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - $return .= 'Remote Post: ' . $WP_REMOTE_POST . "\n"; |
|
| 153 | - $return .= 'Table Prefix: ' . 'Length: ' . strlen( $wpdb->prefix ) . ' Status: ' . ( strlen( $wpdb->prefix ) > 16 ? 'ERROR: Too long' : 'Acceptable' ) . "\n"; |
|
| 154 | - $return .= 'Admin AJAX: ' . ( give_test_ajax_works() ? 'Accessible' : 'Inaccessible' ) . "\n"; |
|
| 155 | - $return .= 'WP_DEBUG: ' . ( defined( 'WP_DEBUG' ) ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set' ) . "\n"; |
|
| 156 | - $return .= 'Memory Limit: ' . WP_MEMORY_LIMIT . "\n"; |
|
| 157 | - $return .= 'Registered Post Stati: ' . implode( ', ', get_post_stati() ) . "\n"; |
|
| 152 | + $return .= 'Remote Post: '.$WP_REMOTE_POST."\n"; |
|
| 153 | + $return .= 'Table Prefix: '.'Length: '.strlen($wpdb->prefix).' Status: '.(strlen($wpdb->prefix) > 16 ? 'ERROR: Too long' : 'Acceptable')."\n"; |
|
| 154 | + $return .= 'Admin AJAX: '.(give_test_ajax_works() ? 'Accessible' : 'Inaccessible')."\n"; |
|
| 155 | + $return .= 'WP_DEBUG: '.(defined('WP_DEBUG') ? WP_DEBUG ? 'Enabled' : 'Disabled' : 'Not set')."\n"; |
|
| 156 | + $return .= 'Memory Limit: '.WP_MEMORY_LIMIT."\n"; |
|
| 157 | + $return .= 'Registered Post Stati: '.implode(', ', get_post_stati())."\n"; |
|
| 158 | 158 | |
| 159 | - $return = apply_filters( 'give_sysinfo_after_wordpress_config', $return ); |
|
| 159 | + $return = apply_filters('give_sysinfo_after_wordpress_config', $return); |
|
| 160 | 160 | |
| 161 | 161 | // GIVE configuration |
| 162 | - $return .= "\n" . '-- Give Configuration' . "\n\n"; |
|
| 163 | - $return .= 'Version: ' . GIVE_VERSION . "\n"; |
|
| 164 | - $return .= 'Upgraded From: ' . get_option( 'give_version_upgraded_from', 'None' ) . "\n"; |
|
| 165 | - $return .= 'Test Mode: ' . ( give_is_test_mode() ? "Enabled\n" : "Disabled\n" ); |
|
| 166 | - $return .= 'Currency Code: ' . give_get_currency() . "\n"; |
|
| 167 | - $return .= 'Currency Position: ' . give_get_option( 'currency_position', 'before' ) . "\n"; |
|
| 168 | - $return .= 'Decimal Separator: ' . give_get_option( 'decimal_separator', '.' ) . "\n"; |
|
| 169 | - $return .= 'Thousands Separator: ' . give_get_option( 'thousands_separator', ',' ) . "\n"; |
|
| 162 | + $return .= "\n".'-- Give Configuration'."\n\n"; |
|
| 163 | + $return .= 'Version: '.GIVE_VERSION."\n"; |
|
| 164 | + $return .= 'Upgraded From: '.get_option('give_version_upgraded_from', 'None')."\n"; |
|
| 165 | + $return .= 'Test Mode: '.(give_is_test_mode() ? "Enabled\n" : "Disabled\n"); |
|
| 166 | + $return .= 'Currency Code: '.give_get_currency()."\n"; |
|
| 167 | + $return .= 'Currency Position: '.give_get_option('currency_position', 'before')."\n"; |
|
| 168 | + $return .= 'Decimal Separator: '.give_get_option('decimal_separator', '.')."\n"; |
|
| 169 | + $return .= 'Thousands Separator: '.give_get_option('thousands_separator', ',')."\n"; |
|
| 170 | 170 | |
| 171 | - $return = apply_filters( 'give_sysinfo_after_give_config', $return ); |
|
| 171 | + $return = apply_filters('give_sysinfo_after_give_config', $return); |
|
| 172 | 172 | |
| 173 | 173 | // GIVE pages |
| 174 | - $return .= "\n" . '-- Give Page Configuration' . "\n\n"; |
|
| 175 | - $return .= 'Success Page: ' . ( ! empty( $give_options['success_page'] ) ? get_permalink( $give_options['success_page'] ) . "\n" : "Unset\n" ); |
|
| 176 | - $return .= 'Failure Page: ' . ( ! empty( $give_options['failure_page'] ) ? get_permalink( $give_options['failure_page'] ) . "\n" : "Unset\n" ); |
|
| 177 | - $return .= 'Give Forms Slug: ' . ( defined( 'GIVE_SLUG' ) ? '/' . GIVE_SLUG . "\n" : "/donations\n" ); |
|
| 174 | + $return .= "\n".'-- Give Page Configuration'."\n\n"; |
|
| 175 | + $return .= 'Success Page: '.( ! empty($give_options['success_page']) ? get_permalink($give_options['success_page'])."\n" : "Unset\n"); |
|
| 176 | + $return .= 'Failure Page: '.( ! empty($give_options['failure_page']) ? get_permalink($give_options['failure_page'])."\n" : "Unset\n"); |
|
| 177 | + $return .= 'Give Forms Slug: '.(defined('GIVE_SLUG') ? '/'.GIVE_SLUG."\n" : "/donations\n"); |
|
| 178 | 178 | |
| 179 | - $return = apply_filters( 'give_sysinfo_after_give_pages', $return ); |
|
| 179 | + $return = apply_filters('give_sysinfo_after_give_pages', $return); |
|
| 180 | 180 | |
| 181 | 181 | // GIVE gateways |
| 182 | - $return .= "\n" . '-- Give Gateway Configuration' . "\n\n"; |
|
| 182 | + $return .= "\n".'-- Give Gateway Configuration'."\n\n"; |
|
| 183 | 183 | |
| 184 | 184 | $active_gateways = give_get_enabled_payment_gateways(); |
| 185 | - if ( $active_gateways ) { |
|
| 186 | - $default_gateway_is_active = give_is_gateway_active( give_get_default_gateway( null ) ); |
|
| 187 | - if ( $default_gateway_is_active ) { |
|
| 188 | - $default_gateway = give_get_default_gateway( null ); |
|
| 189 | - $default_gateway = $active_gateways[ $default_gateway ]['admin_label']; |
|
| 185 | + if ($active_gateways) { |
|
| 186 | + $default_gateway_is_active = give_is_gateway_active(give_get_default_gateway(null)); |
|
| 187 | + if ($default_gateway_is_active) { |
|
| 188 | + $default_gateway = give_get_default_gateway(null); |
|
| 189 | + $default_gateway = $active_gateways[$default_gateway]['admin_label']; |
|
| 190 | 190 | } else { |
| 191 | 191 | $default_gateway = 'Test Payment'; |
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | $gateways = array(); |
| 195 | - foreach ( $active_gateways as $gateway ) { |
|
| 195 | + foreach ($active_gateways as $gateway) { |
|
| 196 | 196 | $gateways[] = $gateway['admin_label']; |
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - $return .= 'Enabled Gateways: ' . implode( ', ', $gateways ) . "\n"; |
|
| 200 | - $return .= 'Default Gateway: ' . $default_gateway . "\n"; |
|
| 199 | + $return .= 'Enabled Gateways: '.implode(', ', $gateways)."\n"; |
|
| 200 | + $return .= 'Default Gateway: '.$default_gateway."\n"; |
|
| 201 | 201 | } else { |
| 202 | - $return .= 'Enabled Gateways: None' . "\n"; |
|
| 202 | + $return .= 'Enabled Gateways: None'."\n"; |
|
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - $return = apply_filters( 'give_sysinfo_after_give_gateways', $return ); |
|
| 205 | + $return = apply_filters('give_sysinfo_after_give_gateways', $return); |
|
| 206 | 206 | |
| 207 | 207 | // GIVE Templates |
| 208 | - $dir = get_stylesheet_directory() . '/give_templates/*'; |
|
| 209 | - if ( is_dir( $dir ) && ( count( glob( "$dir/*" ) ) !== 0 ) ) { |
|
| 210 | - $return .= "\n" . '-- Give Template Overrides' . "\n\n"; |
|
| 208 | + $dir = get_stylesheet_directory().'/give_templates/*'; |
|
| 209 | + if (is_dir($dir) && (count(glob("$dir/*")) !== 0)) { |
|
| 210 | + $return .= "\n".'-- Give Template Overrides'."\n\n"; |
|
| 211 | 211 | |
| 212 | - foreach ( glob( $dir ) as $file ) { |
|
| 213 | - $return .= 'Filename: ' . basename( $file ) . "\n"; |
|
| 212 | + foreach (glob($dir) as $file) { |
|
| 213 | + $return .= 'Filename: '.basename($file)."\n"; |
|
| 214 | 214 | } |
| 215 | 215 | |
| 216 | - $return = apply_filters( 'give_sysinfo_after_give_templates', $return ); |
|
| 216 | + $return = apply_filters('give_sysinfo_after_give_templates', $return); |
|
| 217 | 217 | } |
| 218 | 218 | |
| 219 | 219 | // Must-use plugins |
| 220 | 220 | $muplugins = get_mu_plugins(); |
| 221 | - if ( count( $muplugins > 0 ) ) { |
|
| 222 | - $return .= "\n" . '-- Must-Use Plugins' . "\n\n"; |
|
| 221 | + if (count($muplugins > 0)) { |
|
| 222 | + $return .= "\n".'-- Must-Use Plugins'."\n\n"; |
|
| 223 | 223 | |
| 224 | - foreach ( $muplugins as $plugin => $plugin_data ) { |
|
| 225 | - $return .= $plugin_data['Name'] . ': ' . $plugin_data['Version'] . "\n"; |
|
| 224 | + foreach ($muplugins as $plugin => $plugin_data) { |
|
| 225 | + $return .= $plugin_data['Name'].': '.$plugin_data['Version']."\n"; |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - $return = apply_filters( 'give_sysinfo_after_wordpress_mu_plugins', $return ); |
|
| 228 | + $return = apply_filters('give_sysinfo_after_wordpress_mu_plugins', $return); |
|
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | // WordPress active plugins |
| 232 | - $return .= "\n" . '-- WordPress Active Plugins' . "\n\n"; |
|
| 232 | + $return .= "\n".'-- WordPress Active Plugins'."\n\n"; |
|
| 233 | 233 | |
| 234 | 234 | $plugins = get_plugins(); |
| 235 | - $active_plugins = get_option( 'active_plugins', array() ); |
|
| 235 | + $active_plugins = get_option('active_plugins', array()); |
|
| 236 | 236 | |
| 237 | - foreach ( $plugins as $plugin_path => $plugin ) { |
|
| 238 | - if ( ! in_array( $plugin_path, $active_plugins ) ) { |
|
| 237 | + foreach ($plugins as $plugin_path => $plugin) { |
|
| 238 | + if ( ! in_array($plugin_path, $active_plugins)) { |
|
| 239 | 239 | continue; |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
| 242 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
| 243 | 243 | } |
| 244 | 244 | |
| 245 | - $return = apply_filters( 'give_sysinfo_after_wordpress_plugins', $return ); |
|
| 245 | + $return = apply_filters('give_sysinfo_after_wordpress_plugins', $return); |
|
| 246 | 246 | |
| 247 | 247 | // WordPress inactive plugins |
| 248 | - $return .= "\n" . '-- WordPress Inactive Plugins' . "\n\n"; |
|
| 248 | + $return .= "\n".'-- WordPress Inactive Plugins'."\n\n"; |
|
| 249 | 249 | |
| 250 | - foreach ( $plugins as $plugin_path => $plugin ) { |
|
| 251 | - if ( in_array( $plugin_path, $active_plugins ) ) { |
|
| 250 | + foreach ($plugins as $plugin_path => $plugin) { |
|
| 251 | + if (in_array($plugin_path, $active_plugins)) { |
|
| 252 | 252 | continue; |
| 253 | 253 | } |
| 254 | 254 | |
| 255 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
| 255 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | - $return = apply_filters( 'give_sysinfo_after_wordpress_plugins_inactive', $return ); |
|
| 258 | + $return = apply_filters('give_sysinfo_after_wordpress_plugins_inactive', $return); |
|
| 259 | 259 | |
| 260 | - if ( is_multisite() ) { |
|
| 260 | + if (is_multisite()) { |
|
| 261 | 261 | // WordPress Multisite active plugins |
| 262 | - $return .= "\n" . '-- Network Active Plugins' . "\n\n"; |
|
| 262 | + $return .= "\n".'-- Network Active Plugins'."\n\n"; |
|
| 263 | 263 | |
| 264 | 264 | $plugins = wp_get_active_network_plugins(); |
| 265 | - $active_plugins = get_site_option( 'active_sitewide_plugins', array() ); |
|
| 265 | + $active_plugins = get_site_option('active_sitewide_plugins', array()); |
|
| 266 | 266 | |
| 267 | - foreach ( $plugins as $plugin_path ) { |
|
| 268 | - $plugin_base = plugin_basename( $plugin_path ); |
|
| 267 | + foreach ($plugins as $plugin_path) { |
|
| 268 | + $plugin_base = plugin_basename($plugin_path); |
|
| 269 | 269 | |
| 270 | - if ( ! array_key_exists( $plugin_base, $active_plugins ) ) { |
|
| 270 | + if ( ! array_key_exists($plugin_base, $active_plugins)) { |
|
| 271 | 271 | continue; |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | - $plugin = get_plugin_data( $plugin_path ); |
|
| 275 | - $return .= $plugin['Name'] . ': ' . $plugin['Version'] . "\n"; |
|
| 274 | + $plugin = get_plugin_data($plugin_path); |
|
| 275 | + $return .= $plugin['Name'].': '.$plugin['Version']."\n"; |
|
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - $return = apply_filters( 'give_sysinfo_after_wordpress_ms_plugins', $return ); |
|
| 278 | + $return = apply_filters('give_sysinfo_after_wordpress_ms_plugins', $return); |
|
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | // Server configuration (really just versioning) |
| 282 | - $return .= "\n" . '-- Webserver Configuration' . "\n\n"; |
|
| 283 | - $return .= 'PHP Version: ' . PHP_VERSION . "\n"; |
|
| 284 | - $return .= 'MySQL Version: ' . $wpdb->db_version() . "\n"; |
|
| 285 | - $return .= 'Webserver Info: ' . $_SERVER['SERVER_SOFTWARE'] . "\n"; |
|
| 282 | + $return .= "\n".'-- Webserver Configuration'."\n\n"; |
|
| 283 | + $return .= 'PHP Version: '.PHP_VERSION."\n"; |
|
| 284 | + $return .= 'MySQL Version: '.$wpdb->db_version()."\n"; |
|
| 285 | + $return .= 'Webserver Info: '.$_SERVER['SERVER_SOFTWARE']."\n"; |
|
| 286 | 286 | |
| 287 | - $return = apply_filters( 'give_sysinfo_after_webserver_config', $return ); |
|
| 287 | + $return = apply_filters('give_sysinfo_after_webserver_config', $return); |
|
| 288 | 288 | |
| 289 | 289 | // PHP configs... now we're getting to the important stuff |
| 290 | - $return .= "\n" . '-- PHP Configuration' . "\n\n"; |
|
| 291 | - $return .= 'Safe Mode: ' . ( ini_get( 'safe_mode' ) ? 'Enabled' : 'Disabled' . "\n" ); |
|
| 292 | - $return .= 'Memory Limit: ' . ini_get( 'memory_limit' ) . "\n"; |
|
| 293 | - $return .= 'Upload Max Size: ' . ini_get( 'upload_max_filesize' ) . "\n"; |
|
| 294 | - $return .= 'Post Max Size: ' . ini_get( 'post_max_size' ) . "\n"; |
|
| 295 | - $return .= 'Upload Max Filesize: ' . ini_get( 'upload_max_filesize' ) . "\n"; |
|
| 296 | - $return .= 'Time Limit: ' . ini_get( 'max_execution_time' ) . "\n"; |
|
| 297 | - $return .= 'Max Input Vars: ' . ini_get( 'max_input_vars' ) . "\n"; |
|
| 298 | - $return .= 'URL-aware fopen: ' . ( ini_get( 'allow_url_fopen' ) ? 'On (' . ini_get( 'allow_url_fopen' ) . ')' : 'N/A' ) . "\n"; |
|
| 299 | - $return .= 'Display Errors: ' . ( ini_get( 'display_errors' ) ? 'On (' . ini_get( 'display_errors' ) . ')' : 'N/A' ) . "\n"; |
|
| 300 | - |
|
| 301 | - $return = apply_filters( 'give_sysinfo_after_php_config', $return ); |
|
| 290 | + $return .= "\n".'-- PHP Configuration'."\n\n"; |
|
| 291 | + $return .= 'Safe Mode: '.(ini_get('safe_mode') ? 'Enabled' : 'Disabled'."\n"); |
|
| 292 | + $return .= 'Memory Limit: '.ini_get('memory_limit')."\n"; |
|
| 293 | + $return .= 'Upload Max Size: '.ini_get('upload_max_filesize')."\n"; |
|
| 294 | + $return .= 'Post Max Size: '.ini_get('post_max_size')."\n"; |
|
| 295 | + $return .= 'Upload Max Filesize: '.ini_get('upload_max_filesize')."\n"; |
|
| 296 | + $return .= 'Time Limit: '.ini_get('max_execution_time')."\n"; |
|
| 297 | + $return .= 'Max Input Vars: '.ini_get('max_input_vars')."\n"; |
|
| 298 | + $return .= 'URL-aware fopen: '.(ini_get('allow_url_fopen') ? 'On ('.ini_get('allow_url_fopen').')' : 'N/A')."\n"; |
|
| 299 | + $return .= 'Display Errors: '.(ini_get('display_errors') ? 'On ('.ini_get('display_errors').')' : 'N/A')."\n"; |
|
| 300 | + |
|
| 301 | + $return = apply_filters('give_sysinfo_after_php_config', $return); |
|
| 302 | 302 | |
| 303 | 303 | // PHP extensions and such |
| 304 | - $return .= "\n" . '-- PHP Extensions' . "\n\n"; |
|
| 305 | - $return .= 'cURL: ' . ( function_exists( 'curl_init' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 304 | + $return .= "\n".'-- PHP Extensions'."\n\n"; |
|
| 305 | + $return .= 'cURL: '.(function_exists('curl_init') ? 'Supported' : 'Not Supported')."\n"; |
|
| 306 | 306 | |
| 307 | 307 | //cURL version |
| 308 | - if ( function_exists( 'curl_init' ) && function_exists( 'curl_version' ) ) { |
|
| 308 | + if (function_exists('curl_init') && function_exists('curl_version')) { |
|
| 309 | 309 | $curl_values = curl_version(); |
| 310 | - $return .= 'cURL Version: ' . $curl_values["version"] . "\n"; |
|
| 310 | + $return .= 'cURL Version: '.$curl_values["version"]."\n"; |
|
| 311 | 311 | } |
| 312 | - $return .= 'zlib: ' . ( function_exists( 'gzcompress' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 313 | - $return .= 'GD: ' . ( ( extension_loaded( 'gd' ) && function_exists( 'gd_info' ) ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 314 | - $return .= 'fsockopen: ' . ( function_exists( 'fsockopen' ) ? 'Supported' : 'Not Supported' ) . "\n"; |
|
| 315 | - $return .= 'SOAP Client: ' . ( class_exists( 'SoapClient' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 316 | - $return .= 'Suhosin: ' . ( extension_loaded( 'suhosin' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 317 | - $return .= 'DOM: ' . ( extension_loaded( 'dom' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 318 | - $return .= 'MBString: ' . ( extension_loaded( 'mbstring' ) ? 'Installed' : 'Not Installed' ) . "\n"; |
|
| 312 | + $return .= 'zlib: '.(function_exists('gzcompress') ? 'Supported' : 'Not Supported')."\n"; |
|
| 313 | + $return .= 'GD: '.((extension_loaded('gd') && function_exists('gd_info')) ? 'Supported' : 'Not Supported')."\n"; |
|
| 314 | + $return .= 'fsockopen: '.(function_exists('fsockopen') ? 'Supported' : 'Not Supported')."\n"; |
|
| 315 | + $return .= 'SOAP Client: '.(class_exists('SoapClient') ? 'Installed' : 'Not Installed')."\n"; |
|
| 316 | + $return .= 'Suhosin: '.(extension_loaded('suhosin') ? 'Installed' : 'Not Installed')."\n"; |
|
| 317 | + $return .= 'DOM: '.(extension_loaded('dom') ? 'Installed' : 'Not Installed')."\n"; |
|
| 318 | + $return .= 'MBString: '.(extension_loaded('mbstring') ? 'Installed' : 'Not Installed')."\n"; |
|
| 319 | 319 | |
| 320 | - $return = apply_filters( 'give_sysinfo_after_php_ext', $return ); |
|
| 320 | + $return = apply_filters('give_sysinfo_after_php_ext', $return); |
|
| 321 | 321 | |
| 322 | 322 | // Session stuff |
| 323 | - $return .= "\n" . '-- Session Configuration' . "\n\n"; |
|
| 324 | - $return .= 'Give Use Sessions: ' . ( defined( 'GIVE_USE_PHP_SESSIONS' ) && GIVE_USE_PHP_SESSIONS ? 'Enforced' : ( Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled' ) ) . "\n"; |
|
| 325 | - $return .= 'Session: ' . ( isset( $_SESSION ) ? 'Enabled' : 'Disabled' ) . "\n"; |
|
| 323 | + $return .= "\n".'-- Session Configuration'."\n\n"; |
|
| 324 | + $return .= 'Give Use Sessions: '.(defined('GIVE_USE_PHP_SESSIONS') && GIVE_USE_PHP_SESSIONS ? 'Enforced' : (Give()->session->use_php_sessions() ? 'Enabled' : 'Disabled'))."\n"; |
|
| 325 | + $return .= 'Session: '.(isset($_SESSION) ? 'Enabled' : 'Disabled')."\n"; |
|
| 326 | 326 | |
| 327 | 327 | // The rest of this is only relevant is session is enabled |
| 328 | - if ( isset( $_SESSION ) ) { |
|
| 329 | - $return .= 'Session Name: ' . esc_html( ini_get( 'session.name' ) ) . "\n"; |
|
| 330 | - $return .= 'Cookie Path: ' . esc_html( ini_get( 'session.cookie_path' ) ) . "\n"; |
|
| 331 | - $return .= 'Save Path: ' . esc_html( ini_get( 'session.save_path' ) ) . "\n"; |
|
| 332 | - $return .= 'Use Cookies: ' . ( ini_get( 'session.use_cookies' ) ? 'On' : 'Off' ) . "\n"; |
|
| 333 | - $return .= 'Use Only Cookies: ' . ( ini_get( 'session.use_only_cookies' ) ? 'On' : 'Off' ) . "\n"; |
|
| 328 | + if (isset($_SESSION)) { |
|
| 329 | + $return .= 'Session Name: '.esc_html(ini_get('session.name'))."\n"; |
|
| 330 | + $return .= 'Cookie Path: '.esc_html(ini_get('session.cookie_path'))."\n"; |
|
| 331 | + $return .= 'Save Path: '.esc_html(ini_get('session.save_path'))."\n"; |
|
| 332 | + $return .= 'Use Cookies: '.(ini_get('session.use_cookies') ? 'On' : 'Off')."\n"; |
|
| 333 | + $return .= 'Use Only Cookies: '.(ini_get('session.use_only_cookies') ? 'On' : 'Off')."\n"; |
|
| 334 | 334 | } |
| 335 | 335 | |
| 336 | - $return = apply_filters( 'give_sysinfo_after_session_config', $return ); |
|
| 336 | + $return = apply_filters('give_sysinfo_after_session_config', $return); |
|
| 337 | 337 | |
| 338 | - $return .= "\n" . '### End System Info ###'; |
|
| 338 | + $return .= "\n".'### End System Info ###'; |
|
| 339 | 339 | |
| 340 | 340 | return $return; |
| 341 | 341 | } |
@@ -349,17 +349,17 @@ discard block |
||
| 349 | 349 | */ |
| 350 | 350 | function give_tools_sysinfo_download() { |
| 351 | 351 | |
| 352 | - if ( ! current_user_can( 'manage_give_settings' ) ) { |
|
| 352 | + if ( ! current_user_can('manage_give_settings')) { |
|
| 353 | 353 | return; |
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | nocache_headers(); |
| 357 | 357 | |
| 358 | - header( 'Content-Type: text/plain' ); |
|
| 359 | - header( 'Content-Disposition: attachment; filename="give-system-info.txt"' ); |
|
| 358 | + header('Content-Type: text/plain'); |
|
| 359 | + header('Content-Disposition: attachment; filename="give-system-info.txt"'); |
|
| 360 | 360 | |
| 361 | - echo wp_strip_all_tags( $_POST['give-sysinfo'] ); |
|
| 361 | + echo wp_strip_all_tags($_POST['give-sysinfo']); |
|
| 362 | 362 | give_die(); |
| 363 | 363 | } |
| 364 | 364 | |
| 365 | -add_action( 'give_download_sysinfo', 'give_tools_sysinfo_download' ); |
|
| 366 | 365 | \ No newline at end of file |
| 366 | +add_action('give_download_sysinfo', 'give_tools_sysinfo_download'); |
|
| 367 | 367 | \ No newline at end of file |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | * @since 1.4 |
| 11 | 11 | */ |
| 12 | 12 | |
| 13 | -defined( 'ABSPATH' ) or exit; |
|
| 13 | +defined('ABSPATH') or exit; |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * Class Give_Email_Access |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | function __construct() { |
| 31 | 31 | |
| 32 | 32 | // get it started |
| 33 | - add_action( 'init', array( $this, 'init' ) ); |
|
| 33 | + add_action('init', array($this, 'init')); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | |
@@ -39,30 +39,30 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | function init() { |
| 41 | 41 | |
| 42 | - $is_enabled = give_get_option( 'email_access' ); |
|
| 42 | + $is_enabled = give_get_option('email_access'); |
|
| 43 | 43 | |
| 44 | 44 | //Non-logged in users only |
| 45 | - if ( is_user_logged_in() || $is_enabled !== 'on' || is_admin() ) { |
|
| 45 | + if (is_user_logged_in() || $is_enabled !== 'on' || is_admin()) { |
|
| 46 | 46 | return; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | //Are db columns setup? |
| 50 | - $is_setup = give_get_option( 'email_access_installed' ); |
|
| 51 | - if ( empty( $is_setup ) ) { |
|
| 50 | + $is_setup = give_get_option('email_access_installed'); |
|
| 51 | + if (empty($is_setup)) { |
|
| 52 | 52 | $this->create_columns(); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | // Timeouts |
| 56 | - $this->verify_throttle = apply_filters( 'give_nl_verify_throttle', 300 ); |
|
| 57 | - $this->token_expiration = apply_filters( 'give_nl_token_expiration', 7200 ); |
|
| 56 | + $this->verify_throttle = apply_filters('give_nl_verify_throttle', 300); |
|
| 57 | + $this->token_expiration = apply_filters('give_nl_token_expiration', 7200); |
|
| 58 | 58 | |
| 59 | 59 | // Setup login |
| 60 | 60 | $this->check_for_token(); |
| 61 | 61 | |
| 62 | - if ( $this->token_exists ) { |
|
| 63 | - add_filter( 'give_can_view_receipt', '__return_true' ); |
|
| 64 | - add_filter( 'give_user_pending_verification', '__return_false' ); |
|
| 65 | - add_filter( 'give_get_users_purchases_args', array( $this, 'users_purchases_args' ) ); |
|
| 62 | + if ($this->token_exists) { |
|
| 63 | + add_filter('give_can_view_receipt', '__return_true'); |
|
| 64 | + add_filter('give_user_pending_verification', '__return_false'); |
|
| 65 | + add_filter('give_get_users_purchases_args', array($this, 'users_purchases_args')); |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | |
@@ -73,24 +73,24 @@ discard block |
||
| 73 | 73 | * |
| 74 | 74 | * @return bool |
| 75 | 75 | */ |
| 76 | - function can_send_email( $customer_id ) { |
|
| 76 | + function can_send_email($customer_id) { |
|
| 77 | 77 | global $wpdb; |
| 78 | 78 | |
| 79 | 79 | // Prevent multiple emails within X minutes |
| 80 | - $throttle = date( 'Y-m-d H:i:s', time() - $this->verify_throttle ); |
|
| 80 | + $throttle = date('Y-m-d H:i:s', time() - $this->verify_throttle); |
|
| 81 | 81 | |
| 82 | 82 | // Does a user row exist? |
| 83 | 83 | $exists = (int) $wpdb->get_var( |
| 84 | - $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id ) |
|
| 84 | + $wpdb->prepare("SELECT COUNT(*) FROM {$wpdb->prefix}give_customers WHERE id = %d", $customer_id) |
|
| 85 | 85 | ); |
| 86 | 86 | |
| 87 | - if ( 0 < $exists ) { |
|
| 87 | + if (0 < $exists) { |
|
| 88 | 88 | $row_id = (int) $wpdb->get_var( |
| 89 | - $wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle ) |
|
| 89 | + $wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d AND (verify_throttle < %s OR verify_key = '') LIMIT 1", $customer_id, $throttle) |
|
| 90 | 90 | ); |
| 91 | 91 | |
| 92 | - if ( $row_id < 1 ) { |
|
| 93 | - give_set_error( 'give_email_access_attempts_exhausted', __( 'Please wait a few minutes before requesting a new email access link.', 'give' ) ); |
|
| 92 | + if ($row_id < 1) { |
|
| 93 | + give_set_error('give_email_access_attempts_exhausted', __('Please wait a few minutes before requesting a new email access link.', 'give')); |
|
| 94 | 94 | |
| 95 | 95 | return false; |
| 96 | 96 | } |
@@ -106,38 +106,38 @@ discard block |
||
| 106 | 106 | * @param $customer_id |
| 107 | 107 | * @param $email |
| 108 | 108 | */ |
| 109 | - function send_email( $customer_id, $email ) { |
|
| 109 | + function send_email($customer_id, $email) { |
|
| 110 | 110 | |
| 111 | - $verify_key = wp_generate_password( 20, false ); |
|
| 111 | + $verify_key = wp_generate_password(20, false); |
|
| 112 | 112 | |
| 113 | 113 | // Generate a new verify key |
| 114 | - $this->set_verify_key( $customer_id, $email, $verify_key ); |
|
| 114 | + $this->set_verify_key($customer_id, $email, $verify_key); |
|
| 115 | 115 | |
| 116 | 116 | // Get the purchase history URL |
| 117 | - $page_id = give_get_option( 'history_page' ); |
|
| 117 | + $page_id = give_get_option('history_page'); |
|
| 118 | 118 | |
| 119 | - $access_url = add_query_arg( array( |
|
| 119 | + $access_url = add_query_arg(array( |
|
| 120 | 120 | 'give_nl' => $verify_key, |
| 121 | - ), get_permalink( $page_id ) ); |
|
| 121 | + ), get_permalink($page_id)); |
|
| 122 | 122 | |
| 123 | 123 | //Nice subject and message |
| 124 | - $subject = apply_filters( 'give_email_access_token_subject', sprintf( __( 'Your Access Link to %1$s', 'give' ), get_bloginfo( 'name' ) ) ); |
|
| 124 | + $subject = apply_filters('give_email_access_token_subject', sprintf(__('Your Access Link to %1$s', 'give'), get_bloginfo('name'))); |
|
| 125 | 125 | |
| 126 | - $message = __( 'You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give' ) . "\n\n"; |
|
| 126 | + $message = __('You or someone in your organization requested an access link be sent to this email address. This is a temporary access link for you to view your donation information. Click on the link below to view:', 'give')."\n\n"; |
|
| 127 | 127 | |
| 128 | - $message .= '<a href="' . esc_url( $access_url ) . '" target="_blank">' . __( 'Access My Donation Details', 'give' ) . ' »</a>'; |
|
| 128 | + $message .= '<a href="'.esc_url($access_url).'" target="_blank">'.__('Access My Donation Details', 'give').' »</a>'; |
|
| 129 | 129 | |
| 130 | 130 | $message .= "\n\n"; |
| 131 | 131 | $message .= "\n\n"; |
| 132 | - $message .= __( 'Sincerely,', 'give' ); |
|
| 133 | - $message .= "\n" . get_bloginfo( 'name' ) . "\n"; |
|
| 132 | + $message .= __('Sincerely,', 'give'); |
|
| 133 | + $message .= "\n".get_bloginfo('name')."\n"; |
|
| 134 | 134 | |
| 135 | - $message = apply_filters( 'give_email_access_token_message', $message ); |
|
| 135 | + $message = apply_filters('give_email_access_token_message', $message); |
|
| 136 | 136 | |
| 137 | 137 | |
| 138 | 138 | // Send the email |
| 139 | - Give()->emails->__set( 'heading', apply_filters( 'give_email_access_token_heading', __( 'Your Access Link', 'give' ) ) ); |
|
| 140 | - Give()->emails->send( $email, $subject, $message ); |
|
| 139 | + Give()->emails->__set('heading', apply_filters('give_email_access_token_heading', __('Your Access Link', 'give'))); |
|
| 140 | + Give()->emails->send($email, $subject, $message); |
|
| 141 | 141 | |
| 142 | 142 | } |
| 143 | 143 | |
@@ -147,24 +147,24 @@ discard block |
||
| 147 | 147 | */ |
| 148 | 148 | function check_for_token() { |
| 149 | 149 | |
| 150 | - $token = isset( $_GET['give_nl'] ) ? $_GET['give_nl'] : ''; |
|
| 150 | + $token = isset($_GET['give_nl']) ? $_GET['give_nl'] : ''; |
|
| 151 | 151 | |
| 152 | 152 | // Check for cookie |
| 153 | - if ( empty( $token ) ) { |
|
| 154 | - $token = isset( $_COOKIE['give_nl'] ) ? $_COOKIE['give_nl'] : ''; |
|
| 153 | + if (empty($token)) { |
|
| 154 | + $token = isset($_COOKIE['give_nl']) ? $_COOKIE['give_nl'] : ''; |
|
| 155 | 155 | } |
| 156 | 156 | |
| 157 | - if ( ! empty( $token ) ) { |
|
| 158 | - if ( ! $this->is_valid_token( $token ) ) { |
|
| 159 | - if ( ! $this->is_valid_verify_key( $token ) ) { |
|
| 157 | + if ( ! empty($token)) { |
|
| 158 | + if ( ! $this->is_valid_token($token)) { |
|
| 159 | + if ( ! $this->is_valid_verify_key($token)) { |
|
| 160 | 160 | return; |
| 161 | 161 | } |
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | $this->token_exists = true; |
| 165 | 165 | // Set cookie |
| 166 | - $lifetime = current_time( 'timestamp' ) + Give()->session->set_expiration_time(); |
|
| 167 | - @setcookie( 'give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false ); |
|
| 166 | + $lifetime = current_time('timestamp') + Give()->session->set_expiration_time(); |
|
| 167 | + @setcookie('give_nl', $token, $lifetime, COOKIEPATH, COOKIE_DOMAIN, false); |
|
| 168 | 168 | } |
| 169 | 169 | } |
| 170 | 170 | |
@@ -175,18 +175,18 @@ discard block |
||
| 175 | 175 | * |
| 176 | 176 | * @return bool |
| 177 | 177 | */ |
| 178 | - function is_valid_token( $token ) { |
|
| 178 | + function is_valid_token($token) { |
|
| 179 | 179 | |
| 180 | 180 | global $wpdb; |
| 181 | 181 | |
| 182 | 182 | // Make sure token isn't expired |
| 183 | - $expires = date( 'Y-m-d H:i:s', time() - $this->token_expiration ); |
|
| 183 | + $expires = date('Y-m-d H:i:s', time() - $this->token_expiration); |
|
| 184 | 184 | |
| 185 | 185 | $email = $wpdb->get_var( |
| 186 | - $wpdb->prepare( "SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires ) |
|
| 186 | + $wpdb->prepare("SELECT email FROM {$wpdb->prefix}give_customers WHERE token = %s AND verify_throttle >= %s LIMIT 1", $token, $expires) |
|
| 187 | 187 | ); |
| 188 | 188 | |
| 189 | - if ( ! empty( $email ) ) { |
|
| 189 | + if ( ! empty($email)) { |
|
| 190 | 190 | $this->token_email = $email; |
| 191 | 191 | $this->token = $token; |
| 192 | 192 | |
@@ -194,8 +194,8 @@ discard block |
||
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | //Set error only if email access form isn't being submitted |
| 197 | - if ( ! isset( $_POST['give_email'] ) && ! isset( $_POST['_wpnonce'] ) ) { |
|
| 198 | - give_set_error( 'give_email_token_expired', apply_filters( 'give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give' ) ); |
|
| 197 | + if ( ! isset($_POST['give_email']) && ! isset($_POST['_wpnonce'])) { |
|
| 198 | + give_set_error('give_email_token_expired', apply_filters('give_email_token_expired_message', 'Sorry, your access token has expired. Please request a new one below:', 'give')); |
|
| 199 | 199 | } |
| 200 | 200 | |
| 201 | 201 | |
@@ -210,25 +210,25 @@ discard block |
||
| 210 | 210 | * @param $email |
| 211 | 211 | * @param $verify_key |
| 212 | 212 | */ |
| 213 | - function set_verify_key( $customer_id, $email, $verify_key ) { |
|
| 213 | + function set_verify_key($customer_id, $email, $verify_key) { |
|
| 214 | 214 | global $wpdb; |
| 215 | 215 | |
| 216 | - $now = date( 'Y-m-d H:i:s' ); |
|
| 216 | + $now = date('Y-m-d H:i:s'); |
|
| 217 | 217 | |
| 218 | 218 | // Insert or update? |
| 219 | 219 | $row_id = (int) $wpdb->get_var( |
| 220 | - $wpdb->prepare( "SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id ) |
|
| 220 | + $wpdb->prepare("SELECT id FROM {$wpdb->prefix}give_customers WHERE id = %d LIMIT 1", $customer_id) |
|
| 221 | 221 | ); |
| 222 | 222 | |
| 223 | 223 | // Update |
| 224 | - if ( ! empty( $row_id ) ) { |
|
| 224 | + if ( ! empty($row_id)) { |
|
| 225 | 225 | $wpdb->query( |
| 226 | - $wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id ) |
|
| 226 | + $wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $verify_key, $now, $row_id) |
|
| 227 | 227 | ); |
| 228 | 228 | } // Insert |
| 229 | 229 | else { |
| 230 | 230 | $wpdb->query( |
| 231 | - $wpdb->prepare( "INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now ) |
|
| 231 | + $wpdb->prepare("INSERT INTO {$wpdb->prefix}give_customers ( verify_key, verify_throttle) VALUES (%s, %s)", $verify_key, $now) |
|
| 232 | 232 | ); |
| 233 | 233 | } |
| 234 | 234 | } |
@@ -240,20 +240,20 @@ discard block |
||
| 240 | 240 | * |
| 241 | 241 | * @return bool |
| 242 | 242 | */ |
| 243 | - function is_valid_verify_key( $token ) { |
|
| 243 | + function is_valid_verify_key($token) { |
|
| 244 | 244 | global $wpdb; |
| 245 | 245 | |
| 246 | 246 | // See if the verify_key exists |
| 247 | 247 | $row = $wpdb->get_row( |
| 248 | - $wpdb->prepare( "SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token ) |
|
| 248 | + $wpdb->prepare("SELECT id, email FROM {$wpdb->prefix}give_customers WHERE verify_key = %s LIMIT 1", $token) |
|
| 249 | 249 | ); |
| 250 | 250 | |
| 251 | - $now = date( 'Y-m-d H:i:s' ); |
|
| 251 | + $now = date('Y-m-d H:i:s'); |
|
| 252 | 252 | |
| 253 | 253 | // Set token |
| 254 | - if ( ! empty( $row ) ) { |
|
| 254 | + if ( ! empty($row)) { |
|
| 255 | 255 | $wpdb->query( |
| 256 | - $wpdb->prepare( "UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id ) |
|
| 256 | + $wpdb->prepare("UPDATE {$wpdb->prefix}give_customers SET verify_key = '', token = %s, verify_throttle = %s WHERE id = %d LIMIT 1", $token, $now, $row->id) |
|
| 257 | 257 | ); |
| 258 | 258 | |
| 259 | 259 | $this->token_email = $row->email; |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | * |
| 273 | 273 | * @return mixed |
| 274 | 274 | */ |
| 275 | - function users_purchases_args( $args ) { |
|
| 275 | + function users_purchases_args($args) { |
|
| 276 | 276 | $args['user'] = $this->token_email; |
| 277 | 277 | |
| 278 | 278 | return $args; |
@@ -289,11 +289,11 @@ discard block |
||
| 289 | 289 | global $wpdb; |
| 290 | 290 | |
| 291 | 291 | //Create columns in customers table |
| 292 | - $query = $wpdb->query( "ALTER TABLE {$wpdb->prefix}give_customers 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`" ); |
|
| 292 | + $query = $wpdb->query("ALTER TABLE {$wpdb->prefix}give_customers 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`"); |
|
| 293 | 293 | |
| 294 | 294 | //Columns added properly |
| 295 | - if ( $query ) { |
|
| 296 | - give_update_option( 'email_access_installed', 1 ); |
|
| 295 | + if ($query) { |
|
| 296 | + give_update_option('email_access_installed', 1); |
|
| 297 | 297 | } |
| 298 | 298 | |
| 299 | 299 | } |
@@ -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 | /** |
@@ -45,11 +45,11 @@ discard block |
||
| 45 | 45 | global $status, $page; |
| 46 | 46 | |
| 47 | 47 | // Set parent defaults |
| 48 | - parent::__construct( array( |
|
| 49 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 50 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 48 | + parent::__construct(array( |
|
| 49 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 50 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 51 | 51 | 'ajax' => false // Does this table support ajax? |
| 52 | - ) ); |
|
| 52 | + )); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -63,14 +63,14 @@ discard block |
||
| 63 | 63 | * |
| 64 | 64 | * @return string Column Name |
| 65 | 65 | */ |
| 66 | - public function column_default( $item, $column_name ) { |
|
| 67 | - switch ( $column_name ) { |
|
| 66 | + public function column_default($item, $column_name) { |
|
| 67 | + switch ($column_name) { |
|
| 68 | 68 | case 'ID' : |
| 69 | 69 | return $item['ID_label']; |
| 70 | 70 | case 'error' : |
| 71 | - return get_the_title( $item['ID'] ) ? get_the_title( $item['ID'] ) : __( 'Payment Error', 'give' ); |
|
| 71 | + return get_the_title($item['ID']) ? get_the_title($item['ID']) : __('Payment Error', 'give'); |
|
| 72 | 72 | default: |
| 73 | - return $item[ $column_name ]; |
|
| 73 | + return $item[$column_name]; |
|
| 74 | 74 | } |
| 75 | 75 | } |
| 76 | 76 | |
@@ -84,29 +84,29 @@ discard block |
||
| 84 | 84 | * |
| 85 | 85 | * @return void |
| 86 | 86 | */ |
| 87 | - public function column_message( $item ) { |
|
| 87 | + public function column_message($item) { |
|
| 88 | 88 | |
| 89 | 89 | ?> |
| 90 | - <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e( 'View Log Message', 'give' ); ?> "><?php _e( 'View Log Message', 'give' ); ?></a> |
|
| 90 | + <a href="#TB_inline?width=640&inlineId=log-message-<?php echo $item['ID']; ?>" class="thickbox" title="<?php _e('View Log Message', 'give'); ?> "><?php _e('View Log Message', 'give'); ?></a> |
|
| 91 | 91 | <div id="log-message-<?php echo $item['ID']; ?>" style="display:none;"> |
| 92 | 92 | <?php |
| 93 | 93 | |
| 94 | - $log_message = get_post_field( 'post_content', $item['ID'] ); |
|
| 94 | + $log_message = get_post_field('post_content', $item['ID']); |
|
| 95 | 95 | |
| 96 | - $serialized = strpos( $log_message, '{"' ); |
|
| 96 | + $serialized = strpos($log_message, '{"'); |
|
| 97 | 97 | |
| 98 | 98 | // Check to see if the log message contains serialized information |
| 99 | - if ( $serialized !== false ) { |
|
| 100 | - $length = strlen( $log_message ) - $serialized; |
|
| 101 | - $intro = substr( $log_message, 0, - $length ); |
|
| 102 | - $data = substr( $log_message, $serialized, strlen( $log_message ) - 1 ); |
|
| 99 | + if ($serialized !== false) { |
|
| 100 | + $length = strlen($log_message) - $serialized; |
|
| 101 | + $intro = substr($log_message, 0, - $length); |
|
| 102 | + $data = substr($log_message, $serialized, strlen($log_message) - 1); |
|
| 103 | 103 | |
| 104 | - echo wpautop( $intro ); |
|
| 105 | - echo wpautop( __( '<strong>Log data:</strong>', 'give' ) ); |
|
| 106 | - echo '<div style="word-wrap: break-word;">' . wpautop( $data ) . '</div>'; |
|
| 104 | + echo wpautop($intro); |
|
| 105 | + echo wpautop(__('<strong>Log data:</strong>', 'give')); |
|
| 106 | + echo '<div style="word-wrap: break-word;">'.wpautop($data).'</div>'; |
|
| 107 | 107 | } else { |
| 108 | 108 | // No serialized data found |
| 109 | - echo wpautop( $log_message ); |
|
| 109 | + echo wpautop($log_message); |
|
| 110 | 110 | } |
| 111 | 111 | ?> |
| 112 | 112 | </div> |
@@ -122,12 +122,12 @@ discard block |
||
| 122 | 122 | */ |
| 123 | 123 | public function get_columns() { |
| 124 | 124 | $columns = array( |
| 125 | - 'ID' => __( 'Log ID', 'give' ), |
|
| 126 | - 'payment_id' => __( 'Payment ID', 'give' ), |
|
| 127 | - 'error' => __( 'Error', 'give' ), |
|
| 128 | - 'message' => __( 'Error Message', 'give' ), |
|
| 129 | - 'gateway' => __( 'Gateway', 'give' ), |
|
| 130 | - 'date' => __( 'Date', 'give' ) |
|
| 125 | + 'ID' => __('Log ID', 'give'), |
|
| 126 | + 'payment_id' => __('Payment ID', 'give'), |
|
| 127 | + 'error' => __('Error', 'give'), |
|
| 128 | + 'message' => __('Error Message', 'give'), |
|
| 129 | + 'gateway' => __('Gateway', 'give'), |
|
| 130 | + 'date' => __('Date', 'give') |
|
| 131 | 131 | ); |
| 132 | 132 | |
| 133 | 133 | return $columns; |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | * @return int Current page number |
| 142 | 142 | */ |
| 143 | 143 | public function get_paged() { |
| 144 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 144 | + return isset($_GET['paged']) ? absint($_GET['paged']) : 1; |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | /** |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | * @since 1.0 |
| 152 | 152 | * @return void |
| 153 | 153 | */ |
| 154 | - public function bulk_actions( $which = '' ) { |
|
| 154 | + public function bulk_actions($which = '') { |
|
| 155 | 155 | give_log_views(); |
| 156 | 156 | } |
| 157 | 157 | |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | global $give_logs; |
| 168 | 168 | |
| 169 | 169 | // Prevent the queries from getting cached. Without this there are occasional memory issues for some installs |
| 170 | - wp_suspend_cache_addition( true ); |
|
| 170 | + wp_suspend_cache_addition(true); |
|
| 171 | 171 | |
| 172 | 172 | $logs_data = array(); |
| 173 | 173 | $paged = $this->get_paged(); |
@@ -176,17 +176,17 @@ discard block |
||
| 176 | 176 | 'paged' => $paged |
| 177 | 177 | ); |
| 178 | 178 | |
| 179 | - $logs = $give_logs->get_connected_logs( $log_query ); |
|
| 179 | + $logs = $give_logs->get_connected_logs($log_query); |
|
| 180 | 180 | |
| 181 | - if ( $logs ) { |
|
| 182 | - foreach ( $logs as $log ) { |
|
| 181 | + if ($logs) { |
|
| 182 | + foreach ($logs as $log) { |
|
| 183 | 183 | |
| 184 | 184 | $logs_data[] = array( |
| 185 | 185 | 'ID' => $log->ID, |
| 186 | - 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>' . $log->ID . '</span>', |
|
| 186 | + 'ID_label' => '<span class=\'give-item-label give-item-label-gray\'>'.$log->ID.'</span>', |
|
| 187 | 187 | 'payment_id' => $log->post_parent, |
| 188 | 188 | 'error' => 'error', |
| 189 | - 'gateway' => give_get_payment_gateway( $log->post_parent ), |
|
| 189 | + 'gateway' => give_get_payment_gateway($log->post_parent), |
|
| 190 | 190 | 'date' => $log->post_date |
| 191 | 191 | ); |
| 192 | 192 | } |
@@ -207,19 +207,19 @@ discard block |
||
| 207 | 207 | * |
| 208 | 208 | * @param string $which |
| 209 | 209 | */ |
| 210 | - protected function display_tablenav( $which ) { |
|
| 211 | - if ( 'top' === $which ) { |
|
| 212 | - wp_nonce_field( 'bulk-' . $this->_args['plural'] ); |
|
| 210 | + protected function display_tablenav($which) { |
|
| 211 | + if ('top' === $which) { |
|
| 212 | + wp_nonce_field('bulk-'.$this->_args['plural']); |
|
| 213 | 213 | } |
| 214 | 214 | ?> |
| 215 | - <div class="tablenav <?php echo esc_attr( $which ); ?>"> |
|
| 215 | + <div class="tablenav <?php echo esc_attr($which); ?>"> |
|
| 216 | 216 | |
| 217 | 217 | <div class="alignleft actions bulkactions"> |
| 218 | - <?php $this->bulk_actions( $which ); ?> |
|
| 218 | + <?php $this->bulk_actions($which); ?> |
|
| 219 | 219 | </div> |
| 220 | 220 | <?php |
| 221 | - $this->extra_tablenav( $which ); |
|
| 222 | - $this->pagination( $which ); |
|
| 221 | + $this->extra_tablenav($which); |
|
| 222 | + $this->pagination($which); |
|
| 223 | 223 | ?> |
| 224 | 224 | |
| 225 | 225 | <br class="clear"/> |
@@ -246,15 +246,15 @@ discard block |
||
| 246 | 246 | $columns = $this->get_columns(); |
| 247 | 247 | $hidden = array(); // No hidden columns |
| 248 | 248 | $sortable = $this->get_sortable_columns(); |
| 249 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 249 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
| 250 | 250 | $current_page = $this->get_pagenum(); |
| 251 | 251 | $this->items = $this->get_logs(); |
| 252 | - $total_items = $give_logs->get_log_count( 0, 'gateway_error' ); |
|
| 252 | + $total_items = $give_logs->get_log_count(0, 'gateway_error'); |
|
| 253 | 253 | |
| 254 | - $this->set_pagination_args( array( |
|
| 254 | + $this->set_pagination_args(array( |
|
| 255 | 255 | 'total_items' => $total_items, |
| 256 | 256 | 'per_page' => $this->per_page, |
| 257 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
| 257 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
| 258 | 258 | ) |
| 259 | 259 | ); |
| 260 | 260 | } |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | // Exit if accessed directly |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | * @return void |
| 24 | 24 | */ |
| 25 | 25 | function give_logs_view_sales() { |
| 26 | - include( dirname( __FILE__ ) . '/class-sales-logs-list-table.php' ); |
|
| 26 | + include(dirname(__FILE__).'/class-sales-logs-list-table.php'); |
|
| 27 | 27 | |
| 28 | 28 | $logs_table = new Give_Sales_Log_Table(); |
| 29 | 29 | $logs_table->prepare_items(); |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | -add_action( 'give_logs_view_sales', 'give_logs_view_sales' ); |
|
| 34 | +add_action('give_logs_view_sales', 'give_logs_view_sales'); |
|
| 35 | 35 | |
| 36 | 36 | |
| 37 | 37 | /** |
@@ -43,14 +43,14 @@ discard block |
||
| 43 | 43 | * @return void |
| 44 | 44 | */ |
| 45 | 45 | function give_logs_view_gateway_errors() { |
| 46 | - include( dirname( __FILE__ ) . '/class-gateway-error-logs-list-table.php' ); |
|
| 46 | + include(dirname(__FILE__).'/class-gateway-error-logs-list-table.php'); |
|
| 47 | 47 | |
| 48 | 48 | $logs_table = new Give_Gateway_Error_Log_Table(); |
| 49 | 49 | $logs_table->prepare_items(); |
| 50 | 50 | $logs_table->display(); |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | -add_action( 'give_logs_view_gateway_errors', 'give_logs_view_gateway_errors' ); |
|
| 53 | +add_action('give_logs_view_gateway_errors', 'give_logs_view_gateway_errors'); |
|
| 54 | 54 | |
| 55 | 55 | /** |
| 56 | 56 | * API Request Logs |
@@ -62,28 +62,28 @@ discard block |
||
| 62 | 62 | * @return void |
| 63 | 63 | */ |
| 64 | 64 | function give_logs_view_api_requests() { |
| 65 | - include( dirname( __FILE__ ) . '/class-api-requests-logs-list-table.php' ); |
|
| 65 | + include(dirname(__FILE__).'/class-api-requests-logs-list-table.php'); |
|
| 66 | 66 | |
| 67 | 67 | $logs_table = new Give_API_Request_Log_Table(); |
| 68 | 68 | $logs_table->prepare_items(); |
| 69 | 69 | ?> |
| 70 | 70 | <div class="wrap"> |
| 71 | - <?php do_action( 'give_logs_api_requests_top' ); ?> |
|
| 72 | - <form id="give-logs-filter" method="get" action="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-reports&tab=logs' ); ?>"> |
|
| 71 | + <?php do_action('give_logs_api_requests_top'); ?> |
|
| 72 | + <form id="give-logs-filter" method="get" action="<?php echo admin_url('edit.php?post_type=give_forms&page=give-reports&tab=logs'); ?>"> |
|
| 73 | 73 | <?php |
| 74 | - $logs_table->search_box( __( 'Search', 'give' ), 'give-api-requests' ); |
|
| 74 | + $logs_table->search_box(__('Search', 'give'), 'give-api-requests'); |
|
| 75 | 75 | $logs_table->display(); |
| 76 | 76 | ?> |
| 77 | 77 | <input type="hidden" name="post_type" value="give_forms"/> |
| 78 | 78 | <input type="hidden" name="page" value="give-reports"/> |
| 79 | 79 | <input type="hidden" name="tab" value="logs"/> |
| 80 | 80 | </form> |
| 81 | - <?php do_action( 'give_logs_api_requests_bottom' ); ?> |
|
| 81 | + <?php do_action('give_logs_api_requests_bottom'); ?> |
|
| 82 | 82 | </div> |
| 83 | 83 | <?php |
| 84 | 84 | } |
| 85 | 85 | |
| 86 | -add_action( 'give_logs_view_api_requests', 'give_logs_view_api_requests' ); |
|
| 86 | +add_action('give_logs_view_api_requests', 'give_logs_view_api_requests'); |
|
| 87 | 87 | |
| 88 | 88 | |
| 89 | 89 | /** |
@@ -94,12 +94,12 @@ discard block |
||
| 94 | 94 | */ |
| 95 | 95 | function give_log_default_views() { |
| 96 | 96 | $views = array( |
| 97 | - 'sales' => __( 'Donations', 'give' ), |
|
| 98 | - 'gateway_errors' => __( 'Payment Errors', 'give' ), |
|
| 99 | - 'api_requests' => __( 'API Requests', 'give' ) |
|
| 97 | + 'sales' => __('Donations', 'give'), |
|
| 98 | + 'gateway_errors' => __('Payment Errors', 'give'), |
|
| 99 | + 'api_requests' => __('API Requests', 'give') |
|
| 100 | 100 | ); |
| 101 | 101 | |
| 102 | - $views = apply_filters( 'give_log_views', $views ); |
|
| 102 | + $views = apply_filters('give_log_views', $views); |
|
| 103 | 103 | |
| 104 | 104 | return $views; |
| 105 | 105 | } |
@@ -112,24 +112,24 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | function give_log_views() { |
| 114 | 114 | $views = give_log_default_views(); |
| 115 | - $current_view = isset( $_GET['view'] ) && array_key_exists( $_GET['view'], give_log_default_views() ) ? sanitize_text_field( $_GET['view'] ) : 'sales'; |
|
| 115 | + $current_view = isset($_GET['view']) && array_key_exists($_GET['view'], give_log_default_views()) ? sanitize_text_field($_GET['view']) : 'sales'; |
|
| 116 | 116 | ?> |
| 117 | 117 | <form id="give-logs-filter" method="get" action="edit.php"> |
| 118 | 118 | <select id="give-logs-view" name="view"> |
| 119 | 119 | <optgroup label="Log Type:"> |
| 120 | - <?php foreach ( $views as $view_id => $label ): ?> |
|
| 121 | - <option value="<?php echo esc_attr( $view_id ); ?>" <?php selected( $view_id, $current_view ); ?>><?php echo $label; ?></option> |
|
| 120 | + <?php foreach ($views as $view_id => $label): ?> |
|
| 121 | + <option value="<?php echo esc_attr($view_id); ?>" <?php selected($view_id, $current_view); ?>><?php echo $label; ?></option> |
|
| 122 | 122 | <?php endforeach; ?> |
| 123 | 123 | </optgroup> |
| 124 | 124 | </select> |
| 125 | 125 | |
| 126 | - <?php do_action( 'give_log_view_actions' ); ?> |
|
| 126 | + <?php do_action('give_log_view_actions'); ?> |
|
| 127 | 127 | |
| 128 | 128 | <input type="hidden" name="post_type" value="give_forms"/> |
| 129 | 129 | <input type="hidden" name="page" value="give-reports"/> |
| 130 | 130 | <input type="hidden" name="tab" value="logs"/> |
| 131 | 131 | |
| 132 | - <?php submit_button( __( 'Apply', 'give' ), 'secondary', 'submit', false ); ?> |
|
| 132 | + <?php submit_button(__('Apply', 'give'), 'secondary', 'submit', false); ?> |
|
| 133 | 133 | </form> |
| 134 | 134 | <?php |
| 135 | 135 | } |
| 136 | 136 | \ No newline at end of file |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | * @param int $user_id |
| 283 | 283 | * @param $old_user_data |
| 284 | 284 | * |
| 285 | - * @return bool |
|
| 285 | + * @return false|null |
|
| 286 | 286 | */ |
| 287 | 287 | public function update_customer_email_on_user_update( $user_id = 0, $old_user_data ) { |
| 288 | 288 | |
@@ -331,7 +331,7 @@ discard block |
||
| 331 | 331 | * @since 1.0 |
| 332 | 332 | * |
| 333 | 333 | * @param string $field id or email |
| 334 | - * @param mixed $value The Customer ID or email to search |
|
| 334 | + * @param integer $value The Customer ID or email to search |
|
| 335 | 335 | * |
| 336 | 336 | * @return mixed Upon success, an object of the customer. Upon failure, NULL |
| 337 | 337 | */ |
@@ -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 | |
@@ -33,11 +33,11 @@ discard block |
||
| 33 | 33 | |
| 34 | 34 | global $wpdb; |
| 35 | 35 | |
| 36 | - $this->table_name = $wpdb->prefix . 'give_customers'; |
|
| 36 | + $this->table_name = $wpdb->prefix.'give_customers'; |
|
| 37 | 37 | $this->primary_key = 'id'; |
| 38 | 38 | $this->version = '1.0'; |
| 39 | 39 | |
| 40 | - add_action( 'profile_update', array( $this, 'update_customer_email_on_user_update' ), 10, 2 ); |
|
| 40 | + add_action('profile_update', array($this, 'update_customer_email_on_user_update'), 10, 2); |
|
| 41 | 41 | |
| 42 | 42 | } |
| 43 | 43 | |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | 'purchase_value' => 0.00, |
| 77 | 77 | 'purchase_count' => 0, |
| 78 | 78 | 'notes' => '', |
| 79 | - 'date_created' => date( 'Y-m-d H:i:s' ), |
|
| 79 | + 'date_created' => date('Y-m-d H:i:s'), |
|
| 80 | 80 | ); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -86,40 +86,40 @@ discard block |
||
| 86 | 86 | * @access public |
| 87 | 87 | * @since 1.0 |
| 88 | 88 | */ |
| 89 | - public function add( $data = array() ) { |
|
| 89 | + public function add($data = array()) { |
|
| 90 | 90 | |
| 91 | 91 | $defaults = array( |
| 92 | 92 | 'payment_ids' => '' |
| 93 | 93 | ); |
| 94 | 94 | |
| 95 | - $args = wp_parse_args( $data, $defaults ); |
|
| 95 | + $args = wp_parse_args($data, $defaults); |
|
| 96 | 96 | |
| 97 | - if ( empty( $args['email'] ) ) { |
|
| 97 | + if (empty($args['email'])) { |
|
| 98 | 98 | return false; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - if ( ! empty( $args['payment_ids'] ) && is_array( $args['payment_ids'] ) ) { |
|
| 102 | - $args['payment_ids'] = implode( ',', array_unique( array_values( $args['payment_ids'] ) ) ); |
|
| 101 | + if ( ! empty($args['payment_ids']) && is_array($args['payment_ids'])) { |
|
| 102 | + $args['payment_ids'] = implode(',', array_unique(array_values($args['payment_ids']))); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - $customer = $this->get_customer_by( 'email', $args['email'] ); |
|
| 105 | + $customer = $this->get_customer_by('email', $args['email']); |
|
| 106 | 106 | |
| 107 | - if ( $customer ) { |
|
| 107 | + if ($customer) { |
|
| 108 | 108 | // update an existing customer |
| 109 | 109 | |
| 110 | 110 | // Update the payment IDs attached to the customer |
| 111 | - if ( ! empty( $args['payment_ids'] ) ) { |
|
| 111 | + if ( ! empty($args['payment_ids'])) { |
|
| 112 | 112 | |
| 113 | - if ( empty( $customer->payment_ids ) ) { |
|
| 113 | + if (empty($customer->payment_ids)) { |
|
| 114 | 114 | |
| 115 | 115 | $customer->payment_ids = $args['payment_ids']; |
| 116 | 116 | |
| 117 | 117 | } else { |
| 118 | 118 | |
| 119 | - $existing_ids = array_map( 'absint', explode( ',', $customer->payment_ids ) ); |
|
| 120 | - $payment_ids = array_map( 'absint', explode( ',', $args['payment_ids'] ) ); |
|
| 121 | - $payment_ids = array_merge( $payment_ids, $existing_ids ); |
|
| 122 | - $customer->payment_ids = implode( ',', array_unique( array_values( $payment_ids ) ) ); |
|
| 119 | + $existing_ids = array_map('absint', explode(',', $customer->payment_ids)); |
|
| 120 | + $payment_ids = array_map('absint', explode(',', $args['payment_ids'])); |
|
| 121 | + $payment_ids = array_merge($payment_ids, $existing_ids); |
|
| 122 | + $customer->payment_ids = implode(',', array_unique(array_values($payment_ids))); |
|
| 123 | 123 | |
| 124 | 124 | } |
| 125 | 125 | |
@@ -127,13 +127,13 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - $this->update( $customer->id, $args ); |
|
| 130 | + $this->update($customer->id, $args); |
|
| 131 | 131 | |
| 132 | 132 | return $customer->id; |
| 133 | 133 | |
| 134 | 134 | } else { |
| 135 | 135 | |
| 136 | - return $this->insert( $args, 'customer' ); |
|
| 136 | + return $this->insert($args, 'customer'); |
|
| 137 | 137 | |
| 138 | 138 | } |
| 139 | 139 | |
@@ -152,20 +152,20 @@ discard block |
||
| 152 | 152 | * |
| 153 | 153 | * @return bool|false|int |
| 154 | 154 | */ |
| 155 | - public function delete( $_id_or_email = false ) { |
|
| 155 | + public function delete($_id_or_email = false) { |
|
| 156 | 156 | |
| 157 | - if ( empty( $_id_or_email ) ) { |
|
| 157 | + if (empty($_id_or_email)) { |
|
| 158 | 158 | return false; |
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - $column = is_email( $_id_or_email ) ? 'email' : 'id'; |
|
| 162 | - $customer = $this->get_customer_by( $column, $_id_or_email ); |
|
| 161 | + $column = is_email($_id_or_email) ? 'email' : 'id'; |
|
| 162 | + $customer = $this->get_customer_by($column, $_id_or_email); |
|
| 163 | 163 | |
| 164 | - if ( $customer->id > 0 ) { |
|
| 164 | + if ($customer->id > 0) { |
|
| 165 | 165 | |
| 166 | 166 | global $wpdb; |
| 167 | 167 | |
| 168 | - return $wpdb->delete( $this->table_name, array( 'id' => $customer->id ), array( '%d' ) ); |
|
| 168 | + return $wpdb->delete($this->table_name, array('id' => $customer->id), array('%d')); |
|
| 169 | 169 | |
| 170 | 170 | } else { |
| 171 | 171 | return false; |
@@ -179,14 +179,14 @@ discard block |
||
| 179 | 179 | * @access public |
| 180 | 180 | * @since 1.0 |
| 181 | 181 | */ |
| 182 | - public function exists( $value = '', $field = 'email' ) { |
|
| 182 | + public function exists($value = '', $field = 'email') { |
|
| 183 | 183 | |
| 184 | 184 | $columns = $this->get_columns(); |
| 185 | - if ( ! array_key_exists( $field, $columns ) ) { |
|
| 185 | + if ( ! array_key_exists($field, $columns)) { |
|
| 186 | 186 | return false; |
| 187 | 187 | } |
| 188 | 188 | |
| 189 | - return (bool) $this->get_column_by( 'id', $field, $value ); |
|
| 189 | + return (bool) $this->get_column_by('id', $field, $value); |
|
| 190 | 190 | |
| 191 | 191 | } |
| 192 | 192 | |
@@ -196,16 +196,16 @@ discard block |
||
| 196 | 196 | * @access public |
| 197 | 197 | * @since 1.0 |
| 198 | 198 | */ |
| 199 | - public function attach_payment( $customer_id = 0, $payment_id = 0 ) { |
|
| 199 | + public function attach_payment($customer_id = 0, $payment_id = 0) { |
|
| 200 | 200 | |
| 201 | - $customer = new Give_Customer( $customer_id ); |
|
| 201 | + $customer = new Give_Customer($customer_id); |
|
| 202 | 202 | |
| 203 | - if ( empty( $customer->id ) ) { |
|
| 203 | + if (empty($customer->id)) { |
|
| 204 | 204 | return false; |
| 205 | 205 | } |
| 206 | 206 | |
| 207 | 207 | // Attach the payment, but don't increment stats, as this function previously did not |
| 208 | - return $customer->attach_payment( $payment_id, false ); |
|
| 208 | + return $customer->attach_payment($payment_id, false); |
|
| 209 | 209 | |
| 210 | 210 | } |
| 211 | 211 | |
@@ -215,16 +215,16 @@ discard block |
||
| 215 | 215 | * @access public |
| 216 | 216 | * @since 1.0 |
| 217 | 217 | */ |
| 218 | - public function remove_payment( $customer_id = 0, $payment_id = 0 ) { |
|
| 218 | + public function remove_payment($customer_id = 0, $payment_id = 0) { |
|
| 219 | 219 | |
| 220 | - $customer = new Give_Customer( $customer_id ); |
|
| 220 | + $customer = new Give_Customer($customer_id); |
|
| 221 | 221 | |
| 222 | - if ( ! $customer ) { |
|
| 222 | + if ( ! $customer) { |
|
| 223 | 223 | return false; |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | 226 | // Remove the payment, but don't decrease stats, as this function previously did not |
| 227 | - return $customer->remove_payment( $payment_id, false ); |
|
| 227 | + return $customer->remove_payment($payment_id, false); |
|
| 228 | 228 | |
| 229 | 229 | } |
| 230 | 230 | |
@@ -236,18 +236,18 @@ discard block |
||
| 236 | 236 | * |
| 237 | 237 | * @return bool |
| 238 | 238 | */ |
| 239 | - public function increment_stats( $customer_id = 0, $amount = 0.00 ) { |
|
| 239 | + public function increment_stats($customer_id = 0, $amount = 0.00) { |
|
| 240 | 240 | |
| 241 | - $customer = new Give_Customer( $customer_id ); |
|
| 241 | + $customer = new Give_Customer($customer_id); |
|
| 242 | 242 | |
| 243 | - if ( empty( $customer->id ) ) { |
|
| 243 | + if (empty($customer->id)) { |
|
| 244 | 244 | return false; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | $increased_count = $customer->increase_purchase_count(); |
| 248 | - $increased_value = $customer->increase_value( $amount ); |
|
| 248 | + $increased_value = $customer->increase_value($amount); |
|
| 249 | 249 | |
| 250 | - return ( $increased_count && $increased_value ) ? true : false; |
|
| 250 | + return ($increased_count && $increased_value) ? true : false; |
|
| 251 | 251 | |
| 252 | 252 | } |
| 253 | 253 | |
@@ -257,18 +257,18 @@ discard block |
||
| 257 | 257 | * @access public |
| 258 | 258 | * @since 1.0 |
| 259 | 259 | */ |
| 260 | - public function decrement_stats( $customer_id = 0, $amount = 0.00 ) { |
|
| 260 | + public function decrement_stats($customer_id = 0, $amount = 0.00) { |
|
| 261 | 261 | |
| 262 | - $customer = new Give_Customer( $customer_id ); |
|
| 262 | + $customer = new Give_Customer($customer_id); |
|
| 263 | 263 | |
| 264 | - if ( ! $customer ) { |
|
| 264 | + if ( ! $customer) { |
|
| 265 | 265 | return false; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | 268 | $decreased_count = $customer->decrease_purchase_count(); |
| 269 | - $decreased_value = $customer->decrease_value( $amount ); |
|
| 269 | + $decreased_value = $customer->decrease_value($amount); |
|
| 270 | 270 | |
| 271 | - return ( $decreased_count && $decreased_value ) ? true : false; |
|
| 271 | + return ($decreased_count && $decreased_value) ? true : false; |
|
| 272 | 272 | |
| 273 | 273 | } |
| 274 | 274 | |
@@ -284,37 +284,37 @@ discard block |
||
| 284 | 284 | * |
| 285 | 285 | * @return bool |
| 286 | 286 | */ |
| 287 | - public function update_customer_email_on_user_update( $user_id = 0, $old_user_data ) { |
|
| 287 | + public function update_customer_email_on_user_update($user_id = 0, $old_user_data) { |
|
| 288 | 288 | |
| 289 | - $customer = new Give_Customer( $user_id, true ); |
|
| 289 | + $customer = new Give_Customer($user_id, true); |
|
| 290 | 290 | |
| 291 | - if( ! $customer ) { |
|
| 291 | + if ( ! $customer) { |
|
| 292 | 292 | return false; |
| 293 | 293 | } |
| 294 | 294 | |
| 295 | - $user = get_userdata( $user_id ); |
|
| 295 | + $user = get_userdata($user_id); |
|
| 296 | 296 | |
| 297 | - if( ! empty( $user ) && $user->user_email !== $customer->email ) { |
|
| 297 | + if ( ! empty($user) && $user->user_email !== $customer->email) { |
|
| 298 | 298 | |
| 299 | - if( ! $this->get_customer_by( 'email', $user->user_email ) ) { |
|
| 299 | + if ( ! $this->get_customer_by('email', $user->user_email)) { |
|
| 300 | 300 | |
| 301 | - $success = $this->update( $customer->id, array( 'email' => $user->user_email ) ); |
|
| 301 | + $success = $this->update($customer->id, array('email' => $user->user_email)); |
|
| 302 | 302 | |
| 303 | - if( $success ) { |
|
| 303 | + if ($success) { |
|
| 304 | 304 | // Update some payment meta if we need to |
| 305 | - $payments_array = explode( ',', $customer->payment_ids ); |
|
| 305 | + $payments_array = explode(',', $customer->payment_ids); |
|
| 306 | 306 | |
| 307 | - if( ! empty( $payments_array ) ) { |
|
| 307 | + if ( ! empty($payments_array)) { |
|
| 308 | 308 | |
| 309 | - foreach ( $payments_array as $payment_id ) { |
|
| 309 | + foreach ($payments_array as $payment_id) { |
|
| 310 | 310 | |
| 311 | - give_update_payment_meta( $payment_id, 'email', $user->user_email ); |
|
| 311 | + give_update_payment_meta($payment_id, 'email', $user->user_email); |
|
| 312 | 312 | |
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | } |
| 316 | 316 | |
| 317 | - do_action( 'give_update_customer_email_on_user_update', $user, $customer ); |
|
| 317 | + do_action('give_update_customer_email_on_user_update', $user, $customer); |
|
| 318 | 318 | |
| 319 | 319 | } |
| 320 | 320 | |
@@ -335,45 +335,45 @@ discard block |
||
| 335 | 335 | * |
| 336 | 336 | * @return mixed Upon success, an object of the customer. Upon failure, NULL |
| 337 | 337 | */ |
| 338 | - public function get_customer_by( $field = 'id', $value = 0 ) { |
|
| 338 | + public function get_customer_by($field = 'id', $value = 0) { |
|
| 339 | 339 | global $wpdb; |
| 340 | 340 | |
| 341 | - if ( empty( $field ) || empty( $value ) ) { |
|
| 341 | + if (empty($field) || empty($value)) { |
|
| 342 | 342 | return null; |
| 343 | 343 | } |
| 344 | 344 | |
| 345 | - if ( 'id' == $field || 'user_id' == $field ) { |
|
| 345 | + if ('id' == $field || 'user_id' == $field) { |
|
| 346 | 346 | // Make sure the value is numeric to avoid casting objects, for example, |
| 347 | 347 | // to int 1. |
| 348 | - if ( ! is_numeric( $value ) ) { |
|
| 348 | + if ( ! is_numeric($value)) { |
|
| 349 | 349 | return false; |
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - $value = intval( $value ); |
|
| 352 | + $value = intval($value); |
|
| 353 | 353 | |
| 354 | - if ( $value < 1 ) { |
|
| 354 | + if ($value < 1) { |
|
| 355 | 355 | return false; |
| 356 | 356 | } |
| 357 | 357 | |
| 358 | - } elseif ( 'email' === $field ) { |
|
| 358 | + } elseif ('email' === $field) { |
|
| 359 | 359 | |
| 360 | - if ( ! is_email( $value ) ) { |
|
| 360 | + if ( ! is_email($value)) { |
|
| 361 | 361 | return false; |
| 362 | 362 | } |
| 363 | 363 | |
| 364 | - $value = trim( $value ); |
|
| 364 | + $value = trim($value); |
|
| 365 | 365 | } |
| 366 | 366 | |
| 367 | - if ( ! $value ) { |
|
| 367 | + if ( ! $value) { |
|
| 368 | 368 | return false; |
| 369 | 369 | } |
| 370 | 370 | |
| 371 | - switch ( $field ) { |
|
| 371 | + switch ($field) { |
|
| 372 | 372 | case 'id': |
| 373 | 373 | $db_field = 'id'; |
| 374 | 374 | break; |
| 375 | 375 | case 'email': |
| 376 | - $value = sanitize_text_field( $value ); |
|
| 376 | + $value = sanitize_text_field($value); |
|
| 377 | 377 | $db_field = 'email'; |
| 378 | 378 | break; |
| 379 | 379 | case 'user_id': |
@@ -383,7 +383,7 @@ discard block |
||
| 383 | 383 | return false; |
| 384 | 384 | } |
| 385 | 385 | |
| 386 | - if ( ! $customer = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $this->table_name WHERE $db_field = %s LIMIT 1", $value ) ) ) { |
|
| 386 | + if ( ! $customer = $wpdb->get_row($wpdb->prepare("SELECT * FROM $this->table_name WHERE $db_field = %s LIMIT 1", $value))) { |
|
| 387 | 387 | return false; |
| 388 | 388 | } |
| 389 | 389 | |
@@ -396,7 +396,7 @@ discard block |
||
| 396 | 396 | * @access public |
| 397 | 397 | * @since 1.0 |
| 398 | 398 | */ |
| 399 | - public function get_customers( $args = array() ) { |
|
| 399 | + public function get_customers($args = array()) { |
|
| 400 | 400 | |
| 401 | 401 | global $wpdb; |
| 402 | 402 | |
@@ -408,21 +408,21 @@ discard block |
||
| 408 | 408 | 'order' => 'DESC' |
| 409 | 409 | ); |
| 410 | 410 | |
| 411 | - $args = wp_parse_args( $args, $defaults ); |
|
| 411 | + $args = wp_parse_args($args, $defaults); |
|
| 412 | 412 | |
| 413 | - if ( $args['number'] < 1 ) { |
|
| 413 | + if ($args['number'] < 1) { |
|
| 414 | 414 | $args['number'] = 999999999999; |
| 415 | 415 | } |
| 416 | 416 | |
| 417 | 417 | $where = ' WHERE 1=1 '; |
| 418 | 418 | |
| 419 | 419 | // specific customers |
| 420 | - if ( ! empty( $args['id'] ) ) { |
|
| 420 | + if ( ! empty($args['id'])) { |
|
| 421 | 421 | |
| 422 | - if ( is_array( $args['id'] ) ) { |
|
| 423 | - $ids = implode( ',', array_map( 'intval', $args['id'] ) ); |
|
| 422 | + if (is_array($args['id'])) { |
|
| 423 | + $ids = implode(',', array_map('intval', $args['id'])); |
|
| 424 | 424 | } else { |
| 425 | - $ids = intval( $args['id'] ); |
|
| 425 | + $ids = intval($args['id']); |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | $where .= " AND `id` IN( {$ids} ) "; |
@@ -430,12 +430,12 @@ discard block |
||
| 430 | 430 | } |
| 431 | 431 | |
| 432 | 432 | // customers for specific user accounts |
| 433 | - if ( ! empty( $args['user_id'] ) ) { |
|
| 433 | + if ( ! empty($args['user_id'])) { |
|
| 434 | 434 | |
| 435 | - if ( is_array( $args['user_id'] ) ) { |
|
| 436 | - $user_ids = implode( ',', array_map( 'intval', $args['user_id'] ) ); |
|
| 435 | + if (is_array($args['user_id'])) { |
|
| 436 | + $user_ids = implode(',', array_map('intval', $args['user_id'])); |
|
| 437 | 437 | } else { |
| 438 | - $user_ids = intval( $args['user_id'] ); |
|
| 438 | + $user_ids = intval($args['user_id']); |
|
| 439 | 439 | } |
| 440 | 440 | |
| 441 | 441 | $where .= " AND `user_id` IN( {$user_ids} ) "; |
@@ -443,41 +443,41 @@ discard block |
||
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | //specific customers by email |
| 446 | - if( ! empty( $args['email'] ) ) { |
|
| 446 | + if ( ! empty($args['email'])) { |
|
| 447 | 447 | |
| 448 | - if( is_array( $args['email'] ) ) { |
|
| 448 | + if (is_array($args['email'])) { |
|
| 449 | 449 | |
| 450 | - $emails_count = count( $args['email'] ); |
|
| 451 | - $emails_placeholder = array_fill( 0, $emails_count, '%s' ); |
|
| 452 | - $emails = implode( ', ', $emails_placeholder ); |
|
| 450 | + $emails_count = count($args['email']); |
|
| 451 | + $emails_placeholder = array_fill(0, $emails_count, '%s'); |
|
| 452 | + $emails = implode(', ', $emails_placeholder); |
|
| 453 | 453 | |
| 454 | - $where .= $wpdb->prepare( " AND `email` IN( $emails ) ", $args['email'] ); |
|
| 454 | + $where .= $wpdb->prepare(" AND `email` IN( $emails ) ", $args['email']); |
|
| 455 | 455 | } else { |
| 456 | - $where .= $wpdb->prepare( " AND `email` = %s ", $args['email'] ); |
|
| 456 | + $where .= $wpdb->prepare(" AND `email` = %s ", $args['email']); |
|
| 457 | 457 | } |
| 458 | 458 | } |
| 459 | 459 | |
| 460 | 460 | // specific customers by name |
| 461 | - if( ! empty( $args['name'] ) ) { |
|
| 462 | - $where .= $wpdb->prepare( " AND `name` LIKE '%%%%" . '%s' . "%%%%' ", $args['name'] ); |
|
| 461 | + if ( ! empty($args['name'])) { |
|
| 462 | + $where .= $wpdb->prepare(" AND `name` LIKE '%%%%".'%s'."%%%%' ", $args['name']); |
|
| 463 | 463 | } |
| 464 | 464 | |
| 465 | 465 | // Customers created for a specific date or in a date range |
| 466 | - if ( ! empty( $args['date'] ) ) { |
|
| 466 | + if ( ! empty($args['date'])) { |
|
| 467 | 467 | |
| 468 | - if ( is_array( $args['date'] ) ) { |
|
| 468 | + if (is_array($args['date'])) { |
|
| 469 | 469 | |
| 470 | - if ( ! empty( $args['date']['start'] ) ) { |
|
| 470 | + if ( ! empty($args['date']['start'])) { |
|
| 471 | 471 | |
| 472 | - $start = date( 'Y-m-d H:i:s', strtotime( $args['date']['start'] ) ); |
|
| 472 | + $start = date('Y-m-d H:i:s', strtotime($args['date']['start'])); |
|
| 473 | 473 | |
| 474 | 474 | $where .= " AND `date_created` >= '{$start}'"; |
| 475 | 475 | |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | - if ( ! empty( $args['date']['end'] ) ) { |
|
| 478 | + if ( ! empty($args['date']['end'])) { |
|
| 479 | 479 | |
| 480 | - $end = date( 'Y-m-d H:i:s', strtotime( $args['date']['end'] ) ); |
|
| 480 | + $end = date('Y-m-d H:i:s', strtotime($args['date']['end'])); |
|
| 481 | 481 | |
| 482 | 482 | $where .= " AND `date_created` <= '{$end}'"; |
| 483 | 483 | |
@@ -485,31 +485,31 @@ discard block |
||
| 485 | 485 | |
| 486 | 486 | } else { |
| 487 | 487 | |
| 488 | - $year = date( 'Y', strtotime( $args['date'] ) ); |
|
| 489 | - $month = date( 'm', strtotime( $args['date'] ) ); |
|
| 490 | - $day = date( 'd', strtotime( $args['date'] ) ); |
|
| 488 | + $year = date('Y', strtotime($args['date'])); |
|
| 489 | + $month = date('m', strtotime($args['date'])); |
|
| 490 | + $day = date('d', strtotime($args['date'])); |
|
| 491 | 491 | |
| 492 | 492 | $where .= " AND $year = YEAR ( date_created ) AND $month = MONTH ( date_created ) AND $day = DAY ( date_created )"; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | 495 | } |
| 496 | 496 | |
| 497 | - $args['orderby'] = ! array_key_exists( $args['orderby'], $this->get_columns() ) ? 'id' : $args['orderby']; |
|
| 497 | + $args['orderby'] = ! array_key_exists($args['orderby'], $this->get_columns()) ? 'id' : $args['orderby']; |
|
| 498 | 498 | |
| 499 | - if ( 'purchase_value' == $args['orderby'] ) { |
|
| 499 | + if ('purchase_value' == $args['orderby']) { |
|
| 500 | 500 | $args['orderby'] = 'purchase_value+0'; |
| 501 | 501 | } |
| 502 | 502 | |
| 503 | - $cache_key = md5( 'give_customers_' . serialize( $args ) ); |
|
| 503 | + $cache_key = md5('give_customers_'.serialize($args)); |
|
| 504 | 504 | |
| 505 | - $customers = wp_cache_get( $cache_key, 'customers' ); |
|
| 505 | + $customers = wp_cache_get($cache_key, 'customers'); |
|
| 506 | 506 | |
| 507 | - $args['orderby'] = esc_sql( $args['orderby'] ); |
|
| 508 | - $args['order'] = esc_sql( $args['order'] ); |
|
| 507 | + $args['orderby'] = esc_sql($args['orderby']); |
|
| 508 | + $args['order'] = esc_sql($args['order']); |
|
| 509 | 509 | |
| 510 | - if ( $customers === false ) { |
|
| 511 | - $customers = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM $this->table_name $where ORDER BY {$args['orderby']} {$args['order']} LIMIT %d,%d;", absint( $args['offset'] ), absint( $args['number'] ) ) ); |
|
| 512 | - wp_cache_set( $cache_key, $customers, 'customers', 3600 ); |
|
| 510 | + if ($customers === false) { |
|
| 511 | + $customers = $wpdb->get_results($wpdb->prepare("SELECT * FROM $this->table_name $where ORDER BY {$args['orderby']} {$args['order']} LIMIT %d,%d;", absint($args['offset']), absint($args['number']))); |
|
| 512 | + wp_cache_set($cache_key, $customers, 'customers', 3600); |
|
| 513 | 513 | } |
| 514 | 514 | |
| 515 | 515 | return $customers; |
@@ -523,26 +523,26 @@ discard block |
||
| 523 | 523 | * @access public |
| 524 | 524 | * @since 1.0 |
| 525 | 525 | */ |
| 526 | - public function count( $args = array() ) { |
|
| 526 | + public function count($args = array()) { |
|
| 527 | 527 | |
| 528 | 528 | global $wpdb; |
| 529 | 529 | |
| 530 | 530 | $where = ' WHERE 1=1 '; |
| 531 | 531 | |
| 532 | - if ( ! empty( $args['date'] ) ) { |
|
| 532 | + if ( ! empty($args['date'])) { |
|
| 533 | 533 | |
| 534 | - if ( is_array( $args['date'] ) ) { |
|
| 534 | + if (is_array($args['date'])) { |
|
| 535 | 535 | |
| 536 | - $start = date( 'Y-m-d H:i:s', strtotime( $args['date']['start'] ) ); |
|
| 537 | - $end = date( 'Y-m-d H:i:s', strtotime( $args['date']['end'] ) ); |
|
| 536 | + $start = date('Y-m-d H:i:s', strtotime($args['date']['start'])); |
|
| 537 | + $end = date('Y-m-d H:i:s', strtotime($args['date']['end'])); |
|
| 538 | 538 | |
| 539 | 539 | $where .= " AND `date_created` >= '{$start}' AND `date_created` <= '{$end}'"; |
| 540 | 540 | |
| 541 | 541 | } else { |
| 542 | 542 | |
| 543 | - $year = date( 'Y', strtotime( $args['date'] ) ); |
|
| 544 | - $month = date( 'm', strtotime( $args['date'] ) ); |
|
| 545 | - $day = date( 'd', strtotime( $args['date'] ) ); |
|
| 543 | + $year = date('Y', strtotime($args['date'])); |
|
| 544 | + $month = date('m', strtotime($args['date'])); |
|
| 545 | + $day = date('d', strtotime($args['date'])); |
|
| 546 | 546 | |
| 547 | 547 | $where .= " AND $year = YEAR ( date_created ) AND $month = MONTH ( date_created ) AND $day = DAY ( date_created )"; |
| 548 | 548 | } |
@@ -550,16 +550,16 @@ discard block |
||
| 550 | 550 | } |
| 551 | 551 | |
| 552 | 552 | |
| 553 | - $cache_key = md5( 'give_customers_count' . serialize( $args ) ); |
|
| 553 | + $cache_key = md5('give_customers_count'.serialize($args)); |
|
| 554 | 554 | |
| 555 | - $count = wp_cache_get( $cache_key, 'customers' ); |
|
| 555 | + $count = wp_cache_get($cache_key, 'customers'); |
|
| 556 | 556 | |
| 557 | - if ( $count === false ) { |
|
| 558 | - $count = $wpdb->get_var( "SELECT COUNT($this->primary_key) FROM " . $this->table_name . "{$where};" ); |
|
| 559 | - wp_cache_set( $cache_key, $count, 'customers', 3600 ); |
|
| 557 | + if ($count === false) { |
|
| 558 | + $count = $wpdb->get_var("SELECT COUNT($this->primary_key) FROM ".$this->table_name."{$where};"); |
|
| 559 | + wp_cache_set($cache_key, $count, 'customers', 3600); |
|
| 560 | 560 | } |
| 561 | 561 | |
| 562 | - return absint( $count ); |
|
| 562 | + return absint($count); |
|
| 563 | 563 | |
| 564 | 564 | } |
| 565 | 565 | |
@@ -571,9 +571,9 @@ discard block |
||
| 571 | 571 | */ |
| 572 | 572 | public function create_table() { |
| 573 | 573 | |
| 574 | - require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
|
| 574 | + require_once(ABSPATH.'wp-admin/includes/upgrade.php'); |
|
| 575 | 575 | |
| 576 | - $sql = "CREATE TABLE " . $this->table_name . " ( |
|
| 576 | + $sql = "CREATE TABLE ".$this->table_name." ( |
|
| 577 | 577 | id bigint(20) NOT NULL AUTO_INCREMENT, |
| 578 | 578 | user_id bigint(20) NOT NULL, |
| 579 | 579 | email varchar(50) NOT NULL, |
@@ -588,9 +588,9 @@ discard block |
||
| 588 | 588 | KEY user (user_id) |
| 589 | 589 | ) CHARACTER SET utf8 COLLATE utf8_general_ci;"; |
| 590 | 590 | |
| 591 | - dbDelta( $sql ); |
|
| 591 | + dbDelta($sql); |
|
| 592 | 592 | |
| 593 | - update_option( $this->table_name . '_db_version', $this->version ); |
|
| 593 | + update_option($this->table_name.'_db_version', $this->version); |
|
| 594 | 594 | } |
| 595 | 595 | |
| 596 | 596 | /** |
@@ -600,6 +600,6 @@ discard block |
||
| 600 | 600 | * @return bool Returns if the customers table was installed and upgrade routine run |
| 601 | 601 | */ |
| 602 | 602 | public function installed() { |
| 603 | - return $this->table_exists( $this->table_name ); |
|
| 603 | + return $this->table_exists($this->table_name); |
|
| 604 | 604 | } |
| 605 | 605 | } |
@@ -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,15 +24,15 @@ discard block |
||
| 24 | 24 | * @global $wp_version |
| 25 | 25 | * @return void |
| 26 | 26 | */ |
| 27 | -function give_install( $network_wide = false ) { |
|
| 27 | +function give_install($network_wide = false) { |
|
| 28 | 28 | |
| 29 | 29 | global $wpdb; |
| 30 | 30 | |
| 31 | - if ( is_multisite() && $network_wide ) { |
|
| 31 | + if (is_multisite() && $network_wide) { |
|
| 32 | 32 | |
| 33 | - foreach ( $wpdb->get_col( "SELECT blog_id FROM $wpdb->blogs LIMIT 100" ) as $blog_id ) { |
|
| 33 | + foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs LIMIT 100") as $blog_id) { |
|
| 34 | 34 | |
| 35 | - switch_to_blog( $blog_id ); |
|
| 35 | + switch_to_blog($blog_id); |
|
| 36 | 36 | give_run_install(); |
| 37 | 37 | restore_current_blog(); |
| 38 | 38 | |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | -register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' ); |
|
| 49 | +register_activation_hook(GIVE_PLUGIN_FILE, 'give_install'); |
|
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * Run the Give Install process |
@@ -62,25 +62,25 @@ discard block |
||
| 62 | 62 | give_setup_post_types(); |
| 63 | 63 | |
| 64 | 64 | // Clear the permalinks |
| 65 | - flush_rewrite_rules( false ); |
|
| 65 | + flush_rewrite_rules(false); |
|
| 66 | 66 | |
| 67 | 67 | // Add Upgraded From Option |
| 68 | - $current_version = get_option( 'give_version' ); |
|
| 69 | - if ( $current_version ) { |
|
| 70 | - update_option( 'give_version_upgraded_from', $current_version ); |
|
| 68 | + $current_version = get_option('give_version'); |
|
| 69 | + if ($current_version) { |
|
| 70 | + update_option('give_version_upgraded_from', $current_version); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | // Setup some default options |
| 74 | 74 | $options = array(); |
| 75 | 75 | |
| 76 | 76 | // Checks if the Success Page option exists AND that the page exists |
| 77 | - if ( ! get_post( give_get_option( 'success_page' ) ) ) { |
|
| 77 | + if ( ! get_post(give_get_option('success_page'))) { |
|
| 78 | 78 | |
| 79 | 79 | // Purchase Confirmation (Success) Page |
| 80 | 80 | $success = wp_insert_post( |
| 81 | 81 | array( |
| 82 | - 'post_title' => __( 'Donation Confirmation', 'give' ), |
|
| 83 | - 'post_content' => __( '[give_receipt]', 'give' ), |
|
| 82 | + 'post_title' => __('Donation Confirmation', 'give'), |
|
| 83 | + 'post_content' => __('[give_receipt]', 'give'), |
|
| 84 | 84 | 'post_status' => 'publish', |
| 85 | 85 | 'post_author' => 1, |
| 86 | 86 | 'post_type' => 'page', |
@@ -93,13 +93,13 @@ discard block |
||
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | // Checks if the Failure Page option exists AND that the page exists |
| 96 | - if ( ! get_post( give_get_option( 'failure_page' ) ) ) { |
|
| 96 | + if ( ! get_post(give_get_option('failure_page'))) { |
|
| 97 | 97 | |
| 98 | 98 | // Failed Purchase Page |
| 99 | 99 | $failed = wp_insert_post( |
| 100 | 100 | array( |
| 101 | - 'post_title' => __( 'Transaction Failed', 'give' ), |
|
| 102 | - 'post_content' => __( 'We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give' ), |
|
| 101 | + 'post_title' => __('Transaction Failed', 'give'), |
|
| 102 | + 'post_content' => __('We\'re sorry, your transaction failed to process. Please try again or contact site support.', 'give'), |
|
| 103 | 103 | 'post_status' => 'publish', |
| 104 | 104 | 'post_author' => 1, |
| 105 | 105 | 'post_type' => 'page', |
@@ -111,11 +111,11 @@ discard block |
||
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | // Checks if the History Page option exists AND that the page exists |
| 114 | - if ( ! get_post( give_get_option( 'history_page' ) ) ) { |
|
| 114 | + if ( ! get_post(give_get_option('history_page'))) { |
|
| 115 | 115 | // Purchase History (History) Page |
| 116 | 116 | $history = wp_insert_post( |
| 117 | 117 | array( |
| 118 | - 'post_title' => __( 'Donation History', 'give' ), |
|
| 118 | + 'post_title' => __('Donation History', 'give'), |
|
| 119 | 119 | 'post_content' => '[donation_history]', |
| 120 | 120 | 'post_status' => 'publish', |
| 121 | 121 | 'post_author' => 1, |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | //Fresh Install? Setup Test Mode, Base Country (US), Test Gateway, Currency |
| 131 | - if ( empty( $current_version ) ) { |
|
| 131 | + if (empty($current_version)) { |
|
| 132 | 132 | $options['base_country'] = 'US'; |
| 133 | 133 | $options['test_mode'] = 1; |
| 134 | 134 | $options['currency'] = 'USD'; |
@@ -145,12 +145,12 @@ discard block |
||
| 145 | 145 | } |
| 146 | 146 | |
| 147 | 147 | // Populate some default values |
| 148 | - update_option( 'give_settings', array_merge( $give_options, $options ) ); |
|
| 149 | - update_option( 'give_version', GIVE_VERSION ); |
|
| 148 | + update_option('give_settings', array_merge($give_options, $options)); |
|
| 149 | + update_option('give_version', GIVE_VERSION); |
|
| 150 | 150 | |
| 151 | 151 | //Update Version Number |
| 152 | - if ( $current_version ) { |
|
| 153 | - update_option( 'give_version_upgraded_from', $current_version ); |
|
| 152 | + if ($current_version) { |
|
| 153 | + update_option('give_version_upgraded_from', $current_version); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | // Create Give roles |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $roles->add_caps(); |
| 160 | 160 | |
| 161 | 161 | $api = new Give_API(); |
| 162 | - update_option( 'give_default_api_version', 'v' . $api->get_version() ); |
|
| 162 | + update_option('give_default_api_version', 'v'.$api->get_version()); |
|
| 163 | 163 | |
| 164 | 164 | // Create the customers database |
| 165 | 165 | @Give()->customers->create_table(); |
@@ -168,11 +168,11 @@ discard block |
||
| 168 | 168 | Give()->session->use_php_sessions(); |
| 169 | 169 | |
| 170 | 170 | // Add a temporary option to note that Give pages have been created |
| 171 | - set_transient( '_give_installed', $options, 30 ); |
|
| 171 | + set_transient('_give_installed', $options, 30); |
|
| 172 | 172 | |
| 173 | - if ( ! $current_version ) { |
|
| 173 | + if ( ! $current_version) { |
|
| 174 | 174 | |
| 175 | - require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php'; |
|
| 175 | + require_once GIVE_PLUGIN_DIR.'includes/admin/upgrades/upgrade-functions.php'; |
|
| 176 | 176 | |
| 177 | 177 | // When new upgrade routines are added, mark them as complete on fresh install |
| 178 | 178 | $upgrade_routines = array( |
@@ -180,22 +180,22 @@ discard block |
||
| 180 | 180 | 'upgrade_give_offline_status' |
| 181 | 181 | ); |
| 182 | 182 | |
| 183 | - foreach ( $upgrade_routines as $upgrade ) { |
|
| 184 | - give_set_upgrade_complete( $upgrade ); |
|
| 183 | + foreach ($upgrade_routines as $upgrade) { |
|
| 184 | + give_set_upgrade_complete($upgrade); |
|
| 185 | 185 | } |
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | // Bail if activating from network, or bulk |
| 189 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 189 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
| 190 | 190 | return; |
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | // Add the transient to redirect |
| 194 | - set_transient( '_give_activation_redirect', true, 30 ); |
|
| 194 | + set_transient('_give_activation_redirect', true, 30); |
|
| 195 | 195 | |
| 196 | 196 | } |
| 197 | 197 | |
| 198 | -register_activation_hook( GIVE_PLUGIN_FILE, 'give_install' ); |
|
| 198 | +register_activation_hook(GIVE_PLUGIN_FILE, 'give_install'); |
|
| 199 | 199 | |
| 200 | 200 | /** |
| 201 | 201 | * Network Activated New Site Setup |
@@ -211,11 +211,11 @@ discard block |
||
| 211 | 211 | * @param int $site_id The Site ID |
| 212 | 212 | * @param array $meta Blog Meta |
| 213 | 213 | */ |
| 214 | -function on_create_blog( $blog_id, $user_id, $domain, $path, $site_id, $meta ) { |
|
| 214 | +function on_create_blog($blog_id, $user_id, $domain, $path, $site_id, $meta) { |
|
| 215 | 215 | |
| 216 | - if ( is_plugin_active_for_network( GIVE_PLUGIN_BASENAME ) ) { |
|
| 216 | + if (is_plugin_active_for_network(GIVE_PLUGIN_BASENAME)) { |
|
| 217 | 217 | |
| 218 | - switch_to_blog( $blog_id ); |
|
| 218 | + switch_to_blog($blog_id); |
|
| 219 | 219 | give_install(); |
| 220 | 220 | restore_current_blog(); |
| 221 | 221 | |
@@ -223,7 +223,7 @@ discard block |
||
| 223 | 223 | |
| 224 | 224 | } |
| 225 | 225 | |
| 226 | -add_action( 'wpmu_new_blog', 'on_create_blog', 10, 6 ); |
|
| 226 | +add_action('wpmu_new_blog', 'on_create_blog', 10, 6); |
|
| 227 | 227 | |
| 228 | 228 | |
| 229 | 229 | /** |
@@ -236,11 +236,11 @@ discard block |
||
| 236 | 236 | * |
| 237 | 237 | * @return array The tables to drop |
| 238 | 238 | */ |
| 239 | -function give_wpmu_drop_tables( $tables, $blog_id ) { |
|
| 239 | +function give_wpmu_drop_tables($tables, $blog_id) { |
|
| 240 | 240 | |
| 241 | - switch_to_blog( $blog_id ); |
|
| 241 | + switch_to_blog($blog_id); |
|
| 242 | 242 | $customers_db = new Give_DB_Customers(); |
| 243 | - if ( $customers_db->installed() ) { |
|
| 243 | + if ($customers_db->installed()) { |
|
| 244 | 244 | $tables[] = $customers_db->table_name; |
| 245 | 245 | } |
| 246 | 246 | restore_current_blog(); |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | -add_filter( 'wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2 ); |
|
| 252 | +add_filter('wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2); |
|
| 253 | 253 | |
| 254 | 254 | /** |
| 255 | 255 | * Post-installation |
@@ -261,35 +261,35 @@ discard block |
||
| 261 | 261 | */ |
| 262 | 262 | function give_after_install() { |
| 263 | 263 | |
| 264 | - if ( ! is_admin() ) { |
|
| 264 | + if ( ! is_admin()) { |
|
| 265 | 265 | return; |
| 266 | 266 | } |
| 267 | 267 | |
| 268 | - $give_options = get_transient( '_give_installed' ); |
|
| 269 | - $give_table_check = get_option( '_give_table_check', false ); |
|
| 268 | + $give_options = get_transient('_give_installed'); |
|
| 269 | + $give_table_check = get_option('_give_table_check', false); |
|
| 270 | 270 | |
| 271 | - if ( false === $give_table_check || current_time( 'timestamp' ) > $give_table_check ) { |
|
| 271 | + if (false === $give_table_check || current_time('timestamp') > $give_table_check) { |
|
| 272 | 272 | |
| 273 | - if ( ! @Give()->customers->installed() ) { |
|
| 273 | + if ( ! @Give()->customers->installed()) { |
|
| 274 | 274 | // Create the customers database (this ensures it creates it on multisite instances where it is network activated) |
| 275 | 275 | @Give()->customers->create_table(); |
| 276 | 276 | |
| 277 | - do_action( 'give_after_install', $give_options ); |
|
| 277 | + do_action('give_after_install', $give_options); |
|
| 278 | 278 | } |
| 279 | 279 | |
| 280 | - update_option( '_give_table_check', ( current_time( 'timestamp' ) + WEEK_IN_SECONDS ) ); |
|
| 280 | + update_option('_give_table_check', (current_time('timestamp') + WEEK_IN_SECONDS)); |
|
| 281 | 281 | |
| 282 | 282 | } |
| 283 | 283 | |
| 284 | 284 | // Delete the transient |
| 285 | - if ( false !== $give_options ) { |
|
| 286 | - delete_transient( '_give_installed' ); |
|
| 285 | + if (false !== $give_options) { |
|
| 286 | + delete_transient('_give_installed'); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | -add_action( 'admin_init', 'give_after_install' ); |
|
| 292 | +add_action('admin_init', 'give_after_install'); |
|
| 293 | 293 | |
| 294 | 294 | |
| 295 | 295 | /** |
@@ -304,11 +304,11 @@ discard block |
||
| 304 | 304 | |
| 305 | 305 | global $wp_roles; |
| 306 | 306 | |
| 307 | - if ( ! is_object( $wp_roles ) ) { |
|
| 307 | + if ( ! is_object($wp_roles)) { |
|
| 308 | 308 | return; |
| 309 | 309 | } |
| 310 | 310 | |
| 311 | - if ( ! array_key_exists( 'give_manager', $wp_roles->roles ) ) { |
|
| 311 | + if ( ! array_key_exists('give_manager', $wp_roles->roles)) { |
|
| 312 | 312 | |
| 313 | 313 | // Create Give plugin roles |
| 314 | 314 | $roles = new Give_Roles; |
@@ -319,4 +319,4 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | } |
| 321 | 321 | |
| 322 | -add_action( 'admin_init', 'give_install_roles_on_network' ); |
|
| 323 | 322 | \ No newline at end of file |
| 323 | +add_action('admin_init', 'give_install_roles_on_network'); |
|
| 324 | 324 | \ No newline at end of file |
@@ -304,7 +304,6 @@ |
||
| 304 | 304 | * @access public |
| 305 | 305 | * @since 1.0 |
| 306 | 306 | * |
| 307 | - * @param array $item Contains all the data of the discount code |
|
| 308 | 307 | * @param string $column_name The name of the column |
| 309 | 308 | * |
| 310 | 309 | * @return string Column Name |
@@ -10,13 +10,13 @@ discard block |
||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | // Exit if accessed directly |
| 13 | -if ( ! defined( 'ABSPATH' ) ) { |
|
| 13 | +if ( ! defined('ABSPATH')) { |
|
| 14 | 14 | exit; |
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | // Load WP_List_Table if not loaded |
| 18 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
| 19 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 18 | +if ( ! class_exists('WP_List_Table')) { |
|
| 19 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
| 20 | 20 | } |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -120,37 +120,37 @@ discard block |
||
| 120 | 120 | global $status, $page; |
| 121 | 121 | |
| 122 | 122 | // Set parent defaults |
| 123 | - parent::__construct( array( |
|
| 124 | - 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 125 | - 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 123 | + parent::__construct(array( |
|
| 124 | + 'singular' => give_get_forms_label_singular(), // Singular name of the listed records |
|
| 125 | + 'plural' => give_get_forms_label_plural(), // Plural name of the listed records |
|
| 126 | 126 | 'ajax' => false // Does this table support ajax? |
| 127 | - ) ); |
|
| 127 | + )); |
|
| 128 | 128 | |
| 129 | 129 | $this->get_payment_counts(); |
| 130 | 130 | $this->process_bulk_action(); |
| 131 | - $this->base_url = admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); |
|
| 131 | + $this->base_url = admin_url('edit.php?post_type=give_forms&page=give-payment-history'); |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | public function advanced_filters() { |
| 135 | - $start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null; |
|
| 136 | - $end_date = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : null; |
|
| 137 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : ''; |
|
| 135 | + $start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null; |
|
| 136 | + $end_date = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : null; |
|
| 137 | + $status = isset($_GET['status']) ? $_GET['status'] : ''; |
|
| 138 | 138 | ?> |
| 139 | 139 | <div id="give-payment-filters"> |
| 140 | 140 | <span id="give-payment-date-filters"> |
| 141 | - <label for="start-date" class="give-start-date-label"><?php _e( 'Start Date:', 'give' ); ?></label> |
|
| 141 | + <label for="start-date" class="give-start-date-label"><?php _e('Start Date:', 'give'); ?></label> |
|
| 142 | 142 | <input type="text" id="start-date" name="start-date" class="give_datepicker" value="<?php echo $start_date; ?>" placeholder="mm/dd/yyyy"/> |
| 143 | - <label for="end-date" class="give-end-date-label"><?php _e( 'End Date:', 'give' ); ?></label> |
|
| 143 | + <label for="end-date" class="give-end-date-label"><?php _e('End Date:', 'give'); ?></label> |
|
| 144 | 144 | <input type="text" id="end-date" name="end-date" class="give_datepicker" value="<?php echo $end_date; ?>" placeholder="mm/dd/yyyy"/> |
| 145 | - <input type="submit" class="button-secondary" value="<?php _e( 'Apply', 'give' ); ?>"/> |
|
| 145 | + <input type="submit" class="button-secondary" value="<?php _e('Apply', 'give'); ?>"/> |
|
| 146 | 146 | </span> |
| 147 | - <?php if ( ! empty( $status ) ) : ?> |
|
| 148 | - <input type="hidden" name="status" value="<?php echo esc_attr( $status ); ?>"/> |
|
| 147 | + <?php if ( ! empty($status)) : ?> |
|
| 148 | + <input type="hidden" name="status" value="<?php echo esc_attr($status); ?>"/> |
|
| 149 | 149 | <?php endif; ?> |
| 150 | - <?php if ( ! empty( $start_date ) || ! empty( $end_date ) ) : ?> |
|
| 151 | - <a href="<?php echo admin_url( 'edit.php?post_type=give_forms&page=give-payment-history' ); ?>" class="button-secondary"><?php _e( 'Clear Filter', 'give' ); ?></a> |
|
| 150 | + <?php if ( ! empty($start_date) || ! empty($end_date)) : ?> |
|
| 151 | + <a href="<?php echo admin_url('edit.php?post_type=give_forms&page=give-payment-history'); ?>" class="button-secondary"><?php _e('Clear Filter', 'give'); ?></a> |
|
| 152 | 152 | <?php endif; ?> |
| 153 | - <?php $this->search_box( __( 'Search', 'give' ), 'give-payments' ); ?> |
|
| 153 | + <?php $this->search_box(__('Search', 'give'), 'give-payments'); ?> |
|
| 154 | 154 | </div> |
| 155 | 155 | |
| 156 | 156 | <?php |
@@ -167,25 +167,25 @@ discard block |
||
| 167 | 167 | * |
| 168 | 168 | * @return void |
| 169 | 169 | */ |
| 170 | - public function search_box( $text, $input_id ) { |
|
| 171 | - if ( empty( $_REQUEST['s'] ) && ! $this->has_items() ) { |
|
| 170 | + public function search_box($text, $input_id) { |
|
| 171 | + if (empty($_REQUEST['s']) && ! $this->has_items()) { |
|
| 172 | 172 | return; |
| 173 | 173 | } |
| 174 | 174 | |
| 175 | - $input_id = $input_id . '-search-input'; |
|
| 175 | + $input_id = $input_id.'-search-input'; |
|
| 176 | 176 | |
| 177 | - if ( ! empty( $_REQUEST['orderby'] ) ) { |
|
| 178 | - echo '<input type="hidden" name="orderby" value="' . esc_attr( $_REQUEST['orderby'] ) . '" />'; |
|
| 177 | + if ( ! empty($_REQUEST['orderby'])) { |
|
| 178 | + echo '<input type="hidden" name="orderby" value="'.esc_attr($_REQUEST['orderby']).'" />'; |
|
| 179 | 179 | } |
| 180 | - if ( ! empty( $_REQUEST['order'] ) ) { |
|
| 181 | - echo '<input type="hidden" name="order" value="' . esc_attr( $_REQUEST['order'] ) . '" />'; |
|
| 180 | + if ( ! empty($_REQUEST['order'])) { |
|
| 181 | + echo '<input type="hidden" name="order" value="'.esc_attr($_REQUEST['order']).'" />'; |
|
| 182 | 182 | } |
| 183 | 183 | ?> |
| 184 | 184 | <p class="search-box"> |
| 185 | - <?php do_action( 'give_payment_history_search' ); ?> |
|
| 185 | + <?php do_action('give_payment_history_search'); ?> |
|
| 186 | 186 | <label class="screen-reader-text" for="<?php echo $input_id ?>"><?php echo $text; ?>:</label> |
| 187 | 187 | <input type="search" id="<?php echo $input_id ?>" name="s" value="<?php _admin_search_query(); ?>"/> |
| 188 | - <?php submit_button( $text, 'button', false, false, array( 'ID' => 'search-submit' ) ); ?><br/> |
|
| 188 | + <?php submit_button($text, 'button', false, false, array('ID' => 'search-submit')); ?><br/> |
|
| 189 | 189 | </p> |
| 190 | 190 | <?php |
| 191 | 191 | } |
@@ -199,52 +199,52 @@ discard block |
||
| 199 | 199 | */ |
| 200 | 200 | public function get_views() { |
| 201 | 201 | |
| 202 | - $current = isset( $_GET['status'] ) ? $_GET['status'] : ''; |
|
| 203 | - $total_count = ' <span class="count">(' . $this->total_count . ')</span>'; |
|
| 204 | - $complete_count = ' <span class="count">(' . $this->complete_count . ')</span>'; |
|
| 205 | - $cancelled_count = ' <span class="count">(' . $this->cancelled_count . ')</span>'; |
|
| 206 | - $pending_count = ' <span class="count">(' . $this->pending_count . ')</span>'; |
|
| 207 | - $refunded_count = ' <span class="count">(' . $this->refunded_count . ')</span>'; |
|
| 208 | - $failed_count = ' <span class="count">(' . $this->failed_count . ')</span>'; |
|
| 209 | - $abandoned_count = ' <span class="count">(' . $this->abandoned_count . ')</span>'; |
|
| 210 | - $revoked_count = ' <span class="count">(' . $this->revoked_count . ')</span>'; |
|
| 202 | + $current = isset($_GET['status']) ? $_GET['status'] : ''; |
|
| 203 | + $total_count = ' <span class="count">('.$this->total_count.')</span>'; |
|
| 204 | + $complete_count = ' <span class="count">('.$this->complete_count.')</span>'; |
|
| 205 | + $cancelled_count = ' <span class="count">('.$this->cancelled_count.')</span>'; |
|
| 206 | + $pending_count = ' <span class="count">('.$this->pending_count.')</span>'; |
|
| 207 | + $refunded_count = ' <span class="count">('.$this->refunded_count.')</span>'; |
|
| 208 | + $failed_count = ' <span class="count">('.$this->failed_count.')</span>'; |
|
| 209 | + $abandoned_count = ' <span class="count">('.$this->abandoned_count.')</span>'; |
|
| 210 | + $revoked_count = ' <span class="count">('.$this->revoked_count.')</span>'; |
|
| 211 | 211 | |
| 212 | 212 | $views = array( |
| 213 | - 'all' => sprintf( '<a href="%s"%s>%s</a>', remove_query_arg( array( |
|
| 213 | + 'all' => sprintf('<a href="%s"%s>%s</a>', remove_query_arg(array( |
|
| 214 | 214 | 'status', |
| 215 | 215 | 'paged' |
| 216 | - ) ), $current === 'all' || $current == '' ? ' class="current"' : '', __( 'All', 'give' ) . $total_count ), |
|
| 217 | - 'publish' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 216 | + )), $current === 'all' || $current == '' ? ' class="current"' : '', __('All', 'give').$total_count), |
|
| 217 | + 'publish' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 218 | 218 | 'status' => 'publish', |
| 219 | 219 | 'paged' => false |
| 220 | - ) ) ), $current === 'publish' ? ' class="current"' : '', __( 'Completed', 'give' ) . $complete_count ), |
|
| 221 | - 'pending' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 220 | + ))), $current === 'publish' ? ' class="current"' : '', __('Completed', 'give').$complete_count), |
|
| 221 | + 'pending' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 222 | 222 | 'status' => 'pending', |
| 223 | 223 | 'paged' => false |
| 224 | - ) ) ), $current === 'pending' ? ' class="current"' : '', __( 'Pending', 'give' ) . $pending_count ), |
|
| 225 | - 'refunded' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 224 | + ))), $current === 'pending' ? ' class="current"' : '', __('Pending', 'give').$pending_count), |
|
| 225 | + 'refunded' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 226 | 226 | 'status' => 'refunded', |
| 227 | 227 | 'paged' => false |
| 228 | - ) ) ), $current === 'refunded' ? ' class="current"' : '', __( 'Refunded', 'give' ) . $refunded_count ), |
|
| 229 | - 'revoked' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 228 | + ))), $current === 'refunded' ? ' class="current"' : '', __('Refunded', 'give').$refunded_count), |
|
| 229 | + 'revoked' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 230 | 230 | 'status' => 'revoked', |
| 231 | 231 | 'paged' => false |
| 232 | - ) ) ), $current === 'revoked' ? ' class="current"' : '', __( 'Revoked', 'give' ) . $revoked_count ), |
|
| 233 | - 'failed' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 232 | + ))), $current === 'revoked' ? ' class="current"' : '', __('Revoked', 'give').$revoked_count), |
|
| 233 | + 'failed' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 234 | 234 | 'status' => 'failed', |
| 235 | 235 | 'paged' => false |
| 236 | - ) ) ), $current === 'failed' ? ' class="current"' : '', __( 'Failed', 'give' ) . $failed_count ), |
|
| 237 | - 'cancelled' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 236 | + ))), $current === 'failed' ? ' class="current"' : '', __('Failed', 'give').$failed_count), |
|
| 237 | + 'cancelled' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 238 | 238 | 'status' => 'cancelled', |
| 239 | 239 | 'paged' => false |
| 240 | - ) ) ), $current === 'cancelled' ? ' class="current"' : '', __( 'Cancelled', 'give' ) . $cancelled_count ), |
|
| 241 | - 'abandoned' => sprintf( '<a href="%s"%s>%s</a>', esc_url( add_query_arg( array( |
|
| 240 | + ))), $current === 'cancelled' ? ' class="current"' : '', __('Cancelled', 'give').$cancelled_count), |
|
| 241 | + 'abandoned' => sprintf('<a href="%s"%s>%s</a>', esc_url(add_query_arg(array( |
|
| 242 | 242 | 'status' => 'abandoned', |
| 243 | 243 | 'paged' => false |
| 244 | - ) ) ), $current === 'abandoned' ? ' class="current"' : '', __( 'Abandoned', 'give' ) . $abandoned_count ) |
|
| 244 | + ))), $current === 'abandoned' ? ' class="current"' : '', __('Abandoned', 'give').$abandoned_count) |
|
| 245 | 245 | ); |
| 246 | 246 | |
| 247 | - return apply_filters( 'give_payments_table_views', $views ); |
|
| 247 | + return apply_filters('give_payments_table_views', $views); |
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | /** |
@@ -257,17 +257,17 @@ discard block |
||
| 257 | 257 | public function get_columns() { |
| 258 | 258 | $columns = array( |
| 259 | 259 | 'cb' => '<input type="checkbox" />', //Render a checkbox instead of text |
| 260 | - 'email' => __( 'Email', 'give' ), |
|
| 261 | - 'details' => __( 'Details', 'give' ), |
|
| 262 | - 'amount' => __( 'Amount', 'give' ), |
|
| 263 | - 'donation' => __( 'Donation', 'give' ), |
|
| 264 | - 'status' => __( 'Status', 'give' ), |
|
| 265 | - 'date' => __( 'Date', 'give' ), |
|
| 266 | - 'donor' => __( 'Donor', 'give' ), |
|
| 267 | - 'ID' => __( 'ID', 'give' ), |
|
| 260 | + 'email' => __('Email', 'give'), |
|
| 261 | + 'details' => __('Details', 'give'), |
|
| 262 | + 'amount' => __('Amount', 'give'), |
|
| 263 | + 'donation' => __('Donation', 'give'), |
|
| 264 | + 'status' => __('Status', 'give'), |
|
| 265 | + 'date' => __('Date', 'give'), |
|
| 266 | + 'donor' => __('Donor', 'give'), |
|
| 267 | + 'ID' => __('ID', 'give'), |
|
| 268 | 268 | ); |
| 269 | 269 | |
| 270 | - return apply_filters( 'give_payments_table_columns', $columns ); |
|
| 270 | + return apply_filters('give_payments_table_columns', $columns); |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | /** |
@@ -279,12 +279,12 @@ discard block |
||
| 279 | 279 | */ |
| 280 | 280 | public function get_sortable_columns() { |
| 281 | 281 | $columns = array( |
| 282 | - 'ID' => array( 'ID', true ), |
|
| 283 | - 'amount' => array( 'amount', false ), |
|
| 284 | - 'date' => array( 'date', false ) |
|
| 282 | + 'ID' => array('ID', true), |
|
| 283 | + 'amount' => array('amount', false), |
|
| 284 | + 'date' => array('date', false) |
|
| 285 | 285 | ); |
| 286 | 286 | |
| 287 | - return apply_filters( 'give_payments_table_sortable_columns', $columns ); |
|
| 287 | + return apply_filters('give_payments_table_sortable_columns', $columns); |
|
| 288 | 288 | } |
| 289 | 289 | |
| 290 | 290 | /** |
@@ -310,41 +310,41 @@ discard block |
||
| 310 | 310 | * |
| 311 | 311 | * @return string Column Name |
| 312 | 312 | */ |
| 313 | - public function column_default( $payment, $column_name ) { |
|
| 314 | - switch ( $column_name ) { |
|
| 313 | + public function column_default($payment, $column_name) { |
|
| 314 | + switch ($column_name) { |
|
| 315 | 315 | case 'amount' : |
| 316 | - $amount = ! empty( $payment->total ) ? $payment->total : 0; |
|
| 317 | - $value = give_currency_filter( give_format_amount( $amount ), give_get_payment_currency_code( $payment->ID ) ); |
|
| 316 | + $amount = ! empty($payment->total) ? $payment->total : 0; |
|
| 317 | + $value = give_currency_filter(give_format_amount($amount), give_get_payment_currency_code($payment->ID)); |
|
| 318 | 318 | break; |
| 319 | 319 | case 'donation' : |
| 320 | - $value = '<a href="' . get_permalink( $payment->form_id ) . '">' . $payment->form_title . '</a>'; |
|
| 321 | - $level = give_get_payment_form_title( $payment->meta, true ); |
|
| 320 | + $value = '<a href="'.get_permalink($payment->form_id).'">'.$payment->form_title.'</a>'; |
|
| 321 | + $level = give_get_payment_form_title($payment->meta, true); |
|
| 322 | 322 | |
| 323 | - if ( ! empty( $level ) ) { |
|
| 323 | + if ( ! empty($level)) { |
|
| 324 | 324 | $value .= $level; |
| 325 | 325 | } |
| 326 | 326 | |
| 327 | 327 | break; |
| 328 | 328 | case 'date' : |
| 329 | - $date = strtotime( $payment->date ); |
|
| 330 | - $value = date_i18n( get_option( 'date_format' ), $date ); |
|
| 329 | + $date = strtotime($payment->date); |
|
| 330 | + $value = date_i18n(get_option('date_format'), $date); |
|
| 331 | 331 | break; |
| 332 | 332 | case 'status' : |
| 333 | - $value = '<div class="give-donation-status status-' . sanitize_title( give_get_payment_status( $payment, true ) ) . '"><span class="give-donation-status-icon"></span> ' . give_get_payment_status( $payment, true ) . '</div>'; |
|
| 334 | - if ( $payment->mode == 'test' ) { |
|
| 335 | - $value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="' . __( 'This payment was made in test mode', 'give' ) . '">' . __( 'Test', 'give' ) . '</span>'; |
|
| 333 | + $value = '<div class="give-donation-status status-'.sanitize_title(give_get_payment_status($payment, true)).'"><span class="give-donation-status-icon"></span> '.give_get_payment_status($payment, true).'</div>'; |
|
| 334 | + if ($payment->mode == 'test') { |
|
| 335 | + $value .= ' <span class="give-item-label give-item-label-orange give-test-mode-transactions-label" data-tooltip="'.__('This payment was made in test mode', 'give').'">'.__('Test', 'give').'</span>'; |
|
| 336 | 336 | } |
| 337 | 337 | break; |
| 338 | 338 | case 'details' : |
| 339 | - $value = '<div class="give-payment-details-link-wrap"><a href="' . esc_url( add_query_arg( 'id', $payment->ID, admin_url( 'edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details' ) ) ) . '" class="give-payment-details-link button button-small">' . __( 'View Details', 'give' ) . '</a></div>'; |
|
| 339 | + $value = '<div class="give-payment-details-link-wrap"><a href="'.esc_url(add_query_arg('id', $payment->ID, admin_url('edit.php?post_type=give_forms&page=give-payment-history&view=view-order-details'))).'" class="give-payment-details-link button button-small">'.__('View Details', 'give').'</a></div>'; |
|
| 340 | 340 | break; |
| 341 | 341 | default: |
| 342 | - $value = isset( $payment->$column_name ) ? $payment->$column_name : ''; |
|
| 342 | + $value = isset($payment->$column_name) ? $payment->$column_name : ''; |
|
| 343 | 343 | break; |
| 344 | 344 | |
| 345 | 345 | } |
| 346 | 346 | |
| 347 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, $column_name ); |
|
| 347 | + return apply_filters('give_payments_table_column', $value, $payment->ID, $column_name); |
|
| 348 | 348 | } |
| 349 | 349 | |
| 350 | 350 | /** |
@@ -357,40 +357,40 @@ discard block |
||
| 357 | 357 | * |
| 358 | 358 | * @return string Data shown in the Email column |
| 359 | 359 | */ |
| 360 | - public function column_email( $payment ) { |
|
| 360 | + public function column_email($payment) { |
|
| 361 | 361 | |
| 362 | 362 | $row_actions = array(); |
| 363 | 363 | |
| 364 | - $email = give_get_payment_user_email( $payment->ID ); |
|
| 364 | + $email = give_get_payment_user_email($payment->ID); |
|
| 365 | 365 | |
| 366 | 366 | // Add search term string back to base URL |
| 367 | - $search_terms = ( isset( $_GET['s'] ) ? trim( $_GET['s'] ) : '' ); |
|
| 368 | - if ( ! empty( $search_terms ) ) { |
|
| 369 | - $this->base_url = add_query_arg( 's', $search_terms, $this->base_url ); |
|
| 367 | + $search_terms = (isset($_GET['s']) ? trim($_GET['s']) : ''); |
|
| 368 | + if ( ! empty($search_terms)) { |
|
| 369 | + $this->base_url = add_query_arg('s', $search_terms, $this->base_url); |
|
| 370 | 370 | } |
| 371 | 371 | |
| 372 | - if ( give_is_payment_complete( $payment->ID ) && ! empty( $email ) ) { |
|
| 373 | - $row_actions['email_links'] = '<a href="' . add_query_arg( array( |
|
| 372 | + if (give_is_payment_complete($payment->ID) && ! empty($email)) { |
|
| 373 | + $row_actions['email_links'] = '<a href="'.add_query_arg(array( |
|
| 374 | 374 | 'give-action' => 'email_links', |
| 375 | 375 | 'purchase_id' => $payment->ID |
| 376 | - ), $this->base_url ) . '">' . __( 'Resend Donation Receipt', 'give' ) . '</a>'; |
|
| 376 | + ), $this->base_url).'">'.__('Resend Donation Receipt', 'give').'</a>'; |
|
| 377 | 377 | |
| 378 | 378 | } |
| 379 | 379 | |
| 380 | - $row_actions['delete'] = '<a href="' . wp_nonce_url( add_query_arg( array( |
|
| 380 | + $row_actions['delete'] = '<a href="'.wp_nonce_url(add_query_arg(array( |
|
| 381 | 381 | 'give-action' => 'delete_payment', |
| 382 | 382 | 'purchase_id' => $payment->ID |
| 383 | - ), $this->base_url ), 'give_payment_nonce' ) . '">' . __( 'Delete', 'give' ) . '</a>'; |
|
| 383 | + ), $this->base_url), 'give_payment_nonce').'">'.__('Delete', 'give').'</a>'; |
|
| 384 | 384 | |
| 385 | - $row_actions = apply_filters( 'give_payment_row_actions', $row_actions, $payment ); |
|
| 385 | + $row_actions = apply_filters('give_payment_row_actions', $row_actions, $payment); |
|
| 386 | 386 | |
| 387 | - if ( empty( $email ) ) { |
|
| 388 | - $email = __( '(unknown)', 'give' ); |
|
| 387 | + if (empty($email)) { |
|
| 388 | + $email = __('(unknown)', 'give'); |
|
| 389 | 389 | } |
| 390 | 390 | |
| 391 | - $value = '<span class="give-email-column-value">' . $email . '</span>' . $this->row_actions( $row_actions ); |
|
| 391 | + $value = '<span class="give-email-column-value">'.$email.'</span>'.$this->row_actions($row_actions); |
|
| 392 | 392 | |
| 393 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'email' ); |
|
| 393 | + return apply_filters('give_payments_table_column', $value, $payment->ID, 'email'); |
|
| 394 | 394 | } |
| 395 | 395 | |
| 396 | 396 | /** |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | * |
| 404 | 404 | * @return string Displays a checkbox |
| 405 | 405 | */ |
| 406 | - public function column_cb( $payment ) { |
|
| 406 | + public function column_cb($payment) { |
|
| 407 | 407 | return sprintf( |
| 408 | 408 | '<input type="checkbox" name="%1$s[]" value="%2$s" />', |
| 409 | 409 | 'payment', |
@@ -421,8 +421,8 @@ discard block |
||
| 421 | 421 | * |
| 422 | 422 | * @return string Displays a checkbox |
| 423 | 423 | */ |
| 424 | - public function column_ID( $payment ) { |
|
| 425 | - return '<span class="give-payment-id">' . give_get_payment_number( $payment->ID ) . '</span>'; |
|
| 424 | + public function column_ID($payment) { |
|
| 425 | + return '<span class="give-payment-id">'.give_get_payment_number($payment->ID).'</span>'; |
|
| 426 | 426 | } |
| 427 | 427 | |
| 428 | 428 | /** |
@@ -435,19 +435,19 @@ discard block |
||
| 435 | 435 | * |
| 436 | 436 | * @return string Data shown in the User column |
| 437 | 437 | */ |
| 438 | - public function column_donor( $payment ) { |
|
| 438 | + public function column_donor($payment) { |
|
| 439 | 439 | |
| 440 | - $customer_id = give_get_payment_customer_id( $payment->ID ); |
|
| 440 | + $customer_id = give_get_payment_customer_id($payment->ID); |
|
| 441 | 441 | |
| 442 | - if ( ! empty( $customer_id ) ) { |
|
| 443 | - $customer = new Give_Customer( $customer_id ); |
|
| 444 | - $value = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-donors&view=overview&id=$customer_id" ) ) . '">' . $customer->name . '</a>'; |
|
| 442 | + if ( ! empty($customer_id)) { |
|
| 443 | + $customer = new Give_Customer($customer_id); |
|
| 444 | + $value = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-donors&view=overview&id=$customer_id")).'">'.$customer->name.'</a>'; |
|
| 445 | 445 | } else { |
| 446 | - $email = give_get_payment_user_email( $payment->ID ); |
|
| 447 | - $value = '<a href="' . esc_url( admin_url( "edit.php?post_type=give_forms&page=give-payment-history&s=$email" ) ) . '">' . __( '(donor missing)', 'give' ) . '</a>'; |
|
| 446 | + $email = give_get_payment_user_email($payment->ID); |
|
| 447 | + $value = '<a href="'.esc_url(admin_url("edit.php?post_type=give_forms&page=give-payment-history&s=$email")).'">'.__('(donor missing)', 'give').'</a>'; |
|
| 448 | 448 | } |
| 449 | 449 | |
| 450 | - return apply_filters( 'give_payments_table_column', $value, $payment->ID, 'donor' ); |
|
| 450 | + return apply_filters('give_payments_table_column', $value, $payment->ID, 'donor'); |
|
| 451 | 451 | } |
| 452 | 452 | |
| 453 | 453 | /** |
@@ -459,18 +459,18 @@ discard block |
||
| 459 | 459 | */ |
| 460 | 460 | public function get_bulk_actions() { |
| 461 | 461 | $actions = array( |
| 462 | - 'delete' => __( 'Delete', 'give' ), |
|
| 463 | - 'set-status-publish' => __( 'Set To Completed', 'give' ), |
|
| 464 | - 'set-status-pending' => __( 'Set To Pending', 'give' ), |
|
| 465 | - 'set-status-refunded' => __( 'Set To Refunded', 'give' ), |
|
| 466 | - 'set-status-revoked' => __( 'Set To Revoked', 'give' ), |
|
| 467 | - 'set-status-failed' => __( 'Set To Failed', 'give' ), |
|
| 468 | - 'set-status-cancelled' => __( 'Set To Cancelled', 'give' ), |
|
| 469 | - 'set-status-abandoned' => __( 'Set To Abandoned', 'give' ), |
|
| 470 | - 'resend-receipt' => __( 'Resend Email Receipts', 'give' ) |
|
| 462 | + 'delete' => __('Delete', 'give'), |
|
| 463 | + 'set-status-publish' => __('Set To Completed', 'give'), |
|
| 464 | + 'set-status-pending' => __('Set To Pending', 'give'), |
|
| 465 | + 'set-status-refunded' => __('Set To Refunded', 'give'), |
|
| 466 | + 'set-status-revoked' => __('Set To Revoked', 'give'), |
|
| 467 | + 'set-status-failed' => __('Set To Failed', 'give'), |
|
| 468 | + 'set-status-cancelled' => __('Set To Cancelled', 'give'), |
|
| 469 | + 'set-status-abandoned' => __('Set To Abandoned', 'give'), |
|
| 470 | + 'resend-receipt' => __('Resend Email Receipts', 'give') |
|
| 471 | 471 | ); |
| 472 | 472 | |
| 473 | - return apply_filters( 'give_payments_table_bulk_actions', $actions ); |
|
| 473 | + return apply_filters('give_payments_table_bulk_actions', $actions); |
|
| 474 | 474 | } |
| 475 | 475 | |
| 476 | 476 | /** |
@@ -481,61 +481,61 @@ discard block |
||
| 481 | 481 | * @return void |
| 482 | 482 | */ |
| 483 | 483 | public function process_bulk_action() { |
| 484 | - $ids = isset( $_GET['payment'] ) ? $_GET['payment'] : false; |
|
| 484 | + $ids = isset($_GET['payment']) ? $_GET['payment'] : false; |
|
| 485 | 485 | $action = $this->current_action(); |
| 486 | 486 | |
| 487 | - if ( ! is_array( $ids ) ) { |
|
| 488 | - $ids = array( $ids ); |
|
| 487 | + if ( ! is_array($ids)) { |
|
| 488 | + $ids = array($ids); |
|
| 489 | 489 | } |
| 490 | 490 | |
| 491 | - if ( empty( $action ) ) { |
|
| 491 | + if (empty($action)) { |
|
| 492 | 492 | return; |
| 493 | 493 | } |
| 494 | 494 | |
| 495 | - foreach ( $ids as $id ) { |
|
| 495 | + foreach ($ids as $id) { |
|
| 496 | 496 | |
| 497 | 497 | // Detect when a bulk action is being triggered... |
| 498 | - if ( 'delete' === $this->current_action() ) { |
|
| 499 | - give_delete_purchase( $id ); |
|
| 498 | + if ('delete' === $this->current_action()) { |
|
| 499 | + give_delete_purchase($id); |
|
| 500 | 500 | } |
| 501 | 501 | |
| 502 | - if ( 'set-status-publish' === $this->current_action() ) { |
|
| 503 | - give_update_payment_status( $id, 'publish' ); |
|
| 502 | + if ('set-status-publish' === $this->current_action()) { |
|
| 503 | + give_update_payment_status($id, 'publish'); |
|
| 504 | 504 | } |
| 505 | 505 | |
| 506 | - if ( 'set-status-pending' === $this->current_action() ) { |
|
| 507 | - give_update_payment_status( $id, 'pending' ); |
|
| 506 | + if ('set-status-pending' === $this->current_action()) { |
|
| 507 | + give_update_payment_status($id, 'pending'); |
|
| 508 | 508 | } |
| 509 | 509 | |
| 510 | - if ( 'set-status-refunded' === $this->current_action() ) { |
|
| 511 | - give_update_payment_status( $id, 'refunded' ); |
|
| 510 | + if ('set-status-refunded' === $this->current_action()) { |
|
| 511 | + give_update_payment_status($id, 'refunded'); |
|
| 512 | 512 | } |
| 513 | 513 | |
| 514 | - if ( 'set-status-revoked' === $this->current_action() ) { |
|
| 515 | - give_update_payment_status( $id, 'revoked' ); |
|
| 514 | + if ('set-status-revoked' === $this->current_action()) { |
|
| 515 | + give_update_payment_status($id, 'revoked'); |
|
| 516 | 516 | } |
| 517 | 517 | |
| 518 | - if ( 'set-status-failed' === $this->current_action() ) { |
|
| 519 | - give_update_payment_status( $id, 'failed' ); |
|
| 518 | + if ('set-status-failed' === $this->current_action()) { |
|
| 519 | + give_update_payment_status($id, 'failed'); |
|
| 520 | 520 | } |
| 521 | 521 | |
| 522 | - if ( 'set-status-cancelled' === $this->current_action() ) { |
|
| 523 | - give_update_payment_status( $id, 'cancelled' ); |
|
| 522 | + if ('set-status-cancelled' === $this->current_action()) { |
|
| 523 | + give_update_payment_status($id, 'cancelled'); |
|
| 524 | 524 | } |
| 525 | 525 | |
| 526 | - if ( 'set-status-abandoned' === $this->current_action() ) { |
|
| 527 | - give_update_payment_status( $id, 'abandoned' ); |
|
| 526 | + if ('set-status-abandoned' === $this->current_action()) { |
|
| 527 | + give_update_payment_status($id, 'abandoned'); |
|
| 528 | 528 | } |
| 529 | 529 | |
| 530 | - if ( 'set-status-preapproval' === $this->current_action() ) { |
|
| 531 | - give_update_payment_status( $id, 'preapproval' ); |
|
| 530 | + if ('set-status-preapproval' === $this->current_action()) { |
|
| 531 | + give_update_payment_status($id, 'preapproval'); |
|
| 532 | 532 | } |
| 533 | 533 | |
| 534 | - if ( 'resend-receipt' === $this->current_action() ) { |
|
| 535 | - give_email_donation_receipt( $id, false ); |
|
| 534 | + if ('resend-receipt' === $this->current_action()) { |
|
| 535 | + give_email_donation_receipt($id, false); |
|
| 536 | 536 | } |
| 537 | 537 | |
| 538 | - do_action( 'give_payments_table_do_bulk_action', $id, $this->current_action() ); |
|
| 538 | + do_action('give_payments_table_do_bulk_action', $id, $this->current_action()); |
|
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | } |
@@ -553,27 +553,27 @@ discard block |
||
| 553 | 553 | |
| 554 | 554 | $args = array(); |
| 555 | 555 | |
| 556 | - if ( isset( $_GET['user'] ) ) { |
|
| 557 | - $args['user'] = urldecode( $_GET['user'] ); |
|
| 558 | - } elseif ( isset( $_GET['s'] ) ) { |
|
| 559 | - $is_user = strpos( $_GET['s'], strtolower( 'user:' ) ) !== false; |
|
| 560 | - if ( $is_user ) { |
|
| 561 | - $args['user'] = absint( trim( str_replace( 'user:', '', strtolower( $_GET['s'] ) ) ) ); |
|
| 562 | - unset( $args['s'] ); |
|
| 556 | + if (isset($_GET['user'])) { |
|
| 557 | + $args['user'] = urldecode($_GET['user']); |
|
| 558 | + } elseif (isset($_GET['s'])) { |
|
| 559 | + $is_user = strpos($_GET['s'], strtolower('user:')) !== false; |
|
| 560 | + if ($is_user) { |
|
| 561 | + $args['user'] = absint(trim(str_replace('user:', '', strtolower($_GET['s'])))); |
|
| 562 | + unset($args['s']); |
|
| 563 | 563 | } else { |
| 564 | - $args['s'] = sanitize_text_field( $_GET['s'] ); |
|
| 564 | + $args['s'] = sanitize_text_field($_GET['s']); |
|
| 565 | 565 | } |
| 566 | 566 | } |
| 567 | 567 | |
| 568 | - if ( ! empty( $_GET['start-date'] ) ) { |
|
| 569 | - $args['start-date'] = urldecode( $_GET['start-date'] ); |
|
| 568 | + if ( ! empty($_GET['start-date'])) { |
|
| 569 | + $args['start-date'] = urldecode($_GET['start-date']); |
|
| 570 | 570 | } |
| 571 | 571 | |
| 572 | - if ( ! empty( $_GET['end-date'] ) ) { |
|
| 573 | - $args['end-date'] = urldecode( $_GET['end-date'] ); |
|
| 572 | + if ( ! empty($_GET['end-date'])) { |
|
| 573 | + $args['end-date'] = urldecode($_GET['end-date']); |
|
| 574 | 574 | } |
| 575 | 575 | |
| 576 | - $payment_count = give_count_payments( $args ); |
|
| 576 | + $payment_count = give_count_payments($args); |
|
| 577 | 577 | $this->complete_count = $payment_count->publish; |
| 578 | 578 | $this->pending_count = $payment_count->pending; |
| 579 | 579 | $this->refunded_count = $payment_count->refunded; |
@@ -582,7 +582,7 @@ discard block |
||
| 582 | 582 | $this->cancelled_count = $payment_count->cancelled; |
| 583 | 583 | $this->abandoned_count = $payment_count->abandoned; |
| 584 | 584 | |
| 585 | - foreach ( $payment_count as $count ) { |
|
| 585 | + foreach ($payment_count as $count) { |
|
| 586 | 586 | $this->total_count += $count; |
| 587 | 587 | } |
| 588 | 588 | } |
@@ -597,26 +597,26 @@ discard block |
||
| 597 | 597 | public function payments_data() { |
| 598 | 598 | |
| 599 | 599 | $per_page = $this->per_page; |
| 600 | - $orderby = isset( $_GET['orderby'] ) ? urldecode( $_GET['orderby'] ) : 'ID'; |
|
| 601 | - $order = isset( $_GET['order'] ) ? $_GET['order'] : 'DESC'; |
|
| 602 | - $user = isset( $_GET['user'] ) ? $_GET['user'] : null; |
|
| 603 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : give_get_payment_status_keys(); |
|
| 604 | - $meta_key = isset( $_GET['meta_key'] ) ? $_GET['meta_key'] : null; |
|
| 605 | - $year = isset( $_GET['year'] ) ? $_GET['year'] : null; |
|
| 606 | - $month = isset( $_GET['m'] ) ? $_GET['m'] : null; |
|
| 607 | - $day = isset( $_GET['day'] ) ? $_GET['day'] : null; |
|
| 608 | - $search = isset( $_GET['s'] ) ? sanitize_text_field( $_GET['s'] ) : null; |
|
| 609 | - $start_date = isset( $_GET['start-date'] ) ? sanitize_text_field( $_GET['start-date'] ) : null; |
|
| 610 | - $end_date = isset( $_GET['end-date'] ) ? sanitize_text_field( $_GET['end-date'] ) : $start_date; |
|
| 611 | - |
|
| 612 | - if ( ! empty( $search ) ) { |
|
| 600 | + $orderby = isset($_GET['orderby']) ? urldecode($_GET['orderby']) : 'ID'; |
|
| 601 | + $order = isset($_GET['order']) ? $_GET['order'] : 'DESC'; |
|
| 602 | + $user = isset($_GET['user']) ? $_GET['user'] : null; |
|
| 603 | + $status = isset($_GET['status']) ? $_GET['status'] : give_get_payment_status_keys(); |
|
| 604 | + $meta_key = isset($_GET['meta_key']) ? $_GET['meta_key'] : null; |
|
| 605 | + $year = isset($_GET['year']) ? $_GET['year'] : null; |
|
| 606 | + $month = isset($_GET['m']) ? $_GET['m'] : null; |
|
| 607 | + $day = isset($_GET['day']) ? $_GET['day'] : null; |
|
| 608 | + $search = isset($_GET['s']) ? sanitize_text_field($_GET['s']) : null; |
|
| 609 | + $start_date = isset($_GET['start-date']) ? sanitize_text_field($_GET['start-date']) : null; |
|
| 610 | + $end_date = isset($_GET['end-date']) ? sanitize_text_field($_GET['end-date']) : $start_date; |
|
| 611 | + |
|
| 612 | + if ( ! empty($search)) { |
|
| 613 | 613 | $status = 'any'; // Force all payment statuses when searching |
| 614 | 614 | } |
| 615 | 615 | |
| 616 | 616 | $args = array( |
| 617 | 617 | 'output' => 'payments', |
| 618 | 618 | 'number' => $per_page, |
| 619 | - 'page' => isset( $_GET['paged'] ) ? $_GET['paged'] : null, |
|
| 619 | + 'page' => isset($_GET['paged']) ? $_GET['paged'] : null, |
|
| 620 | 620 | 'orderby' => $orderby, |
| 621 | 621 | 'order' => $order, |
| 622 | 622 | 'user' => $user, |
@@ -630,14 +630,14 @@ discard block |
||
| 630 | 630 | 'end_date' => $end_date, |
| 631 | 631 | ); |
| 632 | 632 | |
| 633 | - if ( is_string( $search ) && false !== strpos( $search, 'txn:' ) ) { |
|
| 633 | + if (is_string($search) && false !== strpos($search, 'txn:')) { |
|
| 634 | 634 | |
| 635 | 635 | $args['search_in_notes'] = true; |
| 636 | - $args['s'] = trim( str_replace( 'txn:', '', $args['s'] ) ); |
|
| 636 | + $args['s'] = trim(str_replace('txn:', '', $args['s'])); |
|
| 637 | 637 | |
| 638 | 638 | } |
| 639 | 639 | |
| 640 | - $p_query = new Give_Payments_Query( $args ); |
|
| 640 | + $p_query = new Give_Payments_Query($args); |
|
| 641 | 641 | |
| 642 | 642 | return $p_query->get_payments(); |
| 643 | 643 | |
@@ -657,17 +657,17 @@ discard block |
||
| 657 | 657 | */ |
| 658 | 658 | public function prepare_items() { |
| 659 | 659 | |
| 660 | - wp_reset_vars( array( 'action', 'payment', 'orderby', 'order', 's' ) ); |
|
| 660 | + wp_reset_vars(array('action', 'payment', 'orderby', 'order', 's')); |
|
| 661 | 661 | |
| 662 | 662 | $columns = $this->get_columns(); |
| 663 | 663 | $hidden = array(); // No hidden columns |
| 664 | 664 | $sortable = $this->get_sortable_columns(); |
| 665 | 665 | $data = $this->payments_data(); |
| 666 | - $status = isset( $_GET['status'] ) ? $_GET['status'] : 'any'; |
|
| 666 | + $status = isset($_GET['status']) ? $_GET['status'] : 'any'; |
|
| 667 | 667 | |
| 668 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 668 | + $this->_column_headers = array($columns, $hidden, $sortable); |
|
| 669 | 669 | |
| 670 | - switch ( $status ) { |
|
| 670 | + switch ($status) { |
|
| 671 | 671 | case 'publish': |
| 672 | 672 | $total_items = $this->complete_count; |
| 673 | 673 | break; |
@@ -694,18 +694,18 @@ discard block |
||
| 694 | 694 | break; |
| 695 | 695 | default: |
| 696 | 696 | // Retrieve the count of the non-default-Give status |
| 697 | - $count = wp_count_posts( 'give_payment' ); |
|
| 697 | + $count = wp_count_posts('give_payment'); |
|
| 698 | 698 | $total_items = $count->{$status}; |
| 699 | 699 | } |
| 700 | 700 | |
| 701 | 701 | $this->items = $data; |
| 702 | 702 | |
| 703 | - $this->set_pagination_args( array( |
|
| 703 | + $this->set_pagination_args(array( |
|
| 704 | 704 | 'total_items' => $total_items, |
| 705 | 705 | // WE have to calculate the total number of items |
| 706 | 706 | 'per_page' => $this->per_page, |
| 707 | 707 | // WE have to determine how many items to show on a page |
| 708 | - 'total_pages' => ceil( $total_items / $this->per_page ) |
|
| 708 | + 'total_pages' => ceil($total_items / $this->per_page) |
|
| 709 | 709 | // WE have to calculate the total number of pages |
| 710 | 710 | ) |
| 711 | 711 | ); |