@@ -192,13 +192,13 @@ discard block |
||
| 192 | 192 | $name = isset( $option['name'] ) ? $option['name'] : ''; |
| 193 | 193 | $cb = "wpinv_{$option['type']}_callback"; |
| 194 | 194 | $section = "wpinv_settings_{$tab}_$section"; |
| 195 | - $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
| 195 | + $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
| 196 | 196 | |
| 197 | - if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
| 198 | - $tip = wpinv_clean( $option['desc'] ); |
|
| 199 | - $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
| 200 | - unset( $option['desc'] ); |
|
| 201 | - } |
|
| 197 | + if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
| 198 | + $tip = wpinv_clean( $option['desc'] ); |
|
| 199 | + $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
| 200 | + unset( $option['desc'] ); |
|
| 201 | + } |
|
| 202 | 202 | |
| 203 | 203 | // Loop through all tabs. |
| 204 | 204 | add_settings_field( |
@@ -225,9 +225,9 @@ discard block |
||
| 225 | 225 | 'faux' => isset( $option['faux'] ) ? $option['faux'] : false, |
| 226 | 226 | 'onchange' => isset( $option['onchange'] ) ? $option['onchange'] : '', |
| 227 | 227 | 'custom' => isset( $option['custom'] ) ? $option['custom'] : '', |
| 228 | - 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
| 229 | - 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
| 230 | - 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
| 228 | + 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
| 229 | + 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
| 230 | + 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
| 231 | 231 | 'cols' => isset( $option['cols'] ) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
| 232 | 232 | 'rows' => isset( $option['rows'] ) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
| 233 | 233 | ) |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | * @return array |
| 242 | 242 | */ |
| 243 | 243 | function wpinv_get_registered_settings() { |
| 244 | - return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
| 244 | + return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | /** |
@@ -260,18 +260,18 @@ discard block |
||
| 260 | 260 | */ |
| 261 | 261 | function wpinv_settings_sanitize( $input = array() ) { |
| 262 | 262 | |
| 263 | - $wpinv_options = wpinv_get_options(); |
|
| 264 | - $raw_referrer = wp_get_raw_referer(); |
|
| 263 | + $wpinv_options = wpinv_get_options(); |
|
| 264 | + $raw_referrer = wp_get_raw_referer(); |
|
| 265 | 265 | |
| 266 | 266 | if ( empty( $raw_referrer ) ) { |
| 267 | - return array_merge( $wpinv_options, $input ); |
|
| 267 | + return array_merge( $wpinv_options, $input ); |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | wp_parse_str( $raw_referrer, $referrer ); |
| 271 | 271 | |
| 272 | - if ( in_array( 'gp-setup', $referrer ) ) { |
|
| 273 | - return array_merge( $wpinv_options, $input ); |
|
| 274 | - } |
|
| 272 | + if ( in_array( 'gp-setup', $referrer ) ) { |
|
| 273 | + return array_merge( $wpinv_options, $input ); |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | 276 | $settings = wpinv_get_registered_settings(); |
| 277 | 277 | $tab = isset( $referrer['tab'] ) ? $referrer['tab'] : 'general'; |
@@ -293,10 +293,10 @@ discard block |
||
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | // General filter |
| 296 | - $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
| 296 | + $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
| 297 | 297 | |
| 298 | - // Key specific filter. |
|
| 299 | - $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
| 298 | + // Key specific filter. |
|
| 299 | + $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
| 300 | 300 | } |
| 301 | 301 | |
| 302 | 302 | // Loop through the whitelist and unset any that are empty for the tab being saved |
@@ -339,14 +339,14 @@ discard block |
||
| 339 | 339 | |
| 340 | 340 | foreach ( $new_rates as $rate ) { |
| 341 | 341 | |
| 342 | - $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
| 343 | - $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
| 344 | - $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
| 345 | - $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
| 346 | - $rate['global'] = empty( $rate['state'] ); |
|
| 347 | - $tax_rates[] = $rate; |
|
| 342 | + $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
| 343 | + $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
| 344 | + $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
| 345 | + $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
| 346 | + $rate['global'] = empty( $rate['state'] ); |
|
| 347 | + $tax_rates[] = $rate; |
|
| 348 | 348 | |
| 349 | - } |
|
| 349 | + } |
|
| 350 | 350 | |
| 351 | 351 | update_option( 'wpinv_tax_rates', $tax_rates ); |
| 352 | 352 | |
@@ -359,21 +359,21 @@ discard block |
||
| 359 | 359 | return $input; |
| 360 | 360 | } |
| 361 | 361 | |
| 362 | - if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
| 363 | - return $input; |
|
| 364 | - } |
|
| 362 | + if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
| 363 | + return $input; |
|
| 364 | + } |
|
| 365 | 365 | |
| 366 | 366 | $new_rules = ! empty( $_POST['tax_rules'] ) ? wp_kses_post_deep( array_values( $_POST['tax_rules'] ) ) : array(); |
| 367 | 367 | $tax_rules = array(); |
| 368 | 368 | |
| 369 | 369 | foreach ( $new_rules as $rule ) { |
| 370 | 370 | |
| 371 | - $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
| 372 | - $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
| 373 | - $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
| 374 | - $tax_rules[] = $rule; |
|
| 371 | + $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
| 372 | + $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
| 373 | + $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
| 374 | + $tax_rules[] = $rule; |
|
| 375 | 375 | |
| 376 | - } |
|
| 376 | + } |
|
| 377 | 377 | |
| 378 | 378 | update_option( 'wpinv_tax_rules', $tax_rules ); |
| 379 | 379 | |
@@ -386,11 +386,11 @@ discard block |
||
| 386 | 386 | $tabs['general'] = __( 'General', 'invoicing' ); |
| 387 | 387 | $tabs['gateways'] = __( 'Payment Gateways', 'invoicing' ); |
| 388 | 388 | $tabs['taxes'] = __( 'Taxes', 'invoicing' ); |
| 389 | - $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
| 389 | + $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
| 390 | 390 | |
| 391 | - if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
| 392 | - $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
| 393 | - } |
|
| 391 | + if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
| 392 | + $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
| 393 | + } |
|
| 394 | 394 | |
| 395 | 395 | $tabs['privacy'] = __( 'Privacy', 'invoicing' ); |
| 396 | 396 | $tabs['misc'] = __( 'Misc', 'invoicing' ); |
@@ -421,53 +421,53 @@ discard block |
||
| 421 | 421 | 'general' => apply_filters( |
| 422 | 422 | 'wpinv_settings_sections_general', |
| 423 | 423 | array( |
| 424 | - 'main' => __( 'General Settings', 'invoicing' ), |
|
| 425 | - 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
| 426 | - 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
| 427 | - 'labels' => __( 'Label Texts', 'invoicing' ), |
|
| 424 | + 'main' => __( 'General Settings', 'invoicing' ), |
|
| 425 | + 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
| 426 | + 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
| 427 | + 'labels' => __( 'Label Texts', 'invoicing' ), |
|
| 428 | 428 | ) |
| 429 | 429 | ), |
| 430 | 430 | 'gateways' => apply_filters( |
| 431 | 431 | 'wpinv_settings_sections_gateways', |
| 432 | 432 | array( |
| 433 | - 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
| 433 | + 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
| 434 | 434 | ) |
| 435 | 435 | ), |
| 436 | 436 | 'taxes' => apply_filters( |
| 437 | 437 | 'wpinv_settings_sections_taxes', |
| 438 | 438 | array( |
| 439 | - 'main' => __( 'Tax Settings', 'invoicing' ), |
|
| 440 | - 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
| 441 | - 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
| 442 | - 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
| 439 | + 'main' => __( 'Tax Settings', 'invoicing' ), |
|
| 440 | + 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
| 441 | + 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
| 442 | + 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
| 443 | 443 | ) |
| 444 | 444 | ), |
| 445 | 445 | 'emails' => apply_filters( |
| 446 | 446 | 'wpinv_settings_sections_emails', |
| 447 | 447 | array( |
| 448 | - 'main' => __( 'Email Settings', 'invoicing' ), |
|
| 448 | + 'main' => __( 'Email Settings', 'invoicing' ), |
|
| 449 | 449 | ) |
| 450 | 450 | ), |
| 451 | 451 | |
| 452 | - 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
| 452 | + 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
| 453 | 453 | |
| 454 | 454 | 'privacy' => apply_filters( |
| 455 | 455 | 'wpinv_settings_sections_privacy', |
| 456 | 456 | array( |
| 457 | - 'main' => __( 'Privacy policy', 'invoicing' ), |
|
| 457 | + 'main' => __( 'Privacy policy', 'invoicing' ), |
|
| 458 | 458 | ) |
| 459 | 459 | ), |
| 460 | 460 | 'misc' => apply_filters( |
| 461 | 461 | 'wpinv_settings_sections_misc', |
| 462 | 462 | array( |
| 463 | - 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
| 464 | - 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
| 463 | + 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
| 464 | + 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
| 465 | 465 | ) |
| 466 | 466 | ), |
| 467 | 467 | 'tools' => apply_filters( |
| 468 | 468 | 'wpinv_settings_sections_tools', |
| 469 | 469 | array( |
| 470 | - 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
| 470 | + 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
| 471 | 471 | ) |
| 472 | 472 | ), |
| 473 | 473 | ); |
@@ -478,46 +478,46 @@ discard block |
||
| 478 | 478 | } |
| 479 | 479 | |
| 480 | 480 | function wpinv_get_pages( $with_slug = false, $default_label = null ) { |
| 481 | - $pages_options = array(); |
|
| 481 | + $pages_options = array(); |
|
| 482 | 482 | |
| 483 | - if ( $default_label !== null && $default_label !== false ) { |
|
| 484 | - $pages_options = array( '' => $default_label ); // Blank option |
|
| 485 | - } |
|
| 483 | + if ( $default_label !== null && $default_label !== false ) { |
|
| 484 | + $pages_options = array( '' => $default_label ); // Blank option |
|
| 485 | + } |
|
| 486 | 486 | |
| 487 | - $pages = get_pages(); |
|
| 488 | - if ( $pages ) { |
|
| 489 | - foreach ( $pages as $page ) { |
|
| 490 | - $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
|
| 487 | + $pages = get_pages(); |
|
| 488 | + if ( $pages ) { |
|
| 489 | + foreach ( $pages as $page ) { |
|
| 490 | + $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
|
| 491 | 491 | $pages_options[ $page->ID ] = $title; |
| 492 | - } |
|
| 493 | - } |
|
| 492 | + } |
|
| 493 | + } |
|
| 494 | 494 | |
| 495 | - return $pages_options; |
|
| 495 | + return $pages_options; |
|
| 496 | 496 | } |
| 497 | 497 | |
| 498 | 498 | function wpinv_header_callback( $args ) { |
| 499 | - if ( ! empty( $args['desc'] ) ) { |
|
| 499 | + if ( ! empty( $args['desc'] ) ) { |
|
| 500 | 500 | echo wp_kses_post( $args['desc'] ); |
| 501 | 501 | } |
| 502 | 502 | } |
| 503 | 503 | |
| 504 | 504 | function wpinv_hidden_callback( $args ) { |
| 505 | 505 | |
| 506 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 507 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 506 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 507 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 508 | 508 | |
| 509 | - if ( isset( $args['set_value'] ) ) { |
|
| 510 | - $value = $args['set_value']; |
|
| 511 | - } |
|
| 509 | + if ( isset( $args['set_value'] ) ) { |
|
| 510 | + $value = $args['set_value']; |
|
| 511 | + } |
|
| 512 | 512 | |
| 513 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
| 514 | - $args['readonly'] = true; |
|
| 515 | - $name = ''; |
|
| 516 | - } else { |
|
| 517 | - $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
| 518 | - } |
|
| 513 | + if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
| 514 | + $args['readonly'] = true; |
|
| 515 | + $name = ''; |
|
| 516 | + } else { |
|
| 517 | + $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
| 518 | + } |
|
| 519 | 519 | |
| 520 | - echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
| 520 | + echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
| 521 | 521 | |
| 522 | 522 | } |
| 523 | 523 | |
@@ -526,12 +526,12 @@ discard block |
||
| 526 | 526 | */ |
| 527 | 527 | function wpinv_checkbox_callback( $args ) { |
| 528 | 528 | |
| 529 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 530 | - $std = wpinv_get_option( $args['id'], $std ); |
|
| 531 | - $id = esc_attr( $args['id'] ); |
|
| 529 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 530 | + $std = wpinv_get_option( $args['id'], $std ); |
|
| 531 | + $id = esc_attr( $args['id'] ); |
|
| 532 | 532 | |
| 533 | - getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
| 534 | - ?> |
|
| 533 | + getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
| 534 | + ?> |
|
| 535 | 535 | <fieldset> |
| 536 | 536 | <label> |
| 537 | 537 | <input id="wpinv-settings-<?php echo esc_attr( $id ); ?>" name="wpinv_settings[<?php echo esc_attr( $id ); ?>]" <?php checked( empty( $std ), false ); ?> value="1" type="checkbox" /> |
@@ -543,75 +543,75 @@ discard block |
||
| 543 | 543 | |
| 544 | 544 | function wpinv_multicheck_callback( $args ) { |
| 545 | 545 | |
| 546 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
| 547 | - $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
| 546 | + $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
| 547 | + $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
| 548 | 548 | |
| 549 | - if ( ! empty( $args['options'] ) ) { |
|
| 549 | + if ( ! empty( $args['options'] ) ) { |
|
| 550 | 550 | |
| 551 | - $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
| 552 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 551 | + $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
| 552 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 553 | 553 | |
| 554 | - echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
| 554 | + echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
| 555 | 555 | foreach ( $args['options'] as $key => $option ) : |
| 556 | - $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
| 557 | - if ( in_array( $sanitize_key, $value ) ) { |
|
| 558 | - $enabled = $sanitize_key; |
|
| 559 | - } else { |
|
| 560 | - $enabled = null; |
|
| 561 | - } |
|
| 562 | - echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
| 563 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
| 564 | - endforeach; |
|
| 565 | - echo '</div>'; |
|
| 566 | - echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 567 | - } |
|
| 556 | + $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
| 557 | + if ( in_array( $sanitize_key, $value ) ) { |
|
| 558 | + $enabled = $sanitize_key; |
|
| 559 | + } else { |
|
| 560 | + $enabled = null; |
|
| 561 | + } |
|
| 562 | + echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
| 563 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
| 564 | + endforeach; |
|
| 565 | + echo '</div>'; |
|
| 566 | + echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 567 | + } |
|
| 568 | 568 | } |
| 569 | 569 | |
| 570 | 570 | function wpinv_payment_icons_callback( $args ) { |
| 571 | 571 | |
| 572 | 572 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 573 | - $value = wpinv_get_option( $args['id'], false ); |
|
| 573 | + $value = wpinv_get_option( $args['id'], false ); |
|
| 574 | 574 | |
| 575 | - if ( ! empty( $args['options'] ) ) { |
|
| 576 | - foreach ( $args['options'] as $key => $option ) { |
|
| 575 | + if ( ! empty( $args['options'] ) ) { |
|
| 576 | + foreach ( $args['options'] as $key => $option ) { |
|
| 577 | 577 | $sanitize_key = wpinv_sanitize_key( $key ); |
| 578 | 578 | |
| 579 | - if ( empty( $value ) ) { |
|
| 580 | - $enabled = $option; |
|
| 581 | - } else { |
|
| 582 | - $enabled = null; |
|
| 583 | - } |
|
| 584 | - |
|
| 585 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
| 586 | - |
|
| 587 | - echo '<input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
| 588 | - |
|
| 589 | - if ( wpinv_string_is_image_url( $key ) ) { |
|
| 590 | - echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 591 | - } else { |
|
| 592 | - $card = strtolower( str_replace( ' ', '', $option ) ); |
|
| 593 | - |
|
| 594 | - if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
| 595 | - $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
| 596 | - } else { |
|
| 597 | - $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
| 598 | - $content_dir = WP_CONTENT_DIR; |
|
| 599 | - |
|
| 600 | - if ( function_exists( 'wp_normalize_path' ) ) { |
|
| 601 | - // Replaces backslashes with forward slashes for Windows systems |
|
| 602 | - $image = wp_normalize_path( $image ); |
|
| 603 | - $content_dir = wp_normalize_path( $content_dir ); |
|
| 604 | - } |
|
| 605 | - |
|
| 606 | - $image = str_replace( $content_dir, content_url(), $image ); |
|
| 607 | - } |
|
| 608 | - |
|
| 609 | - echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 610 | - } |
|
| 611 | - echo wp_kses_post( $option ) . '</label>'; |
|
| 612 | - } |
|
| 613 | - echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 614 | - } |
|
| 579 | + if ( empty( $value ) ) { |
|
| 580 | + $enabled = $option; |
|
| 581 | + } else { |
|
| 582 | + $enabled = null; |
|
| 583 | + } |
|
| 584 | + |
|
| 585 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
| 586 | + |
|
| 587 | + echo '<input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
| 588 | + |
|
| 589 | + if ( wpinv_string_is_image_url( $key ) ) { |
|
| 590 | + echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 591 | + } else { |
|
| 592 | + $card = strtolower( str_replace( ' ', '', $option ) ); |
|
| 593 | + |
|
| 594 | + if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
| 595 | + $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
| 596 | + } else { |
|
| 597 | + $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
| 598 | + $content_dir = WP_CONTENT_DIR; |
|
| 599 | + |
|
| 600 | + if ( function_exists( 'wp_normalize_path' ) ) { |
|
| 601 | + // Replaces backslashes with forward slashes for Windows systems |
|
| 602 | + $image = wp_normalize_path( $image ); |
|
| 603 | + $content_dir = wp_normalize_path( $content_dir ); |
|
| 604 | + } |
|
| 605 | + |
|
| 606 | + $image = str_replace( $content_dir, content_url(), $image ); |
|
| 607 | + } |
|
| 608 | + |
|
| 609 | + echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 610 | + } |
|
| 611 | + echo wp_kses_post( $option ) . '</label>'; |
|
| 612 | + } |
|
| 613 | + echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 614 | + } |
|
| 615 | 615 | } |
| 616 | 616 | |
| 617 | 617 | /** |
@@ -619,9 +619,9 @@ discard block |
||
| 619 | 619 | */ |
| 620 | 620 | function wpinv_radio_callback( $args ) { |
| 621 | 621 | |
| 622 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 623 | - $std = wpinv_get_option( $args['id'], $std ); |
|
| 624 | - ?> |
|
| 622 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 623 | + $std = wpinv_get_option( $args['id'], $std ); |
|
| 624 | + ?> |
|
| 625 | 625 | <fieldset> |
| 626 | 626 | <ul id="wpinv-settings-<?php echo esc_attr( $args['id'] ); ?>" style="margin-top: 0;"> |
| 627 | 627 | <?php foreach ( $args['options'] as $key => $option ) : ?> |
@@ -635,7 +635,7 @@ discard block |
||
| 635 | 635 | </ul> |
| 636 | 636 | </fieldset> |
| 637 | 637 | <?php |
| 638 | - getpaid_settings_description_callback( $args ); |
|
| 638 | + getpaid_settings_description_callback( $args ); |
|
| 639 | 639 | } |
| 640 | 640 | |
| 641 | 641 | /** |
@@ -643,10 +643,10 @@ discard block |
||
| 643 | 643 | */ |
| 644 | 644 | function getpaid_settings_description_callback( $args ) { |
| 645 | 645 | |
| 646 | - if ( ! empty( $args['desc'] ) ) { |
|
| 647 | - $description = $args['desc']; |
|
| 648 | - echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
| 649 | - } |
|
| 646 | + if ( ! empty( $args['desc'] ) ) { |
|
| 647 | + $description = $args['desc']; |
|
| 648 | + echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
| 649 | + } |
|
| 650 | 650 | |
| 651 | 651 | } |
| 652 | 652 | |
@@ -655,7 +655,7 @@ discard block |
||
| 655 | 655 | */ |
| 656 | 656 | function wpinv_gateways_callback() { |
| 657 | 657 | |
| 658 | - ?> |
|
| 658 | + ?> |
|
| 659 | 659 | </td> |
| 660 | 660 | </tr> |
| 661 | 661 | <tr class="bsui"> |
@@ -669,26 +669,26 @@ discard block |
||
| 669 | 669 | |
| 670 | 670 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 671 | 671 | $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
| 672 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 673 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 672 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 673 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 674 | 674 | |
| 675 | - echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
| 675 | + echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
| 676 | 676 | |
| 677 | - foreach ( $args['options'] as $key => $option ) : |
|
| 677 | + foreach ( $args['options'] as $key => $option ) : |
|
| 678 | 678 | |
| 679 | - echo '<option value="' . esc_attr( $key ) . '" '; |
|
| 679 | + echo '<option value="' . esc_attr( $key ) . '" '; |
|
| 680 | 680 | |
| 681 | - if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
| 681 | + if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
| 682 | 682 | selected( $key, $args['selected'] ); |
| 683 | 683 | } else { |
| 684 | 684 | selected( $key, $value ); |
| 685 | 685 | } |
| 686 | 686 | |
| 687 | - echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
| 688 | - endforeach; |
|
| 687 | + echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
| 688 | + endforeach; |
|
| 689 | 689 | |
| 690 | - echo '</select>'; |
|
| 691 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 690 | + echo '</select>'; |
|
| 691 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 692 | 692 | } |
| 693 | 693 | |
| 694 | 694 | /** |
@@ -699,38 +699,38 @@ discard block |
||
| 699 | 699 | */ |
| 700 | 700 | function wpinv_settings_attrs_helper( $args ) { |
| 701 | 701 | |
| 702 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 703 | - $id = esc_attr( $args['id'] ); |
|
| 704 | - $value = is_scalar( $value ) ? $value : ''; |
|
| 705 | - |
|
| 706 | - $attrs = array( |
|
| 707 | - 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
| 708 | - 'readonly' => ! empty( $args['faux'] ), |
|
| 709 | - 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
| 710 | - 'id' => 'wpinv-settings-' . $args['id'], |
|
| 711 | - 'style' => $args['style'], |
|
| 712 | - 'class' => $args['class'], |
|
| 713 | - 'placeholder' => $args['placeholder'], |
|
| 714 | - 'data-placeholder' => $args['placeholder'], |
|
| 715 | - ); |
|
| 702 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 703 | + $id = esc_attr( $args['id'] ); |
|
| 704 | + $value = is_scalar( $value ) ? $value : ''; |
|
| 705 | + |
|
| 706 | + $attrs = array( |
|
| 707 | + 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
| 708 | + 'readonly' => ! empty( $args['faux'] ), |
|
| 709 | + 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
| 710 | + 'id' => 'wpinv-settings-' . $args['id'], |
|
| 711 | + 'style' => $args['style'], |
|
| 712 | + 'class' => $args['class'], |
|
| 713 | + 'placeholder' => $args['placeholder'], |
|
| 714 | + 'data-placeholder' => $args['placeholder'], |
|
| 715 | + ); |
|
| 716 | 716 | |
| 717 | - if ( ! empty( $args['onchange'] ) ) { |
|
| 718 | - $attrs['onchange'] = $args['onchange']; |
|
| 719 | - } |
|
| 717 | + if ( ! empty( $args['onchange'] ) ) { |
|
| 718 | + $attrs['onchange'] = $args['onchange']; |
|
| 719 | + } |
|
| 720 | 720 | |
| 721 | - foreach ( $attrs as $key => $value ) { |
|
| 721 | + foreach ( $attrs as $key => $value ) { |
|
| 722 | 722 | |
| 723 | - if ( false === $value ) { |
|
| 724 | - continue; |
|
| 725 | - } |
|
| 723 | + if ( false === $value ) { |
|
| 724 | + continue; |
|
| 725 | + } |
|
| 726 | 726 | |
| 727 | - if ( true === $value ) { |
|
| 728 | - echo ' ' . esc_attr( $key ); |
|
| 729 | - } else { |
|
| 730 | - echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
| 731 | - } |
|
| 727 | + if ( true === $value ) { |
|
| 728 | + echo ' ' . esc_attr( $key ); |
|
| 729 | + } else { |
|
| 730 | + echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
| 731 | + } |
|
| 732 | 732 | |
| 733 | - } |
|
| 733 | + } |
|
| 734 | 734 | |
| 735 | 735 | } |
| 736 | 736 | |
@@ -739,9 +739,9 @@ discard block |
||
| 739 | 739 | */ |
| 740 | 740 | function wpinv_text_callback( $args ) { |
| 741 | 741 | |
| 742 | - $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 742 | + $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 743 | 743 | |
| 744 | - ?> |
|
| 744 | + ?> |
|
| 745 | 745 | <label style="width: 100%;"> |
| 746 | 746 | <input type="text" <?php wpinv_settings_attrs_helper( $args ); ?>> |
| 747 | 747 | <?php echo wp_kses_post( $desc ); ?> |
@@ -755,9 +755,9 @@ discard block |
||
| 755 | 755 | */ |
| 756 | 756 | function wpinv_number_callback( $args ) { |
| 757 | 757 | |
| 758 | - $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 758 | + $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 759 | 759 | |
| 760 | - ?> |
|
| 760 | + ?> |
|
| 761 | 761 | <label style="width: 100%;"> |
| 762 | 762 | <input type="number" step="<?php echo esc_attr( $args['step'] ); ?>" max="<?php echo intval( $args['max'] ); ?>" min="<?php echo intval( $args['min'] ); ?>" <?php wpinv_settings_attrs_helper( $args ); ?>> |
| 763 | 763 | <?php echo wp_kses_post( $desc ); ?> |
@@ -769,34 +769,34 @@ discard block |
||
| 769 | 769 | function wpinv_textarea_callback( $args ) { |
| 770 | 770 | |
| 771 | 771 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 772 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 773 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 772 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 773 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 774 | 774 | |
| 775 | 775 | $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
| 776 | 776 | $class = ( isset( $args['class'] ) && ! is_null( $args['class'] ) ) ? $args['class'] : 'large-text'; |
| 777 | 777 | |
| 778 | - echo '<textarea class="' . esc_attr( $class ) . ' txtarea-' . esc_attr( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . esc_attr( $args['cols'] ) . '" rows="' . esc_attr( $args['rows'] ) . '" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 779 | - echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 778 | + echo '<textarea class="' . esc_attr( $class ) . ' txtarea-' . esc_attr( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . esc_attr( $args['cols'] ) . '" rows="' . esc_attr( $args['rows'] ) . '" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 779 | + echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 780 | 780 | |
| 781 | 781 | } |
| 782 | 782 | |
| 783 | 783 | function wpinv_password_callback( $args ) { |
| 784 | 784 | |
| 785 | 785 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 786 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 787 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 786 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 787 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 788 | 788 | |
| 789 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 790 | - echo '<input type="password" class="' . esc_attr( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
| 791 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 789 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 790 | + echo '<input type="password" class="' . esc_attr( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
| 791 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 792 | 792 | |
| 793 | 793 | } |
| 794 | 794 | |
| 795 | 795 | function wpinv_missing_callback( $args ) { |
| 796 | - printf( |
|
| 797 | - esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
| 798 | - '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
| 799 | - ); |
|
| 796 | + printf( |
|
| 797 | + esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
| 798 | + '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
| 799 | + ); |
|
| 800 | 800 | } |
| 801 | 801 | |
| 802 | 802 | /** |
@@ -804,13 +804,13 @@ discard block |
||
| 804 | 804 | */ |
| 805 | 805 | function wpinv_select_callback( $args ) { |
| 806 | 806 | |
| 807 | - $desc = wp_kses_post( $args['desc'] ); |
|
| 808 | - $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 809 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 810 | - $value = wpinv_get_option( $args['id'], $value ); |
|
| 811 | - $rand = uniqid( 'random_id' ); |
|
| 807 | + $desc = wp_kses_post( $args['desc'] ); |
|
| 808 | + $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 809 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 810 | + $value = wpinv_get_option( $args['id'], $value ); |
|
| 811 | + $rand = uniqid( 'random_id' ); |
|
| 812 | 812 | |
| 813 | - ?> |
|
| 813 | + ?> |
|
| 814 | 814 | <label style="width: 100%;"> |
| 815 | 815 | <select <?php wpinv_settings_attrs_helper( $args ); ?> data-allow-clear="true"> |
| 816 | 816 | <?php foreach ( $args['options'] as $option => $name ) : ?> |
@@ -843,50 +843,50 @@ discard block |
||
| 843 | 843 | function wpinv_color_select_callback( $args ) { |
| 844 | 844 | |
| 845 | 845 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 846 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 847 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 846 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 847 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 848 | 848 | |
| 849 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
| 849 | + echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
| 850 | 850 | |
| 851 | - foreach ( $args['options'] as $option => $color ) { |
|
| 852 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
| 853 | - } |
|
| 851 | + foreach ( $args['options'] as $option => $color ) { |
|
| 852 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
| 853 | + } |
|
| 854 | 854 | |
| 855 | - echo '</select>'; |
|
| 856 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 855 | + echo '</select>'; |
|
| 856 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 857 | 857 | |
| 858 | 858 | } |
| 859 | 859 | |
| 860 | 860 | function wpinv_rich_editor_callback( $args ) { |
| 861 | - global $wp_version; |
|
| 861 | + global $wp_version; |
|
| 862 | 862 | |
| 863 | 863 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 864 | 864 | |
| 865 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 866 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 865 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 866 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 867 | 867 | |
| 868 | - if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
| 869 | - $value = $std; |
|
| 870 | - } |
|
| 868 | + if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
| 869 | + $value = $std; |
|
| 870 | + } |
|
| 871 | 871 | |
| 872 | - $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
| 872 | + $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
| 873 | 873 | |
| 874 | - echo '<div class="getpaid-settings-editor-input">'; |
|
| 875 | - if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
| 876 | - wp_editor( |
|
| 874 | + echo '<div class="getpaid-settings-editor-input">'; |
|
| 875 | + if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
| 876 | + wp_editor( |
|
| 877 | 877 | stripslashes( $value ), |
| 878 | 878 | 'wpinv_settings_' . esc_attr( $args['id'] ), |
| 879 | 879 | array( |
| 880 | - 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
| 881 | - 'textarea_rows' => absint( $rows ), |
|
| 882 | - 'media_buttons' => false, |
|
| 880 | + 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
| 881 | + 'textarea_rows' => absint( $rows ), |
|
| 882 | + 'media_buttons' => false, |
|
| 883 | 883 | ) |
| 884 | 884 | ); |
| 885 | - } else { |
|
| 886 | - echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 887 | - } |
|
| 885 | + } else { |
|
| 886 | + echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
| 887 | + } |
|
| 888 | 888 | |
| 889 | - echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 889 | + echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 890 | 890 | |
| 891 | 891 | } |
| 892 | 892 | |
@@ -894,51 +894,51 @@ discard block |
||
| 894 | 894 | |
| 895 | 895 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 896 | 896 | |
| 897 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 898 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 897 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 898 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 899 | 899 | |
| 900 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 901 | - echo '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
| 902 | - echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
| 903 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 900 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 901 | + echo '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
| 902 | + echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
| 903 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 904 | 904 | |
| 905 | 905 | } |
| 906 | 906 | |
| 907 | 907 | function wpinv_color_callback( $args ) { |
| 908 | 908 | |
| 909 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 910 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 909 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 910 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 911 | 911 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 912 | 912 | |
| 913 | - echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $std ) . '" />'; |
|
| 914 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 913 | + echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $std ) . '" />'; |
|
| 914 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 915 | 915 | |
| 916 | 916 | } |
| 917 | 917 | |
| 918 | 918 | function wpinv_country_states_callback( $args ) { |
| 919 | 919 | |
| 920 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 921 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 920 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 921 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 922 | 922 | |
| 923 | 923 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 924 | 924 | |
| 925 | - if ( isset( $args['placeholder'] ) ) { |
|
| 926 | - $placeholder = $args['placeholder']; |
|
| 927 | - } else { |
|
| 928 | - $placeholder = ''; |
|
| 929 | - } |
|
| 925 | + if ( isset( $args['placeholder'] ) ) { |
|
| 926 | + $placeholder = $args['placeholder']; |
|
| 927 | + } else { |
|
| 928 | + $placeholder = ''; |
|
| 929 | + } |
|
| 930 | 930 | |
| 931 | - $states = wpinv_get_country_states(); |
|
| 931 | + $states = wpinv_get_country_states(); |
|
| 932 | 932 | |
| 933 | - $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
| 934 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="' . esc_attr( $class ) . '" data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
| 933 | + $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
| 934 | + echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="' . esc_attr( $class ) . '" data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
| 935 | 935 | |
| 936 | - foreach ( $states as $option => $name ) { |
|
| 937 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
| 938 | - } |
|
| 936 | + foreach ( $states as $option => $name ) { |
|
| 937 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
| 938 | + } |
|
| 939 | 939 | |
| 940 | - echo '</select>'; |
|
| 941 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 940 | + echo '</select>'; |
|
| 941 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 942 | 942 | |
| 943 | 943 | } |
| 944 | 944 | |
@@ -947,7 +947,7 @@ discard block |
||
| 947 | 947 | */ |
| 948 | 948 | function wpinv_tax_rates_callback() { |
| 949 | 949 | |
| 950 | - ?> |
|
| 950 | + ?> |
|
| 951 | 951 | </td> |
| 952 | 952 | </tr> |
| 953 | 953 | <tr class="bsui"> |
@@ -963,9 +963,9 @@ discard block |
||
| 963 | 963 | */ |
| 964 | 964 | function wpinv_tax_rate_callback( $tax_rate, $key ) { |
| 965 | 965 | |
| 966 | - $key = sanitize_key( $key ); |
|
| 967 | - $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
| 968 | - include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
| 966 | + $key = sanitize_key( $key ); |
|
| 967 | + $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
| 968 | + include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
| 969 | 969 | |
| 970 | 970 | } |
| 971 | 971 | |
@@ -974,7 +974,7 @@ discard block |
||
| 974 | 974 | */ |
| 975 | 975 | function wpinv_tax_rules_callback() { |
| 976 | 976 | |
| 977 | - ?> |
|
| 977 | + ?> |
|
| 978 | 978 | </td> |
| 979 | 979 | </tr> |
| 980 | 980 | <tr class="bsui"> |
@@ -1012,14 +1012,14 @@ discard block |
||
| 1012 | 1012 | <td> |
| 1013 | 1013 | <a href=" |
| 1014 | 1014 | <?php |
| 1015 | - echo esc_url( |
|
| 1016 | - wp_nonce_url( |
|
| 1017 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 1018 | - 'getpaid-nonce', |
|
| 1019 | - 'getpaid-nonce' |
|
| 1020 | - ) |
|
| 1021 | - ); |
|
| 1022 | - ?> |
|
| 1015 | + echo esc_url( |
|
| 1016 | + wp_nonce_url( |
|
| 1017 | + add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 1018 | + 'getpaid-nonce', |
|
| 1019 | + 'getpaid-nonce' |
|
| 1020 | + ) |
|
| 1021 | + ); |
|
| 1022 | + ?> |
|
| 1023 | 1023 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1024 | 1024 | </td> |
| 1025 | 1025 | </tr> |
@@ -1031,14 +1031,14 @@ discard block |
||
| 1031 | 1031 | <td> |
| 1032 | 1032 | <a href=" |
| 1033 | 1033 | <?php |
| 1034 | - echo esc_url( |
|
| 1035 | - wp_nonce_url( |
|
| 1036 | - add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
| 1037 | - 'getpaid-nonce', |
|
| 1038 | - 'getpaid-nonce' |
|
| 1039 | - ) |
|
| 1040 | - ); |
|
| 1041 | - ?> |
|
| 1034 | + echo esc_url( |
|
| 1035 | + wp_nonce_url( |
|
| 1036 | + add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
| 1037 | + 'getpaid-nonce', |
|
| 1038 | + 'getpaid-nonce' |
|
| 1039 | + ) |
|
| 1040 | + ); |
|
| 1041 | + ?> |
|
| 1042 | 1042 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1043 | 1043 | </td> |
| 1044 | 1044 | </tr> |
@@ -1050,14 +1050,14 @@ discard block |
||
| 1050 | 1050 | <td> |
| 1051 | 1051 | <a href=" |
| 1052 | 1052 | <?php |
| 1053 | - echo esc_url( |
|
| 1054 | - wp_nonce_url( |
|
| 1055 | - add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
| 1056 | - 'getpaid-nonce', |
|
| 1057 | - 'getpaid-nonce' |
|
| 1058 | - ) |
|
| 1059 | - ); |
|
| 1060 | - ?> |
|
| 1053 | + echo esc_url( |
|
| 1054 | + wp_nonce_url( |
|
| 1055 | + add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
| 1056 | + 'getpaid-nonce', |
|
| 1057 | + 'getpaid-nonce' |
|
| 1058 | + ) |
|
| 1059 | + ); |
|
| 1060 | + ?> |
|
| 1061 | 1061 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1062 | 1062 | </td> |
| 1063 | 1063 | </tr> |
@@ -1070,14 +1070,14 @@ discard block |
||
| 1070 | 1070 | <td> |
| 1071 | 1071 | <a href=" |
| 1072 | 1072 | <?php |
| 1073 | - echo esc_url( |
|
| 1074 | - wp_nonce_url( |
|
| 1075 | - add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
| 1076 | - 'getpaid-nonce', |
|
| 1077 | - 'getpaid-nonce' |
|
| 1078 | - ) |
|
| 1079 | - ); |
|
| 1080 | - ?> |
|
| 1073 | + echo esc_url( |
|
| 1074 | + wp_nonce_url( |
|
| 1075 | + add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
| 1076 | + 'getpaid-nonce', |
|
| 1077 | + 'getpaid-nonce' |
|
| 1078 | + ) |
|
| 1079 | + ); |
|
| 1080 | + ?> |
|
| 1081 | 1081 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1082 | 1082 | </td> |
| 1083 | 1083 | </tr> |
@@ -1090,8 +1090,8 @@ discard block |
||
| 1090 | 1090 | <td> |
| 1091 | 1091 | <a href=" |
| 1092 | 1092 | <?php |
| 1093 | - echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
| 1094 | - ?> |
|
| 1093 | + echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
| 1094 | + ?> |
|
| 1095 | 1095 | " class="button button-primary"><?php esc_html_e( 'Launch', 'invoicing' ); ?></a> |
| 1096 | 1096 | </td> |
| 1097 | 1097 | </tr> |
@@ -1105,19 +1105,19 @@ discard block |
||
| 1105 | 1105 | |
| 1106 | 1106 | |
| 1107 | 1107 | function wpinv_descriptive_text_callback( $args ) { |
| 1108 | - echo wp_kses_post( $args['desc'] ); |
|
| 1108 | + echo wp_kses_post( $args['desc'] ); |
|
| 1109 | 1109 | } |
| 1110 | 1110 | |
| 1111 | 1111 | function wpinv_raw_html_callback( $args ) { |
| 1112 | - echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
| 1112 | + echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
| 1113 | 1113 | } |
| 1114 | 1114 | |
| 1115 | 1115 | function wpinv_hook_callback( $args ) { |
| 1116 | - do_action( 'wpinv_' . $args['id'], $args ); |
|
| 1116 | + do_action( 'wpinv_' . $args['id'], $args ); |
|
| 1117 | 1117 | } |
| 1118 | 1118 | |
| 1119 | 1119 | function wpinv_set_settings_cap() { |
| 1120 | - return wpinv_get_capability(); |
|
| 1120 | + return wpinv_get_capability(); |
|
| 1121 | 1121 | } |
| 1122 | 1122 | add_filter( 'option_page_capability_wpinv_settings', 'wpinv_set_settings_cap' ); |
| 1123 | 1123 | |
@@ -1141,15 +1141,15 @@ discard block |
||
| 1141 | 1141 | */ |
| 1142 | 1142 | function wpinv_get_merge_tags_help_text( $subscription = false ) { |
| 1143 | 1143 | |
| 1144 | - $url = $subscription ? 'https://gist.github.com/picocodes/3d213982d57c34edf7a46fd3f0e8583e' : 'https://gist.github.com/picocodes/43bdc4d4bbba844534b2722e2af0b58f'; |
|
| 1145 | - $link = sprintf( |
|
| 1146 | - '<strong><a href="%s" target="_blank">%s</a></strong>', |
|
| 1147 | - $url, |
|
| 1148 | - esc_html__( 'View available merge tags.', 'wpinv-quotes' ) |
|
| 1149 | - ); |
|
| 1144 | + $url = $subscription ? 'https://gist.github.com/picocodes/3d213982d57c34edf7a46fd3f0e8583e' : 'https://gist.github.com/picocodes/43bdc4d4bbba844534b2722e2af0b58f'; |
|
| 1145 | + $link = sprintf( |
|
| 1146 | + '<strong><a href="%s" target="_blank">%s</a></strong>', |
|
| 1147 | + $url, |
|
| 1148 | + esc_html__( 'View available merge tags.', 'wpinv-quotes' ) |
|
| 1149 | + ); |
|
| 1150 | 1150 | |
| 1151 | - $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
| 1151 | + $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
| 1152 | 1152 | |
| 1153 | - return "$description $link"; |
|
| 1153 | + return "$description $link"; |
|
| 1154 | 1154 | |
| 1155 | 1155 | } |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | |
| 12 | 12 | // Load WP_List_Table if not loaded |
| 13 | 13 | if ( ! class_exists( 'WP_List_Table' ) ) { |
| 14 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 14 | + require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
| 15 | 15 | } |
| 16 | 16 | |
| 17 | 17 | /** |
@@ -23,375 +23,375 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | class WPInv_Customers_Table extends WP_List_Table { |
| 25 | 25 | |
| 26 | - /** |
|
| 27 | - * @var int Number of items per page |
|
| 28 | - * @since 1.0.19 |
|
| 29 | - */ |
|
| 30 | - public $per_page = 10; |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * @var int Number of items |
|
| 34 | - * @since 1.0.19 |
|
| 35 | - */ |
|
| 36 | - public $total = 0; |
|
| 37 | - |
|
| 38 | - /** |
|
| 39 | - * Get things started |
|
| 40 | - * |
|
| 41 | - * @since 1.0.19 |
|
| 42 | - * @see WP_List_Table::__construct() |
|
| 43 | - */ |
|
| 44 | - public function __construct() { |
|
| 45 | - |
|
| 46 | - // Set parent defaults |
|
| 47 | - parent::__construct( |
|
| 26 | + /** |
|
| 27 | + * @var int Number of items per page |
|
| 28 | + * @since 1.0.19 |
|
| 29 | + */ |
|
| 30 | + public $per_page = 10; |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * @var int Number of items |
|
| 34 | + * @since 1.0.19 |
|
| 35 | + */ |
|
| 36 | + public $total = 0; |
|
| 37 | + |
|
| 38 | + /** |
|
| 39 | + * Get things started |
|
| 40 | + * |
|
| 41 | + * @since 1.0.19 |
|
| 42 | + * @see WP_List_Table::__construct() |
|
| 43 | + */ |
|
| 44 | + public function __construct() { |
|
| 45 | + |
|
| 46 | + // Set parent defaults |
|
| 47 | + parent::__construct( |
|
| 48 | 48 | array( |
| 49 | - 'singular' => 'id', |
|
| 50 | - 'plural' => 'ids', |
|
| 51 | - 'ajax' => false, |
|
| 49 | + 'singular' => 'id', |
|
| 50 | + 'plural' => 'ids', |
|
| 51 | + 'ajax' => false, |
|
| 52 | 52 | ) |
| 53 | 53 | ); |
| 54 | 54 | |
| 55 | - } |
|
| 56 | - |
|
| 57 | - /** |
|
| 58 | - * Gets the name of the primary column. |
|
| 59 | - * |
|
| 60 | - * @since 1.0.19 |
|
| 61 | - * @access protected |
|
| 62 | - * |
|
| 63 | - * @return string Name of the primary column. |
|
| 64 | - */ |
|
| 65 | - protected function get_primary_column_name() { |
|
| 66 | - return 'name'; |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * This function renders most of the columns in the list table. |
|
| 71 | - * |
|
| 72 | - * @since 1.0.19 |
|
| 73 | - * |
|
| 74 | - * @param WP_User $item |
|
| 75 | - * @param string $column_name The name of the column |
|
| 76 | - * |
|
| 77 | - * @return string Column Name |
|
| 78 | - */ |
|
| 79 | - public function column_default( $item, $column_name ) { |
|
| 80 | - $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
| 81 | - return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - /** |
|
| 85 | - * Displays the country column. |
|
| 86 | - * |
|
| 87 | - * @since 1.0.19 |
|
| 88 | - * |
|
| 89 | - * @param WP_User $user |
|
| 90 | - * |
|
| 91 | - * @return string Column Name |
|
| 92 | - */ |
|
| 93 | - public function column_country( $user ) { |
|
| 94 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
| 95 | - if ( $country ) { |
|
| 96 | - $country = wpinv_country_name( $country ); |
|
| 97 | - } |
|
| 98 | - return esc_html( $country ); |
|
| 99 | - } |
|
| 100 | - |
|
| 101 | - /** |
|
| 102 | - * Displays the state column. |
|
| 103 | - * |
|
| 104 | - * @since 1.0.19 |
|
| 105 | - * |
|
| 106 | - * @param WP_User $user |
|
| 107 | - * |
|
| 108 | - * @return string Column Name |
|
| 109 | - */ |
|
| 110 | - public function column_state( $user ) { |
|
| 111 | - $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
| 112 | - $state = $user->_wpinv_state; |
|
| 113 | - if ( $state ) { |
|
| 114 | - $state = wpinv_state_name( $state, $country ); |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - return esc_html( $state ); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - /** |
|
| 121 | - * Displays the signup column. |
|
| 122 | - * |
|
| 123 | - * @since 1.0.19 |
|
| 124 | - * |
|
| 125 | - * @param WP_User $user |
|
| 126 | - * |
|
| 127 | - * @return string Column Name |
|
| 128 | - */ |
|
| 129 | - public function column_signup( $user ) { |
|
| 130 | - return getpaid_format_date_value( $user->user_registered ); |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - /** |
|
| 134 | - * Displays the total spent column. |
|
| 135 | - * |
|
| 136 | - * @since 1.0.19 |
|
| 137 | - * |
|
| 138 | - * @param WP_User $user |
|
| 139 | - * |
|
| 140 | - * @return string Column Name |
|
| 141 | - */ |
|
| 142 | - public function column_total( $user ) { |
|
| 143 | - return wpinv_price( $this->column_total_raw( $user ) ); |
|
| 144 | - } |
|
| 145 | - |
|
| 146 | - /** |
|
| 147 | - * Displays the total spent column. |
|
| 148 | - * |
|
| 149 | - * @since 1.0.19 |
|
| 150 | - * |
|
| 151 | - * @param WP_User $user |
|
| 152 | - * |
|
| 153 | - * @return float |
|
| 154 | - */ |
|
| 155 | - public function column_total_raw( $user ) { |
|
| 156 | - |
|
| 157 | - $args = array( |
|
| 158 | - 'data' => array( |
|
| 159 | - |
|
| 160 | - 'total' => array( |
|
| 161 | - 'type' => 'invoice_data', |
|
| 162 | - 'function' => 'SUM', |
|
| 163 | - 'name' => 'total_sales', |
|
| 164 | - ), |
|
| 165 | - |
|
| 166 | - ), |
|
| 167 | - 'where' => array( |
|
| 168 | - |
|
| 169 | - 'author' => array( |
|
| 170 | - 'type' => 'post_data', |
|
| 171 | - 'value' => absint( $user->ID ), |
|
| 172 | - 'key' => 'posts.post_author', |
|
| 173 | - 'operator' => '=', |
|
| 174 | - ), |
|
| 175 | - |
|
| 176 | - ), |
|
| 177 | - 'query_type' => 'get_var', |
|
| 178 | - 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
| 179 | - ); |
|
| 180 | - |
|
| 181 | - return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
| 182 | - |
|
| 183 | - } |
|
| 184 | - |
|
| 185 | - /** |
|
| 186 | - * Displays the total spent column. |
|
| 187 | - * |
|
| 188 | - * @since 1.0.19 |
|
| 189 | - * |
|
| 190 | - * @param WP_User $user |
|
| 191 | - * |
|
| 192 | - * @return string Column Name |
|
| 193 | - */ |
|
| 194 | - public function column_invoices( $user ) { |
|
| 195 | - |
|
| 196 | - $args = array( |
|
| 197 | - 'data' => array( |
|
| 198 | - |
|
| 199 | - 'ID' => array( |
|
| 200 | - 'type' => 'post_data', |
|
| 201 | - 'function' => 'COUNT', |
|
| 202 | - 'name' => 'count', |
|
| 203 | - 'distinct' => true, |
|
| 204 | - ), |
|
| 205 | - |
|
| 206 | - ), |
|
| 207 | - 'where' => array( |
|
| 208 | - |
|
| 209 | - 'author' => array( |
|
| 210 | - 'type' => 'post_data', |
|
| 211 | - 'value' => absint( $user->ID ), |
|
| 212 | - 'key' => 'posts.post_author', |
|
| 213 | - 'operator' => '=', |
|
| 214 | - ), |
|
| 215 | - |
|
| 216 | - ), |
|
| 217 | - 'query_type' => 'get_var', |
|
| 218 | - 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
| 219 | - ); |
|
| 220 | - |
|
| 221 | - $value = absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
| 222 | - $url = add_query_arg( array( 'post_type' => 'wpi_invoice', 'author' => $user->ID ), admin_url( 'edit.php' ) ); |
|
| 223 | - return empty( $value ) ? '0' : '<a href="' . esc_url( $url ) . '">' . absint( $value ) . '</a>'; |
|
| 224 | - |
|
| 225 | - } |
|
| 226 | - |
|
| 227 | - /** |
|
| 228 | - * Generates content for a single row of the table |
|
| 229 | - * @since 1.0.19 |
|
| 230 | - * |
|
| 231 | - * @param int $item The user id. |
|
| 232 | - */ |
|
| 233 | - public function single_row( $item ) { |
|
| 234 | - $item = get_user_by( 'id', $item ); |
|
| 235 | - |
|
| 236 | - if ( empty( $item ) ) { |
|
| 237 | - return; |
|
| 238 | - } |
|
| 239 | - |
|
| 240 | - echo '<tr>'; |
|
| 241 | - $this->single_row_columns( $item ); |
|
| 242 | - echo '</tr>'; |
|
| 243 | - } |
|
| 244 | - |
|
| 245 | - /** |
|
| 246 | - * Displays the customers name |
|
| 247 | - * |
|
| 248 | - * @param WP_User $customer customer. |
|
| 249 | - * @return string |
|
| 250 | - */ |
|
| 251 | - public function column_name( $customer ) { |
|
| 252 | - |
|
| 253 | - // Customer view URL. |
|
| 254 | - $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
| 255 | - $row_actions = $this->row_actions( |
|
| 256 | - array( |
|
| 257 | - 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
| 258 | - ) |
|
| 259 | - ); |
|
| 260 | - |
|
| 261 | - // Get user's address. |
|
| 262 | - $address = wpinv_get_user_address( $customer->ID ); |
|
| 263 | - |
|
| 264 | - // Customer email address. |
|
| 265 | - $email = sanitize_email( $customer->user_email ); |
|
| 266 | - |
|
| 267 | - // Customer's avatar. |
|
| 268 | - $avatar = esc_url( get_avatar_url( $email ) ); |
|
| 269 | - $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
| 270 | - |
|
| 271 | - // Customer's name. |
|
| 272 | - $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
| 273 | - |
|
| 274 | - if ( empty( trim( $name ) ) ) { |
|
| 275 | - $name = esc_html( $address['display_name'] ); |
|
| 276 | - } |
|
| 277 | - |
|
| 278 | - if ( ! empty( $name ) ) { |
|
| 279 | - $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
| 280 | - } |
|
| 281 | - |
|
| 282 | - $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
| 283 | - |
|
| 284 | - return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong>$row_actions</div></div>"; |
|
| 285 | - |
|
| 286 | - } |
|
| 287 | - |
|
| 288 | - /** |
|
| 289 | - * Retrieve the table columns |
|
| 290 | - * |
|
| 291 | - * @since 1.0.19 |
|
| 292 | - * @return array $columns Array of all the list table columns |
|
| 293 | - */ |
|
| 294 | - public function get_columns() { |
|
| 295 | - |
|
| 296 | - $columns = array( |
|
| 297 | - 'name' => __( 'Name', 'invoicing' ), |
|
| 298 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 299 | - 'state' => __( 'State', 'invoicing' ), |
|
| 300 | - 'city' => __( 'City', 'invoicing' ), |
|
| 301 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 302 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 303 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 304 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 305 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 306 | - 'total' => __( 'Total Spend', 'invoicing' ), |
|
| 307 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
| 308 | - ); |
|
| 309 | - return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
| 310 | - |
|
| 311 | - } |
|
| 312 | - |
|
| 313 | - /** |
|
| 314 | - * Retrieve the current page number |
|
| 315 | - * |
|
| 316 | - * @since 1.0.19 |
|
| 317 | - * @return int Current page number |
|
| 318 | - */ |
|
| 319 | - public function get_paged() { |
|
| 320 | - return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 321 | - } |
|
| 322 | - |
|
| 323 | - /** |
|
| 324 | - * Returns bulk actions. |
|
| 325 | - * |
|
| 326 | - * @since 1.0.19 |
|
| 327 | - * @return void |
|
| 328 | - */ |
|
| 329 | - public function bulk_actions( $which = '' ) { |
|
| 330 | - return array(); |
|
| 331 | - } |
|
| 332 | - |
|
| 333 | - /** |
|
| 334 | - * Prepares the display query |
|
| 335 | - */ |
|
| 336 | - public function prepare_query() { |
|
| 337 | - global $wpdb; |
|
| 338 | - |
|
| 339 | - $post_types = ''; |
|
| 340 | - |
|
| 341 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 342 | - $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
| 343 | - } |
|
| 344 | - |
|
| 345 | - $post_types = rtrim( $post_types, ' OR' ); |
|
| 346 | - |
|
| 347 | - // Maybe search. |
|
| 348 | - if ( ! empty( $_POST['s'] ) ) { |
|
| 349 | - $users = get_users( |
|
| 350 | - array( |
|
| 351 | - 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
| 352 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
| 353 | - 'fields' => 'ID', |
|
| 354 | - ) |
|
| 355 | - ); |
|
| 356 | - |
|
| 357 | - $users = implode( ', ', $users ); |
|
| 358 | - $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
|
| 359 | - } |
|
| 360 | - |
|
| 361 | - // Users with invoices. |
|
| 362 | - $customers = $wpdb->get_col( |
|
| 363 | - $wpdb->prepare( |
|
| 364 | - "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types LIMIT %d,%d", |
|
| 365 | - $this->get_paged() * 10 - 10, |
|
| 366 | - $this->per_page |
|
| 367 | - ) |
|
| 368 | - ); |
|
| 369 | - |
|
| 370 | - $this->items = $customers; |
|
| 371 | - $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
| 372 | - |
|
| 373 | - } |
|
| 374 | - |
|
| 375 | - /** |
|
| 376 | - * Setup the final data for the table |
|
| 377 | - * |
|
| 378 | - * @since 1.0.19 |
|
| 379 | - * @return void |
|
| 380 | - */ |
|
| 381 | - public function prepare_items() { |
|
| 382 | - $columns = $this->get_columns(); |
|
| 383 | - $hidden = array(); // No hidden columns |
|
| 384 | - $sortable = $this->get_sortable_columns(); |
|
| 385 | - $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 386 | - $this->prepare_query(); |
|
| 387 | - |
|
| 388 | - $this->set_pagination_args( |
|
| 389 | - array( |
|
| 390 | - 'total_items' => $this->total, |
|
| 391 | - 'per_page' => $this->per_page, |
|
| 392 | - 'total_pages' => ceil( $this->total / $this->per_page ), |
|
| 393 | - ) |
|
| 394 | - ); |
|
| 395 | - |
|
| 396 | - } |
|
| 55 | + } |
|
| 56 | + |
|
| 57 | + /** |
|
| 58 | + * Gets the name of the primary column. |
|
| 59 | + * |
|
| 60 | + * @since 1.0.19 |
|
| 61 | + * @access protected |
|
| 62 | + * |
|
| 63 | + * @return string Name of the primary column. |
|
| 64 | + */ |
|
| 65 | + protected function get_primary_column_name() { |
|
| 66 | + return 'name'; |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * This function renders most of the columns in the list table. |
|
| 71 | + * |
|
| 72 | + * @since 1.0.19 |
|
| 73 | + * |
|
| 74 | + * @param WP_User $item |
|
| 75 | + * @param string $column_name The name of the column |
|
| 76 | + * |
|
| 77 | + * @return string Column Name |
|
| 78 | + */ |
|
| 79 | + public function column_default( $item, $column_name ) { |
|
| 80 | + $value = esc_html( get_user_meta( $item->ID, '_wpinv_' . $column_name, true ) ); |
|
| 81 | + return apply_filters( 'wpinv_customers_table_column' . $column_name, $value, $item ); |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + /** |
|
| 85 | + * Displays the country column. |
|
| 86 | + * |
|
| 87 | + * @since 1.0.19 |
|
| 88 | + * |
|
| 89 | + * @param WP_User $user |
|
| 90 | + * |
|
| 91 | + * @return string Column Name |
|
| 92 | + */ |
|
| 93 | + public function column_country( $user ) { |
|
| 94 | + $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
| 95 | + if ( $country ) { |
|
| 96 | + $country = wpinv_country_name( $country ); |
|
| 97 | + } |
|
| 98 | + return esc_html( $country ); |
|
| 99 | + } |
|
| 100 | + |
|
| 101 | + /** |
|
| 102 | + * Displays the state column. |
|
| 103 | + * |
|
| 104 | + * @since 1.0.19 |
|
| 105 | + * |
|
| 106 | + * @param WP_User $user |
|
| 107 | + * |
|
| 108 | + * @return string Column Name |
|
| 109 | + */ |
|
| 110 | + public function column_state( $user ) { |
|
| 111 | + $country = wpinv_sanitize_country( $user->_wpinv_country ); |
|
| 112 | + $state = $user->_wpinv_state; |
|
| 113 | + if ( $state ) { |
|
| 114 | + $state = wpinv_state_name( $state, $country ); |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + return esc_html( $state ); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + /** |
|
| 121 | + * Displays the signup column. |
|
| 122 | + * |
|
| 123 | + * @since 1.0.19 |
|
| 124 | + * |
|
| 125 | + * @param WP_User $user |
|
| 126 | + * |
|
| 127 | + * @return string Column Name |
|
| 128 | + */ |
|
| 129 | + public function column_signup( $user ) { |
|
| 130 | + return getpaid_format_date_value( $user->user_registered ); |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + /** |
|
| 134 | + * Displays the total spent column. |
|
| 135 | + * |
|
| 136 | + * @since 1.0.19 |
|
| 137 | + * |
|
| 138 | + * @param WP_User $user |
|
| 139 | + * |
|
| 140 | + * @return string Column Name |
|
| 141 | + */ |
|
| 142 | + public function column_total( $user ) { |
|
| 143 | + return wpinv_price( $this->column_total_raw( $user ) ); |
|
| 144 | + } |
|
| 145 | + |
|
| 146 | + /** |
|
| 147 | + * Displays the total spent column. |
|
| 148 | + * |
|
| 149 | + * @since 1.0.19 |
|
| 150 | + * |
|
| 151 | + * @param WP_User $user |
|
| 152 | + * |
|
| 153 | + * @return float |
|
| 154 | + */ |
|
| 155 | + public function column_total_raw( $user ) { |
|
| 156 | + |
|
| 157 | + $args = array( |
|
| 158 | + 'data' => array( |
|
| 159 | + |
|
| 160 | + 'total' => array( |
|
| 161 | + 'type' => 'invoice_data', |
|
| 162 | + 'function' => 'SUM', |
|
| 163 | + 'name' => 'total_sales', |
|
| 164 | + ), |
|
| 165 | + |
|
| 166 | + ), |
|
| 167 | + 'where' => array( |
|
| 168 | + |
|
| 169 | + 'author' => array( |
|
| 170 | + 'type' => 'post_data', |
|
| 171 | + 'value' => absint( $user->ID ), |
|
| 172 | + 'key' => 'posts.post_author', |
|
| 173 | + 'operator' => '=', |
|
| 174 | + ), |
|
| 175 | + |
|
| 176 | + ), |
|
| 177 | + 'query_type' => 'get_var', |
|
| 178 | + 'invoice_status' => array( 'wpi-renewal', 'wpi-processing', 'publish' ), |
|
| 179 | + ); |
|
| 180 | + |
|
| 181 | + return wpinv_round_amount( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
| 182 | + |
|
| 183 | + } |
|
| 184 | + |
|
| 185 | + /** |
|
| 186 | + * Displays the total spent column. |
|
| 187 | + * |
|
| 188 | + * @since 1.0.19 |
|
| 189 | + * |
|
| 190 | + * @param WP_User $user |
|
| 191 | + * |
|
| 192 | + * @return string Column Name |
|
| 193 | + */ |
|
| 194 | + public function column_invoices( $user ) { |
|
| 195 | + |
|
| 196 | + $args = array( |
|
| 197 | + 'data' => array( |
|
| 198 | + |
|
| 199 | + 'ID' => array( |
|
| 200 | + 'type' => 'post_data', |
|
| 201 | + 'function' => 'COUNT', |
|
| 202 | + 'name' => 'count', |
|
| 203 | + 'distinct' => true, |
|
| 204 | + ), |
|
| 205 | + |
|
| 206 | + ), |
|
| 207 | + 'where' => array( |
|
| 208 | + |
|
| 209 | + 'author' => array( |
|
| 210 | + 'type' => 'post_data', |
|
| 211 | + 'value' => absint( $user->ID ), |
|
| 212 | + 'key' => 'posts.post_author', |
|
| 213 | + 'operator' => '=', |
|
| 214 | + ), |
|
| 215 | + |
|
| 216 | + ), |
|
| 217 | + 'query_type' => 'get_var', |
|
| 218 | + 'invoice_status' => array_keys( wpinv_get_invoice_statuses() ), |
|
| 219 | + ); |
|
| 220 | + |
|
| 221 | + $value = absint( GetPaid_Reports_Helper::get_invoice_report_data( $args ) ); |
|
| 222 | + $url = add_query_arg( array( 'post_type' => 'wpi_invoice', 'author' => $user->ID ), admin_url( 'edit.php' ) ); |
|
| 223 | + return empty( $value ) ? '0' : '<a href="' . esc_url( $url ) . '">' . absint( $value ) . '</a>'; |
|
| 224 | + |
|
| 225 | + } |
|
| 226 | + |
|
| 227 | + /** |
|
| 228 | + * Generates content for a single row of the table |
|
| 229 | + * @since 1.0.19 |
|
| 230 | + * |
|
| 231 | + * @param int $item The user id. |
|
| 232 | + */ |
|
| 233 | + public function single_row( $item ) { |
|
| 234 | + $item = get_user_by( 'id', $item ); |
|
| 235 | + |
|
| 236 | + if ( empty( $item ) ) { |
|
| 237 | + return; |
|
| 238 | + } |
|
| 239 | + |
|
| 240 | + echo '<tr>'; |
|
| 241 | + $this->single_row_columns( $item ); |
|
| 242 | + echo '</tr>'; |
|
| 243 | + } |
|
| 244 | + |
|
| 245 | + /** |
|
| 246 | + * Displays the customers name |
|
| 247 | + * |
|
| 248 | + * @param WP_User $customer customer. |
|
| 249 | + * @return string |
|
| 250 | + */ |
|
| 251 | + public function column_name( $customer ) { |
|
| 252 | + |
|
| 253 | + // Customer view URL. |
|
| 254 | + $view_url = esc_url( add_query_arg( 'user_id', $customer->ID, admin_url( 'user-edit.php' ) ) ); |
|
| 255 | + $row_actions = $this->row_actions( |
|
| 256 | + array( |
|
| 257 | + 'view' => '<a href="' . $view_url . '#getpaid-fieldset-billing">' . __( 'Edit Details', 'invoicing' ) . '</a>', |
|
| 258 | + ) |
|
| 259 | + ); |
|
| 260 | + |
|
| 261 | + // Get user's address. |
|
| 262 | + $address = wpinv_get_user_address( $customer->ID ); |
|
| 263 | + |
|
| 264 | + // Customer email address. |
|
| 265 | + $email = sanitize_email( $customer->user_email ); |
|
| 266 | + |
|
| 267 | + // Customer's avatar. |
|
| 268 | + $avatar = esc_url( get_avatar_url( $email ) ); |
|
| 269 | + $avatar = "<img src='$avatar' height='32' width='32'/>"; |
|
| 270 | + |
|
| 271 | + // Customer's name. |
|
| 272 | + $name = esc_html( "{$address['first_name']} {$address['last_name']}" ); |
|
| 273 | + |
|
| 274 | + if ( empty( trim( $name ) ) ) { |
|
| 275 | + $name = esc_html( $address['display_name'] ); |
|
| 276 | + } |
|
| 277 | + |
|
| 278 | + if ( ! empty( $name ) ) { |
|
| 279 | + $name = "<div style='overflow: hidden;height: 18px;'>$name</div>"; |
|
| 280 | + } |
|
| 281 | + |
|
| 282 | + $email = "<div class='row-title'><a href='$view_url'>$email</a></div>"; |
|
| 283 | + |
|
| 284 | + return "<div style='display: flex;'><div>$avatar</div><div style='margin-left: 10px;'>$name<strong>$email</strong>$row_actions</div></div>"; |
|
| 285 | + |
|
| 286 | + } |
|
| 287 | + |
|
| 288 | + /** |
|
| 289 | + * Retrieve the table columns |
|
| 290 | + * |
|
| 291 | + * @since 1.0.19 |
|
| 292 | + * @return array $columns Array of all the list table columns |
|
| 293 | + */ |
|
| 294 | + public function get_columns() { |
|
| 295 | + |
|
| 296 | + $columns = array( |
|
| 297 | + 'name' => __( 'Name', 'invoicing' ), |
|
| 298 | + 'country' => __( 'Country', 'invoicing' ), |
|
| 299 | + 'state' => __( 'State', 'invoicing' ), |
|
| 300 | + 'city' => __( 'City', 'invoicing' ), |
|
| 301 | + 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 302 | + 'address' => __( 'Address', 'invoicing' ), |
|
| 303 | + 'phone' => __( 'Phone', 'invoicing' ), |
|
| 304 | + 'company' => __( 'Company', 'invoicing' ), |
|
| 305 | + 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 306 | + 'total' => __( 'Total Spend', 'invoicing' ), |
|
| 307 | + 'signup' => __( 'Date created', 'invoicing' ), |
|
| 308 | + ); |
|
| 309 | + return apply_filters( 'wpinv_customers_table_columns', $columns ); |
|
| 310 | + |
|
| 311 | + } |
|
| 312 | + |
|
| 313 | + /** |
|
| 314 | + * Retrieve the current page number |
|
| 315 | + * |
|
| 316 | + * @since 1.0.19 |
|
| 317 | + * @return int Current page number |
|
| 318 | + */ |
|
| 319 | + public function get_paged() { |
|
| 320 | + return isset( $_GET['paged'] ) ? absint( $_GET['paged'] ) : 1; |
|
| 321 | + } |
|
| 322 | + |
|
| 323 | + /** |
|
| 324 | + * Returns bulk actions. |
|
| 325 | + * |
|
| 326 | + * @since 1.0.19 |
|
| 327 | + * @return void |
|
| 328 | + */ |
|
| 329 | + public function bulk_actions( $which = '' ) { |
|
| 330 | + return array(); |
|
| 331 | + } |
|
| 332 | + |
|
| 333 | + /** |
|
| 334 | + * Prepares the display query |
|
| 335 | + */ |
|
| 336 | + public function prepare_query() { |
|
| 337 | + global $wpdb; |
|
| 338 | + |
|
| 339 | + $post_types = ''; |
|
| 340 | + |
|
| 341 | + foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 342 | + $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
| 343 | + } |
|
| 344 | + |
|
| 345 | + $post_types = rtrim( $post_types, ' OR' ); |
|
| 346 | + |
|
| 347 | + // Maybe search. |
|
| 348 | + if ( ! empty( $_POST['s'] ) ) { |
|
| 349 | + $users = get_users( |
|
| 350 | + array( |
|
| 351 | + 'search' => '*' . sanitize_text_field( urldecode( $_POST['s'] ) ) . '*', |
|
| 352 | + 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
| 353 | + 'fields' => 'ID', |
|
| 354 | + ) |
|
| 355 | + ); |
|
| 356 | + |
|
| 357 | + $users = implode( ', ', $users ); |
|
| 358 | + $post_types = "($post_types) AND ( post_author IN ( $users ) )"; |
|
| 359 | + } |
|
| 360 | + |
|
| 361 | + // Users with invoices. |
|
| 362 | + $customers = $wpdb->get_col( |
|
| 363 | + $wpdb->prepare( |
|
| 364 | + "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types LIMIT %d,%d", |
|
| 365 | + $this->get_paged() * 10 - 10, |
|
| 366 | + $this->per_page |
|
| 367 | + ) |
|
| 368 | + ); |
|
| 369 | + |
|
| 370 | + $this->items = $customers; |
|
| 371 | + $this->total = (int) $wpdb->get_var( "SELECT COUNT( DISTINCT( post_author ) ) FROM $wpdb->posts WHERE $post_types" ); |
|
| 372 | + |
|
| 373 | + } |
|
| 374 | + |
|
| 375 | + /** |
|
| 376 | + * Setup the final data for the table |
|
| 377 | + * |
|
| 378 | + * @since 1.0.19 |
|
| 379 | + * @return void |
|
| 380 | + */ |
|
| 381 | + public function prepare_items() { |
|
| 382 | + $columns = $this->get_columns(); |
|
| 383 | + $hidden = array(); // No hidden columns |
|
| 384 | + $sortable = $this->get_sortable_columns(); |
|
| 385 | + $this->_column_headers = array( $columns, $hidden, $sortable ); |
|
| 386 | + $this->prepare_query(); |
|
| 387 | + |
|
| 388 | + $this->set_pagination_args( |
|
| 389 | + array( |
|
| 390 | + 'total_items' => $this->total, |
|
| 391 | + 'per_page' => $this->per_page, |
|
| 392 | + 'total_pages' => ceil( $this->total / $this->per_page ), |
|
| 393 | + ) |
|
| 394 | + ); |
|
| 395 | + |
|
| 396 | + } |
|
| 397 | 397 | } |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | |
| 58 | 58 | // And the optional invoice id. |
| 59 | 59 | if ( ! empty( $form->invoice ) ) { |
| 60 | - getpaid_hidden_field( 'invoice_id', $form->invoice->get_id() ); |
|
| 60 | + getpaid_hidden_field( 'invoice_id', $form->invoice->get_id() ); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // We also want to include the form id. |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | |
| 78 | 78 | foreach ( $form->get_elements() as $element ) { |
| 79 | 79 | |
| 80 | - if ( isset( $element['type'] ) ) { |
|
| 80 | + if ( isset( $element['type'] ) ) { |
|
| 81 | 81 | $grid_class = getpaid_get_form_element_grid_class( $element ); |
| 82 | 82 | echo "<div class='" . esc_attr( $grid_class ) . "'>"; |
| 83 | 83 | do_action( 'getpaid_payment_form_element', $element, $form ); |
@@ -13,25 +13,25 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | class GetPaid_Meta_Box_Description { |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * Output the metabox. |
|
| 18 | - * |
|
| 19 | - * @param WP_Post $post Post object. |
|
| 20 | - */ |
|
| 21 | - public static function output( $post ) { |
|
| 16 | + /** |
|
| 17 | + * Output the metabox. |
|
| 18 | + * |
|
| 19 | + * @param WP_Post $post Post object. |
|
| 20 | + */ |
|
| 21 | + public static function output( $post ) { |
|
| 22 | 22 | |
| 23 | - $settings = array( |
|
| 24 | - 'textarea_name' => 'excerpt', |
|
| 25 | - 'quicktags' => array( 'buttons' => 'em,strong,link' ), |
|
| 26 | - 'teeny' => true, |
|
| 27 | - 'media_buttons' => false, |
|
| 28 | - 'tinymce' => array( |
|
| 29 | - 'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator', |
|
| 30 | - 'theme_advanced_buttons2' => '', |
|
| 31 | - ), |
|
| 32 | - 'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>', |
|
| 33 | - ); |
|
| 23 | + $settings = array( |
|
| 24 | + 'textarea_name' => 'excerpt', |
|
| 25 | + 'quicktags' => array( 'buttons' => 'em,strong,link' ), |
|
| 26 | + 'teeny' => true, |
|
| 27 | + 'media_buttons' => false, |
|
| 28 | + 'tinymce' => array( |
|
| 29 | + 'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator', |
|
| 30 | + 'theme_advanced_buttons2' => '', |
|
| 31 | + ), |
|
| 32 | + 'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>', |
|
| 33 | + ); |
|
| 34 | 34 | |
| 35 | - wp_editor( htmlspecialchars_decode( $post->post_excerpt, ENT_QUOTES ), 'excerpt', apply_filters( 'getpaid_description_editor_settings', $settings ) ); |
|
| 36 | - } |
|
| 35 | + wp_editor( htmlspecialchars_decode( $post->post_excerpt, ENT_QUOTES ), 'excerpt', apply_filters( 'getpaid_description_editor_settings', $settings ) ); |
|
| 36 | + } |
|
| 37 | 37 | } |
@@ -12,280 +12,280 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Metaboxes { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Only save metaboxes once. |
|
| 17 | - * |
|
| 18 | - * @var boolean |
|
| 19 | - */ |
|
| 20 | - private static $saved_meta_boxes = false; |
|
| 15 | + /** |
|
| 16 | + * Only save metaboxes once. |
|
| 17 | + * |
|
| 18 | + * @var boolean |
|
| 19 | + */ |
|
| 20 | + private static $saved_meta_boxes = false; |
|
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * Hook in methods. |
|
| 24 | - */ |
|
| 25 | - public static function init() { |
|
| 23 | + * Hook in methods. |
|
| 24 | + */ |
|
| 25 | + public static function init() { |
|
| 26 | 26 | |
| 27 | - // Register metaboxes. |
|
| 28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 50, 2 ); |
|
| 27 | + // Register metaboxes. |
|
| 28 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 50, 2 ); |
|
| 29 | 29 | |
| 30 | - // Remove metaboxes. |
|
| 31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 30 | + // Remove metaboxes. |
|
| 31 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 32 | 32 | |
| 33 | - // Rename metaboxes. |
|
| 34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 33 | + // Rename metaboxes. |
|
| 34 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 35 | 35 | |
| 36 | - // Save metaboxes. |
|
| 37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | - } |
|
| 36 | + // Save metaboxes. |
|
| 37 | + add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Register core metaboxes. |
|
| 42 | - */ |
|
| 43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
| 40 | + /** |
|
| 41 | + * Register core metaboxes. |
|
| 42 | + */ |
|
| 43 | + public static function add_meta_boxes( $post_type, $post ) { |
|
| 44 | 44 | |
| 45 | - // For invoices. |
|
| 46 | - self::add_invoice_meta_boxes( $post_type, $post ); |
|
| 45 | + // For invoices. |
|
| 46 | + self::add_invoice_meta_boxes( $post_type, $post ); |
|
| 47 | 47 | |
| 48 | - // For payment forms. |
|
| 49 | - self::add_payment_form_meta_boxes( $post_type, $post ); |
|
| 48 | + // For payment forms. |
|
| 49 | + self::add_payment_form_meta_boxes( $post_type, $post ); |
|
| 50 | 50 | |
| 51 | - // For invoice items. |
|
| 52 | - self::add_item_meta_boxes( $post_type ); |
|
| 51 | + // For invoice items. |
|
| 52 | + self::add_item_meta_boxes( $post_type ); |
|
| 53 | 53 | |
| 54 | - // For invoice discounts. |
|
| 55 | - if ( 'wpi_discount' === $post_type ) { |
|
| 56 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 57 | - } |
|
| 54 | + // For invoice discounts. |
|
| 55 | + if ( 'wpi_discount' === $post_type ) { |
|
| 56 | + add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | - } |
|
| 59 | + } |
|
| 60 | 60 | |
| 61 | - /** |
|
| 62 | - * Register core metaboxes. |
|
| 63 | - */ |
|
| 64 | - protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
| 61 | + /** |
|
| 62 | + * Register core metaboxes. |
|
| 63 | + */ |
|
| 64 | + protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
| 65 | 65 | |
| 66 | - // For payment forms. |
|
| 67 | - if ( 'wpi_payment_form' === $post_type ) { |
|
| 66 | + // For payment forms. |
|
| 67 | + if ( 'wpi_payment_form' === $post_type ) { |
|
| 68 | 68 | |
| 69 | - // Design payment form. |
|
| 70 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 69 | + // Design payment form. |
|
| 70 | + add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 71 | 71 | |
| 72 | - // Payment form information. |
|
| 73 | - if ( wpinv_get_default_payment_form() !== $post->ID ) { |
|
| 74 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 75 | - } |
|
| 72 | + // Payment form information. |
|
| 73 | + if ( wpinv_get_default_payment_form() !== $post->ID ) { |
|
| 74 | + add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 75 | + } |
|
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - } |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * Register core metaboxes. |
|
| 82 | - */ |
|
| 83 | - protected static function add_item_meta_boxes( $post_type ) { |
|
| 78 | + } |
|
| 84 | 79 | |
| 85 | - if ( 'wpi_item' === $post_type ) { |
|
| 86 | - |
|
| 87 | - // Item details. |
|
| 88 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 89 | - |
|
| 90 | - // If taxes are enabled, register the tax metabox. |
|
| 91 | - if ( wpinv_use_taxes() ) { |
|
| 92 | - add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 93 | - } |
|
| 80 | + /** |
|
| 81 | + * Register core metaboxes. |
|
| 82 | + */ |
|
| 83 | + protected static function add_item_meta_boxes( $post_type ) { |
|
| 94 | 84 | |
| 95 | - // Item info. |
|
| 96 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 85 | + if ( 'wpi_item' === $post_type ) { |
|
| 97 | 86 | |
| 98 | - // Item description. |
|
| 99 | - add_meta_box( 'postexcerpt', __( 'Item Description', 'invoicing' ), 'GetPaid_Meta_Box_Description::output', 'wpi_item', 'normal' ); |
|
| 100 | - } |
|
| 87 | + // Item details. |
|
| 88 | + add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 101 | 89 | |
| 102 | - } |
|
| 90 | + // If taxes are enabled, register the tax metabox. |
|
| 91 | + if ( wpinv_use_taxes() ) { |
|
| 92 | + add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 93 | + } |
|
| 103 | 94 | |
| 104 | - /** |
|
| 105 | - * Register invoice metaboxes. |
|
| 106 | - */ |
|
| 107 | - protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
| 95 | + // Item info. |
|
| 96 | + add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 108 | 97 | |
| 109 | - // For invoices... |
|
| 110 | - if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
| 111 | - $invoice = new WPInv_Invoice( $post ); |
|
| 98 | + // Item description. |
|
| 99 | + add_meta_box( 'postexcerpt', __( 'Item Description', 'invoicing' ), 'GetPaid_Meta_Box_Description::output', 'wpi_item', 'normal' ); |
|
| 100 | + } |
|
| 112 | 101 | |
| 113 | - // Resend invoice. |
|
| 114 | - if ( ! $invoice->is_draft() ) { |
|
| 102 | + } |
|
| 115 | 103 | |
| 116 | - add_meta_box( |
|
| 117 | - 'wpinv-mb-resend-invoice', |
|
| 118 | - sprintf( |
|
| 119 | - // translators: %s is the invoice type. |
|
| 120 | - __( 'Resend %s', 'invoicing' ), |
|
| 121 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 122 | - ), |
|
| 123 | - 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
| 124 | - $post_type, |
|
| 125 | - 'side', |
|
| 126 | - 'low' |
|
| 127 | - ); |
|
| 104 | + /** |
|
| 105 | + * Register invoice metaboxes. |
|
| 106 | + */ |
|
| 107 | + protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
| 108 | + |
|
| 109 | + // For invoices... |
|
| 110 | + if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
| 111 | + $invoice = new WPInv_Invoice( $post ); |
|
| 112 | + |
|
| 113 | + // Resend invoice. |
|
| 114 | + if ( ! $invoice->is_draft() ) { |
|
| 115 | + |
|
| 116 | + add_meta_box( |
|
| 117 | + 'wpinv-mb-resend-invoice', |
|
| 118 | + sprintf( |
|
| 119 | + // translators: %s is the invoice type. |
|
| 120 | + __( 'Resend %s', 'invoicing' ), |
|
| 121 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 122 | + ), |
|
| 123 | + 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
| 124 | + $post_type, |
|
| 125 | + 'side', |
|
| 126 | + 'low' |
|
| 127 | + ); |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + // Subscriptions. |
|
| 132 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 133 | + if ( ! empty( $subscriptions ) ) { |
|
| 134 | + |
|
| 135 | + if ( is_array( $subscriptions ) ) { |
|
| 136 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
| 137 | + } else { |
|
| 138 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
| 139 | + } |
|
| 140 | + |
|
| 141 | + if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
| 142 | + add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
| 143 | + } |
|
| 144 | +} |
|
| 128 | 145 | |
| 129 | - } |
|
| 146 | + // Invoice details. |
|
| 147 | + add_meta_box( |
|
| 148 | + 'wpinv-details', |
|
| 149 | + sprintf( |
|
| 150 | + // translators: %s is the invoice type. |
|
| 151 | + __( '%s Details', 'invoicing' ), |
|
| 152 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 153 | + ), |
|
| 154 | + 'GetPaid_Meta_Box_Invoice_Details::output', |
|
| 155 | + $post_type, |
|
| 156 | + 'side' |
|
| 157 | + ); |
|
| 158 | + |
|
| 159 | + // Payment details. |
|
| 160 | + add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
| 161 | + |
|
| 162 | + // Billing details. |
|
| 163 | + add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
| 164 | + |
|
| 165 | + // Invoice items. |
|
| 166 | + add_meta_box( |
|
| 167 | + 'wpinv-items', |
|
| 168 | + sprintf( |
|
| 169 | + // translators: %s is the invoice type. |
|
| 170 | + __( '%s Items', 'invoicing' ), |
|
| 171 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 172 | + ), |
|
| 173 | + 'GetPaid_Meta_Box_Invoice_Items::output', |
|
| 174 | + $post_type, |
|
| 175 | + 'normal', |
|
| 176 | + 'high' |
|
| 177 | + ); |
|
| 178 | + |
|
| 179 | + // Invoice notes. |
|
| 180 | + add_meta_box( |
|
| 181 | + 'wpinv-notes', |
|
| 182 | + sprintf( |
|
| 183 | + // translators: %s is the invoice type. |
|
| 184 | + __( '%s Notes', 'invoicing' ), |
|
| 185 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 186 | + ), |
|
| 187 | + 'WPInv_Meta_Box_Notes::output', |
|
| 188 | + $post_type, |
|
| 189 | + 'side', |
|
| 190 | + 'low' |
|
| 191 | + ); |
|
| 192 | + |
|
| 193 | + // Shipping Address. |
|
| 194 | + if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
| 195 | + add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
| 196 | + } |
|
| 197 | + |
|
| 198 | + // Payment form information. |
|
| 199 | + if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
| 200 | + add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
| 201 | + } |
|
| 202 | +} |
|
| 130 | 203 | |
| 131 | - // Subscriptions. |
|
| 132 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 133 | - if ( ! empty( $subscriptions ) ) { |
|
| 204 | + } |
|
| 134 | 205 | |
| 135 | - if ( is_array( $subscriptions ) ) { |
|
| 136 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
| 137 | - } else { |
|
| 138 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
| 139 | - } |
|
| 206 | + /** |
|
| 207 | + * Remove some metaboxes. |
|
| 208 | + */ |
|
| 209 | + public static function remove_meta_boxes() { |
|
| 210 | + remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 211 | + remove_meta_box( 'postexcerpt', 'wpi_item', 'normal' ); |
|
| 212 | + } |
|
| 140 | 213 | |
| 141 | - if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
| 142 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
| 143 | - } |
|
| 144 | -} |
|
| 214 | + /** |
|
| 215 | + * Rename other metaboxes. |
|
| 216 | + */ |
|
| 217 | + public static function rename_meta_boxes() { |
|
| 145 | 218 | |
| 146 | - // Invoice details. |
|
| 147 | - add_meta_box( |
|
| 148 | - 'wpinv-details', |
|
| 149 | - sprintf( |
|
| 150 | - // translators: %s is the invoice type. |
|
| 151 | - __( '%s Details', 'invoicing' ), |
|
| 152 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 153 | - ), |
|
| 154 | - 'GetPaid_Meta_Box_Invoice_Details::output', |
|
| 155 | - $post_type, |
|
| 156 | - 'side' |
|
| 157 | - ); |
|
| 158 | - |
|
| 159 | - // Payment details. |
|
| 160 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
| 161 | - |
|
| 162 | - // Billing details. |
|
| 163 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
| 164 | - |
|
| 165 | - // Invoice items. |
|
| 166 | - add_meta_box( |
|
| 167 | - 'wpinv-items', |
|
| 168 | - sprintf( |
|
| 169 | - // translators: %s is the invoice type. |
|
| 170 | - __( '%s Items', 'invoicing' ), |
|
| 171 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 172 | - ), |
|
| 173 | - 'GetPaid_Meta_Box_Invoice_Items::output', |
|
| 174 | - $post_type, |
|
| 175 | - 'normal', |
|
| 176 | - 'high' |
|
| 177 | - ); |
|
| 178 | - |
|
| 179 | - // Invoice notes. |
|
| 180 | - add_meta_box( |
|
| 181 | - 'wpinv-notes', |
|
| 182 | - sprintf( |
|
| 183 | - // translators: %s is the invoice type. |
|
| 184 | - __( '%s Notes', 'invoicing' ), |
|
| 185 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 186 | - ), |
|
| 187 | - 'WPInv_Meta_Box_Notes::output', |
|
| 188 | - $post_type, |
|
| 189 | - 'side', |
|
| 190 | - 'low' |
|
| 191 | - ); |
|
| 192 | - |
|
| 193 | - // Shipping Address. |
|
| 194 | - if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
| 195 | - add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
| 196 | - } |
|
| 197 | - |
|
| 198 | - // Payment form information. |
|
| 199 | - if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
| 200 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
| 201 | - } |
|
| 202 | -} |
|
| 219 | + } |
|
| 203 | 220 | |
| 204 | - } |
|
| 205 | - |
|
| 206 | - /** |
|
| 207 | - * Remove some metaboxes. |
|
| 208 | - */ |
|
| 209 | - public static function remove_meta_boxes() { |
|
| 210 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 211 | - remove_meta_box( 'postexcerpt', 'wpi_item', 'normal' ); |
|
| 212 | - } |
|
| 213 | - |
|
| 214 | - /** |
|
| 215 | - * Rename other metaboxes. |
|
| 216 | - */ |
|
| 217 | - public static function rename_meta_boxes() { |
|
| 218 | - |
|
| 219 | - } |
|
| 220 | - |
|
| 221 | - /** |
|
| 222 | - * Check if we're saving, then trigger an action based on the post type. |
|
| 223 | - * |
|
| 224 | - * @param int $post_id Post ID. |
|
| 225 | - * @param object $post Post object. |
|
| 226 | - */ |
|
| 227 | - public static function save_meta_boxes( $post_id, $post ) { |
|
| 228 | - $post_id = absint( $post_id ); |
|
| 229 | - $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 230 | - |
|
| 231 | - // Do not save for ajax requests. |
|
| 232 | - if ( ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 233 | - return; |
|
| 234 | - } |
|
| 235 | - |
|
| 236 | - // $post_id and $post are required |
|
| 237 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 238 | - return; |
|
| 239 | - } |
|
| 240 | - |
|
| 241 | - // Dont' save meta boxes for revisions or autosaves. |
|
| 242 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 243 | - return; |
|
| 244 | - } |
|
| 245 | - |
|
| 246 | - // Check the nonce. |
|
| 247 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 248 | - return; |
|
| 249 | - } |
|
| 250 | - |
|
| 251 | - // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 252 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 253 | - return; |
|
| 254 | - } |
|
| 255 | - |
|
| 256 | - // Check user has permission to edit. |
|
| 257 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 258 | - return; |
|
| 259 | - } |
|
| 260 | - |
|
| 261 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 262 | - |
|
| 263 | - // We need this save event to run once to avoid potential endless loops. |
|
| 264 | - self::$saved_meta_boxes = true; |
|
| 265 | - |
|
| 266 | - return GetPaid_Meta_Box_Invoice_Address::save( $post_id ); |
|
| 267 | - |
|
| 268 | - } |
|
| 269 | - |
|
| 270 | - // Ensure this is our post type. |
|
| 271 | - $post_types_map = array( |
|
| 272 | - 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 273 | - 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 274 | - 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 275 | - ); |
|
| 276 | - |
|
| 277 | - // Is this our post type? |
|
| 278 | - if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 279 | - return; |
|
| 280 | - } |
|
| 281 | - |
|
| 282 | - // We need this save event to run once to avoid potential endless loops. |
|
| 283 | - self::$saved_meta_boxes = true; |
|
| 284 | - |
|
| 285 | - // Save the post. |
|
| 286 | - $class = $post_types_map[ $post->post_type ]; |
|
| 287 | - $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
| 288 | - |
|
| 289 | - } |
|
| 221 | + /** |
|
| 222 | + * Check if we're saving, then trigger an action based on the post type. |
|
| 223 | + * |
|
| 224 | + * @param int $post_id Post ID. |
|
| 225 | + * @param object $post Post object. |
|
| 226 | + */ |
|
| 227 | + public static function save_meta_boxes( $post_id, $post ) { |
|
| 228 | + $post_id = absint( $post_id ); |
|
| 229 | + $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 230 | + |
|
| 231 | + // Do not save for ajax requests. |
|
| 232 | + if ( ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 233 | + return; |
|
| 234 | + } |
|
| 235 | + |
|
| 236 | + // $post_id and $post are required |
|
| 237 | + if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 238 | + return; |
|
| 239 | + } |
|
| 240 | + |
|
| 241 | + // Dont' save meta boxes for revisions or autosaves. |
|
| 242 | + if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 243 | + return; |
|
| 244 | + } |
|
| 245 | + |
|
| 246 | + // Check the nonce. |
|
| 247 | + if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 248 | + return; |
|
| 249 | + } |
|
| 250 | + |
|
| 251 | + // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 252 | + if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 253 | + return; |
|
| 254 | + } |
|
| 255 | + |
|
| 256 | + // Check user has permission to edit. |
|
| 257 | + if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 258 | + return; |
|
| 259 | + } |
|
| 260 | + |
|
| 261 | + if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 262 | + |
|
| 263 | + // We need this save event to run once to avoid potential endless loops. |
|
| 264 | + self::$saved_meta_boxes = true; |
|
| 265 | + |
|
| 266 | + return GetPaid_Meta_Box_Invoice_Address::save( $post_id ); |
|
| 267 | + |
|
| 268 | + } |
|
| 269 | + |
|
| 270 | + // Ensure this is our post type. |
|
| 271 | + $post_types_map = array( |
|
| 272 | + 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 273 | + 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 274 | + 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 275 | + ); |
|
| 276 | + |
|
| 277 | + // Is this our post type? |
|
| 278 | + if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 279 | + return; |
|
| 280 | + } |
|
| 281 | + |
|
| 282 | + // We need this save event to run once to avoid potential endless loops. |
|
| 283 | + self::$saved_meta_boxes = true; |
|
| 284 | + |
|
| 285 | + // Save the post. |
|
| 286 | + $class = $post_types_map[ $post->post_type ]; |
|
| 287 | + $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
| 288 | + |
|
| 289 | + } |
|
| 290 | 290 | |
| 291 | 291 | } |
@@ -13,725 +13,725 @@ discard block |
||
| 13 | 13 | class GetPaid_Post_Types_Admin { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Hook in methods. |
|
| 17 | - */ |
|
| 18 | - public static function init() { |
|
| 19 | - |
|
| 20 | - // Init metaboxes. |
|
| 21 | - GetPaid_Metaboxes::init(); |
|
| 22 | - |
|
| 23 | - // Filter the post updated messages. |
|
| 24 | - add_filter( 'post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages' ); |
|
| 25 | - |
|
| 26 | - // Filter post actions. |
|
| 27 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2 ); |
|
| 28 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2 ); |
|
| 29 | - |
|
| 30 | - // Invoice table columns. |
|
| 31 | - add_filter( 'manage_wpi_invoice_posts_columns', array( __CLASS__, 'invoice_columns' ), 100 ); |
|
| 32 | - add_action( 'manage_wpi_invoice_posts_custom_column', array( __CLASS__, 'display_invoice_columns' ), 10, 2 ); |
|
| 33 | - add_filter( 'bulk_actions-edit-wpi_invoice', array( __CLASS__, 'invoice_bulk_actions' ) ); |
|
| 34 | - add_filter( 'handle_bulk_actions-edit-wpi_invoice', array( __CLASS__, 'handle_invoice_bulk_actions' ), 10, 3 ); |
|
| 35 | - |
|
| 36 | - // Items table columns. |
|
| 37 | - add_filter( 'manage_wpi_item_posts_columns', array( __CLASS__, 'item_columns' ), 100 ); |
|
| 38 | - add_filter( 'manage_edit-wpi_item_sortable_columns', array( __CLASS__, 'sortable_item_columns' ), 20 ); |
|
| 39 | - add_action( 'manage_wpi_item_posts_custom_column', array( __CLASS__, 'display_item_columns' ), 10, 2 ); |
|
| 40 | - add_action( 'restrict_manage_posts', array( __CLASS__, 'add_item_filters' ), 100 ); |
|
| 41 | - add_action( 'parse_query', array( __CLASS__, 'filter_item_query' ), 100 ); |
|
| 42 | - add_action( 'request', array( __CLASS__, 'reorder_items' ), 100 ); |
|
| 43 | - |
|
| 44 | - // Payment forms columns. |
|
| 45 | - add_filter( 'manage_wpi_payment_form_posts_columns', array( __CLASS__, 'payment_form_columns' ), 100 ); |
|
| 46 | - add_action( 'manage_wpi_payment_form_posts_custom_column', array( __CLASS__, 'display_payment_form_columns' ), 10, 2 ); |
|
| 47 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_payment_form_state' ), 10, 2 ); |
|
| 48 | - |
|
| 49 | - // Discount table columns. |
|
| 50 | - add_filter( 'manage_wpi_discount_posts_columns', array( __CLASS__, 'discount_columns' ), 100 ); |
|
| 51 | - add_filter( 'bulk_actions-edit-wpi_discount', '__return_empty_array', 100 ); |
|
| 52 | - |
|
| 53 | - // Deleting posts. |
|
| 54 | - add_action( 'delete_post', array( __CLASS__, 'delete_post' ) ); |
|
| 55 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_discount_state' ), 10, 2 ); |
|
| 56 | - |
|
| 57 | - add_filter( 'display_post_states', array( __CLASS__, 'add_display_post_states' ), 10, 2 ); |
|
| 58 | - } |
|
| 59 | - |
|
| 60 | - /** |
|
| 61 | - * Post updated messages. |
|
| 62 | - */ |
|
| 63 | - public static function post_updated_messages( $messages ) { |
|
| 64 | - global $post; |
|
| 65 | - |
|
| 66 | - $messages['wpi_discount'] = array( |
|
| 67 | - 0 => '', |
|
| 68 | - 1 => __( 'Discount updated.', 'invoicing' ), |
|
| 69 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 70 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 71 | - 4 => __( 'Discount updated.', 'invoicing' ), |
|
| 72 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Discount restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 73 | - 6 => __( 'Discount updated.', 'invoicing' ), |
|
| 74 | - 7 => __( 'Discount saved.', 'invoicing' ), |
|
| 75 | - 8 => __( 'Discount submitted.', 'invoicing' ), |
|
| 76 | - 9 => wp_sprintf( __( 'Discount scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 77 | - 10 => __( 'Discount draft updated.', 'invoicing' ), |
|
| 78 | - ); |
|
| 79 | - |
|
| 80 | - $messages['wpi_payment_form'] = array( |
|
| 81 | - 0 => '', |
|
| 82 | - 1 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 83 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 84 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 85 | - 4 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 86 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Payment Form restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 87 | - 6 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 88 | - 7 => __( 'Payment Form saved.', 'invoicing' ), |
|
| 89 | - 8 => __( 'Payment Form submitted.', 'invoicing' ), |
|
| 90 | - 9 => wp_sprintf( __( 'Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 91 | - 10 => __( 'Payment Form draft updated.', 'invoicing' ), |
|
| 92 | - ); |
|
| 93 | - |
|
| 94 | - return $messages; |
|
| 95 | - |
|
| 96 | - } |
|
| 97 | - |
|
| 98 | - /** |
|
| 99 | - * Post row actions. |
|
| 100 | - */ |
|
| 101 | - public static function post_row_actions( $actions, $post ) { |
|
| 102 | - |
|
| 103 | - $post = get_post( $post ); |
|
| 104 | - |
|
| 105 | - // We do not want to edit the default payment form. |
|
| 106 | - if ( 'wpi_payment_form' == $post->post_type ) { |
|
| 107 | - |
|
| 108 | - if ( wpinv_get_default_payment_form() === $post->ID ) { |
|
| 109 | - unset( $actions['trash'] ); |
|
| 110 | - unset( $actions['inline hide-if-no-js'] ); |
|
| 111 | - } |
|
| 112 | - |
|
| 113 | - $actions['duplicate'] = sprintf( |
|
| 114 | - '<a href="%1$s">%2$s</a>', |
|
| 115 | - esc_url( |
|
| 116 | - wp_nonce_url( |
|
| 117 | - add_query_arg( |
|
| 118 | - array( |
|
| 119 | - 'getpaid-admin-action' => 'duplicate_form', |
|
| 120 | - 'form_id' => $post->ID, |
|
| 121 | - ) |
|
| 122 | - ), |
|
| 123 | - 'getpaid-nonce', |
|
| 124 | - 'getpaid-nonce' |
|
| 125 | - ) |
|
| 126 | - ), |
|
| 127 | - esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 128 | - ); |
|
| 129 | - |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - // Link to item payment form. |
|
| 133 | - if ( 'wpi_item' == $post->post_type ) { |
|
| 134 | - |
|
| 135 | - if ( in_array( get_post_meta( $post->ID, '_wpinv_type', true ), array( '', 'fee', 'custom' ), true ) ) { |
|
| 136 | - |
|
| 137 | - $actions['buy'] = sprintf( |
|
| 138 | - '<a href="%1$s">%2$s</a>', |
|
| 139 | - esc_url( getpaid_embed_url( false, $post->ID . '|0' ) ), |
|
| 140 | - esc_html( __( 'Buy', 'invoicing' ) ) |
|
| 141 | - ); |
|
| 142 | - |
|
| 143 | - } |
|
| 16 | + * Hook in methods. |
|
| 17 | + */ |
|
| 18 | + public static function init() { |
|
| 19 | + |
|
| 20 | + // Init metaboxes. |
|
| 21 | + GetPaid_Metaboxes::init(); |
|
| 22 | + |
|
| 23 | + // Filter the post updated messages. |
|
| 24 | + add_filter( 'post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages' ); |
|
| 25 | + |
|
| 26 | + // Filter post actions. |
|
| 27 | + add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2 ); |
|
| 28 | + add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2 ); |
|
| 29 | + |
|
| 30 | + // Invoice table columns. |
|
| 31 | + add_filter( 'manage_wpi_invoice_posts_columns', array( __CLASS__, 'invoice_columns' ), 100 ); |
|
| 32 | + add_action( 'manage_wpi_invoice_posts_custom_column', array( __CLASS__, 'display_invoice_columns' ), 10, 2 ); |
|
| 33 | + add_filter( 'bulk_actions-edit-wpi_invoice', array( __CLASS__, 'invoice_bulk_actions' ) ); |
|
| 34 | + add_filter( 'handle_bulk_actions-edit-wpi_invoice', array( __CLASS__, 'handle_invoice_bulk_actions' ), 10, 3 ); |
|
| 35 | + |
|
| 36 | + // Items table columns. |
|
| 37 | + add_filter( 'manage_wpi_item_posts_columns', array( __CLASS__, 'item_columns' ), 100 ); |
|
| 38 | + add_filter( 'manage_edit-wpi_item_sortable_columns', array( __CLASS__, 'sortable_item_columns' ), 20 ); |
|
| 39 | + add_action( 'manage_wpi_item_posts_custom_column', array( __CLASS__, 'display_item_columns' ), 10, 2 ); |
|
| 40 | + add_action( 'restrict_manage_posts', array( __CLASS__, 'add_item_filters' ), 100 ); |
|
| 41 | + add_action( 'parse_query', array( __CLASS__, 'filter_item_query' ), 100 ); |
|
| 42 | + add_action( 'request', array( __CLASS__, 'reorder_items' ), 100 ); |
|
| 43 | + |
|
| 44 | + // Payment forms columns. |
|
| 45 | + add_filter( 'manage_wpi_payment_form_posts_columns', array( __CLASS__, 'payment_form_columns' ), 100 ); |
|
| 46 | + add_action( 'manage_wpi_payment_form_posts_custom_column', array( __CLASS__, 'display_payment_form_columns' ), 10, 2 ); |
|
| 47 | + add_filter( 'display_post_states', array( __CLASS__, 'filter_payment_form_state' ), 10, 2 ); |
|
| 48 | + |
|
| 49 | + // Discount table columns. |
|
| 50 | + add_filter( 'manage_wpi_discount_posts_columns', array( __CLASS__, 'discount_columns' ), 100 ); |
|
| 51 | + add_filter( 'bulk_actions-edit-wpi_discount', '__return_empty_array', 100 ); |
|
| 52 | + |
|
| 53 | + // Deleting posts. |
|
| 54 | + add_action( 'delete_post', array( __CLASS__, 'delete_post' ) ); |
|
| 55 | + add_filter( 'display_post_states', array( __CLASS__, 'filter_discount_state' ), 10, 2 ); |
|
| 56 | + |
|
| 57 | + add_filter( 'display_post_states', array( __CLASS__, 'add_display_post_states' ), 10, 2 ); |
|
| 58 | + } |
|
| 59 | + |
|
| 60 | + /** |
|
| 61 | + * Post updated messages. |
|
| 62 | + */ |
|
| 63 | + public static function post_updated_messages( $messages ) { |
|
| 64 | + global $post; |
|
| 65 | + |
|
| 66 | + $messages['wpi_discount'] = array( |
|
| 67 | + 0 => '', |
|
| 68 | + 1 => __( 'Discount updated.', 'invoicing' ), |
|
| 69 | + 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 70 | + 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 71 | + 4 => __( 'Discount updated.', 'invoicing' ), |
|
| 72 | + 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Discount restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 73 | + 6 => __( 'Discount updated.', 'invoicing' ), |
|
| 74 | + 7 => __( 'Discount saved.', 'invoicing' ), |
|
| 75 | + 8 => __( 'Discount submitted.', 'invoicing' ), |
|
| 76 | + 9 => wp_sprintf( __( 'Discount scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 77 | + 10 => __( 'Discount draft updated.', 'invoicing' ), |
|
| 78 | + ); |
|
| 79 | + |
|
| 80 | + $messages['wpi_payment_form'] = array( |
|
| 81 | + 0 => '', |
|
| 82 | + 1 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 83 | + 2 => __( 'Custom field updated.', 'invoicing' ), |
|
| 84 | + 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
| 85 | + 4 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 86 | + 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Payment Form restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
| 87 | + 6 => __( 'Payment Form updated.', 'invoicing' ), |
|
| 88 | + 7 => __( 'Payment Form saved.', 'invoicing' ), |
|
| 89 | + 8 => __( 'Payment Form submitted.', 'invoicing' ), |
|
| 90 | + 9 => wp_sprintf( __( 'Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
| 91 | + 10 => __( 'Payment Form draft updated.', 'invoicing' ), |
|
| 92 | + ); |
|
| 93 | + |
|
| 94 | + return $messages; |
|
| 95 | + |
|
| 96 | + } |
|
| 97 | + |
|
| 98 | + /** |
|
| 99 | + * Post row actions. |
|
| 100 | + */ |
|
| 101 | + public static function post_row_actions( $actions, $post ) { |
|
| 102 | + |
|
| 103 | + $post = get_post( $post ); |
|
| 104 | + |
|
| 105 | + // We do not want to edit the default payment form. |
|
| 106 | + if ( 'wpi_payment_form' == $post->post_type ) { |
|
| 107 | + |
|
| 108 | + if ( wpinv_get_default_payment_form() === $post->ID ) { |
|
| 109 | + unset( $actions['trash'] ); |
|
| 110 | + unset( $actions['inline hide-if-no-js'] ); |
|
| 111 | + } |
|
| 112 | + |
|
| 113 | + $actions['duplicate'] = sprintf( |
|
| 114 | + '<a href="%1$s">%2$s</a>', |
|
| 115 | + esc_url( |
|
| 116 | + wp_nonce_url( |
|
| 117 | + add_query_arg( |
|
| 118 | + array( |
|
| 119 | + 'getpaid-admin-action' => 'duplicate_form', |
|
| 120 | + 'form_id' => $post->ID, |
|
| 121 | + ) |
|
| 122 | + ), |
|
| 123 | + 'getpaid-nonce', |
|
| 124 | + 'getpaid-nonce' |
|
| 125 | + ) |
|
| 126 | + ), |
|
| 127 | + esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 128 | + ); |
|
| 129 | + |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + // Link to item payment form. |
|
| 133 | + if ( 'wpi_item' == $post->post_type ) { |
|
| 134 | + |
|
| 135 | + if ( in_array( get_post_meta( $post->ID, '_wpinv_type', true ), array( '', 'fee', 'custom' ), true ) ) { |
|
| 136 | + |
|
| 137 | + $actions['buy'] = sprintf( |
|
| 138 | + '<a href="%1$s">%2$s</a>', |
|
| 139 | + esc_url( getpaid_embed_url( false, $post->ID . '|0' ) ), |
|
| 140 | + esc_html( __( 'Buy', 'invoicing' ) ) |
|
| 141 | + ); |
|
| 142 | + |
|
| 143 | + } |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - return $actions; |
|
| 147 | - } |
|
| 146 | + return $actions; |
|
| 147 | + } |
|
| 148 | 148 | |
| 149 | - /** |
|
| 149 | + /** |
|
| 150 | 150 | * Remove bulk edit option from admin side quote listing |
| 151 | 151 | * |
| 152 | 152 | * @since 1.0.0 |
| 153 | 153 | * @param array $actions post actions |
| 154 | - * @param WP_Post $post |
|
| 154 | + * @param WP_Post $post |
|
| 155 | 155 | * @return array $actions actions without edit option |
| 156 | 156 | */ |
| 157 | 157 | public static function filter_invoice_row_actions( $actions, $post ) { |
| 158 | 158 | |
| 159 | 159 | if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
| 160 | 160 | |
| 161 | - $actions = array(); |
|
| 162 | - $invoice = new WPInv_Invoice( $post ); |
|
| 163 | - |
|
| 164 | - $actions['edit'] = sprintf( |
|
| 165 | - '<a href="%1$s">%2$s</a>', |
|
| 166 | - esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
| 167 | - esc_html( __( 'Edit', 'invoicing' ) ) |
|
| 168 | - ); |
|
| 169 | - |
|
| 170 | - if ( ! $invoice->is_draft() ) { |
|
| 171 | - |
|
| 172 | - $actions['view'] = sprintf( |
|
| 173 | - '<a href="%1$s">%2$s</a>', |
|
| 174 | - esc_url( $invoice->get_view_url() ), |
|
| 175 | - sprintf( |
|
| 176 | - // translators: %s is the invoice type |
|
| 177 | - esc_html__( 'View %s', 'invoicing' ), |
|
| 178 | - getpaid_get_post_type_label( $invoice->get_post_type(), false ) |
|
| 179 | - ) |
|
| 180 | - ); |
|
| 181 | - |
|
| 182 | - $actions['send'] = sprintf( |
|
| 183 | - '<a href="%1$s">%2$s</a>', |
|
| 184 | - esc_url( |
|
| 185 | - wp_nonce_url( |
|
| 186 | - add_query_arg( |
|
| 187 | - array( |
|
| 188 | - 'getpaid-admin-action' => 'send_invoice', |
|
| 189 | - 'invoice_id' => $invoice->get_id(), |
|
| 190 | - ) |
|
| 191 | - ), |
|
| 192 | - 'getpaid-nonce', |
|
| 193 | - 'getpaid-nonce' |
|
| 194 | - ) |
|
| 195 | - ), |
|
| 196 | - esc_html( __( 'Send to Customer', 'invoicing' ) ) |
|
| 197 | - ); |
|
| 198 | - |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - $actions['duplicate'] = sprintf( |
|
| 202 | - '<a href="%1$s">%2$s</a>', |
|
| 203 | - esc_url( |
|
| 204 | - wp_nonce_url( |
|
| 205 | - add_query_arg( |
|
| 206 | - array( |
|
| 207 | - 'getpaid-admin-action' => 'duplicate_invoice', |
|
| 208 | - 'invoice_id' => $post->ID, |
|
| 209 | - ) |
|
| 210 | - ), |
|
| 211 | - 'getpaid-nonce', |
|
| 212 | - 'getpaid-nonce' |
|
| 213 | - ) |
|
| 214 | - ), |
|
| 215 | - esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 216 | - ); |
|
| 161 | + $actions = array(); |
|
| 162 | + $invoice = new WPInv_Invoice( $post ); |
|
| 163 | + |
|
| 164 | + $actions['edit'] = sprintf( |
|
| 165 | + '<a href="%1$s">%2$s</a>', |
|
| 166 | + esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
| 167 | + esc_html( __( 'Edit', 'invoicing' ) ) |
|
| 168 | + ); |
|
| 169 | + |
|
| 170 | + if ( ! $invoice->is_draft() ) { |
|
| 171 | + |
|
| 172 | + $actions['view'] = sprintf( |
|
| 173 | + '<a href="%1$s">%2$s</a>', |
|
| 174 | + esc_url( $invoice->get_view_url() ), |
|
| 175 | + sprintf( |
|
| 176 | + // translators: %s is the invoice type |
|
| 177 | + esc_html__( 'View %s', 'invoicing' ), |
|
| 178 | + getpaid_get_post_type_label( $invoice->get_post_type(), false ) |
|
| 179 | + ) |
|
| 180 | + ); |
|
| 181 | + |
|
| 182 | + $actions['send'] = sprintf( |
|
| 183 | + '<a href="%1$s">%2$s</a>', |
|
| 184 | + esc_url( |
|
| 185 | + wp_nonce_url( |
|
| 186 | + add_query_arg( |
|
| 187 | + array( |
|
| 188 | + 'getpaid-admin-action' => 'send_invoice', |
|
| 189 | + 'invoice_id' => $invoice->get_id(), |
|
| 190 | + ) |
|
| 191 | + ), |
|
| 192 | + 'getpaid-nonce', |
|
| 193 | + 'getpaid-nonce' |
|
| 194 | + ) |
|
| 195 | + ), |
|
| 196 | + esc_html( __( 'Send to Customer', 'invoicing' ) ) |
|
| 197 | + ); |
|
| 198 | + |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + $actions['duplicate'] = sprintf( |
|
| 202 | + '<a href="%1$s">%2$s</a>', |
|
| 203 | + esc_url( |
|
| 204 | + wp_nonce_url( |
|
| 205 | + add_query_arg( |
|
| 206 | + array( |
|
| 207 | + 'getpaid-admin-action' => 'duplicate_invoice', |
|
| 208 | + 'invoice_id' => $post->ID, |
|
| 209 | + ) |
|
| 210 | + ), |
|
| 211 | + 'getpaid-nonce', |
|
| 212 | + 'getpaid-nonce' |
|
| 213 | + ) |
|
| 214 | + ), |
|
| 215 | + esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
| 216 | + ); |
|
| 217 | 217 | |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | 220 | return $actions; |
| 221 | - } |
|
| 222 | - |
|
| 223 | - /** |
|
| 224 | - * Returns an array of invoice table columns. |
|
| 225 | - */ |
|
| 226 | - public static function invoice_columns( $columns ) { |
|
| 227 | - |
|
| 228 | - $columns = array( |
|
| 229 | - 'cb' => $columns['cb'], |
|
| 230 | - 'number' => __( 'Invoice', 'invoicing' ), |
|
| 231 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
| 232 | - 'invoice_date' => __( 'Created', 'invoicing' ), |
|
| 233 | - 'payment_date' => __( 'Completed', 'invoicing' ), |
|
| 234 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 235 | - 'recurring' => __( 'Recurring', 'invoicing' ), |
|
| 236 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 237 | - ); |
|
| 238 | - |
|
| 239 | - return apply_filters( 'wpi_invoice_table_columns', $columns ); |
|
| 240 | - } |
|
| 241 | - |
|
| 242 | - /** |
|
| 243 | - * Displays invoice table columns. |
|
| 244 | - */ |
|
| 245 | - public static function display_invoice_columns( $column_name, $post_id ) { |
|
| 246 | - |
|
| 247 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 248 | - |
|
| 249 | - switch ( $column_name ) { |
|
| 250 | - |
|
| 251 | - case 'invoice_date': |
|
| 252 | - $date_time = esc_attr( $invoice->get_created_date() ); |
|
| 253 | - $date = esc_html( getpaid_format_date_value( $date_time, '—', true ) ); |
|
| 254 | - echo wp_kses_post( "<span title='$date_time'>$date</span>" ); |
|
| 255 | - break; |
|
| 256 | - |
|
| 257 | - case 'payment_date': |
|
| 258 | - if ( $invoice->is_paid() ) { |
|
| 259 | - $date_time = esc_attr( $invoice->get_completed_date() ); |
|
| 260 | - $date = esc_html( getpaid_format_date_value( $date_time, '—', true ) ); |
|
| 261 | - echo wp_kses_post( "<span title='$date_time'>$date</span>" ); |
|
| 262 | - } else { |
|
| 263 | - echo '—'; |
|
| 264 | - } |
|
| 265 | - |
|
| 266 | - break; |
|
| 267 | - |
|
| 268 | - case 'amount': |
|
| 269 | - $amount = $invoice->get_total(); |
|
| 270 | - $formated_amount = wp_kses_post( wpinv_price( $amount, $invoice->get_currency() ) ); |
|
| 271 | - |
|
| 272 | - if ( $invoice->is_refunded() ) { |
|
| 273 | - $refunded_amount = wpinv_price( 0, $invoice->get_currency() ); |
|
| 274 | - echo wp_kses_post( "<del>$formated_amount</del> <ins>$refunded_amount</ins>" ); |
|
| 275 | - } else { |
|
| 276 | - |
|
| 277 | - $discount = $invoice->get_total_discount(); |
|
| 278 | - |
|
| 279 | - if ( ! empty( $discount ) ) { |
|
| 280 | - $new_amount = wpinv_price( $amount + $discount, $invoice->get_currency() ); |
|
| 281 | - echo wp_kses_post( "<del>$new_amount</del> <ins>$formated_amount</ins>" ); |
|
| 282 | - } else { |
|
| 283 | - echo wp_kses_post( $formated_amount ); |
|
| 284 | - } |
|
| 285 | - } |
|
| 286 | - |
|
| 287 | - break; |
|
| 288 | - |
|
| 289 | - case 'status': |
|
| 290 | - $status = esc_html( $invoice->get_status() ); |
|
| 291 | - $status_label = esc_html( $invoice->get_status_nicename() ); |
|
| 292 | - |
|
| 293 | - // If it is paid, show the gateway title. |
|
| 294 | - if ( $invoice->is_paid() ) { |
|
| 295 | - $gateway = esc_html( $invoice->get_gateway_title() ); |
|
| 296 | - $gateway = wp_sprintf( esc_attr__( 'Paid via %s', 'invoicing' ), esc_html( $gateway ) ); |
|
| 297 | - |
|
| 298 | - echo wp_kses_post( "<mark class='wpi-help-tip getpaid-invoice-status $status' title='$gateway'><span>$status_label</span></mark>" ); |
|
| 299 | - } else { |
|
| 300 | - echo wp_kses_post( "<mark class='getpaid-invoice-status $status'><span>$status_label</span></mark>" ); |
|
| 301 | - } |
|
| 302 | - |
|
| 303 | - // If it is not paid, display the overdue and view status. |
|
| 304 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 305 | - |
|
| 306 | - // Invoice view status. |
|
| 307 | - if ( wpinv_is_invoice_viewed( $invoice->get_id() ) ) { |
|
| 308 | - echo ' <i class="fa fa-eye wpi-help-tip" title="' . esc_attr__( 'Viewed by Customer', 'invoicing' ) . '"></i>'; |
|
| 309 | - } else { |
|
| 310 | - echo ' <i class="fa fa-eye-slash wpi-help-tip" title="' . esc_attr__( 'Not Viewed by Customer', 'invoicing' ) . '"></i>'; |
|
| 311 | - } |
|
| 312 | - |
|
| 313 | - // Display the overview status. |
|
| 314 | - if ( wpinv_get_option( 'overdue_active' ) ) { |
|
| 315 | - $due_date = $invoice->get_due_date(); |
|
| 316 | - $fomatted = getpaid_format_date( $due_date ); |
|
| 317 | - |
|
| 318 | - if ( ! empty( $fomatted ) ) { |
|
| 319 | - $date = wp_sprintf( |
|
| 320 | - // translators: %s is the due date. |
|
| 321 | - __( 'Due %s', 'invoicing' ), |
|
| 322 | - $fomatted |
|
| 323 | - ); |
|
| 324 | - echo wp_kses_post( "<p class='description' style='color: #888;' title='$due_date'>$fomatted</p>" ); |
|
| 325 | - } |
|
| 326 | - } |
|
| 327 | - } |
|
| 328 | - |
|
| 329 | - break; |
|
| 330 | - |
|
| 331 | - case 'recurring': |
|
| 332 | - if ( $invoice->is_recurring() ) { |
|
| 333 | - echo '<i class="fa fa-check" style="color:#43850a;"></i>'; |
|
| 334 | - } else { |
|
| 335 | - echo '<i class="fa fa-times" style="color:#616161;"></i>'; |
|
| 336 | - } |
|
| 337 | - break; |
|
| 338 | - |
|
| 339 | - case 'number': |
|
| 340 | - $edit_link = esc_url( get_edit_post_link( $invoice->get_id() ) ); |
|
| 341 | - $invoice_number = esc_html( $invoice->get_number() ); |
|
| 342 | - $invoice_details = esc_attr__( 'View Invoice Details', 'invoicing' ); |
|
| 343 | - |
|
| 344 | - echo wp_kses_post( "<a href='$edit_link' title='$invoice_details'><strong>$invoice_number</strong></a>" ); |
|
| 345 | - |
|
| 346 | - do_action( 'getpaid_admin_table_invoice_number_column', $invoice ); |
|
| 347 | - break; |
|
| 348 | - |
|
| 349 | - case 'customer': |
|
| 350 | - $customer_name = $invoice->get_user_full_name(); |
|
| 351 | - |
|
| 352 | - if ( empty( $customer_name ) ) { |
|
| 353 | - $customer_name = $invoice->get_email(); |
|
| 354 | - } |
|
| 355 | - |
|
| 356 | - if ( ! empty( $customer_name ) ) { |
|
| 357 | - $customer_details = esc_attr__( 'View Customer Details', 'invoicing' ); |
|
| 358 | - $view_link = esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), admin_url( 'user-edit.php' ) ) ); |
|
| 359 | - echo wp_kses_post( "<a href='$view_link' title='$customer_details'><span>$customer_name</span></a>" ); |
|
| 360 | - } else { |
|
| 361 | - echo '<div>—</div>'; |
|
| 362 | - } |
|
| 363 | - |
|
| 364 | - break; |
|
| 365 | - |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - } |
|
| 369 | - |
|
| 370 | - /** |
|
| 371 | - * Displays invoice bulk actions. |
|
| 372 | - */ |
|
| 373 | - public static function invoice_bulk_actions( $actions ) { |
|
| 374 | - $actions['resend-invoice'] = __( 'Send to Customer', 'invoicing' ); |
|
| 375 | - return $actions; |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - /** |
|
| 379 | - * Processes invoice bulk actions. |
|
| 380 | - */ |
|
| 381 | - public static function handle_invoice_bulk_actions( $redirect_url, $action, $post_ids ) { |
|
| 382 | - |
|
| 383 | - if ( 'resend-invoice' === $action ) { |
|
| 384 | - foreach ( $post_ids as $post_id ) { |
|
| 385 | - getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $post_id ), true ); |
|
| 386 | - } |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - return $redirect_url; |
|
| 390 | - |
|
| 391 | - } |
|
| 392 | - |
|
| 393 | - /** |
|
| 394 | - * Returns an array of payment forms table columns. |
|
| 395 | - */ |
|
| 396 | - public static function payment_form_columns( $columns ) { |
|
| 397 | - |
|
| 398 | - $columns = array( |
|
| 399 | - 'cb' => $columns['cb'], |
|
| 400 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 401 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 402 | - 'earnings' => __( 'Revenue', 'invoicing' ), |
|
| 403 | - 'refunds' => __( 'Refunded', 'invoicing' ), |
|
| 404 | - 'items' => __( 'Items', 'invoicing' ), |
|
| 405 | - 'date' => __( 'Date', 'invoicing' ), |
|
| 406 | - ); |
|
| 407 | - |
|
| 408 | - return apply_filters( 'wpi_payment_form_table_columns', $columns ); |
|
| 409 | - |
|
| 410 | - } |
|
| 411 | - |
|
| 412 | - /** |
|
| 413 | - * Displays payment form table columns. |
|
| 414 | - */ |
|
| 415 | - public static function display_payment_form_columns( $column_name, $post_id ) { |
|
| 416 | - |
|
| 417 | - // Retrieve the payment form. |
|
| 418 | - $form = new GetPaid_Payment_Form( $post_id ); |
|
| 419 | - |
|
| 420 | - switch ( $column_name ) { |
|
| 421 | - |
|
| 422 | - case 'earnings': |
|
| 423 | - echo wp_kses_post( wpinv_price( $form->get_earned() ) ); |
|
| 424 | - break; |
|
| 425 | - |
|
| 426 | - case 'refunds': |
|
| 427 | - echo wp_kses_post( wpinv_price( $form->get_refunded() ) ); |
|
| 428 | - break; |
|
| 429 | - |
|
| 430 | - case 'refunds': |
|
| 431 | - echo wp_kses_post( wpinv_price( $form->get_refunded() ) ); |
|
| 432 | - break; |
|
| 433 | - |
|
| 434 | - case 'shortcode': |
|
| 435 | - if ( $form->is_default() ) { |
|
| 436 | - echo '—'; |
|
| 437 | - } else { |
|
| 438 | - echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr( $form->get_id() ) . ']" style="width: 100%;" readonly/>'; |
|
| 439 | - } |
|
| 440 | - |
|
| 441 | - break; |
|
| 221 | + } |
|
| 442 | 222 | |
| 443 | - case 'items': |
|
| 444 | - $items = $form->get_items(); |
|
| 445 | - |
|
| 446 | - if ( $form->is_default() || empty( $items ) ) { |
|
| 447 | - echo '—'; |
|
| 448 | - return; |
|
| 449 | - } |
|
| 450 | - |
|
| 451 | - $_items = array(); |
|
| 452 | - |
|
| 453 | - foreach ( $items as $item ) { |
|
| 454 | - $url = $item->get_edit_url(); |
|
| 455 | - |
|
| 456 | - if ( empty( $url ) ) { |
|
| 457 | - $_items[] = esc_html( $item->get_name() ); |
|
| 458 | - } else { |
|
| 459 | - $_items[] = sprintf( |
|
| 460 | - '<a href="%s">%s</a>', |
|
| 461 | - esc_url( $url ), |
|
| 462 | - esc_html( $item->get_name() ) |
|
| 463 | - ); |
|
| 464 | - } |
|
| 223 | + /** |
|
| 224 | + * Returns an array of invoice table columns. |
|
| 225 | + */ |
|
| 226 | + public static function invoice_columns( $columns ) { |
|
| 227 | + |
|
| 228 | + $columns = array( |
|
| 229 | + 'cb' => $columns['cb'], |
|
| 230 | + 'number' => __( 'Invoice', 'invoicing' ), |
|
| 231 | + 'customer' => __( 'Customer', 'invoicing' ), |
|
| 232 | + 'invoice_date' => __( 'Created', 'invoicing' ), |
|
| 233 | + 'payment_date' => __( 'Completed', 'invoicing' ), |
|
| 234 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 235 | + 'recurring' => __( 'Recurring', 'invoicing' ), |
|
| 236 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 237 | + ); |
|
| 238 | + |
|
| 239 | + return apply_filters( 'wpi_invoice_table_columns', $columns ); |
|
| 240 | + } |
|
| 241 | + |
|
| 242 | + /** |
|
| 243 | + * Displays invoice table columns. |
|
| 244 | + */ |
|
| 245 | + public static function display_invoice_columns( $column_name, $post_id ) { |
|
| 246 | + |
|
| 247 | + $invoice = new WPInv_Invoice( $post_id ); |
|
| 248 | + |
|
| 249 | + switch ( $column_name ) { |
|
| 250 | + |
|
| 251 | + case 'invoice_date': |
|
| 252 | + $date_time = esc_attr( $invoice->get_created_date() ); |
|
| 253 | + $date = esc_html( getpaid_format_date_value( $date_time, '—', true ) ); |
|
| 254 | + echo wp_kses_post( "<span title='$date_time'>$date</span>" ); |
|
| 255 | + break; |
|
| 256 | + |
|
| 257 | + case 'payment_date': |
|
| 258 | + if ( $invoice->is_paid() ) { |
|
| 259 | + $date_time = esc_attr( $invoice->get_completed_date() ); |
|
| 260 | + $date = esc_html( getpaid_format_date_value( $date_time, '—', true ) ); |
|
| 261 | + echo wp_kses_post( "<span title='$date_time'>$date</span>" ); |
|
| 262 | + } else { |
|
| 263 | + echo '—'; |
|
| 264 | + } |
|
| 265 | + |
|
| 266 | + break; |
|
| 267 | + |
|
| 268 | + case 'amount': |
|
| 269 | + $amount = $invoice->get_total(); |
|
| 270 | + $formated_amount = wp_kses_post( wpinv_price( $amount, $invoice->get_currency() ) ); |
|
| 271 | + |
|
| 272 | + if ( $invoice->is_refunded() ) { |
|
| 273 | + $refunded_amount = wpinv_price( 0, $invoice->get_currency() ); |
|
| 274 | + echo wp_kses_post( "<del>$formated_amount</del> <ins>$refunded_amount</ins>" ); |
|
| 275 | + } else { |
|
| 276 | + |
|
| 277 | + $discount = $invoice->get_total_discount(); |
|
| 278 | + |
|
| 279 | + if ( ! empty( $discount ) ) { |
|
| 280 | + $new_amount = wpinv_price( $amount + $discount, $invoice->get_currency() ); |
|
| 281 | + echo wp_kses_post( "<del>$new_amount</del> <ins>$formated_amount</ins>" ); |
|
| 282 | + } else { |
|
| 283 | + echo wp_kses_post( $formated_amount ); |
|
| 284 | + } |
|
| 285 | + } |
|
| 286 | + |
|
| 287 | + break; |
|
| 288 | + |
|
| 289 | + case 'status': |
|
| 290 | + $status = esc_html( $invoice->get_status() ); |
|
| 291 | + $status_label = esc_html( $invoice->get_status_nicename() ); |
|
| 292 | + |
|
| 293 | + // If it is paid, show the gateway title. |
|
| 294 | + if ( $invoice->is_paid() ) { |
|
| 295 | + $gateway = esc_html( $invoice->get_gateway_title() ); |
|
| 296 | + $gateway = wp_sprintf( esc_attr__( 'Paid via %s', 'invoicing' ), esc_html( $gateway ) ); |
|
| 297 | + |
|
| 298 | + echo wp_kses_post( "<mark class='wpi-help-tip getpaid-invoice-status $status' title='$gateway'><span>$status_label</span></mark>" ); |
|
| 299 | + } else { |
|
| 300 | + echo wp_kses_post( "<mark class='getpaid-invoice-status $status'><span>$status_label</span></mark>" ); |
|
| 301 | + } |
|
| 302 | + |
|
| 303 | + // If it is not paid, display the overdue and view status. |
|
| 304 | + if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
| 305 | + |
|
| 306 | + // Invoice view status. |
|
| 307 | + if ( wpinv_is_invoice_viewed( $invoice->get_id() ) ) { |
|
| 308 | + echo ' <i class="fa fa-eye wpi-help-tip" title="' . esc_attr__( 'Viewed by Customer', 'invoicing' ) . '"></i>'; |
|
| 309 | + } else { |
|
| 310 | + echo ' <i class="fa fa-eye-slash wpi-help-tip" title="' . esc_attr__( 'Not Viewed by Customer', 'invoicing' ) . '"></i>'; |
|
| 311 | + } |
|
| 312 | + |
|
| 313 | + // Display the overview status. |
|
| 314 | + if ( wpinv_get_option( 'overdue_active' ) ) { |
|
| 315 | + $due_date = $invoice->get_due_date(); |
|
| 316 | + $fomatted = getpaid_format_date( $due_date ); |
|
| 317 | + |
|
| 318 | + if ( ! empty( $fomatted ) ) { |
|
| 319 | + $date = wp_sprintf( |
|
| 320 | + // translators: %s is the due date. |
|
| 321 | + __( 'Due %s', 'invoicing' ), |
|
| 322 | + $fomatted |
|
| 323 | + ); |
|
| 324 | + echo wp_kses_post( "<p class='description' style='color: #888;' title='$due_date'>$fomatted</p>" ); |
|
| 325 | + } |
|
| 326 | + } |
|
| 327 | + } |
|
| 328 | + |
|
| 329 | + break; |
|
| 330 | + |
|
| 331 | + case 'recurring': |
|
| 332 | + if ( $invoice->is_recurring() ) { |
|
| 333 | + echo '<i class="fa fa-check" style="color:#43850a;"></i>'; |
|
| 334 | + } else { |
|
| 335 | + echo '<i class="fa fa-times" style="color:#616161;"></i>'; |
|
| 336 | + } |
|
| 337 | + break; |
|
| 338 | + |
|
| 339 | + case 'number': |
|
| 340 | + $edit_link = esc_url( get_edit_post_link( $invoice->get_id() ) ); |
|
| 341 | + $invoice_number = esc_html( $invoice->get_number() ); |
|
| 342 | + $invoice_details = esc_attr__( 'View Invoice Details', 'invoicing' ); |
|
| 343 | + |
|
| 344 | + echo wp_kses_post( "<a href='$edit_link' title='$invoice_details'><strong>$invoice_number</strong></a>" ); |
|
| 345 | + |
|
| 346 | + do_action( 'getpaid_admin_table_invoice_number_column', $invoice ); |
|
| 347 | + break; |
|
| 348 | + |
|
| 349 | + case 'customer': |
|
| 350 | + $customer_name = $invoice->get_user_full_name(); |
|
| 351 | + |
|
| 352 | + if ( empty( $customer_name ) ) { |
|
| 353 | + $customer_name = $invoice->get_email(); |
|
| 354 | + } |
|
| 355 | + |
|
| 356 | + if ( ! empty( $customer_name ) ) { |
|
| 357 | + $customer_details = esc_attr__( 'View Customer Details', 'invoicing' ); |
|
| 358 | + $view_link = esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), admin_url( 'user-edit.php' ) ) ); |
|
| 359 | + echo wp_kses_post( "<a href='$view_link' title='$customer_details'><span>$customer_name</span></a>" ); |
|
| 360 | + } else { |
|
| 361 | + echo '<div>—</div>'; |
|
| 362 | + } |
|
| 363 | + |
|
| 364 | + break; |
|
| 365 | + |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + } |
|
| 369 | + |
|
| 370 | + /** |
|
| 371 | + * Displays invoice bulk actions. |
|
| 372 | + */ |
|
| 373 | + public static function invoice_bulk_actions( $actions ) { |
|
| 374 | + $actions['resend-invoice'] = __( 'Send to Customer', 'invoicing' ); |
|
| 375 | + return $actions; |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + /** |
|
| 379 | + * Processes invoice bulk actions. |
|
| 380 | + */ |
|
| 381 | + public static function handle_invoice_bulk_actions( $redirect_url, $action, $post_ids ) { |
|
| 382 | + |
|
| 383 | + if ( 'resend-invoice' === $action ) { |
|
| 384 | + foreach ( $post_ids as $post_id ) { |
|
| 385 | + getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $post_id ), true ); |
|
| 386 | + } |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + return $redirect_url; |
|
| 390 | + |
|
| 391 | + } |
|
| 392 | + |
|
| 393 | + /** |
|
| 394 | + * Returns an array of payment forms table columns. |
|
| 395 | + */ |
|
| 396 | + public static function payment_form_columns( $columns ) { |
|
| 397 | + |
|
| 398 | + $columns = array( |
|
| 399 | + 'cb' => $columns['cb'], |
|
| 400 | + 'title' => __( 'Name', 'invoicing' ), |
|
| 401 | + 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 402 | + 'earnings' => __( 'Revenue', 'invoicing' ), |
|
| 403 | + 'refunds' => __( 'Refunded', 'invoicing' ), |
|
| 404 | + 'items' => __( 'Items', 'invoicing' ), |
|
| 405 | + 'date' => __( 'Date', 'invoicing' ), |
|
| 406 | + ); |
|
| 407 | + |
|
| 408 | + return apply_filters( 'wpi_payment_form_table_columns', $columns ); |
|
| 409 | + |
|
| 410 | + } |
|
| 411 | + |
|
| 412 | + /** |
|
| 413 | + * Displays payment form table columns. |
|
| 414 | + */ |
|
| 415 | + public static function display_payment_form_columns( $column_name, $post_id ) { |
|
| 416 | + |
|
| 417 | + // Retrieve the payment form. |
|
| 418 | + $form = new GetPaid_Payment_Form( $post_id ); |
|
| 419 | + |
|
| 420 | + switch ( $column_name ) { |
|
| 421 | + |
|
| 422 | + case 'earnings': |
|
| 423 | + echo wp_kses_post( wpinv_price( $form->get_earned() ) ); |
|
| 424 | + break; |
|
| 425 | + |
|
| 426 | + case 'refunds': |
|
| 427 | + echo wp_kses_post( wpinv_price( $form->get_refunded() ) ); |
|
| 428 | + break; |
|
| 429 | + |
|
| 430 | + case 'refunds': |
|
| 431 | + echo wp_kses_post( wpinv_price( $form->get_refunded() ) ); |
|
| 432 | + break; |
|
| 433 | + |
|
| 434 | + case 'shortcode': |
|
| 435 | + if ( $form->is_default() ) { |
|
| 436 | + echo '—'; |
|
| 437 | + } else { |
|
| 438 | + echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr( $form->get_id() ) . ']" style="width: 100%;" readonly/>'; |
|
| 439 | + } |
|
| 440 | + |
|
| 441 | + break; |
|
| 442 | + |
|
| 443 | + case 'items': |
|
| 444 | + $items = $form->get_items(); |
|
| 445 | + |
|
| 446 | + if ( $form->is_default() || empty( $items ) ) { |
|
| 447 | + echo '—'; |
|
| 448 | + return; |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + $_items = array(); |
|
| 452 | + |
|
| 453 | + foreach ( $items as $item ) { |
|
| 454 | + $url = $item->get_edit_url(); |
|
| 455 | + |
|
| 456 | + if ( empty( $url ) ) { |
|
| 457 | + $_items[] = esc_html( $item->get_name() ); |
|
| 458 | + } else { |
|
| 459 | + $_items[] = sprintf( |
|
| 460 | + '<a href="%s">%s</a>', |
|
| 461 | + esc_url( $url ), |
|
| 462 | + esc_html( $item->get_name() ) |
|
| 463 | + ); |
|
| 464 | + } |
|
| 465 | 465 | } |
| 466 | 466 | |
| 467 | - echo wp_kses_post( implode( '<br>', $_items ) ); |
|
| 467 | + echo wp_kses_post( implode( '<br>', $_items ) ); |
|
| 468 | 468 | |
| 469 | - break; |
|
| 469 | + break; |
|
| 470 | 470 | |
| 471 | - } |
|
| 471 | + } |
|
| 472 | 472 | |
| 473 | - } |
|
| 473 | + } |
|
| 474 | 474 | |
| 475 | - /** |
|
| 476 | - * Filters post states. |
|
| 477 | - */ |
|
| 478 | - public static function filter_payment_form_state( $post_states, $post ) { |
|
| 475 | + /** |
|
| 476 | + * Filters post states. |
|
| 477 | + */ |
|
| 478 | + public static function filter_payment_form_state( $post_states, $post ) { |
|
| 479 | 479 | |
| 480 | - if ( 'wpi_payment_form' === $post->post_type && wpinv_get_default_payment_form() === $post->ID ) { |
|
| 481 | - $post_states['default_form'] = __( 'Default Payment Form', 'invoicing' ); |
|
| 482 | - } |
|
| 480 | + if ( 'wpi_payment_form' === $post->post_type && wpinv_get_default_payment_form() === $post->ID ) { |
|
| 481 | + $post_states['default_form'] = __( 'Default Payment Form', 'invoicing' ); |
|
| 482 | + } |
|
| 483 | 483 | |
| 484 | - return $post_states; |
|
| 484 | + return $post_states; |
|
| 485 | 485 | |
| 486 | - } |
|
| 486 | + } |
|
| 487 | 487 | |
| 488 | - /** |
|
| 489 | - * Returns an array of coupon table columns. |
|
| 490 | - */ |
|
| 491 | - public static function discount_columns( $columns ) { |
|
| 488 | + /** |
|
| 489 | + * Returns an array of coupon table columns. |
|
| 490 | + */ |
|
| 491 | + public static function discount_columns( $columns ) { |
|
| 492 | + |
|
| 493 | + $columns = array( |
|
| 494 | + 'cb' => $columns['cb'], |
|
| 495 | + 'title' => __( 'Name', 'invoicing' ), |
|
| 496 | + 'code' => __( 'Code', 'invoicing' ), |
|
| 497 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 498 | + 'usage' => __( 'Usage / Limit', 'invoicing' ), |
|
| 499 | + 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 500 | + 'expiry_date' => __( 'Expiry Date', 'invoicing' ), |
|
| 501 | + ); |
|
| 502 | + |
|
| 503 | + return apply_filters( 'wpi_discount_table_columns', $columns ); |
|
| 504 | + } |
|
| 492 | 505 | |
| 493 | - $columns = array( |
|
| 494 | - 'cb' => $columns['cb'], |
|
| 495 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 496 | - 'code' => __( 'Code', 'invoicing' ), |
|
| 497 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 498 | - 'usage' => __( 'Usage / Limit', 'invoicing' ), |
|
| 499 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
| 500 | - 'expiry_date' => __( 'Expiry Date', 'invoicing' ), |
|
| 501 | - ); |
|
| 506 | + /** |
|
| 507 | + * Filters post states. |
|
| 508 | + */ |
|
| 509 | + public static function filter_discount_state( $post_states, $post ) { |
|
| 502 | 510 | |
| 503 | - return apply_filters( 'wpi_discount_table_columns', $columns ); |
|
| 504 | - } |
|
| 511 | + if ( 'wpi_discount' === $post->post_type ) { |
|
| 505 | 512 | |
| 506 | - /** |
|
| 507 | - * Filters post states. |
|
| 508 | - */ |
|
| 509 | - public static function filter_discount_state( $post_states, $post ) { |
|
| 513 | + $discount = new WPInv_Discount( $post ); |
|
| 510 | 514 | |
| 511 | - if ( 'wpi_discount' === $post->post_type ) { |
|
| 515 | + $status = $discount->is_expired() ? 'expired' : $discount->get_status(); |
|
| 512 | 516 | |
| 513 | - $discount = new WPInv_Discount( $post ); |
|
| 517 | + if ( 'publish' !== $status ) { |
|
| 518 | + return array( |
|
| 519 | + 'discount_status' => wpinv_discount_status( $status ), |
|
| 520 | + ); |
|
| 521 | + } |
|
| 514 | 522 | |
| 515 | - $status = $discount->is_expired() ? 'expired' : $discount->get_status(); |
|
| 523 | + return array(); |
|
| 516 | 524 | |
| 517 | - if ( 'publish' !== $status ) { |
|
| 518 | - return array( |
|
| 519 | - 'discount_status' => wpinv_discount_status( $status ), |
|
| 520 | - ); |
|
| 521 | - } |
|
| 525 | + } |
|
| 522 | 526 | |
| 523 | - return array(); |
|
| 527 | + return $post_states; |
|
| 524 | 528 | |
| 525 | - } |
|
| 529 | + } |
|
| 526 | 530 | |
| 527 | - return $post_states; |
|
| 531 | + /** |
|
| 532 | + * Returns an array of items table columns. |
|
| 533 | + */ |
|
| 534 | + public static function item_columns( $columns ) { |
|
| 535 | + |
|
| 536 | + $columns = array( |
|
| 537 | + 'cb' => $columns['cb'], |
|
| 538 | + 'title' => __( 'Name', 'invoicing' ), |
|
| 539 | + 'price' => __( 'Price', 'invoicing' ), |
|
| 540 | + 'vat_rule' => __( 'Tax Rule', 'invoicing' ), |
|
| 541 | + 'vat_class' => __( 'Tax Class', 'invoicing' ), |
|
| 542 | + 'type' => __( 'Type', 'invoicing' ), |
|
| 543 | + 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 544 | + ); |
|
| 545 | + |
|
| 546 | + if ( ! wpinv_use_taxes() ) { |
|
| 547 | + unset( $columns['vat_rule'] ); |
|
| 548 | + unset( $columns['vat_class'] ); |
|
| 549 | + } |
|
| 550 | + |
|
| 551 | + return apply_filters( 'wpi_item_table_columns', $columns ); |
|
| 552 | + } |
|
| 553 | + |
|
| 554 | + /** |
|
| 555 | + * Returns an array of sortable items table columns. |
|
| 556 | + */ |
|
| 557 | + public static function sortable_item_columns( $columns ) { |
|
| 558 | + |
|
| 559 | + return array_merge( |
|
| 560 | + $columns, |
|
| 561 | + array( |
|
| 562 | + 'price' => 'price', |
|
| 563 | + 'vat_rule' => 'vat_rule', |
|
| 564 | + 'vat_class' => 'vat_class', |
|
| 565 | + 'type' => 'type', |
|
| 566 | + ) |
|
| 567 | + ); |
|
| 568 | + |
|
| 569 | + } |
|
| 570 | + |
|
| 571 | + /** |
|
| 572 | + * Displays items table columns. |
|
| 573 | + */ |
|
| 574 | + public static function display_item_columns( $column_name, $post_id ) { |
|
| 575 | + |
|
| 576 | + $item = new WPInv_Item( $post_id ); |
|
| 577 | + |
|
| 578 | + switch ( $column_name ) { |
|
| 579 | + |
|
| 580 | + case 'price': |
|
| 581 | + if ( ! $item->is_recurring() ) { |
|
| 582 | + echo wp_kses_post( $item->get_the_price() ); |
|
| 583 | + break; |
|
| 584 | + } |
|
| 585 | + |
|
| 586 | + $price = wp_sprintf( |
|
| 587 | + __( '%1$s / %2$s', 'invoicing' ), |
|
| 588 | + $item->get_the_price(), |
|
| 589 | + getpaid_get_subscription_period_label( $item->get_recurring_period(), $item->get_recurring_interval(), '' ) |
|
| 590 | + ); |
|
| 591 | + |
|
| 592 | + if ( $item->get_the_price() == $item->get_the_initial_price() ) { |
|
| 593 | + echo wp_kses_post( $price ); |
|
| 594 | + break; |
|
| 595 | + } |
|
| 596 | + |
|
| 597 | + echo wp_kses_post( $item->get_the_initial_price() ); |
|
| 598 | + |
|
| 599 | + echo '<span class="meta">' . wp_sprintf( esc_html__( 'then %s', 'invoicing' ), wp_kses_post( $price ) ) . '</span>'; |
|
| 600 | + break; |
|
| 601 | + |
|
| 602 | + case 'vat_rule': |
|
| 603 | + echo wp_kses_post( getpaid_get_tax_rule_label( $item->get_vat_rule() ) ); |
|
| 604 | + break; |
|
| 605 | + |
|
| 606 | + case 'vat_class': |
|
| 607 | + echo wp_kses_post( getpaid_get_tax_class_label( $item->get_vat_class() ) ); |
|
| 608 | + break; |
|
| 609 | + |
|
| 610 | + case 'shortcode': |
|
| 611 | + if ( $item->is_type( array( '', 'fee', 'custom' ) ) ) { |
|
| 612 | + echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr( $item->get_id() ) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
| 613 | + } else { |
|
| 614 | + echo '—'; |
|
| 615 | + } |
|
| 616 | + |
|
| 617 | + break; |
|
| 618 | + |
|
| 619 | + case 'type': |
|
| 620 | + echo wp_kses_post( wpinv_item_type( $item->get_id() ) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>' ); |
|
| 621 | + break; |
|
| 622 | + |
|
| 623 | + } |
|
| 624 | + |
|
| 625 | + } |
|
| 626 | + |
|
| 627 | + /** |
|
| 628 | + * Lets users filter items using taxes. |
|
| 629 | + */ |
|
| 630 | + public static function add_item_filters( $post_type ) { |
|
| 631 | + |
|
| 632 | + // Abort if we're not dealing with items. |
|
| 633 | + if ( 'wpi_item' !== $post_type ) { |
|
| 634 | + return; |
|
| 635 | + } |
|
| 636 | + |
|
| 637 | + // Filter by vat rules. |
|
| 638 | + if ( wpinv_use_taxes() ) { |
|
| 639 | + |
|
| 640 | + // Sanitize selected vat rule. |
|
| 641 | + $vat_rule = ''; |
|
| 642 | + $vat_rules = getpaid_get_tax_rules(); |
|
| 643 | + if ( isset( $_GET['vat_rule'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 644 | + $vat_rule = sanitize_text_field( $_GET['vat_rule'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 645 | + } |
|
| 646 | + |
|
| 647 | + // Filter by VAT rule. |
|
| 648 | + wpinv_html_select( |
|
| 649 | + array( |
|
| 650 | + 'options' => array_merge( |
|
| 651 | + array( |
|
| 652 | + '' => __( 'All Tax Rules', 'invoicing' ), |
|
| 653 | + ), |
|
| 654 | + $vat_rules |
|
| 655 | + ), |
|
| 656 | + 'name' => 'vat_rule', |
|
| 657 | + 'id' => 'vat_rule', |
|
| 658 | + 'selected' => in_array( $vat_rule, array_keys( $vat_rules ), true ) ? $vat_rule : '', |
|
| 659 | + 'show_option_all' => false, |
|
| 660 | + 'show_option_none' => false, |
|
| 661 | + ) |
|
| 662 | + ); |
|
| 663 | + |
|
| 664 | + // Filter by VAT class. |
|
| 665 | + |
|
| 666 | + // Sanitize selected vat rule. |
|
| 667 | + $vat_class = ''; |
|
| 668 | + $vat_classes = getpaid_get_tax_classes(); |
|
| 669 | + if ( isset( $_GET['vat_class'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 670 | + $vat_class = sanitize_text_field( $_GET['vat_class'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 671 | + } |
|
| 672 | + |
|
| 673 | + wpinv_html_select( |
|
| 674 | + array( |
|
| 675 | + 'options' => array_merge( |
|
| 676 | + array( |
|
| 677 | + '' => __( 'All Tax Classes', 'invoicing' ), |
|
| 678 | + ), |
|
| 679 | + $vat_classes |
|
| 680 | + ), |
|
| 681 | + 'name' => 'vat_class', |
|
| 682 | + 'id' => 'vat_class', |
|
| 683 | + 'selected' => in_array( $vat_class, array_keys( $vat_classes ), true ) ? $vat_class : '', |
|
| 684 | + 'show_option_all' => false, |
|
| 685 | + 'show_option_none' => false, |
|
| 686 | + ) |
|
| 687 | + ); |
|
| 688 | + |
|
| 689 | + } |
|
| 690 | + |
|
| 691 | + // Filter by item type. |
|
| 692 | + $type = ''; |
|
| 693 | + if ( isset( $_GET['type'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 694 | + $type = sanitize_text_field( $_GET['type'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 695 | + } |
|
| 528 | 696 | |
| 529 | - } |
|
| 697 | + wpinv_html_select( |
|
| 698 | + array( |
|
| 699 | + 'options' => array_merge( |
|
| 700 | + array( |
|
| 701 | + '' => __( 'All item types', 'invoicing' ), |
|
| 702 | + ), |
|
| 703 | + wpinv_get_item_types() |
|
| 704 | + ), |
|
| 705 | + 'name' => 'type', |
|
| 706 | + 'id' => 'type', |
|
| 707 | + 'selected' => in_array( $type, wpinv_item_types(), true ) ? $type : '', |
|
| 708 | + 'show_option_all' => false, |
|
| 709 | + 'show_option_none' => false, |
|
| 710 | + ) |
|
| 711 | + ); |
|
| 530 | 712 | |
| 531 | - /** |
|
| 532 | - * Returns an array of items table columns. |
|
| 533 | - */ |
|
| 534 | - public static function item_columns( $columns ) { |
|
| 713 | + } |
|
| 535 | 714 | |
| 536 | - $columns = array( |
|
| 537 | - 'cb' => $columns['cb'], |
|
| 538 | - 'title' => __( 'Name', 'invoicing' ), |
|
| 539 | - 'price' => __( 'Price', 'invoicing' ), |
|
| 540 | - 'vat_rule' => __( 'Tax Rule', 'invoicing' ), |
|
| 541 | - 'vat_class' => __( 'Tax Class', 'invoicing' ), |
|
| 542 | - 'type' => __( 'Type', 'invoicing' ), |
|
| 543 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
| 544 | - ); |
|
| 715 | + /** |
|
| 716 | + * Filters the item query. |
|
| 717 | + */ |
|
| 718 | + public static function filter_item_query( $query ) { |
|
| 545 | 719 | |
| 546 | - if ( ! wpinv_use_taxes() ) { |
|
| 547 | - unset( $columns['vat_rule'] ); |
|
| 548 | - unset( $columns['vat_class'] ); |
|
| 549 | - } |
|
| 720 | + // modify the query only if it admin and main query. |
|
| 721 | + if ( ! ( is_admin() && $query->is_main_query() ) ) { |
|
| 722 | + return $query; |
|
| 723 | + } |
|
| 550 | 724 | |
| 551 | - return apply_filters( 'wpi_item_table_columns', $columns ); |
|
| 552 | - } |
|
| 725 | + // we want to modify the query for our items. |
|
| 726 | + if ( empty( $query->query['post_type'] ) || 'wpi_item' !== $query->query['post_type'] ) { |
|
| 727 | + return $query; |
|
| 728 | + } |
|
| 553 | 729 | |
| 554 | - /** |
|
| 555 | - * Returns an array of sortable items table columns. |
|
| 556 | - */ |
|
| 557 | - public static function sortable_item_columns( $columns ) { |
|
| 558 | - |
|
| 559 | - return array_merge( |
|
| 560 | - $columns, |
|
| 561 | - array( |
|
| 562 | - 'price' => 'price', |
|
| 563 | - 'vat_rule' => 'vat_rule', |
|
| 564 | - 'vat_class' => 'vat_class', |
|
| 565 | - 'type' => 'type', |
|
| 566 | - ) |
|
| 567 | - ); |
|
| 568 | - |
|
| 569 | - } |
|
| 570 | - |
|
| 571 | - /** |
|
| 572 | - * Displays items table columns. |
|
| 573 | - */ |
|
| 574 | - public static function display_item_columns( $column_name, $post_id ) { |
|
| 575 | - |
|
| 576 | - $item = new WPInv_Item( $post_id ); |
|
| 577 | - |
|
| 578 | - switch ( $column_name ) { |
|
| 579 | - |
|
| 580 | - case 'price': |
|
| 581 | - if ( ! $item->is_recurring() ) { |
|
| 582 | - echo wp_kses_post( $item->get_the_price() ); |
|
| 583 | - break; |
|
| 584 | - } |
|
| 585 | - |
|
| 586 | - $price = wp_sprintf( |
|
| 587 | - __( '%1$s / %2$s', 'invoicing' ), |
|
| 588 | - $item->get_the_price(), |
|
| 589 | - getpaid_get_subscription_period_label( $item->get_recurring_period(), $item->get_recurring_interval(), '' ) |
|
| 590 | - ); |
|
| 591 | - |
|
| 592 | - if ( $item->get_the_price() == $item->get_the_initial_price() ) { |
|
| 593 | - echo wp_kses_post( $price ); |
|
| 594 | - break; |
|
| 595 | - } |
|
| 596 | - |
|
| 597 | - echo wp_kses_post( $item->get_the_initial_price() ); |
|
| 598 | - |
|
| 599 | - echo '<span class="meta">' . wp_sprintf( esc_html__( 'then %s', 'invoicing' ), wp_kses_post( $price ) ) . '</span>'; |
|
| 600 | - break; |
|
| 601 | - |
|
| 602 | - case 'vat_rule': |
|
| 603 | - echo wp_kses_post( getpaid_get_tax_rule_label( $item->get_vat_rule() ) ); |
|
| 604 | - break; |
|
| 605 | - |
|
| 606 | - case 'vat_class': |
|
| 607 | - echo wp_kses_post( getpaid_get_tax_class_label( $item->get_vat_class() ) ); |
|
| 608 | - break; |
|
| 609 | - |
|
| 610 | - case 'shortcode': |
|
| 611 | - if ( $item->is_type( array( '', 'fee', 'custom' ) ) ) { |
|
| 612 | - echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr( $item->get_id() ) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
| 613 | - } else { |
|
| 614 | - echo '—'; |
|
| 615 | - } |
|
| 616 | - |
|
| 617 | - break; |
|
| 618 | - |
|
| 619 | - case 'type': |
|
| 620 | - echo wp_kses_post( wpinv_item_type( $item->get_id() ) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>' ); |
|
| 621 | - break; |
|
| 622 | - |
|
| 623 | - } |
|
| 624 | - |
|
| 625 | - } |
|
| 626 | - |
|
| 627 | - /** |
|
| 628 | - * Lets users filter items using taxes. |
|
| 629 | - */ |
|
| 630 | - public static function add_item_filters( $post_type ) { |
|
| 631 | - |
|
| 632 | - // Abort if we're not dealing with items. |
|
| 633 | - if ( 'wpi_item' !== $post_type ) { |
|
| 634 | - return; |
|
| 635 | - } |
|
| 636 | - |
|
| 637 | - // Filter by vat rules. |
|
| 638 | - if ( wpinv_use_taxes() ) { |
|
| 639 | - |
|
| 640 | - // Sanitize selected vat rule. |
|
| 641 | - $vat_rule = ''; |
|
| 642 | - $vat_rules = getpaid_get_tax_rules(); |
|
| 643 | - if ( isset( $_GET['vat_rule'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 644 | - $vat_rule = sanitize_text_field( $_GET['vat_rule'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 645 | - } |
|
| 646 | - |
|
| 647 | - // Filter by VAT rule. |
|
| 648 | - wpinv_html_select( |
|
| 649 | - array( |
|
| 650 | - 'options' => array_merge( |
|
| 651 | - array( |
|
| 652 | - '' => __( 'All Tax Rules', 'invoicing' ), |
|
| 653 | - ), |
|
| 654 | - $vat_rules |
|
| 655 | - ), |
|
| 656 | - 'name' => 'vat_rule', |
|
| 657 | - 'id' => 'vat_rule', |
|
| 658 | - 'selected' => in_array( $vat_rule, array_keys( $vat_rules ), true ) ? $vat_rule : '', |
|
| 659 | - 'show_option_all' => false, |
|
| 660 | - 'show_option_none' => false, |
|
| 661 | - ) |
|
| 662 | - ); |
|
| 663 | - |
|
| 664 | - // Filter by VAT class. |
|
| 665 | - |
|
| 666 | - // Sanitize selected vat rule. |
|
| 667 | - $vat_class = ''; |
|
| 668 | - $vat_classes = getpaid_get_tax_classes(); |
|
| 669 | - if ( isset( $_GET['vat_class'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 670 | - $vat_class = sanitize_text_field( $_GET['vat_class'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 671 | - } |
|
| 672 | - |
|
| 673 | - wpinv_html_select( |
|
| 674 | - array( |
|
| 675 | - 'options' => array_merge( |
|
| 676 | - array( |
|
| 677 | - '' => __( 'All Tax Classes', 'invoicing' ), |
|
| 678 | - ), |
|
| 679 | - $vat_classes |
|
| 680 | - ), |
|
| 681 | - 'name' => 'vat_class', |
|
| 682 | - 'id' => 'vat_class', |
|
| 683 | - 'selected' => in_array( $vat_class, array_keys( $vat_classes ), true ) ? $vat_class : '', |
|
| 684 | - 'show_option_all' => false, |
|
| 685 | - 'show_option_none' => false, |
|
| 686 | - ) |
|
| 687 | - ); |
|
| 688 | - |
|
| 689 | - } |
|
| 690 | - |
|
| 691 | - // Filter by item type. |
|
| 692 | - $type = ''; |
|
| 693 | - if ( isset( $_GET['type'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 694 | - $type = sanitize_text_field( $_GET['type'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
|
| 695 | - } |
|
| 696 | - |
|
| 697 | - wpinv_html_select( |
|
| 698 | - array( |
|
| 699 | - 'options' => array_merge( |
|
| 700 | - array( |
|
| 701 | - '' => __( 'All item types', 'invoicing' ), |
|
| 702 | - ), |
|
| 703 | - wpinv_get_item_types() |
|
| 704 | - ), |
|
| 705 | - 'name' => 'type', |
|
| 706 | - 'id' => 'type', |
|
| 707 | - 'selected' => in_array( $type, wpinv_item_types(), true ) ? $type : '', |
|
| 708 | - 'show_option_all' => false, |
|
| 709 | - 'show_option_none' => false, |
|
| 710 | - ) |
|
| 711 | - ); |
|
| 712 | - |
|
| 713 | - } |
|
| 714 | - |
|
| 715 | - /** |
|
| 716 | - * Filters the item query. |
|
| 717 | - */ |
|
| 718 | - public static function filter_item_query( $query ) { |
|
| 719 | - |
|
| 720 | - // modify the query only if it admin and main query. |
|
| 721 | - if ( ! ( is_admin() && $query->is_main_query() ) ) { |
|
| 722 | - return $query; |
|
| 723 | - } |
|
| 724 | - |
|
| 725 | - // we want to modify the query for our items. |
|
| 726 | - if ( empty( $query->query['post_type'] ) || 'wpi_item' !== $query->query['post_type'] ) { |
|
| 727 | - return $query; |
|
| 728 | - } |
|
| 729 | - |
|
| 730 | - if ( empty( $query->query_vars['meta_query'] ) ) { |
|
| 731 | - $query->query_vars['meta_query'] = array(); |
|
| 732 | - } |
|
| 733 | - |
|
| 734 | - // Filter vat rule type |
|
| 730 | + if ( empty( $query->query_vars['meta_query'] ) ) { |
|
| 731 | + $query->query_vars['meta_query'] = array(); |
|
| 732 | + } |
|
| 733 | + |
|
| 734 | + // Filter vat rule type |
|
| 735 | 735 | if ( ! empty( $_GET['vat_rule'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
| 736 | 736 | $query->query_vars['meta_query'][] = array( |
| 737 | 737 | 'key' => '_wpinv_vat_rule', |
@@ -756,97 +756,97 @@ discard block |
||
| 756 | 756 | 'value' => sanitize_text_field( $_GET['type'] ), // phpcs:ignore WordPress.Security.NonceVerification.Recommended |
| 757 | 757 | 'compare' => '=', |
| 758 | 758 | ); |
| 759 | - } |
|
| 760 | - |
|
| 761 | - } |
|
| 762 | - |
|
| 763 | - /** |
|
| 764 | - * Reorders items. |
|
| 765 | - */ |
|
| 766 | - public static function reorder_items( $vars ) { |
|
| 767 | - global $typenow; |
|
| 768 | - |
|
| 769 | - if ( 'wpi_item' !== $typenow || empty( $vars['orderby'] ) ) { |
|
| 770 | - return $vars; |
|
| 771 | - } |
|
| 772 | - |
|
| 773 | - // By item type. |
|
| 774 | - if ( 'type' === $vars['orderby'] ) { |
|
| 775 | - return array_merge( |
|
| 776 | - $vars, |
|
| 777 | - array( |
|
| 778 | - 'meta_key' => '_wpinv_type', |
|
| 779 | - 'orderby' => 'meta_value', |
|
| 780 | - ) |
|
| 781 | - ); |
|
| 782 | - } |
|
| 783 | - |
|
| 784 | - // By vat class. |
|
| 785 | - if ( 'vat_class' === $vars['orderby'] ) { |
|
| 786 | - return array_merge( |
|
| 787 | - $vars, |
|
| 788 | - array( |
|
| 789 | - 'meta_key' => '_wpinv_vat_class', |
|
| 790 | - 'orderby' => 'meta_value', |
|
| 791 | - ) |
|
| 792 | - ); |
|
| 793 | - } |
|
| 794 | - |
|
| 795 | - // By vat rule. |
|
| 796 | - if ( 'vat_rule' === $vars['orderby'] ) { |
|
| 797 | - return array_merge( |
|
| 798 | - $vars, |
|
| 799 | - array( |
|
| 800 | - 'meta_key' => '_wpinv_vat_rule', |
|
| 801 | - 'orderby' => 'meta_value', |
|
| 802 | - ) |
|
| 803 | - ); |
|
| 804 | - } |
|
| 805 | - |
|
| 806 | - // By price. |
|
| 807 | - if ( 'price' === $vars['orderby'] ) { |
|
| 808 | - return array_merge( |
|
| 809 | - $vars, |
|
| 810 | - array( |
|
| 811 | - 'meta_key' => '_wpinv_price', |
|
| 812 | - 'orderby' => 'meta_value_num', |
|
| 813 | - ) |
|
| 814 | - ); |
|
| 815 | - } |
|
| 816 | - |
|
| 817 | - return $vars; |
|
| 818 | - |
|
| 819 | - } |
|
| 820 | - |
|
| 821 | - /** |
|
| 822 | - * Fired when deleting a post. |
|
| 823 | - */ |
|
| 824 | - public static function delete_post( $post_id ) { |
|
| 825 | - |
|
| 826 | - switch ( get_post_type( $post_id ) ) { |
|
| 827 | - |
|
| 828 | - case 'wpi_item': |
|
| 829 | - do_action( 'getpaid_before_delete_item', new WPInv_Item( $post_id ) ); |
|
| 830 | - break; |
|
| 831 | - |
|
| 832 | - case 'wpi_payment_form': |
|
| 833 | - do_action( 'getpaid_before_delete_payment_form', new GetPaid_Payment_Form( $post_id ) ); |
|
| 834 | - break; |
|
| 835 | - |
|
| 836 | - case 'wpi_discount': |
|
| 837 | - do_action( 'getpaid_before_delete_discount', new WPInv_Discount( $post_id ) ); |
|
| 838 | - break; |
|
| 839 | - |
|
| 840 | - case 'wpi_invoice': |
|
| 841 | - $invoice = new WPInv_Invoice( $post_id ); |
|
| 842 | - do_action( 'getpaid_before_delete_invoice', $invoice ); |
|
| 843 | - $invoice->get_data_store()->delete_items( $invoice ); |
|
| 844 | - $invoice->get_data_store()->delete_special_fields( $invoice ); |
|
| 845 | - break; |
|
| 846 | - } |
|
| 847 | - } |
|
| 848 | - |
|
| 849 | - /** |
|
| 759 | + } |
|
| 760 | + |
|
| 761 | + } |
|
| 762 | + |
|
| 763 | + /** |
|
| 764 | + * Reorders items. |
|
| 765 | + */ |
|
| 766 | + public static function reorder_items( $vars ) { |
|
| 767 | + global $typenow; |
|
| 768 | + |
|
| 769 | + if ( 'wpi_item' !== $typenow || empty( $vars['orderby'] ) ) { |
|
| 770 | + return $vars; |
|
| 771 | + } |
|
| 772 | + |
|
| 773 | + // By item type. |
|
| 774 | + if ( 'type' === $vars['orderby'] ) { |
|
| 775 | + return array_merge( |
|
| 776 | + $vars, |
|
| 777 | + array( |
|
| 778 | + 'meta_key' => '_wpinv_type', |
|
| 779 | + 'orderby' => 'meta_value', |
|
| 780 | + ) |
|
| 781 | + ); |
|
| 782 | + } |
|
| 783 | + |
|
| 784 | + // By vat class. |
|
| 785 | + if ( 'vat_class' === $vars['orderby'] ) { |
|
| 786 | + return array_merge( |
|
| 787 | + $vars, |
|
| 788 | + array( |
|
| 789 | + 'meta_key' => '_wpinv_vat_class', |
|
| 790 | + 'orderby' => 'meta_value', |
|
| 791 | + ) |
|
| 792 | + ); |
|
| 793 | + } |
|
| 794 | + |
|
| 795 | + // By vat rule. |
|
| 796 | + if ( 'vat_rule' === $vars['orderby'] ) { |
|
| 797 | + return array_merge( |
|
| 798 | + $vars, |
|
| 799 | + array( |
|
| 800 | + 'meta_key' => '_wpinv_vat_rule', |
|
| 801 | + 'orderby' => 'meta_value', |
|
| 802 | + ) |
|
| 803 | + ); |
|
| 804 | + } |
|
| 805 | + |
|
| 806 | + // By price. |
|
| 807 | + if ( 'price' === $vars['orderby'] ) { |
|
| 808 | + return array_merge( |
|
| 809 | + $vars, |
|
| 810 | + array( |
|
| 811 | + 'meta_key' => '_wpinv_price', |
|
| 812 | + 'orderby' => 'meta_value_num', |
|
| 813 | + ) |
|
| 814 | + ); |
|
| 815 | + } |
|
| 816 | + |
|
| 817 | + return $vars; |
|
| 818 | + |
|
| 819 | + } |
|
| 820 | + |
|
| 821 | + /** |
|
| 822 | + * Fired when deleting a post. |
|
| 823 | + */ |
|
| 824 | + public static function delete_post( $post_id ) { |
|
| 825 | + |
|
| 826 | + switch ( get_post_type( $post_id ) ) { |
|
| 827 | + |
|
| 828 | + case 'wpi_item': |
|
| 829 | + do_action( 'getpaid_before_delete_item', new WPInv_Item( $post_id ) ); |
|
| 830 | + break; |
|
| 831 | + |
|
| 832 | + case 'wpi_payment_form': |
|
| 833 | + do_action( 'getpaid_before_delete_payment_form', new GetPaid_Payment_Form( $post_id ) ); |
|
| 834 | + break; |
|
| 835 | + |
|
| 836 | + case 'wpi_discount': |
|
| 837 | + do_action( 'getpaid_before_delete_discount', new WPInv_Discount( $post_id ) ); |
|
| 838 | + break; |
|
| 839 | + |
|
| 840 | + case 'wpi_invoice': |
|
| 841 | + $invoice = new WPInv_Invoice( $post_id ); |
|
| 842 | + do_action( 'getpaid_before_delete_invoice', $invoice ); |
|
| 843 | + $invoice->get_data_store()->delete_items( $invoice ); |
|
| 844 | + $invoice->get_data_store()->delete_special_fields( $invoice ); |
|
| 845 | + break; |
|
| 846 | + } |
|
| 847 | + } |
|
| 848 | + |
|
| 849 | + /** |
|
| 850 | 850 | * Add a post display state for special GetPaid pages in the page list table. |
| 851 | 851 | * |
| 852 | 852 | * @param array $post_states An array of post display states. |
@@ -860,21 +860,21 @@ discard block |
||
| 860 | 860 | $post_states['getpaid_success_page'] = __( 'GetPaid Receipt Page', 'invoicing' ); |
| 861 | 861 | } |
| 862 | 862 | |
| 863 | - foreach ( getpaid_get_invoice_post_types() as $post_type => $label ) { |
|
| 863 | + foreach ( getpaid_get_invoice_post_types() as $post_type => $label ) { |
|
| 864 | 864 | |
| 865 | - if ( wpinv_get_option( "{$post_type}_history_page", 0 ) == $post->ID ) { |
|
| 866 | - $post_states[ "getpaid_{$post_type}_history_page" ] = sprintf( |
|
| 867 | - __( 'GetPaid %s History Page', 'invoicing' ), |
|
| 868 | - $label |
|
| 869 | - ); |
|
| 870 | - } |
|
| 865 | + if ( wpinv_get_option( "{$post_type}_history_page", 0 ) == $post->ID ) { |
|
| 866 | + $post_states[ "getpaid_{$post_type}_history_page" ] = sprintf( |
|
| 867 | + __( 'GetPaid %s History Page', 'invoicing' ), |
|
| 868 | + $label |
|
| 869 | + ); |
|
| 870 | + } |
|
| 871 | 871 | } |
| 872 | 872 | |
| 873 | - if ( wpinv_get_option( 'invoice_subscription_page', 0 ) == $post->ID ) { |
|
| 873 | + if ( wpinv_get_option( 'invoice_subscription_page', 0 ) == $post->ID ) { |
|
| 874 | 874 | $post_states['getpaid_invoice_subscription_page'] = __( 'GetPaid Subscription Page', 'invoicing' ); |
| 875 | 875 | } |
| 876 | 876 | |
| 877 | - if ( wpinv_get_option( 'checkout_page', 0 ) == $post->ID ) { |
|
| 877 | + if ( wpinv_get_option( 'checkout_page', 0 ) == $post->ID ) { |
|
| 878 | 878 | $post_states['getpaid_checkout_page'] = __( 'GetPaid Checkout Page', 'invoicing' ); |
| 879 | 879 | } |
| 880 | 880 | |
@@ -12,59 +12,59 @@ |
||
| 12 | 12 | $label = empty( $label ) ? '' : wp_kses_post( $label ); |
| 13 | 13 | $label_class = sanitize_key( preg_replace( '/[^A-Za-z0-9_-]/', '-', $label ) ); |
| 14 | 14 | if ( ! empty( $required ) ) { |
| 15 | - $label .= "<span class='text-danger'> *</span>"; |
|
| 15 | + $label .= "<span class='text-danger'> *</span>"; |
|
| 16 | 16 | } |
| 17 | 17 | |
| 18 | 18 | $disable_dates = array(); |
| 19 | 19 | |
| 20 | 20 | if ( ! empty( $disabled_dates ) ) { |
| 21 | - $disabled_dates = preg_replace( '/\s+/', '', $disabled_dates ); |
|
| 22 | - $disabled_dates = str_ireplace( 'today', current_time( 'Y-m-d' ), $disabled_dates ); |
|
| 23 | - $disabled_dates = array_filter( explode( ',', $disabled_dates ) ); |
|
| 21 | + $disabled_dates = preg_replace( '/\s+/', '', $disabled_dates ); |
|
| 22 | + $disabled_dates = str_ireplace( 'today', current_time( 'Y-m-d' ), $disabled_dates ); |
|
| 23 | + $disabled_dates = array_filter( explode( ',', $disabled_dates ) ); |
|
| 24 | 24 | |
| 25 | - foreach ( $disabled_dates as $disabled_date ) { |
|
| 25 | + foreach ( $disabled_dates as $disabled_date ) { |
|
| 26 | 26 | |
| 27 | - $disabled_date = trim( $disabled_date ); |
|
| 27 | + $disabled_date = trim( $disabled_date ); |
|
| 28 | 28 | |
| 29 | - if ( false === strpos( $disabled_date, '|' ) ) { |
|
| 30 | - $disable_dates[] = $disabled_date; |
|
| 31 | - continue; |
|
| 32 | - } |
|
| 29 | + if ( false === strpos( $disabled_date, '|' ) ) { |
|
| 30 | + $disable_dates[] = $disabled_date; |
|
| 31 | + continue; |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | - $disabled_date = explode( '|', $disabled_date ); |
|
| 35 | - $disable_dates[] = array( |
|
| 36 | - 'from' => trim( $disabled_date[0] ), |
|
| 37 | - 'to' => trim( $disabled_date[1] ), |
|
| 38 | - ); |
|
| 34 | + $disabled_date = explode( '|', $disabled_date ); |
|
| 35 | + $disable_dates[] = array( |
|
| 36 | + 'from' => trim( $disabled_date[0] ), |
|
| 37 | + 'to' => trim( $disabled_date[1] ), |
|
| 38 | + ); |
|
| 39 | 39 | |
| 40 | - } |
|
| 40 | + } |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $options = array( |
| 44 | - 'data-default-date' => empty( 'default_date' ) ? false : $default_date, |
|
| 45 | - 'data-min-date' => empty( 'min_date' ) ? false : $min_date, |
|
| 46 | - 'data-max-date' => empty( 'max_date' ) ? false : $max_date, |
|
| 47 | - 'data-mode' => empty( 'mode' ) ? 'single' : $mode, |
|
| 48 | - 'data-alt-format' => get_option( 'date_format', 'F j, Y' ), |
|
| 49 | - 'data-date-format' => 'Y-m-d', |
|
| 50 | - 'data-alt-input' => 'true', |
|
| 51 | - 'data-disable_alt' => empty( $disabled_dates ) ? false : wp_json_encode( $disable_dates ), |
|
| 52 | - 'data-disable_days_alt' => empty( $disable_days ) ? false : wp_json_encode( wp_parse_id_list( $disable_days ) ), |
|
| 44 | + 'data-default-date' => empty( 'default_date' ) ? false : $default_date, |
|
| 45 | + 'data-min-date' => empty( 'min_date' ) ? false : $min_date, |
|
| 46 | + 'data-max-date' => empty( 'max_date' ) ? false : $max_date, |
|
| 47 | + 'data-mode' => empty( 'mode' ) ? 'single' : $mode, |
|
| 48 | + 'data-alt-format' => get_option( 'date_format', 'F j, Y' ), |
|
| 49 | + 'data-date-format' => 'Y-m-d', |
|
| 50 | + 'data-alt-input' => 'true', |
|
| 51 | + 'data-disable_alt' => empty( $disabled_dates ) ? false : wp_json_encode( $disable_dates ), |
|
| 52 | + 'data-disable_days_alt' => empty( $disable_days ) ? false : wp_json_encode( wp_parse_id_list( $disable_days ) ), |
|
| 53 | 53 | ); |
| 54 | 54 | |
| 55 | 55 | aui()->input( |
| 56 | - array( |
|
| 57 | - 'name' => esc_attr( $id ), |
|
| 58 | - 'id' => esc_attr( $element_id ), |
|
| 59 | - 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 60 | - 'required' => ! empty( $required ), |
|
| 61 | - 'label' => $label, |
|
| 62 | - 'label_type' => 'vertical', |
|
| 63 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 64 | - 'type' => 'datepicker', |
|
| 65 | - 'class' => $label_class . ' getpaid-init-flatpickr flatpickr-input', |
|
| 66 | - 'extra_attributes' => array_filter( apply_filters( 'getpaid_date_field_attributes', $options ) ), |
|
| 67 | - 'value' => $query_value, |
|
| 68 | - ), |
|
| 69 | - true |
|
| 56 | + array( |
|
| 57 | + 'name' => esc_attr( $id ), |
|
| 58 | + 'id' => esc_attr( $element_id ), |
|
| 59 | + 'placeholder' => empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
| 60 | + 'required' => ! empty( $required ), |
|
| 61 | + 'label' => $label, |
|
| 62 | + 'label_type' => 'vertical', |
|
| 63 | + 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
| 64 | + 'type' => 'datepicker', |
|
| 65 | + 'class' => $label_class . ' getpaid-init-flatpickr flatpickr-input', |
|
| 66 | + 'extra_attributes' => array_filter( apply_filters( 'getpaid_date_field_attributes', $options ) ), |
|
| 67 | + 'value' => $query_value, |
|
| 68 | + ), |
|
| 69 | + true |
|
| 70 | 70 | ); |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | if ( ! defined( 'ABSPATH' ) ) { |
| 11 | - exit; // Exit if accessed directly |
|
| 11 | + exit; // Exit if accessed directly |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -17,10 +17,10 @@ discard block |
||
| 17 | 17 | class GetPaid_Meta_Box_Invoice_Payment_Meta { |
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | - * Output the metabox. |
|
| 21 | - * |
|
| 22 | - * @param WP_Post $post |
|
| 23 | - */ |
|
| 20 | + * Output the metabox. |
|
| 21 | + * |
|
| 22 | + * @param WP_Post $post |
|
| 23 | + */ |
|
| 24 | 24 | public static function output( $post ) { |
| 25 | 25 | |
| 26 | 26 | // Prepare the invoice. |
@@ -42,167 +42,167 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | if ( $invoice->is_draft() ) { |
| 44 | 44 | |
| 45 | - // Set gateway. |
|
| 46 | - aui()->select( |
|
| 47 | - array( |
|
| 48 | - 'id' => 'wpinv_gateway', |
|
| 49 | - 'name' => 'wpinv_gateway', |
|
| 50 | - 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 51 | - 'label_type' => 'vertical', |
|
| 52 | - 'placeholder' => __( 'Select Gateway', 'invoicing' ), |
|
| 53 | - 'value' => wpinv_get_default_gateway(), |
|
| 54 | - 'select2' => true, |
|
| 55 | - 'data-allow-clear' => 'false', |
|
| 56 | - 'options' => wp_list_pluck( wpinv_get_enabled_payment_gateways( true ), 'admin_label' ), |
|
| 57 | - ), |
|
| 58 | - true |
|
| 59 | - ); |
|
| 45 | + // Set gateway. |
|
| 46 | + aui()->select( |
|
| 47 | + array( |
|
| 48 | + 'id' => 'wpinv_gateway', |
|
| 49 | + 'name' => 'wpinv_gateway', |
|
| 50 | + 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 51 | + 'label_type' => 'vertical', |
|
| 52 | + 'placeholder' => __( 'Select Gateway', 'invoicing' ), |
|
| 53 | + 'value' => wpinv_get_default_gateway(), |
|
| 54 | + 'select2' => true, |
|
| 55 | + 'data-allow-clear' => 'false', |
|
| 56 | + 'options' => wp_list_pluck( wpinv_get_enabled_payment_gateways( true ), 'admin_label' ), |
|
| 57 | + ), |
|
| 58 | + true |
|
| 59 | + ); |
|
| 60 | 60 | |
| 61 | 61 | } else { |
| 62 | 62 | |
| 63 | - // Invoice key. |
|
| 64 | - aui()->input( |
|
| 65 | - array( |
|
| 66 | - 'type' => 'text', |
|
| 67 | - 'id' => 'wpinv_key', |
|
| 68 | - 'name' => 'wpinv_key', |
|
| 69 | - 'label' => sprintf( |
|
| 70 | - // translators: %s: Invoice type. |
|
| 71 | - __( '%s Key:', 'invoicing' ), |
|
| 72 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 73 | - ), |
|
| 74 | - 'label_type' => 'vertical', |
|
| 75 | - 'class' => 'form-control-sm', |
|
| 76 | - 'value' => $invoice->get_key( 'edit' ), |
|
| 77 | - 'extra_attributes' => array( |
|
| 78 | - 'onclick' => 'this.select();', |
|
| 79 | - 'readonly' => 'true', |
|
| 80 | - ), |
|
| 81 | - ), |
|
| 82 | - true |
|
| 83 | - ); |
|
| 84 | - |
|
| 85 | - // View URL. |
|
| 86 | - aui()->input( |
|
| 87 | - array( |
|
| 88 | - 'type' => 'text', |
|
| 89 | - 'id' => 'wpinv_view_url', |
|
| 90 | - 'name' => 'wpinv_view_url', |
|
| 91 | - 'label' => sprintf( |
|
| 92 | - // translators: %s: Invoice type. |
|
| 93 | - __( '%s URL:', 'invoicing' ), |
|
| 94 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 95 | - ) . ' <a href="' . esc_url_raw( $invoice->get_view_url() ) . '" title="' . __( 'View invoice', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-fw"></i></a>', |
|
| 96 | - 'label_type' => 'vertical', |
|
| 97 | - 'class' => 'form-control-sm', |
|
| 98 | - 'value' => $invoice->get_view_url(), |
|
| 99 | - 'extra_attributes' => array( |
|
| 100 | - 'onclick' => 'this.select();', |
|
| 101 | - 'readonly' => 'true', |
|
| 102 | - ), |
|
| 103 | - ), |
|
| 104 | - true |
|
| 105 | - ); |
|
| 106 | - |
|
| 107 | - // If the invoice is paid... |
|
| 108 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 109 | - |
|
| 110 | - // Gateway. |
|
| 111 | - aui()->input( |
|
| 112 | - array( |
|
| 113 | - 'type' => 'text', |
|
| 114 | - 'id' => 'wpinv_gateway', |
|
| 115 | - 'name' => '', |
|
| 116 | - 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 117 | - 'label_type' => 'vertical', |
|
| 118 | - 'class' => 'form-control-sm', |
|
| 119 | - 'value' => wpinv_get_gateway_admin_label( $invoice->get_gateway( 'edit' ) ), |
|
| 120 | - 'extra_attributes' => array( |
|
| 121 | - 'onclick' => 'this.select();', |
|
| 122 | - 'readonly' => 'true', |
|
| 123 | - ), |
|
| 124 | - ), |
|
| 125 | - true |
|
| 126 | - ); |
|
| 127 | - |
|
| 128 | - // Transaction ID. |
|
| 129 | - $transaction_url = $invoice->get_transaction_url(); |
|
| 130 | - aui()->input( |
|
| 131 | - array( |
|
| 132 | - 'type' => 'text', |
|
| 133 | - 'id' => 'wpinv_transaction_id', |
|
| 134 | - 'name' => 'wpinv_transaction_id', |
|
| 135 | - 'label' => __( 'Transaction ID:', 'invoicing' ) . ( $transaction_url ? ' <a href="' . esc_url( $transaction_url ) . '" title="' . __( 'View details', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-fw"></i></a>' : '' ), |
|
| 136 | - 'label_type' => 'vertical', |
|
| 137 | - 'class' => 'form-control-sm', |
|
| 138 | - 'value' => $invoice->get_transaction_id( 'edit' ), |
|
| 139 | - 'help_text' => apply_filters( 'wpinv_invoice_transaction_link_' . $invoice->get_gateway( 'edit' ), '', $invoice->get_transaction_id(), $invoice ), |
|
| 140 | - 'extra_attributes' => array( |
|
| 141 | - 'onclick' => 'this.select();', |
|
| 142 | - 'readonly' => 'true', |
|
| 143 | - ), |
|
| 144 | - ), |
|
| 145 | - true |
|
| 146 | - ); |
|
| 147 | - |
|
| 148 | - // Currency. |
|
| 149 | - aui()->input( |
|
| 150 | - array( |
|
| 151 | - 'type' => 'text', |
|
| 152 | - 'id' => 'wpinv_currency', |
|
| 153 | - 'name' => 'wpinv_currency', |
|
| 154 | - 'label' => __( 'Currency:', 'invoicing' ), |
|
| 155 | - 'label_type' => 'vertical', |
|
| 156 | - 'class' => 'form-control-sm', |
|
| 157 | - 'value' => $invoice->get_currency( 'edit' ), |
|
| 158 | - 'extra_attributes' => array( |
|
| 159 | - 'onclick' => 'this.select();', |
|
| 160 | - 'readonly' => 'true', |
|
| 161 | - ), |
|
| 162 | - ), |
|
| 163 | - true |
|
| 164 | - ); |
|
| 165 | - |
|
| 166 | - } else { |
|
| 167 | - |
|
| 168 | - if ( 'wpi_invoice' === $invoice->get_post_type() ) { |
|
| 169 | - |
|
| 170 | - // Payment URL. |
|
| 171 | - aui()->input( |
|
| 172 | - array( |
|
| 173 | - 'type' => 'text', |
|
| 174 | - 'id' => 'wpinv_payment_url', |
|
| 175 | - 'name' => 'wpinv_payment_url', |
|
| 176 | - 'label' => __( 'Payment URL:', 'invoicing' ), |
|
| 177 | - 'label_type' => 'vertical', |
|
| 178 | - 'class' => 'form-control-sm', |
|
| 179 | - 'value' => $invoice->get_checkout_payment_url(), |
|
| 180 | - 'extra_attributes' => array( |
|
| 181 | - 'onclick' => 'this.select();', |
|
| 182 | - 'readonly' => 'true', |
|
| 183 | - ), |
|
| 184 | - ), |
|
| 185 | - true |
|
| 186 | - ); |
|
| 187 | - |
|
| 188 | - // Set gateway. |
|
| 189 | - aui()->select( |
|
| 190 | - array( |
|
| 191 | - 'id' => 'wpinv_gateway', |
|
| 192 | - 'name' => 'wpinv_gateway', |
|
| 193 | - 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 194 | - 'label_type' => 'vertical', |
|
| 195 | - 'placeholder' => __( 'Select Gateway', 'invoicing' ), |
|
| 196 | - 'value' => $invoice->get_gateway( 'edit' ), |
|
| 197 | - 'select2' => true, |
|
| 198 | - 'data-allow-clear' => 'false', |
|
| 199 | - 'options' => wp_list_pluck( wpinv_get_enabled_payment_gateways( true ), 'admin_label' ), |
|
| 200 | - ), |
|
| 201 | - true |
|
| 202 | - ); |
|
| 203 | - |
|
| 204 | - } |
|
| 205 | - } |
|
| 63 | + // Invoice key. |
|
| 64 | + aui()->input( |
|
| 65 | + array( |
|
| 66 | + 'type' => 'text', |
|
| 67 | + 'id' => 'wpinv_key', |
|
| 68 | + 'name' => 'wpinv_key', |
|
| 69 | + 'label' => sprintf( |
|
| 70 | + // translators: %s: Invoice type. |
|
| 71 | + __( '%s Key:', 'invoicing' ), |
|
| 72 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 73 | + ), |
|
| 74 | + 'label_type' => 'vertical', |
|
| 75 | + 'class' => 'form-control-sm', |
|
| 76 | + 'value' => $invoice->get_key( 'edit' ), |
|
| 77 | + 'extra_attributes' => array( |
|
| 78 | + 'onclick' => 'this.select();', |
|
| 79 | + 'readonly' => 'true', |
|
| 80 | + ), |
|
| 81 | + ), |
|
| 82 | + true |
|
| 83 | + ); |
|
| 84 | + |
|
| 85 | + // View URL. |
|
| 86 | + aui()->input( |
|
| 87 | + array( |
|
| 88 | + 'type' => 'text', |
|
| 89 | + 'id' => 'wpinv_view_url', |
|
| 90 | + 'name' => 'wpinv_view_url', |
|
| 91 | + 'label' => sprintf( |
|
| 92 | + // translators: %s: Invoice type. |
|
| 93 | + __( '%s URL:', 'invoicing' ), |
|
| 94 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 95 | + ) . ' <a href="' . esc_url_raw( $invoice->get_view_url() ) . '" title="' . __( 'View invoice', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-fw"></i></a>', |
|
| 96 | + 'label_type' => 'vertical', |
|
| 97 | + 'class' => 'form-control-sm', |
|
| 98 | + 'value' => $invoice->get_view_url(), |
|
| 99 | + 'extra_attributes' => array( |
|
| 100 | + 'onclick' => 'this.select();', |
|
| 101 | + 'readonly' => 'true', |
|
| 102 | + ), |
|
| 103 | + ), |
|
| 104 | + true |
|
| 105 | + ); |
|
| 106 | + |
|
| 107 | + // If the invoice is paid... |
|
| 108 | + if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
| 109 | + |
|
| 110 | + // Gateway. |
|
| 111 | + aui()->input( |
|
| 112 | + array( |
|
| 113 | + 'type' => 'text', |
|
| 114 | + 'id' => 'wpinv_gateway', |
|
| 115 | + 'name' => '', |
|
| 116 | + 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 117 | + 'label_type' => 'vertical', |
|
| 118 | + 'class' => 'form-control-sm', |
|
| 119 | + 'value' => wpinv_get_gateway_admin_label( $invoice->get_gateway( 'edit' ) ), |
|
| 120 | + 'extra_attributes' => array( |
|
| 121 | + 'onclick' => 'this.select();', |
|
| 122 | + 'readonly' => 'true', |
|
| 123 | + ), |
|
| 124 | + ), |
|
| 125 | + true |
|
| 126 | + ); |
|
| 127 | + |
|
| 128 | + // Transaction ID. |
|
| 129 | + $transaction_url = $invoice->get_transaction_url(); |
|
| 130 | + aui()->input( |
|
| 131 | + array( |
|
| 132 | + 'type' => 'text', |
|
| 133 | + 'id' => 'wpinv_transaction_id', |
|
| 134 | + 'name' => 'wpinv_transaction_id', |
|
| 135 | + 'label' => __( 'Transaction ID:', 'invoicing' ) . ( $transaction_url ? ' <a href="' . esc_url( $transaction_url ) . '" title="' . __( 'View details', 'invoicing' ) . '" target="_blank"><i class="fas fa-external-link-alt fa-fw"></i></a>' : '' ), |
|
| 136 | + 'label_type' => 'vertical', |
|
| 137 | + 'class' => 'form-control-sm', |
|
| 138 | + 'value' => $invoice->get_transaction_id( 'edit' ), |
|
| 139 | + 'help_text' => apply_filters( 'wpinv_invoice_transaction_link_' . $invoice->get_gateway( 'edit' ), '', $invoice->get_transaction_id(), $invoice ), |
|
| 140 | + 'extra_attributes' => array( |
|
| 141 | + 'onclick' => 'this.select();', |
|
| 142 | + 'readonly' => 'true', |
|
| 143 | + ), |
|
| 144 | + ), |
|
| 145 | + true |
|
| 146 | + ); |
|
| 147 | + |
|
| 148 | + // Currency. |
|
| 149 | + aui()->input( |
|
| 150 | + array( |
|
| 151 | + 'type' => 'text', |
|
| 152 | + 'id' => 'wpinv_currency', |
|
| 153 | + 'name' => 'wpinv_currency', |
|
| 154 | + 'label' => __( 'Currency:', 'invoicing' ), |
|
| 155 | + 'label_type' => 'vertical', |
|
| 156 | + 'class' => 'form-control-sm', |
|
| 157 | + 'value' => $invoice->get_currency( 'edit' ), |
|
| 158 | + 'extra_attributes' => array( |
|
| 159 | + 'onclick' => 'this.select();', |
|
| 160 | + 'readonly' => 'true', |
|
| 161 | + ), |
|
| 162 | + ), |
|
| 163 | + true |
|
| 164 | + ); |
|
| 165 | + |
|
| 166 | + } else { |
|
| 167 | + |
|
| 168 | + if ( 'wpi_invoice' === $invoice->get_post_type() ) { |
|
| 169 | + |
|
| 170 | + // Payment URL. |
|
| 171 | + aui()->input( |
|
| 172 | + array( |
|
| 173 | + 'type' => 'text', |
|
| 174 | + 'id' => 'wpinv_payment_url', |
|
| 175 | + 'name' => 'wpinv_payment_url', |
|
| 176 | + 'label' => __( 'Payment URL:', 'invoicing' ), |
|
| 177 | + 'label_type' => 'vertical', |
|
| 178 | + 'class' => 'form-control-sm', |
|
| 179 | + 'value' => $invoice->get_checkout_payment_url(), |
|
| 180 | + 'extra_attributes' => array( |
|
| 181 | + 'onclick' => 'this.select();', |
|
| 182 | + 'readonly' => 'true', |
|
| 183 | + ), |
|
| 184 | + ), |
|
| 185 | + true |
|
| 186 | + ); |
|
| 187 | + |
|
| 188 | + // Set gateway. |
|
| 189 | + aui()->select( |
|
| 190 | + array( |
|
| 191 | + 'id' => 'wpinv_gateway', |
|
| 192 | + 'name' => 'wpinv_gateway', |
|
| 193 | + 'label' => __( 'Gateway:', 'invoicing' ), |
|
| 194 | + 'label_type' => 'vertical', |
|
| 195 | + 'placeholder' => __( 'Select Gateway', 'invoicing' ), |
|
| 196 | + 'value' => $invoice->get_gateway( 'edit' ), |
|
| 197 | + 'select2' => true, |
|
| 198 | + 'data-allow-clear' => 'false', |
|
| 199 | + 'options' => wp_list_pluck( wpinv_get_enabled_payment_gateways( true ), 'admin_label' ), |
|
| 200 | + ), |
|
| 201 | + true |
|
| 202 | + ); |
|
| 203 | + |
|
| 204 | + } |
|
| 205 | + } |
|
| 206 | 206 | } |
| 207 | 207 | ?> |
| 208 | 208 | </div> |
@@ -14,91 +14,91 @@ discard block |
||
| 14 | 14 | class GetPaid_Admin { |
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | - * Local path to this plugins admin directory |
|
| 18 | - * |
|
| 19 | - * @var string |
|
| 20 | - */ |
|
| 21 | - public $admin_path; |
|
| 22 | - |
|
| 23 | - /** |
|
| 24 | - * Web path to this plugins admin directory |
|
| 25 | - * |
|
| 26 | - * @var string |
|
| 27 | - */ |
|
| 28 | - public $admin_url; |
|
| 29 | - |
|
| 30 | - /** |
|
| 31 | - * Reports components. |
|
| 32 | - * |
|
| 33 | - * @var GetPaid_Reports |
|
| 34 | - */ |
|
| 17 | + * Local path to this plugins admin directory |
|
| 18 | + * |
|
| 19 | + * @var string |
|
| 20 | + */ |
|
| 21 | + public $admin_path; |
|
| 22 | + |
|
| 23 | + /** |
|
| 24 | + * Web path to this plugins admin directory |
|
| 25 | + * |
|
| 26 | + * @var string |
|
| 27 | + */ |
|
| 28 | + public $admin_url; |
|
| 29 | + |
|
| 30 | + /** |
|
| 31 | + * Reports components. |
|
| 32 | + * |
|
| 33 | + * @var GetPaid_Reports |
|
| 34 | + */ |
|
| 35 | 35 | public $reports; |
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | - * Class constructor. |
|
| 39 | - */ |
|
| 40 | - public function __construct() { |
|
| 38 | + * Class constructor. |
|
| 39 | + */ |
|
| 40 | + public function __construct() { |
|
| 41 | 41 | |
| 42 | 42 | $this->admin_path = plugin_dir_path( __FILE__ ); |
| 43 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
| 44 | - $this->reports = new GetPaid_Reports(); |
|
| 43 | + $this->admin_url = plugins_url( '/', __FILE__ ); |
|
| 44 | + $this->reports = new GetPaid_Reports(); |
|
| 45 | 45 | |
| 46 | 46 | if ( is_admin() ) { |
| 47 | - $this->init_admin_hooks(); |
|
| 47 | + $this->init_admin_hooks(); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | - * Init action and filter hooks |
|
| 54 | - * |
|
| 55 | - */ |
|
| 56 | - private function init_admin_hooks() { |
|
| 53 | + * Init action and filter hooks |
|
| 54 | + * |
|
| 55 | + */ |
|
| 56 | + private function init_admin_hooks() { |
|
| 57 | 57 | add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ), 9 ); |
| 58 | 58 | add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
| 59 | 59 | add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
| 60 | 60 | add_action( 'admin_init', array( $this, 'activation_redirect' ) ); |
| 61 | 61 | add_action( 'admin_init', array( $this, 'maybe_do_admin_action' ) ); |
| 62 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
| 63 | - add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
| 64 | - add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
| 65 | - add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
|
| 66 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
| 67 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
| 62 | + add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
| 63 | + add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
| 64 | + add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
| 65 | + add_action( 'getpaid_authenticated_admin_action_duplicate_invoice', array( $this, 'duplicate_invoice' ) ); |
|
| 66 | + add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
| 67 | + add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
| 68 | 68 | add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
| 69 | - add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
| 70 | - add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
| 71 | - add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
| 72 | - add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
| 73 | - add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
| 74 | - add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
| 75 | - add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
| 76 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
| 77 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
| 78 | - |
|
| 79 | - // Setup/welcome |
|
| 80 | - if ( ! empty( $_GET['page'] ) ) { |
|
| 81 | - switch ( sanitize_text_field( $_GET['page'] ) ) { |
|
| 82 | - case 'gp-setup': |
|
| 83 | - include_once dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php'; |
|
| 84 | - break; |
|
| 85 | - } |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Register admin scripts |
|
| 92 | - * |
|
| 93 | - */ |
|
| 94 | - public function enqeue_scripts() { |
|
| 69 | + add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
| 70 | + add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
| 71 | + add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
| 72 | + add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
| 73 | + add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
| 74 | + add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
| 75 | + add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
| 76 | + add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
| 77 | + do_action( 'getpaid_init_admin_hooks', $this ); |
|
| 78 | + |
|
| 79 | + // Setup/welcome |
|
| 80 | + if ( ! empty( $_GET['page'] ) ) { |
|
| 81 | + switch ( sanitize_text_field( $_GET['page'] ) ) { |
|
| 82 | + case 'gp-setup': |
|
| 83 | + include_once dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php'; |
|
| 84 | + break; |
|
| 85 | + } |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Register admin scripts |
|
| 92 | + * |
|
| 93 | + */ |
|
| 94 | + public function enqeue_scripts() { |
|
| 95 | 95 | global $current_screen, $pagenow; |
| 96 | 96 | |
| 97 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 98 | - $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
| 97 | + $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 98 | + $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
|
| 99 | 99 | |
| 100 | 100 | if ( ! empty( $current_screen->post_type ) ) { |
| 101 | - $page = $current_screen->post_type; |
|
| 101 | + $page = $current_screen->post_type; |
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | // General styles. |
@@ -119,53 +119,53 @@ discard block |
||
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | // Payment form scripts. |
| 122 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
| 122 | + if ( 'wpi_payment_form' == $page && $editing ) { |
|
| 123 | 123 | $this->load_payment_form_scripts(); |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - if ( $page == 'wpinv-subscriptions' ) { |
|
| 127 | - wp_enqueue_script( 'postbox' ); |
|
| 128 | - } |
|
| 126 | + if ( $page == 'wpinv-subscriptions' ) { |
|
| 127 | + wp_enqueue_script( 'postbox' ); |
|
| 128 | + } |
|
| 129 | 129 | |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
| 133 | - * Returns admin js translations. |
|
| 134 | - * |
|
| 135 | - */ |
|
| 136 | - protected function get_admin_i18() { |
|
| 133 | + * Returns admin js translations. |
|
| 134 | + * |
|
| 135 | + */ |
|
| 136 | + protected function get_admin_i18() { |
|
| 137 | 137 | global $post; |
| 138 | 138 | |
| 139 | - $date_range = array( |
|
| 140 | - 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days', |
|
| 141 | - ); |
|
| 139 | + $date_range = array( |
|
| 140 | + 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days', |
|
| 141 | + ); |
|
| 142 | 142 | |
| 143 | - if ( $date_range['period'] == 'custom' ) { |
|
| 143 | + if ( $date_range['period'] == 'custom' ) { |
|
| 144 | 144 | |
| 145 | - if ( isset( $_GET['from'] ) ) { |
|
| 146 | - $date_range['after'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
| 147 | - } |
|
| 145 | + if ( isset( $_GET['from'] ) ) { |
|
| 146 | + $date_range['after'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
| 147 | + } |
|
| 148 | 148 | |
| 149 | - if ( isset( $_GET['to'] ) ) { |
|
| 150 | - $date_range['before'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
| 151 | - } |
|
| 149 | + if ( isset( $_GET['to'] ) ) { |
|
| 150 | + $date_range['before'] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
| 151 | + } |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | $i18n = array( |
| 155 | 155 | 'ajax_url' => admin_url( 'admin-ajax.php' ), |
| 156 | 156 | 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
| 157 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
| 158 | - 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
| 159 | - 'rest_root' => esc_url_raw( rest_url() ), |
|
| 160 | - 'date_range' => $date_range, |
|
| 157 | + 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
| 158 | + 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
| 159 | + 'rest_root' => esc_url_raw( rest_url() ), |
|
| 160 | + 'date_range' => $date_range, |
|
| 161 | 161 | 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
| 162 | 162 | 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
| 163 | 163 | 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
| 164 | 164 | 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
| 165 | 165 | 'tax' => wpinv_tax_amount(), |
| 166 | 166 | 'discount' => 0, |
| 167 | - 'currency_symbol' => wpinv_currency_symbol(), |
|
| 168 | - 'currency' => wpinv_get_currency(), |
|
| 167 | + 'currency_symbol' => wpinv_currency_symbol(), |
|
| 168 | + 'currency' => wpinv_get_currency(), |
|
| 169 | 169 | 'currency_pos' => wpinv_currency_position(), |
| 170 | 170 | 'thousand_sep' => wpinv_thousands_separator(), |
| 171 | 171 | 'decimal_sep' => wpinv_decimal_separator(), |
@@ -185,118 +185,118 @@ discard block |
||
| 185 | 185 | 'item_description' => __( 'Item Description', 'invoicing' ), |
| 186 | 186 | 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
| 187 | 187 | 'discount_description' => __( 'Discount Description', 'invoicing' ), |
| 188 | - 'searching' => __( 'Searching', 'invoicing' ), |
|
| 189 | - 'loading' => __( 'Loading...', 'invoicing' ), |
|
| 190 | - 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
| 191 | - 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
| 192 | - 'graphs' => array_merge( array( 'refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax' ), array_keys( wpinv_get_report_graphs() ) ), |
|
| 188 | + 'searching' => __( 'Searching', 'invoicing' ), |
|
| 189 | + 'loading' => __( 'Loading...', 'invoicing' ), |
|
| 190 | + 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
| 191 | + 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
| 192 | + 'graphs' => array_merge( array( 'refunded_fees', 'refunded_items', 'refunded_subtotal', 'refunded_tax' ), array_keys( wpinv_get_report_graphs() ) ), |
|
| 193 | 193 | ); |
| 194 | 194 | |
| 195 | - if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 195 | + if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
| 196 | 196 | |
| 197 | - $invoice = new WPInv_Invoice( $post ); |
|
| 198 | - $i18n['save_invoice'] = sprintf( |
|
| 199 | - __( 'Save %s', 'invoicing' ), |
|
| 200 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 201 | - ); |
|
| 197 | + $invoice = new WPInv_Invoice( $post ); |
|
| 198 | + $i18n['save_invoice'] = sprintf( |
|
| 199 | + __( 'Save %s', 'invoicing' ), |
|
| 200 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 201 | + ); |
|
| 202 | 202 | |
| 203 | - $i18n['invoice_description'] = sprintf( |
|
| 204 | - __( '%s Description', 'invoicing' ), |
|
| 205 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 206 | - ); |
|
| 203 | + $i18n['invoice_description'] = sprintf( |
|
| 204 | + __( '%s Description', 'invoicing' ), |
|
| 205 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
| 206 | + ); |
|
| 207 | 207 | |
| 208 | - } |
|
| 209 | - return $i18n; |
|
| 210 | - } |
|
| 208 | + } |
|
| 209 | + return $i18n; |
|
| 210 | + } |
|
| 211 | 211 | |
| 212 | - /** |
|
| 213 | - * Change the admin footer text on GetPaid admin pages. |
|
| 214 | - * |
|
| 215 | - * @since 2.0.0 |
|
| 216 | - * @param string $footer_text |
|
| 217 | - * @return string |
|
| 218 | - */ |
|
| 219 | - public function admin_footer_text( $footer_text ) { |
|
| 220 | - global $current_screen; |
|
| 212 | + /** |
|
| 213 | + * Change the admin footer text on GetPaid admin pages. |
|
| 214 | + * |
|
| 215 | + * @since 2.0.0 |
|
| 216 | + * @param string $footer_text |
|
| 217 | + * @return string |
|
| 218 | + */ |
|
| 219 | + public function admin_footer_text( $footer_text ) { |
|
| 220 | + global $current_screen; |
|
| 221 | 221 | |
| 222 | - $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 222 | + $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
|
| 223 | 223 | |
| 224 | 224 | if ( ! empty( $current_screen->post_type ) ) { |
| 225 | - $page = $current_screen->post_type; |
|
| 225 | + $page = $current_screen->post_type; |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | 228 | // General styles. |
| 229 | 229 | if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
| 230 | 230 | |
| 231 | - // Change the footer text |
|
| 232 | - if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
| 231 | + // Change the footer text |
|
| 232 | + if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
| 233 | 233 | |
| 234 | - $rating_url = esc_url( |
|
| 235 | - wp_nonce_url( |
|
| 236 | - admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
| 237 | - 'getpaid-nonce', |
|
| 238 | - 'getpaid-nonce' |
|
| 234 | + $rating_url = esc_url( |
|
| 235 | + wp_nonce_url( |
|
| 236 | + admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
| 237 | + 'getpaid-nonce', |
|
| 238 | + 'getpaid-nonce' |
|
| 239 | 239 | ) |
| 240 | - ); |
|
| 240 | + ); |
|
| 241 | 241 | |
| 242 | - $footer_text = sprintf( |
|
| 243 | - /* translators: %s: five stars */ |
|
| 244 | - __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
| 245 | - "<a href='$rating_url'>★★★★★</a>" |
|
| 246 | - ); |
|
| 242 | + $footer_text = sprintf( |
|
| 243 | + /* translators: %s: five stars */ |
|
| 244 | + __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
| 245 | + "<a href='$rating_url'>★★★★★</a>" |
|
| 246 | + ); |
|
| 247 | 247 | |
| 248 | - } else { |
|
| 248 | + } else { |
|
| 249 | 249 | |
| 250 | - $footer_text = sprintf( |
|
| 251 | - /* translators: %s: GetPaid */ |
|
| 252 | - __( 'Thank you for using %s!', 'invoicing' ), |
|
| 253 | - "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
| 254 | - ); |
|
| 250 | + $footer_text = sprintf( |
|
| 251 | + /* translators: %s: GetPaid */ |
|
| 252 | + __( 'Thank you for using %s!', 'invoicing' ), |
|
| 253 | + "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
|
| 254 | + ); |
|
| 255 | 255 | |
| 256 | - } |
|
| 256 | + } |
|
| 257 | 257 | } |
| 258 | 258 | |
| 259 | - return $footer_text; |
|
| 260 | - } |
|
| 261 | - |
|
| 262 | - /** |
|
| 263 | - * Redirects to wp.org to rate the plugin. |
|
| 264 | - * |
|
| 265 | - * @since 2.0.0 |
|
| 266 | - */ |
|
| 267 | - public function redirect_to_wordpress_rating_page() { |
|
| 268 | - update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
| 269 | - wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
| 270 | - exit; |
|
| 271 | - } |
|
| 272 | - |
|
| 273 | - /** |
|
| 274 | - * Loads payment form js. |
|
| 275 | - * |
|
| 276 | - */ |
|
| 277 | - protected function load_payment_form_scripts() { |
|
| 259 | + return $footer_text; |
|
| 260 | + } |
|
| 261 | + |
|
| 262 | + /** |
|
| 263 | + * Redirects to wp.org to rate the plugin. |
|
| 264 | + * |
|
| 265 | + * @since 2.0.0 |
|
| 266 | + */ |
|
| 267 | + public function redirect_to_wordpress_rating_page() { |
|
| 268 | + update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
| 269 | + wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
| 270 | + exit; |
|
| 271 | + } |
|
| 272 | + |
|
| 273 | + /** |
|
| 274 | + * Loads payment form js. |
|
| 275 | + * |
|
| 276 | + */ |
|
| 277 | + protected function load_payment_form_scripts() { |
|
| 278 | 278 | global $post; |
| 279 | 279 | |
| 280 | 280 | wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION ); |
| 281 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
| 282 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
| 281 | + wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
| 282 | + wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
| 283 | 283 | |
| 284 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
| 285 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
|
| 284 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
| 285 | + wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable', 'wp-hooks' ), $version ); |
|
| 286 | 286 | |
| 287 | - wp_localize_script( |
|
| 287 | + wp_localize_script( |
|
| 288 | 288 | 'wpinv-admin-payment-form-script', |
| 289 | 289 | 'wpinvPaymentFormAdmin', |
| 290 | 290 | array( |
| 291 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
| 292 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
| 293 | - 'currency' => wpinv_currency_symbol(), |
|
| 294 | - 'position' => wpinv_currency_position(), |
|
| 295 | - 'decimals' => (int) wpinv_decimals(), |
|
| 296 | - 'thousands_sep' => wpinv_thousands_separator(), |
|
| 297 | - 'decimals_sep' => wpinv_decimal_separator(), |
|
| 298 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
| 299 | - 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
| 291 | + 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
| 292 | + 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
| 293 | + 'currency' => wpinv_currency_symbol(), |
|
| 294 | + 'position' => wpinv_currency_position(), |
|
| 295 | + 'decimals' => (int) wpinv_decimals(), |
|
| 296 | + 'thousands_sep' => wpinv_thousands_separator(), |
|
| 297 | + 'decimals_sep' => wpinv_decimal_separator(), |
|
| 298 | + 'form_items' => gepaid_get_form_items( $post->ID ), |
|
| 299 | + 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
|
| 300 | 300 | ) |
| 301 | 301 | ); |
| 302 | 302 | |
@@ -305,19 +305,19 @@ discard block |
||
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | /** |
| 308 | - * Add our classes to admin pages. |
|
| 308 | + * Add our classes to admin pages. |
|
| 309 | 309 | * |
| 310 | 310 | * @param string $classes |
| 311 | 311 | * @return string |
| 312 | - * |
|
| 313 | - */ |
|
| 312 | + * |
|
| 313 | + */ |
|
| 314 | 314 | public function admin_body_class( $classes ) { |
| 315 | - global $pagenow, $post, $current_screen; |
|
| 315 | + global $pagenow, $post, $current_screen; |
|
| 316 | 316 | |
| 317 | 317 | $page = isset( $_GET['page'] ) ? sanitize_text_field( $_GET['page'] ) : ''; |
| 318 | 318 | |
| 319 | 319 | if ( ! empty( $current_screen->post_type ) ) { |
| 320 | - $page = $current_screen->post_type; |
|
| 320 | + $page = $current_screen->post_type; |
|
| 321 | 321 | } |
| 322 | 322 | |
| 323 | 323 | if ( false !== stripos( $page, 'wpi' ) ) { |
@@ -326,70 +326,70 @@ discard block |
||
| 326 | 326 | |
| 327 | 327 | if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
| 328 | 328 | $classes .= ' wpinv-cpt wpinv'; |
| 329 | - } |
|
| 329 | + } |
|
| 330 | 330 | |
| 331 | - if ( getpaid_is_invoice_post_type( $page ) ) { |
|
| 331 | + if ( getpaid_is_invoice_post_type( $page ) ) { |
|
| 332 | 332 | $classes .= ' getpaid-is-invoice-cpt'; |
| 333 | 333 | } |
| 334 | 334 | |
| 335 | - return $classes; |
|
| 335 | + return $classes; |
|
| 336 | 336 | } |
| 337 | 337 | |
| 338 | 338 | /** |
| 339 | - * Maybe show the AyeCode Connect Notice. |
|
| 340 | - */ |
|
| 341 | - public function init_ayecode_connect_helper() { |
|
| 339 | + * Maybe show the AyeCode Connect Notice. |
|
| 340 | + */ |
|
| 341 | + public function init_ayecode_connect_helper() { |
|
| 342 | 342 | |
| 343 | - // Register with the deactivation survey class. |
|
| 344 | - AyeCode_Deactivation_Survey::instance( |
|
| 343 | + // Register with the deactivation survey class. |
|
| 344 | + AyeCode_Deactivation_Survey::instance( |
|
| 345 | 345 | array( |
| 346 | - 'slug' => 'invoicing', |
|
| 347 | - 'version' => WPINV_VERSION, |
|
| 348 | - 'support_url' => 'https://wpgetpaid.com/support/', |
|
| 349 | - 'documentation_url' => 'https://docs.wpgetpaid.com/', |
|
| 350 | - 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
| 346 | + 'slug' => 'invoicing', |
|
| 347 | + 'version' => WPINV_VERSION, |
|
| 348 | + 'support_url' => 'https://wpgetpaid.com/support/', |
|
| 349 | + 'documentation_url' => 'https://docs.wpgetpaid.com/', |
|
| 350 | + 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
| 351 | 351 | ) |
| 352 | 352 | ); |
| 353 | 353 | |
| 354 | 354 | new AyeCode_Connect_Helper( |
| 355 | 355 | array( |
| 356 | - 'connect_title' => __( 'WP Invoicing - an AyeCode product!', 'invoicing' ), |
|
| 357 | - 'connect_external' => __( 'Please confirm you wish to connect your site?', 'invoicing' ), |
|
| 358 | - 'connect' => sprintf( __( '<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %1$slearn more%2$s', 'invoicing' ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", '</a>' ), |
|
| 359 | - 'connect_button' => __( 'Connect Site', 'invoicing' ), |
|
| 360 | - 'connecting_button' => __( 'Connecting...', 'invoicing' ), |
|
| 361 | - 'error_localhost' => __( 'This service will only work with a live domain, not a localhost.', 'invoicing' ), |
|
| 362 | - 'error' => __( 'Something went wrong, please refresh and try again.', 'invoicing' ), |
|
| 356 | + 'connect_title' => __( 'WP Invoicing - an AyeCode product!', 'invoicing' ), |
|
| 357 | + 'connect_external' => __( 'Please confirm you wish to connect your site?', 'invoicing' ), |
|
| 358 | + 'connect' => sprintf( __( '<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %1$slearn more%2$s', 'invoicing' ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", '</a>' ), |
|
| 359 | + 'connect_button' => __( 'Connect Site', 'invoicing' ), |
|
| 360 | + 'connecting_button' => __( 'Connecting...', 'invoicing' ), |
|
| 361 | + 'error_localhost' => __( 'This service will only work with a live domain, not a localhost.', 'invoicing' ), |
|
| 362 | + 'error' => __( 'Something went wrong, please refresh and try again.', 'invoicing' ), |
|
| 363 | 363 | ), |
| 364 | 364 | array( 'wpi-addons' ) |
| 365 | 365 | ); |
| 366 | 366 | |
| 367 | 367 | } |
| 368 | 368 | |
| 369 | - /** |
|
| 370 | - * Redirect users to settings on activation. |
|
| 371 | - * |
|
| 372 | - * @return void |
|
| 373 | - */ |
|
| 374 | - public function activation_redirect() { |
|
| 369 | + /** |
|
| 370 | + * Redirect users to settings on activation. |
|
| 371 | + * |
|
| 372 | + * @return void |
|
| 373 | + */ |
|
| 374 | + public function activation_redirect() { |
|
| 375 | 375 | |
| 376 | - $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
| 376 | + $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
| 377 | 377 | |
| 378 | - if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
| 379 | - return; |
|
| 380 | - } |
|
| 378 | + if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
| 379 | + return; |
|
| 380 | + } |
|
| 381 | 381 | |
| 382 | - // Bail if activating from network, or bulk |
|
| 383 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 384 | - return; |
|
| 385 | - } |
|
| 382 | + // Bail if activating from network, or bulk |
|
| 383 | + if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
| 384 | + return; |
|
| 385 | + } |
|
| 386 | 386 | |
| 387 | - update_option( 'wpinv_redirected_to_settings', 1 ); |
|
| 387 | + update_option( 'wpinv_redirected_to_settings', 1 ); |
|
| 388 | 388 | |
| 389 | 389 | wp_safe_redirect( admin_url( 'index.php?page=gp-setup' ) ); |
| 390 | 390 | exit; |
| 391 | 391 | |
| 392 | - } |
|
| 392 | + } |
|
| 393 | 393 | |
| 394 | 394 | /** |
| 395 | 395 | * Fires an admin action after verifying that a user can fire them. |
@@ -403,525 +403,525 @@ discard block |
||
| 403 | 403 | |
| 404 | 404 | } |
| 405 | 405 | |
| 406 | - /** |
|
| 406 | + /** |
|
| 407 | 407 | * Duplicate invoice. |
| 408 | - * |
|
| 409 | - * @param array $args |
|
| 408 | + * |
|
| 409 | + * @param array $args |
|
| 410 | 410 | */ |
| 411 | 411 | public function duplicate_invoice( $args ) { |
| 412 | 412 | |
| 413 | - if ( empty( $args['invoice_id'] ) ) { |
|
| 414 | - return; |
|
| 415 | - } |
|
| 413 | + if ( empty( $args['invoice_id'] ) ) { |
|
| 414 | + return; |
|
| 415 | + } |
|
| 416 | 416 | |
| 417 | - $invoice = new WPInv_Invoice( (int) $args['invoice_id'] ); |
|
| 417 | + $invoice = new WPInv_Invoice( (int) $args['invoice_id'] ); |
|
| 418 | 418 | |
| 419 | - if ( ! $invoice->exists() ) { |
|
| 420 | - return; |
|
| 421 | - } |
|
| 419 | + if ( ! $invoice->exists() ) { |
|
| 420 | + return; |
|
| 421 | + } |
|
| 422 | 422 | |
| 423 | - $new_invoice = getpaid_duplicate_invoice( $invoice ); |
|
| 424 | - $new_invoice->save(); |
|
| 423 | + $new_invoice = getpaid_duplicate_invoice( $invoice ); |
|
| 424 | + $new_invoice->save(); |
|
| 425 | 425 | |
| 426 | - if ( $new_invoice->exists() ) { |
|
| 426 | + if ( $new_invoice->exists() ) { |
|
| 427 | 427 | |
| 428 | - getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'newsletter-optin-box' ) ); |
|
| 428 | + getpaid_admin()->show_success( __( 'Invoice duplicated successfully.', 'newsletter-optin-box' ) ); |
|
| 429 | 429 | |
| 430 | - wp_safe_redirect( |
|
| 431 | - add_query_arg( |
|
| 432 | - array( |
|
| 433 | - 'action' => 'edit', |
|
| 434 | - 'post' => $new_invoice->get_id(), |
|
| 435 | - ), |
|
| 436 | - admin_url( 'post.php' ) |
|
| 437 | - ) |
|
| 438 | - ); |
|
| 439 | - exit; |
|
| 430 | + wp_safe_redirect( |
|
| 431 | + add_query_arg( |
|
| 432 | + array( |
|
| 433 | + 'action' => 'edit', |
|
| 434 | + 'post' => $new_invoice->get_id(), |
|
| 435 | + ), |
|
| 436 | + admin_url( 'post.php' ) |
|
| 437 | + ) |
|
| 438 | + ); |
|
| 439 | + exit; |
|
| 440 | 440 | |
| 441 | - } |
|
| 441 | + } |
|
| 442 | 442 | |
| 443 | - getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box' ) ); |
|
| 443 | + getpaid_admin()->show_error( __( 'There was an error duplicating this invoice. Please try again.', 'newsletter-optin-box' ) ); |
|
| 444 | 444 | |
| 445 | - } |
|
| 445 | + } |
|
| 446 | 446 | |
| 447 | - /** |
|
| 447 | + /** |
|
| 448 | 448 | * Sends a payment reminder to a customer. |
| 449 | - * |
|
| 450 | - * @param array $args |
|
| 449 | + * |
|
| 450 | + * @param array $args |
|
| 451 | 451 | */ |
| 452 | 452 | public function duplicate_payment_form( $args ) { |
| 453 | 453 | |
| 454 | - if ( empty( $args['form_id'] ) ) { |
|
| 455 | - return; |
|
| 456 | - } |
|
| 457 | - |
|
| 458 | - $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
|
| 454 | + if ( empty( $args['form_id'] ) ) { |
|
| 455 | + return; |
|
| 456 | + } |
|
| 459 | 457 | |
| 460 | - if ( ! $form->exists() ) { |
|
| 461 | - return; |
|
| 462 | - } |
|
| 458 | + $form = new GetPaid_Payment_Form( (int) $args['form_id'] ); |
|
| 463 | 459 | |
| 464 | - $new_form = new GetPaid_Payment_Form(); |
|
| 465 | - $new_form->set_author( $form->get_author( 'edit' ) ); |
|
| 466 | - $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
| 467 | - $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
| 468 | - $new_form->set_items( $form->get_items( 'edit' ) ); |
|
| 469 | - $new_form->save(); |
|
| 460 | + if ( ! $form->exists() ) { |
|
| 461 | + return; |
|
| 462 | + } |
|
| 470 | 463 | |
| 471 | - if ( $new_form->exists() ) { |
|
| 472 | - $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
| 473 | - $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
| 474 | - } else { |
|
| 475 | - $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
| 476 | - $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
| 477 | - } |
|
| 464 | + $new_form = new GetPaid_Payment_Form(); |
|
| 465 | + $new_form->set_author( $form->get_author( 'edit' ) ); |
|
| 466 | + $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
| 467 | + $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
| 468 | + $new_form->set_items( $form->get_items( 'edit' ) ); |
|
| 469 | + $new_form->save(); |
|
| 470 | + |
|
| 471 | + if ( $new_form->exists() ) { |
|
| 472 | + $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
| 473 | + $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
| 474 | + } else { |
|
| 475 | + $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
| 476 | + $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
| 477 | + } |
|
| 478 | 478 | |
| 479 | - wp_redirect( $url ); |
|
| 480 | - exit; |
|
| 481 | - } |
|
| 479 | + wp_redirect( $url ); |
|
| 480 | + exit; |
|
| 481 | + } |
|
| 482 | 482 | |
| 483 | - /** |
|
| 483 | + /** |
|
| 484 | 484 | * Sends a payment reminder to a customer. |
| 485 | - * |
|
| 486 | - * @param array $args |
|
| 485 | + * |
|
| 486 | + * @param array $args |
|
| 487 | 487 | */ |
| 488 | 488 | public function send_customer_invoice( $args ) { |
| 489 | - getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
| 490 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 491 | - exit; |
|
| 492 | - } |
|
| 489 | + getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
| 490 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 491 | + exit; |
|
| 492 | + } |
|
| 493 | 493 | |
| 494 | - /** |
|
| 494 | + /** |
|
| 495 | 495 | * Sends a payment reminder to a customer. |
| 496 | - * |
|
| 497 | - * @param array $args |
|
| 496 | + * |
|
| 497 | + * @param array $args |
|
| 498 | 498 | */ |
| 499 | 499 | public function send_customer_payment_reminder( $args ) { |
| 500 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
| 500 | + $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
| 501 | 501 | |
| 502 | - if ( $sent ) { |
|
| 503 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
| 504 | - } else { |
|
| 505 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
| 506 | - } |
|
| 502 | + if ( $sent ) { |
|
| 503 | + $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
| 504 | + } else { |
|
| 505 | + $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
| 506 | + } |
|
| 507 | 507 | |
| 508 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 509 | - exit; |
|
| 510 | - } |
|
| 508 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
| 509 | + exit; |
|
| 510 | + } |
|
| 511 | 511 | |
| 512 | - /** |
|
| 512 | + /** |
|
| 513 | 513 | * Resets tax rates. |
| 514 | - * |
|
| 514 | + * |
|
| 515 | 515 | */ |
| 516 | 516 | public function admin_reset_tax_rates() { |
| 517 | 517 | |
| 518 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 519 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 520 | - exit; |
|
| 518 | + update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
| 519 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 520 | + exit; |
|
| 521 | 521 | |
| 522 | - } |
|
| 522 | + } |
|
| 523 | 523 | |
| 524 | - /** |
|
| 524 | + /** |
|
| 525 | 525 | * Resets admin pages. |
| 526 | - * |
|
| 526 | + * |
|
| 527 | 527 | */ |
| 528 | 528 | public function admin_create_missing_pages() { |
| 529 | - $installer = new GetPaid_Installer(); |
|
| 530 | - $installer->create_pages(); |
|
| 531 | - $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
| 532 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 533 | - exit; |
|
| 534 | - } |
|
| 535 | - |
|
| 536 | - /** |
|
| 529 | + $installer = new GetPaid_Installer(); |
|
| 530 | + $installer->create_pages(); |
|
| 531 | + $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
| 532 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 533 | + exit; |
|
| 534 | + } |
|
| 535 | + |
|
| 536 | + /** |
|
| 537 | 537 | * Creates an missing admin tables. |
| 538 | - * |
|
| 538 | + * |
|
| 539 | 539 | */ |
| 540 | 540 | public function admin_create_missing_tables() { |
| 541 | - global $wpdb; |
|
| 542 | - $installer = new GetPaid_Installer(); |
|
| 541 | + global $wpdb; |
|
| 542 | + $installer = new GetPaid_Installer(); |
|
| 543 | 543 | |
| 544 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
| 545 | - $installer->create_subscriptions_table(); |
|
| 544 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
| 545 | + $installer->create_subscriptions_table(); |
|
| 546 | 546 | |
| 547 | - if ( $wpdb->last_error !== '' ) { |
|
| 548 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 549 | - } |
|
| 550 | - } |
|
| 547 | + if ( $wpdb->last_error !== '' ) { |
|
| 548 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 549 | + } |
|
| 550 | + } |
|
| 551 | 551 | |
| 552 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
| 553 | - $installer->create_invoices_table(); |
|
| 552 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
| 553 | + $installer->create_invoices_table(); |
|
| 554 | 554 | |
| 555 | - if ( '' !== $wpdb->last_error ) { |
|
| 556 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 557 | - } |
|
| 558 | - } |
|
| 555 | + if ( '' !== $wpdb->last_error ) { |
|
| 556 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 557 | + } |
|
| 558 | + } |
|
| 559 | 559 | |
| 560 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
| 561 | - $installer->create_invoice_items_table(); |
|
| 560 | + if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
| 561 | + $installer->create_invoice_items_table(); |
|
| 562 | 562 | |
| 563 | - if ( '' !== $wpdb->last_error ) { |
|
| 564 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 565 | - } |
|
| 566 | - } |
|
| 563 | + if ( '' !== $wpdb->last_error ) { |
|
| 564 | + $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
| 565 | + } |
|
| 566 | + } |
|
| 567 | 567 | |
| 568 | - if ( ! $this->has_notices() ) { |
|
| 569 | - $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
| 570 | - } |
|
| 568 | + if ( ! $this->has_notices() ) { |
|
| 569 | + $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
| 570 | + } |
|
| 571 | 571 | |
| 572 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 573 | - exit; |
|
| 574 | - } |
|
| 572 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 573 | + exit; |
|
| 574 | + } |
|
| 575 | 575 | |
| 576 | - /** |
|
| 576 | + /** |
|
| 577 | 577 | * Migrates old invoices to the new database tables. |
| 578 | - * |
|
| 578 | + * |
|
| 579 | 579 | */ |
| 580 | 580 | public function admin_migrate_old_invoices() { |
| 581 | 581 | |
| 582 | - // Migrate the invoices. |
|
| 583 | - $installer = new GetPaid_Installer(); |
|
| 584 | - $installer->migrate_old_invoices(); |
|
| 582 | + // Migrate the invoices. |
|
| 583 | + $installer = new GetPaid_Installer(); |
|
| 584 | + $installer->migrate_old_invoices(); |
|
| 585 | 585 | |
| 586 | - // Show an admin message. |
|
| 587 | - $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
| 586 | + // Show an admin message. |
|
| 587 | + $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
| 588 | 588 | |
| 589 | - // Redirect the admin. |
|
| 590 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 591 | - exit; |
|
| 589 | + // Redirect the admin. |
|
| 590 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 591 | + exit; |
|
| 592 | 592 | |
| 593 | - } |
|
| 593 | + } |
|
| 594 | 594 | |
| 595 | - /** |
|
| 595 | + /** |
|
| 596 | 596 | * Download customers. |
| 597 | - * |
|
| 597 | + * |
|
| 598 | 598 | */ |
| 599 | 599 | public function admin_download_customers() { |
| 600 | - global $wpdb; |
|
| 601 | - |
|
| 602 | - $output = fopen( 'php://output', 'w' ); |
|
| 603 | - |
|
| 604 | - if ( false === $output ) { |
|
| 605 | - wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 606 | - } |
|
| 600 | + global $wpdb; |
|
| 607 | 601 | |
| 608 | - header( 'Content-Type:text/csv' ); |
|
| 609 | - header( 'Content-Disposition:attachment;filename=customers.csv' ); |
|
| 602 | + $output = fopen( 'php://output', 'w' ); |
|
| 610 | 603 | |
| 611 | - $post_types = ''; |
|
| 604 | + if ( false === $output ) { |
|
| 605 | + wp_die( esc_html__( 'Unsupported server', 'invoicing' ), 500 ); |
|
| 606 | + } |
|
| 612 | 607 | |
| 613 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 614 | - $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
| 615 | - } |
|
| 608 | + header( 'Content-Type:text/csv' ); |
|
| 609 | + header( 'Content-Disposition:attachment;filename=customers.csv' ); |
|
| 616 | 610 | |
| 617 | - $post_types = rtrim( $post_types, ' OR' ); |
|
| 611 | + $post_types = ''; |
|
| 618 | 612 | |
| 619 | - $customers = $wpdb->get_col( "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types" ); |
|
| 613 | + foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
| 614 | + $post_types .= $wpdb->prepare( 'post_type=%s OR ', $post_type ); |
|
| 615 | + } |
|
| 620 | 616 | |
| 621 | - $columns = array( |
|
| 622 | - 'name' => __( 'Name', 'invoicing' ), |
|
| 623 | - 'email' => __( 'Email', 'invoicing' ), |
|
| 624 | - 'country' => __( 'Country', 'invoicing' ), |
|
| 625 | - 'state' => __( 'State', 'invoicing' ), |
|
| 626 | - 'city' => __( 'City', 'invoicing' ), |
|
| 627 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 628 | - 'address' => __( 'Address', 'invoicing' ), |
|
| 629 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
| 630 | - 'company' => __( 'Company', 'invoicing' ), |
|
| 631 | - 'company_id' => __( 'Company ID', 'invoicing' ), |
|
| 632 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 633 | - 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
| 634 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
| 635 | - ); |
|
| 617 | + $post_types = rtrim( $post_types, ' OR' ); |
|
| 618 | + |
|
| 619 | + $customers = $wpdb->get_col( "SELECT DISTINCT( post_author ) FROM $wpdb->posts WHERE $post_types" ); |
|
| 620 | + |
|
| 621 | + $columns = array( |
|
| 622 | + 'name' => __( 'Name', 'invoicing' ), |
|
| 623 | + 'email' => __( 'Email', 'invoicing' ), |
|
| 624 | + 'country' => __( 'Country', 'invoicing' ), |
|
| 625 | + 'state' => __( 'State', 'invoicing' ), |
|
| 626 | + 'city' => __( 'City', 'invoicing' ), |
|
| 627 | + 'zip' => __( 'ZIP', 'invoicing' ), |
|
| 628 | + 'address' => __( 'Address', 'invoicing' ), |
|
| 629 | + 'phone' => __( 'Phone', 'invoicing' ), |
|
| 630 | + 'company' => __( 'Company', 'invoicing' ), |
|
| 631 | + 'company_id' => __( 'Company ID', 'invoicing' ), |
|
| 632 | + 'invoices' => __( 'Invoices', 'invoicing' ), |
|
| 633 | + 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
| 634 | + 'signup' => __( 'Date created', 'invoicing' ), |
|
| 635 | + ); |
|
| 636 | 636 | |
| 637 | - // Output the csv column headers. |
|
| 638 | - fputcsv( $output, array_values( $columns ) ); |
|
| 637 | + // Output the csv column headers. |
|
| 638 | + fputcsv( $output, array_values( $columns ) ); |
|
| 639 | 639 | |
| 640 | - // Loop through |
|
| 641 | - $table = new WPInv_Customers_Table(); |
|
| 642 | - foreach ( $customers as $customer_id ) { |
|
| 640 | + // Loop through |
|
| 641 | + $table = new WPInv_Customers_Table(); |
|
| 642 | + foreach ( $customers as $customer_id ) { |
|
| 643 | 643 | |
| 644 | - $user = get_user_by( 'id', $customer_id ); |
|
| 645 | - $row = array(); |
|
| 646 | - if ( empty( $user ) ) { |
|
| 647 | - continue; |
|
| 648 | - } |
|
| 644 | + $user = get_user_by( 'id', $customer_id ); |
|
| 645 | + $row = array(); |
|
| 646 | + if ( empty( $user ) ) { |
|
| 647 | + continue; |
|
| 648 | + } |
|
| 649 | 649 | |
| 650 | - foreach ( array_keys( $columns ) as $column ) { |
|
| 650 | + foreach ( array_keys( $columns ) as $column ) { |
|
| 651 | 651 | |
| 652 | - $method = 'column_' . $column; |
|
| 652 | + $method = 'column_' . $column; |
|
| 653 | 653 | |
| 654 | - if ( 'name' == $column ) { |
|
| 655 | - $value = esc_html( $user->display_name ); |
|
| 656 | - } elseif ( 'email' == $column ) { |
|
| 657 | - $value = sanitize_email( $user->user_email ); |
|
| 658 | - } elseif ( is_callable( array( $table, $method ) ) ) { |
|
| 659 | - $value = wp_strip_all_tags( $table->$method( $user ) ); |
|
| 660 | - } |
|
| 654 | + if ( 'name' == $column ) { |
|
| 655 | + $value = esc_html( $user->display_name ); |
|
| 656 | + } elseif ( 'email' == $column ) { |
|
| 657 | + $value = sanitize_email( $user->user_email ); |
|
| 658 | + } elseif ( is_callable( array( $table, $method ) ) ) { |
|
| 659 | + $value = wp_strip_all_tags( $table->$method( $user ) ); |
|
| 660 | + } |
|
| 661 | 661 | |
| 662 | - if ( empty( $value ) ) { |
|
| 663 | - $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
| 664 | - } |
|
| 662 | + if ( empty( $value ) ) { |
|
| 663 | + $value = esc_html( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
| 664 | + } |
|
| 665 | 665 | |
| 666 | - $row[] = $value; |
|
| 666 | + $row[] = $value; |
|
| 667 | 667 | |
| 668 | - } |
|
| 668 | + } |
|
| 669 | 669 | |
| 670 | - fputcsv( $output, $row ); |
|
| 671 | - } |
|
| 670 | + fputcsv( $output, $row ); |
|
| 671 | + } |
|
| 672 | 672 | |
| 673 | - fclose( $output ); |
|
| 674 | - exit; |
|
| 673 | + fclose( $output ); |
|
| 674 | + exit; |
|
| 675 | 675 | |
| 676 | - } |
|
| 676 | + } |
|
| 677 | 677 | |
| 678 | - /** |
|
| 678 | + /** |
|
| 679 | 679 | * Installs a plugin. |
| 680 | - * |
|
| 681 | - * @param array $data |
|
| 680 | + * |
|
| 681 | + * @param array $data |
|
| 682 | 682 | */ |
| 683 | 683 | public function admin_install_plugin( $data ) { |
| 684 | 684 | |
| 685 | - if ( ! empty( $data['plugins'] ) ) { |
|
| 686 | - include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 687 | - wp_cache_flush(); |
|
| 685 | + if ( ! empty( $data['plugins'] ) ) { |
|
| 686 | + include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 687 | + wp_cache_flush(); |
|
| 688 | 688 | |
| 689 | - foreach ( $data['plugins'] as $slug => $file ) { |
|
| 690 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
| 691 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 692 | - $installed = $upgrader->install( $plugin_zip ); |
|
| 689 | + foreach ( $data['plugins'] as $slug => $file ) { |
|
| 690 | + $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
| 691 | + $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 692 | + $installed = $upgrader->install( $plugin_zip ); |
|
| 693 | 693 | |
| 694 | - if ( ! is_wp_error( $installed ) && $installed ) { |
|
| 695 | - activate_plugin( $file, '', false, true ); |
|
| 696 | - } else { |
|
| 697 | - wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
| 698 | - } |
|
| 694 | + if ( ! is_wp_error( $installed ) && $installed ) { |
|
| 695 | + activate_plugin( $file, '', false, true ); |
|
| 696 | + } else { |
|
| 697 | + wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
| 698 | + } |
|
| 699 | 699 | } |
| 700 | 700 | } |
| 701 | 701 | |
| 702 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
| 703 | - wp_safe_redirect( $redirect ); |
|
| 704 | - exit; |
|
| 702 | + $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
| 703 | + wp_safe_redirect( $redirect ); |
|
| 704 | + exit; |
|
| 705 | 705 | |
| 706 | - } |
|
| 706 | + } |
|
| 707 | 707 | |
| 708 | - /** |
|
| 708 | + /** |
|
| 709 | 709 | * Connects a gateway. |
| 710 | - * |
|
| 711 | - * @param array $data |
|
| 710 | + * |
|
| 711 | + * @param array $data |
|
| 712 | 712 | */ |
| 713 | 713 | public function admin_connect_gateway( $data ) { |
| 714 | 714 | |
| 715 | - if ( ! empty( $data['plugin'] ) ) { |
|
| 715 | + if ( ! empty( $data['plugin'] ) ) { |
|
| 716 | 716 | |
| 717 | - $gateway = sanitize_key( $data['plugin'] ); |
|
| 718 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 717 | + $gateway = sanitize_key( $data['plugin'] ); |
|
| 718 | + $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 719 | 719 | |
| 720 | - if ( ! empty( $connect_url ) ) { |
|
| 721 | - wp_redirect( $connect_url ); |
|
| 722 | - exit; |
|
| 723 | - } |
|
| 720 | + if ( ! empty( $connect_url ) ) { |
|
| 721 | + wp_redirect( $connect_url ); |
|
| 722 | + exit; |
|
| 723 | + } |
|
| 724 | 724 | |
| 725 | - if ( 'stripe' == $data['plugin'] ) { |
|
| 726 | - require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 727 | - include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 728 | - wp_cache_flush(); |
|
| 725 | + if ( 'stripe' == $data['plugin'] ) { |
|
| 726 | + require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
| 727 | + include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
|
| 728 | + wp_cache_flush(); |
|
| 729 | 729 | |
| 730 | - if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
| 731 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
| 732 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 733 | - $upgrader->install( $plugin_zip ); |
|
| 734 | - } |
|
| 730 | + if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
| 731 | + $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
| 732 | + $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
| 733 | + $upgrader->install( $plugin_zip ); |
|
| 734 | + } |
|
| 735 | 735 | |
| 736 | - activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
| 737 | - } |
|
| 736 | + activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
| 737 | + } |
|
| 738 | 738 | |
| 739 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 740 | - if ( ! empty( $connect_url ) ) { |
|
| 741 | - wp_redirect( $connect_url ); |
|
| 742 | - exit; |
|
| 743 | - } |
|
| 739 | + $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
| 740 | + if ( ! empty( $connect_url ) ) { |
|
| 741 | + wp_redirect( $connect_url ); |
|
| 742 | + exit; |
|
| 743 | + } |
|
| 744 | 744 | } |
| 745 | 745 | |
| 746 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
| 747 | - wp_safe_redirect( $redirect ); |
|
| 748 | - exit; |
|
| 746 | + $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
| 747 | + wp_safe_redirect( $redirect ); |
|
| 748 | + exit; |
|
| 749 | 749 | |
| 750 | - } |
|
| 750 | + } |
|
| 751 | 751 | |
| 752 | - /** |
|
| 752 | + /** |
|
| 753 | 753 | * Recalculates discounts. |
| 754 | - * |
|
| 754 | + * |
|
| 755 | 755 | */ |
| 756 | 756 | public function admin_recalculate_discounts() { |
| 757 | - global $wpdb; |
|
| 757 | + global $wpdb; |
|
| 758 | 758 | |
| 759 | - // Fetch all invoices that have discount codes. |
|
| 760 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 761 | - $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
| 759 | + // Fetch all invoices that have discount codes. |
|
| 760 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 761 | + $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
| 762 | 762 | |
| 763 | - foreach ( $invoices as $invoice ) { |
|
| 763 | + foreach ( $invoices as $invoice ) { |
|
| 764 | 764 | |
| 765 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 765 | + $invoice = new WPInv_Invoice( $invoice ); |
|
| 766 | 766 | |
| 767 | - if ( ! $invoice->exists() ) { |
|
| 768 | - continue; |
|
| 769 | - } |
|
| 767 | + if ( ! $invoice->exists() ) { |
|
| 768 | + continue; |
|
| 769 | + } |
|
| 770 | 770 | |
| 771 | - // Abort if the discount does not exist or does not apply here. |
|
| 772 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 773 | - if ( ! $discount->exists() ) { |
|
| 774 | - continue; |
|
| 775 | - } |
|
| 771 | + // Abort if the discount does not exist or does not apply here. |
|
| 772 | + $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 773 | + if ( ! $discount->exists() ) { |
|
| 774 | + continue; |
|
| 775 | + } |
|
| 776 | 776 | |
| 777 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 778 | - $invoice->recalculate_total(); |
|
| 777 | + $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 778 | + $invoice->recalculate_total(); |
|
| 779 | 779 | |
| 780 | - if ( $invoice->get_total_discount() > 0 ) { |
|
| 781 | - $invoice->save(); |
|
| 782 | - } |
|
| 780 | + if ( $invoice->get_total_discount() > 0 ) { |
|
| 781 | + $invoice->save(); |
|
| 782 | + } |
|
| 783 | 783 | } |
| 784 | 784 | |
| 785 | - // Show an admin message. |
|
| 786 | - $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
| 785 | + // Show an admin message. |
|
| 786 | + $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
| 787 | 787 | |
| 788 | - // Redirect the admin. |
|
| 789 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 790 | - exit; |
|
| 788 | + // Redirect the admin. |
|
| 789 | + wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
| 790 | + exit; |
|
| 791 | 791 | |
| 792 | - } |
|
| 792 | + } |
|
| 793 | 793 | |
| 794 | 794 | /** |
| 795 | - * Returns an array of admin notices. |
|
| 796 | - * |
|
| 797 | - * @since 1.0.19 |
|
| 795 | + * Returns an array of admin notices. |
|
| 796 | + * |
|
| 797 | + * @since 1.0.19 |
|
| 798 | 798 | * @return array |
| 799 | - */ |
|
| 800 | - public function get_notices() { |
|
| 801 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
| 799 | + */ |
|
| 800 | + public function get_notices() { |
|
| 801 | + $notices = get_option( 'wpinv_admin_notices' ); |
|
| 802 | 802 | return is_array( $notices ) ? $notices : array(); |
| 803 | - } |
|
| 803 | + } |
|
| 804 | 804 | |
| 805 | - /** |
|
| 806 | - * Checks if we have any admin notices. |
|
| 807 | - * |
|
| 808 | - * @since 2.0.4 |
|
| 805 | + /** |
|
| 806 | + * Checks if we have any admin notices. |
|
| 807 | + * |
|
| 808 | + * @since 2.0.4 |
|
| 809 | 809 | * @return array |
| 810 | - */ |
|
| 811 | - public function has_notices() { |
|
| 812 | - return count( $this->get_notices() ) > 0; |
|
| 813 | - } |
|
| 814 | - |
|
| 815 | - /** |
|
| 816 | - * Clears all admin notices |
|
| 817 | - * |
|
| 818 | - * @access public |
|
| 819 | - * @since 1.0.19 |
|
| 820 | - */ |
|
| 821 | - public function clear_notices() { |
|
| 822 | - delete_option( 'wpinv_admin_notices' ); |
|
| 823 | - } |
|
| 824 | - |
|
| 825 | - /** |
|
| 826 | - * Saves a new admin notice |
|
| 827 | - * |
|
| 828 | - * @access public |
|
| 829 | - * @since 1.0.19 |
|
| 830 | - */ |
|
| 831 | - public function save_notice( $type, $message ) { |
|
| 832 | - $notices = $this->get_notices(); |
|
| 833 | - |
|
| 834 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ] ) ) { |
|
| 835 | - $notices[ $type ] = array(); |
|
| 836 | - } |
|
| 837 | - |
|
| 838 | - $notices[ $type ][] = $message; |
|
| 839 | - |
|
| 840 | - update_option( 'wpinv_admin_notices', $notices ); |
|
| 841 | - } |
|
| 842 | - |
|
| 843 | - /** |
|
| 844 | - * Displays a success notice |
|
| 845 | - * |
|
| 846 | - * @param string $msg The message to qeue. |
|
| 847 | - * @access public |
|
| 848 | - * @since 1.0.19 |
|
| 849 | - */ |
|
| 850 | - public function show_success( $msg ) { |
|
| 851 | - $this->save_notice( 'success', $msg ); |
|
| 852 | - } |
|
| 853 | - |
|
| 854 | - /** |
|
| 855 | - * Displays a error notice |
|
| 856 | - * |
|
| 857 | - * @access public |
|
| 858 | - * @param string $msg The message to qeue. |
|
| 859 | - * @since 1.0.19 |
|
| 860 | - */ |
|
| 861 | - public function show_error( $msg ) { |
|
| 862 | - $this->save_notice( 'error', $msg ); |
|
| 863 | - } |
|
| 864 | - |
|
| 865 | - /** |
|
| 866 | - * Displays a warning notice |
|
| 867 | - * |
|
| 868 | - * @access public |
|
| 869 | - * @param string $msg The message to qeue. |
|
| 870 | - * @since 1.0.19 |
|
| 871 | - */ |
|
| 872 | - public function show_warning( $msg ) { |
|
| 873 | - $this->save_notice( 'warning', $msg ); |
|
| 874 | - } |
|
| 875 | - |
|
| 876 | - /** |
|
| 877 | - * Displays a info notice |
|
| 878 | - * |
|
| 879 | - * @access public |
|
| 880 | - * @param string $msg The message to qeue. |
|
| 881 | - * @since 1.0.19 |
|
| 882 | - */ |
|
| 883 | - public function show_info( $msg ) { |
|
| 884 | - $this->save_notice( 'info', $msg ); |
|
| 885 | - } |
|
| 886 | - |
|
| 887 | - /** |
|
| 888 | - * Show notices |
|
| 889 | - * |
|
| 890 | - * @access public |
|
| 891 | - * @since 1.0.19 |
|
| 892 | - */ |
|
| 893 | - public function show_notices() { |
|
| 810 | + */ |
|
| 811 | + public function has_notices() { |
|
| 812 | + return count( $this->get_notices() ) > 0; |
|
| 813 | + } |
|
| 814 | + |
|
| 815 | + /** |
|
| 816 | + * Clears all admin notices |
|
| 817 | + * |
|
| 818 | + * @access public |
|
| 819 | + * @since 1.0.19 |
|
| 820 | + */ |
|
| 821 | + public function clear_notices() { |
|
| 822 | + delete_option( 'wpinv_admin_notices' ); |
|
| 823 | + } |
|
| 824 | + |
|
| 825 | + /** |
|
| 826 | + * Saves a new admin notice |
|
| 827 | + * |
|
| 828 | + * @access public |
|
| 829 | + * @since 1.0.19 |
|
| 830 | + */ |
|
| 831 | + public function save_notice( $type, $message ) { |
|
| 832 | + $notices = $this->get_notices(); |
|
| 833 | + |
|
| 834 | + if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ] ) ) { |
|
| 835 | + $notices[ $type ] = array(); |
|
| 836 | + } |
|
| 837 | + |
|
| 838 | + $notices[ $type ][] = $message; |
|
| 839 | + |
|
| 840 | + update_option( 'wpinv_admin_notices', $notices ); |
|
| 841 | + } |
|
| 842 | + |
|
| 843 | + /** |
|
| 844 | + * Displays a success notice |
|
| 845 | + * |
|
| 846 | + * @param string $msg The message to qeue. |
|
| 847 | + * @access public |
|
| 848 | + * @since 1.0.19 |
|
| 849 | + */ |
|
| 850 | + public function show_success( $msg ) { |
|
| 851 | + $this->save_notice( 'success', $msg ); |
|
| 852 | + } |
|
| 853 | + |
|
| 854 | + /** |
|
| 855 | + * Displays a error notice |
|
| 856 | + * |
|
| 857 | + * @access public |
|
| 858 | + * @param string $msg The message to qeue. |
|
| 859 | + * @since 1.0.19 |
|
| 860 | + */ |
|
| 861 | + public function show_error( $msg ) { |
|
| 862 | + $this->save_notice( 'error', $msg ); |
|
| 863 | + } |
|
| 864 | + |
|
| 865 | + /** |
|
| 866 | + * Displays a warning notice |
|
| 867 | + * |
|
| 868 | + * @access public |
|
| 869 | + * @param string $msg The message to qeue. |
|
| 870 | + * @since 1.0.19 |
|
| 871 | + */ |
|
| 872 | + public function show_warning( $msg ) { |
|
| 873 | + $this->save_notice( 'warning', $msg ); |
|
| 874 | + } |
|
| 875 | + |
|
| 876 | + /** |
|
| 877 | + * Displays a info notice |
|
| 878 | + * |
|
| 879 | + * @access public |
|
| 880 | + * @param string $msg The message to qeue. |
|
| 881 | + * @since 1.0.19 |
|
| 882 | + */ |
|
| 883 | + public function show_info( $msg ) { |
|
| 884 | + $this->save_notice( 'info', $msg ); |
|
| 885 | + } |
|
| 886 | + |
|
| 887 | + /** |
|
| 888 | + * Show notices |
|
| 889 | + * |
|
| 890 | + * @access public |
|
| 891 | + * @since 1.0.19 |
|
| 892 | + */ |
|
| 893 | + public function show_notices() { |
|
| 894 | 894 | |
| 895 | 895 | $notices = $this->get_notices(); |
| 896 | 896 | $this->clear_notices(); |
| 897 | 897 | |
| 898 | - foreach ( $notices as $type => $messages ) { |
|
| 898 | + foreach ( $notices as $type => $messages ) { |
|
| 899 | 899 | |
| 900 | - if ( ! is_array( $messages ) ) { |
|
| 901 | - continue; |
|
| 902 | - } |
|
| 900 | + if ( ! is_array( $messages ) ) { |
|
| 901 | + continue; |
|
| 902 | + } |
|
| 903 | 903 | |
| 904 | 904 | $type = esc_attr( $type ); |
| 905 | - foreach ( $messages as $message ) { |
|
| 906 | - echo wp_kses_post( "<div class='notice notice-$type is-dismissible'><p>$message</p></div>" ); |
|
| 905 | + foreach ( $messages as $message ) { |
|
| 906 | + echo wp_kses_post( "<div class='notice notice-$type is-dismissible'><p>$message</p></div>" ); |
|
| 907 | 907 | } |
| 908 | 908 | } |
| 909 | 909 | |
| 910 | - foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
| 911 | - |
|
| 912 | - if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
| 913 | - $url = wp_nonce_url( |
|
| 914 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 915 | - 'getpaid-nonce', |
|
| 916 | - 'getpaid-nonce' |
|
| 917 | - ); |
|
| 918 | - $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
| 919 | - $message2 = __( 'Generate Pages', 'invoicing' ); |
|
| 920 | - echo wp_kses_post( "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>" ); |
|
| 921 | - break; |
|
| 922 | - } |
|
| 910 | + foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
| 911 | + |
|
| 912 | + if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
| 913 | + $url = wp_nonce_url( |
|
| 914 | + add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 915 | + 'getpaid-nonce', |
|
| 916 | + 'getpaid-nonce' |
|
| 917 | + ); |
|
| 918 | + $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
| 919 | + $message2 = __( 'Generate Pages', 'invoicing' ); |
|
| 920 | + echo wp_kses_post( "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>" ); |
|
| 921 | + break; |
|
| 922 | + } |
|
| 923 | 923 | } |
| 924 | 924 | |
| 925 | - } |
|
| 925 | + } |
|
| 926 | 926 | |
| 927 | 927 | } |