@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | // MUST have WordPress. |
10 | -if ( !defined( 'WPINC' ) ) { |
|
10 | +if (!defined('WPINC')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
@@ -24,40 +24,40 @@ discard block |
||
24 | 24 | * @param Array $assoc_args Key value arguments stored in associated array format. |
25 | 25 | * @since 1.0.13 |
26 | 26 | */ |
27 | - public function insert_invoice( $args, $assoc_args ) { |
|
27 | + public function insert_invoice($args, $assoc_args) { |
|
28 | 28 | |
29 | 29 | // Fetch invoice data from the args |
30 | - $invoice_data = wp_unslash( $assoc_args ); |
|
30 | + $invoice_data = wp_unslash($assoc_args); |
|
31 | 31 | |
32 | 32 | // Abort if no invoice data is provided |
33 | - if( empty( $invoice_data ) ) { |
|
34 | - return WP_CLI::error( __( 'Invoice data not provided', 'invoicing' ) ); |
|
33 | + if (empty($invoice_data)) { |
|
34 | + return WP_CLI::error(__('Invoice data not provided', 'invoicing')); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | //Cart details |
38 | - if( !empty( $invoice_data['cart_details'] ) ) { |
|
39 | - $invoice_data['cart_details'] = json_decode( $invoice_data['cart_details'], true ); |
|
38 | + if (!empty($invoice_data['cart_details'])) { |
|
39 | + $invoice_data['cart_details'] = json_decode($invoice_data['cart_details'], true); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | //User details |
43 | - if( !empty( $invoice_data['user_info'] ) ) { |
|
44 | - $invoice_data['user_info'] = json_decode( $invoice_data['user_info'], true ); |
|
43 | + if (!empty($invoice_data['user_info'])) { |
|
44 | + $invoice_data['user_info'] = json_decode($invoice_data['user_info'], true); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | //Payment info |
48 | - if( !empty( $invoice_data['payment_details'] ) ) { |
|
49 | - $invoice_data['payment_details'] = json_decode( $invoice_data['payment_details'], true ); |
|
48 | + if (!empty($invoice_data['payment_details'])) { |
|
49 | + $invoice_data['payment_details'] = json_decode($invoice_data['payment_details'], true); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | // Try creating the invoice |
53 | - $invoice = wpinv_insert_invoice( $invoice_data, true ); |
|
53 | + $invoice = wpinv_insert_invoice($invoice_data, true); |
|
54 | 54 | |
55 | - if ( is_wp_error( $invoice ) ) { |
|
56 | - return WP_CLI::error( $invoice->get_error_message() ); |
|
55 | + if (is_wp_error($invoice)) { |
|
56 | + return WP_CLI::error($invoice->get_error_message()); |
|
57 | 57 | } |
58 | 58 | |
59 | - $message = sprintf( __( 'Invoice %s created', 'invoicing' ), $invoice->ID ); |
|
60 | - WP_CLI::success( $message ); |
|
59 | + $message = sprintf(__('Invoice %s created', 'invoicing'), $invoice->ID); |
|
60 | + WP_CLI::success($message); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 |
@@ -7,67 +7,67 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | // MUST have WordPress. |
10 | -if ( !defined( 'WPINC' ) ) { |
|
11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
10 | +if (!defined('WPINC')) { |
|
11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | |
15 | 15 | function wpinv_get_default_country() { |
16 | - $country = wpinv_get_option( 'default_country', 'UK' ); |
|
16 | + $country = wpinv_get_option('default_country', 'UK'); |
|
17 | 17 | |
18 | - return apply_filters( 'wpinv_default_country', $country ); |
|
18 | + return apply_filters('wpinv_default_country', $country); |
|
19 | 19 | } |
20 | 20 | |
21 | -function wpinv_is_base_country( $country ) { |
|
21 | +function wpinv_is_base_country($country) { |
|
22 | 22 | $base_country = wpinv_get_default_country(); |
23 | 23 | |
24 | - if ( $base_country === 'UK' ) { |
|
24 | + if ($base_country === 'UK') { |
|
25 | 25 | $base_country = 'GB'; |
26 | 26 | } |
27 | - if ( $country == 'UK' ) { |
|
27 | + if ($country == 'UK') { |
|
28 | 28 | $country = 'GB'; |
29 | 29 | } |
30 | 30 | |
31 | - return ( $country && $country === $base_country ) ? true : false; |
|
31 | + return ($country && $country === $base_country) ? true : false; |
|
32 | 32 | } |
33 | 33 | |
34 | -function wpinv_country_name( $country_code = '' ) { |
|
34 | +function wpinv_country_name($country_code = '') { |
|
35 | 35 | $countries = wpinv_get_country_list(); |
36 | 36 | $country_code = $country_code == 'UK' ? 'GB' : $country_code; |
37 | - $country = isset( $countries[$country_code] ) ? $countries[$country_code] : $country_code; |
|
37 | + $country = isset($countries[$country_code]) ? $countries[$country_code] : $country_code; |
|
38 | 38 | |
39 | - return apply_filters( 'wpinv_country_name', $country, $country_code ); |
|
39 | + return apply_filters('wpinv_country_name', $country, $country_code); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | function wpinv_get_default_state() { |
43 | - $state = wpinv_get_option( 'default_state', false ); |
|
43 | + $state = wpinv_get_option('default_state', false); |
|
44 | 44 | |
45 | - return apply_filters( 'wpinv_default_state', $state ); |
|
45 | + return apply_filters('wpinv_default_state', $state); |
|
46 | 46 | } |
47 | 47 | |
48 | -function wpinv_state_name( $state_code = '', $country_code = '' ) { |
|
48 | +function wpinv_state_name($state_code = '', $country_code = '') { |
|
49 | 49 | $state = $state_code; |
50 | 50 | |
51 | - if ( !empty( $country_code ) ) { |
|
52 | - $states = wpinv_get_country_states( $country_code ); |
|
51 | + if (!empty($country_code)) { |
|
52 | + $states = wpinv_get_country_states($country_code); |
|
53 | 53 | |
54 | - $state = !empty( $states ) && isset( $states[$state_code] ) ? $states[$state_code] : $state; |
|
54 | + $state = !empty($states) && isset($states[$state_code]) ? $states[$state_code] : $state; |
|
55 | 55 | } |
56 | 56 | |
57 | - return apply_filters( 'wpinv_state_name', $state, $state_code, $country_code ); |
|
57 | + return apply_filters('wpinv_state_name', $state, $state_code, $country_code); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | function wpinv_store_address() { |
61 | - $address = wpinv_get_option( 'store_address', '' ); |
|
61 | + $address = wpinv_get_option('store_address', ''); |
|
62 | 62 | |
63 | - return apply_filters( 'wpinv_store_address', $address ); |
|
63 | + return apply_filters('wpinv_store_address', $address); |
|
64 | 64 | } |
65 | 65 | |
66 | -function wpinv_get_user_address( $user_id = 0, $with_default = true ) { |
|
66 | +function wpinv_get_user_address($user_id = 0, $with_default = true) { |
|
67 | 67 | global $wpi_userID; |
68 | 68 | |
69 | - if( empty( $user_id ) ) { |
|
70 | - $user_id = !empty( $wpi_userID ) ? $wpi_userID : get_current_user_id(); |
|
69 | + if (empty($user_id)) { |
|
70 | + $user_id = !empty($wpi_userID) ? $wpi_userID : get_current_user_id(); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | $address_fields = array( |
@@ -85,36 +85,36 @@ discard block |
||
85 | 85 | 'zip', |
86 | 86 | ); |
87 | 87 | |
88 | - $user_info = get_userdata( $user_id ); |
|
88 | + $user_info = get_userdata($user_id); |
|
89 | 89 | |
90 | 90 | $address = array(); |
91 | 91 | $address['user_id'] = $user_id; |
92 | - $address['email'] = !empty( $user_info ) ? $user_info->user_email : ''; |
|
93 | - foreach ( $address_fields as $field ) { |
|
94 | - $address[$field] = get_user_meta( $user_id, '_wpinv_' . $field, true ); |
|
92 | + $address['email'] = !empty($user_info) ? $user_info->user_email : ''; |
|
93 | + foreach ($address_fields as $field) { |
|
94 | + $address[$field] = get_user_meta($user_id, '_wpinv_' . $field, true); |
|
95 | 95 | } |
96 | 96 | |
97 | - if ( !empty( $user_info ) ) { |
|
98 | - if( empty( $address['first_name'] ) ) |
|
97 | + if (!empty($user_info)) { |
|
98 | + if (empty($address['first_name'])) |
|
99 | 99 | $address['first_name'] = $user_info->first_name; |
100 | 100 | |
101 | - if( empty( $address['last_name'] ) ) |
|
101 | + if (empty($address['last_name'])) |
|
102 | 102 | $address['last_name'] = $user_info->last_name; |
103 | 103 | } |
104 | 104 | |
105 | - $address['name'] = trim( trim( $address['first_name'] . ' ' . $address['last_name'] ), "," ); |
|
105 | + $address['name'] = trim(trim($address['first_name'] . ' ' . $address['last_name']), ","); |
|
106 | 106 | |
107 | - if( empty( $address['state'] ) && $with_default ) |
|
107 | + if (empty($address['state']) && $with_default) |
|
108 | 108 | $address['state'] = wpinv_get_default_state(); |
109 | 109 | |
110 | - if( empty( $address['country'] ) && $with_default ) |
|
110 | + if (empty($address['country']) && $with_default) |
|
111 | 111 | $address['country'] = wpinv_get_default_country(); |
112 | 112 | |
113 | 113 | |
114 | 114 | return $address; |
115 | 115 | } |
116 | 116 | |
117 | -function wpinv_get_country_list( $first_empty = false ) { |
|
117 | +function wpinv_get_country_list($first_empty = false) { |
|
118 | 118 | $countries = array( |
119 | 119 | 'US' => __('United States', 'invoicing'), |
120 | 120 | 'CA' => __('Canada', 'invoicing'), |
@@ -370,23 +370,23 @@ discard block |
||
370 | 370 | 'ZW' => __('Zimbabwe', 'invoicing'), |
371 | 371 | ); |
372 | 372 | |
373 | - if ( $first_empty ) { |
|
374 | - $countries = array_merge( array( '' => '' ), $countries ); |
|
373 | + if ($first_empty) { |
|
374 | + $countries = array_merge(array('' => ''), $countries); |
|
375 | 375 | } |
376 | 376 | |
377 | - $countries = apply_filters( 'wpinv_countries', $countries ); |
|
377 | + $countries = apply_filters('wpinv_countries', $countries); |
|
378 | 378 | |
379 | 379 | asort($countries); |
380 | 380 | |
381 | 381 | return $countries; |
382 | 382 | } |
383 | 383 | |
384 | -function wpinv_get_country_states( $country = null, $first_empty = false ) { |
|
385 | - if ( empty( $country ) ) { |
|
384 | +function wpinv_get_country_states($country = null, $first_empty = false) { |
|
385 | + if (empty($country)) { |
|
386 | 386 | $country = wpinv_get_default_country(); |
387 | 387 | } |
388 | 388 | |
389 | - switch( $country ) { |
|
389 | + switch ($country) { |
|
390 | 390 | case 'US' : |
391 | 391 | $states = wpinv_get_us_states_list(); |
392 | 392 | break; |
@@ -461,11 +461,11 @@ discard block |
||
461 | 461 | break; |
462 | 462 | } |
463 | 463 | |
464 | - if ( !empty( $states ) && $first_empty ) { |
|
465 | - $states = array_merge( array( '' => '' ), $states ); |
|
464 | + if (!empty($states) && $first_empty) { |
|
465 | + $states = array_merge(array('' => ''), $states); |
|
466 | 466 | } |
467 | 467 | |
468 | - $states = apply_filters( 'wpinv_country_states', $states, $country ); |
|
468 | + $states = apply_filters('wpinv_country_states', $states, $country); |
|
469 | 469 | |
470 | 470 | asort($states); |
471 | 471 | |
@@ -474,1087 +474,1087 @@ discard block |
||
474 | 474 | |
475 | 475 | function wpinv_get_us_states_list() { |
476 | 476 | $states = array( |
477 | - 'AL' => __( 'Alabama', 'invoicing' ), |
|
478 | - 'AK' => __( 'Alaska', 'invoicing' ), |
|
479 | - 'AZ' => __( 'Arizona', 'invoicing' ), |
|
480 | - 'AR' => __( 'Arkansas', 'invoicing' ), |
|
481 | - 'CA' => __( 'California', 'invoicing' ), |
|
482 | - 'CO' => __( 'Colorado', 'invoicing' ), |
|
483 | - 'CT' => __( 'Connecticut', 'invoicing' ), |
|
484 | - 'DE' => __( 'Delaware', 'invoicing' ), |
|
485 | - 'DC' => __( 'District of Columbia', 'invoicing' ), |
|
486 | - 'FL' => __( 'Florida', 'invoicing' ), |
|
487 | - 'GA' => __( 'Georgia', 'invoicing' ), |
|
488 | - 'HI' => __( 'Hawaii', 'invoicing' ), |
|
489 | - 'ID' => __( 'Idaho', 'invoicing' ), |
|
490 | - 'IL' => __( 'Illinois', 'invoicing' ), |
|
491 | - 'IN' => __( 'Indiana', 'invoicing' ), |
|
492 | - 'IA' => __( 'Iowa', 'invoicing' ), |
|
493 | - 'KS' => __( 'Kansas', 'invoicing' ), |
|
494 | - 'KY' => __( 'Kentucky', 'invoicing' ), |
|
495 | - 'LA' => __( 'Louisiana', 'invoicing' ), |
|
496 | - 'ME' => __( 'Maine', 'invoicing' ), |
|
497 | - 'MD' => __( 'Maryland', 'invoicing' ), |
|
498 | - 'MA' => __( 'Massachusetts', 'invoicing' ), |
|
499 | - 'MI' => __( 'Michigan', 'invoicing' ), |
|
500 | - 'MN' => __( 'Minnesota', 'invoicing' ), |
|
501 | - 'MS' => __( 'Mississippi', 'invoicing' ), |
|
502 | - 'MO' => __( 'Missouri', 'invoicing' ), |
|
503 | - 'MT' => __( 'Montana', 'invoicing' ), |
|
504 | - 'NE' => __( 'Nebraska', 'invoicing' ), |
|
505 | - 'NV' => __( 'Nevada', 'invoicing' ), |
|
506 | - 'NH' => __( 'New Hampshire', 'invoicing' ), |
|
507 | - 'NJ' => __( 'New Jersey', 'invoicing' ), |
|
508 | - 'NM' => __( 'New Mexico', 'invoicing' ), |
|
509 | - 'NY' => __( 'New York', 'invoicing' ), |
|
510 | - 'NC' => __( 'North Carolina', 'invoicing' ), |
|
511 | - 'ND' => __( 'North Dakota', 'invoicing' ), |
|
512 | - 'OH' => __( 'Ohio', 'invoicing' ), |
|
513 | - 'OK' => __( 'Oklahoma', 'invoicing' ), |
|
514 | - 'OR' => __( 'Oregon', 'invoicing' ), |
|
515 | - 'PA' => __( 'Pennsylvania', 'invoicing' ), |
|
516 | - 'RI' => __( 'Rhode Island', 'invoicing' ), |
|
517 | - 'SC' => __( 'South Carolina', 'invoicing' ), |
|
518 | - 'SD' => __( 'South Dakota', 'invoicing' ), |
|
519 | - 'TN' => __( 'Tennessee', 'invoicing' ), |
|
520 | - 'TX' => __( 'Texas', 'invoicing' ), |
|
521 | - 'UT' => __( 'Utah', 'invoicing' ), |
|
522 | - 'VT' => __( 'Vermont', 'invoicing' ), |
|
523 | - 'VA' => __( 'Virginia', 'invoicing' ), |
|
524 | - 'WA' => __( 'Washington', 'invoicing' ), |
|
525 | - 'WV' => __( 'West Virginia', 'invoicing' ), |
|
526 | - 'WI' => __( 'Wisconsin', 'invoicing' ), |
|
527 | - 'WY' => __( 'Wyoming', 'invoicing' ), |
|
528 | - 'AS' => __( 'American Samoa', 'invoicing' ), |
|
529 | - 'CZ' => __( 'Canal Zone', 'invoicing' ), |
|
530 | - 'CM' => __( 'Commonwealth of the Northern Mariana Islands', 'invoicing' ), |
|
531 | - 'FM' => __( 'Federated States of Micronesia', 'invoicing' ), |
|
532 | - 'GU' => __( 'Guam', 'invoicing' ), |
|
533 | - 'MH' => __( 'Marshall Islands', 'invoicing' ), |
|
534 | - 'MP' => __( 'Northern Mariana Islands', 'invoicing' ), |
|
535 | - 'PW' => __( 'Palau', 'invoicing' ), |
|
536 | - 'PI' => __( 'Philippine Islands', 'invoicing' ), |
|
537 | - 'PR' => __( 'Puerto Rico', 'invoicing' ), |
|
538 | - 'TT' => __( 'Trust Territory of the Pacific Islands', 'invoicing' ), |
|
539 | - 'VI' => __( 'Virgin Islands', 'invoicing' ), |
|
540 | - 'AA' => __( 'Armed Forces - Americas', 'invoicing' ), |
|
541 | - 'AE' => __( 'Armed Forces - Europe, Canada, Middle East, Africa', 'invoicing' ), |
|
542 | - 'AP' => __( 'Armed Forces - Pacific', 'invoicing' ) |
|
477 | + 'AL' => __('Alabama', 'invoicing'), |
|
478 | + 'AK' => __('Alaska', 'invoicing'), |
|
479 | + 'AZ' => __('Arizona', 'invoicing'), |
|
480 | + 'AR' => __('Arkansas', 'invoicing'), |
|
481 | + 'CA' => __('California', 'invoicing'), |
|
482 | + 'CO' => __('Colorado', 'invoicing'), |
|
483 | + 'CT' => __('Connecticut', 'invoicing'), |
|
484 | + 'DE' => __('Delaware', 'invoicing'), |
|
485 | + 'DC' => __('District of Columbia', 'invoicing'), |
|
486 | + 'FL' => __('Florida', 'invoicing'), |
|
487 | + 'GA' => __('Georgia', 'invoicing'), |
|
488 | + 'HI' => __('Hawaii', 'invoicing'), |
|
489 | + 'ID' => __('Idaho', 'invoicing'), |
|
490 | + 'IL' => __('Illinois', 'invoicing'), |
|
491 | + 'IN' => __('Indiana', 'invoicing'), |
|
492 | + 'IA' => __('Iowa', 'invoicing'), |
|
493 | + 'KS' => __('Kansas', 'invoicing'), |
|
494 | + 'KY' => __('Kentucky', 'invoicing'), |
|
495 | + 'LA' => __('Louisiana', 'invoicing'), |
|
496 | + 'ME' => __('Maine', 'invoicing'), |
|
497 | + 'MD' => __('Maryland', 'invoicing'), |
|
498 | + 'MA' => __('Massachusetts', 'invoicing'), |
|
499 | + 'MI' => __('Michigan', 'invoicing'), |
|
500 | + 'MN' => __('Minnesota', 'invoicing'), |
|
501 | + 'MS' => __('Mississippi', 'invoicing'), |
|
502 | + 'MO' => __('Missouri', 'invoicing'), |
|
503 | + 'MT' => __('Montana', 'invoicing'), |
|
504 | + 'NE' => __('Nebraska', 'invoicing'), |
|
505 | + 'NV' => __('Nevada', 'invoicing'), |
|
506 | + 'NH' => __('New Hampshire', 'invoicing'), |
|
507 | + 'NJ' => __('New Jersey', 'invoicing'), |
|
508 | + 'NM' => __('New Mexico', 'invoicing'), |
|
509 | + 'NY' => __('New York', 'invoicing'), |
|
510 | + 'NC' => __('North Carolina', 'invoicing'), |
|
511 | + 'ND' => __('North Dakota', 'invoicing'), |
|
512 | + 'OH' => __('Ohio', 'invoicing'), |
|
513 | + 'OK' => __('Oklahoma', 'invoicing'), |
|
514 | + 'OR' => __('Oregon', 'invoicing'), |
|
515 | + 'PA' => __('Pennsylvania', 'invoicing'), |
|
516 | + 'RI' => __('Rhode Island', 'invoicing'), |
|
517 | + 'SC' => __('South Carolina', 'invoicing'), |
|
518 | + 'SD' => __('South Dakota', 'invoicing'), |
|
519 | + 'TN' => __('Tennessee', 'invoicing'), |
|
520 | + 'TX' => __('Texas', 'invoicing'), |
|
521 | + 'UT' => __('Utah', 'invoicing'), |
|
522 | + 'VT' => __('Vermont', 'invoicing'), |
|
523 | + 'VA' => __('Virginia', 'invoicing'), |
|
524 | + 'WA' => __('Washington', 'invoicing'), |
|
525 | + 'WV' => __('West Virginia', 'invoicing'), |
|
526 | + 'WI' => __('Wisconsin', 'invoicing'), |
|
527 | + 'WY' => __('Wyoming', 'invoicing'), |
|
528 | + 'AS' => __('American Samoa', 'invoicing'), |
|
529 | + 'CZ' => __('Canal Zone', 'invoicing'), |
|
530 | + 'CM' => __('Commonwealth of the Northern Mariana Islands', 'invoicing'), |
|
531 | + 'FM' => __('Federated States of Micronesia', 'invoicing'), |
|
532 | + 'GU' => __('Guam', 'invoicing'), |
|
533 | + 'MH' => __('Marshall Islands', 'invoicing'), |
|
534 | + 'MP' => __('Northern Mariana Islands', 'invoicing'), |
|
535 | + 'PW' => __('Palau', 'invoicing'), |
|
536 | + 'PI' => __('Philippine Islands', 'invoicing'), |
|
537 | + 'PR' => __('Puerto Rico', 'invoicing'), |
|
538 | + 'TT' => __('Trust Territory of the Pacific Islands', 'invoicing'), |
|
539 | + 'VI' => __('Virgin Islands', 'invoicing'), |
|
540 | + 'AA' => __('Armed Forces - Americas', 'invoicing'), |
|
541 | + 'AE' => __('Armed Forces - Europe, Canada, Middle East, Africa', 'invoicing'), |
|
542 | + 'AP' => __('Armed Forces - Pacific', 'invoicing') |
|
543 | 543 | ); |
544 | 544 | |
545 | - return apply_filters( 'wpinv_us_states', $states ); |
|
545 | + return apply_filters('wpinv_us_states', $states); |
|
546 | 546 | } |
547 | 547 | |
548 | 548 | function wpinv_get_canada_states_list() { |
549 | 549 | $states = array( |
550 | - 'AB' => __( 'Alberta', 'invoicing' ), |
|
551 | - 'BC' => __( 'British Columbia', 'invoicing' ), |
|
552 | - 'MB' => __( 'Manitoba', 'invoicing' ), |
|
553 | - 'NB' => __( 'New Brunswick', 'invoicing' ), |
|
554 | - 'NL' => __( 'Newfoundland and Labrador', 'invoicing' ), |
|
555 | - 'NS' => __( 'Nova Scotia', 'invoicing' ), |
|
556 | - 'NT' => __( 'Northwest Territories', 'invoicing' ), |
|
557 | - 'NU' => __( 'Nunavut', 'invoicing' ), |
|
558 | - 'ON' => __( 'Ontario', 'invoicing' ), |
|
559 | - 'PE' => __( 'Prince Edward Island', 'invoicing' ), |
|
560 | - 'QC' => __( 'Quebec', 'invoicing' ), |
|
561 | - 'SK' => __( 'Saskatchewan', 'invoicing' ), |
|
562 | - 'YT' => __( 'Yukon', 'invoicing' ) |
|
550 | + 'AB' => __('Alberta', 'invoicing'), |
|
551 | + 'BC' => __('British Columbia', 'invoicing'), |
|
552 | + 'MB' => __('Manitoba', 'invoicing'), |
|
553 | + 'NB' => __('New Brunswick', 'invoicing'), |
|
554 | + 'NL' => __('Newfoundland and Labrador', 'invoicing'), |
|
555 | + 'NS' => __('Nova Scotia', 'invoicing'), |
|
556 | + 'NT' => __('Northwest Territories', 'invoicing'), |
|
557 | + 'NU' => __('Nunavut', 'invoicing'), |
|
558 | + 'ON' => __('Ontario', 'invoicing'), |
|
559 | + 'PE' => __('Prince Edward Island', 'invoicing'), |
|
560 | + 'QC' => __('Quebec', 'invoicing'), |
|
561 | + 'SK' => __('Saskatchewan', 'invoicing'), |
|
562 | + 'YT' => __('Yukon', 'invoicing') |
|
563 | 563 | ); |
564 | 564 | |
565 | - return apply_filters( 'wpinv_canada_provinces', $states ); |
|
565 | + return apply_filters('wpinv_canada_provinces', $states); |
|
566 | 566 | } |
567 | 567 | |
568 | 568 | function wpinv_get_australia_states_list() { |
569 | 569 | $states = array( |
570 | - 'ACT' => __( 'Australian Capital Territory', 'invoicing' ), |
|
571 | - 'NSW' => __( 'New South Wales', 'invoicing' ), |
|
572 | - 'NT' => __( 'Northern Territory', 'invoicing' ), |
|
573 | - 'QLD' => __( 'Queensland', 'invoicing' ), |
|
574 | - 'SA' => __( 'South Australia', 'invoicing' ), |
|
575 | - 'TAS' => __( 'Tasmania', 'invoicing' ), |
|
576 | - 'VIC' => __( 'Victoria', 'invoicing' ), |
|
577 | - 'WA' => __( 'Western Australia', 'invoicing' ) |
|
570 | + 'ACT' => __('Australian Capital Territory', 'invoicing'), |
|
571 | + 'NSW' => __('New South Wales', 'invoicing'), |
|
572 | + 'NT' => __('Northern Territory', 'invoicing'), |
|
573 | + 'QLD' => __('Queensland', 'invoicing'), |
|
574 | + 'SA' => __('South Australia', 'invoicing'), |
|
575 | + 'TAS' => __('Tasmania', 'invoicing'), |
|
576 | + 'VIC' => __('Victoria', 'invoicing'), |
|
577 | + 'WA' => __('Western Australia', 'invoicing') |
|
578 | 578 | ); |
579 | 579 | |
580 | - return apply_filters( 'wpinv_australia_states', $states ); |
|
580 | + return apply_filters('wpinv_australia_states', $states); |
|
581 | 581 | } |
582 | 582 | |
583 | 583 | function wpinv_get_bangladesh_states_list() { |
584 | 584 | $states = array( |
585 | - 'BAG' => __( 'Bagerhat', 'invoicing' ), |
|
586 | - 'BAN' => __( 'Bandarban', 'invoicing' ), |
|
587 | - 'BAR' => __( 'Barguna', 'invoicing' ), |
|
588 | - 'BARI'=> __( 'Barisal', 'invoicing' ), |
|
589 | - 'BHO' => __( 'Bhola', 'invoicing' ), |
|
590 | - 'BOG' => __( 'Bogra', 'invoicing' ), |
|
591 | - 'BRA' => __( 'Brahmanbaria', 'invoicing' ), |
|
592 | - 'CHA' => __( 'Chandpur', 'invoicing' ), |
|
593 | - 'CHI' => __( 'Chittagong', 'invoicing' ), |
|
594 | - 'CHU' => __( 'Chuadanga', 'invoicing' ), |
|
595 | - 'COM' => __( 'Comilla', 'invoicing' ), |
|
596 | - 'COX' => __( 'Cox\'s Bazar', 'invoicing' ), |
|
597 | - 'DHA' => __( 'Dhaka', 'invoicing' ), |
|
598 | - 'DIN' => __( 'Dinajpur', 'invoicing' ), |
|
599 | - 'FAR' => __( 'Faridpur', 'invoicing' ), |
|
600 | - 'FEN' => __( 'Feni', 'invoicing' ), |
|
601 | - 'GAI' => __( 'Gaibandha', 'invoicing' ), |
|
602 | - 'GAZI'=> __( 'Gazipur', 'invoicing' ), |
|
603 | - 'GOP' => __( 'Gopalganj', 'invoicing' ), |
|
604 | - 'HAB' => __( 'Habiganj', 'invoicing' ), |
|
605 | - 'JAM' => __( 'Jamalpur', 'invoicing' ), |
|
606 | - 'JES' => __( 'Jessore', 'invoicing' ), |
|
607 | - 'JHA' => __( 'Jhalokati', 'invoicing' ), |
|
608 | - 'JHE' => __( 'Jhenaidah', 'invoicing' ), |
|
609 | - 'JOY' => __( 'Joypurhat', 'invoicing' ), |
|
610 | - 'KHA' => __( 'Khagrachhari', 'invoicing' ), |
|
611 | - 'KHU' => __( 'Khulna', 'invoicing' ), |
|
612 | - 'KIS' => __( 'Kishoreganj', 'invoicing' ), |
|
613 | - 'KUR' => __( 'Kurigram', 'invoicing' ), |
|
614 | - 'KUS' => __( 'Kushtia', 'invoicing' ), |
|
615 | - 'LAK' => __( 'Lakshmipur', 'invoicing' ), |
|
616 | - 'LAL' => __( 'Lalmonirhat', 'invoicing' ), |
|
617 | - 'MAD' => __( 'Madaripur', 'invoicing' ), |
|
618 | - 'MAG' => __( 'Magura', 'invoicing' ), |
|
619 | - 'MAN' => __( 'Manikganj', 'invoicing' ), |
|
620 | - 'MEH' => __( 'Meherpur', 'invoicing' ), |
|
621 | - 'MOU' => __( 'Moulvibazar', 'invoicing' ), |
|
622 | - 'MUN' => __( 'Munshiganj', 'invoicing' ), |
|
623 | - 'MYM' => __( 'Mymensingh', 'invoicing' ), |
|
624 | - 'NAO' => __( 'Naogaon', 'invoicing' ), |
|
625 | - 'NAR' => __( 'Narail', 'invoicing' ), |
|
626 | - 'NARG'=> __( 'Narayanganj', 'invoicing' ), |
|
627 | - 'NARD'=> __( 'Narsingdi', 'invoicing' ), |
|
628 | - 'NAT' => __( 'Natore', 'invoicing' ), |
|
629 | - 'NAW' => __( 'Nawabganj', 'invoicing' ), |
|
630 | - 'NET' => __( 'Netrakona', 'invoicing' ), |
|
631 | - 'NIL' => __( 'Nilphamari', 'invoicing' ), |
|
632 | - 'NOA' => __( 'Noakhali', 'invoicing' ), |
|
633 | - 'PAB' => __( 'Pabna', 'invoicing' ), |
|
634 | - 'PAN' => __( 'Panchagarh', 'invoicing' ), |
|
635 | - 'PAT' => __( 'Patuakhali', 'invoicing' ), |
|
636 | - 'PIR' => __( 'Pirojpur', 'invoicing' ), |
|
637 | - 'RAJB'=> __( 'Rajbari', 'invoicing' ), |
|
638 | - 'RAJ' => __( 'Rajshahi', 'invoicing' ), |
|
639 | - 'RAN' => __( 'Rangamati', 'invoicing' ), |
|
640 | - 'RANP'=> __( 'Rangpur', 'invoicing' ), |
|
641 | - 'SAT' => __( 'Satkhira', 'invoicing' ), |
|
642 | - 'SHA' => __( 'Shariatpur', 'invoicing' ), |
|
643 | - 'SHE' => __( 'Sherpur', 'invoicing' ), |
|
644 | - 'SIR' => __( 'Sirajganj', 'invoicing' ), |
|
645 | - 'SUN' => __( 'Sunamganj', 'invoicing' ), |
|
646 | - 'SYL' => __( 'Sylhet', 'invoicing' ), |
|
647 | - 'TAN' => __( 'Tangail', 'invoicing' ), |
|
648 | - 'THA' => __( 'Thakurgaon', 'invoicing' ) |
|
585 | + 'BAG' => __('Bagerhat', 'invoicing'), |
|
586 | + 'BAN' => __('Bandarban', 'invoicing'), |
|
587 | + 'BAR' => __('Barguna', 'invoicing'), |
|
588 | + 'BARI'=> __('Barisal', 'invoicing'), |
|
589 | + 'BHO' => __('Bhola', 'invoicing'), |
|
590 | + 'BOG' => __('Bogra', 'invoicing'), |
|
591 | + 'BRA' => __('Brahmanbaria', 'invoicing'), |
|
592 | + 'CHA' => __('Chandpur', 'invoicing'), |
|
593 | + 'CHI' => __('Chittagong', 'invoicing'), |
|
594 | + 'CHU' => __('Chuadanga', 'invoicing'), |
|
595 | + 'COM' => __('Comilla', 'invoicing'), |
|
596 | + 'COX' => __('Cox\'s Bazar', 'invoicing'), |
|
597 | + 'DHA' => __('Dhaka', 'invoicing'), |
|
598 | + 'DIN' => __('Dinajpur', 'invoicing'), |
|
599 | + 'FAR' => __('Faridpur', 'invoicing'), |
|
600 | + 'FEN' => __('Feni', 'invoicing'), |
|
601 | + 'GAI' => __('Gaibandha', 'invoicing'), |
|
602 | + 'GAZI'=> __('Gazipur', 'invoicing'), |
|
603 | + 'GOP' => __('Gopalganj', 'invoicing'), |
|
604 | + 'HAB' => __('Habiganj', 'invoicing'), |
|
605 | + 'JAM' => __('Jamalpur', 'invoicing'), |
|
606 | + 'JES' => __('Jessore', 'invoicing'), |
|
607 | + 'JHA' => __('Jhalokati', 'invoicing'), |
|
608 | + 'JHE' => __('Jhenaidah', 'invoicing'), |
|
609 | + 'JOY' => __('Joypurhat', 'invoicing'), |
|
610 | + 'KHA' => __('Khagrachhari', 'invoicing'), |
|
611 | + 'KHU' => __('Khulna', 'invoicing'), |
|
612 | + 'KIS' => __('Kishoreganj', 'invoicing'), |
|
613 | + 'KUR' => __('Kurigram', 'invoicing'), |
|
614 | + 'KUS' => __('Kushtia', 'invoicing'), |
|
615 | + 'LAK' => __('Lakshmipur', 'invoicing'), |
|
616 | + 'LAL' => __('Lalmonirhat', 'invoicing'), |
|
617 | + 'MAD' => __('Madaripur', 'invoicing'), |
|
618 | + 'MAG' => __('Magura', 'invoicing'), |
|
619 | + 'MAN' => __('Manikganj', 'invoicing'), |
|
620 | + 'MEH' => __('Meherpur', 'invoicing'), |
|
621 | + 'MOU' => __('Moulvibazar', 'invoicing'), |
|
622 | + 'MUN' => __('Munshiganj', 'invoicing'), |
|
623 | + 'MYM' => __('Mymensingh', 'invoicing'), |
|
624 | + 'NAO' => __('Naogaon', 'invoicing'), |
|
625 | + 'NAR' => __('Narail', 'invoicing'), |
|
626 | + 'NARG'=> __('Narayanganj', 'invoicing'), |
|
627 | + 'NARD'=> __('Narsingdi', 'invoicing'), |
|
628 | + 'NAT' => __('Natore', 'invoicing'), |
|
629 | + 'NAW' => __('Nawabganj', 'invoicing'), |
|
630 | + 'NET' => __('Netrakona', 'invoicing'), |
|
631 | + 'NIL' => __('Nilphamari', 'invoicing'), |
|
632 | + 'NOA' => __('Noakhali', 'invoicing'), |
|
633 | + 'PAB' => __('Pabna', 'invoicing'), |
|
634 | + 'PAN' => __('Panchagarh', 'invoicing'), |
|
635 | + 'PAT' => __('Patuakhali', 'invoicing'), |
|
636 | + 'PIR' => __('Pirojpur', 'invoicing'), |
|
637 | + 'RAJB'=> __('Rajbari', 'invoicing'), |
|
638 | + 'RAJ' => __('Rajshahi', 'invoicing'), |
|
639 | + 'RAN' => __('Rangamati', 'invoicing'), |
|
640 | + 'RANP'=> __('Rangpur', 'invoicing'), |
|
641 | + 'SAT' => __('Satkhira', 'invoicing'), |
|
642 | + 'SHA' => __('Shariatpur', 'invoicing'), |
|
643 | + 'SHE' => __('Sherpur', 'invoicing'), |
|
644 | + 'SIR' => __('Sirajganj', 'invoicing'), |
|
645 | + 'SUN' => __('Sunamganj', 'invoicing'), |
|
646 | + 'SYL' => __('Sylhet', 'invoicing'), |
|
647 | + 'TAN' => __('Tangail', 'invoicing'), |
|
648 | + 'THA' => __('Thakurgaon', 'invoicing') |
|
649 | 649 | ); |
650 | 650 | |
651 | - return apply_filters( 'wpinv_bangladesh_states', $states ); |
|
651 | + return apply_filters('wpinv_bangladesh_states', $states); |
|
652 | 652 | } |
653 | 653 | |
654 | 654 | function wpinv_get_brazil_states_list() { |
655 | 655 | $states = array( |
656 | - 'AC' => __( 'Acre', 'invoicing' ), |
|
657 | - 'AL' => __( 'Alagoas', 'invoicing' ), |
|
658 | - 'AP' => __( 'Amapá', 'invoicing' ), |
|
659 | - 'AM' => __( 'Amazonas', 'invoicing' ), |
|
660 | - 'BA' => __( 'Bahia', 'invoicing' ), |
|
661 | - 'CE' => __( 'Ceará', 'invoicing' ), |
|
662 | - 'DF' => __( 'Distrito Federal', 'invoicing' ), |
|
663 | - 'ES' => __( 'Espírito Santo', 'invoicing' ), |
|
664 | - 'GO' => __( 'Goiás', 'invoicing' ), |
|
665 | - 'MA' => __( 'Maranhão', 'invoicing' ), |
|
666 | - 'MT' => __( 'Mato Grosso', 'invoicing' ), |
|
667 | - 'MS' => __( 'Mato Grosso do Sul', 'invoicing' ), |
|
668 | - 'MG' => __( 'Minas Gerais', 'invoicing' ), |
|
669 | - 'PA' => __( 'Pará', 'invoicing' ), |
|
670 | - 'PB' => __( 'Paraíba', 'invoicing' ), |
|
671 | - 'PR' => __( 'Paraná', 'invoicing' ), |
|
672 | - 'PE' => __( 'Pernambuco', 'invoicing' ), |
|
673 | - 'PI' => __( 'Piauí', 'invoicing' ), |
|
674 | - 'RJ' => __( 'Rio de Janeiro', 'invoicing' ), |
|
675 | - 'RN' => __( 'Rio Grande do Norte', 'invoicing' ), |
|
676 | - 'RS' => __( 'Rio Grande do Sul', 'invoicing' ), |
|
677 | - 'RO' => __( 'Rondônia', 'invoicing' ), |
|
678 | - 'RR' => __( 'Roraima', 'invoicing' ), |
|
679 | - 'SC' => __( 'Santa Catarina', 'invoicing' ), |
|
680 | - 'SP' => __( 'São Paulo', 'invoicing' ), |
|
681 | - 'SE' => __( 'Sergipe', 'invoicing' ), |
|
682 | - 'TO' => __( 'Tocantins', 'invoicing' ) |
|
656 | + 'AC' => __('Acre', 'invoicing'), |
|
657 | + 'AL' => __('Alagoas', 'invoicing'), |
|
658 | + 'AP' => __('Amapá', 'invoicing'), |
|
659 | + 'AM' => __('Amazonas', 'invoicing'), |
|
660 | + 'BA' => __('Bahia', 'invoicing'), |
|
661 | + 'CE' => __('Ceará', 'invoicing'), |
|
662 | + 'DF' => __('Distrito Federal', 'invoicing'), |
|
663 | + 'ES' => __('Espírito Santo', 'invoicing'), |
|
664 | + 'GO' => __('Goiás', 'invoicing'), |
|
665 | + 'MA' => __('Maranhão', 'invoicing'), |
|
666 | + 'MT' => __('Mato Grosso', 'invoicing'), |
|
667 | + 'MS' => __('Mato Grosso do Sul', 'invoicing'), |
|
668 | + 'MG' => __('Minas Gerais', 'invoicing'), |
|
669 | + 'PA' => __('Pará', 'invoicing'), |
|
670 | + 'PB' => __('Paraíba', 'invoicing'), |
|
671 | + 'PR' => __('Paraná', 'invoicing'), |
|
672 | + 'PE' => __('Pernambuco', 'invoicing'), |
|
673 | + 'PI' => __('Piauí', 'invoicing'), |
|
674 | + 'RJ' => __('Rio de Janeiro', 'invoicing'), |
|
675 | + 'RN' => __('Rio Grande do Norte', 'invoicing'), |
|
676 | + 'RS' => __('Rio Grande do Sul', 'invoicing'), |
|
677 | + 'RO' => __('Rondônia', 'invoicing'), |
|
678 | + 'RR' => __('Roraima', 'invoicing'), |
|
679 | + 'SC' => __('Santa Catarina', 'invoicing'), |
|
680 | + 'SP' => __('São Paulo', 'invoicing'), |
|
681 | + 'SE' => __('Sergipe', 'invoicing'), |
|
682 | + 'TO' => __('Tocantins', 'invoicing') |
|
683 | 683 | ); |
684 | 684 | |
685 | - return apply_filters( 'wpinv_brazil_states', $states ); |
|
685 | + return apply_filters('wpinv_brazil_states', $states); |
|
686 | 686 | } |
687 | 687 | |
688 | 688 | function wpinv_get_bulgaria_states_list() { |
689 | 689 | $states = array( |
690 | - 'BG-01' => __( 'Blagoevgrad', 'invoicing' ), |
|
691 | - 'BG-02' => __( 'Burgas', 'invoicing' ), |
|
692 | - 'BG-08' => __( 'Dobrich', 'invoicing' ), |
|
693 | - 'BG-07' => __( 'Gabrovo', 'invoicing' ), |
|
694 | - 'BG-26' => __( 'Haskovo', 'invoicing' ), |
|
695 | - 'BG-09' => __( 'Kardzhali', 'invoicing' ), |
|
696 | - 'BG-10' => __( 'Kyustendil', 'invoicing' ), |
|
697 | - 'BG-11' => __( 'Lovech', 'invoicing' ), |
|
698 | - 'BG-12' => __( 'Montana', 'invoicing' ), |
|
699 | - 'BG-13' => __( 'Pazardzhik', 'invoicing' ), |
|
700 | - 'BG-14' => __( 'Pernik', 'invoicing' ), |
|
701 | - 'BG-15' => __( 'Pleven', 'invoicing' ), |
|
702 | - 'BG-16' => __( 'Plovdiv', 'invoicing' ), |
|
703 | - 'BG-17' => __( 'Razgrad', 'invoicing' ), |
|
704 | - 'BG-18' => __( 'Ruse', 'invoicing' ), |
|
705 | - 'BG-27' => __( 'Shumen', 'invoicing' ), |
|
706 | - 'BG-19' => __( 'Silistra', 'invoicing' ), |
|
707 | - 'BG-20' => __( 'Sliven', 'invoicing' ), |
|
708 | - 'BG-21' => __( 'Smolyan', 'invoicing' ), |
|
709 | - 'BG-23' => __( 'Sofia', 'invoicing' ), |
|
710 | - 'BG-22' => __( 'Sofia-Grad', 'invoicing' ), |
|
711 | - 'BG-24' => __( 'Stara Zagora', 'invoicing' ), |
|
712 | - 'BG-25' => __( 'Targovishte', 'invoicing' ), |
|
713 | - 'BG-03' => __( 'Varna', 'invoicing' ), |
|
714 | - 'BG-04' => __( 'Veliko Tarnovo', 'invoicing' ), |
|
715 | - 'BG-05' => __( 'Vidin', 'invoicing' ), |
|
716 | - 'BG-06' => __( 'Vratsa', 'invoicing' ), |
|
717 | - 'BG-28' => __( 'Yambol', 'invoicing' ) |
|
690 | + 'BG-01' => __('Blagoevgrad', 'invoicing'), |
|
691 | + 'BG-02' => __('Burgas', 'invoicing'), |
|
692 | + 'BG-08' => __('Dobrich', 'invoicing'), |
|
693 | + 'BG-07' => __('Gabrovo', 'invoicing'), |
|
694 | + 'BG-26' => __('Haskovo', 'invoicing'), |
|
695 | + 'BG-09' => __('Kardzhali', 'invoicing'), |
|
696 | + 'BG-10' => __('Kyustendil', 'invoicing'), |
|
697 | + 'BG-11' => __('Lovech', 'invoicing'), |
|
698 | + 'BG-12' => __('Montana', 'invoicing'), |
|
699 | + 'BG-13' => __('Pazardzhik', 'invoicing'), |
|
700 | + 'BG-14' => __('Pernik', 'invoicing'), |
|
701 | + 'BG-15' => __('Pleven', 'invoicing'), |
|
702 | + 'BG-16' => __('Plovdiv', 'invoicing'), |
|
703 | + 'BG-17' => __('Razgrad', 'invoicing'), |
|
704 | + 'BG-18' => __('Ruse', 'invoicing'), |
|
705 | + 'BG-27' => __('Shumen', 'invoicing'), |
|
706 | + 'BG-19' => __('Silistra', 'invoicing'), |
|
707 | + 'BG-20' => __('Sliven', 'invoicing'), |
|
708 | + 'BG-21' => __('Smolyan', 'invoicing'), |
|
709 | + 'BG-23' => __('Sofia', 'invoicing'), |
|
710 | + 'BG-22' => __('Sofia-Grad', 'invoicing'), |
|
711 | + 'BG-24' => __('Stara Zagora', 'invoicing'), |
|
712 | + 'BG-25' => __('Targovishte', 'invoicing'), |
|
713 | + 'BG-03' => __('Varna', 'invoicing'), |
|
714 | + 'BG-04' => __('Veliko Tarnovo', 'invoicing'), |
|
715 | + 'BG-05' => __('Vidin', 'invoicing'), |
|
716 | + 'BG-06' => __('Vratsa', 'invoicing'), |
|
717 | + 'BG-28' => __('Yambol', 'invoicing') |
|
718 | 718 | ); |
719 | 719 | |
720 | - return apply_filters( 'wpinv_bulgaria_states', $states ); |
|
720 | + return apply_filters('wpinv_bulgaria_states', $states); |
|
721 | 721 | } |
722 | 722 | |
723 | 723 | function wpinv_get_hong_kong_states_list() { |
724 | 724 | $states = array( |
725 | - 'HONG KONG' => __( 'Hong Kong Island', 'invoicing' ), |
|
726 | - 'KOWLOON' => __( 'Kowloon', 'invoicing' ), |
|
727 | - 'NEW TERRITORIES' => __( 'New Territories', 'invoicing' ) |
|
725 | + 'HONG KONG' => __('Hong Kong Island', 'invoicing'), |
|
726 | + 'KOWLOON' => __('Kowloon', 'invoicing'), |
|
727 | + 'NEW TERRITORIES' => __('New Territories', 'invoicing') |
|
728 | 728 | ); |
729 | 729 | |
730 | - return apply_filters( 'wpinv_hong_kong_states', $states ); |
|
730 | + return apply_filters('wpinv_hong_kong_states', $states); |
|
731 | 731 | } |
732 | 732 | |
733 | 733 | function wpinv_get_hungary_states_list() { |
734 | 734 | $states = array( |
735 | - 'BK' => __( 'Bács-Kiskun', 'invoicing' ), |
|
736 | - 'BE' => __( 'Békés', 'invoicing' ), |
|
737 | - 'BA' => __( 'Baranya', 'invoicing' ), |
|
738 | - 'BZ' => __( 'Borsod-Abaúj-Zemplén', 'invoicing' ), |
|
739 | - 'BU' => __( 'Budapest', 'invoicing' ), |
|
740 | - 'CS' => __( 'Csongrád', 'invoicing' ), |
|
741 | - 'FE' => __( 'Fejér', 'invoicing' ), |
|
742 | - 'GS' => __( 'Győr-Moson-Sopron', 'invoicing' ), |
|
743 | - 'HB' => __( 'Hajdú-Bihar', 'invoicing' ), |
|
744 | - 'HE' => __( 'Heves', 'invoicing' ), |
|
745 | - 'JN' => __( 'Jász-Nagykun-Szolnok', 'invoicing' ), |
|
746 | - 'KE' => __( 'Komárom-Esztergom', 'invoicing' ), |
|
747 | - 'NO' => __( 'Nógrád', 'invoicing' ), |
|
748 | - 'PE' => __( 'Pest', 'invoicing' ), |
|
749 | - 'SO' => __( 'Somogy', 'invoicing' ), |
|
750 | - 'SZ' => __( 'Szabolcs-Szatmár-Bereg', 'invoicing' ), |
|
751 | - 'TO' => __( 'Tolna', 'invoicing' ), |
|
752 | - 'VA' => __( 'Vas', 'invoicing' ), |
|
753 | - 'VE' => __( 'Veszprém', 'invoicing' ), |
|
754 | - 'ZA' => __( 'Zala', 'invoicing' ) |
|
735 | + 'BK' => __('Bács-Kiskun', 'invoicing'), |
|
736 | + 'BE' => __('Békés', 'invoicing'), |
|
737 | + 'BA' => __('Baranya', 'invoicing'), |
|
738 | + 'BZ' => __('Borsod-Abaúj-Zemplén', 'invoicing'), |
|
739 | + 'BU' => __('Budapest', 'invoicing'), |
|
740 | + 'CS' => __('Csongrád', 'invoicing'), |
|
741 | + 'FE' => __('Fejér', 'invoicing'), |
|
742 | + 'GS' => __('Győr-Moson-Sopron', 'invoicing'), |
|
743 | + 'HB' => __('Hajdú-Bihar', 'invoicing'), |
|
744 | + 'HE' => __('Heves', 'invoicing'), |
|
745 | + 'JN' => __('Jász-Nagykun-Szolnok', 'invoicing'), |
|
746 | + 'KE' => __('Komárom-Esztergom', 'invoicing'), |
|
747 | + 'NO' => __('Nógrád', 'invoicing'), |
|
748 | + 'PE' => __('Pest', 'invoicing'), |
|
749 | + 'SO' => __('Somogy', 'invoicing'), |
|
750 | + 'SZ' => __('Szabolcs-Szatmár-Bereg', 'invoicing'), |
|
751 | + 'TO' => __('Tolna', 'invoicing'), |
|
752 | + 'VA' => __('Vas', 'invoicing'), |
|
753 | + 'VE' => __('Veszprém', 'invoicing'), |
|
754 | + 'ZA' => __('Zala', 'invoicing') |
|
755 | 755 | ); |
756 | 756 | |
757 | - return apply_filters( 'wpinv_hungary_states', $states ); |
|
757 | + return apply_filters('wpinv_hungary_states', $states); |
|
758 | 758 | } |
759 | 759 | |
760 | 760 | function wpinv_get_japan_states_list() { |
761 | 761 | $states = array( |
762 | - 'JP01' => __( 'Hokkaido', 'invoicing' ), |
|
763 | - 'JP02' => __( 'Aomori', 'invoicing' ), |
|
764 | - 'JP03' => __( 'Iwate', 'invoicing' ), |
|
765 | - 'JP04' => __( 'Miyagi', 'invoicing' ), |
|
766 | - 'JP05' => __( 'Akita', 'invoicing' ), |
|
767 | - 'JP06' => __( 'Yamagata', 'invoicing' ), |
|
768 | - 'JP07' => __( 'Fukushima', 'invoicing' ), |
|
769 | - 'JP08' => __( 'Ibaraki', 'invoicing' ), |
|
770 | - 'JP09' => __( 'Tochigi', 'invoicing' ), |
|
771 | - 'JP10' => __( 'Gunma', 'invoicing' ), |
|
772 | - 'JP11' => __( 'Saitama', 'invoicing' ), |
|
773 | - 'JP12' => __( 'Chiba', 'invoicing' ), |
|
774 | - 'JP13' => __( 'Tokyo', 'invoicing' ), |
|
775 | - 'JP14' => __( 'Kanagawa', 'invoicing' ), |
|
776 | - 'JP15' => __( 'Niigata', 'invoicing' ), |
|
777 | - 'JP16' => __( 'Toyama', 'invoicing' ), |
|
778 | - 'JP17' => __( 'Ishikawa', 'invoicing' ), |
|
779 | - 'JP18' => __( 'Fukui', 'invoicing' ), |
|
780 | - 'JP19' => __( 'Yamanashi', 'invoicing' ), |
|
781 | - 'JP20' => __( 'Nagano', 'invoicing' ), |
|
782 | - 'JP21' => __( 'Gifu', 'invoicing' ), |
|
783 | - 'JP22' => __( 'Shizuoka', 'invoicing' ), |
|
784 | - 'JP23' => __( 'Aichi', 'invoicing' ), |
|
785 | - 'JP24' => __( 'Mie', 'invoicing' ), |
|
786 | - 'JP25' => __( 'Shiga', 'invoicing' ), |
|
787 | - 'JP26' => __( 'Kyouto', 'invoicing' ), |
|
788 | - 'JP27' => __( 'Osaka', 'invoicing' ), |
|
789 | - 'JP28' => __( 'Hyougo', 'invoicing' ), |
|
790 | - 'JP29' => __( 'Nara', 'invoicing' ), |
|
791 | - 'JP30' => __( 'Wakayama', 'invoicing' ), |
|
792 | - 'JP31' => __( 'Tottori', 'invoicing' ), |
|
793 | - 'JP32' => __( 'Shimane', 'invoicing' ), |
|
794 | - 'JP33' => __( 'Okayama', 'invoicing' ), |
|
795 | - 'JP34' => __( 'Hiroshima', 'invoicing' ), |
|
796 | - 'JP35' => __( 'Yamaguchi', 'invoicing' ), |
|
797 | - 'JP36' => __( 'Tokushima', 'invoicing' ), |
|
798 | - 'JP37' => __( 'Kagawa', 'invoicing' ), |
|
799 | - 'JP38' => __( 'Ehime', 'invoicing' ), |
|
800 | - 'JP39' => __( 'Kochi', 'invoicing' ), |
|
801 | - 'JP40' => __( 'Fukuoka', 'invoicing' ), |
|
802 | - 'JP41' => __( 'Saga', 'invoicing' ), |
|
803 | - 'JP42' => __( 'Nagasaki', 'invoicing' ), |
|
804 | - 'JP43' => __( 'Kumamoto', 'invoicing' ), |
|
805 | - 'JP44' => __( 'Oita', 'invoicing' ), |
|
806 | - 'JP45' => __( 'Miyazaki', 'invoicing' ), |
|
807 | - 'JP46' => __( 'Kagoshima', 'invoicing' ), |
|
808 | - 'JP47' => __( 'Okinawa', 'invoicing' ) |
|
762 | + 'JP01' => __('Hokkaido', 'invoicing'), |
|
763 | + 'JP02' => __('Aomori', 'invoicing'), |
|
764 | + 'JP03' => __('Iwate', 'invoicing'), |
|
765 | + 'JP04' => __('Miyagi', 'invoicing'), |
|
766 | + 'JP05' => __('Akita', 'invoicing'), |
|
767 | + 'JP06' => __('Yamagata', 'invoicing'), |
|
768 | + 'JP07' => __('Fukushima', 'invoicing'), |
|
769 | + 'JP08' => __('Ibaraki', 'invoicing'), |
|
770 | + 'JP09' => __('Tochigi', 'invoicing'), |
|
771 | + 'JP10' => __('Gunma', 'invoicing'), |
|
772 | + 'JP11' => __('Saitama', 'invoicing'), |
|
773 | + 'JP12' => __('Chiba', 'invoicing'), |
|
774 | + 'JP13' => __('Tokyo', 'invoicing'), |
|
775 | + 'JP14' => __('Kanagawa', 'invoicing'), |
|
776 | + 'JP15' => __('Niigata', 'invoicing'), |
|
777 | + 'JP16' => __('Toyama', 'invoicing'), |
|
778 | + 'JP17' => __('Ishikawa', 'invoicing'), |
|
779 | + 'JP18' => __('Fukui', 'invoicing'), |
|
780 | + 'JP19' => __('Yamanashi', 'invoicing'), |
|
781 | + 'JP20' => __('Nagano', 'invoicing'), |
|
782 | + 'JP21' => __('Gifu', 'invoicing'), |
|
783 | + 'JP22' => __('Shizuoka', 'invoicing'), |
|
784 | + 'JP23' => __('Aichi', 'invoicing'), |
|
785 | + 'JP24' => __('Mie', 'invoicing'), |
|
786 | + 'JP25' => __('Shiga', 'invoicing'), |
|
787 | + 'JP26' => __('Kyouto', 'invoicing'), |
|
788 | + 'JP27' => __('Osaka', 'invoicing'), |
|
789 | + 'JP28' => __('Hyougo', 'invoicing'), |
|
790 | + 'JP29' => __('Nara', 'invoicing'), |
|
791 | + 'JP30' => __('Wakayama', 'invoicing'), |
|
792 | + 'JP31' => __('Tottori', 'invoicing'), |
|
793 | + 'JP32' => __('Shimane', 'invoicing'), |
|
794 | + 'JP33' => __('Okayama', 'invoicing'), |
|
795 | + 'JP34' => __('Hiroshima', 'invoicing'), |
|
796 | + 'JP35' => __('Yamaguchi', 'invoicing'), |
|
797 | + 'JP36' => __('Tokushima', 'invoicing'), |
|
798 | + 'JP37' => __('Kagawa', 'invoicing'), |
|
799 | + 'JP38' => __('Ehime', 'invoicing'), |
|
800 | + 'JP39' => __('Kochi', 'invoicing'), |
|
801 | + 'JP40' => __('Fukuoka', 'invoicing'), |
|
802 | + 'JP41' => __('Saga', 'invoicing'), |
|
803 | + 'JP42' => __('Nagasaki', 'invoicing'), |
|
804 | + 'JP43' => __('Kumamoto', 'invoicing'), |
|
805 | + 'JP44' => __('Oita', 'invoicing'), |
|
806 | + 'JP45' => __('Miyazaki', 'invoicing'), |
|
807 | + 'JP46' => __('Kagoshima', 'invoicing'), |
|
808 | + 'JP47' => __('Okinawa', 'invoicing') |
|
809 | 809 | ); |
810 | 810 | |
811 | - return apply_filters( 'wpinv_japan_states', $states ); |
|
811 | + return apply_filters('wpinv_japan_states', $states); |
|
812 | 812 | } |
813 | 813 | |
814 | 814 | function wpinv_get_china_states_list() { |
815 | 815 | $states = array( |
816 | - 'CN1' => __( 'Yunnan / 云南', 'invoicing' ), |
|
817 | - 'CN2' => __( 'Beijing / 北京', 'invoicing' ), |
|
818 | - 'CN3' => __( 'Tianjin / 天津', 'invoicing' ), |
|
819 | - 'CN4' => __( 'Hebei / 河北', 'invoicing' ), |
|
820 | - 'CN5' => __( 'Shanxi / 山西', 'invoicing' ), |
|
821 | - 'CN6' => __( 'Inner Mongolia / 內蒙古', 'invoicing' ), |
|
822 | - 'CN7' => __( 'Liaoning / 辽宁', 'invoicing' ), |
|
823 | - 'CN8' => __( 'Jilin / 吉林', 'invoicing' ), |
|
824 | - 'CN9' => __( 'Heilongjiang / 黑龙江', 'invoicing' ), |
|
825 | - 'CN10' => __( 'Shanghai / 上海', 'invoicing' ), |
|
826 | - 'CN11' => __( 'Jiangsu / 江苏', 'invoicing' ), |
|
827 | - 'CN12' => __( 'Zhejiang / 浙江', 'invoicing' ), |
|
828 | - 'CN13' => __( 'Anhui / 安徽', 'invoicing' ), |
|
829 | - 'CN14' => __( 'Fujian / 福建', 'invoicing' ), |
|
830 | - 'CN15' => __( 'Jiangxi / 江西', 'invoicing' ), |
|
831 | - 'CN16' => __( 'Shandong / 山东', 'invoicing' ), |
|
832 | - 'CN17' => __( 'Henan / 河南', 'invoicing' ), |
|
833 | - 'CN18' => __( 'Hubei / 湖北', 'invoicing' ), |
|
834 | - 'CN19' => __( 'Hunan / 湖南', 'invoicing' ), |
|
835 | - 'CN20' => __( 'Guangdong / 广东', 'invoicing' ), |
|
836 | - 'CN21' => __( 'Guangxi Zhuang / 广西壮族', 'invoicing' ), |
|
837 | - 'CN22' => __( 'Hainan / 海南', 'invoicing' ), |
|
838 | - 'CN23' => __( 'Chongqing / 重庆', 'invoicing' ), |
|
839 | - 'CN24' => __( 'Sichuan / 四川', 'invoicing' ), |
|
840 | - 'CN25' => __( 'Guizhou / 贵州', 'invoicing' ), |
|
841 | - 'CN26' => __( 'Shaanxi / 陕西', 'invoicing' ), |
|
842 | - 'CN27' => __( 'Gansu / 甘肃', 'invoicing' ), |
|
843 | - 'CN28' => __( 'Qinghai / 青海', 'invoicing' ), |
|
844 | - 'CN29' => __( 'Ningxia Hui / 宁夏', 'invoicing' ), |
|
845 | - 'CN30' => __( 'Macau / 澳门', 'invoicing' ), |
|
846 | - 'CN31' => __( 'Tibet / 西藏', 'invoicing' ), |
|
847 | - 'CN32' => __( 'Xinjiang / 新疆', 'invoicing' ) |
|
816 | + 'CN1' => __('Yunnan / 云南', 'invoicing'), |
|
817 | + 'CN2' => __('Beijing / 北京', 'invoicing'), |
|
818 | + 'CN3' => __('Tianjin / 天津', 'invoicing'), |
|
819 | + 'CN4' => __('Hebei / 河北', 'invoicing'), |
|
820 | + 'CN5' => __('Shanxi / 山西', 'invoicing'), |
|
821 | + 'CN6' => __('Inner Mongolia / 內蒙古', 'invoicing'), |
|
822 | + 'CN7' => __('Liaoning / 辽宁', 'invoicing'), |
|
823 | + 'CN8' => __('Jilin / 吉林', 'invoicing'), |
|
824 | + 'CN9' => __('Heilongjiang / 黑龙江', 'invoicing'), |
|
825 | + 'CN10' => __('Shanghai / 上海', 'invoicing'), |
|
826 | + 'CN11' => __('Jiangsu / 江苏', 'invoicing'), |
|
827 | + 'CN12' => __('Zhejiang / 浙江', 'invoicing'), |
|
828 | + 'CN13' => __('Anhui / 安徽', 'invoicing'), |
|
829 | + 'CN14' => __('Fujian / 福建', 'invoicing'), |
|
830 | + 'CN15' => __('Jiangxi / 江西', 'invoicing'), |
|
831 | + 'CN16' => __('Shandong / 山东', 'invoicing'), |
|
832 | + 'CN17' => __('Henan / 河南', 'invoicing'), |
|
833 | + 'CN18' => __('Hubei / 湖北', 'invoicing'), |
|
834 | + 'CN19' => __('Hunan / 湖南', 'invoicing'), |
|
835 | + 'CN20' => __('Guangdong / 广东', 'invoicing'), |
|
836 | + 'CN21' => __('Guangxi Zhuang / 广西壮族', 'invoicing'), |
|
837 | + 'CN22' => __('Hainan / 海南', 'invoicing'), |
|
838 | + 'CN23' => __('Chongqing / 重庆', 'invoicing'), |
|
839 | + 'CN24' => __('Sichuan / 四川', 'invoicing'), |
|
840 | + 'CN25' => __('Guizhou / 贵州', 'invoicing'), |
|
841 | + 'CN26' => __('Shaanxi / 陕西', 'invoicing'), |
|
842 | + 'CN27' => __('Gansu / 甘肃', 'invoicing'), |
|
843 | + 'CN28' => __('Qinghai / 青海', 'invoicing'), |
|
844 | + 'CN29' => __('Ningxia Hui / 宁夏', 'invoicing'), |
|
845 | + 'CN30' => __('Macau / 澳门', 'invoicing'), |
|
846 | + 'CN31' => __('Tibet / 西藏', 'invoicing'), |
|
847 | + 'CN32' => __('Xinjiang / 新疆', 'invoicing') |
|
848 | 848 | ); |
849 | 849 | |
850 | - return apply_filters( 'wpinv_china_states', $states ); |
|
850 | + return apply_filters('wpinv_china_states', $states); |
|
851 | 851 | } |
852 | 852 | |
853 | 853 | function wpinv_get_new_zealand_states_list() { |
854 | 854 | $states = array( |
855 | - 'AK' => __( 'Auckland', 'invoicing' ), |
|
856 | - 'BP' => __( 'Bay of Plenty', 'invoicing' ), |
|
857 | - 'CT' => __( 'Canterbury', 'invoicing' ), |
|
858 | - 'HB' => __( 'Hawke’s Bay', 'invoicing' ), |
|
859 | - 'MW' => __( 'Manawatu-Wanganui', 'invoicing' ), |
|
860 | - 'MB' => __( 'Marlborough', 'invoicing' ), |
|
861 | - 'NS' => __( 'Nelson', 'invoicing' ), |
|
862 | - 'NL' => __( 'Northland', 'invoicing' ), |
|
863 | - 'OT' => __( 'Otago', 'invoicing' ), |
|
864 | - 'SL' => __( 'Southland', 'invoicing' ), |
|
865 | - 'TK' => __( 'Taranaki', 'invoicing' ), |
|
866 | - 'TM' => __( 'Tasman', 'invoicing' ), |
|
867 | - 'WA' => __( 'Waikato', 'invoicing' ), |
|
868 | - 'WR' => __( 'Wairarapa', 'invoicing' ), |
|
869 | - 'WE' => __( 'Wellington', 'invoicing' ), |
|
870 | - 'WC' => __( 'West Coast', 'invoicing' ) |
|
855 | + 'AK' => __('Auckland', 'invoicing'), |
|
856 | + 'BP' => __('Bay of Plenty', 'invoicing'), |
|
857 | + 'CT' => __('Canterbury', 'invoicing'), |
|
858 | + 'HB' => __('Hawke’s Bay', 'invoicing'), |
|
859 | + 'MW' => __('Manawatu-Wanganui', 'invoicing'), |
|
860 | + 'MB' => __('Marlborough', 'invoicing'), |
|
861 | + 'NS' => __('Nelson', 'invoicing'), |
|
862 | + 'NL' => __('Northland', 'invoicing'), |
|
863 | + 'OT' => __('Otago', 'invoicing'), |
|
864 | + 'SL' => __('Southland', 'invoicing'), |
|
865 | + 'TK' => __('Taranaki', 'invoicing'), |
|
866 | + 'TM' => __('Tasman', 'invoicing'), |
|
867 | + 'WA' => __('Waikato', 'invoicing'), |
|
868 | + 'WR' => __('Wairarapa', 'invoicing'), |
|
869 | + 'WE' => __('Wellington', 'invoicing'), |
|
870 | + 'WC' => __('West Coast', 'invoicing') |
|
871 | 871 | ); |
872 | 872 | |
873 | - return apply_filters( 'wpinv_new_zealand_states', $states ); |
|
873 | + return apply_filters('wpinv_new_zealand_states', $states); |
|
874 | 874 | } |
875 | 875 | |
876 | 876 | function wpinv_get_peru_states_list() { |
877 | 877 | $states = array( |
878 | - 'CAL' => __( 'El Callao', 'invoicing' ), |
|
879 | - 'LMA' => __( 'Municipalidad Metropolitana de Lima', 'invoicing' ), |
|
880 | - 'AMA' => __( 'Amazonas', 'invoicing' ), |
|
881 | - 'ANC' => __( 'Ancash', 'invoicing' ), |
|
882 | - 'APU' => __( 'Apurímac', 'invoicing' ), |
|
883 | - 'ARE' => __( 'Arequipa', 'invoicing' ), |
|
884 | - 'AYA' => __( 'Ayacucho', 'invoicing' ), |
|
885 | - 'CAJ' => __( 'Cajamarca', 'invoicing' ), |
|
886 | - 'CUS' => __( 'Cusco', 'invoicing' ), |
|
887 | - 'HUV' => __( 'Huancavelica', 'invoicing' ), |
|
888 | - 'HUC' => __( 'Huánuco', 'invoicing' ), |
|
889 | - 'ICA' => __( 'Ica', 'invoicing' ), |
|
890 | - 'JUN' => __( 'Junín', 'invoicing' ), |
|
891 | - 'LAL' => __( 'La Libertad', 'invoicing' ), |
|
892 | - 'LAM' => __( 'Lambayeque', 'invoicing' ), |
|
893 | - 'LIM' => __( 'Lima', 'invoicing' ), |
|
894 | - 'LOR' => __( 'Loreto', 'invoicing' ), |
|
895 | - 'MDD' => __( 'Madre de Dios', 'invoicing' ), |
|
896 | - 'MOQ' => __( 'Moquegua', 'invoicing' ), |
|
897 | - 'PAS' => __( 'Pasco', 'invoicing' ), |
|
898 | - 'PIU' => __( 'Piura', 'invoicing' ), |
|
899 | - 'PUN' => __( 'Puno', 'invoicing' ), |
|
900 | - 'SAM' => __( 'San Martín', 'invoicing' ), |
|
901 | - 'TAC' => __( 'Tacna', 'invoicing' ), |
|
902 | - 'TUM' => __( 'Tumbes', 'invoicing' ), |
|
903 | - 'UCA' => __( 'Ucayali', 'invoicing' ) |
|
878 | + 'CAL' => __('El Callao', 'invoicing'), |
|
879 | + 'LMA' => __('Municipalidad Metropolitana de Lima', 'invoicing'), |
|
880 | + 'AMA' => __('Amazonas', 'invoicing'), |
|
881 | + 'ANC' => __('Ancash', 'invoicing'), |
|
882 | + 'APU' => __('Apurímac', 'invoicing'), |
|
883 | + 'ARE' => __('Arequipa', 'invoicing'), |
|
884 | + 'AYA' => __('Ayacucho', 'invoicing'), |
|
885 | + 'CAJ' => __('Cajamarca', 'invoicing'), |
|
886 | + 'CUS' => __('Cusco', 'invoicing'), |
|
887 | + 'HUV' => __('Huancavelica', 'invoicing'), |
|
888 | + 'HUC' => __('Huánuco', 'invoicing'), |
|
889 | + 'ICA' => __('Ica', 'invoicing'), |
|
890 | + 'JUN' => __('Junín', 'invoicing'), |
|
891 | + 'LAL' => __('La Libertad', 'invoicing'), |
|
892 | + 'LAM' => __('Lambayeque', 'invoicing'), |
|
893 | + 'LIM' => __('Lima', 'invoicing'), |
|
894 | + 'LOR' => __('Loreto', 'invoicing'), |
|
895 | + 'MDD' => __('Madre de Dios', 'invoicing'), |
|
896 | + 'MOQ' => __('Moquegua', 'invoicing'), |
|
897 | + 'PAS' => __('Pasco', 'invoicing'), |
|
898 | + 'PIU' => __('Piura', 'invoicing'), |
|
899 | + 'PUN' => __('Puno', 'invoicing'), |
|
900 | + 'SAM' => __('San Martín', 'invoicing'), |
|
901 | + 'TAC' => __('Tacna', 'invoicing'), |
|
902 | + 'TUM' => __('Tumbes', 'invoicing'), |
|
903 | + 'UCA' => __('Ucayali', 'invoicing') |
|
904 | 904 | ); |
905 | 905 | |
906 | - return apply_filters( 'wpinv_peru_states', $states ); |
|
906 | + return apply_filters('wpinv_peru_states', $states); |
|
907 | 907 | } |
908 | 908 | |
909 | 909 | function wpinv_get_indonesia_states_list() { |
910 | - $states = array( |
|
911 | - 'AC' => __( 'Daerah Istimewa Aceh', 'invoicing' ), |
|
912 | - 'SU' => __( 'Sumatera Utara', 'invoicing' ), |
|
913 | - 'SB' => __( 'Sumatera Barat', 'invoicing' ), |
|
914 | - 'RI' => __( 'Riau', 'invoicing' ), |
|
915 | - 'KR' => __( 'Kepulauan Riau', 'invoicing' ), |
|
916 | - 'JA' => __( 'Jambi', 'invoicing' ), |
|
917 | - 'SS' => __( 'Sumatera Selatan', 'invoicing' ), |
|
918 | - 'BB' => __( 'Bangka Belitung', 'invoicing' ), |
|
919 | - 'BE' => __( 'Bengkulu', 'invoicing' ), |
|
920 | - 'LA' => __( 'Lampung', 'invoicing' ), |
|
921 | - 'JK' => __( 'DKI Jakarta', 'invoicing' ), |
|
922 | - 'JB' => __( 'Jawa Barat', 'invoicing' ), |
|
923 | - 'BT' => __( 'Banten', 'invoicing' ), |
|
924 | - 'JT' => __( 'Jawa Tengah', 'invoicing' ), |
|
925 | - 'JI' => __( 'Jawa Timur', 'invoicing' ), |
|
926 | - 'YO' => __( 'Daerah Istimewa Yogyakarta', 'invoicing' ), |
|
927 | - 'BA' => __( 'Bali', 'invoicing' ), |
|
928 | - 'NB' => __( 'Nusa Tenggara Barat', 'invoicing' ), |
|
929 | - 'NT' => __( 'Nusa Tenggara Timur', 'invoicing' ), |
|
930 | - 'KB' => __( 'Kalimantan Barat', 'invoicing' ), |
|
931 | - 'KT' => __( 'Kalimantan Tengah', 'invoicing' ), |
|
932 | - 'KI' => __( 'Kalimantan Timur', 'invoicing' ), |
|
933 | - 'KS' => __( 'Kalimantan Selatan', 'invoicing' ), |
|
934 | - 'KU' => __( 'Kalimantan Utara', 'invoicing' ), |
|
935 | - 'SA' => __( 'Sulawesi Utara', 'invoicing' ), |
|
936 | - 'ST' => __( 'Sulawesi Tengah', 'invoicing' ), |
|
937 | - 'SG' => __( 'Sulawesi Tenggara', 'invoicing' ), |
|
938 | - 'SR' => __( 'Sulawesi Barat', 'invoicing' ), |
|
939 | - 'SN' => __( 'Sulawesi Selatan', 'invoicing' ), |
|
940 | - 'GO' => __( 'Gorontalo', 'invoicing' ), |
|
941 | - 'MA' => __( 'Maluku', 'invoicing' ), |
|
942 | - 'MU' => __( 'Maluku Utara', 'invoicing' ), |
|
943 | - 'PA' => __( 'Papua', 'invoicing' ), |
|
944 | - 'PB' => __( 'Papua Barat', 'invoicing' ) |
|
910 | + $states = array( |
|
911 | + 'AC' => __('Daerah Istimewa Aceh', 'invoicing'), |
|
912 | + 'SU' => __('Sumatera Utara', 'invoicing'), |
|
913 | + 'SB' => __('Sumatera Barat', 'invoicing'), |
|
914 | + 'RI' => __('Riau', 'invoicing'), |
|
915 | + 'KR' => __('Kepulauan Riau', 'invoicing'), |
|
916 | + 'JA' => __('Jambi', 'invoicing'), |
|
917 | + 'SS' => __('Sumatera Selatan', 'invoicing'), |
|
918 | + 'BB' => __('Bangka Belitung', 'invoicing'), |
|
919 | + 'BE' => __('Bengkulu', 'invoicing'), |
|
920 | + 'LA' => __('Lampung', 'invoicing'), |
|
921 | + 'JK' => __('DKI Jakarta', 'invoicing'), |
|
922 | + 'JB' => __('Jawa Barat', 'invoicing'), |
|
923 | + 'BT' => __('Banten', 'invoicing'), |
|
924 | + 'JT' => __('Jawa Tengah', 'invoicing'), |
|
925 | + 'JI' => __('Jawa Timur', 'invoicing'), |
|
926 | + 'YO' => __('Daerah Istimewa Yogyakarta', 'invoicing'), |
|
927 | + 'BA' => __('Bali', 'invoicing'), |
|
928 | + 'NB' => __('Nusa Tenggara Barat', 'invoicing'), |
|
929 | + 'NT' => __('Nusa Tenggara Timur', 'invoicing'), |
|
930 | + 'KB' => __('Kalimantan Barat', 'invoicing'), |
|
931 | + 'KT' => __('Kalimantan Tengah', 'invoicing'), |
|
932 | + 'KI' => __('Kalimantan Timur', 'invoicing'), |
|
933 | + 'KS' => __('Kalimantan Selatan', 'invoicing'), |
|
934 | + 'KU' => __('Kalimantan Utara', 'invoicing'), |
|
935 | + 'SA' => __('Sulawesi Utara', 'invoicing'), |
|
936 | + 'ST' => __('Sulawesi Tengah', 'invoicing'), |
|
937 | + 'SG' => __('Sulawesi Tenggara', 'invoicing'), |
|
938 | + 'SR' => __('Sulawesi Barat', 'invoicing'), |
|
939 | + 'SN' => __('Sulawesi Selatan', 'invoicing'), |
|
940 | + 'GO' => __('Gorontalo', 'invoicing'), |
|
941 | + 'MA' => __('Maluku', 'invoicing'), |
|
942 | + 'MU' => __('Maluku Utara', 'invoicing'), |
|
943 | + 'PA' => __('Papua', 'invoicing'), |
|
944 | + 'PB' => __('Papua Barat', 'invoicing') |
|
945 | 945 | ); |
946 | 946 | |
947 | - return apply_filters( 'wpinv_indonesia_states', $states ); |
|
947 | + return apply_filters('wpinv_indonesia_states', $states); |
|
948 | 948 | } |
949 | 949 | |
950 | 950 | function wpinv_get_india_states_list() { |
951 | 951 | $states = array( |
952 | - 'AP' => __( 'Andhra Pradesh', 'invoicing' ), |
|
953 | - 'AR' => __( 'Arunachal Pradesh', 'invoicing' ), |
|
954 | - 'AS' => __( 'Assam', 'invoicing' ), |
|
955 | - 'BR' => __( 'Bihar', 'invoicing' ), |
|
956 | - 'CT' => __( 'Chhattisgarh', 'invoicing' ), |
|
957 | - 'GA' => __( 'Goa', 'invoicing' ), |
|
958 | - 'GJ' => __( 'Gujarat', 'invoicing' ), |
|
959 | - 'HR' => __( 'Haryana', 'invoicing' ), |
|
960 | - 'HP' => __( 'Himachal Pradesh', 'invoicing' ), |
|
961 | - 'JK' => __( 'Jammu and Kashmir', 'invoicing' ), |
|
962 | - 'JH' => __( 'Jharkhand', 'invoicing' ), |
|
963 | - 'KA' => __( 'Karnataka', 'invoicing' ), |
|
964 | - 'KL' => __( 'Kerala', 'invoicing' ), |
|
965 | - 'MP' => __( 'Madhya Pradesh', 'invoicing' ), |
|
966 | - 'MH' => __( 'Maharashtra', 'invoicing' ), |
|
967 | - 'MN' => __( 'Manipur', 'invoicing' ), |
|
968 | - 'ML' => __( 'Meghalaya', 'invoicing' ), |
|
969 | - 'MZ' => __( 'Mizoram', 'invoicing' ), |
|
970 | - 'NL' => __( 'Nagaland', 'invoicing' ), |
|
971 | - 'OR' => __( 'Orissa', 'invoicing' ), |
|
972 | - 'PB' => __( 'Punjab', 'invoicing' ), |
|
973 | - 'RJ' => __( 'Rajasthan', 'invoicing' ), |
|
974 | - 'SK' => __( 'Sikkim', 'invoicing' ), |
|
975 | - 'TN' => __( 'Tamil Nadu', 'invoicing' ), |
|
976 | - 'TG' => __( 'Telangana', 'invoicing' ), |
|
977 | - 'TR' => __( 'Tripura', 'invoicing' ), |
|
978 | - 'UT' => __( 'Uttarakhand', 'invoicing' ), |
|
979 | - 'UP' => __( 'Uttar Pradesh', 'invoicing' ), |
|
980 | - 'WB' => __( 'West Bengal', 'invoicing' ), |
|
981 | - 'AN' => __( 'Andaman and Nicobar Islands', 'invoicing' ), |
|
982 | - 'CH' => __( 'Chandigarh', 'invoicing' ), |
|
983 | - 'DN' => __( 'Dadar and Nagar Haveli', 'invoicing' ), |
|
984 | - 'DD' => __( 'Daman and Diu', 'invoicing' ), |
|
985 | - 'DL' => __( 'Delhi', 'invoicing' ), |
|
986 | - 'LD' => __( 'Lakshadweep', 'invoicing' ), |
|
987 | - 'PY' => __( 'Pondicherry (Puducherry)', 'invoicing' ) |
|
952 | + 'AP' => __('Andhra Pradesh', 'invoicing'), |
|
953 | + 'AR' => __('Arunachal Pradesh', 'invoicing'), |
|
954 | + 'AS' => __('Assam', 'invoicing'), |
|
955 | + 'BR' => __('Bihar', 'invoicing'), |
|
956 | + 'CT' => __('Chhattisgarh', 'invoicing'), |
|
957 | + 'GA' => __('Goa', 'invoicing'), |
|
958 | + 'GJ' => __('Gujarat', 'invoicing'), |
|
959 | + 'HR' => __('Haryana', 'invoicing'), |
|
960 | + 'HP' => __('Himachal Pradesh', 'invoicing'), |
|
961 | + 'JK' => __('Jammu and Kashmir', 'invoicing'), |
|
962 | + 'JH' => __('Jharkhand', 'invoicing'), |
|
963 | + 'KA' => __('Karnataka', 'invoicing'), |
|
964 | + 'KL' => __('Kerala', 'invoicing'), |
|
965 | + 'MP' => __('Madhya Pradesh', 'invoicing'), |
|
966 | + 'MH' => __('Maharashtra', 'invoicing'), |
|
967 | + 'MN' => __('Manipur', 'invoicing'), |
|
968 | + 'ML' => __('Meghalaya', 'invoicing'), |
|
969 | + 'MZ' => __('Mizoram', 'invoicing'), |
|
970 | + 'NL' => __('Nagaland', 'invoicing'), |
|
971 | + 'OR' => __('Orissa', 'invoicing'), |
|
972 | + 'PB' => __('Punjab', 'invoicing'), |
|
973 | + 'RJ' => __('Rajasthan', 'invoicing'), |
|
974 | + 'SK' => __('Sikkim', 'invoicing'), |
|
975 | + 'TN' => __('Tamil Nadu', 'invoicing'), |
|
976 | + 'TG' => __('Telangana', 'invoicing'), |
|
977 | + 'TR' => __('Tripura', 'invoicing'), |
|
978 | + 'UT' => __('Uttarakhand', 'invoicing'), |
|
979 | + 'UP' => __('Uttar Pradesh', 'invoicing'), |
|
980 | + 'WB' => __('West Bengal', 'invoicing'), |
|
981 | + 'AN' => __('Andaman and Nicobar Islands', 'invoicing'), |
|
982 | + 'CH' => __('Chandigarh', 'invoicing'), |
|
983 | + 'DN' => __('Dadar and Nagar Haveli', 'invoicing'), |
|
984 | + 'DD' => __('Daman and Diu', 'invoicing'), |
|
985 | + 'DL' => __('Delhi', 'invoicing'), |
|
986 | + 'LD' => __('Lakshadweep', 'invoicing'), |
|
987 | + 'PY' => __('Pondicherry (Puducherry)', 'invoicing') |
|
988 | 988 | ); |
989 | 989 | |
990 | - return apply_filters( 'wpinv_india_states', $states ); |
|
990 | + return apply_filters('wpinv_india_states', $states); |
|
991 | 991 | } |
992 | 992 | |
993 | 993 | function wpinv_get_iran_states_list() { |
994 | 994 | $states = array( |
995 | - 'KHZ' => __( 'Khuzestan', 'invoicing' ), |
|
996 | - 'THR' => __( 'Tehran', 'invoicing' ), |
|
997 | - 'ILM' => __( 'Ilaam', 'invoicing' ), |
|
998 | - 'BHR' => __( 'Bushehr', 'invoicing' ), |
|
999 | - 'ADL' => __( 'Ardabil', 'invoicing' ), |
|
1000 | - 'ESF' => __( 'Isfahan', 'invoicing' ), |
|
1001 | - 'YZD' => __( 'Yazd', 'invoicing' ), |
|
1002 | - 'KRH' => __( 'Kermanshah', 'invoicing' ), |
|
1003 | - 'KRN' => __( 'Kerman', 'invoicing' ), |
|
1004 | - 'HDN' => __( 'Hamadan', 'invoicing' ), |
|
1005 | - 'GZN' => __( 'Ghazvin', 'invoicing' ), |
|
1006 | - 'ZJN' => __( 'Zanjan', 'invoicing' ), |
|
1007 | - 'LRS' => __( 'Luristan', 'invoicing' ), |
|
1008 | - 'ABZ' => __( 'Alborz', 'invoicing' ), |
|
1009 | - 'EAZ' => __( 'East Azerbaijan', 'invoicing' ), |
|
1010 | - 'WAZ' => __( 'West Azerbaijan', 'invoicing' ), |
|
1011 | - 'CHB' => __( 'Chaharmahal and Bakhtiari', 'invoicing' ), |
|
1012 | - 'SKH' => __( 'South Khorasan', 'invoicing' ), |
|
1013 | - 'RKH' => __( 'Razavi Khorasan', 'invoicing' ), |
|
1014 | - 'NKH' => __( 'North Khorasan', 'invoicing' ), |
|
1015 | - 'SMN' => __( 'Semnan', 'invoicing' ), |
|
1016 | - 'FRS' => __( 'Fars', 'invoicing' ), |
|
1017 | - 'QHM' => __( 'Qom', 'invoicing' ), |
|
1018 | - 'KRD' => __( 'Kurdistan', 'invoicing' ), |
|
1019 | - 'KBD' => __( 'Kohgiluyeh and BoyerAhmad', 'invoicing' ), |
|
1020 | - 'GLS' => __( 'Golestan', 'invoicing' ), |
|
1021 | - 'GIL' => __( 'Gilan', 'invoicing' ), |
|
1022 | - 'MZN' => __( 'Mazandaran', 'invoicing' ), |
|
1023 | - 'MKZ' => __( 'Markazi', 'invoicing' ), |
|
1024 | - 'HRZ' => __( 'Hormozgan', 'invoicing' ), |
|
1025 | - 'SBN' => __( 'Sistan and Baluchestan', 'invoicing' ) |
|
995 | + 'KHZ' => __('Khuzestan', 'invoicing'), |
|
996 | + 'THR' => __('Tehran', 'invoicing'), |
|
997 | + 'ILM' => __('Ilaam', 'invoicing'), |
|
998 | + 'BHR' => __('Bushehr', 'invoicing'), |
|
999 | + 'ADL' => __('Ardabil', 'invoicing'), |
|
1000 | + 'ESF' => __('Isfahan', 'invoicing'), |
|
1001 | + 'YZD' => __('Yazd', 'invoicing'), |
|
1002 | + 'KRH' => __('Kermanshah', 'invoicing'), |
|
1003 | + 'KRN' => __('Kerman', 'invoicing'), |
|
1004 | + 'HDN' => __('Hamadan', 'invoicing'), |
|
1005 | + 'GZN' => __('Ghazvin', 'invoicing'), |
|
1006 | + 'ZJN' => __('Zanjan', 'invoicing'), |
|
1007 | + 'LRS' => __('Luristan', 'invoicing'), |
|
1008 | + 'ABZ' => __('Alborz', 'invoicing'), |
|
1009 | + 'EAZ' => __('East Azerbaijan', 'invoicing'), |
|
1010 | + 'WAZ' => __('West Azerbaijan', 'invoicing'), |
|
1011 | + 'CHB' => __('Chaharmahal and Bakhtiari', 'invoicing'), |
|
1012 | + 'SKH' => __('South Khorasan', 'invoicing'), |
|
1013 | + 'RKH' => __('Razavi Khorasan', 'invoicing'), |
|
1014 | + 'NKH' => __('North Khorasan', 'invoicing'), |
|
1015 | + 'SMN' => __('Semnan', 'invoicing'), |
|
1016 | + 'FRS' => __('Fars', 'invoicing'), |
|
1017 | + 'QHM' => __('Qom', 'invoicing'), |
|
1018 | + 'KRD' => __('Kurdistan', 'invoicing'), |
|
1019 | + 'KBD' => __('Kohgiluyeh and BoyerAhmad', 'invoicing'), |
|
1020 | + 'GLS' => __('Golestan', 'invoicing'), |
|
1021 | + 'GIL' => __('Gilan', 'invoicing'), |
|
1022 | + 'MZN' => __('Mazandaran', 'invoicing'), |
|
1023 | + 'MKZ' => __('Markazi', 'invoicing'), |
|
1024 | + 'HRZ' => __('Hormozgan', 'invoicing'), |
|
1025 | + 'SBN' => __('Sistan and Baluchestan', 'invoicing') |
|
1026 | 1026 | ); |
1027 | 1027 | |
1028 | - return apply_filters( 'wpinv_iran_states', $states ); |
|
1028 | + return apply_filters('wpinv_iran_states', $states); |
|
1029 | 1029 | } |
1030 | 1030 | |
1031 | 1031 | function wpinv_get_italy_states_list() { |
1032 | 1032 | $states = array( |
1033 | - 'AG' => __( 'Agrigento', 'invoicing' ), |
|
1034 | - 'AL' => __( 'Alessandria', 'invoicing' ), |
|
1035 | - 'AN' => __( 'Ancona', 'invoicing' ), |
|
1036 | - 'AO' => __( 'Aosta', 'invoicing' ), |
|
1037 | - 'AR' => __( 'Arezzo', 'invoicing' ), |
|
1038 | - 'AP' => __( 'Ascoli Piceno', 'invoicing' ), |
|
1039 | - 'AT' => __( 'Asti', 'invoicing' ), |
|
1040 | - 'AV' => __( 'Avellino', 'invoicing' ), |
|
1041 | - 'BA' => __( 'Bari', 'invoicing' ), |
|
1042 | - 'BT' => __( 'Barletta-Andria-Trani', 'invoicing' ), |
|
1043 | - 'BL' => __( 'Belluno', 'invoicing' ), |
|
1044 | - 'BN' => __( 'Benevento', 'invoicing' ), |
|
1045 | - 'BG' => __( 'Bergamo', 'invoicing' ), |
|
1046 | - 'BI' => __( 'Biella', 'invoicing' ), |
|
1047 | - 'BO' => __( 'Bologna', 'invoicing' ), |
|
1048 | - 'BZ' => __( 'Bolzano', 'invoicing' ), |
|
1049 | - 'BS' => __( 'Brescia', 'invoicing' ), |
|
1050 | - 'BR' => __( 'Brindisi', 'invoicing' ), |
|
1051 | - 'CA' => __( 'Cagliari', 'invoicing' ), |
|
1052 | - 'CL' => __( 'Caltanissetta', 'invoicing' ), |
|
1053 | - 'CB' => __( 'Campobasso', 'invoicing' ), |
|
1054 | - 'CI' => __( 'Caltanissetta', 'invoicing' ), |
|
1055 | - 'CE' => __( 'Caserta', 'invoicing' ), |
|
1056 | - 'CT' => __( 'Catania', 'invoicing' ), |
|
1057 | - 'CZ' => __( 'Catanzaro', 'invoicing' ), |
|
1058 | - 'CH' => __( 'Chieti', 'invoicing' ), |
|
1059 | - 'CO' => __( 'Como', 'invoicing' ), |
|
1060 | - 'CS' => __( 'Cosenza', 'invoicing' ), |
|
1061 | - 'CR' => __( 'Cremona', 'invoicing' ), |
|
1062 | - 'KR' => __( 'Crotone', 'invoicing' ), |
|
1063 | - 'CN' => __( 'Cuneo', 'invoicing' ), |
|
1064 | - 'EN' => __( 'Enna', 'invoicing' ), |
|
1065 | - 'FM' => __( 'Fermo', 'invoicing' ), |
|
1066 | - 'FE' => __( 'Ferrara', 'invoicing' ), |
|
1067 | - 'FI' => __( 'Firenze', 'invoicing' ), |
|
1068 | - 'FG' => __( 'Foggia', 'invoicing' ), |
|
1069 | - 'FC' => __( 'Forli-Cesena', 'invoicing' ), |
|
1070 | - 'FR' => __( 'Frosinone', 'invoicing' ), |
|
1071 | - 'GE' => __( 'Genova', 'invoicing' ), |
|
1072 | - 'GO' => __( 'Gorizia', 'invoicing' ), |
|
1073 | - 'GR' => __( 'Grosseto', 'invoicing' ), |
|
1074 | - 'IM' => __( 'Imperia', 'invoicing' ), |
|
1075 | - 'IS' => __( 'Isernia', 'invoicing' ), |
|
1076 | - 'SP' => __( 'La Spezia', 'invoicing' ), |
|
1077 | - 'AQ' => __( 'L'Aquila', 'invoicing' ), |
|
1078 | - 'LT' => __( 'Latina', 'invoicing' ), |
|
1079 | - 'LE' => __( 'Lecce', 'invoicing' ), |
|
1080 | - 'LC' => __( 'Lecco', 'invoicing' ), |
|
1081 | - 'LI' => __( 'Livorno', 'invoicing' ), |
|
1082 | - 'LO' => __( 'Lodi', 'invoicing' ), |
|
1083 | - 'LU' => __( 'Lucca', 'invoicing' ), |
|
1084 | - 'MC' => __( 'Macerata', 'invoicing' ), |
|
1085 | - 'MN' => __( 'Mantova', 'invoicing' ), |
|
1086 | - 'MS' => __( 'Massa-Carrara', 'invoicing' ), |
|
1087 | - 'MT' => __( 'Matera', 'invoicing' ), |
|
1088 | - 'ME' => __( 'Messina', 'invoicing' ), |
|
1089 | - 'MI' => __( 'Milano', 'invoicing' ), |
|
1090 | - 'MO' => __( 'Modena', 'invoicing' ), |
|
1091 | - 'MB' => __( 'Monza e della Brianza', 'invoicing' ), |
|
1092 | - 'NA' => __( 'Napoli', 'invoicing' ), |
|
1093 | - 'NO' => __( 'Novara', 'invoicing' ), |
|
1094 | - 'NU' => __( 'Nuoro', 'invoicing' ), |
|
1095 | - 'OT' => __( 'Olbia-Tempio', 'invoicing' ), |
|
1096 | - 'OR' => __( 'Oristano', 'invoicing' ), |
|
1097 | - 'PD' => __( 'Padova', 'invoicing' ), |
|
1098 | - 'PA' => __( 'Palermo', 'invoicing' ), |
|
1099 | - 'PR' => __( 'Parma', 'invoicing' ), |
|
1100 | - 'PV' => __( 'Pavia', 'invoicing' ), |
|
1101 | - 'PG' => __( 'Perugia', 'invoicing' ), |
|
1102 | - 'PU' => __( 'Pesaro e Urbino', 'invoicing' ), |
|
1103 | - 'PE' => __( 'Pescara', 'invoicing' ), |
|
1104 | - 'PC' => __( 'Piacenza', 'invoicing' ), |
|
1105 | - 'PI' => __( 'Pisa', 'invoicing' ), |
|
1106 | - 'PT' => __( 'Pistoia', 'invoicing' ), |
|
1107 | - 'PN' => __( 'Pordenone', 'invoicing' ), |
|
1108 | - 'PZ' => __( 'Potenza', 'invoicing' ), |
|
1109 | - 'PO' => __( 'Prato', 'invoicing' ), |
|
1110 | - 'RG' => __( 'Ragusa', 'invoicing' ), |
|
1111 | - 'RA' => __( 'Ravenna', 'invoicing' ), |
|
1112 | - 'RC' => __( 'Reggio Calabria', 'invoicing' ), |
|
1113 | - 'RE' => __( 'Reggio Emilia', 'invoicing' ), |
|
1114 | - 'RI' => __( 'Rieti', 'invoicing' ), |
|
1115 | - 'RN' => __( 'Rimini', 'invoicing' ), |
|
1116 | - 'RM' => __( 'Roma', 'invoicing' ), |
|
1117 | - 'RO' => __( 'Rovigo', 'invoicing' ), |
|
1118 | - 'SA' => __( 'Salerno', 'invoicing' ), |
|
1119 | - 'VS' => __( 'Medio Campidano', 'invoicing' ), |
|
1120 | - 'SS' => __( 'Sassari', 'invoicing' ), |
|
1121 | - 'SV' => __( 'Savona', 'invoicing' ), |
|
1122 | - 'SI' => __( 'Siena', 'invoicing' ), |
|
1123 | - 'SR' => __( 'Siracusa', 'invoicing' ), |
|
1124 | - 'SO' => __( 'Sondrio', 'invoicing' ), |
|
1125 | - 'TA' => __( 'Taranto', 'invoicing' ), |
|
1126 | - 'TE' => __( 'Teramo', 'invoicing' ), |
|
1127 | - 'TR' => __( 'Terni', 'invoicing' ), |
|
1128 | - 'TO' => __( 'Torino', 'invoicing' ), |
|
1129 | - 'OG' => __( 'Ogliastra', 'invoicing' ), |
|
1130 | - 'TP' => __( 'Trapani', 'invoicing' ), |
|
1131 | - 'TN' => __( 'Trento', 'invoicing' ), |
|
1132 | - 'TV' => __( 'Treviso', 'invoicing' ), |
|
1133 | - 'TS' => __( 'Trieste', 'invoicing' ), |
|
1134 | - 'UD' => __( 'Udine', 'invoicing' ), |
|
1135 | - 'VA' => __( 'Varesa', 'invoicing' ), |
|
1136 | - 'VE' => __( 'Venezia', 'invoicing' ), |
|
1137 | - 'VB' => __( 'Verbano-Cusio-Ossola', 'invoicing' ), |
|
1138 | - 'VC' => __( 'Vercelli', 'invoicing' ), |
|
1139 | - 'VR' => __( 'Verona', 'invoicing' ), |
|
1140 | - 'VV' => __( 'Vibo Valentia', 'invoicing' ), |
|
1141 | - 'VI' => __( 'Vicenza', 'invoicing' ), |
|
1142 | - 'VT' => __( 'Viterbo', 'invoicing' ) |
|
1033 | + 'AG' => __('Agrigento', 'invoicing'), |
|
1034 | + 'AL' => __('Alessandria', 'invoicing'), |
|
1035 | + 'AN' => __('Ancona', 'invoicing'), |
|
1036 | + 'AO' => __('Aosta', 'invoicing'), |
|
1037 | + 'AR' => __('Arezzo', 'invoicing'), |
|
1038 | + 'AP' => __('Ascoli Piceno', 'invoicing'), |
|
1039 | + 'AT' => __('Asti', 'invoicing'), |
|
1040 | + 'AV' => __('Avellino', 'invoicing'), |
|
1041 | + 'BA' => __('Bari', 'invoicing'), |
|
1042 | + 'BT' => __('Barletta-Andria-Trani', 'invoicing'), |
|
1043 | + 'BL' => __('Belluno', 'invoicing'), |
|
1044 | + 'BN' => __('Benevento', 'invoicing'), |
|
1045 | + 'BG' => __('Bergamo', 'invoicing'), |
|
1046 | + 'BI' => __('Biella', 'invoicing'), |
|
1047 | + 'BO' => __('Bologna', 'invoicing'), |
|
1048 | + 'BZ' => __('Bolzano', 'invoicing'), |
|
1049 | + 'BS' => __('Brescia', 'invoicing'), |
|
1050 | + 'BR' => __('Brindisi', 'invoicing'), |
|
1051 | + 'CA' => __('Cagliari', 'invoicing'), |
|
1052 | + 'CL' => __('Caltanissetta', 'invoicing'), |
|
1053 | + 'CB' => __('Campobasso', 'invoicing'), |
|
1054 | + 'CI' => __('Caltanissetta', 'invoicing'), |
|
1055 | + 'CE' => __('Caserta', 'invoicing'), |
|
1056 | + 'CT' => __('Catania', 'invoicing'), |
|
1057 | + 'CZ' => __('Catanzaro', 'invoicing'), |
|
1058 | + 'CH' => __('Chieti', 'invoicing'), |
|
1059 | + 'CO' => __('Como', 'invoicing'), |
|
1060 | + 'CS' => __('Cosenza', 'invoicing'), |
|
1061 | + 'CR' => __('Cremona', 'invoicing'), |
|
1062 | + 'KR' => __('Crotone', 'invoicing'), |
|
1063 | + 'CN' => __('Cuneo', 'invoicing'), |
|
1064 | + 'EN' => __('Enna', 'invoicing'), |
|
1065 | + 'FM' => __('Fermo', 'invoicing'), |
|
1066 | + 'FE' => __('Ferrara', 'invoicing'), |
|
1067 | + 'FI' => __('Firenze', 'invoicing'), |
|
1068 | + 'FG' => __('Foggia', 'invoicing'), |
|
1069 | + 'FC' => __('Forli-Cesena', 'invoicing'), |
|
1070 | + 'FR' => __('Frosinone', 'invoicing'), |
|
1071 | + 'GE' => __('Genova', 'invoicing'), |
|
1072 | + 'GO' => __('Gorizia', 'invoicing'), |
|
1073 | + 'GR' => __('Grosseto', 'invoicing'), |
|
1074 | + 'IM' => __('Imperia', 'invoicing'), |
|
1075 | + 'IS' => __('Isernia', 'invoicing'), |
|
1076 | + 'SP' => __('La Spezia', 'invoicing'), |
|
1077 | + 'AQ' => __('L'Aquila', 'invoicing'), |
|
1078 | + 'LT' => __('Latina', 'invoicing'), |
|
1079 | + 'LE' => __('Lecce', 'invoicing'), |
|
1080 | + 'LC' => __('Lecco', 'invoicing'), |
|
1081 | + 'LI' => __('Livorno', 'invoicing'), |
|
1082 | + 'LO' => __('Lodi', 'invoicing'), |
|
1083 | + 'LU' => __('Lucca', 'invoicing'), |
|
1084 | + 'MC' => __('Macerata', 'invoicing'), |
|
1085 | + 'MN' => __('Mantova', 'invoicing'), |
|
1086 | + 'MS' => __('Massa-Carrara', 'invoicing'), |
|
1087 | + 'MT' => __('Matera', 'invoicing'), |
|
1088 | + 'ME' => __('Messina', 'invoicing'), |
|
1089 | + 'MI' => __('Milano', 'invoicing'), |
|
1090 | + 'MO' => __('Modena', 'invoicing'), |
|
1091 | + 'MB' => __('Monza e della Brianza', 'invoicing'), |
|
1092 | + 'NA' => __('Napoli', 'invoicing'), |
|
1093 | + 'NO' => __('Novara', 'invoicing'), |
|
1094 | + 'NU' => __('Nuoro', 'invoicing'), |
|
1095 | + 'OT' => __('Olbia-Tempio', 'invoicing'), |
|
1096 | + 'OR' => __('Oristano', 'invoicing'), |
|
1097 | + 'PD' => __('Padova', 'invoicing'), |
|
1098 | + 'PA' => __('Palermo', 'invoicing'), |
|
1099 | + 'PR' => __('Parma', 'invoicing'), |
|
1100 | + 'PV' => __('Pavia', 'invoicing'), |
|
1101 | + 'PG' => __('Perugia', 'invoicing'), |
|
1102 | + 'PU' => __('Pesaro e Urbino', 'invoicing'), |
|
1103 | + 'PE' => __('Pescara', 'invoicing'), |
|
1104 | + 'PC' => __('Piacenza', 'invoicing'), |
|
1105 | + 'PI' => __('Pisa', 'invoicing'), |
|
1106 | + 'PT' => __('Pistoia', 'invoicing'), |
|
1107 | + 'PN' => __('Pordenone', 'invoicing'), |
|
1108 | + 'PZ' => __('Potenza', 'invoicing'), |
|
1109 | + 'PO' => __('Prato', 'invoicing'), |
|
1110 | + 'RG' => __('Ragusa', 'invoicing'), |
|
1111 | + 'RA' => __('Ravenna', 'invoicing'), |
|
1112 | + 'RC' => __('Reggio Calabria', 'invoicing'), |
|
1113 | + 'RE' => __('Reggio Emilia', 'invoicing'), |
|
1114 | + 'RI' => __('Rieti', 'invoicing'), |
|
1115 | + 'RN' => __('Rimini', 'invoicing'), |
|
1116 | + 'RM' => __('Roma', 'invoicing'), |
|
1117 | + 'RO' => __('Rovigo', 'invoicing'), |
|
1118 | + 'SA' => __('Salerno', 'invoicing'), |
|
1119 | + 'VS' => __('Medio Campidano', 'invoicing'), |
|
1120 | + 'SS' => __('Sassari', 'invoicing'), |
|
1121 | + 'SV' => __('Savona', 'invoicing'), |
|
1122 | + 'SI' => __('Siena', 'invoicing'), |
|
1123 | + 'SR' => __('Siracusa', 'invoicing'), |
|
1124 | + 'SO' => __('Sondrio', 'invoicing'), |
|
1125 | + 'TA' => __('Taranto', 'invoicing'), |
|
1126 | + 'TE' => __('Teramo', 'invoicing'), |
|
1127 | + 'TR' => __('Terni', 'invoicing'), |
|
1128 | + 'TO' => __('Torino', 'invoicing'), |
|
1129 | + 'OG' => __('Ogliastra', 'invoicing'), |
|
1130 | + 'TP' => __('Trapani', 'invoicing'), |
|
1131 | + 'TN' => __('Trento', 'invoicing'), |
|
1132 | + 'TV' => __('Treviso', 'invoicing'), |
|
1133 | + 'TS' => __('Trieste', 'invoicing'), |
|
1134 | + 'UD' => __('Udine', 'invoicing'), |
|
1135 | + 'VA' => __('Varesa', 'invoicing'), |
|
1136 | + 'VE' => __('Venezia', 'invoicing'), |
|
1137 | + 'VB' => __('Verbano-Cusio-Ossola', 'invoicing'), |
|
1138 | + 'VC' => __('Vercelli', 'invoicing'), |
|
1139 | + 'VR' => __('Verona', 'invoicing'), |
|
1140 | + 'VV' => __('Vibo Valentia', 'invoicing'), |
|
1141 | + 'VI' => __('Vicenza', 'invoicing'), |
|
1142 | + 'VT' => __('Viterbo', 'invoicing') |
|
1143 | 1143 | ); |
1144 | 1144 | |
1145 | - return apply_filters( 'wpinv_italy_states', $states ); |
|
1145 | + return apply_filters('wpinv_italy_states', $states); |
|
1146 | 1146 | } |
1147 | 1147 | |
1148 | 1148 | function wpinv_get_malaysia_states_list() { |
1149 | 1149 | $states = array( |
1150 | - 'JHR' => __( 'Johor', 'invoicing' ), |
|
1151 | - 'KDH' => __( 'Kedah', 'invoicing' ), |
|
1152 | - 'KTN' => __( 'Kelantan', 'invoicing' ), |
|
1153 | - 'MLK' => __( 'Melaka', 'invoicing' ), |
|
1154 | - 'NSN' => __( 'Negeri Sembilan', 'invoicing' ), |
|
1155 | - 'PHG' => __( 'Pahang', 'invoicing' ), |
|
1156 | - 'PRK' => __( 'Perak', 'invoicing' ), |
|
1157 | - 'PLS' => __( 'Perlis', 'invoicing' ), |
|
1158 | - 'PNG' => __( 'Pulau Pinang', 'invoicing' ), |
|
1159 | - 'SBH' => __( 'Sabah', 'invoicing' ), |
|
1160 | - 'SWK' => __( 'Sarawak', 'invoicing' ), |
|
1161 | - 'SGR' => __( 'Selangor', 'invoicing' ), |
|
1162 | - 'TRG' => __( 'Terengganu', 'invoicing' ), |
|
1163 | - 'KUL' => __( 'W.P. Kuala Lumpur', 'invoicing' ), |
|
1164 | - 'LBN' => __( 'W.P. Labuan', 'invoicing' ), |
|
1165 | - 'PJY' => __( 'W.P. Putrajaya', 'invoicing' ) |
|
1150 | + 'JHR' => __('Johor', 'invoicing'), |
|
1151 | + 'KDH' => __('Kedah', 'invoicing'), |
|
1152 | + 'KTN' => __('Kelantan', 'invoicing'), |
|
1153 | + 'MLK' => __('Melaka', 'invoicing'), |
|
1154 | + 'NSN' => __('Negeri Sembilan', 'invoicing'), |
|
1155 | + 'PHG' => __('Pahang', 'invoicing'), |
|
1156 | + 'PRK' => __('Perak', 'invoicing'), |
|
1157 | + 'PLS' => __('Perlis', 'invoicing'), |
|
1158 | + 'PNG' => __('Pulau Pinang', 'invoicing'), |
|
1159 | + 'SBH' => __('Sabah', 'invoicing'), |
|
1160 | + 'SWK' => __('Sarawak', 'invoicing'), |
|
1161 | + 'SGR' => __('Selangor', 'invoicing'), |
|
1162 | + 'TRG' => __('Terengganu', 'invoicing'), |
|
1163 | + 'KUL' => __('W.P. Kuala Lumpur', 'invoicing'), |
|
1164 | + 'LBN' => __('W.P. Labuan', 'invoicing'), |
|
1165 | + 'PJY' => __('W.P. Putrajaya', 'invoicing') |
|
1166 | 1166 | ); |
1167 | 1167 | |
1168 | - return apply_filters( 'wpinv_malaysia_states', $states ); |
|
1168 | + return apply_filters('wpinv_malaysia_states', $states); |
|
1169 | 1169 | } |
1170 | 1170 | |
1171 | 1171 | function wpinv_get_mexico_states_list() { |
1172 | 1172 | $states = array( |
1173 | - 'DIF' => __( 'Distrito Federal', 'invoicing' ), |
|
1174 | - 'JAL' => __( 'Jalisco', 'invoicing' ), |
|
1175 | - 'NLE' => __( 'Nuevo León', 'invoicing' ), |
|
1176 | - 'AGU' => __( 'Aguascalientes', 'invoicing' ), |
|
1177 | - 'BCN' => __( 'Baja California Norte', 'invoicing' ), |
|
1178 | - 'BCS' => __( 'Baja California Sur', 'invoicing' ), |
|
1179 | - 'CAM' => __( 'Campeche', 'invoicing' ), |
|
1180 | - 'CHP' => __( 'Chiapas', 'invoicing' ), |
|
1181 | - 'CHH' => __( 'Chihuahua', 'invoicing' ), |
|
1182 | - 'COA' => __( 'Coahuila', 'invoicing' ), |
|
1183 | - 'COL' => __( 'Colima', 'invoicing' ), |
|
1184 | - 'DUR' => __( 'Durango', 'invoicing' ), |
|
1185 | - 'GUA' => __( 'Guanajuato', 'invoicing' ), |
|
1186 | - 'GRO' => __( 'Guerrero', 'invoicing' ), |
|
1187 | - 'HID' => __( 'Hidalgo', 'invoicing' ), |
|
1188 | - 'MEX' => __( 'Edo. de México', 'invoicing' ), |
|
1189 | - 'MIC' => __( 'Michoacán', 'invoicing' ), |
|
1190 | - 'MOR' => __( 'Morelos', 'invoicing' ), |
|
1191 | - 'NAY' => __( 'Nayarit', 'invoicing' ), |
|
1192 | - 'OAX' => __( 'Oaxaca', 'invoicing' ), |
|
1193 | - 'PUE' => __( 'Puebla', 'invoicing' ), |
|
1194 | - 'QUE' => __( 'Querétaro', 'invoicing' ), |
|
1195 | - 'ROO' => __( 'Quintana Roo', 'invoicing' ), |
|
1196 | - 'SLP' => __( 'San Luis Potosí', 'invoicing' ), |
|
1197 | - 'SIN' => __( 'Sinaloa', 'invoicing' ), |
|
1198 | - 'SON' => __( 'Sonora', 'invoicing' ), |
|
1199 | - 'TAB' => __( 'Tabasco', 'invoicing' ), |
|
1200 | - 'TAM' => __( 'Tamaulipas', 'invoicing' ), |
|
1201 | - 'TLA' => __( 'Tlaxcala', 'invoicing' ), |
|
1202 | - 'VER' => __( 'Veracruz', 'invoicing' ), |
|
1203 | - 'YUC' => __( 'Yucatán', 'invoicing' ), |
|
1204 | - 'ZAC' => __( 'Zacatecas', 'invoicing' ) |
|
1173 | + 'DIF' => __('Distrito Federal', 'invoicing'), |
|
1174 | + 'JAL' => __('Jalisco', 'invoicing'), |
|
1175 | + 'NLE' => __('Nuevo León', 'invoicing'), |
|
1176 | + 'AGU' => __('Aguascalientes', 'invoicing'), |
|
1177 | + 'BCN' => __('Baja California Norte', 'invoicing'), |
|
1178 | + 'BCS' => __('Baja California Sur', 'invoicing'), |
|
1179 | + 'CAM' => __('Campeche', 'invoicing'), |
|
1180 | + 'CHP' => __('Chiapas', 'invoicing'), |
|
1181 | + 'CHH' => __('Chihuahua', 'invoicing'), |
|
1182 | + 'COA' => __('Coahuila', 'invoicing'), |
|
1183 | + 'COL' => __('Colima', 'invoicing'), |
|
1184 | + 'DUR' => __('Durango', 'invoicing'), |
|
1185 | + 'GUA' => __('Guanajuato', 'invoicing'), |
|
1186 | + 'GRO' => __('Guerrero', 'invoicing'), |
|
1187 | + 'HID' => __('Hidalgo', 'invoicing'), |
|
1188 | + 'MEX' => __('Edo. de México', 'invoicing'), |
|
1189 | + 'MIC' => __('Michoacán', 'invoicing'), |
|
1190 | + 'MOR' => __('Morelos', 'invoicing'), |
|
1191 | + 'NAY' => __('Nayarit', 'invoicing'), |
|
1192 | + 'OAX' => __('Oaxaca', 'invoicing'), |
|
1193 | + 'PUE' => __('Puebla', 'invoicing'), |
|
1194 | + 'QUE' => __('Querétaro', 'invoicing'), |
|
1195 | + 'ROO' => __('Quintana Roo', 'invoicing'), |
|
1196 | + 'SLP' => __('San Luis Potosí', 'invoicing'), |
|
1197 | + 'SIN' => __('Sinaloa', 'invoicing'), |
|
1198 | + 'SON' => __('Sonora', 'invoicing'), |
|
1199 | + 'TAB' => __('Tabasco', 'invoicing'), |
|
1200 | + 'TAM' => __('Tamaulipas', 'invoicing'), |
|
1201 | + 'TLA' => __('Tlaxcala', 'invoicing'), |
|
1202 | + 'VER' => __('Veracruz', 'invoicing'), |
|
1203 | + 'YUC' => __('Yucatán', 'invoicing'), |
|
1204 | + 'ZAC' => __('Zacatecas', 'invoicing') |
|
1205 | 1205 | ); |
1206 | 1206 | |
1207 | - return apply_filters( 'wpinv_mexico_states', $states ); |
|
1207 | + return apply_filters('wpinv_mexico_states', $states); |
|
1208 | 1208 | } |
1209 | 1209 | |
1210 | 1210 | function wpinv_get_nepal_states_list() { |
1211 | 1211 | $states = array( |
1212 | - 'ILL' => __( 'Illam', 'invoicing' ), |
|
1213 | - 'JHA' => __( 'Jhapa', 'invoicing' ), |
|
1214 | - 'PAN' => __( 'Panchthar', 'invoicing' ), |
|
1215 | - 'TAP' => __( 'Taplejung', 'invoicing' ), |
|
1216 | - 'BHO' => __( 'Bhojpur', 'invoicing' ), |
|
1217 | - 'DKA' => __( 'Dhankuta', 'invoicing' ), |
|
1218 | - 'MOR' => __( 'Morang', 'invoicing' ), |
|
1219 | - 'SUN' => __( 'Sunsari', 'invoicing' ), |
|
1220 | - 'SAN' => __( 'Sankhuwa', 'invoicing' ), |
|
1221 | - 'TER' => __( 'Terhathum', 'invoicing' ), |
|
1222 | - 'KHO' => __( 'Khotang', 'invoicing' ), |
|
1223 | - 'OKH' => __( 'Okhaldhunga', 'invoicing' ), |
|
1224 | - 'SAP' => __( 'Saptari', 'invoicing' ), |
|
1225 | - 'SIR' => __( 'Siraha', 'invoicing' ), |
|
1226 | - 'SOL' => __( 'Solukhumbu', 'invoicing' ), |
|
1227 | - 'UDA' => __( 'Udayapur', 'invoicing' ), |
|
1228 | - 'DHA' => __( 'Dhanusa', 'invoicing' ), |
|
1229 | - 'DLK' => __( 'Dolakha', 'invoicing' ), |
|
1230 | - 'MOH' => __( 'Mohottari', 'invoicing' ), |
|
1231 | - 'RAM' => __( 'Ramechha', 'invoicing' ), |
|
1232 | - 'SAR' => __( 'Sarlahi', 'invoicing' ), |
|
1233 | - 'SIN' => __( 'Sindhuli', 'invoicing' ), |
|
1234 | - 'BHA' => __( 'Bhaktapur', 'invoicing' ), |
|
1235 | - 'DHD' => __( 'Dhading', 'invoicing' ), |
|
1236 | - 'KTM' => __( 'Kathmandu', 'invoicing' ), |
|
1237 | - 'KAV' => __( 'Kavrepalanchowk', 'invoicing' ), |
|
1238 | - 'LAL' => __( 'Lalitpur', 'invoicing' ), |
|
1239 | - 'NUW' => __( 'Nuwakot', 'invoicing' ), |
|
1240 | - 'RAS' => __( 'Rasuwa', 'invoicing' ), |
|
1241 | - 'SPC' => __( 'Sindhupalchowk', 'invoicing' ), |
|
1242 | - 'BAR' => __( 'Bara', 'invoicing' ), |
|
1243 | - 'CHI' => __( 'Chitwan', 'invoicing' ), |
|
1244 | - 'MAK' => __( 'Makwanpur', 'invoicing' ), |
|
1245 | - 'PAR' => __( 'Parsa', 'invoicing' ), |
|
1246 | - 'RAU' => __( 'Rautahat', 'invoicing' ), |
|
1247 | - 'GOR' => __( 'Gorkha', 'invoicing' ), |
|
1248 | - 'KAS' => __( 'Kaski', 'invoicing' ), |
|
1249 | - 'LAM' => __( 'Lamjung', 'invoicing' ), |
|
1250 | - 'MAN' => __( 'Manang', 'invoicing' ), |
|
1251 | - 'SYN' => __( 'Syangja', 'invoicing' ), |
|
1252 | - 'TAN' => __( 'Tanahun', 'invoicing' ), |
|
1253 | - 'BAG' => __( 'Baglung', 'invoicing' ), |
|
1254 | - 'PBT' => __( 'Parbat', 'invoicing' ), |
|
1255 | - 'MUS' => __( 'Mustang', 'invoicing' ), |
|
1256 | - 'MYG' => __( 'Myagdi', 'invoicing' ), |
|
1257 | - 'AGR' => __( 'Agrghakanchi', 'invoicing' ), |
|
1258 | - 'GUL' => __( 'Gulmi', 'invoicing' ), |
|
1259 | - 'KAP' => __( 'Kapilbastu', 'invoicing' ), |
|
1260 | - 'NAW' => __( 'Nawalparasi', 'invoicing' ), |
|
1261 | - 'PAL' => __( 'Palpa', 'invoicing' ), |
|
1262 | - 'RUP' => __( 'Rupandehi', 'invoicing' ), |
|
1263 | - 'DAN' => __( 'Dang', 'invoicing' ), |
|
1264 | - 'PYU' => __( 'Pyuthan', 'invoicing' ), |
|
1265 | - 'ROL' => __( 'Rolpa', 'invoicing' ), |
|
1266 | - 'RUK' => __( 'Rukum', 'invoicing' ), |
|
1267 | - 'SAL' => __( 'Salyan', 'invoicing' ), |
|
1268 | - 'BAN' => __( 'Banke', 'invoicing' ), |
|
1269 | - 'BDA' => __( 'Bardiya', 'invoicing' ), |
|
1270 | - 'DAI' => __( 'Dailekh', 'invoicing' ), |
|
1271 | - 'JAJ' => __( 'Jajarkot', 'invoicing' ), |
|
1272 | - 'SUR' => __( 'Surkhet', 'invoicing' ), |
|
1273 | - 'DOL' => __( 'Dolpa', 'invoicing' ), |
|
1274 | - 'HUM' => __( 'Humla', 'invoicing' ), |
|
1275 | - 'JUM' => __( 'Jumla', 'invoicing' ), |
|
1276 | - 'KAL' => __( 'Kalikot', 'invoicing' ), |
|
1277 | - 'MUG' => __( 'Mugu', 'invoicing' ), |
|
1278 | - 'ACH' => __( 'Achham', 'invoicing' ), |
|
1279 | - 'BJH' => __( 'Bajhang', 'invoicing' ), |
|
1280 | - 'BJU' => __( 'Bajura', 'invoicing' ), |
|
1281 | - 'DOT' => __( 'Doti', 'invoicing' ), |
|
1282 | - 'KAI' => __( 'Kailali', 'invoicing' ), |
|
1283 | - 'BAI' => __( 'Baitadi', 'invoicing' ), |
|
1284 | - 'DAD' => __( 'Dadeldhura', 'invoicing' ), |
|
1285 | - 'DAR' => __( 'Darchula', 'invoicing' ), |
|
1286 | - 'KAN' => __( 'Kanchanpur', 'invoicing' ) |
|
1212 | + 'ILL' => __('Illam', 'invoicing'), |
|
1213 | + 'JHA' => __('Jhapa', 'invoicing'), |
|
1214 | + 'PAN' => __('Panchthar', 'invoicing'), |
|
1215 | + 'TAP' => __('Taplejung', 'invoicing'), |
|
1216 | + 'BHO' => __('Bhojpur', 'invoicing'), |
|
1217 | + 'DKA' => __('Dhankuta', 'invoicing'), |
|
1218 | + 'MOR' => __('Morang', 'invoicing'), |
|
1219 | + 'SUN' => __('Sunsari', 'invoicing'), |
|
1220 | + 'SAN' => __('Sankhuwa', 'invoicing'), |
|
1221 | + 'TER' => __('Terhathum', 'invoicing'), |
|
1222 | + 'KHO' => __('Khotang', 'invoicing'), |
|
1223 | + 'OKH' => __('Okhaldhunga', 'invoicing'), |
|
1224 | + 'SAP' => __('Saptari', 'invoicing'), |
|
1225 | + 'SIR' => __('Siraha', 'invoicing'), |
|
1226 | + 'SOL' => __('Solukhumbu', 'invoicing'), |
|
1227 | + 'UDA' => __('Udayapur', 'invoicing'), |
|
1228 | + 'DHA' => __('Dhanusa', 'invoicing'), |
|
1229 | + 'DLK' => __('Dolakha', 'invoicing'), |
|
1230 | + 'MOH' => __('Mohottari', 'invoicing'), |
|
1231 | + 'RAM' => __('Ramechha', 'invoicing'), |
|
1232 | + 'SAR' => __('Sarlahi', 'invoicing'), |
|
1233 | + 'SIN' => __('Sindhuli', 'invoicing'), |
|
1234 | + 'BHA' => __('Bhaktapur', 'invoicing'), |
|
1235 | + 'DHD' => __('Dhading', 'invoicing'), |
|
1236 | + 'KTM' => __('Kathmandu', 'invoicing'), |
|
1237 | + 'KAV' => __('Kavrepalanchowk', 'invoicing'), |
|
1238 | + 'LAL' => __('Lalitpur', 'invoicing'), |
|
1239 | + 'NUW' => __('Nuwakot', 'invoicing'), |
|
1240 | + 'RAS' => __('Rasuwa', 'invoicing'), |
|
1241 | + 'SPC' => __('Sindhupalchowk', 'invoicing'), |
|
1242 | + 'BAR' => __('Bara', 'invoicing'), |
|
1243 | + 'CHI' => __('Chitwan', 'invoicing'), |
|
1244 | + 'MAK' => __('Makwanpur', 'invoicing'), |
|
1245 | + 'PAR' => __('Parsa', 'invoicing'), |
|
1246 | + 'RAU' => __('Rautahat', 'invoicing'), |
|
1247 | + 'GOR' => __('Gorkha', 'invoicing'), |
|
1248 | + 'KAS' => __('Kaski', 'invoicing'), |
|
1249 | + 'LAM' => __('Lamjung', 'invoicing'), |
|
1250 | + 'MAN' => __('Manang', 'invoicing'), |
|
1251 | + 'SYN' => __('Syangja', 'invoicing'), |
|
1252 | + 'TAN' => __('Tanahun', 'invoicing'), |
|
1253 | + 'BAG' => __('Baglung', 'invoicing'), |
|
1254 | + 'PBT' => __('Parbat', 'invoicing'), |
|
1255 | + 'MUS' => __('Mustang', 'invoicing'), |
|
1256 | + 'MYG' => __('Myagdi', 'invoicing'), |
|
1257 | + 'AGR' => __('Agrghakanchi', 'invoicing'), |
|
1258 | + 'GUL' => __('Gulmi', 'invoicing'), |
|
1259 | + 'KAP' => __('Kapilbastu', 'invoicing'), |
|
1260 | + 'NAW' => __('Nawalparasi', 'invoicing'), |
|
1261 | + 'PAL' => __('Palpa', 'invoicing'), |
|
1262 | + 'RUP' => __('Rupandehi', 'invoicing'), |
|
1263 | + 'DAN' => __('Dang', 'invoicing'), |
|
1264 | + 'PYU' => __('Pyuthan', 'invoicing'), |
|
1265 | + 'ROL' => __('Rolpa', 'invoicing'), |
|
1266 | + 'RUK' => __('Rukum', 'invoicing'), |
|
1267 | + 'SAL' => __('Salyan', 'invoicing'), |
|
1268 | + 'BAN' => __('Banke', 'invoicing'), |
|
1269 | + 'BDA' => __('Bardiya', 'invoicing'), |
|
1270 | + 'DAI' => __('Dailekh', 'invoicing'), |
|
1271 | + 'JAJ' => __('Jajarkot', 'invoicing'), |
|
1272 | + 'SUR' => __('Surkhet', 'invoicing'), |
|
1273 | + 'DOL' => __('Dolpa', 'invoicing'), |
|
1274 | + 'HUM' => __('Humla', 'invoicing'), |
|
1275 | + 'JUM' => __('Jumla', 'invoicing'), |
|
1276 | + 'KAL' => __('Kalikot', 'invoicing'), |
|
1277 | + 'MUG' => __('Mugu', 'invoicing'), |
|
1278 | + 'ACH' => __('Achham', 'invoicing'), |
|
1279 | + 'BJH' => __('Bajhang', 'invoicing'), |
|
1280 | + 'BJU' => __('Bajura', 'invoicing'), |
|
1281 | + 'DOT' => __('Doti', 'invoicing'), |
|
1282 | + 'KAI' => __('Kailali', 'invoicing'), |
|
1283 | + 'BAI' => __('Baitadi', 'invoicing'), |
|
1284 | + 'DAD' => __('Dadeldhura', 'invoicing'), |
|
1285 | + 'DAR' => __('Darchula', 'invoicing'), |
|
1286 | + 'KAN' => __('Kanchanpur', 'invoicing') |
|
1287 | 1287 | ); |
1288 | 1288 | |
1289 | - return apply_filters( 'wpinv_nepal_states', $states ); |
|
1289 | + return apply_filters('wpinv_nepal_states', $states); |
|
1290 | 1290 | } |
1291 | 1291 | |
1292 | 1292 | function wpinv_get_south_africa_states_list() { |
1293 | 1293 | $states = array( |
1294 | - 'EC' => __( 'Eastern Cape', 'invoicing' ), |
|
1295 | - 'FS' => __( 'Free State', 'invoicing' ), |
|
1296 | - 'GP' => __( 'Gauteng', 'invoicing' ), |
|
1297 | - 'KZN' => __( 'KwaZulu-Natal', 'invoicing' ), |
|
1298 | - 'LP' => __( 'Limpopo', 'invoicing' ), |
|
1299 | - 'MP' => __( 'Mpumalanga', 'invoicing' ), |
|
1300 | - 'NC' => __( 'Northern Cape', 'invoicing' ), |
|
1301 | - 'NW' => __( 'North West', 'invoicing' ), |
|
1302 | - 'WC' => __( 'Western Cape', 'invoicing' ) |
|
1294 | + 'EC' => __('Eastern Cape', 'invoicing'), |
|
1295 | + 'FS' => __('Free State', 'invoicing'), |
|
1296 | + 'GP' => __('Gauteng', 'invoicing'), |
|
1297 | + 'KZN' => __('KwaZulu-Natal', 'invoicing'), |
|
1298 | + 'LP' => __('Limpopo', 'invoicing'), |
|
1299 | + 'MP' => __('Mpumalanga', 'invoicing'), |
|
1300 | + 'NC' => __('Northern Cape', 'invoicing'), |
|
1301 | + 'NW' => __('North West', 'invoicing'), |
|
1302 | + 'WC' => __('Western Cape', 'invoicing') |
|
1303 | 1303 | ); |
1304 | 1304 | |
1305 | - return apply_filters( 'wpinv_south_africa_states', $states ); |
|
1305 | + return apply_filters('wpinv_south_africa_states', $states); |
|
1306 | 1306 | } |
1307 | 1307 | |
1308 | 1308 | function wpinv_get_thailand_states_list() { |
1309 | 1309 | $states = array( |
1310 | - 'TH-37' => __( 'Amnat Charoen (อำนาจเจริญ)', 'invoicing' ), |
|
1311 | - 'TH-15' => __( 'Ang Thong (อ่างทอง)', 'invoicing' ), |
|
1312 | - 'TH-14' => __( 'Ayutthaya (พระนครศรีอยุธยา)', 'invoicing' ), |
|
1313 | - 'TH-10' => __( 'Bangkok (กรุงเทพมหานคร)', 'invoicing' ), |
|
1314 | - 'TH-38' => __( 'Bueng Kan (บึงกาฬ)', 'invoicing' ), |
|
1315 | - 'TH-31' => __( 'Buri Ram (บุรีรัมย์)', 'invoicing' ), |
|
1316 | - 'TH-24' => __( 'Chachoengsao (ฉะเชิงเทรา)', 'invoicing' ), |
|
1317 | - 'TH-18' => __( 'Chai Nat (ชัยนาท)', 'invoicing' ), |
|
1318 | - 'TH-36' => __( 'Chaiyaphum (ชัยภูมิ)', 'invoicing' ), |
|
1319 | - 'TH-22' => __( 'Chanthaburi (จันทบุรี)', 'invoicing' ), |
|
1320 | - 'TH-50' => __( 'Chiang Mai (เชียงใหม่)', 'invoicing' ), |
|
1321 | - 'TH-57' => __( 'Chiang Rai (เชียงราย)', 'invoicing' ), |
|
1322 | - 'TH-20' => __( 'Chonburi (ชลบุรี)', 'invoicing' ), |
|
1323 | - 'TH-86' => __( 'Chumphon (ชุมพร)', 'invoicing' ), |
|
1324 | - 'TH-46' => __( 'Kalasin (กาฬสินธุ์)', 'invoicing' ), |
|
1325 | - 'TH-62' => __( 'Kamphaeng Phet (กำแพงเพชร)', 'invoicing' ), |
|
1326 | - 'TH-71' => __( 'Kanchanaburi (กาญจนบุรี)', 'invoicing' ), |
|
1327 | - 'TH-40' => __( 'Khon Kaen (ขอนแก่น)', 'invoicing' ), |
|
1328 | - 'TH-81' => __( 'Krabi (กระบี่)', 'invoicing' ), |
|
1329 | - 'TH-52' => __( 'Lampang (ลำปาง)', 'invoicing' ), |
|
1330 | - 'TH-51' => __( 'Lamphun (ลำพูน)', 'invoicing' ), |
|
1331 | - 'TH-42' => __( 'Loei (เลย)', 'invoicing' ), |
|
1332 | - 'TH-16' => __( 'Lopburi (ลพบุรี)', 'invoicing' ), |
|
1333 | - 'TH-58' => __( 'Mae Hong Son (แม่ฮ่องสอน)', 'invoicing' ), |
|
1334 | - 'TH-44' => __( 'Maha Sarakham (มหาสารคาม)', 'invoicing' ), |
|
1335 | - 'TH-49' => __( 'Mukdahan (มุกดาหาร)', 'invoicing' ), |
|
1336 | - 'TH-26' => __( 'Nakhon Nayok (นครนายก)', 'invoicing' ), |
|
1337 | - 'TH-73' => __( 'Nakhon Pathom (นครปฐม)', 'invoicing' ), |
|
1338 | - 'TH-48' => __( 'Nakhon Phanom (นครพนม)', 'invoicing' ), |
|
1339 | - 'TH-30' => __( 'Nakhon Ratchasima (นครราชสีมา)', 'invoicing' ), |
|
1340 | - 'TH-60' => __( 'Nakhon Sawan (นครสวรรค์)', 'invoicing' ), |
|
1341 | - 'TH-80' => __( 'Nakhon Si Thammarat (นครศรีธรรมราช)', 'invoicing' ), |
|
1342 | - 'TH-55' => __( 'Nan (น่าน)', 'invoicing' ), |
|
1343 | - 'TH-96' => __( 'Narathiwat (นราธิวาส)', 'invoicing' ), |
|
1344 | - 'TH-39' => __( 'Nong Bua Lam Phu (หนองบัวลำภู)', 'invoicing' ), |
|
1345 | - 'TH-43' => __( 'Nong Khai (หนองคาย)', 'invoicing' ), |
|
1346 | - 'TH-12' => __( 'Nonthaburi (นนทบุรี)', 'invoicing' ), |
|
1347 | - 'TH-13' => __( 'Pathum Thani (ปทุมธานี)', 'invoicing' ), |
|
1348 | - 'TH-94' => __( 'Pattani (ปัตตานี)', 'invoicing' ), |
|
1349 | - 'TH-82' => __( 'Phang Nga (พังงา)', 'invoicing' ), |
|
1350 | - 'TH-93' => __( 'Phatthalung (พัทลุง)', 'invoicing' ), |
|
1351 | - 'TH-56' => __( 'Phayao (พะเยา)', 'invoicing' ), |
|
1352 | - 'TH-67' => __( 'Phetchabun (เพชรบูรณ์)', 'invoicing' ), |
|
1353 | - 'TH-76' => __( 'Phetchaburi (เพชรบุรี)', 'invoicing' ), |
|
1354 | - 'TH-66' => __( 'Phichit (พิจิตร)', 'invoicing' ), |
|
1355 | - 'TH-65' => __( 'Phitsanulok (พิษณุโลก)', 'invoicing' ), |
|
1356 | - 'TH-54' => __( 'Phrae (แพร่)', 'invoicing' ), |
|
1357 | - 'TH-83' => __( 'Phuket (ภูเก็ต)', 'invoicing' ), |
|
1358 | - 'TH-25' => __( 'Prachin Buri (ปราจีนบุรี)', 'invoicing' ), |
|
1359 | - 'TH-77' => __( 'Prachuap Khiri Khan (ประจวบคีรีขันธ์)', 'invoicing' ), |
|
1360 | - 'TH-85' => __( 'Ranong (ระนอง)', 'invoicing' ), |
|
1361 | - 'TH-70' => __( 'Ratchaburi (ราชบุรี)', 'invoicing' ), |
|
1362 | - 'TH-21' => __( 'Rayong (ระยอง)', 'invoicing' ), |
|
1363 | - 'TH-45' => __( 'Roi Et (ร้อยเอ็ด)', 'invoicing' ), |
|
1364 | - 'TH-27' => __( 'Sa Kaeo (สระแก้ว)', 'invoicing' ), |
|
1365 | - 'TH-47' => __( 'Sakon Nakhon (สกลนคร)', 'invoicing' ), |
|
1366 | - 'TH-11' => __( 'Samut Prakan (สมุทรปราการ)', 'invoicing' ), |
|
1367 | - 'TH-74' => __( 'Samut Sakhon (สมุทรสาคร)', 'invoicing' ), |
|
1368 | - 'TH-75' => __( 'Samut Songkhram (สมุทรสงคราม)', 'invoicing' ), |
|
1369 | - 'TH-19' => __( 'Saraburi (สระบุรี)', 'invoicing' ), |
|
1370 | - 'TH-91' => __( 'Satun (สตูล)', 'invoicing' ), |
|
1371 | - 'TH-17' => __( 'Sing Buri (สิงห์บุรี)', 'invoicing' ), |
|
1372 | - 'TH-33' => __( 'Sisaket (ศรีสะเกษ)', 'invoicing' ), |
|
1373 | - 'TH-90' => __( 'Songkhla (สงขลา)', 'invoicing' ), |
|
1374 | - 'TH-64' => __( 'Sukhothai (สุโขทัย)', 'invoicing' ), |
|
1375 | - 'TH-72' => __( 'Suphan Buri (สุพรรณบุรี)', 'invoicing' ), |
|
1376 | - 'TH-84' => __( 'Surat Thani (สุราษฎร์ธานี)', 'invoicing' ), |
|
1377 | - 'TH-32' => __( 'Surin (สุรินทร์)', 'invoicing' ), |
|
1378 | - 'TH-63' => __( 'Tak (ตาก)', 'invoicing' ), |
|
1379 | - 'TH-92' => __( 'Trang (ตรัง)', 'invoicing' ), |
|
1380 | - 'TH-23' => __( 'Trat (ตราด)', 'invoicing' ), |
|
1381 | - 'TH-34' => __( 'Ubon Ratchathani (อุบลราชธานี)', 'invoicing' ), |
|
1382 | - 'TH-41' => __( 'Udon Thani (อุดรธานี)', 'invoicing' ), |
|
1383 | - 'TH-61' => __( 'Uthai Thani (อุทัยธานี)', 'invoicing' ), |
|
1384 | - 'TH-53' => __( 'Uttaradit (อุตรดิตถ์)', 'invoicing' ), |
|
1385 | - 'TH-95' => __( 'Yala (ยะลา)', 'invoicing' ), |
|
1386 | - 'TH-35' => __( 'Yasothon (ยโสธร)', 'invoicing' ) |
|
1310 | + 'TH-37' => __('Amnat Charoen (อำนาจเจริญ)', 'invoicing'), |
|
1311 | + 'TH-15' => __('Ang Thong (อ่างทอง)', 'invoicing'), |
|
1312 | + 'TH-14' => __('Ayutthaya (พระนครศรีอยุธยา)', 'invoicing'), |
|
1313 | + 'TH-10' => __('Bangkok (กรุงเทพมหานคร)', 'invoicing'), |
|
1314 | + 'TH-38' => __('Bueng Kan (บึงกาฬ)', 'invoicing'), |
|
1315 | + 'TH-31' => __('Buri Ram (บุรีรัมย์)', 'invoicing'), |
|
1316 | + 'TH-24' => __('Chachoengsao (ฉะเชิงเทรา)', 'invoicing'), |
|
1317 | + 'TH-18' => __('Chai Nat (ชัยนาท)', 'invoicing'), |
|
1318 | + 'TH-36' => __('Chaiyaphum (ชัยภูมิ)', 'invoicing'), |
|
1319 | + 'TH-22' => __('Chanthaburi (จันทบุรี)', 'invoicing'), |
|
1320 | + 'TH-50' => __('Chiang Mai (เชียงใหม่)', 'invoicing'), |
|
1321 | + 'TH-57' => __('Chiang Rai (เชียงราย)', 'invoicing'), |
|
1322 | + 'TH-20' => __('Chonburi (ชลบุรี)', 'invoicing'), |
|
1323 | + 'TH-86' => __('Chumphon (ชุมพร)', 'invoicing'), |
|
1324 | + 'TH-46' => __('Kalasin (กาฬสินธุ์)', 'invoicing'), |
|
1325 | + 'TH-62' => __('Kamphaeng Phet (กำแพงเพชร)', 'invoicing'), |
|
1326 | + 'TH-71' => __('Kanchanaburi (กาญจนบุรี)', 'invoicing'), |
|
1327 | + 'TH-40' => __('Khon Kaen (ขอนแก่น)', 'invoicing'), |
|
1328 | + 'TH-81' => __('Krabi (กระบี่)', 'invoicing'), |
|
1329 | + 'TH-52' => __('Lampang (ลำปาง)', 'invoicing'), |
|
1330 | + 'TH-51' => __('Lamphun (ลำพูน)', 'invoicing'), |
|
1331 | + 'TH-42' => __('Loei (เลย)', 'invoicing'), |
|
1332 | + 'TH-16' => __('Lopburi (ลพบุรี)', 'invoicing'), |
|
1333 | + 'TH-58' => __('Mae Hong Son (แม่ฮ่องสอน)', 'invoicing'), |
|
1334 | + 'TH-44' => __('Maha Sarakham (มหาสารคาม)', 'invoicing'), |
|
1335 | + 'TH-49' => __('Mukdahan (มุกดาหาร)', 'invoicing'), |
|
1336 | + 'TH-26' => __('Nakhon Nayok (นครนายก)', 'invoicing'), |
|
1337 | + 'TH-73' => __('Nakhon Pathom (นครปฐม)', 'invoicing'), |
|
1338 | + 'TH-48' => __('Nakhon Phanom (นครพนม)', 'invoicing'), |
|
1339 | + 'TH-30' => __('Nakhon Ratchasima (นครราชสีมา)', 'invoicing'), |
|
1340 | + 'TH-60' => __('Nakhon Sawan (นครสวรรค์)', 'invoicing'), |
|
1341 | + 'TH-80' => __('Nakhon Si Thammarat (นครศรีธรรมราช)', 'invoicing'), |
|
1342 | + 'TH-55' => __('Nan (น่าน)', 'invoicing'), |
|
1343 | + 'TH-96' => __('Narathiwat (นราธิวาส)', 'invoicing'), |
|
1344 | + 'TH-39' => __('Nong Bua Lam Phu (หนองบัวลำภู)', 'invoicing'), |
|
1345 | + 'TH-43' => __('Nong Khai (หนองคาย)', 'invoicing'), |
|
1346 | + 'TH-12' => __('Nonthaburi (นนทบุรี)', 'invoicing'), |
|
1347 | + 'TH-13' => __('Pathum Thani (ปทุมธานี)', 'invoicing'), |
|
1348 | + 'TH-94' => __('Pattani (ปัตตานี)', 'invoicing'), |
|
1349 | + 'TH-82' => __('Phang Nga (พังงา)', 'invoicing'), |
|
1350 | + 'TH-93' => __('Phatthalung (พัทลุง)', 'invoicing'), |
|
1351 | + 'TH-56' => __('Phayao (พะเยา)', 'invoicing'), |
|
1352 | + 'TH-67' => __('Phetchabun (เพชรบูรณ์)', 'invoicing'), |
|
1353 | + 'TH-76' => __('Phetchaburi (เพชรบุรี)', 'invoicing'), |
|
1354 | + 'TH-66' => __('Phichit (พิจิตร)', 'invoicing'), |
|
1355 | + 'TH-65' => __('Phitsanulok (พิษณุโลก)', 'invoicing'), |
|
1356 | + 'TH-54' => __('Phrae (แพร่)', 'invoicing'), |
|
1357 | + 'TH-83' => __('Phuket (ภูเก็ต)', 'invoicing'), |
|
1358 | + 'TH-25' => __('Prachin Buri (ปราจีนบุรี)', 'invoicing'), |
|
1359 | + 'TH-77' => __('Prachuap Khiri Khan (ประจวบคีรีขันธ์)', 'invoicing'), |
|
1360 | + 'TH-85' => __('Ranong (ระนอง)', 'invoicing'), |
|
1361 | + 'TH-70' => __('Ratchaburi (ราชบุรี)', 'invoicing'), |
|
1362 | + 'TH-21' => __('Rayong (ระยอง)', 'invoicing'), |
|
1363 | + 'TH-45' => __('Roi Et (ร้อยเอ็ด)', 'invoicing'), |
|
1364 | + 'TH-27' => __('Sa Kaeo (สระแก้ว)', 'invoicing'), |
|
1365 | + 'TH-47' => __('Sakon Nakhon (สกลนคร)', 'invoicing'), |
|
1366 | + 'TH-11' => __('Samut Prakan (สมุทรปราการ)', 'invoicing'), |
|
1367 | + 'TH-74' => __('Samut Sakhon (สมุทรสาคร)', 'invoicing'), |
|
1368 | + 'TH-75' => __('Samut Songkhram (สมุทรสงคราม)', 'invoicing'), |
|
1369 | + 'TH-19' => __('Saraburi (สระบุรี)', 'invoicing'), |
|
1370 | + 'TH-91' => __('Satun (สตูล)', 'invoicing'), |
|
1371 | + 'TH-17' => __('Sing Buri (สิงห์บุรี)', 'invoicing'), |
|
1372 | + 'TH-33' => __('Sisaket (ศรีสะเกษ)', 'invoicing'), |
|
1373 | + 'TH-90' => __('Songkhla (สงขลา)', 'invoicing'), |
|
1374 | + 'TH-64' => __('Sukhothai (สุโขทัย)', 'invoicing'), |
|
1375 | + 'TH-72' => __('Suphan Buri (สุพรรณบุรี)', 'invoicing'), |
|
1376 | + 'TH-84' => __('Surat Thani (สุราษฎร์ธานี)', 'invoicing'), |
|
1377 | + 'TH-32' => __('Surin (สุรินทร์)', 'invoicing'), |
|
1378 | + 'TH-63' => __('Tak (ตาก)', 'invoicing'), |
|
1379 | + 'TH-92' => __('Trang (ตรัง)', 'invoicing'), |
|
1380 | + 'TH-23' => __('Trat (ตราด)', 'invoicing'), |
|
1381 | + 'TH-34' => __('Ubon Ratchathani (อุบลราชธานี)', 'invoicing'), |
|
1382 | + 'TH-41' => __('Udon Thani (อุดรธานี)', 'invoicing'), |
|
1383 | + 'TH-61' => __('Uthai Thani (อุทัยธานี)', 'invoicing'), |
|
1384 | + 'TH-53' => __('Uttaradit (อุตรดิตถ์)', 'invoicing'), |
|
1385 | + 'TH-95' => __('Yala (ยะลา)', 'invoicing'), |
|
1386 | + 'TH-35' => __('Yasothon (ยโสธร)', 'invoicing') |
|
1387 | 1387 | ); |
1388 | 1388 | |
1389 | - return apply_filters( 'wpinv_thailand_states', $states ); |
|
1389 | + return apply_filters('wpinv_thailand_states', $states); |
|
1390 | 1390 | } |
1391 | 1391 | |
1392 | 1392 | function wpinv_get_turkey_states_list() { |
1393 | 1393 | $states = array( |
1394 | - 'TR01' => __( 'Adana', 'invoicing' ), |
|
1395 | - 'TR02' => __( 'Adıyaman', 'invoicing' ), |
|
1396 | - 'TR03' => __( 'Afyon', 'invoicing' ), |
|
1397 | - 'TR04' => __( 'Ağrı', 'invoicing' ), |
|
1398 | - 'TR05' => __( 'Amasya', 'invoicing' ), |
|
1399 | - 'TR06' => __( 'Ankara', 'invoicing' ), |
|
1400 | - 'TR07' => __( 'Antalya', 'invoicing' ), |
|
1401 | - 'TR08' => __( 'Artvin', 'invoicing' ), |
|
1402 | - 'TR09' => __( 'Aydın', 'invoicing' ), |
|
1403 | - 'TR10' => __( 'Balıkesir', 'invoicing' ), |
|
1404 | - 'TR11' => __( 'Bilecik', 'invoicing' ), |
|
1405 | - 'TR12' => __( 'Bingöl', 'invoicing' ), |
|
1406 | - 'TR13' => __( 'Bitlis', 'invoicing' ), |
|
1407 | - 'TR14' => __( 'Bolu', 'invoicing' ), |
|
1408 | - 'TR15' => __( 'Burdur', 'invoicing' ), |
|
1409 | - 'TR16' => __( 'Bursa', 'invoicing' ), |
|
1410 | - 'TR17' => __( 'Çanakkale', 'invoicing' ), |
|
1411 | - 'TR18' => __( 'Çankıkesir', 'invoicing' ), |
|
1412 | - 'TR19' => __( 'Çorum', 'invoicing' ), |
|
1413 | - 'TR20' => __( 'Denizli', 'invoicing' ), |
|
1414 | - 'TR21' => __( 'Diyarbakır', 'invoicing' ), |
|
1415 | - 'TR22' => __( 'Edirne', 'invoicing' ), |
|
1416 | - 'TR23' => __( 'Elazığ', 'invoicing' ), |
|
1417 | - 'TR24' => __( 'Erzincan', 'invoicing' ), |
|
1418 | - 'TR25' => __( 'Erzurum', 'invoicing' ), |
|
1419 | - 'TR26' => __( 'Eskişehir', 'invoicing' ), |
|
1420 | - 'TR27' => __( 'Gaziantep', 'invoicing' ), |
|
1421 | - 'TR28' => __( 'Giresun', 'invoicing' ), |
|
1422 | - 'TR29' => __( 'Gümüşhane', 'invoicing' ), |
|
1423 | - 'TR30' => __( 'Hakkari', 'invoicing' ), |
|
1424 | - 'TR31' => __( 'Hatay', 'invoicing' ), |
|
1425 | - 'TR32' => __( 'Isparta', 'invoicing' ), |
|
1426 | - 'TR33' => __( 'İçel', 'invoicing' ), |
|
1427 | - 'TR34' => __( 'İstanbul', 'invoicing' ), |
|
1428 | - 'TR35' => __( 'İzmir', 'invoicing' ), |
|
1429 | - 'TR36' => __( 'Kars', 'invoicing' ), |
|
1430 | - 'TR37' => __( 'Kastamonu', 'invoicing' ), |
|
1431 | - 'TR38' => __( 'Kayseri', 'invoicing' ), |
|
1432 | - 'TR39' => __( 'Kırklareli', 'invoicing' ), |
|
1433 | - 'TR40' => __( 'Kırşehir', 'invoicing' ), |
|
1434 | - 'TR41' => __( 'Kocaeli', 'invoicing' ), |
|
1435 | - 'TR42' => __( 'Konya', 'invoicing' ), |
|
1436 | - 'TR43' => __( 'Kütahya', 'invoicing' ), |
|
1437 | - 'TR44' => __( 'Malatya', 'invoicing' ), |
|
1438 | - 'TR45' => __( 'Manisa', 'invoicing' ), |
|
1439 | - 'TR46' => __( 'Kahramanmaraş', 'invoicing' ), |
|
1440 | - 'TR47' => __( 'Mardin', 'invoicing' ), |
|
1441 | - 'TR48' => __( 'Muğla', 'invoicing' ), |
|
1442 | - 'TR49' => __( 'Muş', 'invoicing' ), |
|
1443 | - 'TR50' => __( 'Nevşehir', 'invoicing' ), |
|
1444 | - 'TR51' => __( 'Niğde', 'invoicing' ), |
|
1445 | - 'TR52' => __( 'Ordu', 'invoicing' ), |
|
1446 | - 'TR53' => __( 'Rize', 'invoicing' ), |
|
1447 | - 'TR54' => __( 'Sakarya', 'invoicing' ), |
|
1448 | - 'TR55' => __( 'Samsun', 'invoicing' ), |
|
1449 | - 'TR56' => __( 'Siirt', 'invoicing' ), |
|
1450 | - 'TR57' => __( 'Sinop', 'invoicing' ), |
|
1451 | - 'TR58' => __( 'Sivas', 'invoicing' ), |
|
1452 | - 'TR59' => __( 'Tekirdağ', 'invoicing' ), |
|
1453 | - 'TR60' => __( 'Tokat', 'invoicing' ), |
|
1454 | - 'TR61' => __( 'Trabzon', 'invoicing' ), |
|
1455 | - 'TR62' => __( 'Tunceli', 'invoicing' ), |
|
1456 | - 'TR63' => __( 'Şanlıurfa', 'invoicing' ), |
|
1457 | - 'TR64' => __( 'Uşak', 'invoicing' ), |
|
1458 | - 'TR65' => __( 'Van', 'invoicing' ), |
|
1459 | - 'TR66' => __( 'Yozgat', 'invoicing' ), |
|
1460 | - 'TR67' => __( 'Zonguldak', 'invoicing' ), |
|
1461 | - 'TR68' => __( 'Aksaray', 'invoicing' ), |
|
1462 | - 'TR69' => __( 'Bayburt', 'invoicing' ), |
|
1463 | - 'TR70' => __( 'Karaman', 'invoicing' ), |
|
1464 | - 'TR71' => __( 'Kırıkkale', 'invoicing' ), |
|
1465 | - 'TR72' => __( 'Batman', 'invoicing' ), |
|
1466 | - 'TR73' => __( 'Şırnak', 'invoicing' ), |
|
1467 | - 'TR74' => __( 'Bartın', 'invoicing' ), |
|
1468 | - 'TR75' => __( 'Ardahan', 'invoicing' ), |
|
1469 | - 'TR76' => __( 'Iğdır', 'invoicing' ), |
|
1470 | - 'TR77' => __( 'Yalova', 'invoicing' ), |
|
1471 | - 'TR78' => __( 'Karabük', 'invoicing' ), |
|
1472 | - 'TR79' => __( 'Kilis', 'invoicing' ), |
|
1473 | - 'TR80' => __( 'Osmaniye', 'invoicing' ), |
|
1474 | - 'TR81' => __( 'Düzce', 'invoicing' ) |
|
1394 | + 'TR01' => __('Adana', 'invoicing'), |
|
1395 | + 'TR02' => __('Adıyaman', 'invoicing'), |
|
1396 | + 'TR03' => __('Afyon', 'invoicing'), |
|
1397 | + 'TR04' => __('Ağrı', 'invoicing'), |
|
1398 | + 'TR05' => __('Amasya', 'invoicing'), |
|
1399 | + 'TR06' => __('Ankara', 'invoicing'), |
|
1400 | + 'TR07' => __('Antalya', 'invoicing'), |
|
1401 | + 'TR08' => __('Artvin', 'invoicing'), |
|
1402 | + 'TR09' => __('Aydın', 'invoicing'), |
|
1403 | + 'TR10' => __('Balıkesir', 'invoicing'), |
|
1404 | + 'TR11' => __('Bilecik', 'invoicing'), |
|
1405 | + 'TR12' => __('Bingöl', 'invoicing'), |
|
1406 | + 'TR13' => __('Bitlis', 'invoicing'), |
|
1407 | + 'TR14' => __('Bolu', 'invoicing'), |
|
1408 | + 'TR15' => __('Burdur', 'invoicing'), |
|
1409 | + 'TR16' => __('Bursa', 'invoicing'), |
|
1410 | + 'TR17' => __('Çanakkale', 'invoicing'), |
|
1411 | + 'TR18' => __('Çankıkesir', 'invoicing'), |
|
1412 | + 'TR19' => __('Çorum', 'invoicing'), |
|
1413 | + 'TR20' => __('Denizli', 'invoicing'), |
|
1414 | + 'TR21' => __('Diyarbakır', 'invoicing'), |
|
1415 | + 'TR22' => __('Edirne', 'invoicing'), |
|
1416 | + 'TR23' => __('Elazığ', 'invoicing'), |
|
1417 | + 'TR24' => __('Erzincan', 'invoicing'), |
|
1418 | + 'TR25' => __('Erzurum', 'invoicing'), |
|
1419 | + 'TR26' => __('Eskişehir', 'invoicing'), |
|
1420 | + 'TR27' => __('Gaziantep', 'invoicing'), |
|
1421 | + 'TR28' => __('Giresun', 'invoicing'), |
|
1422 | + 'TR29' => __('Gümüşhane', 'invoicing'), |
|
1423 | + 'TR30' => __('Hakkari', 'invoicing'), |
|
1424 | + 'TR31' => __('Hatay', 'invoicing'), |
|
1425 | + 'TR32' => __('Isparta', 'invoicing'), |
|
1426 | + 'TR33' => __('İçel', 'invoicing'), |
|
1427 | + 'TR34' => __('İstanbul', 'invoicing'), |
|
1428 | + 'TR35' => __('İzmir', 'invoicing'), |
|
1429 | + 'TR36' => __('Kars', 'invoicing'), |
|
1430 | + 'TR37' => __('Kastamonu', 'invoicing'), |
|
1431 | + 'TR38' => __('Kayseri', 'invoicing'), |
|
1432 | + 'TR39' => __('Kırklareli', 'invoicing'), |
|
1433 | + 'TR40' => __('Kırşehir', 'invoicing'), |
|
1434 | + 'TR41' => __('Kocaeli', 'invoicing'), |
|
1435 | + 'TR42' => __('Konya', 'invoicing'), |
|
1436 | + 'TR43' => __('Kütahya', 'invoicing'), |
|
1437 | + 'TR44' => __('Malatya', 'invoicing'), |
|
1438 | + 'TR45' => __('Manisa', 'invoicing'), |
|
1439 | + 'TR46' => __('Kahramanmaraş', 'invoicing'), |
|
1440 | + 'TR47' => __('Mardin', 'invoicing'), |
|
1441 | + 'TR48' => __('Muğla', 'invoicing'), |
|
1442 | + 'TR49' => __('Muş', 'invoicing'), |
|
1443 | + 'TR50' => __('Nevşehir', 'invoicing'), |
|
1444 | + 'TR51' => __('Niğde', 'invoicing'), |
|
1445 | + 'TR52' => __('Ordu', 'invoicing'), |
|
1446 | + 'TR53' => __('Rize', 'invoicing'), |
|
1447 | + 'TR54' => __('Sakarya', 'invoicing'), |
|
1448 | + 'TR55' => __('Samsun', 'invoicing'), |
|
1449 | + 'TR56' => __('Siirt', 'invoicing'), |
|
1450 | + 'TR57' => __('Sinop', 'invoicing'), |
|
1451 | + 'TR58' => __('Sivas', 'invoicing'), |
|
1452 | + 'TR59' => __('Tekirdağ', 'invoicing'), |
|
1453 | + 'TR60' => __('Tokat', 'invoicing'), |
|
1454 | + 'TR61' => __('Trabzon', 'invoicing'), |
|
1455 | + 'TR62' => __('Tunceli', 'invoicing'), |
|
1456 | + 'TR63' => __('Şanlıurfa', 'invoicing'), |
|
1457 | + 'TR64' => __('Uşak', 'invoicing'), |
|
1458 | + 'TR65' => __('Van', 'invoicing'), |
|
1459 | + 'TR66' => __('Yozgat', 'invoicing'), |
|
1460 | + 'TR67' => __('Zonguldak', 'invoicing'), |
|
1461 | + 'TR68' => __('Aksaray', 'invoicing'), |
|
1462 | + 'TR69' => __('Bayburt', 'invoicing'), |
|
1463 | + 'TR70' => __('Karaman', 'invoicing'), |
|
1464 | + 'TR71' => __('Kırıkkale', 'invoicing'), |
|
1465 | + 'TR72' => __('Batman', 'invoicing'), |
|
1466 | + 'TR73' => __('Şırnak', 'invoicing'), |
|
1467 | + 'TR74' => __('Bartın', 'invoicing'), |
|
1468 | + 'TR75' => __('Ardahan', 'invoicing'), |
|
1469 | + 'TR76' => __('Iğdır', 'invoicing'), |
|
1470 | + 'TR77' => __('Yalova', 'invoicing'), |
|
1471 | + 'TR78' => __('Karabük', 'invoicing'), |
|
1472 | + 'TR79' => __('Kilis', 'invoicing'), |
|
1473 | + 'TR80' => __('Osmaniye', 'invoicing'), |
|
1474 | + 'TR81' => __('Düzce', 'invoicing') |
|
1475 | 1475 | ); |
1476 | 1476 | |
1477 | - return apply_filters( 'wpinv_turkey_states', $states ); |
|
1477 | + return apply_filters('wpinv_turkey_states', $states); |
|
1478 | 1478 | } |
1479 | 1479 | |
1480 | 1480 | function wpinv_get_spain_states_list() { |
1481 | 1481 | $states = array( |
1482 | - 'C' => __( 'A Coruña', 'invoicing' ), |
|
1483 | - 'VI' => __( 'Araba', 'invoicing' ), |
|
1484 | - 'AB' => __( 'Albacete', 'invoicing' ), |
|
1485 | - 'A' => __( 'Alicante', 'invoicing' ), |
|
1486 | - 'AL' => __( 'Almería', 'invoicing' ), |
|
1487 | - 'O' => __( 'Asturias', 'invoicing' ), |
|
1488 | - 'AV' => __( 'Ávila', 'invoicing' ), |
|
1489 | - 'BA' => __( 'Badajoz', 'invoicing' ), |
|
1490 | - 'PM' => __( 'Baleares', 'invoicing' ), |
|
1491 | - 'B' => __( 'Barcelona', 'invoicing' ), |
|
1492 | - 'BU' => __( 'Burgos', 'invoicing' ), |
|
1493 | - 'CC' => __( 'Cáceres', 'invoicing' ), |
|
1494 | - 'CA' => __( 'Cádiz', 'invoicing' ), |
|
1495 | - 'S' => __( 'Cantabria', 'invoicing' ), |
|
1496 | - 'CS' => __( 'Castellón', 'invoicing' ), |
|
1497 | - 'CE' => __( 'Ceuta', 'invoicing' ), |
|
1498 | - 'CR' => __( 'Ciudad Real', 'invoicing' ), |
|
1499 | - 'CO' => __( 'Córdoba', 'invoicing' ), |
|
1500 | - 'CU' => __( 'Cuenca', 'invoicing' ), |
|
1501 | - 'GI' => __( 'Girona', 'invoicing' ), |
|
1502 | - 'GR' => __( 'Granada', 'invoicing' ), |
|
1503 | - 'GU' => __( 'Guadalajara', 'invoicing' ), |
|
1504 | - 'SS' => __( 'Gipuzkoa', 'invoicing' ), |
|
1505 | - 'H' => __( 'Huelva', 'invoicing' ), |
|
1506 | - 'HU' => __( 'Huesca', 'invoicing' ), |
|
1507 | - 'J' => __( 'Jaén', 'invoicing' ), |
|
1508 | - 'LO' => __( 'La Rioja', 'invoicing' ), |
|
1509 | - 'GC' => __( 'Las Palmas', 'invoicing' ), |
|
1510 | - 'LE' => __( 'León', 'invoicing' ), |
|
1511 | - 'L' => __( 'Lleida', 'invoicing' ), |
|
1512 | - 'LU' => __( 'Lugo', 'invoicing' ), |
|
1513 | - 'M' => __( 'Madrid', 'invoicing' ), |
|
1514 | - 'MA' => __( 'Málaga', 'invoicing' ), |
|
1515 | - 'ML' => __( 'Melilla', 'invoicing' ), |
|
1516 | - 'MU' => __( 'Murcia', 'invoicing' ), |
|
1517 | - 'NA' => __( 'Navarra', 'invoicing' ), |
|
1518 | - 'OR' => __( 'Ourense', 'invoicing' ), |
|
1519 | - 'P' => __( 'Palencia', 'invoicing' ), |
|
1520 | - 'PO' => __( 'Pontevedra', 'invoicing' ), |
|
1521 | - 'SA' => __( 'Salamanca', 'invoicing' ), |
|
1522 | - 'TF' => __( 'Santa Cruz de Tenerife', 'invoicing' ), |
|
1523 | - 'SG' => __( 'Segovia', 'invoicing' ), |
|
1524 | - 'SE' => __( 'Sevilla', 'invoicing' ), |
|
1525 | - 'SO' => __( 'Soria', 'invoicing' ), |
|
1526 | - 'T' => __( 'Tarragona', 'invoicing' ), |
|
1527 | - 'TE' => __( 'Teruel', 'invoicing' ), |
|
1528 | - 'TO' => __( 'Toledo', 'invoicing' ), |
|
1529 | - 'V' => __( 'Valencia', 'invoicing' ), |
|
1530 | - 'VA' => __( 'Valladolid', 'invoicing' ), |
|
1531 | - 'BI' => __( 'Bizkaia', 'invoicing' ), |
|
1532 | - 'ZA' => __( 'Zamora', 'invoicing' ), |
|
1533 | - 'Z' => __( 'Zaragoza', 'invoicing' ) |
|
1482 | + 'C' => __('A Coruña', 'invoicing'), |
|
1483 | + 'VI' => __('Araba', 'invoicing'), |
|
1484 | + 'AB' => __('Albacete', 'invoicing'), |
|
1485 | + 'A' => __('Alicante', 'invoicing'), |
|
1486 | + 'AL' => __('Almería', 'invoicing'), |
|
1487 | + 'O' => __('Asturias', 'invoicing'), |
|
1488 | + 'AV' => __('Ávila', 'invoicing'), |
|
1489 | + 'BA' => __('Badajoz', 'invoicing'), |
|
1490 | + 'PM' => __('Baleares', 'invoicing'), |
|
1491 | + 'B' => __('Barcelona', 'invoicing'), |
|
1492 | + 'BU' => __('Burgos', 'invoicing'), |
|
1493 | + 'CC' => __('Cáceres', 'invoicing'), |
|
1494 | + 'CA' => __('Cádiz', 'invoicing'), |
|
1495 | + 'S' => __('Cantabria', 'invoicing'), |
|
1496 | + 'CS' => __('Castellón', 'invoicing'), |
|
1497 | + 'CE' => __('Ceuta', 'invoicing'), |
|
1498 | + 'CR' => __('Ciudad Real', 'invoicing'), |
|
1499 | + 'CO' => __('Córdoba', 'invoicing'), |
|
1500 | + 'CU' => __('Cuenca', 'invoicing'), |
|
1501 | + 'GI' => __('Girona', 'invoicing'), |
|
1502 | + 'GR' => __('Granada', 'invoicing'), |
|
1503 | + 'GU' => __('Guadalajara', 'invoicing'), |
|
1504 | + 'SS' => __('Gipuzkoa', 'invoicing'), |
|
1505 | + 'H' => __('Huelva', 'invoicing'), |
|
1506 | + 'HU' => __('Huesca', 'invoicing'), |
|
1507 | + 'J' => __('Jaén', 'invoicing'), |
|
1508 | + 'LO' => __('La Rioja', 'invoicing'), |
|
1509 | + 'GC' => __('Las Palmas', 'invoicing'), |
|
1510 | + 'LE' => __('León', 'invoicing'), |
|
1511 | + 'L' => __('Lleida', 'invoicing'), |
|
1512 | + 'LU' => __('Lugo', 'invoicing'), |
|
1513 | + 'M' => __('Madrid', 'invoicing'), |
|
1514 | + 'MA' => __('Málaga', 'invoicing'), |
|
1515 | + 'ML' => __('Melilla', 'invoicing'), |
|
1516 | + 'MU' => __('Murcia', 'invoicing'), |
|
1517 | + 'NA' => __('Navarra', 'invoicing'), |
|
1518 | + 'OR' => __('Ourense', 'invoicing'), |
|
1519 | + 'P' => __('Palencia', 'invoicing'), |
|
1520 | + 'PO' => __('Pontevedra', 'invoicing'), |
|
1521 | + 'SA' => __('Salamanca', 'invoicing'), |
|
1522 | + 'TF' => __('Santa Cruz de Tenerife', 'invoicing'), |
|
1523 | + 'SG' => __('Segovia', 'invoicing'), |
|
1524 | + 'SE' => __('Sevilla', 'invoicing'), |
|
1525 | + 'SO' => __('Soria', 'invoicing'), |
|
1526 | + 'T' => __('Tarragona', 'invoicing'), |
|
1527 | + 'TE' => __('Teruel', 'invoicing'), |
|
1528 | + 'TO' => __('Toledo', 'invoicing'), |
|
1529 | + 'V' => __('Valencia', 'invoicing'), |
|
1530 | + 'VA' => __('Valladolid', 'invoicing'), |
|
1531 | + 'BI' => __('Bizkaia', 'invoicing'), |
|
1532 | + 'ZA' => __('Zamora', 'invoicing'), |
|
1533 | + 'Z' => __('Zaragoza', 'invoicing') |
|
1534 | 1534 | ); |
1535 | 1535 | |
1536 | - return apply_filters( 'wpinv_spain_states', $states ); |
|
1536 | + return apply_filters('wpinv_spain_states', $states); |
|
1537 | 1537 | } |
1538 | 1538 | |
1539 | 1539 | function wpinv_get_states_field() { |
1540 | - if( empty( $_POST['country'] ) ) { |
|
1540 | + if (empty($_POST['country'])) { |
|
1541 | 1541 | $_POST['country'] = wpinv_get_default_country(); |
1542 | 1542 | } |
1543 | - $states = wpinv_get_country_states( sanitize_text_field( $_POST['country'] ) ); |
|
1543 | + $states = wpinv_get_country_states(sanitize_text_field($_POST['country'])); |
|
1544 | 1544 | |
1545 | - if( !empty( $states ) ) { |
|
1546 | - $sanitized_field_name = sanitize_text_field( $_POST['field_name'] ); |
|
1545 | + if (!empty($states)) { |
|
1546 | + $sanitized_field_name = sanitize_text_field($_POST['field_name']); |
|
1547 | 1547 | |
1548 | 1548 | $args = array( |
1549 | 1549 | 'name' => $sanitized_field_name, |
1550 | 1550 | 'id' => $sanitized_field_name, |
1551 | 1551 | 'class' => $sanitized_field_name . ' wpinv-select wpi_select2', |
1552 | - 'options' => array_merge( array( '' => '' ), $states ), |
|
1552 | + 'options' => array_merge(array('' => ''), $states), |
|
1553 | 1553 | 'show_option_all' => false, |
1554 | 1554 | 'show_option_none' => false |
1555 | 1555 | ); |
1556 | 1556 | |
1557 | - $response = wpinv_html_select( $args ); |
|
1557 | + $response = wpinv_html_select($args); |
|
1558 | 1558 | |
1559 | 1559 | } else { |
1560 | 1560 | $response = 'nostates'; |
@@ -1563,10 +1563,10 @@ discard block |
||
1563 | 1563 | return $response; |
1564 | 1564 | } |
1565 | 1565 | |
1566 | -function wpinv_default_billing_country( $country = '', $user_id = 0 ) { |
|
1567 | - $country = !empty( $country ) ? $country : wpinv_get_default_country(); |
|
1566 | +function wpinv_default_billing_country($country = '', $user_id = 0) { |
|
1567 | + $country = !empty($country) ? $country : wpinv_get_default_country(); |
|
1568 | 1568 | |
1569 | - return apply_filters( 'wpinv_default_billing_country', $country, $user_id ); |
|
1569 | + return apply_filters('wpinv_default_billing_country', $country, $user_id); |
|
1570 | 1570 | } |
1571 | 1571 | |
1572 | 1572 | /** |
@@ -1589,7 +1589,7 @@ discard block |
||
1589 | 1589 | * |
1590 | 1590 | * @param string $format The address format to use. |
1591 | 1591 | */ |
1592 | - return apply_filters( 'wpinv_get_full_address_format', $format ); |
|
1592 | + return apply_filters('wpinv_get_full_address_format', $format); |
|
1593 | 1593 | } |
1594 | 1594 | |
1595 | 1595 | /** |
@@ -1600,7 +1600,7 @@ discard block |
||
1600 | 1600 | * @param array $billing_details customer's billing details |
1601 | 1601 | * @return array |
1602 | 1602 | */ |
1603 | -function wpinv_get_invoice_address_replacements( $billing_details ) { |
|
1603 | +function wpinv_get_invoice_address_replacements($billing_details) { |
|
1604 | 1604 | |
1605 | 1605 | $replacements = array( |
1606 | 1606 | 'address' => '', |
@@ -1611,26 +1611,26 @@ discard block |
||
1611 | 1611 | 'zip' => '', |
1612 | 1612 | ); |
1613 | 1613 | |
1614 | - if( ! empty( $billing_details['address'] ) ) { |
|
1615 | - $replacements['address'] = sanitize_text_field( $billing_details['address'] ); |
|
1614 | + if (!empty($billing_details['address'])) { |
|
1615 | + $replacements['address'] = sanitize_text_field($billing_details['address']); |
|
1616 | 1616 | } |
1617 | 1617 | |
1618 | - if( ! empty( $billing_details['city'] ) ) { |
|
1619 | - $replacements['city'] = sanitize_text_field( $billing_details['city'] ); |
|
1618 | + if (!empty($billing_details['city'])) { |
|
1619 | + $replacements['city'] = sanitize_text_field($billing_details['city']); |
|
1620 | 1620 | } |
1621 | 1621 | |
1622 | - if( ! empty( $billing_details['zip'] ) ) { |
|
1623 | - $replacements['zip'] = sanitize_text_field( $billing_details['zip'] ); |
|
1622 | + if (!empty($billing_details['zip'])) { |
|
1623 | + $replacements['zip'] = sanitize_text_field($billing_details['zip']); |
|
1624 | 1624 | } |
1625 | 1625 | |
1626 | - $billing_country = !empty( $billing_details['country'] ) ? $billing_details['country'] : ''; |
|
1627 | - if ( !empty( $billing_details['state'] ) ) { |
|
1628 | - $replacements['state'] = sanitize_text_field( wpinv_state_name( $billing_details['state'], $billing_country ) ); |
|
1626 | + $billing_country = !empty($billing_details['country']) ? $billing_details['country'] : ''; |
|
1627 | + if (!empty($billing_details['state'])) { |
|
1628 | + $replacements['state'] = sanitize_text_field(wpinv_state_name($billing_details['state'], $billing_country)); |
|
1629 | 1629 | } |
1630 | 1630 | |
1631 | - if ( !empty( $billing_country ) ) { |
|
1632 | - $replacements['country'] = wpinv_country_name( $billing_country ); |
|
1633 | - $replacements['country_code'] = sanitize_text_field( $billing_country ); |
|
1631 | + if (!empty($billing_country)) { |
|
1632 | + $replacements['country'] = wpinv_country_name($billing_country); |
|
1633 | + $replacements['country_code'] = sanitize_text_field($billing_country); |
|
1634 | 1634 | } |
1635 | 1635 | |
1636 | 1636 | /** |
@@ -1642,5 +1642,5 @@ discard block |
||
1642 | 1642 | * @param array $replacements The address replacements to use. |
1643 | 1643 | * @param array $billing_details The billing details to use. |
1644 | 1644 | */ |
1645 | - return apply_filters( 'wpinv_get_invoice_address_replacements', $replacements, $billing_details ); |
|
1645 | + return apply_filters('wpinv_get_invoice_address_replacements', $replacements, $billing_details); |
|
1646 | 1646 | } |
1647 | 1647 | \ No newline at end of file |
@@ -1,41 +1,41 @@ |
||
1 | 1 | <?php |
2 | 2 | // don't load directly |
3 | -if ( !defined('ABSPATH') ) |
|
3 | +if (!defined('ABSPATH')) |
|
4 | 4 | die('-1'); |
5 | 5 | |
6 | -do_action( 'wpinv_email_before_billing_details', $invoice ); ?> |
|
6 | +do_action('wpinv_email_before_billing_details', $invoice); ?> |
|
7 | 7 | <div id="wpinv-email-billing"> |
8 | - <h3 class="wpinv-address-t"><?php echo apply_filters( 'wpinv_email_billing_title', __( 'Billing Details', 'invoicing' ) ); ?></h3> |
|
8 | + <h3 class="wpinv-address-t"><?php echo apply_filters('wpinv_email_billing_title', __('Billing Details', 'invoicing')); ?></h3> |
|
9 | 9 | |
10 | 10 | <table class="table table-bordered table-sm wpi-billing-details"> |
11 | 11 | <tbody> |
12 | - <?php do_action( 'wpinv_email_billing_fields_first', $invoice ); ?> |
|
12 | + <?php do_action('wpinv_email_billing_fields_first', $invoice); ?> |
|
13 | 13 | <tr class="wpi-receipt-name"> |
14 | - <th class="text-left"><?php _e( 'Name', 'invoicing' ); ?></th> |
|
15 | - <td><?php if ( $sent_to_admin && $invoice->user_id ) { ?><a href="<?php echo esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), self_admin_url( 'user-edit.php' ) ) ) ;?>"><?php echo esc_html( $invoice->get_user_full_name() ); ?></a><?php } else { echo esc_html( $invoice->get_user_full_name() ); } ?></td> |
|
14 | + <th class="text-left"><?php _e('Name', 'invoicing'); ?></th> |
|
15 | + <td><?php if ($sent_to_admin && $invoice->user_id) { ?><a href="<?php echo esc_url(add_query_arg('user_id', $invoice->get_user_id(), self_admin_url('user-edit.php'))); ?>"><?php echo esc_html($invoice->get_user_full_name()); ?></a><?php } else { echo esc_html($invoice->get_user_full_name()); } ?></td> |
|
16 | 16 | </tr> |
17 | 17 | <tr class="wpi-receipt-email"> |
18 | - <th class="text-left"><?php _e( 'Email', 'invoicing' ); ?></th> |
|
19 | - <td><?php echo $invoice->get_email() ;?></td> |
|
18 | + <th class="text-left"><?php _e('Email', 'invoicing'); ?></th> |
|
19 | + <td><?php echo $invoice->get_email(); ?></td> |
|
20 | 20 | </tr> |
21 | - <?php if ( $invoice->company ) { ?> |
|
21 | + <?php if ($invoice->company) { ?> |
|
22 | 22 | <tr class="wpi-receipt-company"> |
23 | - <th class="text-left"><?php _e( 'Company', 'invoicing' ); ?></th> |
|
24 | - <td><?php echo esc_html( $invoice->company ) ;?></td> |
|
23 | + <th class="text-left"><?php _e('Company', 'invoicing'); ?></th> |
|
24 | + <td><?php echo esc_html($invoice->company); ?></td> |
|
25 | 25 | </tr> |
26 | 26 | <?php } ?> |
27 | 27 | <tr class="wpi-receipt-address"> |
28 | - <th class="text-left"><?php _e( 'Address', 'invoicing' ); ?></th> |
|
29 | - <td><?php echo wpinv_get_invoice_address_markup( $invoice->get_user_info() ) ;?></td> |
|
28 | + <th class="text-left"><?php _e('Address', 'invoicing'); ?></th> |
|
29 | + <td><?php echo wpinv_get_invoice_address_markup($invoice->get_user_info()); ?></td> |
|
30 | 30 | </tr> |
31 | - <?php if ( $invoice->phone ) { ?> |
|
31 | + <?php if ($invoice->phone) { ?> |
|
32 | 32 | <tr class="wpi-receipt-phone"> |
33 | - <th class="text-left"><?php _e( 'Phone', 'invoicing' ); ?></th> |
|
34 | - <td><?php echo esc_html( $invoice->phone ) ;?></td> |
|
33 | + <th class="text-left"><?php _e('Phone', 'invoicing'); ?></th> |
|
34 | + <td><?php echo esc_html($invoice->phone); ?></td> |
|
35 | 35 | </tr> |
36 | 36 | <?php } ?> |
37 | - <?php do_action( 'wpinv_email_billing_fields_last', $invoice ); ?> |
|
37 | + <?php do_action('wpinv_email_billing_fields_last', $invoice); ?> |
|
38 | 38 | </tbody> |
39 | 39 | </table> |
40 | 40 | </div> |
41 | -<?php do_action( 'wpinv_email_after_billing_details', $invoice ); ?> |
|
42 | 41 | \ No newline at end of file |
42 | +<?php do_action('wpinv_email_after_billing_details', $invoice); ?> |
|
43 | 43 | \ No newline at end of file |
@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | // MUST have WordPress. |
10 | -if ( !defined( 'WPINC' ) ) { |
|
11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
10 | +if (!defined('WPINC')) { |
|
11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | class WPInv_Plugin { |
15 | 15 | private static $instance; |
16 | 16 | |
17 | 17 | public static function run() { |
18 | - if ( !isset( self::$instance ) && !( self::$instance instanceof WPInv_Plugin ) ) { |
|
18 | + if (!isset(self::$instance) && !(self::$instance instanceof WPInv_Plugin)) { |
|
19 | 19 | self::$instance = new WPInv_Plugin; |
20 | 20 | self::$instance->includes(); |
21 | 21 | self::$instance->actions(); |
@@ -32,31 +32,31 @@ discard block |
||
32 | 32 | } |
33 | 33 | |
34 | 34 | public function define_constants() { |
35 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
36 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
35 | + define('WPINV_PLUGIN_DIR', plugin_dir_path(WPINV_PLUGIN_FILE)); |
|
36 | + define('WPINV_PLUGIN_URL', plugin_dir_url(WPINV_PLUGIN_FILE)); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | private function actions() { |
40 | 40 | /* Internationalize the text strings used. */ |
41 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
41 | + add_action('plugins_loaded', array(&$this, 'plugins_loaded')); |
|
42 | 42 | |
43 | 43 | /* Perform actions on admin initialization. */ |
44 | - add_action( 'admin_init', array( &$this, 'admin_init') ); |
|
45 | - add_action( 'init', array( &$this, 'init' ), 3 ); |
|
46 | - add_action( 'init', array( &$this, 'wpinv_actions' ) ); |
|
44 | + add_action('admin_init', array(&$this, 'admin_init')); |
|
45 | + add_action('init', array(&$this, 'init'), 3); |
|
46 | + add_action('init', array(&$this, 'wpinv_actions')); |
|
47 | 47 | |
48 | - if ( class_exists( 'BuddyPress' ) ) { |
|
49 | - add_action( 'bp_include', array( &$this, 'bp_invoicing_init' ) ); |
|
48 | + if (class_exists('BuddyPress')) { |
|
49 | + add_action('bp_include', array(&$this, 'bp_invoicing_init')); |
|
50 | 50 | } |
51 | 51 | |
52 | - add_action( 'wp_enqueue_scripts', array( &$this, 'enqueue_scripts' ) ); |
|
53 | - add_action( 'widgets_init', array( &$this, 'register_widgets' ) ); |
|
52 | + add_action('wp_enqueue_scripts', array(&$this, 'enqueue_scripts')); |
|
53 | + add_action('widgets_init', array(&$this, 'register_widgets')); |
|
54 | 54 | |
55 | - if ( is_admin() ) { |
|
56 | - add_action( 'admin_enqueue_scripts', array( &$this, 'admin_enqueue_scripts' ) ); |
|
57 | - add_action( 'admin_body_class', array( &$this, 'admin_body_class' ) ); |
|
55 | + if (is_admin()) { |
|
56 | + add_action('admin_enqueue_scripts', array(&$this, 'admin_enqueue_scripts')); |
|
57 | + add_action('admin_body_class', array(&$this, 'admin_body_class')); |
|
58 | 58 | } else { |
59 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
59 | + add_filter('pre_get_posts', array(&$this, 'pre_get_posts')); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -66,19 +66,19 @@ discard block |
||
66 | 66 | * |
67 | 67 | * @param WPInv_Plugin $this. Current WPInv_Plugin instance. Passed by reference. |
68 | 68 | */ |
69 | - do_action_ref_array( 'wpinv_actions', array( &$this ) ); |
|
69 | + do_action_ref_array('wpinv_actions', array(&$this)); |
|
70 | 70 | |
71 | - add_action( 'admin_init', array( &$this, 'activation_redirect') ); |
|
71 | + add_action('admin_init', array(&$this, 'activation_redirect')); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | public function plugins_loaded() { |
75 | 75 | /* Internationalize the text strings used. */ |
76 | 76 | $this->load_textdomain(); |
77 | 77 | |
78 | - do_action( 'wpinv_loaded' ); |
|
78 | + do_action('wpinv_loaded'); |
|
79 | 79 | |
80 | 80 | // Fix oxygen page builder conflict |
81 | - if ( function_exists( 'ct_css_output' ) ) { |
|
81 | + if (function_exists('ct_css_output')) { |
|
82 | 82 | wpinv_oxygen_fix_conflict(); |
83 | 83 | } |
84 | 84 | } |
@@ -88,228 +88,228 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @since 1.0 |
90 | 90 | */ |
91 | - public function load_textdomain( $locale = NULL ) { |
|
92 | - if ( empty( $locale ) ) { |
|
93 | - $locale = is_admin() && function_exists( 'get_user_locale' ) ? get_user_locale() : get_locale(); |
|
91 | + public function load_textdomain($locale = NULL) { |
|
92 | + if (empty($locale)) { |
|
93 | + $locale = is_admin() && function_exists('get_user_locale') ? get_user_locale() : get_locale(); |
|
94 | 94 | } |
95 | 95 | |
96 | - $locale = apply_filters( 'plugin_locale', $locale, 'invoicing' ); |
|
96 | + $locale = apply_filters('plugin_locale', $locale, 'invoicing'); |
|
97 | 97 | |
98 | - unload_textdomain( 'invoicing' ); |
|
99 | - load_textdomain( 'invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo' ); |
|
100 | - load_plugin_textdomain( 'invoicing', false, WPINV_PLUGIN_DIR . 'languages' ); |
|
98 | + unload_textdomain('invoicing'); |
|
99 | + load_textdomain('invoicing', WP_LANG_DIR . '/invoicing/invoicing-' . $locale . '.mo'); |
|
100 | + load_plugin_textdomain('invoicing', false, WPINV_PLUGIN_DIR . 'languages'); |
|
101 | 101 | |
102 | 102 | /** |
103 | 103 | * Define language constants. |
104 | 104 | */ |
105 | - require_once( WPINV_PLUGIN_DIR . 'language.php' ); |
|
105 | + require_once(WPINV_PLUGIN_DIR . 'language.php'); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | public function includes() { |
109 | 109 | global $wpinv_options; |
110 | 110 | |
111 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
111 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php'); |
|
112 | 112 | $wpinv_options = wpinv_get_settings(); |
113 | 113 | |
114 | - require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
115 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
116 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
117 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
118 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
119 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
120 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
121 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-invoice-functions.php' ); |
|
122 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
123 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
124 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
125 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
126 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-user-functions.php' ); |
|
127 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-error-functions.php' ); |
|
128 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-post-types.php' ); |
|
129 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-invoice.php' ); |
|
130 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-item.php' ); |
|
131 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-notes.php' ); |
|
132 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
133 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
134 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
135 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
136 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-reports.php' ); |
|
137 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
138 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
139 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
140 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
141 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions.php' ); |
|
142 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
143 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-subscriptions-list-table.php' ); |
|
144 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
145 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
146 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
147 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
148 | - require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
149 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
150 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
151 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
152 | - require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
153 | - require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
154 | - |
|
155 | - if ( !class_exists( 'WPInv_EUVat' ) ) { |
|
156 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/wpinv-euvat/class-wpinv-euvat.php' ); |
|
114 | + require_once(WPINV_PLUGIN_DIR . 'vendor/autoload.php'); |
|
115 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php'); |
|
116 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php'); |
|
117 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php'); |
|
118 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php'); |
|
119 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php'); |
|
120 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php'); |
|
121 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-invoice-functions.php'); |
|
122 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php'); |
|
123 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php'); |
|
124 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php'); |
|
125 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php'); |
|
126 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-user-functions.php'); |
|
127 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-error-functions.php'); |
|
128 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-post-types.php'); |
|
129 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-invoice.php'); |
|
130 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-item.php'); |
|
131 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-notes.php'); |
|
132 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php'); |
|
133 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php'); |
|
134 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php'); |
|
135 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php'); |
|
136 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-reports.php'); |
|
137 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php'); |
|
138 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php'); |
|
139 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php'); |
|
140 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php'); |
|
141 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions.php'); |
|
142 | + require_once(WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php'); |
|
143 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-subscriptions-list-table.php'); |
|
144 | + require_once(WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php'); |
|
145 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php'); |
|
146 | + require_once(WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php'); |
|
147 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php'); |
|
148 | + require_once(WPINV_PLUGIN_DIR . 'widgets/checkout.php'); |
|
149 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-history.php'); |
|
150 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php'); |
|
151 | + require_once(WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php'); |
|
152 | + require_once(WPINV_PLUGIN_DIR . 'widgets/subscriptions.php'); |
|
153 | + require_once(WPINV_PLUGIN_DIR . 'widgets/buy-item.php'); |
|
154 | + |
|
155 | + if (!class_exists('WPInv_EUVat')) { |
|
156 | + require_once(WPINV_PLUGIN_DIR . 'includes/libraries/wpinv-euvat/class-wpinv-euvat.php'); |
|
157 | 157 | } |
158 | 158 | |
159 | - $gateways = array_keys( wpinv_get_enabled_payment_gateways() ); |
|
160 | - if ( !empty( $gateways ) ) { |
|
161 | - foreach ( $gateways as $gateway ) { |
|
162 | - if ( $gateway == 'manual' ) { |
|
159 | + $gateways = array_keys(wpinv_get_enabled_payment_gateways()); |
|
160 | + if (!empty($gateways)) { |
|
161 | + foreach ($gateways as $gateway) { |
|
162 | + if ($gateway == 'manual') { |
|
163 | 163 | continue; |
164 | 164 | } |
165 | 165 | |
166 | 166 | $gateway_file = WPINV_PLUGIN_DIR . 'includes/gateways/' . $gateway . '.php'; |
167 | 167 | |
168 | - if ( file_exists( $gateway_file ) ) { |
|
169 | - require_once( $gateway_file ); |
|
168 | + if (file_exists($gateway_file)) { |
|
169 | + require_once($gateway_file); |
|
170 | 170 | } |
171 | 171 | } |
172 | 172 | } |
173 | - require_once( WPINV_PLUGIN_DIR . 'includes/gateways/manual.php' ); |
|
173 | + require_once(WPINV_PLUGIN_DIR . 'includes/gateways/manual.php'); |
|
174 | 174 | |
175 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
176 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-upgrade-functions.php' ); |
|
177 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
178 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-meta-boxes.php' ); |
|
175 | + if (is_admin() || (defined('WP_CLI') && WP_CLI)) { |
|
176 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-upgrade-functions.php'); |
|
177 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php'); |
|
178 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/admin-meta-boxes.php'); |
|
179 | 179 | //require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-recurring-admin.php' ); |
180 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-details.php' ); |
|
181 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-items.php' ); |
|
182 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
183 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-address.php' ); |
|
184 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
185 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
186 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
180 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-details.php'); |
|
181 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-items.php'); |
|
182 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php'); |
|
183 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-address.php'); |
|
184 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php'); |
|
185 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php'); |
|
186 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php'); |
|
187 | 187 | //require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
188 | 188 | // load the user class only on the users.php page |
189 | 189 | global $pagenow; |
190 | - if($pagenow=='users.php'){ |
|
190 | + if ($pagenow == 'users.php') { |
|
191 | 191 | new WPInv_Admin_Users(); |
192 | 192 | } |
193 | 193 | } |
194 | 194 | |
195 | 195 | // Register cli commands |
196 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
197 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
198 | - WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
196 | + if (defined('WP_CLI') && WP_CLI) { |
|
197 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php'); |
|
198 | + WP_CLI::add_command('invoicing', 'WPInv_CLI'); |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | // include css inliner |
202 | - if ( ! class_exists( 'Emogrifier' ) && class_exists( 'DOMDocument' ) ) { |
|
203 | - include_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-emogrifier.php' ); |
|
202 | + if (!class_exists('Emogrifier') && class_exists('DOMDocument')) { |
|
203 | + include_once(WPINV_PLUGIN_DIR . 'includes/libraries/class-emogrifier.php'); |
|
204 | 204 | } |
205 | 205 | |
206 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/install.php' ); |
|
206 | + require_once(WPINV_PLUGIN_DIR . 'includes/admin/install.php'); |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | public function init() { |
210 | 210 | } |
211 | 211 | |
212 | 212 | public function admin_init() { |
213 | - add_action( 'admin_print_scripts-edit.php', array( &$this, 'admin_print_scripts_edit_php' ) ); |
|
213 | + add_action('admin_print_scripts-edit.php', array(&$this, 'admin_print_scripts_edit_php')); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | public function activation_redirect() { |
217 | 217 | // Bail if no activation redirect |
218 | - if ( !get_transient( '_wpinv_activation_redirect' ) ) { |
|
218 | + if (!get_transient('_wpinv_activation_redirect')) { |
|
219 | 219 | return; |
220 | 220 | } |
221 | 221 | |
222 | 222 | // Delete the redirect transient |
223 | - delete_transient( '_wpinv_activation_redirect' ); |
|
223 | + delete_transient('_wpinv_activation_redirect'); |
|
224 | 224 | |
225 | 225 | // Bail if activating from network, or bulk |
226 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
226 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
227 | 227 | return; |
228 | 228 | } |
229 | 229 | |
230 | - wp_safe_redirect( admin_url( 'admin.php?page=wpinv-settings&tab=general' ) ); |
|
230 | + wp_safe_redirect(admin_url('admin.php?page=wpinv-settings&tab=general')); |
|
231 | 231 | exit; |
232 | 232 | } |
233 | 233 | |
234 | 234 | public function enqueue_scripts() { |
235 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
235 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
236 | 236 | |
237 | - wp_register_style( 'wpinv_front_style', WPINV_PLUGIN_URL . 'assets/css/invoice-front.css', array(), WPINV_VERSION ); |
|
238 | - wp_enqueue_style( 'wpinv_front_style' ); |
|
237 | + wp_register_style('wpinv_front_style', WPINV_PLUGIN_URL . 'assets/css/invoice-front.css', array(), WPINV_VERSION); |
|
238 | + wp_enqueue_style('wpinv_front_style'); |
|
239 | 239 | |
240 | 240 | // Register scripts |
241 | - wp_register_script( 'jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array( 'jquery' ), '2.70', true ); |
|
242 | - wp_register_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/invoice-front.js', array( 'jquery' ), WPINV_VERSION ); |
|
241 | + wp_register_script('jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array('jquery'), '2.70', true); |
|
242 | + wp_register_script('wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/invoice-front.js', array('jquery'), WPINV_VERSION); |
|
243 | 243 | |
244 | 244 | $localize = array(); |
245 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
246 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
245 | + $localize['ajax_url'] = admin_url('admin-ajax.php'); |
|
246 | + $localize['nonce'] = wp_create_nonce('wpinv-nonce'); |
|
247 | 247 | $localize['currency_symbol'] = wpinv_currency_symbol(); |
248 | 248 | $localize['currency_pos'] = wpinv_currency_position(); |
249 | 249 | $localize['thousand_sep'] = wpinv_thousands_separator(); |
250 | 250 | $localize['decimal_sep'] = wpinv_decimal_separator(); |
251 | 251 | $localize['decimals'] = wpinv_decimals(); |
252 | - $localize['txtComplete'] = __( 'Complete', 'invoicing' ); |
|
252 | + $localize['txtComplete'] = __('Complete', 'invoicing'); |
|
253 | 253 | $localize['UseTaxes'] = wpinv_use_taxes(); |
254 | - $localize['checkoutNonce'] = wp_create_nonce( 'wpinv_checkout_nonce' ); |
|
254 | + $localize['checkoutNonce'] = wp_create_nonce('wpinv_checkout_nonce'); |
|
255 | 255 | |
256 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
256 | + $localize = apply_filters('wpinv_front_js_localize', $localize); |
|
257 | 257 | |
258 | - wp_enqueue_script( 'jquery-blockui' ); |
|
258 | + wp_enqueue_script('jquery-blockui'); |
|
259 | 259 | $autofill_api = wpinv_get_option('address_autofill_api'); |
260 | 260 | $autofill_active = wpinv_get_option('address_autofill_active'); |
261 | - if ( isset( $autofill_active ) && 1 == $autofill_active && !empty( $autofill_api ) && wpinv_is_checkout() ) { |
|
262 | - if ( wp_script_is( 'google-maps-api', 'enqueued' ) ) { |
|
263 | - wp_dequeue_script( 'google-maps-api' ); |
|
261 | + if (isset($autofill_active) && 1 == $autofill_active && !empty($autofill_api) && wpinv_is_checkout()) { |
|
262 | + if (wp_script_is('google-maps-api', 'enqueued')) { |
|
263 | + wp_dequeue_script('google-maps-api'); |
|
264 | 264 | } |
265 | - wp_enqueue_script( 'google-maps-api', 'https://maps.googleapis.com/maps/api/js?key=' . $autofill_api . '&libraries=places', array( 'jquery' ), '', false ); |
|
266 | - wp_enqueue_script( 'google-maps-init', WPINV_PLUGIN_URL . 'assets/js/gaaf.js', array( 'jquery', 'google-maps-api' ), '', true ); |
|
265 | + wp_enqueue_script('google-maps-api', 'https://maps.googleapis.com/maps/api/js?key=' . $autofill_api . '&libraries=places', array('jquery'), '', false); |
|
266 | + wp_enqueue_script('google-maps-init', WPINV_PLUGIN_URL . 'assets/js/gaaf.js', array('jquery', 'google-maps-api'), '', true); |
|
267 | 267 | } |
268 | 268 | |
269 | - wp_enqueue_style( "select2", WPINV_PLUGIN_URL . 'assets/css/select2/select2.css', array(), WPINV_VERSION, 'all' ); |
|
270 | - wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full' . $suffix . '.js', array( 'jquery' ), WPINV_VERSION ); |
|
269 | + wp_enqueue_style("select2", WPINV_PLUGIN_URL . 'assets/css/select2/select2.css', array(), WPINV_VERSION, 'all'); |
|
270 | + wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full' . $suffix . '.js', array('jquery'), WPINV_VERSION); |
|
271 | 271 | |
272 | - wp_enqueue_script( 'wpinv-front-script' ); |
|
273 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
272 | + wp_enqueue_script('wpinv-front-script'); |
|
273 | + wp_localize_script('wpinv-front-script', 'WPInv', $localize); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | public function admin_enqueue_scripts() { |
277 | 277 | global $post, $pagenow; |
278 | 278 | |
279 | 279 | $post_type = wpinv_admin_post_type(); |
280 | - $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; |
|
281 | - $page = isset( $_GET['page'] ) ? strtolower( $_GET['page'] ) : ''; |
|
280 | + $suffix = defined('SCRIPT_DEBUG') && SCRIPT_DEBUG ? '' : '.min'; |
|
281 | + $page = isset($_GET['page']) ? strtolower($_GET['page']) : ''; |
|
282 | 282 | |
283 | 283 | $jquery_ui_css = false; |
284 | - if ( ( $post_type == 'wpi_invoice' || $post_type == 'wpi_quote' || $post_type == 'wpi_discount' ) && ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) ) { |
|
284 | + if (($post_type == 'wpi_invoice' || $post_type == 'wpi_quote' || $post_type == 'wpi_discount') && ($pagenow == 'post-new.php' || $pagenow == 'post.php')) { |
|
285 | 285 | $jquery_ui_css = true; |
286 | - } else if ( $page == 'wpinv-settings' || $page == 'wpinv-reports' ) { |
|
286 | + } else if ($page == 'wpinv-settings' || $page == 'wpinv-reports') { |
|
287 | 287 | $jquery_ui_css = true; |
288 | 288 | } |
289 | - if ( $jquery_ui_css ) { |
|
290 | - wp_register_style( 'jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui' . $suffix . '.css', array(), '1.8.16' ); |
|
291 | - wp_enqueue_style( 'jquery-ui-css' ); |
|
289 | + if ($jquery_ui_css) { |
|
290 | + wp_register_style('jquery-ui-css', WPINV_PLUGIN_URL . 'assets/css/jquery-ui' . $suffix . '.css', array(), '1.8.16'); |
|
291 | + wp_enqueue_style('jquery-ui-css'); |
|
292 | 292 | } |
293 | 293 | |
294 | - wp_register_style( 'wpinv_meta_box_style', WPINV_PLUGIN_URL . 'assets/css/meta-box.css', array(), WPINV_VERSION ); |
|
295 | - wp_enqueue_style( 'wpinv_meta_box_style' ); |
|
294 | + wp_register_style('wpinv_meta_box_style', WPINV_PLUGIN_URL . 'assets/css/meta-box.css', array(), WPINV_VERSION); |
|
295 | + wp_enqueue_style('wpinv_meta_box_style'); |
|
296 | 296 | |
297 | - wp_register_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array(), WPINV_VERSION ); |
|
298 | - wp_enqueue_style( 'wpinv_admin_style' ); |
|
297 | + wp_register_style('wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array(), WPINV_VERSION); |
|
298 | + wp_enqueue_style('wpinv_admin_style'); |
|
299 | 299 | |
300 | - $enqueue = ( $post_type == 'wpi_discount' || $post_type == 'wpi_invoice' && ( $pagenow == 'post-new.php' || $pagenow == 'post.php' ) ); |
|
301 | - if ( $page == 'wpinv-subscriptions' ) { |
|
302 | - wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
300 | + $enqueue = ($post_type == 'wpi_discount' || $post_type == 'wpi_invoice' && ($pagenow == 'post-new.php' || $pagenow == 'post.php')); |
|
301 | + if ($page == 'wpinv-subscriptions') { |
|
302 | + wp_enqueue_script('jquery-ui-datepicker'); |
|
303 | 303 | } |
304 | 304 | |
305 | - if ( $enqueue_datepicker = apply_filters( 'wpinv_admin_enqueue_jquery_ui_datepicker', $enqueue ) ) { |
|
306 | - wp_enqueue_script( 'jquery-ui-datepicker' ); |
|
305 | + if ($enqueue_datepicker = apply_filters('wpinv_admin_enqueue_jquery_ui_datepicker', $enqueue)) { |
|
306 | + wp_enqueue_script('jquery-ui-datepicker'); |
|
307 | 307 | } |
308 | 308 | |
309 | - wp_enqueue_style( 'wp-color-picker' ); |
|
310 | - wp_enqueue_script( 'wp-color-picker' ); |
|
309 | + wp_enqueue_style('wp-color-picker'); |
|
310 | + wp_enqueue_script('wp-color-picker'); |
|
311 | 311 | |
312 | - wp_register_script( 'jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array( 'jquery' ), '2.70', true ); |
|
312 | + wp_register_script('jquery-blockui', WPINV_PLUGIN_URL . 'assets/js/jquery.blockUI.min.js', array('jquery'), '2.70', true); |
|
313 | 313 | |
314 | 314 | if (($post_type == 'wpi_invoice' || $post_type == 'wpi_quote') && ($pagenow == 'post-new.php' || $pagenow == 'post.php')) { |
315 | 315 | $autofill_api = wpinv_get_option('address_autofill_api'); |
@@ -320,20 +320,20 @@ discard block |
||
320 | 320 | } |
321 | 321 | } |
322 | 322 | |
323 | - wp_enqueue_style( "select2", WPINV_PLUGIN_URL . 'assets/css/select2/select2.css', array(), WPINV_VERSION, 'all' ); |
|
324 | - wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full' . $suffix . '.js', array( 'jquery' ), WPINV_VERSION ); |
|
323 | + wp_enqueue_style("select2", WPINV_PLUGIN_URL . 'assets/css/select2/select2.css', array(), WPINV_VERSION, 'all'); |
|
324 | + wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full' . $suffix . '.js', array('jquery'), WPINV_VERSION); |
|
325 | 325 | |
326 | - wp_register_script( 'wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array( 'jquery', 'jquery-blockui','jquery-ui-tooltip' ), WPINV_VERSION ); |
|
327 | - wp_enqueue_script( 'wpinv-admin-script' ); |
|
326 | + wp_register_script('wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array('jquery', 'jquery-blockui', 'jquery-ui-tooltip'), WPINV_VERSION); |
|
327 | + wp_enqueue_script('wpinv-admin-script'); |
|
328 | 328 | |
329 | 329 | $localize = array(); |
330 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
331 | - $localize['post_ID'] = isset( $post->ID ) ? $post->ID : ''; |
|
332 | - $localize['wpinv_nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
333 | - $localize['add_invoice_note_nonce'] = wp_create_nonce( 'add-invoice-note' ); |
|
334 | - $localize['delete_invoice_note_nonce'] = wp_create_nonce( 'delete-invoice-note' ); |
|
335 | - $localize['invoice_item_nonce'] = wp_create_nonce( 'invoice-item' ); |
|
336 | - $localize['billing_details_nonce'] = wp_create_nonce( 'get-billing-details' ); |
|
330 | + $localize['ajax_url'] = admin_url('admin-ajax.php'); |
|
331 | + $localize['post_ID'] = isset($post->ID) ? $post->ID : ''; |
|
332 | + $localize['wpinv_nonce'] = wp_create_nonce('wpinv-nonce'); |
|
333 | + $localize['add_invoice_note_nonce'] = wp_create_nonce('add-invoice-note'); |
|
334 | + $localize['delete_invoice_note_nonce'] = wp_create_nonce('delete-invoice-note'); |
|
335 | + $localize['invoice_item_nonce'] = wp_create_nonce('invoice-item'); |
|
336 | + $localize['billing_details_nonce'] = wp_create_nonce('get-billing-details'); |
|
337 | 337 | $localize['tax'] = wpinv_tax_amount(); |
338 | 338 | $localize['discount'] = wpinv_discount_amount(); |
339 | 339 | $localize['currency_symbol'] = wpinv_currency_symbol(); |
@@ -341,69 +341,69 @@ discard block |
||
341 | 341 | $localize['thousand_sep'] = wpinv_thousands_separator(); |
342 | 342 | $localize['decimal_sep'] = wpinv_decimal_separator(); |
343 | 343 | $localize['decimals'] = wpinv_decimals(); |
344 | - $localize['save_invoice'] = __( 'Save Invoice', 'invoicing' ); |
|
345 | - $localize['status_publish'] = wpinv_status_nicename( 'publish' ); |
|
346 | - $localize['status_pending'] = wpinv_status_nicename( 'wpi-pending' ); |
|
347 | - $localize['delete_tax_rate'] = __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ); |
|
348 | - $localize['OneItemMin'] = __( 'Invoice must contain at least one item', 'invoicing' ); |
|
349 | - $localize['DeleteInvoiceItem'] = __( 'Are you sure you wish to delete this item?', 'invoicing' ); |
|
350 | - $localize['FillBillingDetails'] = __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ); |
|
351 | - $localize['confirmCalcTotals'] = __( 'Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing' ); |
|
352 | - $localize['AreYouSure'] = __( 'Are you sure?', 'invoicing' ); |
|
353 | - $localize['emptyInvoice'] = __( 'Add at least one item to save invoice!', 'invoicing' ); |
|
354 | - $localize['errDeleteItem'] = __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ); |
|
355 | - $localize['delete_subscription'] = __( 'Are you sure you want to delete this subscription?', 'invoicing' ); |
|
356 | - $localize['action_edit'] = __( 'Edit', 'invoicing' ); |
|
357 | - $localize['action_cancel'] = __( 'Cancel', 'invoicing' ); |
|
358 | - |
|
359 | - $localize = apply_filters( 'wpinv_admin_js_localize', $localize ); |
|
360 | - |
|
361 | - wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', $localize ); |
|
362 | - |
|
363 | - if ( $page == 'wpinv-subscriptions' ) { |
|
364 | - wp_register_script( 'wpinv-sub-admin-script', WPINV_PLUGIN_URL . 'assets/js/subscriptions.js', array( 'wpinv-admin-script' ), WPINV_VERSION ); |
|
365 | - wp_enqueue_script( 'wpinv-sub-admin-script' ); |
|
344 | + $localize['save_invoice'] = __('Save Invoice', 'invoicing'); |
|
345 | + $localize['status_publish'] = wpinv_status_nicename('publish'); |
|
346 | + $localize['status_pending'] = wpinv_status_nicename('wpi-pending'); |
|
347 | + $localize['delete_tax_rate'] = __('Are you sure you wish to delete this tax rate?', 'invoicing'); |
|
348 | + $localize['OneItemMin'] = __('Invoice must contain at least one item', 'invoicing'); |
|
349 | + $localize['DeleteInvoiceItem'] = __('Are you sure you wish to delete this item?', 'invoicing'); |
|
350 | + $localize['FillBillingDetails'] = __('Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing'); |
|
351 | + $localize['confirmCalcTotals'] = __('Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing'); |
|
352 | + $localize['AreYouSure'] = __('Are you sure?', 'invoicing'); |
|
353 | + $localize['emptyInvoice'] = __('Add at least one item to save invoice!', 'invoicing'); |
|
354 | + $localize['errDeleteItem'] = __('This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing'); |
|
355 | + $localize['delete_subscription'] = __('Are you sure you want to delete this subscription?', 'invoicing'); |
|
356 | + $localize['action_edit'] = __('Edit', 'invoicing'); |
|
357 | + $localize['action_cancel'] = __('Cancel', 'invoicing'); |
|
358 | + |
|
359 | + $localize = apply_filters('wpinv_admin_js_localize', $localize); |
|
360 | + |
|
361 | + wp_localize_script('wpinv-admin-script', 'WPInv_Admin', $localize); |
|
362 | + |
|
363 | + if ($page == 'wpinv-subscriptions') { |
|
364 | + wp_register_script('wpinv-sub-admin-script', WPINV_PLUGIN_URL . 'assets/js/subscriptions.js', array('wpinv-admin-script'), WPINV_VERSION); |
|
365 | + wp_enqueue_script('wpinv-sub-admin-script'); |
|
366 | 366 | } |
367 | 367 | } |
368 | 368 | |
369 | - public function admin_body_class( $classes ) { |
|
369 | + public function admin_body_class($classes) { |
|
370 | 370 | global $pagenow, $post, $current_screen; |
371 | 371 | |
372 | - if ( !empty( $current_screen->post_type ) && ( $current_screen->post_type == 'wpi_invoice' || $current_screen->post_type == 'wpi_quote' ) ) { |
|
372 | + if (!empty($current_screen->post_type) && ($current_screen->post_type == 'wpi_invoice' || $current_screen->post_type == 'wpi_quote')) { |
|
373 | 373 | $classes .= ' wpinv-cpt'; |
374 | 374 | } |
375 | 375 | |
376 | - $page = isset( $_GET['page'] ) ? strtolower( $_GET['page'] ) : false; |
|
376 | + $page = isset($_GET['page']) ? strtolower($_GET['page']) : false; |
|
377 | 377 | |
378 | - $add_class = $page && $pagenow == 'admin.php' && strpos( $page, 'wpinv-' ) === 0 ? true : false; |
|
379 | - if ( $add_class ) { |
|
380 | - $classes .= ' wpi-' . wpinv_sanitize_key( $page ); |
|
378 | + $add_class = $page && $pagenow == 'admin.php' && strpos($page, 'wpinv-') === 0 ? true : false; |
|
379 | + if ($add_class) { |
|
380 | + $classes .= ' wpi-' . wpinv_sanitize_key($page); |
|
381 | 381 | } |
382 | 382 | |
383 | 383 | $settings_class = array(); |
384 | - if ( $page == 'wpinv-settings' ) { |
|
385 | - if ( !empty( $_REQUEST['tab'] ) ) { |
|
386 | - $settings_class[] = sanitize_text_field( $_REQUEST['tab'] ); |
|
384 | + if ($page == 'wpinv-settings') { |
|
385 | + if (!empty($_REQUEST['tab'])) { |
|
386 | + $settings_class[] = sanitize_text_field($_REQUEST['tab']); |
|
387 | 387 | } |
388 | 388 | |
389 | - if ( !empty( $_REQUEST['section'] ) ) { |
|
390 | - $settings_class[] = sanitize_text_field( $_REQUEST['section'] ); |
|
389 | + if (!empty($_REQUEST['section'])) { |
|
390 | + $settings_class[] = sanitize_text_field($_REQUEST['section']); |
|
391 | 391 | } |
392 | 392 | |
393 | - $settings_class[] = isset( $_REQUEST['wpi_sub'] ) && $_REQUEST['wpi_sub'] !== '' ? sanitize_text_field( $_REQUEST['wpi_sub'] ) : 'main'; |
|
393 | + $settings_class[] = isset($_REQUEST['wpi_sub']) && $_REQUEST['wpi_sub'] !== '' ? sanitize_text_field($_REQUEST['wpi_sub']) : 'main'; |
|
394 | 394 | } |
395 | 395 | |
396 | - if ( !empty( $settings_class ) ) { |
|
397 | - $classes .= ' wpi-' . wpinv_sanitize_key( implode( $settings_class, '-' ) ); |
|
396 | + if (!empty($settings_class)) { |
|
397 | + $classes .= ' wpi-' . wpinv_sanitize_key(implode($settings_class, '-')); |
|
398 | 398 | } |
399 | 399 | |
400 | 400 | $post_type = wpinv_admin_post_type(); |
401 | 401 | |
402 | - if ( $post_type == 'wpi_invoice' || $post_type == 'wpi_quote' || $add_class !== false ) { |
|
402 | + if ($post_type == 'wpi_invoice' || $post_type == 'wpi_quote' || $add_class !== false) { |
|
403 | 403 | return $classes .= ' wpinv'; |
404 | 404 | } |
405 | 405 | |
406 | - if ( $pagenow == 'post.php' && $post_type == 'wpi_item' && !empty( $post ) && !wpinv_item_is_editable( $post ) ) { |
|
406 | + if ($pagenow == 'post.php' && $post_type == 'wpi_item' && !empty($post) && !wpinv_item_is_editable($post)) { |
|
407 | 407 | $classes .= ' wpi-editable-n'; |
408 | 408 | } |
409 | 409 | |
@@ -415,21 +415,21 @@ discard block |
||
415 | 415 | } |
416 | 416 | |
417 | 417 | public function wpinv_actions() { |
418 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
419 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
418 | + if (isset($_REQUEST['wpi_action'])) { |
|
419 | + do_action('wpinv_' . wpinv_sanitize_key($_REQUEST['wpi_action']), $_REQUEST); |
|
420 | 420 | } |
421 | 421 | } |
422 | 422 | |
423 | - public function pre_get_posts( $wp_query ) { |
|
424 | - if ( !empty( $wp_query->query_vars['post_type'] ) && $wp_query->query_vars['post_type'] == 'wpi_invoice' && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
425 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses() ); |
|
423 | + public function pre_get_posts($wp_query) { |
|
424 | + if (!empty($wp_query->query_vars['post_type']) && $wp_query->query_vars['post_type'] == 'wpi_invoice' && is_user_logged_in() && is_single() && $wp_query->is_main_query()) { |
|
425 | + $wp_query->query_vars['post_status'] = array_keys(wpinv_get_invoice_statuses()); |
|
426 | 426 | } |
427 | 427 | |
428 | 428 | return $wp_query; |
429 | 429 | } |
430 | 430 | |
431 | 431 | public function bp_invoicing_init() { |
432 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-bp-core.php' ); |
|
432 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-wpinv-bp-core.php'); |
|
433 | 433 | } |
434 | 434 | |
435 | 435 | /** |
@@ -437,11 +437,11 @@ discard block |
||
437 | 437 | * |
438 | 438 | */ |
439 | 439 | public function register_widgets() { |
440 | - register_widget( "WPInv_Checkout_Widget" ); |
|
441 | - register_widget( "WPInv_History_Widget" ); |
|
442 | - register_widget( "WPInv_Receipt_Widget" ); |
|
443 | - register_widget( "WPInv_Subscriptions_Widget" ); |
|
444 | - register_widget( "WPInv_Buy_Item_Widget" ); |
|
445 | - register_widget( "WPInv_Messages_Widget" ); |
|
440 | + register_widget("WPInv_Checkout_Widget"); |
|
441 | + register_widget("WPInv_History_Widget"); |
|
442 | + register_widget("WPInv_Receipt_Widget"); |
|
443 | + register_widget("WPInv_Subscriptions_Widget"); |
|
444 | + register_widget("WPInv_Buy_Item_Widget"); |
|
445 | + register_widget("WPInv_Messages_Widget"); |
|
446 | 446 | } |
447 | 447 | } |
448 | 448 | \ No newline at end of file |
@@ -7,38 +7,38 @@ discard block |
||
7 | 7 | */ |
8 | 8 | |
9 | 9 | // MUST have WordPress. |
10 | -if ( !defined( 'WPINC' ) ) { |
|
11 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
10 | +if (!defined('WPINC')) { |
|
11 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
12 | 12 | } |
13 | 13 | |
14 | -add_action( 'init', 'wpinv_register_post_types', 1 ); |
|
14 | +add_action('init', 'wpinv_register_post_types', 1); |
|
15 | 15 | function wpinv_register_post_types() { |
16 | 16 | |
17 | 17 | $labels = array( |
18 | - 'name' => _x( 'Invoices', 'post type general name', 'invoicing' ), |
|
19 | - 'singular_name' => _x( 'Invoice', 'post type singular name', 'invoicing' ), |
|
20 | - 'menu_name' => _x( 'Invoices', 'admin menu', 'invoicing' ), |
|
21 | - 'name_admin_bar' => _x( 'Invoice', 'add new on admin bar', 'invoicing' ), |
|
22 | - 'add_new' => _x( 'Add New', 'book', 'invoicing' ), |
|
23 | - 'add_new_item' => __( 'Add New Invoice', 'invoicing' ), |
|
24 | - 'new_item' => __( 'New Invoice', 'invoicing' ), |
|
25 | - 'edit_item' => __( 'Edit Invoice', 'invoicing' ), |
|
26 | - 'view_item' => __( 'View Invoice', 'invoicing' ), |
|
27 | - 'all_items' => __( 'Invoices', 'invoicing' ), |
|
28 | - 'search_items' => __( 'Search Invoices', 'invoicing' ), |
|
29 | - 'parent_item_colon' => __( 'Parent Invoices:', 'invoicing' ), |
|
30 | - 'not_found' => __( 'No invoices found.', 'invoicing' ), |
|
31 | - 'not_found_in_trash' => __( 'No invoices found in trash.', 'invoicing' ) |
|
18 | + 'name' => _x('Invoices', 'post type general name', 'invoicing'), |
|
19 | + 'singular_name' => _x('Invoice', 'post type singular name', 'invoicing'), |
|
20 | + 'menu_name' => _x('Invoices', 'admin menu', 'invoicing'), |
|
21 | + 'name_admin_bar' => _x('Invoice', 'add new on admin bar', 'invoicing'), |
|
22 | + 'add_new' => _x('Add New', 'book', 'invoicing'), |
|
23 | + 'add_new_item' => __('Add New Invoice', 'invoicing'), |
|
24 | + 'new_item' => __('New Invoice', 'invoicing'), |
|
25 | + 'edit_item' => __('Edit Invoice', 'invoicing'), |
|
26 | + 'view_item' => __('View Invoice', 'invoicing'), |
|
27 | + 'all_items' => __('Invoices', 'invoicing'), |
|
28 | + 'search_items' => __('Search Invoices', 'invoicing'), |
|
29 | + 'parent_item_colon' => __('Parent Invoices:', 'invoicing'), |
|
30 | + 'not_found' => __('No invoices found.', 'invoicing'), |
|
31 | + 'not_found_in_trash' => __('No invoices found in trash.', 'invoicing') |
|
32 | 32 | ); |
33 | - $labels = apply_filters( 'wpinv_labels', $labels ); |
|
33 | + $labels = apply_filters('wpinv_labels', $labels); |
|
34 | 34 | |
35 | 35 | $menu_icon = WPINV_PLUGIN_URL . '/assets/images/favicon.ico'; |
36 | - $menu_icon = apply_filters( 'wpinv_menu_icon_invoice', $menu_icon ); |
|
36 | + $menu_icon = apply_filters('wpinv_menu_icon_invoice', $menu_icon); |
|
37 | 37 | |
38 | 38 | $cap_type = 'wpi_invoice'; |
39 | 39 | $args = array( |
40 | 40 | 'labels' => $labels, |
41 | - 'description' => __( 'This is where invoices are stored.', 'invoicing' ), |
|
41 | + 'description' => __('This is where invoices are stored.', 'invoicing'), |
|
42 | 42 | 'public' => true, |
43 | 43 | 'can_export' => true, |
44 | 44 | '_builtin' => false, |
@@ -71,30 +71,30 @@ discard block |
||
71 | 71 | 'has_archive' => false, |
72 | 72 | 'hierarchical' => false, |
73 | 73 | 'menu_position' => null, |
74 | - 'supports' => array( 'title', 'author' ), |
|
74 | + 'supports' => array('title', 'author'), |
|
75 | 75 | 'menu_icon' => 'dashicons-media-spreadsheet', |
76 | 76 | ); |
77 | 77 | |
78 | - $args = apply_filters( 'wpinv_register_post_type_invoice', $args ); |
|
78 | + $args = apply_filters('wpinv_register_post_type_invoice', $args); |
|
79 | 79 | |
80 | - register_post_type( 'wpi_invoice', $args ); |
|
80 | + register_post_type('wpi_invoice', $args); |
|
81 | 81 | |
82 | 82 | $items_labels = array( |
83 | - 'name' => _x( 'Items', 'post type general name', 'invoicing' ), |
|
84 | - 'singular_name' => _x( 'Item', 'post type singular name', 'invoicing' ), |
|
85 | - 'menu_name' => _x( 'Items', 'admin menu', 'invoicing' ), |
|
86 | - 'add_new' => _x( 'Add New', 'wpi_item', 'invoicing' ), |
|
87 | - 'add_new_item' => __( 'Add New Item', 'invoicing' ), |
|
88 | - 'new_item' => __( 'New Item', 'invoicing' ), |
|
89 | - 'edit_item' => __( 'Edit Item', 'invoicing' ), |
|
90 | - 'view_item' => __( 'View Item', 'invoicing' ), |
|
91 | - 'all_items' => __( 'Items', 'invoicing' ), |
|
92 | - 'search_items' => __( 'Search Items', 'invoicing' ), |
|
83 | + 'name' => _x('Items', 'post type general name', 'invoicing'), |
|
84 | + 'singular_name' => _x('Item', 'post type singular name', 'invoicing'), |
|
85 | + 'menu_name' => _x('Items', 'admin menu', 'invoicing'), |
|
86 | + 'add_new' => _x('Add New', 'wpi_item', 'invoicing'), |
|
87 | + 'add_new_item' => __('Add New Item', 'invoicing'), |
|
88 | + 'new_item' => __('New Item', 'invoicing'), |
|
89 | + 'edit_item' => __('Edit Item', 'invoicing'), |
|
90 | + 'view_item' => __('View Item', 'invoicing'), |
|
91 | + 'all_items' => __('Items', 'invoicing'), |
|
92 | + 'search_items' => __('Search Items', 'invoicing'), |
|
93 | 93 | 'parent_item_colon' => '', |
94 | - 'not_found' => __( 'No items found.', 'invoicing' ), |
|
95 | - 'not_found_in_trash' => __( 'No items found in trash.', 'invoicing' ) |
|
94 | + 'not_found' => __('No items found.', 'invoicing'), |
|
95 | + 'not_found_in_trash' => __('No items found in trash.', 'invoicing') |
|
96 | 96 | ); |
97 | - $items_labels = apply_filters( 'wpinv_items_labels', $items_labels ); |
|
97 | + $items_labels = apply_filters('wpinv_items_labels', $items_labels); |
|
98 | 98 | |
99 | 99 | $cap_type = 'wpi_item'; |
100 | 100 | $invoice_item_args = array( |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | 'show_ui' => true, |
104 | 104 | 'show_in_menu' => wpinv_current_user_can_manage_invoicing() ? 'wpinv' : false, |
105 | 105 | 'show_in_nav_menus' => false, |
106 | - 'supports' => array( 'title', 'excerpt' ), |
|
106 | + 'supports' => array('title', 'excerpt'), |
|
107 | 107 | 'register_meta_box_cb' => 'wpinv_register_item_meta_boxes', |
108 | 108 | 'rewrite' => false, |
109 | 109 | 'query_var' => false, |
@@ -128,33 +128,33 @@ discard block |
||
128 | 128 | ), |
129 | 129 | 'can_export' => true, |
130 | 130 | ); |
131 | - $invoice_item_args = apply_filters( 'wpinv_register_post_type_invoice_item', $invoice_item_args ); |
|
131 | + $invoice_item_args = apply_filters('wpinv_register_post_type_invoice_item', $invoice_item_args); |
|
132 | 132 | |
133 | - register_post_type( 'wpi_item', $invoice_item_args ); |
|
133 | + register_post_type('wpi_item', $invoice_item_args); |
|
134 | 134 | |
135 | 135 | $labels = array( |
136 | - 'name' => _x( 'Discounts', 'post type general name', 'invoicing' ), |
|
137 | - 'singular_name' => _x( 'Discount', 'post type singular name', 'invoicing' ), |
|
138 | - 'menu_name' => _x( 'Discounts', 'admin menu', 'invoicing' ), |
|
139 | - 'name_admin_bar' => _x( 'Discount', 'add new on admin bar', 'invoicing' ), |
|
140 | - 'add_new' => _x( 'Add New', 'book', 'invoicing' ), |
|
141 | - 'add_new_item' => __( 'Add New Discount', 'invoicing' ), |
|
142 | - 'new_item' => __( 'New Discount', 'invoicing' ), |
|
143 | - 'edit_item' => __( 'Edit Discount', 'invoicing' ), |
|
144 | - 'view_item' => __( 'View Discount', 'invoicing' ), |
|
145 | - 'all_items' => __( 'Discounts', 'invoicing' ), |
|
146 | - 'search_items' => __( 'Search Discounts', 'invoicing' ), |
|
147 | - 'parent_item_colon' => __( 'Parent Discounts:', 'invoicing' ), |
|
148 | - 'not_found' => __( 'No discounts found.', 'invoicing' ), |
|
149 | - 'not_found_in_trash' => __( 'No discounts found in trash.', 'invoicing' ) |
|
136 | + 'name' => _x('Discounts', 'post type general name', 'invoicing'), |
|
137 | + 'singular_name' => _x('Discount', 'post type singular name', 'invoicing'), |
|
138 | + 'menu_name' => _x('Discounts', 'admin menu', 'invoicing'), |
|
139 | + 'name_admin_bar' => _x('Discount', 'add new on admin bar', 'invoicing'), |
|
140 | + 'add_new' => _x('Add New', 'book', 'invoicing'), |
|
141 | + 'add_new_item' => __('Add New Discount', 'invoicing'), |
|
142 | + 'new_item' => __('New Discount', 'invoicing'), |
|
143 | + 'edit_item' => __('Edit Discount', 'invoicing'), |
|
144 | + 'view_item' => __('View Discount', 'invoicing'), |
|
145 | + 'all_items' => __('Discounts', 'invoicing'), |
|
146 | + 'search_items' => __('Search Discounts', 'invoicing'), |
|
147 | + 'parent_item_colon' => __('Parent Discounts:', 'invoicing'), |
|
148 | + 'not_found' => __('No discounts found.', 'invoicing'), |
|
149 | + 'not_found_in_trash' => __('No discounts found in trash.', 'invoicing') |
|
150 | 150 | ); |
151 | - $labels = apply_filters( 'wpinv_discounts_labels', $labels ); |
|
151 | + $labels = apply_filters('wpinv_discounts_labels', $labels); |
|
152 | 152 | |
153 | 153 | $cap_type = 'wpi_discount'; |
154 | 154 | |
155 | 155 | $args = array( |
156 | 156 | 'labels' => $labels, |
157 | - 'description' => __( 'This is where you can add new discounts that users can use in invoices.', 'invoicing' ), |
|
157 | + 'description' => __('This is where you can add new discounts that users can use in invoices.', 'invoicing'), |
|
158 | 158 | 'public' => false, |
159 | 159 | 'can_export' => true, |
160 | 160 | '_builtin' => false, |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | ), |
186 | 186 | 'has_archive' => false, |
187 | 187 | 'hierarchical' => false, |
188 | - 'supports' => array( 'title', 'excerpt' ), |
|
188 | + 'supports' => array('title', 'excerpt'), |
|
189 | 189 | 'register_meta_box_cb' => 'wpinv_register_discount_meta_boxes', |
190 | 190 | 'show_in_nav_menus' => false, |
191 | 191 | 'show_in_admin_bar' => true, |
@@ -193,106 +193,106 @@ discard block |
||
193 | 193 | 'menu_position' => null, |
194 | 194 | ); |
195 | 195 | |
196 | - $args = apply_filters( 'wpinv_register_post_type_discount', $args ); |
|
196 | + $args = apply_filters('wpinv_register_post_type_discount', $args); |
|
197 | 197 | |
198 | - register_post_type( 'wpi_discount', $args ); |
|
198 | + register_post_type('wpi_discount', $args); |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | function wpinv_get_default_labels() { |
202 | 202 | $defaults = array( |
203 | - 'singular' => __( 'Invoice', 'invoicing' ), |
|
204 | - 'plural' => __( 'Invoices', 'invoicing' ) |
|
203 | + 'singular' => __('Invoice', 'invoicing'), |
|
204 | + 'plural' => __('Invoices', 'invoicing') |
|
205 | 205 | ); |
206 | 206 | |
207 | - return apply_filters( 'wpinv_default_invoices_name', $defaults ); |
|
207 | + return apply_filters('wpinv_default_invoices_name', $defaults); |
|
208 | 208 | } |
209 | 209 | |
210 | -function wpinv_get_label_singular( $lowercase = false ) { |
|
210 | +function wpinv_get_label_singular($lowercase = false) { |
|
211 | 211 | $defaults = wpinv_get_default_labels(); |
212 | 212 | |
213 | - return ($lowercase) ? strtolower( $defaults['singular'] ) : $defaults['singular']; |
|
213 | + return ($lowercase) ? strtolower($defaults['singular']) : $defaults['singular']; |
|
214 | 214 | } |
215 | 215 | |
216 | -function wpinv_get_label_plural( $lowercase = false ) { |
|
216 | +function wpinv_get_label_plural($lowercase = false) { |
|
217 | 217 | $defaults = wpinv_get_default_labels(); |
218 | 218 | |
219 | - return ( $lowercase ) ? strtolower( $defaults['plural'] ) : $defaults['plural']; |
|
219 | + return ($lowercase) ? strtolower($defaults['plural']) : $defaults['plural']; |
|
220 | 220 | } |
221 | 221 | |
222 | -function wpinv_change_default_title( $title ) { |
|
223 | - if ( !is_admin() ) { |
|
222 | +function wpinv_change_default_title($title) { |
|
223 | + if (!is_admin()) { |
|
224 | 224 | $label = wpinv_get_label_singular(); |
225 | - $title = sprintf( __( 'Enter %s name here', 'invoicing' ), $label ); |
|
225 | + $title = sprintf(__('Enter %s name here', 'invoicing'), $label); |
|
226 | 226 | return $title; |
227 | 227 | } |
228 | 228 | |
229 | 229 | $screen = get_current_screen(); |
230 | 230 | |
231 | - if ( 'wpi_invoice' == $screen->post_type ) { |
|
231 | + if ('wpi_invoice' == $screen->post_type) { |
|
232 | 232 | $label = wpinv_get_label_singular(); |
233 | - $title = sprintf( __( 'Enter %s name here', 'invoicing' ), $label ); |
|
233 | + $title = sprintf(__('Enter %s name here', 'invoicing'), $label); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | return $title; |
237 | 237 | } |
238 | -add_filter( 'enter_title_here', 'wpinv_change_default_title' ); |
|
238 | +add_filter('enter_title_here', 'wpinv_change_default_title'); |
|
239 | 239 | |
240 | 240 | function wpinv_register_post_status() { |
241 | - register_post_status( 'wpi-pending', array( |
|
242 | - 'label' => _x( 'Pending', 'Invoice status', 'invoicing' ), |
|
241 | + register_post_status('wpi-pending', array( |
|
242 | + 'label' => _x('Pending', 'Invoice status', 'invoicing'), |
|
243 | 243 | 'public' => true, |
244 | 244 | 'exclude_from_search' => true, |
245 | 245 | 'show_in_admin_all_list' => true, |
246 | 246 | 'show_in_admin_status_list' => true, |
247 | - 'label_count' => _n_noop( 'Pending <span class="count">(%s)</span>', 'Pending <span class="count">(%s)</span>', 'invoicing' ) |
|
248 | - ) ); |
|
249 | - register_post_status( 'wpi-processing', array( |
|
250 | - 'label' => _x( 'Processing', 'Invoice status', 'invoicing' ), |
|
247 | + 'label_count' => _n_noop('Pending <span class="count">(%s)</span>', 'Pending <span class="count">(%s)</span>', 'invoicing') |
|
248 | + )); |
|
249 | + register_post_status('wpi-processing', array( |
|
250 | + 'label' => _x('Processing', 'Invoice status', 'invoicing'), |
|
251 | 251 | 'public' => true, |
252 | 252 | 'exclude_from_search' => true, |
253 | 253 | 'show_in_admin_all_list' => true, |
254 | 254 | 'show_in_admin_status_list' => true, |
255 | - 'label_count' => _n_noop( 'Processing <span class="count">(%s)</span>', 'Processing <span class="count">(%s)</span>', 'invoicing' ) |
|
256 | - ) ); |
|
257 | - register_post_status( 'wpi-onhold', array( |
|
258 | - 'label' => _x( 'On Hold', 'Invoice status', 'invoicing' ), |
|
255 | + 'label_count' => _n_noop('Processing <span class="count">(%s)</span>', 'Processing <span class="count">(%s)</span>', 'invoicing') |
|
256 | + )); |
|
257 | + register_post_status('wpi-onhold', array( |
|
258 | + 'label' => _x('On Hold', 'Invoice status', 'invoicing'), |
|
259 | 259 | 'public' => true, |
260 | 260 | 'exclude_from_search' => true, |
261 | 261 | 'show_in_admin_all_list' => true, |
262 | 262 | 'show_in_admin_status_list' => true, |
263 | - 'label_count' => _n_noop( 'On Hold <span class="count">(%s)</span>', 'On Hold <span class="count">(%s)</span>', 'invoicing' ) |
|
264 | - ) ); |
|
265 | - register_post_status( 'wpi-cancelled', array( |
|
266 | - 'label' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
263 | + 'label_count' => _n_noop('On Hold <span class="count">(%s)</span>', 'On Hold <span class="count">(%s)</span>', 'invoicing') |
|
264 | + )); |
|
265 | + register_post_status('wpi-cancelled', array( |
|
266 | + 'label' => _x('Cancelled', 'Invoice status', 'invoicing'), |
|
267 | 267 | 'public' => true, |
268 | 268 | 'exclude_from_search' => true, |
269 | 269 | 'show_in_admin_all_list' => true, |
270 | 270 | 'show_in_admin_status_list' => true, |
271 | - 'label_count' => _n_noop( 'Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'invoicing' ) |
|
272 | - ) ); |
|
273 | - register_post_status( 'wpi-refunded', array( |
|
274 | - 'label' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
271 | + 'label_count' => _n_noop('Cancelled <span class="count">(%s)</span>', 'Cancelled <span class="count">(%s)</span>', 'invoicing') |
|
272 | + )); |
|
273 | + register_post_status('wpi-refunded', array( |
|
274 | + 'label' => _x('Refunded', 'Invoice status', 'invoicing'), |
|
275 | 275 | 'public' => true, |
276 | 276 | 'exclude_from_search' => true, |
277 | 277 | 'show_in_admin_all_list' => true, |
278 | 278 | 'show_in_admin_status_list' => true, |
279 | - 'label_count' => _n_noop( 'Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'invoicing' ) |
|
280 | - ) ); |
|
281 | - register_post_status( 'wpi-failed', array( |
|
282 | - 'label' => _x( 'Failed', 'Invoice status', 'invoicing' ), |
|
279 | + 'label_count' => _n_noop('Refunded <span class="count">(%s)</span>', 'Refunded <span class="count">(%s)</span>', 'invoicing') |
|
280 | + )); |
|
281 | + register_post_status('wpi-failed', array( |
|
282 | + 'label' => _x('Failed', 'Invoice status', 'invoicing'), |
|
283 | 283 | 'public' => true, |
284 | 284 | 'exclude_from_search' => true, |
285 | 285 | 'show_in_admin_all_list' => true, |
286 | 286 | 'show_in_admin_status_list' => true, |
287 | - 'label_count' => _n_noop( 'Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'invoicing' ) |
|
288 | - ) ); |
|
289 | - register_post_status( 'wpi-renewal', array( |
|
290 | - 'label' => _x( 'Renewal', 'Invoice status', 'invoicing' ), |
|
287 | + 'label_count' => _n_noop('Failed <span class="count">(%s)</span>', 'Failed <span class="count">(%s)</span>', 'invoicing') |
|
288 | + )); |
|
289 | + register_post_status('wpi-renewal', array( |
|
290 | + 'label' => _x('Renewal', 'Invoice status', 'invoicing'), |
|
291 | 291 | 'public' => true, |
292 | 292 | 'exclude_from_search' => true, |
293 | 293 | 'show_in_admin_all_list' => true, |
294 | 294 | 'show_in_admin_status_list' => true, |
295 | - 'label_count' => _n_noop( 'Renewal <span class="count">(%s)</span>', 'Renewal <span class="count">(%s)</span>', 'invoicing' ) |
|
296 | - ) ); |
|
295 | + 'label_count' => _n_noop('Renewal <span class="count">(%s)</span>', 'Renewal <span class="count">(%s)</span>', 'invoicing') |
|
296 | + )); |
|
297 | 297 | } |
298 | -add_action( 'init', 'wpinv_register_post_status', 10 ); |
|
298 | +add_action('init', 'wpinv_register_post_status', 10); |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | return false; |
343 | 343 | } |
344 | 344 | if (null !== $this->apcuPrefix) { |
345 | - $file = apcu_fetch($this->apcuPrefix.$class, $hit); |
|
345 | + $file = apcu_fetch($this->apcuPrefix . $class, $hit); |
|
346 | 346 | if ($hit) { |
347 | 347 | return $file; |
348 | 348 | } |
@@ -356,7 +356,7 @@ discard block |
||
356 | 356 | } |
357 | 357 | |
358 | 358 | if (null !== $this->apcuPrefix) { |
359 | - apcu_add($this->apcuPrefix.$class, $file); |
|
359 | + apcu_add($this->apcuPrefix . $class, $file); |
|
360 | 360 | } |
361 | 361 | |
362 | 362 | if (false === $file) { |
@@ -1,60 +1,60 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | // Exit if accessed directly |
3 | -if ( ! defined( 'ABSPATH' ) ) exit; |
|
3 | +if (!defined('ABSPATH')) exit; |
|
4 | 4 | |
5 | -add_filter( 'wpinv_authorizenet_support_subscription', '__return_true' ); |
|
5 | +add_filter('wpinv_authorizenet_support_subscription', '__return_true'); |
|
6 | 6 | |
7 | -function wpinv_authorizenet_cc_form( $invoice_id ) { |
|
8 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
9 | - $cc_owner = !empty( $invoice ) ? esc_attr( $invoice->get_user_full_name() ) : ''; |
|
7 | +function wpinv_authorizenet_cc_form($invoice_id) { |
|
8 | + $invoice = wpinv_get_invoice($invoice_id); |
|
9 | + $cc_owner = !empty($invoice) ? esc_attr($invoice->get_user_full_name()) : ''; |
|
10 | 10 | ?> |
11 | 11 | <div id="authorizenet_cc_form" class="form-horizontal wpi-cc-form panel panel-default"> |
12 | - <div class="panel-heading"><h3 class="panel-title"><?php _e( 'Card Details', 'invoicing' ) ;?></h3></div> |
|
12 | + <div class="panel-heading"><h3 class="panel-title"><?php _e('Card Details', 'invoicing'); ?></h3></div> |
|
13 | 13 | <div class="panel-body"> |
14 | 14 | <div class="form-group required"> |
15 | - <label for="auth-input-cc-owner" class="col-sm-3 control-label"><?php _e( 'Card Owner', 'invoicing' ) ;?></label> |
|
15 | + <label for="auth-input-cc-owner" class="col-sm-3 control-label"><?php _e('Card Owner', 'invoicing'); ?></label> |
|
16 | 16 | <div class="col-sm-5"> |
17 | - <input type="text" class="form-control" id="auth-input-cc-owner" placeholder="<?php esc_attr_e( 'Card Owner', 'invoicing' ) ;?>" value="<?php echo $cc_owner;?>" name="authorizenet[cc_owner]"> |
|
17 | + <input type="text" class="form-control" id="auth-input-cc-owner" placeholder="<?php esc_attr_e('Card Owner', 'invoicing'); ?>" value="<?php echo $cc_owner; ?>" name="authorizenet[cc_owner]"> |
|
18 | 18 | </div> |
19 | 19 | </div> |
20 | 20 | <div class="form-group required"> |
21 | - <label for="auth-input-cc-number" class="col-sm-3 control-label"><?php _e( 'Card Number', 'invoicing' ) ;?></label> |
|
21 | + <label for="auth-input-cc-number" class="col-sm-3 control-label"><?php _e('Card Number', 'invoicing'); ?></label> |
|
22 | 22 | <div class="col-sm-5"> |
23 | - <input type="text" class="form-control" id="auth-input-cc-number" placeholder="<?php esc_attr_e( 'Card Number', 'invoicing' ) ;?>" value="" name="authorizenet[cc_number]"> |
|
23 | + <input type="text" class="form-control" id="auth-input-cc-number" placeholder="<?php esc_attr_e('Card Number', 'invoicing'); ?>" value="" name="authorizenet[cc_number]"> |
|
24 | 24 | </div> |
25 | 25 | </div> |
26 | 26 | <div class="form-group required"> |
27 | - <label for="auth-input-cc-expire-date" class="col-sm-3 control-label"><?php _e( 'Card Expiry Date', 'invoicing' ) ;?></label> |
|
27 | + <label for="auth-input-cc-expire-date" class="col-sm-3 control-label"><?php _e('Card Expiry Date', 'invoicing'); ?></label> |
|
28 | 28 | <div class="col-sm-2"> |
29 | 29 | <select class="form-control" id="auth-input-cc-expire-date" name="authorizenet[cc_expire_month]"> |
30 | - <?php for ( $i = 1; $i <= 12; $i++ ) { $value = str_pad( $i, 2, '0', STR_PAD_LEFT ); ?> |
|
31 | - <option value="<?php echo $value;?>"><?php echo $value;?></option> |
|
30 | + <?php for ($i = 1; $i <= 12; $i++) { $value = str_pad($i, 2, '0', STR_PAD_LEFT); ?> |
|
31 | + <option value="<?php echo $value; ?>"><?php echo $value; ?></option> |
|
32 | 32 | <?php } ?> |
33 | 33 | </select> |
34 | 34 | </div> |
35 | 35 | <div class="col-sm-3"> |
36 | 36 | <select class="form-control" name="authorizenet[cc_expire_year]"> |
37 | - <?php $year = date( 'Y' ); for ( $i = $year; $i <= ( $year + 10 ); $i++ ) { ?> |
|
38 | - <option value="<?php echo $i;?>"><?php echo $i;?></option> |
|
37 | + <?php $year = date('Y'); for ($i = $year; $i <= ($year + 10); $i++) { ?> |
|
38 | + <option value="<?php echo $i; ?>"><?php echo $i; ?></option> |
|
39 | 39 | <?php } ?> |
40 | 40 | </select> |
41 | 41 | </div> |
42 | 42 | </div> |
43 | 43 | <div class="form-group required"> |
44 | - <label for="auth-input-cc-cvv2" class="col-sm-3 control-label"><?php _e( 'Card Security Code (CVV2)', 'invoicing' ) ;?></label> |
|
44 | + <label for="auth-input-cc-cvv2" class="col-sm-3 control-label"><?php _e('Card Security Code (CVV2)', 'invoicing'); ?></label> |
|
45 | 45 | <div class="col-sm-5"> |
46 | - <input type="text" class="form-control" id="auth-input-cc-cvv2" placeholder="<?php esc_attr_e( 'Card Security Code (CVV2)', 'invoicing' ) ;?>" value="" name="authorizenet[cc_cvv2]""> |
|
46 | + <input type="text" class="form-control" id="auth-input-cc-cvv2" placeholder="<?php esc_attr_e('Card Security Code (CVV2)', 'invoicing'); ?>" value="" name="authorizenet[cc_cvv2]""> |
|
47 | 47 | </div> |
48 | 48 | </div> |
49 | 49 | </div> |
50 | 50 | </div> |
51 | 51 | <?php |
52 | 52 | } |
53 | -add_action( 'wpinv_authorizenet_cc_form', 'wpinv_authorizenet_cc_form', 10, 1 ); |
|
53 | +add_action('wpinv_authorizenet_cc_form', 'wpinv_authorizenet_cc_form', 10, 1); |
|
54 | 54 | |
55 | -function wpinv_process_authorizenet_payment( $purchase_data ) { |
|
56 | - if( ! wp_verify_nonce( $purchase_data['gateway_nonce'], 'wpi-gateway' ) ) { |
|
57 | - wp_die( __( 'Nonce verification has failed', 'invoicing' ), __( 'Error', 'invoicing' ), array( 'response' => 403 ) ); |
|
55 | +function wpinv_process_authorizenet_payment($purchase_data) { |
|
56 | + if (!wp_verify_nonce($purchase_data['gateway_nonce'], 'wpi-gateway')) { |
|
57 | + wp_die(__('Nonce verification has failed', 'invoicing'), __('Error', 'invoicing'), array('response' => 403)); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | // Collect payment data |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | ); |
73 | 73 | |
74 | 74 | // Record the pending payment |
75 | - $invoice = wpinv_get_invoice( $purchase_data['invoice_id'] ); |
|
75 | + $invoice = wpinv_get_invoice($purchase_data['invoice_id']); |
|
76 | 76 | |
77 | - if ( !empty( $invoice ) ) { |
|
78 | - $authorizenet_card = !empty( $_POST['authorizenet'] ) ? $_POST['authorizenet'] : array(); |
|
77 | + if (!empty($invoice)) { |
|
78 | + $authorizenet_card = !empty($_POST['authorizenet']) ? $_POST['authorizenet'] : array(); |
|
79 | 79 | $card_defaults = array( |
80 | 80 | 'cc_owner' => $invoice->get_user_full_name(), |
81 | 81 | 'cc_number' => false, |
@@ -83,192 +83,192 @@ discard block |
||
83 | 83 | 'cc_expire_year' => false, |
84 | 84 | 'cc_cvv2' => false, |
85 | 85 | ); |
86 | - $authorizenet_card = wp_parse_args( $authorizenet_card, $card_defaults ); |
|
86 | + $authorizenet_card = wp_parse_args($authorizenet_card, $card_defaults); |
|
87 | 87 | |
88 | - if ( empty( $authorizenet_card['cc_owner'] ) ) { |
|
89 | - wpinv_set_error( 'empty_card_name', __( 'You must enter the name on your card!', 'invoicing')); |
|
88 | + if (empty($authorizenet_card['cc_owner'])) { |
|
89 | + wpinv_set_error('empty_card_name', __('You must enter the name on your card!', 'invoicing')); |
|
90 | 90 | } |
91 | - if ( empty( $authorizenet_card['cc_number'] ) ) { |
|
92 | - wpinv_set_error( 'empty_card', __( 'You must enter a card number!', 'invoicing')); |
|
91 | + if (empty($authorizenet_card['cc_number'])) { |
|
92 | + wpinv_set_error('empty_card', __('You must enter a card number!', 'invoicing')); |
|
93 | 93 | } |
94 | - if ( empty( $authorizenet_card['cc_expire_month'] ) ) { |
|
95 | - wpinv_set_error( 'empty_month', __( 'You must enter an card expiration month!', 'invoicing')); |
|
94 | + if (empty($authorizenet_card['cc_expire_month'])) { |
|
95 | + wpinv_set_error('empty_month', __('You must enter an card expiration month!', 'invoicing')); |
|
96 | 96 | } |
97 | - if ( empty( $authorizenet_card['cc_expire_year'] ) ) { |
|
98 | - wpinv_set_error( 'empty_year', __( 'You must enter an card expiration year!', 'invoicing')); |
|
97 | + if (empty($authorizenet_card['cc_expire_year'])) { |
|
98 | + wpinv_set_error('empty_year', __('You must enter an card expiration year!', 'invoicing')); |
|
99 | 99 | } |
100 | - if ( empty( $authorizenet_card['cc_cvv2'] ) ) { |
|
101 | - wpinv_set_error( 'empty_cvv2', __( 'You must enter a valid CVV2!', 'invoicing' ) ); |
|
100 | + if (empty($authorizenet_card['cc_cvv2'])) { |
|
101 | + wpinv_set_error('empty_cvv2', __('You must enter a valid CVV2!', 'invoicing')); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | $errors = wpinv_get_errors(); |
105 | 105 | |
106 | - if ( empty( $errors ) ) { |
|
106 | + if (empty($errors)) { |
|
107 | 107 | $invoice_id = $invoice->ID; |
108 | 108 | $quantities_enabled = wpinv_item_quantities_enabled(); |
109 | 109 | $use_taxes = wpinv_use_taxes(); |
110 | 110 | |
111 | 111 | $authorizeAIM = wpinv_authorizenet_AIM(); |
112 | - $authorizeAIM->first_name = wpinv_utf8_substr( $invoice->get_first_name(), 0, 50 ); |
|
113 | - $authorizeAIM->last_name = wpinv_utf8_substr( $invoice->get_last_name(), 0, 50 ); |
|
114 | - $authorizeAIM->company = wpinv_utf8_substr( $invoice->company, 0, 50 ); |
|
115 | - $authorizeAIM->address = wpinv_utf8_substr( wp_strip_all_tags( $invoice->get_address(), true ), 0, 60 ); |
|
116 | - $authorizeAIM->city = wpinv_utf8_substr( $invoice->city, 0, 40 ); |
|
117 | - $authorizeAIM->state = wpinv_utf8_substr( $invoice->state, 0, 40 ); |
|
118 | - $authorizeAIM->zip = wpinv_utf8_substr( $invoice->zip, 0, 40 ); |
|
119 | - $authorizeAIM->country = wpinv_utf8_substr( $invoice->country, 0, 60 ); |
|
120 | - $authorizeAIM->phone = wpinv_utf8_substr( $invoice->phone, 0, 25 ); |
|
121 | - $authorizeAIM->email = wpinv_utf8_substr( $invoice->get_email(), 0, 255 ); |
|
122 | - $authorizeAIM->amount = wpinv_sanitize_amount( $invoice->get_total() ); |
|
123 | - $authorizeAIM->card_num = str_replace( ' ', '', sanitize_text_field( $authorizenet_card['cc_number'] ) ); |
|
124 | - $authorizeAIM->exp_date = sanitize_text_field( $authorizenet_card['cc_expire_month'] ) . sanitize_text_field( $authorizenet_card['cc_expire_year'] ); |
|
125 | - $authorizeAIM->card_code = sanitize_text_field( $authorizenet_card['cc_cvv2'] ); |
|
112 | + $authorizeAIM->first_name = wpinv_utf8_substr($invoice->get_first_name(), 0, 50); |
|
113 | + $authorizeAIM->last_name = wpinv_utf8_substr($invoice->get_last_name(), 0, 50); |
|
114 | + $authorizeAIM->company = wpinv_utf8_substr($invoice->company, 0, 50); |
|
115 | + $authorizeAIM->address = wpinv_utf8_substr(wp_strip_all_tags($invoice->get_address(), true), 0, 60); |
|
116 | + $authorizeAIM->city = wpinv_utf8_substr($invoice->city, 0, 40); |
|
117 | + $authorizeAIM->state = wpinv_utf8_substr($invoice->state, 0, 40); |
|
118 | + $authorizeAIM->zip = wpinv_utf8_substr($invoice->zip, 0, 40); |
|
119 | + $authorizeAIM->country = wpinv_utf8_substr($invoice->country, 0, 60); |
|
120 | + $authorizeAIM->phone = wpinv_utf8_substr($invoice->phone, 0, 25); |
|
121 | + $authorizeAIM->email = wpinv_utf8_substr($invoice->get_email(), 0, 255); |
|
122 | + $authorizeAIM->amount = wpinv_sanitize_amount($invoice->get_total()); |
|
123 | + $authorizeAIM->card_num = str_replace(' ', '', sanitize_text_field($authorizenet_card['cc_number'])); |
|
124 | + $authorizeAIM->exp_date = sanitize_text_field($authorizenet_card['cc_expire_month']) . sanitize_text_field($authorizenet_card['cc_expire_year']); |
|
125 | + $authorizeAIM->card_code = sanitize_text_field($authorizenet_card['cc_cvv2']); |
|
126 | 126 | $authorizeAIM->invoice_num = $invoice->ID; |
127 | 127 | |
128 | 128 | $item_desc = array(); |
129 | - foreach ( $invoice->get_cart_details() as $item ) { |
|
130 | - $quantity = $quantities_enabled && !empty( $item['quantity'] ) && $item['quantity'] > 0 ? $item['quantity'] : 1; |
|
131 | - $item_name = wpinv_utf8_substr( $item['name'], 0, 31 ); |
|
132 | - $item_desc[] = $item_name . ' (' . $quantity . 'x ' . wpinv_price( wpinv_format_amount( $item['item_price'] ) ) . ')'; |
|
129 | + foreach ($invoice->get_cart_details() as $item) { |
|
130 | + $quantity = $quantities_enabled && !empty($item['quantity']) && $item['quantity'] > 0 ? $item['quantity'] : 1; |
|
131 | + $item_name = wpinv_utf8_substr($item['name'], 0, 31); |
|
132 | + $item_desc[] = $item_name . ' (' . $quantity . 'x ' . wpinv_price(wpinv_format_amount($item['item_price'])) . ')'; |
|
133 | 133 | |
134 | - $authorizeAIM->addLineItem( $item['id'], $item_name, '', $quantity, $item['item_price'], ( $use_taxes && !empty( $item['tax'] ) && $item['tax'] > 0 ? 'Y' : 'N' ) ); |
|
134 | + $authorizeAIM->addLineItem($item['id'], $item_name, '', $quantity, $item['item_price'], ($use_taxes && !empty($item['tax']) && $item['tax'] > 0 ? 'Y' : 'N')); |
|
135 | 135 | } |
136 | 136 | |
137 | - $item_desc = '#' . $invoice->get_number() . ': ' . implode( ', ', $item_desc ); |
|
137 | + $item_desc = '#' . $invoice->get_number() . ': ' . implode(', ', $item_desc); |
|
138 | 138 | |
139 | - if ( $use_taxes && $invoice->get_tax() > 0 ) { |
|
140 | - $authorizeAIM->tax = $invoice->get_tax(); |
|
139 | + if ($use_taxes && $invoice->get_tax() > 0) { |
|
140 | + $authorizeAIM->tax = $invoice->get_tax(); |
|
141 | 141 | |
142 | - $item_desc .= ', ' . wp_sprintf( __( 'Tax: %s', 'invoicing' ), $invoice->get_tax( true ) ); |
|
142 | + $item_desc .= ', ' . wp_sprintf(__('Tax: %s', 'invoicing'), $invoice->get_tax(true)); |
|
143 | 143 | } |
144 | 144 | |
145 | - if ( $invoice->get_discount() > 0 ) { |
|
146 | - $item_desc .= ', ' . wp_sprintf( __( 'Discount: %s', 'invoicing' ), $invoice->get_discount( true ) ); |
|
145 | + if ($invoice->get_discount() > 0) { |
|
146 | + $item_desc .= ', ' . wp_sprintf(__('Discount: %s', 'invoicing'), $invoice->get_discount(true)); |
|
147 | 147 | } |
148 | 148 | |
149 | - $item_description = wpinv_utf8_substr( $item_desc, 0, 255 ); |
|
150 | - $item_description = html_entity_decode( $item_desc , ENT_QUOTES, 'UTF-8' ); |
|
149 | + $item_description = wpinv_utf8_substr($item_desc, 0, 255); |
|
150 | + $item_description = html_entity_decode($item_desc, ENT_QUOTES, 'UTF-8'); |
|
151 | 151 | |
152 | - $authorizeAIM->description = wpinv_utf8_substr( $item_description, 0, 255 ); |
|
152 | + $authorizeAIM->description = wpinv_utf8_substr($item_description, 0, 255); |
|
153 | 153 | |
154 | 154 | $is_recurring = $invoice->is_recurring(); // Recurring payment. |
155 | 155 | |
156 | - if ( $is_recurring ) { |
|
156 | + if ($is_recurring) { |
|
157 | 157 | $authorizeAIM->recurring_billing = true; |
158 | 158 | } |
159 | 159 | |
160 | 160 | try { |
161 | 161 | |
162 | - if ( $is_recurring ) { |
|
162 | + if ($is_recurring) { |
|
163 | 163 | $trx_type = wpinv_get_option('authorizenet_transaction_type_recurring', 'authorize_only'); |
164 | - if('authorize_capture' == $trx_type){ |
|
164 | + if ('authorize_capture' == $trx_type) { |
|
165 | 165 | $response = $authorizeAIM->authorizeAndCapture(); |
166 | 166 | } else { |
167 | 167 | $response = $authorizeAIM->authorizeOnly(); |
168 | 168 | } |
169 | 169 | } else { |
170 | 170 | $trx_type = wpinv_get_option('authorizenet_transaction_type', 'authorize_capture'); |
171 | - if('authorize_capture' == $trx_type){ |
|
171 | + if ('authorize_capture' == $trx_type) { |
|
172 | 172 | $response = $authorizeAIM->authorizeAndCapture(); |
173 | 173 | } else { |
174 | 174 | $response = $authorizeAIM->authorizeOnly(); |
175 | 175 | } |
176 | 176 | } |
177 | 177 | |
178 | - if ( $response->approved || $response->held ) { |
|
179 | - if ( $response->approved ) { |
|
180 | - wpinv_update_payment_status( $invoice_id, 'publish' ); |
|
178 | + if ($response->approved || $response->held) { |
|
179 | + if ($response->approved) { |
|
180 | + wpinv_update_payment_status($invoice_id, 'publish'); |
|
181 | 181 | } |
182 | - wpinv_set_payment_transaction_id( $invoice_id, $response->transaction_id ); |
|
182 | + wpinv_set_payment_transaction_id($invoice_id, $response->transaction_id); |
|
183 | 183 | |
184 | - wpinv_insert_payment_note( $invoice_id, wp_sprintf( __( 'Authorize.Net payment response: %s', 'invoicing' ), $response->response_reason_text ), '', '', true ); |
|
185 | - wpinv_insert_payment_note( $invoice_id, wp_sprintf( __( 'Authorize.Net payment: Transaction ID %s, Transaction Type %s, Authorization Code %s', 'invoicing' ), $response->transaction_id, strtoupper( $response->transaction_type ), $response->authorization_code ), '', '', true ); |
|
184 | + wpinv_insert_payment_note($invoice_id, wp_sprintf(__('Authorize.Net payment response: %s', 'invoicing'), $response->response_reason_text), '', '', true); |
|
185 | + wpinv_insert_payment_note($invoice_id, wp_sprintf(__('Authorize.Net payment: Transaction ID %s, Transaction Type %s, Authorization Code %s', 'invoicing'), $response->transaction_id, strtoupper($response->transaction_type), $response->authorization_code), '', '', true); |
|
186 | 186 | |
187 | - do_action( 'wpinv_authorizenet_handle_response', $response, $invoice, $authorizenet_card ); |
|
187 | + do_action('wpinv_authorizenet_handle_response', $response, $invoice, $authorizenet_card); |
|
188 | 188 | |
189 | 189 | wpinv_clear_errors(); |
190 | 190 | wpinv_empty_cart(); |
191 | 191 | |
192 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
192 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
193 | 193 | } else { |
194 | - if ( !empty( $response->response_reason_text ) ) { |
|
195 | - $error = __( $response->response_reason_text, 'invoicing' ); |
|
196 | - } else if ( !empty( $response->error_message ) ) { |
|
197 | - $error = __( $response->error_message, 'invoicing' ); |
|
194 | + if (!empty($response->response_reason_text)) { |
|
195 | + $error = __($response->response_reason_text, 'invoicing'); |
|
196 | + } else if (!empty($response->error_message)) { |
|
197 | + $error = __($response->error_message, 'invoicing'); |
|
198 | 198 | } else { |
199 | - $error = wp_sprintf( __( 'Error data: %s', 'invoicing' ), print_r( $response, true ) ); |
|
199 | + $error = wp_sprintf(__('Error data: %s', 'invoicing'), print_r($response, true)); |
|
200 | 200 | } |
201 | 201 | |
202 | - $error = wp_sprintf( __( 'Authorize.Net payment error occurred. %s', 'invoicing' ), $error ); |
|
202 | + $error = wp_sprintf(__('Authorize.Net payment error occurred. %s', 'invoicing'), $error); |
|
203 | 203 | |
204 | - wpinv_set_error( 'payment_error', $error ); |
|
205 | - wpinv_record_gateway_error( $error, $response ); |
|
206 | - wpinv_insert_payment_note( $invoice_id, $error, '', '', true ); |
|
204 | + wpinv_set_error('payment_error', $error); |
|
205 | + wpinv_record_gateway_error($error, $response); |
|
206 | + wpinv_insert_payment_note($invoice_id, $error, '', '', true); |
|
207 | 207 | |
208 | - wpinv_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['wpi-gateway'] ); |
|
208 | + wpinv_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['wpi-gateway']); |
|
209 | 209 | } |
210 | - } catch ( AuthorizeNetException $e ) { |
|
211 | - wpinv_set_error( 'request_error', $e->getMessage() ); |
|
212 | - wpinv_record_gateway_error( wp_sprintf( __( 'Authorize.Net payment error occurred. %s', 'invoicing' ), $e->getMessage() ) ); |
|
213 | - wpinv_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['wpi-gateway'] ); |
|
210 | + } catch (AuthorizeNetException $e) { |
|
211 | + wpinv_set_error('request_error', $e->getMessage()); |
|
212 | + wpinv_record_gateway_error(wp_sprintf(__('Authorize.Net payment error occurred. %s', 'invoicing'), $e->getMessage())); |
|
213 | + wpinv_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['wpi-gateway']); |
|
214 | 214 | } |
215 | 215 | } else { |
216 | - wpinv_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['wpi-gateway'] ); |
|
216 | + wpinv_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['wpi-gateway']); |
|
217 | 217 | } |
218 | 218 | } else { |
219 | - wpinv_record_gateway_error( wp_sprintf( __( 'Authorize.Net payment error occurred. Payment creation failed while processing a Authorize.Net payment. Payment data: %s', 'invoicing' ), print_r( $payment_data, true ) ), $invoice ); |
|
220 | - wpinv_send_back_to_checkout( '?payment-mode=' . $purchase_data['post_data']['wpi-gateway'] ); |
|
219 | + wpinv_record_gateway_error(wp_sprintf(__('Authorize.Net payment error occurred. Payment creation failed while processing a Authorize.Net payment. Payment data: %s', 'invoicing'), print_r($payment_data, true)), $invoice); |
|
220 | + wpinv_send_back_to_checkout('?payment-mode=' . $purchase_data['post_data']['wpi-gateway']); |
|
221 | 221 | } |
222 | 222 | } |
223 | -add_action( 'wpinv_gateway_authorizenet', 'wpinv_process_authorizenet_payment' ); |
|
223 | +add_action('wpinv_gateway_authorizenet', 'wpinv_process_authorizenet_payment'); |
|
224 | 224 | |
225 | -function wpinv_authorizenet_cancel_subscription( $subscription_id = '' ) { |
|
226 | - if ( empty( $subscription_id ) ) { |
|
225 | +function wpinv_authorizenet_cancel_subscription($subscription_id = '') { |
|
226 | + if (empty($subscription_id)) { |
|
227 | 227 | return false; |
228 | 228 | } |
229 | 229 | |
230 | 230 | try { |
231 | 231 | $authnetXML = wpinv_authorizenet_XML(); |
232 | - $authnetXML->ARBCancelSubscriptionRequest( array( 'subscriptionId' => $subscription_id ) ); |
|
232 | + $authnetXML->ARBCancelSubscriptionRequest(array('subscriptionId' => $subscription_id)); |
|
233 | 233 | return $authnetXML->isSuccessful(); |
234 | - } catch( Exception $e ) { |
|
235 | - wpinv_error_log( $e->getMessage(), __( 'Authorize.Net cancel subscription', 'invoicing' ) ); |
|
234 | + } catch (Exception $e) { |
|
235 | + wpinv_error_log($e->getMessage(), __('Authorize.Net cancel subscription', 'invoicing')); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | return false; |
239 | 239 | } |
240 | 240 | |
241 | -function wpinv_recurring_cancel_authorizenet_subscription( $subscription, $valid = false ) { |
|
242 | - if ( ! empty( $valid ) && ! empty( $subscription->profile_id ) ) { |
|
243 | - return wpinv_authorizenet_cancel_subscription( $subscription->profile_id ); |
|
241 | +function wpinv_recurring_cancel_authorizenet_subscription($subscription, $valid = false) { |
|
242 | + if (!empty($valid) && !empty($subscription->profile_id)) { |
|
243 | + return wpinv_authorizenet_cancel_subscription($subscription->profile_id); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | return false; |
247 | 247 | } |
248 | -add_action( 'wpinv_recurring_cancel_authorizenet_subscription', 'wpinv_recurring_cancel_authorizenet_subscription', 10, 2 ); |
|
248 | +add_action('wpinv_recurring_cancel_authorizenet_subscription', 'wpinv_recurring_cancel_authorizenet_subscription', 10, 2); |
|
249 | 249 | |
250 | -function wpinv_authorizenet_valid_ipn( $md5_hash, $transaction_id, $amount ) { |
|
251 | - $authorizenet_md5_hash = wpinv_get_option( 'authorizenet_md5_hash' ); |
|
252 | - if ( empty( $authorizenet_md5_hash ) ) { |
|
250 | +function wpinv_authorizenet_valid_ipn($md5_hash, $transaction_id, $amount) { |
|
251 | + $authorizenet_md5_hash = wpinv_get_option('authorizenet_md5_hash'); |
|
252 | + if (empty($authorizenet_md5_hash)) { |
|
253 | 253 | return true; |
254 | 254 | } |
255 | 255 | |
256 | - $compare_md5 = strtoupper( md5( $authorizenet_md5_hash . $transaction_id . $amount ) ); |
|
256 | + $compare_md5 = strtoupper(md5($authorizenet_md5_hash . $transaction_id . $amount)); |
|
257 | 257 | |
258 | - return hash_equals( $compare_md5, $md5_hash ); |
|
258 | + return hash_equals($compare_md5, $md5_hash); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | function wpinv_authorizenet_AIM() { |
262 | - if ( !class_exists( 'AuthorizeNetException' ) ) { |
|
263 | - require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/gateways/authorizenet/anet_php_sdk/AuthorizeNet.php'; |
|
262 | + if (!class_exists('AuthorizeNetException')) { |
|
263 | + require_once plugin_dir_path(WPINV_PLUGIN_FILE) . 'includes/gateways/authorizenet/anet_php_sdk/AuthorizeNet.php'; |
|
264 | 264 | } |
265 | 265 | |
266 | - $authorizeAIM = new AuthorizeNetAIM( wpinv_get_option( 'authorizenet_login_id' ), wpinv_get_option( 'authorizenet_transaction_key' ) ); |
|
266 | + $authorizeAIM = new AuthorizeNetAIM(wpinv_get_option('authorizenet_login_id'), wpinv_get_option('authorizenet_transaction_key')); |
|
267 | 267 | |
268 | - if ( wpinv_is_test_mode( 'authorizenet' ) ) { |
|
269 | - $authorizeAIM->setSandbox( true ); |
|
268 | + if (wpinv_is_test_mode('authorizenet')) { |
|
269 | + $authorizeAIM->setSandbox(true); |
|
270 | 270 | } else { |
271 | - $authorizeAIM->setSandbox( false ); |
|
271 | + $authorizeAIM->setSandbox(false); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | $authorizeAIM->customer_ip = wpinv_get_ip(); |
@@ -277,250 +277,250 @@ discard block |
||
277 | 277 | } |
278 | 278 | |
279 | 279 | function wpinv_authorizenet_XML() { |
280 | - if ( !class_exists( 'AuthnetXML' ) ) { |
|
281 | - require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/gateways/authorizenet/Authorize.Net-XML/AuthnetXML.class.php'; |
|
280 | + if (!class_exists('AuthnetXML')) { |
|
281 | + require_once plugin_dir_path(WPINV_PLUGIN_FILE) . 'includes/gateways/authorizenet/Authorize.Net-XML/AuthnetXML.class.php'; |
|
282 | 282 | } |
283 | 283 | |
284 | - $authnetXML = new AuthnetXML( wpinv_get_option( 'authorizenet_login_id' ), wpinv_get_option( 'authorizenet_transaction_key' ), (bool)wpinv_is_test_mode( 'authorizenet' ) ); |
|
284 | + $authnetXML = new AuthnetXML(wpinv_get_option('authorizenet_login_id'), wpinv_get_option('authorizenet_transaction_key'), (bool) wpinv_is_test_mode('authorizenet')); |
|
285 | 285 | |
286 | 286 | return $authnetXML; |
287 | 287 | } |
288 | 288 | |
289 | -function wpinv_authorizenet_handle_response( $response, $invoice, $card_info = array() ) { |
|
290 | - if ( empty( $response ) || empty( $invoice ) ) { |
|
289 | +function wpinv_authorizenet_handle_response($response, $invoice, $card_info = array()) { |
|
290 | + if (empty($response) || empty($invoice)) { |
|
291 | 291 | return false; |
292 | 292 | } |
293 | 293 | |
294 | - if ( $invoice->is_recurring() && !empty( $response->approved ) ) { |
|
295 | - $subscription = wpinv_authorizenet_create_new_subscription( $invoice, $response, $card_info ); |
|
294 | + if ($invoice->is_recurring() && !empty($response->approved)) { |
|
295 | + $subscription = wpinv_authorizenet_create_new_subscription($invoice, $response, $card_info); |
|
296 | 296 | $success = false; |
297 | - if ( wpinv_is_test_mode( 'authorizenet' ) ) { |
|
297 | + if (wpinv_is_test_mode('authorizenet')) { |
|
298 | 298 | $success = true; |
299 | 299 | } else { |
300 | 300 | $success = $subscription->isSuccessful(); |
301 | 301 | } |
302 | 302 | |
303 | - if ( !empty( $subscription ) && $success ) { |
|
304 | - do_action( 'wpinv_recurring_post_create_subscription', $subscription, $invoice, 'authorizenet' ); |
|
303 | + if (!empty($subscription) && $success) { |
|
304 | + do_action('wpinv_recurring_post_create_subscription', $subscription, $invoice, 'authorizenet'); |
|
305 | 305 | |
306 | - wpinv_authorizenet_subscription_record_signup( $subscription, $invoice ); |
|
306 | + wpinv_authorizenet_subscription_record_signup($subscription, $invoice); |
|
307 | 307 | |
308 | - do_action( 'wpinv_recurring_post_record_signup', $subscription, $invoice, 'authorizenet' ); |
|
308 | + do_action('wpinv_recurring_post_record_signup', $subscription, $invoice, 'authorizenet'); |
|
309 | 309 | } else { |
310 | - if ( isset( $subscription->messages->message ) ) { |
|
310 | + if (isset($subscription->messages->message)) { |
|
311 | 311 | $error = $subscription->messages->message->code . ': ' . $subscription->messages->message->text; |
312 | - wpinv_set_error( 'wpinv_authorize_recurring_error', $error, 'invoicing' ); |
|
312 | + wpinv_set_error('wpinv_authorize_recurring_error', $error, 'invoicing'); |
|
313 | 313 | } else { |
314 | - $error = __( 'Your subscription cannot be created due to an error.', 'invoicing' ); |
|
315 | - wpinv_set_error( 'wpinv_authorize_recurring_error', $error ); |
|
314 | + $error = __('Your subscription cannot be created due to an error.', 'invoicing'); |
|
315 | + wpinv_set_error('wpinv_authorize_recurring_error', $error); |
|
316 | 316 | } |
317 | 317 | |
318 | - wpinv_record_gateway_error( $error, $subscription ); |
|
318 | + wpinv_record_gateway_error($error, $subscription); |
|
319 | 319 | |
320 | - wpinv_insert_payment_note( $invoice->ID, wp_sprintf( __( 'Authorize.Net subscription error occurred. %s', 'invoicing' ), $error ), '', '', true ); |
|
320 | + wpinv_insert_payment_note($invoice->ID, wp_sprintf(__('Authorize.Net subscription error occurred. %s', 'invoicing'), $error), '', '', true); |
|
321 | 321 | } |
322 | 322 | } |
323 | 323 | } |
324 | -add_action( 'wpinv_authorizenet_handle_response', 'wpinv_authorizenet_handle_response', 10, 3 ); |
|
324 | +add_action('wpinv_authorizenet_handle_response', 'wpinv_authorizenet_handle_response', 10, 3); |
|
325 | 325 | |
326 | -function wpinv_authorizenet_create_new_subscription( $invoice, $response = array(), $card_info = array() ) { |
|
327 | - if ( empty( $invoice ) ) { |
|
326 | +function wpinv_authorizenet_create_new_subscription($invoice, $response = array(), $card_info = array()) { |
|
327 | + if (empty($invoice)) { |
|
328 | 328 | return false; |
329 | 329 | } |
330 | 330 | |
331 | - $params = wpinv_authorizenet_generate_subscription_params( $invoice, $card_info, $response ); |
|
331 | + $params = wpinv_authorizenet_generate_subscription_params($invoice, $card_info, $response); |
|
332 | 332 | |
333 | 333 | try { |
334 | 334 | $authnetXML = wpinv_authorizenet_XML(); |
335 | - $authnetXML->ARBCreateSubscriptionRequest( $params ); |
|
336 | - } catch( Exception $e ) { |
|
335 | + $authnetXML->ARBCreateSubscriptionRequest($params); |
|
336 | + } catch (Exception $e) { |
|
337 | 337 | $authnetXML = array(); |
338 | - wpinv_error_log( $e->getMessage(), __( 'Authorize.Net cancel subscription', 'invoicing' ) ); |
|
338 | + wpinv_error_log($e->getMessage(), __('Authorize.Net cancel subscription', 'invoicing')); |
|
339 | 339 | } |
340 | 340 | |
341 | 341 | return $authnetXML; |
342 | 342 | } |
343 | 343 | |
344 | -function wpinv_authorizenet_generate_subscription_params( $invoice, $card_info = array(), $response = array() ) { |
|
345 | - if ( empty( $invoice ) ) { |
|
344 | +function wpinv_authorizenet_generate_subscription_params($invoice, $card_info = array(), $response = array()) { |
|
345 | + if (empty($invoice)) { |
|
346 | 346 | return false; |
347 | 347 | } |
348 | 348 | |
349 | - $subscription_item = $invoice->get_recurring( true ); |
|
350 | - if ( empty( $subscription_item->ID ) ) { |
|
349 | + $subscription_item = $invoice->get_recurring(true); |
|
350 | + if (empty($subscription_item->ID)) { |
|
351 | 351 | return false; |
352 | 352 | } |
353 | 353 | |
354 | - $item = $invoice->get_recurring( true ); |
|
354 | + $item = $invoice->get_recurring(true); |
|
355 | 355 | |
356 | - if ( empty( $item ) ) { |
|
356 | + if (empty($item)) { |
|
357 | 357 | $name = ''; |
358 | 358 | } |
359 | 359 | |
360 | - if ( !( $name = $item->get_name() ) ) { |
|
360 | + if (!($name = $item->get_name())) { |
|
361 | 361 | $name = $item->post_name; |
362 | 362 | } |
363 | 363 | |
364 | - $card_details = wpinv_authorizenet_generate_card_info( $card_info ); |
|
364 | + $card_details = wpinv_authorizenet_generate_card_info($card_info); |
|
365 | 365 | $subscription_name = $invoice->get_subscription_name(); |
366 | - $initial_amount = wpinv_round_amount( $invoice->get_total() ); |
|
367 | - $recurring_amount = wpinv_round_amount( $invoice->get_recurring_details( 'total' ) ); |
|
366 | + $initial_amount = wpinv_round_amount($invoice->get_total()); |
|
367 | + $recurring_amount = wpinv_round_amount($invoice->get_recurring_details('total')); |
|
368 | 368 | $interval = $subscription_item->get_recurring_interval(); |
369 | 369 | $period = $subscription_item->get_recurring_period(); |
370 | - $bill_times = (int)$subscription_item->get_recurring_limit(); |
|
370 | + $bill_times = (int) $subscription_item->get_recurring_limit(); |
|
371 | 371 | $bill_times = $bill_times > 0 ? $bill_times : 9999; |
372 | 372 | |
373 | - $time_period = wpinv_authorizenet_get_time_period( $interval, $period ); |
|
373 | + $time_period = wpinv_authorizenet_get_time_period($interval, $period); |
|
374 | 374 | $interval = $time_period['interval']; |
375 | 375 | $period = $time_period['period']; |
376 | 376 | |
377 | 377 | $current_tz = date_default_timezone_get(); |
378 | - date_default_timezone_set( 'America/Denver' ); // Set same timezone as Authorize's server (Mountain Time) to prevent conflicts. |
|
379 | - $today = date( 'Y-m-d' ); |
|
380 | - date_default_timezone_set( $current_tz ); |
|
378 | + date_default_timezone_set('America/Denver'); // Set same timezone as Authorize's server (Mountain Time) to prevent conflicts. |
|
379 | + $today = date('Y-m-d'); |
|
380 | + date_default_timezone_set($current_tz); |
|
381 | 381 | |
382 | 382 | $free_trial = $invoice->is_free_trial(); |
383 | - if ( $free_trial && $subscription_item->has_free_trial() ) { |
|
383 | + if ($free_trial && $subscription_item->has_free_trial()) { |
|
384 | 384 | $trial_interval = $subscription_item->get_trial_interval(); |
385 | - $trial_period = $subscription_item->get_trial_period( true ); |
|
385 | + $trial_period = $subscription_item->get_trial_period(true); |
|
386 | 386 | } |
387 | 387 | |
388 | 388 | $subscription = array(); |
389 | 389 | $subscription['name'] = $subscription_name; |
390 | 390 | |
391 | 391 | $subscription['paymentSchedule'] = array( |
392 | - 'interval' => array( 'length' => $interval, 'unit' => $period ), |
|
392 | + 'interval' => array('length' => $interval, 'unit' => $period), |
|
393 | 393 | 'startDate' => $today, |
394 | 394 | 'totalOccurrences' => $bill_times, |
395 | - 'trialOccurrences' => $free_trial || ( $initial_amount != $recurring_amount ) ? 1 : 0, |
|
395 | + 'trialOccurrences' => $free_trial || ($initial_amount != $recurring_amount) ? 1 : 0, |
|
396 | 396 | ); |
397 | 397 | |
398 | 398 | $subscription['amount'] = $recurring_amount; |
399 | 399 | $subscription['trialAmount'] = $initial_amount; |
400 | - $subscription['payment'] = array( 'creditCard' => $card_details ); |
|
401 | - $subscription['order'] = array( 'invoiceNumber' => $invoice->ID, 'description' => '#' . $invoice->get_number() ); |
|
402 | - $subscription['customer'] = array( 'id' => $invoice->get_user_id(), 'email' => $invoice->get_email(), 'phoneNumber' => $invoice->phone ); |
|
400 | + $subscription['payment'] = array('creditCard' => $card_details); |
|
401 | + $subscription['order'] = array('invoiceNumber' => $invoice->ID, 'description' => '#' . $invoice->get_number()); |
|
402 | + $subscription['customer'] = array('id' => $invoice->get_user_id(), 'email' => $invoice->get_email(), 'phoneNumber' => $invoice->phone); |
|
403 | 403 | |
404 | 404 | $subscription['billTo'] = array( |
405 | 405 | 'firstName' => $invoice->get_first_name(), |
406 | 406 | 'lastName' => $invoice->get_last_name(), |
407 | 407 | 'company' => $invoice->company, |
408 | - 'address' => wp_strip_all_tags( $invoice->get_address(), true ), |
|
408 | + 'address' => wp_strip_all_tags($invoice->get_address(), true), |
|
409 | 409 | 'city' => $invoice->city, |
410 | 410 | 'state' => $invoice->state, |
411 | 411 | 'zip' => $invoice->zip, |
412 | 412 | 'country' => $invoice->country, |
413 | 413 | ); |
414 | 414 | |
415 | - $params = array( 'subscription' => $subscription ); |
|
415 | + $params = array('subscription' => $subscription); |
|
416 | 416 | |
417 | - return apply_filters( 'wpinv_authorizenet_generate_subscription_params', $params, $invoice, $card_info, $response ); |
|
417 | + return apply_filters('wpinv_authorizenet_generate_subscription_params', $params, $invoice, $card_info, $response); |
|
418 | 418 | } |
419 | 419 | |
420 | -function wpinv_authorizenet_generate_card_info( $card_info = array() ) { |
|
421 | - $card_defaults = array( |
|
420 | +function wpinv_authorizenet_generate_card_info($card_info = array()) { |
|
421 | + $card_defaults = array( |
|
422 | 422 | 'cc_owner' => null, |
423 | 423 | 'cc_number' => null, |
424 | 424 | 'cc_expire_month' => null, |
425 | 425 | 'cc_expire_year' => null, |
426 | 426 | 'cc_cvv2' => null, |
427 | 427 | ); |
428 | - $card_info = wp_parse_args( $card_info, $card_defaults ); |
|
428 | + $card_info = wp_parse_args($card_info, $card_defaults); |
|
429 | 429 | |
430 | 430 | $card_details = array( |
431 | - 'cardNumber' => str_replace( ' ', '', sanitize_text_field( $card_info['cc_number'] ) ), |
|
432 | - 'expirationDate' => sanitize_text_field( $card_info['cc_expire_month'] ) . sanitize_text_field( $card_info['cc_expire_year'] ), |
|
433 | - 'cardCode' => sanitize_text_field( $card_info['cc_cvv2'] ), |
|
431 | + 'cardNumber' => str_replace(' ', '', sanitize_text_field($card_info['cc_number'])), |
|
432 | + 'expirationDate' => sanitize_text_field($card_info['cc_expire_month']) . sanitize_text_field($card_info['cc_expire_year']), |
|
433 | + 'cardCode' => sanitize_text_field($card_info['cc_cvv2']), |
|
434 | 434 | ); |
435 | 435 | |
436 | 436 | return $card_details; |
437 | 437 | } |
438 | 438 | |
439 | -function wpinv_authorizenet_subscription_record_signup( $subscription, $invoice ) { |
|
440 | - $parent_invoice_id = absint( $invoice->ID ); |
|
439 | +function wpinv_authorizenet_subscription_record_signup($subscription, $invoice) { |
|
440 | + $parent_invoice_id = absint($invoice->ID); |
|
441 | 441 | |
442 | - if( empty( $parent_invoice_id ) ) { |
|
442 | + if (empty($parent_invoice_id)) { |
|
443 | 443 | return; |
444 | 444 | } |
445 | 445 | |
446 | - $invoice = wpinv_get_invoice( $parent_invoice_id ); |
|
447 | - if ( empty( $invoice ) ) { |
|
446 | + $invoice = wpinv_get_invoice($parent_invoice_id); |
|
447 | + if (empty($invoice)) { |
|
448 | 448 | return; |
449 | 449 | } |
450 | 450 | |
451 | - $subscriptionId = (array)$subscription->subscriptionId; |
|
452 | - $subscription_id = !empty( $subscriptionId[0] ) ? $subscriptionId[0] : $parent_invoice_id; |
|
451 | + $subscriptionId = (array) $subscription->subscriptionId; |
|
452 | + $subscription_id = !empty($subscriptionId[0]) ? $subscriptionId[0] : $parent_invoice_id; |
|
453 | 453 | |
454 | - $subscription = wpinv_get_authorizenet_subscription( $subscription, $parent_invoice_id ); |
|
454 | + $subscription = wpinv_get_authorizenet_subscription($subscription, $parent_invoice_id); |
|
455 | 455 | |
456 | - if ( false === $subscription ) { |
|
456 | + if (false === $subscription) { |
|
457 | 457 | return; |
458 | 458 | } |
459 | 459 | |
460 | 460 | // Set payment to complete |
461 | - wpinv_update_payment_status( $subscription->parent_payment_id, 'publish' ); |
|
461 | + wpinv_update_payment_status($subscription->parent_payment_id, 'publish'); |
|
462 | 462 | sleep(1); |
463 | - wpinv_insert_payment_note( $parent_invoice_id, sprintf( __( 'Authorize.Net Subscription ID: %s', 'invoicing' ) , $subscription_id ), '', '', true ); |
|
464 | - update_post_meta($parent_invoice_id,'_wpinv_subscr_profile_id', $subscription_id); |
|
463 | + wpinv_insert_payment_note($parent_invoice_id, sprintf(__('Authorize.Net Subscription ID: %s', 'invoicing'), $subscription_id), '', '', true); |
|
464 | + update_post_meta($parent_invoice_id, '_wpinv_subscr_profile_id', $subscription_id); |
|
465 | 465 | |
466 | 466 | $status = 'trialling' == $subscription->status ? 'trialling' : 'active'; |
467 | - $diff_days = absint( ( ( strtotime( $subscription->expiration ) - strtotime( $subscription->created ) ) / DAY_IN_SECONDS ) ); |
|
468 | - $created = date_i18n( 'Y-m-d H:i:s' ); |
|
469 | - $expiration = date_i18n( 'Y-m-d 23:59:59', ( strtotime( $created ) + ( $diff_days * DAY_IN_SECONDS ) ) ); |
|
467 | + $diff_days = absint(((strtotime($subscription->expiration) - strtotime($subscription->created)) / DAY_IN_SECONDS)); |
|
468 | + $created = date_i18n('Y-m-d H:i:s'); |
|
469 | + $expiration = date_i18n('Y-m-d 23:59:59', (strtotime($created) + ($diff_days * DAY_IN_SECONDS))); |
|
470 | 470 | |
471 | 471 | // Retrieve pending subscription from database and update it's status to active and set proper profile ID |
472 | - $subscription->update( array( 'profile_id' => $subscription_id, 'status' => $status, 'created' => $created, 'expiration' => $expiration ) ); |
|
472 | + $subscription->update(array('profile_id' => $subscription_id, 'status' => $status, 'created' => $created, 'expiration' => $expiration)); |
|
473 | 473 | } |
474 | 474 | |
475 | -function wpinv_authorizenet_validate_checkout( $valid_data, $post ) { |
|
476 | - if ( !empty( $post['wpi-gateway'] ) && $post['wpi-gateway'] == 'authorizenet' ) { |
|
475 | +function wpinv_authorizenet_validate_checkout($valid_data, $post) { |
|
476 | + if (!empty($post['wpi-gateway']) && $post['wpi-gateway'] == 'authorizenet') { |
|
477 | 477 | $error = false; |
478 | 478 | |
479 | - if ( empty( $post['authorizenet']['cc_owner'] ) ) { |
|
479 | + if (empty($post['authorizenet']['cc_owner'])) { |
|
480 | 480 | $error = true; |
481 | - wpinv_set_error( 'empty_card_name', __( 'You must enter the name on your card!', 'invoicing')); |
|
481 | + wpinv_set_error('empty_card_name', __('You must enter the name on your card!', 'invoicing')); |
|
482 | 482 | } |
483 | - if ( empty( $post['authorizenet']['cc_number'] ) ) { |
|
483 | + if (empty($post['authorizenet']['cc_number'])) { |
|
484 | 484 | $error = true; |
485 | - wpinv_set_error( 'empty_card', __( 'You must enter a card number!', 'invoicing')); |
|
485 | + wpinv_set_error('empty_card', __('You must enter a card number!', 'invoicing')); |
|
486 | 486 | } |
487 | - if ( empty( $post['authorizenet']['cc_expire_month'] ) ) { |
|
487 | + if (empty($post['authorizenet']['cc_expire_month'])) { |
|
488 | 488 | $error = true; |
489 | - wpinv_set_error( 'empty_month', __( 'You must enter an card expiration month!', 'invoicing')); |
|
489 | + wpinv_set_error('empty_month', __('You must enter an card expiration month!', 'invoicing')); |
|
490 | 490 | } |
491 | - if ( empty( $post['authorizenet']['cc_expire_year'] ) ) { |
|
491 | + if (empty($post['authorizenet']['cc_expire_year'])) { |
|
492 | 492 | $error = true; |
493 | - wpinv_set_error( 'empty_year', __( 'You must enter an card expiration year!', 'invoicing')); |
|
493 | + wpinv_set_error('empty_year', __('You must enter an card expiration year!', 'invoicing')); |
|
494 | 494 | } |
495 | - if ( empty( $post['authorizenet']['cc_cvv2'] ) ) { |
|
495 | + if (empty($post['authorizenet']['cc_cvv2'])) { |
|
496 | 496 | $error = true; |
497 | - wpinv_set_error( 'empty_cvv2', __( 'You must enter a valid CVV2!', 'invoicing' ) ); |
|
497 | + wpinv_set_error('empty_cvv2', __('You must enter a valid CVV2!', 'invoicing')); |
|
498 | 498 | } |
499 | 499 | |
500 | - if ( $error ) { |
|
500 | + if ($error) { |
|
501 | 501 | return; |
502 | 502 | } |
503 | 503 | |
504 | 504 | $invoice = wpinv_get_invoice_cart(); |
505 | 505 | |
506 | - if ( !empty( $invoice ) && $subscription_item = $invoice->get_recurring( true ) ) { |
|
507 | - $subscription_item = $invoice->get_recurring( true ); |
|
506 | + if (!empty($invoice) && $subscription_item = $invoice->get_recurring(true)) { |
|
507 | + $subscription_item = $invoice->get_recurring(true); |
|
508 | 508 | |
509 | 509 | $interval = $subscription_item->get_recurring_interval(); |
510 | 510 | $period = $subscription_item->get_recurring_period(); |
511 | 511 | |
512 | - if ( $period == 'D' && ( $interval < 7 || $interval > 365 ) ) { |
|
513 | - wpinv_set_error( 'authorizenet_subscription_error', __( 'Interval Length must be a value from 7 through 365 for day based subscriptions.', 'invoicing' ) ); |
|
512 | + if ($period == 'D' && ($interval < 7 || $interval > 365)) { |
|
513 | + wpinv_set_error('authorizenet_subscription_error', __('Interval Length must be a value from 7 through 365 for day based subscriptions.', 'invoicing')); |
|
514 | 514 | } |
515 | 515 | } |
516 | 516 | } |
517 | 517 | } |
518 | -add_action( 'wpinv_checkout_error_checks', 'wpinv_authorizenet_validate_checkout', 11, 2 ); |
|
518 | +add_action('wpinv_checkout_error_checks', 'wpinv_authorizenet_validate_checkout', 11, 2); |
|
519 | 519 | |
520 | -function wpinv_authorizenet_get_time_period( $subscription_interval, $subscription_period ) { |
|
521 | - $subscription_interval = absint( $subscription_interval ); |
|
520 | +function wpinv_authorizenet_get_time_period($subscription_interval, $subscription_period) { |
|
521 | + $subscription_interval = absint($subscription_interval); |
|
522 | 522 | |
523 | - switch( $subscription_period ) { |
|
523 | + switch ($subscription_period) { |
|
524 | 524 | case 'W': |
525 | 525 | case 'week': |
526 | 526 | case 'weeks': |
@@ -530,14 +530,14 @@ discard block |
||
530 | 530 | case 'M': |
531 | 531 | case 'month': |
532 | 532 | case 'months': |
533 | - if ( $subscription_interval > 12 ) { |
|
533 | + if ($subscription_interval > 12) { |
|
534 | 534 | $subscription_interval = 12; |
535 | 535 | } |
536 | 536 | |
537 | 537 | $interval = $subscription_interval; |
538 | 538 | $period = 'months'; |
539 | 539 | |
540 | - if ( !( $subscription_interval === 1 || $subscription_interval === 2 || $subscription_interval === 3 || $subscription_interval === 6 || $subscription_interval === 12 ) ) { |
|
540 | + if (!($subscription_interval === 1 || $subscription_interval === 2 || $subscription_interval === 3 || $subscription_interval === 6 || $subscription_interval === 12)) { |
|
541 | 541 | $interval = $subscription_interval * 30; |
542 | 542 | $period = 'days'; |
543 | 543 | } |
@@ -554,30 +554,30 @@ discard block |
||
554 | 554 | break; |
555 | 555 | } |
556 | 556 | |
557 | - return compact( 'interval', 'period' ); |
|
557 | + return compact('interval', 'period'); |
|
558 | 558 | } |
559 | 559 | |
560 | 560 | function wpinv_authorizenet_process_ipn() { |
561 | - if ( !( !empty( $_REQUEST['wpi-gateway'] ) && $_REQUEST['wpi-gateway'] == 'authorizenet' ) ) { |
|
561 | + if (!(!empty($_REQUEST['wpi-gateway']) && $_REQUEST['wpi-gateway'] == 'authorizenet')) { |
|
562 | 562 | return; |
563 | 563 | } |
564 | 564 | |
565 | - $subscription_id = !empty( $_POST['x_subscription_id'] ) ? intval( $_POST['x_subscription_id'] ) : false; |
|
565 | + $subscription_id = !empty($_POST['x_subscription_id']) ? intval($_POST['x_subscription_id']) : false; |
|
566 | 566 | |
567 | - if ( $subscription_id ) { |
|
568 | - $response_code = intval( $_POST['x_response_code'] ); |
|
569 | - $reason_code = intval( $_POST['x_response_reason_code'] ); |
|
567 | + if ($subscription_id) { |
|
568 | + $response_code = intval($_POST['x_response_code']); |
|
569 | + $reason_code = intval($_POST['x_response_reason_code']); |
|
570 | 570 | |
571 | - $subscription = new WPInv_Subscription( $subscription_id, true ); |
|
571 | + $subscription = new WPInv_Subscription($subscription_id, true); |
|
572 | 572 | |
573 | - if ( !$subscription->id ) { |
|
573 | + if (!$subscription->id) { |
|
574 | 574 | return; |
575 | 575 | } |
576 | 576 | |
577 | - if ( 1 == $response_code ) { |
|
577 | + if (1 == $response_code) { |
|
578 | 578 | // Approved |
579 | - $transaction_id = sanitize_text_field( $_POST['x_trans_id'] ); |
|
580 | - $renewal_amount = sanitize_text_field( $_POST['x_amount'] ); |
|
579 | + $transaction_id = sanitize_text_field($_POST['x_trans_id']); |
|
580 | + $renewal_amount = sanitize_text_field($_POST['x_amount']); |
|
581 | 581 | |
582 | 582 | $args = array( |
583 | 583 | 'amount' => $renewal_amount, |
@@ -585,63 +585,63 @@ discard block |
||
585 | 585 | 'gateway' => 'authorizenet' |
586 | 586 | ); |
587 | 587 | |
588 | - $subscription->add_payment( $args ); |
|
588 | + $subscription->add_payment($args); |
|
589 | 589 | $subscription->renew(); |
590 | 590 | |
591 | - do_action( 'wpinv_recurring_authorizenet_silent_post_payment', $subscription ); |
|
592 | - do_action( 'wpinv_authorizenet_renewal_payment', $subscription ); |
|
593 | - } else if ( 2 == $response_code ) { |
|
591 | + do_action('wpinv_recurring_authorizenet_silent_post_payment', $subscription); |
|
592 | + do_action('wpinv_authorizenet_renewal_payment', $subscription); |
|
593 | + } else if (2 == $response_code) { |
|
594 | 594 | // Declined |
595 | 595 | $subscription->failing(); |
596 | - do_action( 'wpinv_authorizenet_renewal_payment_failed', $subscription ); |
|
597 | - do_action( 'wpinv_authorizenet_renewal_error', $subscription ); |
|
598 | - } else if ( 3 == $response_code || 8 == $reason_code ) { |
|
596 | + do_action('wpinv_authorizenet_renewal_payment_failed', $subscription); |
|
597 | + do_action('wpinv_authorizenet_renewal_error', $subscription); |
|
598 | + } else if (3 == $response_code || 8 == $reason_code) { |
|
599 | 599 | // An expired card |
600 | 600 | $subscription->failing(); |
601 | - do_action( 'wpinv_authorizenet_renewal_payment_failed', $subscription ); |
|
602 | - do_action( 'wpinv_authorizenet_renewal_error', $subscription ); |
|
601 | + do_action('wpinv_authorizenet_renewal_payment_failed', $subscription); |
|
602 | + do_action('wpinv_authorizenet_renewal_error', $subscription); |
|
603 | 603 | } else { |
604 | 604 | // Other Error |
605 | - do_action( 'wpinv_authorizenet_renewal_payment_error', $subscription ); |
|
605 | + do_action('wpinv_authorizenet_renewal_payment_error', $subscription); |
|
606 | 606 | } |
607 | 607 | |
608 | 608 | exit; |
609 | 609 | } |
610 | 610 | } |
611 | -add_action( 'wpinv_verify_authorizenet_ipn', 'wpinv_authorizenet_process_ipn' ); |
|
611 | +add_action('wpinv_verify_authorizenet_ipn', 'wpinv_authorizenet_process_ipn'); |
|
612 | 612 | |
613 | 613 | /** |
614 | 614 | * Retrieve the subscription |
615 | 615 | */ |
616 | -function wpinv_get_authorizenet_subscription( $subscription_data = array(), $invoice_id ) { |
|
617 | - $parent_invoice_id = absint( $invoice_id ); |
|
616 | +function wpinv_get_authorizenet_subscription($subscription_data = array(), $invoice_id) { |
|
617 | + $parent_invoice_id = absint($invoice_id); |
|
618 | 618 | |
619 | - if ( empty( $subscription_data ) ) { |
|
619 | + if (empty($subscription_data)) { |
|
620 | 620 | return false; |
621 | 621 | } |
622 | 622 | |
623 | - if ( empty( $parent_invoice_id ) ) { |
|
623 | + if (empty($parent_invoice_id)) { |
|
624 | 624 | return false; |
625 | 625 | } |
626 | 626 | |
627 | - $invoice = wpinv_get_invoice( $parent_invoice_id ); |
|
628 | - if ( empty( $invoice ) ) { |
|
627 | + $invoice = wpinv_get_invoice($parent_invoice_id); |
|
628 | + if (empty($invoice)) { |
|
629 | 629 | return false; |
630 | 630 | } |
631 | 631 | |
632 | - $subscriptionId = (array)$subscription_data->subscriptionId; |
|
633 | - $subscription_id = !empty( $subscriptionId[0] ) ? $subscriptionId[0] : $parent_invoice_id; |
|
632 | + $subscriptionId = (array) $subscription_data->subscriptionId; |
|
633 | + $subscription_id = !empty($subscriptionId[0]) ? $subscriptionId[0] : $parent_invoice_id; |
|
634 | 634 | |
635 | - $subscription = new WPInv_Subscription( $subscription_id, true ); |
|
635 | + $subscription = new WPInv_Subscription($subscription_id, true); |
|
636 | 636 | |
637 | - if ( ! $subscription || $subscription->id < 1 ) { |
|
637 | + if (!$subscription || $subscription->id < 1) { |
|
638 | 638 | $subs_db = new WPInv_Subscriptions_DB; |
639 | - $subs = $subs_db->get_subscriptions( array( 'parent_payment_id' => $parent_invoice_id, 'number' => 1 ) ); |
|
640 | - $subscription = reset( $subs ); |
|
639 | + $subs = $subs_db->get_subscriptions(array('parent_payment_id' => $parent_invoice_id, 'number' => 1)); |
|
640 | + $subscription = reset($subs); |
|
641 | 641 | |
642 | - if ( $subscription && $subscription->id > 0 ) { |
|
642 | + if ($subscription && $subscription->id > 0) { |
|
643 | 643 | // Update the profile ID so it is set for future renewals |
644 | - $subscription->update( array( 'profile_id' => sanitize_text_field( $subscription_id ) ) ); |
|
644 | + $subscription->update(array('profile_id' => sanitize_text_field($subscription_id))); |
|
645 | 645 | } else { |
646 | 646 | // No subscription found with a matching payment ID, bail |
647 | 647 | return false; |
@@ -652,67 +652,67 @@ discard block |
||
652 | 652 | } |
653 | 653 | |
654 | 654 | function wpinv_is_authorizenet_valid_for_use() { |
655 | - return in_array( wpinv_get_currency(), apply_filters( 'wpinv_authorizenet_supported_currencies', array( 'AUD', 'CAD', 'CHF', 'DKK', 'EUR', 'GBP', 'JPY', 'NOK', 'NZD', 'PLN', 'SEK', 'USD', 'ZAR' ) ) ); |
|
655 | + return in_array(wpinv_get_currency(), apply_filters('wpinv_authorizenet_supported_currencies', array('AUD', 'CAD', 'CHF', 'DKK', 'EUR', 'GBP', 'JPY', 'NOK', 'NZD', 'PLN', 'SEK', 'USD', 'ZAR'))); |
|
656 | 656 | } |
657 | -function wpinv_check_authorizenet_currency_support( $gateway_list ) { |
|
658 | - if ( isset( $gateway_list['authorizenet'] ) && ! wpinv_is_authorizenet_valid_for_use() ) { |
|
659 | - unset( $gateway_list['authorizenet'] ); |
|
657 | +function wpinv_check_authorizenet_currency_support($gateway_list) { |
|
658 | + if (isset($gateway_list['authorizenet']) && !wpinv_is_authorizenet_valid_for_use()) { |
|
659 | + unset($gateway_list['authorizenet']); |
|
660 | 660 | } |
661 | 661 | return $gateway_list; |
662 | 662 | } |
663 | -add_filter( 'wpinv_enabled_payment_gateways', 'wpinv_check_authorizenet_currency_support', 10, 1 ); |
|
663 | +add_filter('wpinv_enabled_payment_gateways', 'wpinv_check_authorizenet_currency_support', 10, 1); |
|
664 | 664 | |
665 | -function wpinv_authorizenet_link_transaction_id( $transaction_id, $invoice_id, $invoice ) { |
|
666 | - if ( $transaction_id == $invoice_id ) { |
|
665 | +function wpinv_authorizenet_link_transaction_id($transaction_id, $invoice_id, $invoice) { |
|
666 | + if ($transaction_id == $invoice_id) { |
|
667 | 667 | $link = $transaction_id; |
668 | 668 | } else { |
669 | - if ( ! empty( $invoice ) && ! empty( $invoice->mode ) ) { |
|
669 | + if (!empty($invoice) && !empty($invoice->mode)) { |
|
670 | 670 | $mode = $invoice->mode; |
671 | 671 | } else { |
672 | - $mode = wpinv_is_test_mode( 'authorizenet' ) ? 'test' : 'live'; |
|
672 | + $mode = wpinv_is_test_mode('authorizenet') ? 'test' : 'live'; |
|
673 | 673 | } |
674 | 674 | |
675 | 675 | $url = $mode == 'test' ? 'https://sandbox.authorize.net/' : 'https://authorize.net/'; |
676 | 676 | $url .= 'ui/themes/sandbox/Transaction/TransactionReceipt.aspx?transid=' . $transaction_id; |
677 | 677 | |
678 | - $link = '<a href="' . esc_url( $url ) . '" target="_blank">' . $transaction_id . '</a>'; |
|
678 | + $link = '<a href="' . esc_url($url) . '" target="_blank">' . $transaction_id . '</a>'; |
|
679 | 679 | } |
680 | 680 | |
681 | - return apply_filters( 'wpinv_authorizenet_link_payment_details_transaction_id', $link, $transaction_id, $invoice ); |
|
681 | + return apply_filters('wpinv_authorizenet_link_payment_details_transaction_id', $link, $transaction_id, $invoice); |
|
682 | 682 | } |
683 | -add_filter( 'wpinv_payment_details_transaction_id-authorizenet', 'wpinv_authorizenet_link_transaction_id', 10, 3 ); |
|
683 | +add_filter('wpinv_payment_details_transaction_id-authorizenet', 'wpinv_authorizenet_link_transaction_id', 10, 3); |
|
684 | 684 | |
685 | -function wpinv_authorizenet_transaction_id_link( $transaction_id, $subscription ) { |
|
686 | - if ( ! empty( $transaction_id ) && ! empty( $subscription ) && ( $invoice_id = $subscription->get_original_payment_id() ) ) { |
|
687 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
685 | +function wpinv_authorizenet_transaction_id_link($transaction_id, $subscription) { |
|
686 | + if (!empty($transaction_id) && !empty($subscription) && ($invoice_id = $subscription->get_original_payment_id())) { |
|
687 | + $invoice = wpinv_get_invoice($invoice_id); |
|
688 | 688 | |
689 | - if ( ! empty( $invoice ) ) { |
|
690 | - return wpinv_authorizenet_link_transaction_id( $transaction_id, $invoice_id, $invoice ); |
|
689 | + if (!empty($invoice)) { |
|
690 | + return wpinv_authorizenet_link_transaction_id($transaction_id, $invoice_id, $invoice); |
|
691 | 691 | } |
692 | 692 | } |
693 | 693 | |
694 | 694 | return $transaction_id; |
695 | 695 | } |
696 | -add_filter( 'wpinv_subscription_transaction_link_authorizenet', 'wpinv_authorizenet_transaction_id_link', 10, 2 ); |
|
696 | +add_filter('wpinv_subscription_transaction_link_authorizenet', 'wpinv_authorizenet_transaction_id_link', 10, 2); |
|
697 | 697 | |
698 | -function wpinv_authorizenet_profile_id_link( $profile_id, $subscription ) { |
|
698 | +function wpinv_authorizenet_profile_id_link($profile_id, $subscription) { |
|
699 | 699 | $link = $profile_id; |
700 | 700 | |
701 | - if ( ! empty( $profile_id ) && ! empty( $subscription ) && ( $invoice_id = $subscription->get_original_payment_id() ) ) { |
|
702 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
701 | + if (!empty($profile_id) && !empty($subscription) && ($invoice_id = $subscription->get_original_payment_id())) { |
|
702 | + $invoice = wpinv_get_invoice($invoice_id); |
|
703 | 703 | |
704 | - if ( ! empty( $invoice ) && ! empty( $invoice->mode ) ) { |
|
704 | + if (!empty($invoice) && !empty($invoice->mode)) { |
|
705 | 705 | $mode = $invoice->mode; |
706 | 706 | } else { |
707 | - $mode = wpinv_is_test_mode( 'authorizenet' ) ? 'test' : 'live'; |
|
707 | + $mode = wpinv_is_test_mode('authorizenet') ? 'test' : 'live'; |
|
708 | 708 | } |
709 | 709 | |
710 | 710 | $url = $mode == 'test' ? 'https://sandbox.authorize.net/' : 'https://authorize.net/'; |
711 | 711 | $url .= 'ui/themes/sandbox/ARB/SubscriptionDetail.aspx?SubscrID=' . $profile_id; |
712 | 712 | |
713 | - $link = '<a href="' . esc_url( $url ) . '" target="_blank">' . $profile_id . '</a>'; |
|
713 | + $link = '<a href="' . esc_url($url) . '" target="_blank">' . $profile_id . '</a>'; |
|
714 | 714 | } |
715 | 715 | |
716 | - return apply_filters( 'wpinv_authorizenet_profile_id_link', $link, $profile_id, $subscription ); |
|
716 | + return apply_filters('wpinv_authorizenet_profile_id_link', $link, $profile_id, $subscription); |
|
717 | 717 | } |
718 | -add_filter( 'wpinv_subscription_profile_link_authorizenet', 'wpinv_authorizenet_profile_id_link', 10, 2 ); |
|
719 | 718 | \ No newline at end of file |
719 | +add_filter('wpinv_subscription_profile_link_authorizenet', 'wpinv_authorizenet_profile_id_link', 10, 2); |
|
720 | 720 | \ No newline at end of file |
@@ -64,8 +64,8 @@ discard block |
||
64 | 64 | { |
65 | 65 | $month = ($month ? $month : date('m')); |
66 | 66 | $year = ($year ? $year : date('Y')); |
67 | - $firstSettlementDate = substr(date('c',mktime(0, 0, 0, $month, 1, $year)),0,-6); |
|
68 | - $lastSettlementDate = substr(date('c',mktime(0, 0, 0, $month+1, 0, $year)),0,-6); |
|
67 | + $firstSettlementDate = substr(date('c', mktime(0, 0, 0, $month, 1, $year)), 0, -6); |
|
68 | + $lastSettlementDate = substr(date('c', mktime(0, 0, 0, $month + 1, 0, $year)), 0, -6); |
|
69 | 69 | return $this->getSettledBatchList(true, $firstSettlementDate, $lastSettlementDate); |
70 | 70 | } |
71 | 71 | |
@@ -98,12 +98,12 @@ discard block |
||
98 | 98 | $month = ($month ? $month : date('m')); |
99 | 99 | $day = ($day ? $day : date('d')); |
100 | 100 | $year = ($year ? $year : date('Y')); |
101 | - $firstSettlementDate = substr(date('c',mktime(0, 0, 0, (int)$month, (int)$day, (int)$year)),0,-6); |
|
102 | - $lastSettlementDate = substr(date('c',mktime(0, 0, 0, (int)$month, (int)$day, (int)$year)),0,-6); |
|
101 | + $firstSettlementDate = substr(date('c', mktime(0, 0, 0, (int) $month, (int) $day, (int) $year)), 0, -6); |
|
102 | + $lastSettlementDate = substr(date('c', mktime(0, 0, 0, (int) $month, (int) $day, (int) $year)), 0, -6); |
|
103 | 103 | $response = $this->getSettledBatchList(true, $firstSettlementDate, $lastSettlementDate); |
104 | 104 | $batches = $response->xpath("batchList/batch"); |
105 | 105 | foreach ($batches as $batch) { |
106 | - $batch_id = (string)$batch->batchId; |
|
106 | + $batch_id = (string) $batch->batchId; |
|
107 | 107 | $request = new AuthorizeNetTD; |
108 | 108 | $tran_list = $request->getTransactionList($batch_id); |
109 | 109 | $transactions = array_merge($transactions, $tran_list->xpath("transactions/transaction")); |
@@ -187,11 +187,11 @@ discard block |
||
187 | 187 | */ |
188 | 188 | private function _constructXml($request_type) |
189 | 189 | { |
190 | - $string = '<?xml version="1.0" encoding="utf-8"?><'.$request_type.' xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"></'.$request_type.'>'; |
|
190 | + $string = '<?xml version="1.0" encoding="utf-8"?><' . $request_type . ' xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"></' . $request_type . '>'; |
|
191 | 191 | $this->_xml = @new SimpleXMLElement($string); |
192 | 192 | $merchant = $this->_xml->addChild('merchantAuthentication'); |
193 | - $merchant->addChild('name',$this->_api_login); |
|
194 | - $merchant->addChild('transactionKey',$this->_transaction_key); |
|
193 | + $merchant->addChild('name', $this->_api_login); |
|
194 | + $merchant->addChild('transactionKey', $this->_transaction_key); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | } |
@@ -178,11 +178,11 @@ |
||
178 | 178 | */ |
179 | 179 | public function getHiddenFieldString() |
180 | 180 | { |
181 | - $array = (array)$this; |
|
181 | + $array = (array) $this; |
|
182 | 182 | $string = ""; |
183 | 183 | foreach ($array as $key => $value) { |
184 | 184 | if ($value) { |
185 | - $string .= '<input type="hidden" name="'.$key.'" value="'.$value.'">'; |
|
185 | + $string .= '<input type="hidden" name="' . $key . '" value="' . $value . '">'; |
|
186 | 186 | } |
187 | 187 | } |
188 | 188 | return $string; |