@@ -19,16 +19,16 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | // Define constants. |
| 21 | 21 | if ( ! defined( 'WPINV_PLUGIN_FILE' ) ) { |
| 22 | - define( 'WPINV_PLUGIN_FILE', __FILE__ ); |
|
| 22 | + define( 'WPINV_PLUGIN_FILE', __FILE__ ); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | if ( ! defined( 'WPINV_VERSION' ) ) { |
| 26 | - define( 'WPINV_VERSION', '2.8.14' ); |
|
| 26 | + define( 'WPINV_VERSION', '2.8.14' ); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | // Include the main Invoicing class. |
| 30 | 30 | if ( ! class_exists( 'WPInv_Plugin', false ) ) { |
| 31 | - require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php'; |
|
| 31 | + require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php'; |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | $GLOBALS['invoicing'] = new WPInv_Plugin(); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | - return $GLOBALS['invoicing']; |
|
| 46 | + return $GLOBALS['invoicing']; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | /** |
@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | $defaults[ $key ] = $setting['std']; |
| 26 | 26 | } |
| 27 | 27 | } |
| 28 | - } |
|
| 29 | - } |
|
| 28 | + } |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | 31 | return $defaults; |
| 32 | 32 | |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | * |
| 145 | 145 | */ |
| 146 | 146 | function wpinv_register_settings() { |
| 147 | - do_action( 'getpaid_before_register_settings' ); |
|
| 147 | + do_action( 'getpaid_before_register_settings' ); |
|
| 148 | 148 | |
| 149 | 149 | // Loop through all tabs. |
| 150 | 150 | foreach ( wpinv_get_registered_settings() as $tab => $sections ) { |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | $settings = $sections; |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | - do_action( "getpaid_register_{$tab}_{$section}" ); |
|
| 162 | + do_action( "getpaid_register_{$tab}_{$section}" ); |
|
| 163 | 163 | |
| 164 | 164 | // Register the setting section. |
| 165 | 165 | add_settings_section( |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | // Creates our settings in the options table. |
| 181 | 181 | register_setting( 'wpinv_settings', 'wpinv_settings', 'wpinv_settings_sanitize' ); |
| 182 | 182 | |
| 183 | - do_action( 'getpaid_after_register_settings' ); |
|
| 183 | + do_action( 'getpaid_after_register_settings' ); |
|
| 184 | 184 | } |
| 185 | 185 | add_action( 'admin_init', 'wpinv_register_settings' ); |
| 186 | 186 | |
@@ -197,13 +197,13 @@ discard block |
||
| 197 | 197 | $name = isset( $option['name'] ) ? $option['name'] : ''; |
| 198 | 198 | $cb = "wpinv_{$option['type']}_callback"; |
| 199 | 199 | $section = "wpinv_settings_{$tab}_$section"; |
| 200 | - $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
| 200 | + $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
| 201 | 201 | |
| 202 | - if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
| 203 | - $tip = wpinv_clean( $option['desc'] ); |
|
| 204 | - $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
| 205 | - unset( $option['desc'] ); |
|
| 206 | - } |
|
| 202 | + if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
| 203 | + $tip = wpinv_clean( $option['desc'] ); |
|
| 204 | + $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
| 205 | + unset( $option['desc'] ); |
|
| 206 | + } |
|
| 207 | 207 | |
| 208 | 208 | // Loop through all tabs. |
| 209 | 209 | add_settings_field( |
@@ -230,9 +230,9 @@ discard block |
||
| 230 | 230 | 'faux' => isset( $option['faux'] ) ? $option['faux'] : false, |
| 231 | 231 | 'onchange' => isset( $option['onchange'] ) ? $option['onchange'] : '', |
| 232 | 232 | 'custom' => isset( $option['custom'] ) ? $option['custom'] : '', |
| 233 | - 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
| 234 | - 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
| 235 | - 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
| 233 | + 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
| 234 | + 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
| 235 | + 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
| 236 | 236 | 'cols' => isset( $option['cols'] ) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
| 237 | 237 | 'rows' => isset( $option['rows'] ) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
| 238 | 238 | ) |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | * @return array |
| 247 | 247 | */ |
| 248 | 248 | function wpinv_get_registered_settings() { |
| 249 | - return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
| 249 | + return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | /** |
@@ -265,18 +265,18 @@ discard block |
||
| 265 | 265 | */ |
| 266 | 266 | function wpinv_settings_sanitize( $input = array() ) { |
| 267 | 267 | |
| 268 | - $wpinv_options = wpinv_get_options(); |
|
| 269 | - $raw_referrer = wp_get_raw_referer(); |
|
| 268 | + $wpinv_options = wpinv_get_options(); |
|
| 269 | + $raw_referrer = wp_get_raw_referer(); |
|
| 270 | 270 | |
| 271 | 271 | if ( empty( $raw_referrer ) ) { |
| 272 | - return array_merge( $wpinv_options, $input ); |
|
| 272 | + return array_merge( $wpinv_options, $input ); |
|
| 273 | 273 | } |
| 274 | 274 | |
| 275 | 275 | wp_parse_str( $raw_referrer, $referrer ); |
| 276 | 276 | |
| 277 | - if ( in_array( 'gp-setup', $referrer ) ) { |
|
| 278 | - return array_merge( $wpinv_options, $input ); |
|
| 279 | - } |
|
| 277 | + if ( in_array( 'gp-setup', $referrer ) ) { |
|
| 278 | + return array_merge( $wpinv_options, $input ); |
|
| 279 | + } |
|
| 280 | 280 | |
| 281 | 281 | $settings = wpinv_get_registered_settings(); |
| 282 | 282 | $tab = isset( $referrer['tab'] ) ? $referrer['tab'] : 'general'; |
@@ -298,10 +298,10 @@ discard block |
||
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | // General filter |
| 301 | - $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
| 301 | + $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
| 302 | 302 | |
| 303 | - // Key specific filter. |
|
| 304 | - $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
| 303 | + // Key specific filter. |
|
| 304 | + $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
| 305 | 305 | } |
| 306 | 306 | |
| 307 | 307 | // Loop through the whitelist and unset any that are empty for the tab being saved |
@@ -344,14 +344,14 @@ discard block |
||
| 344 | 344 | |
| 345 | 345 | foreach ( $new_rates as $rate ) { |
| 346 | 346 | |
| 347 | - $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
| 348 | - $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
| 349 | - $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
| 350 | - $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
| 351 | - $rate['global'] = empty( $rate['state'] ); |
|
| 352 | - $tax_rates[] = $rate; |
|
| 347 | + $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
| 348 | + $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
| 349 | + $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
| 350 | + $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
| 351 | + $rate['global'] = empty( $rate['state'] ); |
|
| 352 | + $tax_rates[] = $rate; |
|
| 353 | 353 | |
| 354 | - } |
|
| 354 | + } |
|
| 355 | 355 | |
| 356 | 356 | update_option( 'wpinv_tax_rates', $tax_rates ); |
| 357 | 357 | |
@@ -364,21 +364,21 @@ discard block |
||
| 364 | 364 | return $input; |
| 365 | 365 | } |
| 366 | 366 | |
| 367 | - if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
| 368 | - return $input; |
|
| 369 | - } |
|
| 367 | + if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
| 368 | + return $input; |
|
| 369 | + } |
|
| 370 | 370 | |
| 371 | 371 | $new_rules = ! empty( $_POST['tax_rules'] ) ? wp_kses_post_deep( array_values( $_POST['tax_rules'] ) ) : array(); |
| 372 | 372 | $tax_rules = array(); |
| 373 | 373 | |
| 374 | 374 | foreach ( $new_rules as $rule ) { |
| 375 | 375 | |
| 376 | - $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
| 377 | - $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
| 378 | - $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
| 379 | - $tax_rules[] = $rule; |
|
| 376 | + $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
| 377 | + $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
| 378 | + $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
| 379 | + $tax_rules[] = $rule; |
|
| 380 | 380 | |
| 381 | - } |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | 383 | update_option( 'wpinv_tax_rules', $tax_rules ); |
| 384 | 384 | |
@@ -391,11 +391,11 @@ discard block |
||
| 391 | 391 | $tabs['general'] = __( 'General', 'invoicing' ); |
| 392 | 392 | $tabs['gateways'] = __( 'Payment Gateways', 'invoicing' ); |
| 393 | 393 | $tabs['taxes'] = __( 'Taxes', 'invoicing' ); |
| 394 | - $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
| 394 | + $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
| 395 | 395 | |
| 396 | - if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
| 397 | - $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
| 398 | - } |
|
| 396 | + if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
| 397 | + $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
| 398 | + } |
|
| 399 | 399 | |
| 400 | 400 | $tabs['privacy'] = __( 'Privacy', 'invoicing' ); |
| 401 | 401 | $tabs['misc'] = __( 'Misc', 'invoicing' ); |
@@ -426,53 +426,53 @@ discard block |
||
| 426 | 426 | 'general' => apply_filters( |
| 427 | 427 | 'wpinv_settings_sections_general', |
| 428 | 428 | array( |
| 429 | - 'main' => __( 'General Settings', 'invoicing' ), |
|
| 430 | - 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
| 431 | - 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
| 432 | - 'labels' => __( 'Label Texts', 'invoicing' ), |
|
| 429 | + 'main' => __( 'General Settings', 'invoicing' ), |
|
| 430 | + 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
| 431 | + 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
| 432 | + 'labels' => __( 'Label Texts', 'invoicing' ), |
|
| 433 | 433 | ) |
| 434 | 434 | ), |
| 435 | 435 | 'gateways' => apply_filters( |
| 436 | 436 | 'wpinv_settings_sections_gateways', |
| 437 | 437 | array( |
| 438 | - 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
| 438 | + 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
| 439 | 439 | ) |
| 440 | 440 | ), |
| 441 | 441 | 'taxes' => apply_filters( |
| 442 | 442 | 'wpinv_settings_sections_taxes', |
| 443 | 443 | array( |
| 444 | - 'main' => __( 'Tax Settings', 'invoicing' ), |
|
| 445 | - 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
| 446 | - 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
| 447 | - 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
| 444 | + 'main' => __( 'Tax Settings', 'invoicing' ), |
|
| 445 | + 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
| 446 | + 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
| 447 | + 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
| 448 | 448 | ) |
| 449 | 449 | ), |
| 450 | 450 | 'emails' => apply_filters( |
| 451 | 451 | 'wpinv_settings_sections_emails', |
| 452 | 452 | array( |
| 453 | - 'main' => __( 'Email Settings', 'invoicing' ), |
|
| 453 | + 'main' => __( 'Email Settings', 'invoicing' ), |
|
| 454 | 454 | ) |
| 455 | 455 | ), |
| 456 | 456 | |
| 457 | - 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
| 457 | + 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
| 458 | 458 | |
| 459 | 459 | 'privacy' => apply_filters( |
| 460 | 460 | 'wpinv_settings_sections_privacy', |
| 461 | 461 | array( |
| 462 | - 'main' => __( 'Privacy policy', 'invoicing' ), |
|
| 462 | + 'main' => __( 'Privacy policy', 'invoicing' ), |
|
| 463 | 463 | ) |
| 464 | 464 | ), |
| 465 | 465 | 'misc' => apply_filters( |
| 466 | 466 | 'wpinv_settings_sections_misc', |
| 467 | 467 | array( |
| 468 | - 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
| 469 | - 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
| 468 | + 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
| 469 | + 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
| 470 | 470 | ) |
| 471 | 471 | ), |
| 472 | 472 | 'tools' => apply_filters( |
| 473 | 473 | 'wpinv_settings_sections_tools', |
| 474 | 474 | array( |
| 475 | - 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
| 475 | + 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
| 476 | 476 | ) |
| 477 | 477 | ), |
| 478 | 478 | ); |
@@ -525,7 +525,7 @@ discard block |
||
| 525 | 525 | // Prepare the SQL query to include the excluded pages only if we have placeholders |
| 526 | 526 | $pages = $exclude_pages_placeholders ? $wpdb->get_results( $wpdb->prepare( $sql, ...$exclude_pages ) ) : $wpdb->get_results( $sql ); |
| 527 | 527 | |
| 528 | - $pages_options = array(); |
|
| 528 | + $pages_options = array(); |
|
| 529 | 529 | |
| 530 | 530 | if ( $pages ) { |
| 531 | 531 | foreach ( $pages as $page ) { |
@@ -542,32 +542,32 @@ discard block |
||
| 542 | 542 | $pages_options = array( '' => $default_label ) + $pages_options; // Blank option |
| 543 | 543 | } |
| 544 | 544 | |
| 545 | - return $pages_options; |
|
| 545 | + return $pages_options; |
|
| 546 | 546 | } |
| 547 | 547 | |
| 548 | 548 | function wpinv_header_callback( $args ) { |
| 549 | - if ( ! empty( $args['desc'] ) ) { |
|
| 549 | + if ( ! empty( $args['desc'] ) ) { |
|
| 550 | 550 | echo wp_kses_post( $args['desc'] ); |
| 551 | 551 | } |
| 552 | 552 | } |
| 553 | 553 | |
| 554 | 554 | function wpinv_hidden_callback( $args ) { |
| 555 | 555 | |
| 556 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 557 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 556 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 557 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 558 | 558 | |
| 559 | - if ( isset( $args['set_value'] ) ) { |
|
| 560 | - $value = $args['set_value']; |
|
| 561 | - } |
|
| 559 | + if ( isset( $args['set_value'] ) ) { |
|
| 560 | + $value = $args['set_value']; |
|
| 561 | + } |
|
| 562 | 562 | |
| 563 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
| 564 | - $args['readonly'] = true; |
|
| 565 | - $name = ''; |
|
| 566 | - } else { |
|
| 567 | - $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
| 568 | - } |
|
| 563 | + if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
| 564 | + $args['readonly'] = true; |
|
| 565 | + $name = ''; |
|
| 566 | + } else { |
|
| 567 | + $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
| 568 | + } |
|
| 569 | 569 | |
| 570 | - echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
| 570 | + echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
| 571 | 571 | |
| 572 | 572 | } |
| 573 | 573 | |
@@ -576,12 +576,12 @@ discard block |
||
| 576 | 576 | */ |
| 577 | 577 | function wpinv_checkbox_callback( $args ) { |
| 578 | 578 | |
| 579 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 580 | - $std = wpinv_get_option( $args['id'], $std ); |
|
| 581 | - $id = esc_attr( $args['id'] ); |
|
| 579 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 580 | + $std = wpinv_get_option( $args['id'], $std ); |
|
| 581 | + $id = esc_attr( $args['id'] ); |
|
| 582 | 582 | |
| 583 | - getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
| 584 | - ?> |
|
| 583 | + getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
| 584 | + ?> |
|
| 585 | 585 | <label> |
| 586 | 586 | <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" /> |
| 587 | 587 | <?php echo wp_kses_post( $args['desc'] ); ?> |
@@ -591,75 +591,75 @@ discard block |
||
| 591 | 591 | |
| 592 | 592 | function wpinv_multicheck_callback( $args ) { |
| 593 | 593 | |
| 594 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
| 595 | - $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
| 594 | + $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
| 595 | + $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
| 596 | 596 | |
| 597 | - if ( ! empty( $args['options'] ) ) { |
|
| 597 | + if ( ! empty( $args['options'] ) ) { |
|
| 598 | 598 | |
| 599 | - $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
| 600 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 599 | + $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
| 600 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 601 | 601 | |
| 602 | - echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
| 602 | + echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
| 603 | 603 | foreach ( $args['options'] as $key => $option ) : |
| 604 | - $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
| 605 | - if ( in_array( $sanitize_key, $value ) ) { |
|
| 606 | - $enabled = $sanitize_key; |
|
| 607 | - } else { |
|
| 608 | - $enabled = null; |
|
| 609 | - } |
|
| 610 | - 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 ) . '/> '; |
|
| 611 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
| 612 | - endforeach; |
|
| 613 | - echo '</div>'; |
|
| 614 | - echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 615 | - } |
|
| 604 | + $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
| 605 | + if ( in_array( $sanitize_key, $value ) ) { |
|
| 606 | + $enabled = $sanitize_key; |
|
| 607 | + } else { |
|
| 608 | + $enabled = null; |
|
| 609 | + } |
|
| 610 | + 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 ) . '/> '; |
|
| 611 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
| 612 | + endforeach; |
|
| 613 | + echo '</div>'; |
|
| 614 | + echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 615 | + } |
|
| 616 | 616 | } |
| 617 | 617 | |
| 618 | 618 | function wpinv_payment_icons_callback( $args ) { |
| 619 | 619 | |
| 620 | 620 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 621 | - $value = wpinv_get_option( $args['id'], false ); |
|
| 621 | + $value = wpinv_get_option( $args['id'], false ); |
|
| 622 | 622 | |
| 623 | - if ( ! empty( $args['options'] ) ) { |
|
| 624 | - foreach ( $args['options'] as $key => $option ) { |
|
| 623 | + if ( ! empty( $args['options'] ) ) { |
|
| 624 | + foreach ( $args['options'] as $key => $option ) { |
|
| 625 | 625 | $sanitize_key = wpinv_sanitize_key( $key ); |
| 626 | 626 | |
| 627 | - if ( empty( $value ) ) { |
|
| 628 | - $enabled = $option; |
|
| 629 | - } else { |
|
| 630 | - $enabled = null; |
|
| 631 | - } |
|
| 632 | - |
|
| 633 | - 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;">'; |
|
| 634 | - |
|
| 635 | - 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 ) . '/> '; |
|
| 636 | - |
|
| 637 | - if ( wpinv_string_is_image_url( $key ) ) { |
|
| 638 | - echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 639 | - } else { |
|
| 640 | - $card = strtolower( str_replace( ' ', '', $option ) ); |
|
| 641 | - |
|
| 642 | - if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
| 643 | - $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
| 644 | - } else { |
|
| 645 | - $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
| 646 | - $content_dir = WP_CONTENT_DIR; |
|
| 647 | - |
|
| 648 | - if ( function_exists( 'wp_normalize_path' ) ) { |
|
| 649 | - // Replaces backslashes with forward slashes for Windows systems |
|
| 650 | - $image = wp_normalize_path( $image ); |
|
| 651 | - $content_dir = wp_normalize_path( $content_dir ); |
|
| 652 | - } |
|
| 653 | - |
|
| 654 | - $image = str_replace( $content_dir, content_url(), $image ); |
|
| 655 | - } |
|
| 656 | - |
|
| 657 | - echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 658 | - } |
|
| 659 | - echo wp_kses_post( $option ) . '</label>'; |
|
| 660 | - } |
|
| 661 | - echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 662 | - } |
|
| 627 | + if ( empty( $value ) ) { |
|
| 628 | + $enabled = $option; |
|
| 629 | + } else { |
|
| 630 | + $enabled = null; |
|
| 631 | + } |
|
| 632 | + |
|
| 633 | + 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;">'; |
|
| 634 | + |
|
| 635 | + 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 ) . '/> '; |
|
| 636 | + |
|
| 637 | + if ( wpinv_string_is_image_url( $key ) ) { |
|
| 638 | + echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 639 | + } else { |
|
| 640 | + $card = strtolower( str_replace( ' ', '', $option ) ); |
|
| 641 | + |
|
| 642 | + if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
| 643 | + $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
| 644 | + } else { |
|
| 645 | + $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
| 646 | + $content_dir = WP_CONTENT_DIR; |
|
| 647 | + |
|
| 648 | + if ( function_exists( 'wp_normalize_path' ) ) { |
|
| 649 | + // Replaces backslashes with forward slashes for Windows systems |
|
| 650 | + $image = wp_normalize_path( $image ); |
|
| 651 | + $content_dir = wp_normalize_path( $content_dir ); |
|
| 652 | + } |
|
| 653 | + |
|
| 654 | + $image = str_replace( $content_dir, content_url(), $image ); |
|
| 655 | + } |
|
| 656 | + |
|
| 657 | + echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
| 658 | + } |
|
| 659 | + echo wp_kses_post( $option ) . '</label>'; |
|
| 660 | + } |
|
| 661 | + echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
| 662 | + } |
|
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | /** |
@@ -667,9 +667,9 @@ discard block |
||
| 667 | 667 | */ |
| 668 | 668 | function wpinv_radio_callback( $args ) { |
| 669 | 669 | |
| 670 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 671 | - $std = wpinv_get_option( $args['id'], $std ); |
|
| 672 | - ?> |
|
| 670 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 671 | + $std = wpinv_get_option( $args['id'], $std ); |
|
| 672 | + ?> |
|
| 673 | 673 | <fieldset> |
| 674 | 674 | <ul id="wpinv-settings-<?php echo esc_attr( $args['id'] ); ?>" style="margin-top: 0;"> |
| 675 | 675 | <?php foreach ( $args['options'] as $key => $option ) : ?> |
@@ -683,7 +683,7 @@ discard block |
||
| 683 | 683 | </ul> |
| 684 | 684 | </fieldset> |
| 685 | 685 | <?php |
| 686 | - getpaid_settings_description_callback( $args ); |
|
| 686 | + getpaid_settings_description_callback( $args ); |
|
| 687 | 687 | } |
| 688 | 688 | |
| 689 | 689 | /** |
@@ -691,10 +691,10 @@ discard block |
||
| 691 | 691 | */ |
| 692 | 692 | function getpaid_settings_description_callback( $args ) { |
| 693 | 693 | |
| 694 | - if ( ! empty( $args['desc'] ) ) { |
|
| 695 | - $description = $args['desc']; |
|
| 696 | - echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
| 697 | - } |
|
| 694 | + if ( ! empty( $args['desc'] ) ) { |
|
| 695 | + $description = $args['desc']; |
|
| 696 | + echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
| 697 | + } |
|
| 698 | 698 | |
| 699 | 699 | } |
| 700 | 700 | |
@@ -703,7 +703,7 @@ discard block |
||
| 703 | 703 | */ |
| 704 | 704 | function wpinv_gateways_callback() { |
| 705 | 705 | |
| 706 | - ?> |
|
| 706 | + ?> |
|
| 707 | 707 | </td> |
| 708 | 708 | </tr> |
| 709 | 709 | <tr class="bsui"> |
@@ -717,26 +717,26 @@ discard block |
||
| 717 | 717 | |
| 718 | 718 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 719 | 719 | $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
| 720 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 721 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 720 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 721 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 722 | 722 | |
| 723 | - echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
| 723 | + echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
| 724 | 724 | |
| 725 | - foreach ( $args['options'] as $key => $option ) : |
|
| 725 | + foreach ( $args['options'] as $key => $option ) : |
|
| 726 | 726 | |
| 727 | - echo '<option value="' . esc_attr( $key ) . '" '; |
|
| 727 | + echo '<option value="' . esc_attr( $key ) . '" '; |
|
| 728 | 728 | |
| 729 | - if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
| 729 | + if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
| 730 | 730 | selected( $key, $args['selected'] ); |
| 731 | 731 | } else { |
| 732 | 732 | selected( $key, $value ); |
| 733 | 733 | } |
| 734 | 734 | |
| 735 | - echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
| 736 | - endforeach; |
|
| 735 | + echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
| 736 | + endforeach; |
|
| 737 | 737 | |
| 738 | - echo '</select>'; |
|
| 739 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 738 | + echo '</select>'; |
|
| 739 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 740 | 740 | } |
| 741 | 741 | |
| 742 | 742 | /** |
@@ -747,38 +747,38 @@ discard block |
||
| 747 | 747 | */ |
| 748 | 748 | function wpinv_settings_attrs_helper( $args ) { |
| 749 | 749 | |
| 750 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 751 | - $id = esc_attr( $args['id'] ); |
|
| 752 | - $value = is_scalar( $value ) ? $value : ''; |
|
| 753 | - |
|
| 754 | - $attrs = array( |
|
| 755 | - 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
| 756 | - 'readonly' => ! empty( $args['faux'] ), |
|
| 757 | - 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
| 758 | - 'id' => 'wpinv-settings-' . $args['id'], |
|
| 759 | - 'style' => $args['style'], |
|
| 760 | - 'class' => $args['class'], |
|
| 761 | - 'placeholder' => $args['placeholder'], |
|
| 762 | - 'data-placeholder' => $args['placeholder'], |
|
| 763 | - ); |
|
| 750 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 751 | + $id = esc_attr( $args['id'] ); |
|
| 752 | + $value = is_scalar( $value ) ? $value : ''; |
|
| 753 | + |
|
| 754 | + $attrs = array( |
|
| 755 | + 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
| 756 | + 'readonly' => ! empty( $args['faux'] ), |
|
| 757 | + 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
| 758 | + 'id' => 'wpinv-settings-' . $args['id'], |
|
| 759 | + 'style' => $args['style'], |
|
| 760 | + 'class' => $args['class'], |
|
| 761 | + 'placeholder' => $args['placeholder'], |
|
| 762 | + 'data-placeholder' => $args['placeholder'], |
|
| 763 | + ); |
|
| 764 | 764 | |
| 765 | - if ( ! empty( $args['onchange'] ) ) { |
|
| 766 | - $attrs['onchange'] = $args['onchange']; |
|
| 767 | - } |
|
| 765 | + if ( ! empty( $args['onchange'] ) ) { |
|
| 766 | + $attrs['onchange'] = $args['onchange']; |
|
| 767 | + } |
|
| 768 | 768 | |
| 769 | - foreach ( $attrs as $key => $value ) { |
|
| 769 | + foreach ( $attrs as $key => $value ) { |
|
| 770 | 770 | |
| 771 | - if ( false === $value ) { |
|
| 772 | - continue; |
|
| 773 | - } |
|
| 771 | + if ( false === $value ) { |
|
| 772 | + continue; |
|
| 773 | + } |
|
| 774 | 774 | |
| 775 | - if ( true === $value ) { |
|
| 776 | - echo ' ' . esc_attr( $key ); |
|
| 777 | - } else { |
|
| 778 | - echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
| 779 | - } |
|
| 775 | + if ( true === $value ) { |
|
| 776 | + echo ' ' . esc_attr( $key ); |
|
| 777 | + } else { |
|
| 778 | + echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
| 779 | + } |
|
| 780 | 780 | |
| 781 | - } |
|
| 781 | + } |
|
| 782 | 782 | |
| 783 | 783 | } |
| 784 | 784 | |
@@ -787,7 +787,7 @@ discard block |
||
| 787 | 787 | */ |
| 788 | 788 | function wpinv_text_callback( $args ) { |
| 789 | 789 | |
| 790 | - ?> |
|
| 790 | + ?> |
|
| 791 | 791 | <label style="width: 100%;"> |
| 792 | 792 | <input type="text" <?php wpinv_settings_attrs_helper( $args ); ?>> |
| 793 | 793 | <?php getpaid_settings_description_callback( $args ); ?> |
@@ -801,7 +801,7 @@ discard block |
||
| 801 | 801 | */ |
| 802 | 802 | function wpinv_number_callback( $args ) { |
| 803 | 803 | |
| 804 | - ?> |
|
| 804 | + ?> |
|
| 805 | 805 | <label style="width: 100%;"> |
| 806 | 806 | <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 ); ?>> |
| 807 | 807 | <?php getpaid_settings_description_callback( $args ); ?> |
@@ -813,34 +813,34 @@ discard block |
||
| 813 | 813 | function wpinv_textarea_callback( $args ) { |
| 814 | 814 | |
| 815 | 815 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 816 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 817 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 816 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 817 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 818 | 818 | |
| 819 | 819 | $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
| 820 | 820 | $class = ( isset( $args['class'] ) && ! is_null( $args['class'] ) ) ? $args['class'] : 'large-text'; |
| 821 | 821 | |
| 822 | - 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>'; |
|
| 823 | - echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 822 | + 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>'; |
|
| 823 | + echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 824 | 824 | |
| 825 | 825 | } |
| 826 | 826 | |
| 827 | 827 | function wpinv_password_callback( $args ) { |
| 828 | 828 | |
| 829 | 829 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 830 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 831 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 830 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 831 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 832 | 832 | |
| 833 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 834 | - 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 ) . '"/>'; |
|
| 835 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 833 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 834 | + 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 ) . '"/>'; |
|
| 835 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 836 | 836 | |
| 837 | 837 | } |
| 838 | 838 | |
| 839 | 839 | function wpinv_missing_callback( $args ) { |
| 840 | - printf( |
|
| 841 | - esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
| 842 | - '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
| 843 | - ); |
|
| 840 | + printf( |
|
| 841 | + esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
| 842 | + '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
| 843 | + ); |
|
| 844 | 844 | } |
| 845 | 845 | |
| 846 | 846 | /** |
@@ -848,13 +848,13 @@ discard block |
||
| 848 | 848 | */ |
| 849 | 849 | function wpinv_select_callback( $args ) { |
| 850 | 850 | |
| 851 | - $desc = wp_kses_post( $args['desc'] ); |
|
| 852 | - $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 853 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 854 | - $value = wpinv_get_option( $args['id'], $value ); |
|
| 855 | - $rand = uniqid( 'random_id' ); |
|
| 851 | + $desc = wp_kses_post( $args['desc'] ); |
|
| 852 | + $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
| 853 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 854 | + $value = wpinv_get_option( $args['id'], $value ); |
|
| 855 | + $rand = uniqid( 'random_id' ); |
|
| 856 | 856 | |
| 857 | - ?> |
|
| 857 | + ?> |
|
| 858 | 858 | <label style="width: 100%;"> |
| 859 | 859 | <select <?php wpinv_settings_attrs_helper( $args ); ?> data-allow-clear="true"> |
| 860 | 860 | <?php foreach ( $args['options'] as $option => $name ) : ?> |
@@ -887,50 +887,50 @@ discard block |
||
| 887 | 887 | function wpinv_color_select_callback( $args ) { |
| 888 | 888 | |
| 889 | 889 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 890 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 891 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 890 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 891 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 892 | 892 | |
| 893 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
| 893 | + echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
| 894 | 894 | |
| 895 | - foreach ( $args['options'] as $option => $color ) { |
|
| 896 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
| 897 | - } |
|
| 895 | + foreach ( $args['options'] as $option => $color ) { |
|
| 896 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
| 897 | + } |
|
| 898 | 898 | |
| 899 | - echo '</select>'; |
|
| 900 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 899 | + echo '</select>'; |
|
| 900 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 901 | 901 | |
| 902 | 902 | } |
| 903 | 903 | |
| 904 | 904 | function wpinv_rich_editor_callback( $args ) { |
| 905 | - global $wp_version; |
|
| 905 | + global $wp_version; |
|
| 906 | 906 | |
| 907 | 907 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 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 | |
| 912 | - if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
| 913 | - $value = $std; |
|
| 914 | - } |
|
| 912 | + if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
| 913 | + $value = $std; |
|
| 914 | + } |
|
| 915 | 915 | |
| 916 | - $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
| 916 | + $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
| 917 | 917 | |
| 918 | - echo '<div class="getpaid-settings-editor-input">'; |
|
| 919 | - if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
| 920 | - wp_editor( |
|
| 918 | + echo '<div class="getpaid-settings-editor-input">'; |
|
| 919 | + if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
| 920 | + wp_editor( |
|
| 921 | 921 | stripslashes( $value ), |
| 922 | 922 | 'wpinv_settings_' . esc_attr( $args['id'] ), |
| 923 | 923 | array( |
| 924 | - 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
| 925 | - 'textarea_rows' => absint( $rows ), |
|
| 926 | - 'media_buttons' => false, |
|
| 924 | + 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
| 925 | + 'textarea_rows' => absint( $rows ), |
|
| 926 | + 'media_buttons' => false, |
|
| 927 | 927 | ) |
| 928 | 928 | ); |
| 929 | - } else { |
|
| 930 | - 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>'; |
|
| 931 | - } |
|
| 929 | + } else { |
|
| 930 | + 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>'; |
|
| 931 | + } |
|
| 932 | 932 | |
| 933 | - echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 933 | + echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 934 | 934 | |
| 935 | 935 | } |
| 936 | 936 | |
@@ -938,51 +938,51 @@ discard block |
||
| 938 | 938 | |
| 939 | 939 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 940 | 940 | |
| 941 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 942 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 941 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 942 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 943 | 943 | |
| 944 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 945 | - 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 ) ) . '"/>'; |
|
| 946 | - echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
| 947 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 944 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
| 945 | + 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 ) ) . '"/>'; |
|
| 946 | + echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
| 947 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 948 | 948 | |
| 949 | 949 | } |
| 950 | 950 | |
| 951 | 951 | function wpinv_color_callback( $args ) { |
| 952 | 952 | |
| 953 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 954 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 953 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 954 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 955 | 955 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 956 | 956 | |
| 957 | - 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 ) . '" />'; |
|
| 958 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 957 | + 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 ) . '" />'; |
|
| 958 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 959 | 959 | |
| 960 | 960 | } |
| 961 | 961 | |
| 962 | 962 | function wpinv_country_states_callback( $args ) { |
| 963 | 963 | |
| 964 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 965 | - $value = wpinv_get_option( $args['id'], $std ); |
|
| 964 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
| 965 | + $value = wpinv_get_option( $args['id'], $std ); |
|
| 966 | 966 | |
| 967 | 967 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
| 968 | 968 | |
| 969 | - if ( isset( $args['placeholder'] ) ) { |
|
| 970 | - $placeholder = $args['placeholder']; |
|
| 971 | - } else { |
|
| 972 | - $placeholder = ''; |
|
| 973 | - } |
|
| 969 | + if ( isset( $args['placeholder'] ) ) { |
|
| 970 | + $placeholder = $args['placeholder']; |
|
| 971 | + } else { |
|
| 972 | + $placeholder = ''; |
|
| 973 | + } |
|
| 974 | 974 | |
| 975 | - $states = wpinv_get_country_states(); |
|
| 975 | + $states = wpinv_get_country_states(); |
|
| 976 | 976 | |
| 977 | - $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
| 978 | - 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 ) . '"/>'; |
|
| 977 | + $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
| 978 | + 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 ) . '"/>'; |
|
| 979 | 979 | |
| 980 | - foreach ( $states as $option => $name ) { |
|
| 981 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
| 982 | - } |
|
| 980 | + foreach ( $states as $option => $name ) { |
|
| 981 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
| 982 | + } |
|
| 983 | 983 | |
| 984 | - echo '</select>'; |
|
| 985 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 984 | + echo '</select>'; |
|
| 985 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
| 986 | 986 | |
| 987 | 987 | } |
| 988 | 988 | |
@@ -991,7 +991,7 @@ discard block |
||
| 991 | 991 | */ |
| 992 | 992 | function wpinv_tax_rates_callback() { |
| 993 | 993 | |
| 994 | - ?> |
|
| 994 | + ?> |
|
| 995 | 995 | </td> |
| 996 | 996 | </tr> |
| 997 | 997 | <tr class="bsui"> |
@@ -1007,9 +1007,9 @@ discard block |
||
| 1007 | 1007 | */ |
| 1008 | 1008 | function wpinv_tax_rate_callback( $tax_rate, $key ) { |
| 1009 | 1009 | |
| 1010 | - $key = sanitize_key( $key ); |
|
| 1011 | - $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
| 1012 | - include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
| 1010 | + $key = sanitize_key( $key ); |
|
| 1011 | + $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
| 1012 | + include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
| 1013 | 1013 | |
| 1014 | 1014 | } |
| 1015 | 1015 | |
@@ -1018,7 +1018,7 @@ discard block |
||
| 1018 | 1018 | */ |
| 1019 | 1019 | function wpinv_tax_rules_callback() { |
| 1020 | 1020 | |
| 1021 | - ?> |
|
| 1021 | + ?> |
|
| 1022 | 1022 | </td> |
| 1023 | 1023 | </tr> |
| 1024 | 1024 | <tr class="bsui"> |
@@ -1056,14 +1056,14 @@ discard block |
||
| 1056 | 1056 | <td> |
| 1057 | 1057 | <a href=" |
| 1058 | 1058 | <?php |
| 1059 | - echo esc_url( |
|
| 1060 | - wp_nonce_url( |
|
| 1061 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 1062 | - 'getpaid-nonce', |
|
| 1063 | - 'getpaid-nonce' |
|
| 1064 | - ) |
|
| 1065 | - ); |
|
| 1066 | - ?> |
|
| 1059 | + echo esc_url( |
|
| 1060 | + wp_nonce_url( |
|
| 1061 | + add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
| 1062 | + 'getpaid-nonce', |
|
| 1063 | + 'getpaid-nonce' |
|
| 1064 | + ) |
|
| 1065 | + ); |
|
| 1066 | + ?> |
|
| 1067 | 1067 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1068 | 1068 | </td> |
| 1069 | 1069 | </tr> |
@@ -1075,14 +1075,14 @@ discard block |
||
| 1075 | 1075 | <td> |
| 1076 | 1076 | <a href=" |
| 1077 | 1077 | <?php |
| 1078 | - echo esc_url( |
|
| 1079 | - wp_nonce_url( |
|
| 1080 | - add_query_arg( 'getpaid-admin-action', 'refresh_permalinks' ), |
|
| 1081 | - 'getpaid-nonce', |
|
| 1082 | - 'getpaid-nonce' |
|
| 1083 | - ) |
|
| 1084 | - ); |
|
| 1085 | - ?> |
|
| 1078 | + echo esc_url( |
|
| 1079 | + wp_nonce_url( |
|
| 1080 | + add_query_arg( 'getpaid-admin-action', 'refresh_permalinks' ), |
|
| 1081 | + 'getpaid-nonce', |
|
| 1082 | + 'getpaid-nonce' |
|
| 1083 | + ) |
|
| 1084 | + ); |
|
| 1085 | + ?> |
|
| 1086 | 1086 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1087 | 1087 | </td> |
| 1088 | 1088 | </tr> |
@@ -1094,14 +1094,14 @@ discard block |
||
| 1094 | 1094 | <td> |
| 1095 | 1095 | <a href=" |
| 1096 | 1096 | <?php |
| 1097 | - echo esc_url( |
|
| 1098 | - wp_nonce_url( |
|
| 1099 | - add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
| 1100 | - 'getpaid-nonce', |
|
| 1101 | - 'getpaid-nonce' |
|
| 1102 | - ) |
|
| 1103 | - ); |
|
| 1104 | - ?> |
|
| 1097 | + echo esc_url( |
|
| 1098 | + wp_nonce_url( |
|
| 1099 | + add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
| 1100 | + 'getpaid-nonce', |
|
| 1101 | + 'getpaid-nonce' |
|
| 1102 | + ) |
|
| 1103 | + ); |
|
| 1104 | + ?> |
|
| 1105 | 1105 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1106 | 1106 | </td> |
| 1107 | 1107 | </tr> |
@@ -1113,14 +1113,14 @@ discard block |
||
| 1113 | 1113 | <td> |
| 1114 | 1114 | <a href=" |
| 1115 | 1115 | <?php |
| 1116 | - echo esc_url( |
|
| 1117 | - wp_nonce_url( |
|
| 1118 | - add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
| 1119 | - 'getpaid-nonce', |
|
| 1120 | - 'getpaid-nonce' |
|
| 1121 | - ) |
|
| 1122 | - ); |
|
| 1123 | - ?> |
|
| 1116 | + echo esc_url( |
|
| 1117 | + wp_nonce_url( |
|
| 1118 | + add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
| 1119 | + 'getpaid-nonce', |
|
| 1120 | + 'getpaid-nonce' |
|
| 1121 | + ) |
|
| 1122 | + ); |
|
| 1123 | + ?> |
|
| 1124 | 1124 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1125 | 1125 | </td> |
| 1126 | 1126 | </tr> |
@@ -1133,14 +1133,14 @@ discard block |
||
| 1133 | 1133 | <td> |
| 1134 | 1134 | <a href=" |
| 1135 | 1135 | <?php |
| 1136 | - echo esc_url( |
|
| 1137 | - wp_nonce_url( |
|
| 1138 | - add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
| 1139 | - 'getpaid-nonce', |
|
| 1140 | - 'getpaid-nonce' |
|
| 1141 | - ) |
|
| 1142 | - ); |
|
| 1143 | - ?> |
|
| 1136 | + echo esc_url( |
|
| 1137 | + wp_nonce_url( |
|
| 1138 | + add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
| 1139 | + 'getpaid-nonce', |
|
| 1140 | + 'getpaid-nonce' |
|
| 1141 | + ) |
|
| 1142 | + ); |
|
| 1143 | + ?> |
|
| 1144 | 1144 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
| 1145 | 1145 | </td> |
| 1146 | 1146 | </tr> |
@@ -1153,8 +1153,8 @@ discard block |
||
| 1153 | 1153 | <td> |
| 1154 | 1154 | <a href=" |
| 1155 | 1155 | <?php |
| 1156 | - echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
| 1157 | - ?> |
|
| 1156 | + echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
| 1157 | + ?> |
|
| 1158 | 1158 | " class="button button-primary"><?php esc_html_e( 'Launch', 'invoicing' ); ?></a> |
| 1159 | 1159 | </td> |
| 1160 | 1160 | </tr> |
@@ -1168,19 +1168,19 @@ discard block |
||
| 1168 | 1168 | |
| 1169 | 1169 | |
| 1170 | 1170 | function wpinv_descriptive_text_callback( $args ) { |
| 1171 | - echo wp_kses_post( $args['desc'] ); |
|
| 1171 | + echo wp_kses_post( $args['desc'] ); |
|
| 1172 | 1172 | } |
| 1173 | 1173 | |
| 1174 | 1174 | function wpinv_raw_html_callback( $args ) { |
| 1175 | - echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
| 1175 | + echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
| 1176 | 1176 | } |
| 1177 | 1177 | |
| 1178 | 1178 | function wpinv_hook_callback( $args ) { |
| 1179 | - do_action( 'wpinv_' . $args['id'], $args ); |
|
| 1179 | + do_action( 'wpinv_' . $args['id'], $args ); |
|
| 1180 | 1180 | } |
| 1181 | 1181 | |
| 1182 | 1182 | function wpinv_set_settings_cap() { |
| 1183 | - return wpinv_get_capability(); |
|
| 1183 | + return wpinv_get_capability(); |
|
| 1184 | 1184 | } |
| 1185 | 1185 | add_filter( 'option_page_capability_wpinv_settings', 'wpinv_set_settings_cap' ); |
| 1186 | 1186 | |
@@ -1206,47 +1206,47 @@ discard block |
||
| 1206 | 1206 | * @return array |
| 1207 | 1207 | */ |
| 1208 | 1208 | function wpinv_get_email_merge_tags( $subscription = false ) { |
| 1209 | - $merge_tags = array( |
|
| 1210 | - '{site_title}' => __( 'Site Title', 'invoicing' ), |
|
| 1211 | - '{name}' => __( "Customer's full name", 'invoicing' ), |
|
| 1212 | - '{first_name}' => __( "Customer's first name", 'invoicing' ), |
|
| 1213 | - '{last_name}' => __( "Customer's last name", 'invoicing' ), |
|
| 1214 | - '{email}' => __( "Customer's email address", 'invoicing' ), |
|
| 1215 | - '{invoice_number}' => __( 'The invoice number', 'invoicing' ), |
|
| 1216 | - '{invoice_currency}' => __( 'The invoice currency', 'invoicing' ), |
|
| 1217 | - '{invoice_total}' => __( 'The invoice total', 'invoicing' ), |
|
| 1218 | - '{invoice_link}' => __( 'The invoice link', 'invoicing' ), |
|
| 1219 | - '{invoice_pay_link}' => __( 'The payment link', 'invoicing' ), |
|
| 1220 | - '{invoice_receipt_link}' => __( 'The receipt link', 'invoicing' ), |
|
| 1221 | - '{invoice_date}' => __( 'The date the invoice was created', 'invoicing' ), |
|
| 1222 | - '{invoice_due_date}' => __( 'The date the invoice is due', 'invoicing' ), |
|
| 1223 | - '{date}' => __( "Today's date", 'invoicing' ), |
|
| 1224 | - '{is_was}' => __( 'If due date of invoice is past, displays "was" otherwise displays "is"', 'invoicing' ), |
|
| 1225 | - '{invoice_label}' => __( 'Invoices/quotes singular name. Ex: Invoice/Quote', 'invoicing' ), |
|
| 1226 | - '{invoice_quote}' => __( 'Invoices/quotes singular name in small letters. Ex: invoice/quote', 'invoicing' ), |
|
| 1227 | - '{invoice_description}' => __( 'The description of the invoice', 'invoicing' ), |
|
| 1228 | - ); |
|
| 1229 | - |
|
| 1230 | - if ( $subscription ) { |
|
| 1231 | - $merge_tags = array_merge( |
|
| 1232 | - $merge_tags, |
|
| 1233 | - array( |
|
| 1234 | - '{subscription_renewal_date}' => __( 'The next renewal date of the subscription', 'invoicing' ), |
|
| 1235 | - '{subscription_created}' => __( "The subscription's creation date", 'invoicing' ), |
|
| 1236 | - '{subscription_status}' => __( "The subscription's status", 'invoicing' ), |
|
| 1237 | - '{subscription_profile_id}' => __( "The subscription's remote profile id", 'invoicing' ), |
|
| 1238 | - '{subscription_id}' => __( "The subscription's id", 'invoicing' ), |
|
| 1239 | - '{subscription_recurring_amount}' => __( 'The renewal amount of the subscription', 'invoicing' ), |
|
| 1240 | - '{subscription_initial_amount}' => __( 'The initial amount of the subscription', 'invoicing' ), |
|
| 1241 | - '{subscription_recurring_period}' => __( 'The recurring period of the subscription (e.g 1 year)', 'invoicing' ), |
|
| 1242 | - '{subscription_bill_times}' => __( 'The maximum number of times the subscription can be renewed', 'invoicing' ), |
|
| 1243 | - '{subscription_url}' => __( 'The URL to manage a subscription', 'invoicing' ), |
|
| 1244 | - '{subscription_name}' => __( 'The name of the recurring item', 'invoicing' ), |
|
| 1245 | - ) |
|
| 1246 | - ); |
|
| 1247 | - } |
|
| 1248 | - |
|
| 1249 | - return $merge_tags; |
|
| 1209 | + $merge_tags = array( |
|
| 1210 | + '{site_title}' => __( 'Site Title', 'invoicing' ), |
|
| 1211 | + '{name}' => __( "Customer's full name", 'invoicing' ), |
|
| 1212 | + '{first_name}' => __( "Customer's first name", 'invoicing' ), |
|
| 1213 | + '{last_name}' => __( "Customer's last name", 'invoicing' ), |
|
| 1214 | + '{email}' => __( "Customer's email address", 'invoicing' ), |
|
| 1215 | + '{invoice_number}' => __( 'The invoice number', 'invoicing' ), |
|
| 1216 | + '{invoice_currency}' => __( 'The invoice currency', 'invoicing' ), |
|
| 1217 | + '{invoice_total}' => __( 'The invoice total', 'invoicing' ), |
|
| 1218 | + '{invoice_link}' => __( 'The invoice link', 'invoicing' ), |
|
| 1219 | + '{invoice_pay_link}' => __( 'The payment link', 'invoicing' ), |
|
| 1220 | + '{invoice_receipt_link}' => __( 'The receipt link', 'invoicing' ), |
|
| 1221 | + '{invoice_date}' => __( 'The date the invoice was created', 'invoicing' ), |
|
| 1222 | + '{invoice_due_date}' => __( 'The date the invoice is due', 'invoicing' ), |
|
| 1223 | + '{date}' => __( "Today's date", 'invoicing' ), |
|
| 1224 | + '{is_was}' => __( 'If due date of invoice is past, displays "was" otherwise displays "is"', 'invoicing' ), |
|
| 1225 | + '{invoice_label}' => __( 'Invoices/quotes singular name. Ex: Invoice/Quote', 'invoicing' ), |
|
| 1226 | + '{invoice_quote}' => __( 'Invoices/quotes singular name in small letters. Ex: invoice/quote', 'invoicing' ), |
|
| 1227 | + '{invoice_description}' => __( 'The description of the invoice', 'invoicing' ), |
|
| 1228 | + ); |
|
| 1229 | + |
|
| 1230 | + if ( $subscription ) { |
|
| 1231 | + $merge_tags = array_merge( |
|
| 1232 | + $merge_tags, |
|
| 1233 | + array( |
|
| 1234 | + '{subscription_renewal_date}' => __( 'The next renewal date of the subscription', 'invoicing' ), |
|
| 1235 | + '{subscription_created}' => __( "The subscription's creation date", 'invoicing' ), |
|
| 1236 | + '{subscription_status}' => __( "The subscription's status", 'invoicing' ), |
|
| 1237 | + '{subscription_profile_id}' => __( "The subscription's remote profile id", 'invoicing' ), |
|
| 1238 | + '{subscription_id}' => __( "The subscription's id", 'invoicing' ), |
|
| 1239 | + '{subscription_recurring_amount}' => __( 'The renewal amount of the subscription', 'invoicing' ), |
|
| 1240 | + '{subscription_initial_amount}' => __( 'The initial amount of the subscription', 'invoicing' ), |
|
| 1241 | + '{subscription_recurring_period}' => __( 'The recurring period of the subscription (e.g 1 year)', 'invoicing' ), |
|
| 1242 | + '{subscription_bill_times}' => __( 'The maximum number of times the subscription can be renewed', 'invoicing' ), |
|
| 1243 | + '{subscription_url}' => __( 'The URL to manage a subscription', 'invoicing' ), |
|
| 1244 | + '{subscription_name}' => __( 'The name of the recurring item', 'invoicing' ), |
|
| 1245 | + ) |
|
| 1246 | + ); |
|
| 1247 | + } |
|
| 1248 | + |
|
| 1249 | + return $merge_tags; |
|
| 1250 | 1250 | } |
| 1251 | 1251 | |
| 1252 | 1252 | |
@@ -1258,28 +1258,28 @@ discard block |
||
| 1258 | 1258 | * @return string |
| 1259 | 1259 | */ |
| 1260 | 1260 | function wpinv_get_merge_tags_help_text( $subscription = false ) { |
| 1261 | - $merge_tags = wpinv_get_email_merge_tags( $subscription ); |
|
| 1261 | + $merge_tags = wpinv_get_email_merge_tags( $subscription ); |
|
| 1262 | 1262 | |
| 1263 | - $output = '<div class="bsui">'; |
|
| 1263 | + $output = '<div class="bsui">'; |
|
| 1264 | 1264 | |
| 1265 | - $link = sprintf( |
|
| 1266 | - '<strong class="getpaid-merge-tags text-primary" role="button">%s</strong>', |
|
| 1267 | - esc_html__( 'View available merge tags.', 'invoicing' ) |
|
| 1268 | - ); |
|
| 1265 | + $link = sprintf( |
|
| 1266 | + '<strong class="getpaid-merge-tags text-primary" role="button">%s</strong>', |
|
| 1267 | + esc_html__( 'View available merge tags.', 'invoicing' ) |
|
| 1268 | + ); |
|
| 1269 | 1269 | |
| 1270 | - $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
| 1270 | + $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
| 1271 | 1271 | |
| 1272 | - $output .= "$description $link"; |
|
| 1272 | + $output .= "$description $link"; |
|
| 1273 | 1273 | |
| 1274 | - $output .= '<div class="getpaid-merge-tags-content mt-2 p-1 d-none">'; |
|
| 1275 | - $output .= '<p class="mb-2">' . esc_html__( 'The following wildcards can be used in email subjects, heading and content:', 'invoicing' ) . '</p>'; |
|
| 1274 | + $output .= '<div class="getpaid-merge-tags-content mt-2 p-1 d-none">'; |
|
| 1275 | + $output .= '<p class="mb-2">' . esc_html__( 'The following wildcards can be used in email subjects, heading and content:', 'invoicing' ) . '</p>'; |
|
| 1276 | 1276 | |
| 1277 | - $output .= '<ul class="p-0 m-0">'; |
|
| 1278 | - foreach($merge_tags as $tag => $tag_description) { |
|
| 1279 | - $output .= "<li class='mb-2'><strong class='text-dark'>$tag</strong> — $tag_description</li>"; |
|
| 1280 | - } |
|
| 1277 | + $output .= '<ul class="p-0 m-0">'; |
|
| 1278 | + foreach($merge_tags as $tag => $tag_description) { |
|
| 1279 | + $output .= "<li class='mb-2'><strong class='text-dark'>$tag</strong> — $tag_description</li>"; |
|
| 1280 | + } |
|
| 1281 | 1281 | |
| 1282 | - $output .= '</ul></div></div>'; |
|
| 1282 | + $output .= '</ul></div></div>'; |
|
| 1283 | 1283 | |
| 1284 | - return $output; |
|
| 1284 | + return $output; |
|
| 1285 | 1285 | } |