@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | // MUST have WordPress. |
3 | -if ( !defined( 'WPINC' ) ) { |
|
4 | - exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) ); |
|
3 | +if (!defined('WPINC')) { |
|
4 | + exit('Do NOT access this file directly: ' . basename(__FILE__)); |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | class WPInv_Meta_Box_Payment_Form { |
@@ -11,23 +11,23 @@ discard block |
||
11 | 11 | * |
12 | 12 | * @param WP_Post $post |
13 | 13 | */ |
14 | - public static function output_details( $post ) { |
|
15 | - $details = get_post_meta( $post->ID, 'payment_form_data', true ); |
|
14 | + public static function output_details($post) { |
|
15 | + $details = get_post_meta($post->ID, 'payment_form_data', true); |
|
16 | 16 | |
17 | - if ( ! is_array( $details ) ) { |
|
17 | + if (!is_array($details)) { |
|
18 | 18 | return; |
19 | 19 | } |
20 | 20 | |
21 | 21 | echo '<div class="bsui"> <div class="form-row">'; |
22 | 22 | |
23 | - foreach ( $details as $key => $value ) { |
|
24 | - $key = esc_html( $key ); |
|
23 | + foreach ($details as $key => $value) { |
|
24 | + $key = esc_html($key); |
|
25 | 25 | |
26 | - if ( is_array( $value ) ) { |
|
27 | - $value = implode( ',', $value ); |
|
26 | + if (is_array($value)) { |
|
27 | + $value = implode(',', $value); |
|
28 | 28 | } |
29 | 29 | |
30 | - $value = wp_kses_post( $value ); |
|
30 | + $value = wp_kses_post($value); |
|
31 | 31 | echo "<div class='col-12'><strong>$key:</strong></div><div class='col-12 form-group'>$value</div>"; |
32 | 32 | } |
33 | 33 | |
@@ -40,13 +40,13 @@ discard block |
||
40 | 40 | * |
41 | 41 | * @param WP_Post $post |
42 | 42 | */ |
43 | - public static function output_shortcode( $post ) { |
|
43 | + public static function output_shortcode($post) { |
|
44 | 44 | |
45 | - if ( ! is_numeric( $post ) ) { |
|
45 | + if (!is_numeric($post)) { |
|
46 | 46 | $post = $post->ID; |
47 | 47 | } |
48 | 48 | |
49 | - if ( $post == wpinv_get_default_payment_form() ) { |
|
49 | + if ($post == wpinv_get_default_payment_form()) { |
|
50 | 50 | echo '—'; |
51 | 51 | return; |
52 | 52 | } |
@@ -136,13 +136,13 @@ discard block |
||
136 | 136 | */ |
137 | 137 | function wpinv_get_invoice_statuses( $draft = false, $trashed = false, $invoice = false ) { |
138 | 138 | |
139 | - $invoice_statuses = array( |
|
140 | - 'wpi-pending' => _x( 'Pending payment', 'Invoice status', 'invoicing' ), |
|
139 | + $invoice_statuses = array( |
|
140 | + 'wpi-pending' => _x( 'Pending payment', 'Invoice status', 'invoicing' ), |
|
141 | 141 | 'publish' => _x( 'Paid', 'Invoice status', 'invoicing' ), |
142 | 142 | 'wpi-processing' => _x( 'Processing', 'Invoice status', 'invoicing' ), |
143 | - 'wpi-onhold' => _x( 'On hold', 'Invoice status', 'invoicing' ), |
|
144 | - 'wpi-cancelled' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
145 | - 'wpi-refunded' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
143 | + 'wpi-onhold' => _x( 'On hold', 'Invoice status', 'invoicing' ), |
|
144 | + 'wpi-cancelled' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
145 | + 'wpi-refunded' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
146 | 146 | 'wpi-failed' => _x( 'Failed', 'Invoice status', 'invoicing' ), |
147 | 147 | 'wpi-renewal' => _x( 'Renewal Payment', 'Invoice status', 'invoicing' ), |
148 | 148 | ); |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $invoice = $invoice->get_post_type(); |
160 | 160 | } |
161 | 161 | |
162 | - return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
162 | + return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -277,25 +277,25 @@ discard block |
||
277 | 277 | * @return string |
278 | 278 | */ |
279 | 279 | function getpaid_get_price_format() { |
280 | - $currency_pos = wpinv_currency_position(); |
|
281 | - $format = '%1$s%2$s'; |
|
282 | - |
|
283 | - switch ( $currency_pos ) { |
|
284 | - case 'left': |
|
285 | - $format = '%1$s%2$s'; |
|
286 | - break; |
|
287 | - case 'right': |
|
288 | - $format = '%2$s%1$s'; |
|
289 | - break; |
|
290 | - case 'left_space': |
|
291 | - $format = '%1$s %2$s'; |
|
292 | - break; |
|
293 | - case 'right_space': |
|
294 | - $format = '%2$s %1$s'; |
|
295 | - break; |
|
296 | - } |
|
297 | - |
|
298 | - return apply_filters( 'getpaid_price_format', $format, $currency_pos ); |
|
280 | + $currency_pos = wpinv_currency_position(); |
|
281 | + $format = '%1$s%2$s'; |
|
282 | + |
|
283 | + switch ( $currency_pos ) { |
|
284 | + case 'left': |
|
285 | + $format = '%1$s%2$s'; |
|
286 | + break; |
|
287 | + case 'right': |
|
288 | + $format = '%2$s%1$s'; |
|
289 | + break; |
|
290 | + case 'left_space': |
|
291 | + $format = '%1$s %2$s'; |
|
292 | + break; |
|
293 | + case 'right_space': |
|
294 | + $format = '%2$s %1$s'; |
|
295 | + break; |
|
296 | + } |
|
297 | + |
|
298 | + return apply_filters( 'getpaid_price_format', $format, $currency_pos ); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | /** |
@@ -390,13 +390,13 @@ discard block |
||
390 | 390 | * @param mixed $value Value. |
391 | 391 | */ |
392 | 392 | function getpaid_maybe_define_constant( $name, $value ) { |
393 | - if ( ! defined( $name ) ) { |
|
394 | - define( $name, $value ); |
|
395 | - } |
|
393 | + if ( ! defined( $name ) ) { |
|
394 | + define( $name, $value ); |
|
395 | + } |
|
396 | 396 | } |
397 | 397 | |
398 | 398 | function wpinv_get_php_arg_separator_output() { |
399 | - return ini_get( 'arg_separator.output' ); |
|
399 | + return ini_get( 'arg_separator.output' ); |
|
400 | 400 | } |
401 | 401 | |
402 | 402 | function wpinv_rgb_from_hex( $color ) { |
@@ -751,11 +751,11 @@ discard block |
||
751 | 751 | $list = array(); |
752 | 752 | } |
753 | 753 | |
754 | - if ( ! is_array( $list ) ) { |
|
755 | - return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); |
|
756 | - } |
|
754 | + if ( ! is_array( $list ) ) { |
|
755 | + return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); |
|
756 | + } |
|
757 | 757 | |
758 | - return $list; |
|
758 | + return $list; |
|
759 | 759 | } |
760 | 760 | |
761 | 761 | /** |
@@ -775,9 +775,9 @@ discard block |
||
775 | 775 | } |
776 | 776 | |
777 | 777 | $data = apply_filters( "wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php" ); |
778 | - wp_cache_set( "wpinv-data-$key", $data, 'wpinv' ); |
|
778 | + wp_cache_set( "wpinv-data-$key", $data, 'wpinv' ); |
|
779 | 779 | |
780 | - return $data; |
|
780 | + return $data; |
|
781 | 781 | } |
782 | 782 | |
783 | 783 | /** |
@@ -806,17 +806,17 @@ discard block |
||
806 | 806 | */ |
807 | 807 | function wpinv_clean( $var ) { |
808 | 808 | |
809 | - if ( is_array( $var ) ) { |
|
810 | - return array_map( 'wpinv_clean', $var ); |
|
809 | + if ( is_array( $var ) ) { |
|
810 | + return array_map( 'wpinv_clean', $var ); |
|
811 | 811 | } |
812 | 812 | |
813 | 813 | if ( is_object( $var ) ) { |
814 | - $object_vars = get_object_vars( $var ); |
|
815 | - foreach ( $object_vars as $property_name => $property_value ) { |
|
816 | - $var->$property_name = wpinv_clean( $property_value ); |
|
814 | + $object_vars = get_object_vars( $var ); |
|
815 | + foreach ( $object_vars as $property_name => $property_value ) { |
|
816 | + $var->$property_name = wpinv_clean( $property_value ); |
|
817 | 817 | } |
818 | 818 | return $var; |
819 | - } |
|
819 | + } |
|
820 | 820 | |
821 | 821 | return is_string( $var ) ? sanitize_text_field( stripslashes( $var ) ) : $var; |
822 | 822 | } |
@@ -829,7 +829,7 @@ discard block |
||
829 | 829 | */ |
830 | 830 | function getpaid_convert_price_string_to_options( $str ) { |
831 | 831 | |
832 | - $raw_options = array_map( 'trim', explode( ',', $str ) ); |
|
832 | + $raw_options = array_map( 'trim', explode( ',', $str ) ); |
|
833 | 833 | $options = array(); |
834 | 834 | |
835 | 835 | foreach ( $raw_options as $option ) { |
@@ -912,7 +912,7 @@ discard block |
||
912 | 912 | * @return string |
913 | 913 | */ |
914 | 914 | function getpaid_date_format() { |
915 | - return apply_filters( 'getpaid_date_format', get_option( 'date_format' ) ); |
|
915 | + return apply_filters( 'getpaid_date_format', get_option( 'date_format' ) ); |
|
916 | 916 | } |
917 | 917 | |
918 | 918 | /** |
@@ -921,7 +921,7 @@ discard block |
||
921 | 921 | * @return string |
922 | 922 | */ |
923 | 923 | function getpaid_time_format() { |
924 | - return apply_filters( 'getpaid_time_format', get_option( 'time_format' ) ); |
|
924 | + return apply_filters( 'getpaid_time_format', get_option( 'time_format' ) ); |
|
925 | 925 | } |
926 | 926 | |
927 | 927 | /** |
@@ -934,15 +934,15 @@ discard block |
||
934 | 934 | function getpaid_limit_length( $string, $limit ) { |
935 | 935 | $str_limit = $limit - 3; |
936 | 936 | |
937 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
938 | - if ( mb_strlen( $string ) > $limit ) { |
|
939 | - $string = mb_strimwidth( $string, 0, $str_limit ) . '...'; |
|
940 | - } |
|
941 | - } else { |
|
942 | - if ( strlen( $string ) > $limit ) { |
|
943 | - $string = substr( $string, 0, $str_limit ) . '...'; |
|
944 | - } |
|
945 | - } |
|
937 | + if ( function_exists( 'mb_strimwidth' ) ) { |
|
938 | + if ( mb_strlen( $string ) > $limit ) { |
|
939 | + $string = mb_strimwidth( $string, 0, $str_limit ) . '...'; |
|
940 | + } |
|
941 | + } else { |
|
942 | + if ( strlen( $string ) > $limit ) { |
|
943 | + $string = substr( $string, 0, $str_limit ) . '...'; |
|
944 | + } |
|
945 | + } |
|
946 | 946 | return $string; |
947 | 947 | |
948 | 948 | } |
@@ -1073,12 +1073,12 @@ discard block |
||
1073 | 1073 | $types = get_allowed_mime_types(); |
1074 | 1074 | |
1075 | 1075 | if ( isset( $types['htm|html'] ) ) { |
1076 | - unset( $types['htm|html'] ); |
|
1077 | - } |
|
1076 | + unset( $types['htm|html'] ); |
|
1077 | + } |
|
1078 | 1078 | |
1079 | 1079 | if ( isset( $types['js'] ) ) { |
1080 | - unset( $types['js'] ); |
|
1081 | - } |
|
1080 | + unset( $types['js'] ); |
|
1081 | + } |
|
1082 | 1082 | |
1083 | 1083 | return $types; |
1084 | 1084 |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @package Invoicing |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Are we supporting item quantities? |
@@ -20,35 +20,35 @@ discard block |
||
20 | 20 | */ |
21 | 21 | function wpinv_get_ip() { |
22 | 22 | |
23 | - if ( isset( $_SERVER['HTTP_X_REAL_IP'] ) ) { |
|
24 | - return sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_REAL_IP'] ) ); |
|
23 | + if (isset($_SERVER['HTTP_X_REAL_IP'])) { |
|
24 | + return sanitize_text_field(wp_unslash($_SERVER['HTTP_X_REAL_IP'])); |
|
25 | 25 | } |
26 | 26 | |
27 | - if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { |
|
27 | + if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { |
|
28 | 28 | // Proxy servers can send through this header like this: X-Forwarded-For: client1, proxy1, proxy2 |
29 | 29 | // Make sure we always only send through the first IP in the list which should always be the client IP. |
30 | - return (string) rest_is_ip_address( trim( current( preg_split( '/,/', sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) ) ) ) ); |
|
30 | + return (string) rest_is_ip_address(trim(current(preg_split('/,/', sanitize_text_field(wp_unslash($_SERVER['HTTP_X_FORWARDED_FOR'])))))); |
|
31 | 31 | } |
32 | 32 | |
33 | - if ( isset( $_SERVER['HTTP_CLIENT_IP'] ) ) { |
|
34 | - return sanitize_text_field( wp_unslash( $_SERVER['HTTP_CLIENT_IP'] ) ); |
|
33 | + if (isset($_SERVER['HTTP_CLIENT_IP'])) { |
|
34 | + return sanitize_text_field(wp_unslash($_SERVER['HTTP_CLIENT_IP'])); |
|
35 | 35 | } |
36 | 36 | |
37 | - if ( isset( $_SERVER['REMOTE_ADDR'] ) ) { |
|
38 | - return sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ); |
|
37 | + if (isset($_SERVER['REMOTE_ADDR'])) { |
|
38 | + return sanitize_text_field(wp_unslash($_SERVER['REMOTE_ADDR'])); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | return ''; |
42 | 42 | } |
43 | 43 | |
44 | 44 | function wpinv_get_user_agent() { |
45 | - if ( ! empty( $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
46 | - $user_agent = sanitize_text_field( $_SERVER['HTTP_USER_AGENT'] ); |
|
45 | + if (!empty($_SERVER['HTTP_USER_AGENT'])) { |
|
46 | + $user_agent = sanitize_text_field($_SERVER['HTTP_USER_AGENT']); |
|
47 | 47 | } else { |
48 | 48 | $user_agent = ''; |
49 | 49 | } |
50 | 50 | |
51 | - return apply_filters( 'wpinv_get_user_agent', $user_agent ); |
|
51 | + return apply_filters('wpinv_get_user_agent', $user_agent); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -57,16 +57,16 @@ discard block |
||
57 | 57 | * @param string $amount The amount to sanitize. |
58 | 58 | * @return float |
59 | 59 | */ |
60 | -function getpaid_standardize_amount( $amount ) { |
|
60 | +function getpaid_standardize_amount($amount) { |
|
61 | 61 | |
62 | - $amount = str_replace( wpinv_thousands_separator(), '', $amount ); |
|
63 | - $amount = str_replace( wpinv_decimal_separator(), '.', $amount ); |
|
64 | - if ( is_numeric( $amount ) ) { |
|
65 | - return floatval( $amount ); |
|
62 | + $amount = str_replace(wpinv_thousands_separator(), '', $amount); |
|
63 | + $amount = str_replace(wpinv_decimal_separator(), '.', $amount); |
|
64 | + if (is_numeric($amount)) { |
|
65 | + return floatval($amount); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | // Cast the remaining to a float. |
69 | - return wpinv_round_amount( preg_replace( '/[^0-9\.\-]/', '', $amount ) ); |
|
69 | + return wpinv_round_amount(preg_replace('/[^0-9\.\-]/', '', $amount)); |
|
70 | 70 | |
71 | 71 | } |
72 | 72 | |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @param string $amount The amount to sanitize. |
77 | 77 | */ |
78 | -function getpaid_unstandardize_amount( $amount ) { |
|
79 | - return str_replace( '.', wpinv_decimal_separator(), $amount ); |
|
78 | +function getpaid_unstandardize_amount($amount) { |
|
79 | + return str_replace('.', wpinv_decimal_separator(), $amount); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -84,23 +84,23 @@ discard block |
||
84 | 84 | * |
85 | 85 | * @param string $amount The amount to sanitize. |
86 | 86 | */ |
87 | -function wpinv_sanitize_amount( $amount ) { |
|
87 | +function wpinv_sanitize_amount($amount) { |
|
88 | 88 | |
89 | - if ( is_numeric( $amount ) ) { |
|
90 | - return floatval( $amount ); |
|
89 | + if (is_numeric($amount)) { |
|
90 | + return floatval($amount); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | // Separate the decimals and thousands. |
94 | - $amount = explode( wpinv_decimal_separator(), $amount ); |
|
94 | + $amount = explode(wpinv_decimal_separator(), $amount); |
|
95 | 95 | |
96 | 96 | // Remove thousands. |
97 | - $amount[0] = str_replace( wpinv_thousands_separator(), '', $amount[0] ); |
|
97 | + $amount[0] = str_replace(wpinv_thousands_separator(), '', $amount[0]); |
|
98 | 98 | |
99 | 99 | // Convert back to string. |
100 | - $amount = count( $amount ) > 1 ? "{$amount[0]}.{$amount[1]}" : $amount[0]; |
|
100 | + $amount = count($amount) > 1 ? "{$amount[0]}.{$amount[1]}" : $amount[0]; |
|
101 | 101 | |
102 | 102 | // Cast the remaining to a float. |
103 | - return (float) preg_replace( '/[^0-9\.\-]/', '', $amount ); |
|
103 | + return (float) preg_replace('/[^0-9\.\-]/', '', $amount); |
|
104 | 104 | |
105 | 105 | } |
106 | 106 | |
@@ -110,19 +110,19 @@ discard block |
||
110 | 110 | * @param float $amount |
111 | 111 | * @param float|string|int|null $decimals |
112 | 112 | */ |
113 | -function wpinv_round_amount( $amount, $decimals = null, $use_sprintf = false ) { |
|
113 | +function wpinv_round_amount($amount, $decimals = null, $use_sprintf = false) { |
|
114 | 114 | |
115 | - if ( $decimals === null ) { |
|
115 | + if ($decimals === null) { |
|
116 | 116 | $decimals = wpinv_decimals(); |
117 | 117 | } |
118 | 118 | |
119 | - if ( $use_sprintf ) { |
|
120 | - $amount = sprintf( "%.{$decimals}f", (float) $amount ); |
|
119 | + if ($use_sprintf) { |
|
120 | + $amount = sprintf("%.{$decimals}f", (float) $amount); |
|
121 | 121 | } else { |
122 | - $amount = round( (float) $amount, absint( $decimals ) ); |
|
122 | + $amount = round((float) $amount, absint($decimals)); |
|
123 | 123 | } |
124 | 124 | |
125 | - return apply_filters( 'wpinv_round_amount', $amount, $decimals ); |
|
125 | + return apply_filters('wpinv_round_amount', $amount, $decimals); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
@@ -134,32 +134,32 @@ discard block |
||
134 | 134 | * @param string|WPInv_Invoice $invoice The invoice object|post type|type |
135 | 135 | * @return array |
136 | 136 | */ |
137 | -function wpinv_get_invoice_statuses( $draft = false, $trashed = false, $invoice = false ) { |
|
137 | +function wpinv_get_invoice_statuses($draft = false, $trashed = false, $invoice = false) { |
|
138 | 138 | |
139 | 139 | $invoice_statuses = array( |
140 | - 'wpi-pending' => _x( 'Pending payment', 'Invoice status', 'invoicing' ), |
|
141 | - 'publish' => _x( 'Paid', 'Invoice status', 'invoicing' ), |
|
142 | - 'wpi-processing' => _x( 'Processing', 'Invoice status', 'invoicing' ), |
|
143 | - 'wpi-onhold' => _x( 'On hold', 'Invoice status', 'invoicing' ), |
|
144 | - 'wpi-cancelled' => _x( 'Cancelled', 'Invoice status', 'invoicing' ), |
|
145 | - 'wpi-refunded' => _x( 'Refunded', 'Invoice status', 'invoicing' ), |
|
146 | - 'wpi-failed' => _x( 'Failed', 'Invoice status', 'invoicing' ), |
|
147 | - 'wpi-renewal' => _x( 'Renewal Payment', 'Invoice status', 'invoicing' ), |
|
140 | + 'wpi-pending' => _x('Pending payment', 'Invoice status', 'invoicing'), |
|
141 | + 'publish' => _x('Paid', 'Invoice status', 'invoicing'), |
|
142 | + 'wpi-processing' => _x('Processing', 'Invoice status', 'invoicing'), |
|
143 | + 'wpi-onhold' => _x('On hold', 'Invoice status', 'invoicing'), |
|
144 | + 'wpi-cancelled' => _x('Cancelled', 'Invoice status', 'invoicing'), |
|
145 | + 'wpi-refunded' => _x('Refunded', 'Invoice status', 'invoicing'), |
|
146 | + 'wpi-failed' => _x('Failed', 'Invoice status', 'invoicing'), |
|
147 | + 'wpi-renewal' => _x('Renewal Payment', 'Invoice status', 'invoicing'), |
|
148 | 148 | ); |
149 | 149 | |
150 | - if ( $draft ) { |
|
151 | - $invoice_statuses['draft'] = __( 'Draft', 'invoicing' ); |
|
150 | + if ($draft) { |
|
151 | + $invoice_statuses['draft'] = __('Draft', 'invoicing'); |
|
152 | 152 | } |
153 | 153 | |
154 | - if ( $trashed ) { |
|
155 | - $invoice_statuses['trash'] = __( 'Trash', 'invoicing' ); |
|
154 | + if ($trashed) { |
|
155 | + $invoice_statuses['trash'] = __('Trash', 'invoicing'); |
|
156 | 156 | } |
157 | 157 | |
158 | - if ( $invoice instanceof WPInv_Invoice ) { |
|
158 | + if ($invoice instanceof WPInv_Invoice) { |
|
159 | 159 | $invoice = $invoice->get_post_type(); |
160 | 160 | } |
161 | 161 | |
162 | - return apply_filters( 'wpinv_statuses', $invoice_statuses, $invoice ); |
|
162 | + return apply_filters('wpinv_statuses', $invoice_statuses, $invoice); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -168,11 +168,11 @@ discard block |
||
168 | 168 | * @param string $status The raw status |
169 | 169 | * @param string|WPInv_Invoice $invoice The invoice object|post type|type |
170 | 170 | */ |
171 | -function wpinv_status_nicename( $status, $invoice = false ) { |
|
172 | - $statuses = wpinv_get_invoice_statuses( true, true, $invoice ); |
|
173 | - $status = isset( $statuses[$status] ) ? $statuses[$status] : $status; |
|
171 | +function wpinv_status_nicename($status, $invoice = false) { |
|
172 | + $statuses = wpinv_get_invoice_statuses(true, true, $invoice); |
|
173 | + $status = isset($statuses[$status]) ? $statuses[$status] : $status; |
|
174 | 174 | |
175 | - return sanitize_text_field( $status ); |
|
175 | + return sanitize_text_field($status); |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | /** |
@@ -180,13 +180,13 @@ discard block |
||
180 | 180 | * |
181 | 181 | * @param string $current |
182 | 182 | */ |
183 | -function wpinv_get_currency( $current = '' ) { |
|
183 | +function wpinv_get_currency($current = '') { |
|
184 | 184 | |
185 | - if ( empty( $current ) ) { |
|
186 | - $current = apply_filters( 'wpinv_currency', wpinv_get_option( 'currency', 'USD' ) ); |
|
185 | + if (empty($current)) { |
|
186 | + $current = apply_filters('wpinv_currency', wpinv_get_option('currency', 'USD')); |
|
187 | 187 | } |
188 | 188 | |
189 | - return trim( strtoupper( $current ) ); |
|
189 | + return trim(strtoupper($current)); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -194,25 +194,25 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @param string|null $currency The currency code. Defaults to the default currency. |
196 | 196 | */ |
197 | -function wpinv_currency_symbol( $currency = null ) { |
|
197 | +function wpinv_currency_symbol($currency = null) { |
|
198 | 198 | |
199 | 199 | // Prepare the currency. |
200 | - $currency = empty( $currency ) ? wpinv_get_currency() : wpinv_clean( $currency ); |
|
200 | + $currency = empty($currency) ? wpinv_get_currency() : wpinv_clean($currency); |
|
201 | 201 | |
202 | 202 | // Fetch all symbols. |
203 | 203 | $symbols = wpinv_get_currency_symbols(); |
204 | 204 | |
205 | 205 | // Fetch this currencies symbol. |
206 | - $currency_symbol = isset( $symbols[$currency] ) ? $symbols[$currency] : $currency; |
|
206 | + $currency_symbol = isset($symbols[$currency]) ? $symbols[$currency] : $currency; |
|
207 | 207 | |
208 | 208 | // Filter the symbol. |
209 | - return apply_filters( 'wpinv_currency_symbol', $currency_symbol, $currency ); |
|
209 | + return apply_filters('wpinv_currency_symbol', $currency_symbol, $currency); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | function wpinv_currency_position() { |
213 | - $position = wpinv_get_option( 'currency_position', 'left' ); |
|
213 | + $position = wpinv_get_option('currency_position', 'left'); |
|
214 | 214 | |
215 | - return apply_filters( 'wpinv_currency_position', $position ); |
|
215 | + return apply_filters('wpinv_currency_position', $position); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | /** |
@@ -220,13 +220,13 @@ discard block |
||
220 | 220 | * |
221 | 221 | * @param $string|null $current |
222 | 222 | */ |
223 | -function wpinv_thousands_separator( $current = null ) { |
|
223 | +function wpinv_thousands_separator($current = null) { |
|
224 | 224 | |
225 | - if ( null == $current ) { |
|
226 | - $current = wpinv_get_option( 'thousands_separator', ',' ); |
|
225 | + if (null == $current) { |
|
226 | + $current = wpinv_get_option('thousands_separator', ','); |
|
227 | 227 | } |
228 | 228 | |
229 | - return trim( $current ); |
|
229 | + return trim($current); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | /** |
@@ -234,13 +234,13 @@ discard block |
||
234 | 234 | * |
235 | 235 | * @param $string|null $current |
236 | 236 | */ |
237 | -function wpinv_decimal_separator( $current = null ) { |
|
237 | +function wpinv_decimal_separator($current = null) { |
|
238 | 238 | |
239 | - if ( null == $current ) { |
|
240 | - $current = wpinv_get_option( 'decimal_separator', '.' ); |
|
239 | + if (null == $current) { |
|
240 | + $current = wpinv_get_option('decimal_separator', '.'); |
|
241 | 241 | } |
242 | 242 | |
243 | - return trim( $current ); |
|
243 | + return trim($current); |
|
244 | 244 | } |
245 | 245 | |
246 | 246 | /** |
@@ -248,27 +248,27 @@ discard block |
||
248 | 248 | * |
249 | 249 | * @param $string|null $current |
250 | 250 | */ |
251 | -function wpinv_decimals( $current = null ) { |
|
251 | +function wpinv_decimals($current = null) { |
|
252 | 252 | |
253 | - if ( null == $current ) { |
|
254 | - $current = wpinv_get_option( 'decimals', 2 ); |
|
253 | + if (null == $current) { |
|
254 | + $current = wpinv_get_option('decimals', 2); |
|
255 | 255 | } |
256 | 256 | |
257 | - return absint( $current ); |
|
257 | + return absint($current); |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | /** |
261 | 261 | * Retrieves a list of all supported currencies. |
262 | 262 | */ |
263 | 263 | function wpinv_get_currencies() { |
264 | - return apply_filters( 'wpinv_currencies', wpinv_get_data( 'currencies' ) ); |
|
264 | + return apply_filters('wpinv_currencies', wpinv_get_data('currencies')); |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | /** |
268 | 268 | * Retrieves a list of all currency symbols. |
269 | 269 | */ |
270 | 270 | function wpinv_get_currency_symbols() { |
271 | - return apply_filters( 'wpinv_currency_symbols', wpinv_get_data( 'currency-symbols' ) ); |
|
271 | + return apply_filters('wpinv_currency_symbols', wpinv_get_data('currency-symbols')); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | /** |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | $currency_pos = wpinv_currency_position(); |
281 | 281 | $format = '%1$s%2$s'; |
282 | 282 | |
283 | - switch ( $currency_pos ) { |
|
283 | + switch ($currency_pos) { |
|
284 | 284 | case 'left': |
285 | 285 | $format = '%1$s%2$s'; |
286 | 286 | break; |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | break; |
296 | 296 | } |
297 | 297 | |
298 | - return apply_filters( 'getpaid_price_format', $format, $currency_pos ); |
|
298 | + return apply_filters('getpaid_price_format', $format, $currency_pos); |
|
299 | 299 | } |
300 | 300 | |
301 | 301 | /** |
@@ -305,25 +305,25 @@ discard block |
||
305 | 305 | * @param string $currency Currency. |
306 | 306 | * @return string |
307 | 307 | */ |
308 | -function wpinv_price( $amount = 0, $currency = '' ) { |
|
308 | +function wpinv_price($amount = 0, $currency = '') { |
|
309 | 309 | |
310 | 310 | // Backwards compatibility. |
311 | - $amount = wpinv_sanitize_amount( $amount ); |
|
311 | + $amount = wpinv_sanitize_amount($amount); |
|
312 | 312 | |
313 | 313 | // Prepare variables. |
314 | - $currency = wpinv_get_currency( $currency ); |
|
314 | + $currency = wpinv_get_currency($currency); |
|
315 | 315 | $amount = (float) $amount; |
316 | 316 | $unformatted_amount = $amount; |
317 | 317 | $negative = $amount < 0; |
318 | - $amount = apply_filters( 'getpaid_raw_amount', floatval( $negative ? $amount * -1 : $amount ) ); |
|
319 | - $amount = wpinv_format_amount( $amount ); |
|
318 | + $amount = apply_filters('getpaid_raw_amount', floatval($negative ? $amount * -1 : $amount)); |
|
319 | + $amount = wpinv_format_amount($amount); |
|
320 | 320 | |
321 | 321 | // Format the amount. |
322 | 322 | $format = getpaid_get_price_format(); |
323 | - $formatted_amount = ( $negative ? '-' : '' ) . sprintf( $format, '<span class="getpaid-currency__symbol">' . wpinv_currency_symbol( $currency ) . '</span>', $amount ); |
|
323 | + $formatted_amount = ($negative ? '-' : '') . sprintf($format, '<span class="getpaid-currency__symbol">' . wpinv_currency_symbol($currency) . '</span>', $amount); |
|
324 | 324 | |
325 | 325 | // Filter the formatting. |
326 | - return apply_filters( 'wpinv_price', $formatted_amount, $amount, $currency, $unformatted_amount ); |
|
326 | + return apply_filters('wpinv_price', $formatted_amount, $amount, $currency, $unformatted_amount); |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | /** |
@@ -334,25 +334,25 @@ discard block |
||
334 | 334 | * @param bool $calculate Whether or not to apply separators. |
335 | 335 | * @return string |
336 | 336 | */ |
337 | -function wpinv_format_amount( $amount, $decimals = null, $calculate = false ) { |
|
337 | +function wpinv_format_amount($amount, $decimals = null, $calculate = false) { |
|
338 | 338 | $thousands_sep = wpinv_thousands_separator(); |
339 | 339 | $decimal_sep = wpinv_decimal_separator(); |
340 | - $decimals = wpinv_decimals( $decimals ); |
|
341 | - $amount = wpinv_sanitize_amount( $amount ); |
|
340 | + $decimals = wpinv_decimals($decimals); |
|
341 | + $amount = wpinv_sanitize_amount($amount); |
|
342 | 342 | |
343 | - if ( $calculate ) { |
|
343 | + if ($calculate) { |
|
344 | 344 | return $amount; |
345 | 345 | } |
346 | 346 | |
347 | 347 | // Fomart the amount. |
348 | - return number_format( $amount, $decimals, $decimal_sep, $thousands_sep ); |
|
348 | + return number_format($amount, $decimals, $decimal_sep, $thousands_sep); |
|
349 | 349 | } |
350 | 350 | |
351 | -function wpinv_sanitize_key( $key ) { |
|
351 | +function wpinv_sanitize_key($key) { |
|
352 | 352 | $raw_key = $key; |
353 | - $key = preg_replace( '/[^a-zA-Z0-9_\-\.\:\/]/', '', $key ); |
|
353 | + $key = preg_replace('/[^a-zA-Z0-9_\-\.\:\/]/', '', $key); |
|
354 | 354 | |
355 | - return apply_filters( 'wpinv_sanitize_key', $key, $raw_key ); |
|
355 | + return apply_filters('wpinv_sanitize_key', $key, $raw_key); |
|
356 | 356 | } |
357 | 357 | |
358 | 358 | /** |
@@ -360,8 +360,8 @@ discard block |
||
360 | 360 | * |
361 | 361 | * @param $str the file whose extension should be retrieved. |
362 | 362 | */ |
363 | -function wpinv_get_file_extension( $str ) { |
|
364 | - $filetype = wp_check_filetype( $str ); |
|
363 | +function wpinv_get_file_extension($str) { |
|
364 | + $filetype = wp_check_filetype($str); |
|
365 | 365 | return $filetype['ext']; |
366 | 366 | } |
367 | 367 | |
@@ -370,16 +370,16 @@ discard block |
||
370 | 370 | * |
371 | 371 | * @param string $string |
372 | 372 | */ |
373 | -function wpinv_string_is_image_url( $string ) { |
|
374 | - $extension = strtolower( wpinv_get_file_extension( $string ) ); |
|
375 | - return in_array( $extension, array( 'jpeg', 'jpg', 'png', 'gif', 'ico' ), true ); |
|
373 | +function wpinv_string_is_image_url($string) { |
|
374 | + $extension = strtolower(wpinv_get_file_extension($string)); |
|
375 | + return in_array($extension, array('jpeg', 'jpg', 'png', 'gif', 'ico'), true); |
|
376 | 376 | } |
377 | 377 | |
378 | 378 | /** |
379 | 379 | * Returns the current URL. |
380 | 380 | */ |
381 | 381 | function wpinv_get_current_page_url() { |
382 | - return ( is_ssl() ? 'https://' : 'http://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
382 | + return (is_ssl() ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
383 | 383 | } |
384 | 384 | |
385 | 385 | /** |
@@ -389,46 +389,46 @@ discard block |
||
389 | 389 | * @param string $name Constant name. |
390 | 390 | * @param mixed $value Value. |
391 | 391 | */ |
392 | -function getpaid_maybe_define_constant( $name, $value ) { |
|
393 | - if ( ! defined( $name ) ) { |
|
394 | - define( $name, $value ); |
|
392 | +function getpaid_maybe_define_constant($name, $value) { |
|
393 | + if (!defined($name)) { |
|
394 | + define($name, $value); |
|
395 | 395 | } |
396 | 396 | } |
397 | 397 | |
398 | 398 | function wpinv_get_php_arg_separator_output() { |
399 | - return ini_get( 'arg_separator.output' ); |
|
399 | + return ini_get('arg_separator.output'); |
|
400 | 400 | } |
401 | 401 | |
402 | -function wpinv_rgb_from_hex( $color ) { |
|
403 | - $color = str_replace( '#', '', $color ); |
|
402 | +function wpinv_rgb_from_hex($color) { |
|
403 | + $color = str_replace('#', '', $color); |
|
404 | 404 | |
405 | 405 | // Convert shorthand colors to full format, e.g. "FFF" -> "FFFFFF" |
406 | - $color = preg_replace( '~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color ); |
|
407 | - if ( empty( $color ) ) { |
|
406 | + $color = preg_replace('~^(.)(.)(.)$~', '$1$1$2$2$3$3', $color); |
|
407 | + if (empty($color)) { |
|
408 | 408 | return NULL; |
409 | 409 | } |
410 | 410 | |
411 | - $color = str_split( $color ); |
|
411 | + $color = str_split($color); |
|
412 | 412 | |
413 | 413 | $rgb = array(); |
414 | - $rgb['R'] = hexdec( $color[0] . $color[1] ); |
|
415 | - $rgb['G'] = hexdec( $color[2] . $color[3] ); |
|
416 | - $rgb['B'] = hexdec( $color[4] . $color[5] ); |
|
414 | + $rgb['R'] = hexdec($color[0] . $color[1]); |
|
415 | + $rgb['G'] = hexdec($color[2] . $color[3]); |
|
416 | + $rgb['B'] = hexdec($color[4] . $color[5]); |
|
417 | 417 | |
418 | 418 | return $rgb; |
419 | 419 | } |
420 | 420 | |
421 | -function wpinv_hex_darker( $color, $factor = 30 ) { |
|
422 | - $base = wpinv_rgb_from_hex( $color ); |
|
421 | +function wpinv_hex_darker($color, $factor = 30) { |
|
422 | + $base = wpinv_rgb_from_hex($color); |
|
423 | 423 | $color = '#'; |
424 | 424 | |
425 | - foreach ( $base as $k => $v ) { |
|
425 | + foreach ($base as $k => $v) { |
|
426 | 426 | $amount = $v / 100; |
427 | - $amount = round( $amount * $factor ); |
|
427 | + $amount = round($amount * $factor); |
|
428 | 428 | $new_decimal = $v - $amount; |
429 | 429 | |
430 | - $new_hex_component = dechex( $new_decimal ); |
|
431 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
430 | + $new_hex_component = dechex($new_decimal); |
|
431 | + if (strlen($new_hex_component) < 2) { |
|
432 | 432 | $new_hex_component = "0" . $new_hex_component; |
433 | 433 | } |
434 | 434 | $color .= $new_hex_component; |
@@ -437,18 +437,18 @@ discard block |
||
437 | 437 | return $color; |
438 | 438 | } |
439 | 439 | |
440 | -function wpinv_hex_lighter( $color, $factor = 30 ) { |
|
441 | - $base = wpinv_rgb_from_hex( $color ); |
|
440 | +function wpinv_hex_lighter($color, $factor = 30) { |
|
441 | + $base = wpinv_rgb_from_hex($color); |
|
442 | 442 | $color = '#'; |
443 | 443 | |
444 | - foreach ( $base as $k => $v ) { |
|
444 | + foreach ($base as $k => $v) { |
|
445 | 445 | $amount = 255 - $v; |
446 | 446 | $amount = $amount / 100; |
447 | - $amount = round( $amount * $factor ); |
|
447 | + $amount = round($amount * $factor); |
|
448 | 448 | $new_decimal = $v + $amount; |
449 | 449 | |
450 | - $new_hex_component = dechex( $new_decimal ); |
|
451 | - if ( strlen( $new_hex_component ) < 2 ) { |
|
450 | + $new_hex_component = dechex($new_decimal); |
|
451 | + if (strlen($new_hex_component) < 2) { |
|
452 | 452 | $new_hex_component = "0" . $new_hex_component; |
453 | 453 | } |
454 | 454 | $color .= $new_hex_component; |
@@ -457,22 +457,22 @@ discard block |
||
457 | 457 | return $color; |
458 | 458 | } |
459 | 459 | |
460 | -function wpinv_light_or_dark( $color, $dark = '#000000', $light = '#FFFFFF' ) { |
|
461 | - $hex = str_replace( '#', '', $color ); |
|
460 | +function wpinv_light_or_dark($color, $dark = '#000000', $light = '#FFFFFF') { |
|
461 | + $hex = str_replace('#', '', $color); |
|
462 | 462 | |
463 | - $c_r = hexdec( substr( $hex, 0, 2 ) ); |
|
464 | - $c_g = hexdec( substr( $hex, 2, 2 ) ); |
|
465 | - $c_b = hexdec( substr( $hex, 4, 2 ) ); |
|
463 | + $c_r = hexdec(substr($hex, 0, 2)); |
|
464 | + $c_g = hexdec(substr($hex, 2, 2)); |
|
465 | + $c_b = hexdec(substr($hex, 4, 2)); |
|
466 | 466 | |
467 | - $brightness = ( ( $c_r * 299 ) + ( $c_g * 587 ) + ( $c_b * 114 ) ) / 1000; |
|
467 | + $brightness = (($c_r * 299) + ($c_g * 587) + ($c_b * 114)) / 1000; |
|
468 | 468 | |
469 | 469 | return $brightness > 155 ? $dark : $light; |
470 | 470 | } |
471 | 471 | |
472 | -function wpinv_format_hex( $hex ) { |
|
473 | - $hex = trim( str_replace( '#', '', $hex ) ); |
|
472 | +function wpinv_format_hex($hex) { |
|
473 | + $hex = trim(str_replace('#', '', $hex)); |
|
474 | 474 | |
475 | - if ( strlen( $hex ) == 3 ) { |
|
475 | + if (strlen($hex) == 3) { |
|
476 | 476 | $hex = $hex[0] . $hex[0] . $hex[1] . $hex[1] . $hex[2] . $hex[2]; |
477 | 477 | } |
478 | 478 | |
@@ -492,12 +492,12 @@ discard block |
||
492 | 492 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
493 | 493 | * @return string |
494 | 494 | */ |
495 | -function wpinv_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) { |
|
496 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
497 | - return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding ); |
|
495 | +function wpinv_utf8_strimwidth($str, $start, $width, $trimmaker = '', $encoding = 'UTF-8') { |
|
496 | + if (function_exists('mb_strimwidth')) { |
|
497 | + return mb_strimwidth($str, $start, $width, $trimmaker, $encoding); |
|
498 | 498 | } |
499 | 499 | |
500 | - return wpinv_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker; |
|
500 | + return wpinv_utf8_substr($str, $start, $width, $encoding) . $trimmaker; |
|
501 | 501 | } |
502 | 502 | |
503 | 503 | /** |
@@ -509,28 +509,28 @@ discard block |
||
509 | 509 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
510 | 510 | * @return int Returns the number of characters in string. |
511 | 511 | */ |
512 | -function wpinv_utf8_strlen( $str, $encoding = 'UTF-8' ) { |
|
513 | - if ( function_exists( 'mb_strlen' ) ) { |
|
514 | - return mb_strlen( $str, $encoding ); |
|
512 | +function wpinv_utf8_strlen($str, $encoding = 'UTF-8') { |
|
513 | + if (function_exists('mb_strlen')) { |
|
514 | + return mb_strlen($str, $encoding); |
|
515 | 515 | } |
516 | 516 | |
517 | - return strlen( $str ); |
|
517 | + return strlen($str); |
|
518 | 518 | } |
519 | 519 | |
520 | -function wpinv_utf8_strtolower( $str, $encoding = 'UTF-8' ) { |
|
521 | - if ( function_exists( 'mb_strtolower' ) ) { |
|
522 | - return mb_strtolower( $str, $encoding ); |
|
520 | +function wpinv_utf8_strtolower($str, $encoding = 'UTF-8') { |
|
521 | + if (function_exists('mb_strtolower')) { |
|
522 | + return mb_strtolower($str, $encoding); |
|
523 | 523 | } |
524 | 524 | |
525 | - return strtolower( $str ); |
|
525 | + return strtolower($str); |
|
526 | 526 | } |
527 | 527 | |
528 | -function wpinv_utf8_strtoupper( $str, $encoding = 'UTF-8' ) { |
|
529 | - if ( function_exists( 'mb_strtoupper' ) ) { |
|
530 | - return mb_strtoupper( $str, $encoding ); |
|
528 | +function wpinv_utf8_strtoupper($str, $encoding = 'UTF-8') { |
|
529 | + if (function_exists('mb_strtoupper')) { |
|
530 | + return mb_strtoupper($str, $encoding); |
|
531 | 531 | } |
532 | 532 | |
533 | - return strtoupper( $str ); |
|
533 | + return strtoupper($str); |
|
534 | 534 | } |
535 | 535 | |
536 | 536 | /** |
@@ -544,12 +544,12 @@ discard block |
||
544 | 544 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
545 | 545 | * @return int Returns the position of the first occurrence of search in the string. |
546 | 546 | */ |
547 | -function wpinv_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
548 | - if ( function_exists( 'mb_strpos' ) ) { |
|
549 | - return mb_strpos( $str, $find, $offset, $encoding ); |
|
547 | +function wpinv_utf8_strpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
548 | + if (function_exists('mb_strpos')) { |
|
549 | + return mb_strpos($str, $find, $offset, $encoding); |
|
550 | 550 | } |
551 | 551 | |
552 | - return strpos( $str, $find, $offset ); |
|
552 | + return strpos($str, $find, $offset); |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | /** |
@@ -563,12 +563,12 @@ discard block |
||
563 | 563 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
564 | 564 | * @return int Returns the position of the last occurrence of search. |
565 | 565 | */ |
566 | -function wpinv_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
|
567 | - if ( function_exists( 'mb_strrpos' ) ) { |
|
568 | - return mb_strrpos( $str, $find, $offset, $encoding ); |
|
566 | +function wpinv_utf8_strrpos($str, $find, $offset = 0, $encoding = 'UTF-8') { |
|
567 | + if (function_exists('mb_strrpos')) { |
|
568 | + return mb_strrpos($str, $find, $offset, $encoding); |
|
569 | 569 | } |
570 | 570 | |
571 | - return strrpos( $str, $find, $offset ); |
|
571 | + return strrpos($str, $find, $offset); |
|
572 | 572 | } |
573 | 573 | |
574 | 574 | /** |
@@ -583,16 +583,16 @@ discard block |
||
583 | 583 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
584 | 584 | * @return string |
585 | 585 | */ |
586 | -function wpinv_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) { |
|
587 | - if ( function_exists( 'mb_substr' ) ) { |
|
588 | - if ( $length === null ) { |
|
589 | - return mb_substr( $str, $start, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
586 | +function wpinv_utf8_substr($str, $start, $length = null, $encoding = 'UTF-8') { |
|
587 | + if (function_exists('mb_substr')) { |
|
588 | + if ($length === null) { |
|
589 | + return mb_substr($str, $start, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
590 | 590 | } else { |
591 | - return mb_substr( $str, $start, $length, $encoding ); |
|
591 | + return mb_substr($str, $start, $length, $encoding); |
|
592 | 592 | } |
593 | 593 | } |
594 | 594 | |
595 | - return substr( $str, $start, $length ); |
|
595 | + return substr($str, $start, $length); |
|
596 | 596 | } |
597 | 597 | |
598 | 598 | /** |
@@ -604,48 +604,48 @@ discard block |
||
604 | 604 | * @param string $encoding The encoding parameter is the character encoding. Default "UTF-8". |
605 | 605 | * @return string The width of string. |
606 | 606 | */ |
607 | -function wpinv_utf8_strwidth( $str, $encoding = 'UTF-8' ) { |
|
608 | - if ( function_exists( 'mb_strwidth' ) ) { |
|
609 | - return mb_strwidth( $str, $encoding ); |
|
607 | +function wpinv_utf8_strwidth($str, $encoding = 'UTF-8') { |
|
608 | + if (function_exists('mb_strwidth')) { |
|
609 | + return mb_strwidth($str, $encoding); |
|
610 | 610 | } |
611 | 611 | |
612 | - return wpinv_utf8_strlen( $str, $encoding ); |
|
612 | + return wpinv_utf8_strlen($str, $encoding); |
|
613 | 613 | } |
614 | 614 | |
615 | -function wpinv_utf8_ucfirst( $str, $lower_str_end = false, $encoding = 'UTF-8' ) { |
|
616 | - if ( function_exists( 'mb_strlen' ) ) { |
|
617 | - $first_letter = wpinv_utf8_strtoupper( wpinv_utf8_substr( $str, 0, 1, $encoding ), $encoding ); |
|
615 | +function wpinv_utf8_ucfirst($str, $lower_str_end = false, $encoding = 'UTF-8') { |
|
616 | + if (function_exists('mb_strlen')) { |
|
617 | + $first_letter = wpinv_utf8_strtoupper(wpinv_utf8_substr($str, 0, 1, $encoding), $encoding); |
|
618 | 618 | $str_end = ""; |
619 | 619 | |
620 | - if ( $lower_str_end ) { |
|
621 | - $str_end = wpinv_utf8_strtolower( wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ), $encoding ); |
|
620 | + if ($lower_str_end) { |
|
621 | + $str_end = wpinv_utf8_strtolower(wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding), $encoding); |
|
622 | 622 | } else { |
623 | - $str_end = wpinv_utf8_substr( $str, 1, wpinv_utf8_strlen( $str, $encoding ), $encoding ); |
|
623 | + $str_end = wpinv_utf8_substr($str, 1, wpinv_utf8_strlen($str, $encoding), $encoding); |
|
624 | 624 | } |
625 | 625 | |
626 | 626 | return $first_letter . $str_end; |
627 | 627 | } |
628 | 628 | |
629 | - return ucfirst( $str ); |
|
629 | + return ucfirst($str); |
|
630 | 630 | } |
631 | 631 | |
632 | -function wpinv_utf8_ucwords( $str, $encoding = 'UTF-8' ) { |
|
633 | - if ( function_exists( 'mb_convert_case' ) ) { |
|
634 | - return mb_convert_case( $str, MB_CASE_TITLE, $encoding ); |
|
632 | +function wpinv_utf8_ucwords($str, $encoding = 'UTF-8') { |
|
633 | + if (function_exists('mb_convert_case')) { |
|
634 | + return mb_convert_case($str, MB_CASE_TITLE, $encoding); |
|
635 | 635 | } |
636 | 636 | |
637 | - return ucwords( $str ); |
|
637 | + return ucwords($str); |
|
638 | 638 | } |
639 | 639 | |
640 | -function wpinv_period_in_days( $period, $unit ) { |
|
641 | - $period = absint( $period ); |
|
640 | +function wpinv_period_in_days($period, $unit) { |
|
641 | + $period = absint($period); |
|
642 | 642 | |
643 | - if ( $period > 0 ) { |
|
644 | - if ( in_array( strtolower( $unit ), array( 'w', 'week', 'weeks' ) ) ) { |
|
643 | + if ($period > 0) { |
|
644 | + if (in_array(strtolower($unit), array('w', 'week', 'weeks'))) { |
|
645 | 645 | $period = $period * 7; |
646 | - } else if ( in_array( strtolower( $unit ), array( 'm', 'month', 'months' ) ) ) { |
|
646 | + } else if (in_array(strtolower($unit), array('m', 'month', 'months'))) { |
|
647 | 647 | $period = $period * 30; |
648 | - } else if ( in_array( strtolower( $unit ), array( 'y', 'year', 'years' ) ) ) { |
|
648 | + } else if (in_array(strtolower($unit), array('y', 'year', 'years'))) { |
|
649 | 649 | $period = $period * 365; |
650 | 650 | } |
651 | 651 | } |
@@ -653,14 +653,14 @@ discard block |
||
653 | 653 | return $period; |
654 | 654 | } |
655 | 655 | |
656 | -function wpinv_cal_days_in_month( $calendar, $month, $year ) { |
|
657 | - if ( function_exists( 'cal_days_in_month' ) ) { |
|
658 | - return cal_days_in_month( $calendar, $month, $year ); |
|
656 | +function wpinv_cal_days_in_month($calendar, $month, $year) { |
|
657 | + if (function_exists('cal_days_in_month')) { |
|
658 | + return cal_days_in_month($calendar, $month, $year); |
|
659 | 659 | } |
660 | 660 | |
661 | 661 | // Fallback in case the calendar extension is not loaded in PHP |
662 | 662 | // Only supports Gregorian calendar |
663 | - return date( 't', mktime( 0, 0, 0, $month, 1, $year ) ); |
|
663 | + return date('t', mktime(0, 0, 0, $month, 1, $year)); |
|
664 | 664 | } |
665 | 665 | |
666 | 666 | /** |
@@ -671,12 +671,12 @@ discard block |
||
671 | 671 | * |
672 | 672 | * @return string |
673 | 673 | */ |
674 | -function wpi_help_tip( $tip, $allow_html = false ) { |
|
674 | +function wpi_help_tip($tip, $allow_html = false) { |
|
675 | 675 | |
676 | - if ( $allow_html ) { |
|
677 | - $tip = wpi_sanitize_tooltip( $tip ); |
|
676 | + if ($allow_html) { |
|
677 | + $tip = wpi_sanitize_tooltip($tip); |
|
678 | 678 | } else { |
679 | - $tip = esc_attr( $tip ); |
|
679 | + $tip = esc_attr($tip); |
|
680 | 680 | } |
681 | 681 | |
682 | 682 | return '<span class="wpi-help-tip dashicons dashicons-editor-help" title="' . $tip . '"></span>'; |
@@ -690,8 +690,8 @@ discard block |
||
690 | 690 | * @param string $var |
691 | 691 | * @return string |
692 | 692 | */ |
693 | -function wpi_sanitize_tooltip( $var ) { |
|
694 | - return wp_kses( html_entity_decode( $var ), array( |
|
693 | +function wpi_sanitize_tooltip($var) { |
|
694 | + return wp_kses(html_entity_decode($var), array( |
|
695 | 695 | 'br' => array(), |
696 | 696 | 'em' => array(), |
697 | 697 | 'strong' => array(), |
@@ -702,7 +702,7 @@ discard block |
||
702 | 702 | 'li' => array(), |
703 | 703 | 'ol' => array(), |
704 | 704 | 'p' => array(), |
705 | - ) ); |
|
705 | + )); |
|
706 | 706 | } |
707 | 707 | |
708 | 708 | /** |
@@ -712,7 +712,7 @@ discard block |
||
712 | 712 | */ |
713 | 713 | function wpinv_get_screen_ids() { |
714 | 714 | |
715 | - $screen_id = sanitize_title( __( 'Invoicing', 'invoicing' ) ); |
|
715 | + $screen_id = sanitize_title(__('Invoicing', 'invoicing')); |
|
716 | 716 | |
717 | 717 | $screen_ids = array( |
718 | 718 | 'toplevel_page_' . $screen_id, |
@@ -731,10 +731,10 @@ discard block |
||
731 | 731 | 'getpaid_page_wpinv-reports', |
732 | 732 | 'getpaid_page_wpi-addons', |
733 | 733 | 'getpaid_page_wpinv-customers', |
734 | - 'gp-setup',// setup wizard |
|
734 | + 'gp-setup', // setup wizard |
|
735 | 735 | ); |
736 | 736 | |
737 | - return apply_filters( 'wpinv_screen_ids', $screen_ids ); |
|
737 | + return apply_filters('wpinv_screen_ids', $screen_ids); |
|
738 | 738 | } |
739 | 739 | |
740 | 740 | /** |
@@ -745,14 +745,14 @@ discard block |
||
745 | 745 | * @param array|string $list List of values. |
746 | 746 | * @return array Sanitized array of values. |
747 | 747 | */ |
748 | -function wpinv_parse_list( $list ) { |
|
748 | +function wpinv_parse_list($list) { |
|
749 | 749 | |
750 | - if ( empty( $list ) ) { |
|
750 | + if (empty($list)) { |
|
751 | 751 | $list = array(); |
752 | 752 | } |
753 | 753 | |
754 | - if ( ! is_array( $list ) ) { |
|
755 | - return preg_split( '/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY ); |
|
754 | + if (!is_array($list)) { |
|
755 | + return preg_split('/[\s,]+/', $list, -1, PREG_SPLIT_NO_EMPTY); |
|
756 | 756 | } |
757 | 757 | |
758 | 758 | return $list; |
@@ -766,16 +766,16 @@ discard block |
||
766 | 766 | * @param string $key Type of data to fetch. |
767 | 767 | * @return mixed Fetched data. |
768 | 768 | */ |
769 | -function wpinv_get_data( $key ) { |
|
769 | +function wpinv_get_data($key) { |
|
770 | 770 | |
771 | 771 | // Try fetching it from the cache. |
772 | - $data = wp_cache_get( "wpinv-data-$key", 'wpinv' ); |
|
773 | - if( $data ) { |
|
772 | + $data = wp_cache_get("wpinv-data-$key", 'wpinv'); |
|
773 | + if ($data) { |
|
774 | 774 | return $data; |
775 | 775 | } |
776 | 776 | |
777 | - $data = apply_filters( "wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php" ); |
|
778 | - wp_cache_set( "wpinv-data-$key", $data, 'wpinv' ); |
|
777 | + $data = apply_filters("wpinv_get_$key", include WPINV_PLUGIN_DIR . "includes/data/$key.php"); |
|
778 | + wp_cache_set("wpinv-data-$key", $data, 'wpinv'); |
|
779 | 779 | |
780 | 780 | return $data; |
781 | 781 | } |
@@ -789,10 +789,10 @@ discard block |
||
789 | 789 | * @param bool $first_empty Whether or not the first item in the list should be empty |
790 | 790 | * @return mixed Fetched data. |
791 | 791 | */ |
792 | -function wpinv_maybe_add_empty_option( $options, $first_empty ) { |
|
792 | +function wpinv_maybe_add_empty_option($options, $first_empty) { |
|
793 | 793 | |
794 | - if ( ! empty( $options ) && $first_empty ) { |
|
795 | - return array_merge( array( '' => '' ), $options ); |
|
794 | + if (!empty($options) && $first_empty) { |
|
795 | + return array_merge(array('' => ''), $options); |
|
796 | 796 | } |
797 | 797 | return $options; |
798 | 798 | |
@@ -804,21 +804,21 @@ discard block |
||
804 | 804 | * @param mixed $var Data to sanitize. |
805 | 805 | * @return string|array |
806 | 806 | */ |
807 | -function wpinv_clean( $var ) { |
|
807 | +function wpinv_clean($var) { |
|
808 | 808 | |
809 | - if ( is_array( $var ) ) { |
|
810 | - return array_map( 'wpinv_clean', $var ); |
|
809 | + if (is_array($var)) { |
|
810 | + return array_map('wpinv_clean', $var); |
|
811 | 811 | } |
812 | 812 | |
813 | - if ( is_object( $var ) ) { |
|
814 | - $object_vars = get_object_vars( $var ); |
|
815 | - foreach ( $object_vars as $property_name => $property_value ) { |
|
816 | - $var->$property_name = wpinv_clean( $property_value ); |
|
813 | + if (is_object($var)) { |
|
814 | + $object_vars = get_object_vars($var); |
|
815 | + foreach ($object_vars as $property_name => $property_value) { |
|
816 | + $var->$property_name = wpinv_clean($property_value); |
|
817 | 817 | } |
818 | 818 | return $var; |
819 | 819 | } |
820 | 820 | |
821 | - return is_string( $var ) ? sanitize_text_field( stripslashes( $var ) ) : $var; |
|
821 | + return is_string($var) ? sanitize_text_field(stripslashes($var)) : $var; |
|
822 | 822 | } |
823 | 823 | |
824 | 824 | /** |
@@ -827,43 +827,43 @@ discard block |
||
827 | 827 | * @param string $str Data to convert. |
828 | 828 | * @return string|array |
829 | 829 | */ |
830 | -function getpaid_convert_price_string_to_options( $str ) { |
|
830 | +function getpaid_convert_price_string_to_options($str) { |
|
831 | 831 | |
832 | - $raw_options = array_map( 'trim', explode( ',', $str ) ); |
|
833 | - $options = array(); |
|
832 | + $raw_options = array_map('trim', explode(',', $str)); |
|
833 | + $options = array(); |
|
834 | 834 | |
835 | - foreach ( $raw_options as $option ) { |
|
835 | + foreach ($raw_options as $option) { |
|
836 | 836 | |
837 | - if ( '' == $option ) { |
|
837 | + if ('' == $option) { |
|
838 | 838 | continue; |
839 | 839 | } |
840 | 840 | |
841 | - $option = array_map( 'trim', explode( '|', $option ) ); |
|
841 | + $option = array_map('trim', explode('|', $option)); |
|
842 | 842 | |
843 | 843 | $price = null; |
844 | 844 | $label = null; |
845 | 845 | |
846 | - if ( isset( $option[0] ) && '' != $option[0] ) { |
|
847 | - $label = $option[0]; |
|
846 | + if (isset($option[0]) && '' != $option[0]) { |
|
847 | + $label = $option[0]; |
|
848 | 848 | } |
849 | 849 | |
850 | - if ( isset( $option[1] ) && '' != $option[1] ) { |
|
850 | + if (isset($option[1]) && '' != $option[1]) { |
|
851 | 851 | $price = $option[1]; |
852 | 852 | } |
853 | 853 | |
854 | - if ( ! isset( $price ) ) { |
|
854 | + if (!isset($price)) { |
|
855 | 855 | $price = $label; |
856 | 856 | } |
857 | 857 | |
858 | - if ( ! isset( $price ) || ! is_numeric( $price ) ) { |
|
858 | + if (!isset($price) || !is_numeric($price)) { |
|
859 | 859 | continue; |
860 | 860 | } |
861 | 861 | |
862 | - if ( ! isset( $label ) ) { |
|
862 | + if (!isset($label)) { |
|
863 | 863 | $label = $price; |
864 | 864 | } |
865 | 865 | |
866 | - $options[ "$label|$price" ] = $label; |
|
866 | + $options["$label|$price"] = $label; |
|
867 | 867 | } |
868 | 868 | |
869 | 869 | return $options; |
@@ -872,27 +872,27 @@ discard block |
||
872 | 872 | /** |
873 | 873 | * Returns the help tip. |
874 | 874 | */ |
875 | -function getpaid_get_help_tip( $tip, $additional_classes = '' ) { |
|
876 | - $additional_classes = sanitize_html_class( $additional_classes ); |
|
877 | - $tip = esc_attr__( $tip ); |
|
875 | +function getpaid_get_help_tip($tip, $additional_classes = '') { |
|
876 | + $additional_classes = sanitize_html_class($additional_classes); |
|
877 | + $tip = esc_attr__($tip); |
|
878 | 878 | return "<span class='wpi-help-tip dashicons dashicons-editor-help $additional_classes' title='$tip'></span>"; |
879 | 879 | } |
880 | 880 | |
881 | 881 | /** |
882 | 882 | * Formats a date |
883 | 883 | */ |
884 | -function getpaid_format_date( $date, $with_time = false ) { |
|
884 | +function getpaid_format_date($date, $with_time = false) { |
|
885 | 885 | |
886 | - if ( empty( $date ) || $date == '0000-00-00 00:00:00' ) { |
|
886 | + if (empty($date) || $date == '0000-00-00 00:00:00') { |
|
887 | 887 | return ''; |
888 | 888 | } |
889 | 889 | |
890 | 890 | $format = getpaid_date_format(); |
891 | 891 | |
892 | - if ( $with_time ) { |
|
892 | + if ($with_time) { |
|
893 | 893 | $format .= ' ' . getpaid_time_format(); |
894 | 894 | } |
895 | - return date_i18n( $format, strtotime( $date ) ); |
|
895 | + return date_i18n($format, strtotime($date)); |
|
896 | 896 | |
897 | 897 | } |
898 | 898 | |
@@ -901,9 +901,9 @@ discard block |
||
901 | 901 | * |
902 | 902 | * @return string |
903 | 903 | */ |
904 | -function getpaid_format_date_value( $date, $default = "—", $with_time = false ) { |
|
905 | - $date = getpaid_format_date( $date, $with_time ); |
|
906 | - return empty( $date ) ? $default : $date; |
|
904 | +function getpaid_format_date_value($date, $default = "—", $with_time = false) { |
|
905 | + $date = getpaid_format_date($date, $with_time); |
|
906 | + return empty($date) ? $default : $date; |
|
907 | 907 | } |
908 | 908 | |
909 | 909 | /** |
@@ -912,7 +912,7 @@ discard block |
||
912 | 912 | * @return string |
913 | 913 | */ |
914 | 914 | function getpaid_date_format() { |
915 | - return apply_filters( 'getpaid_date_format', get_option( 'date_format' ) ); |
|
915 | + return apply_filters('getpaid_date_format', get_option('date_format')); |
|
916 | 916 | } |
917 | 917 | |
918 | 918 | /** |
@@ -921,7 +921,7 @@ discard block |
||
921 | 921 | * @return string |
922 | 922 | */ |
923 | 923 | function getpaid_time_format() { |
924 | - return apply_filters( 'getpaid_time_format', get_option( 'time_format' ) ); |
|
924 | + return apply_filters('getpaid_time_format', get_option('time_format')); |
|
925 | 925 | } |
926 | 926 | |
927 | 927 | /** |
@@ -931,16 +931,16 @@ discard block |
||
931 | 931 | * @param integer $limit Limit size in characters. |
932 | 932 | * @return string |
933 | 933 | */ |
934 | -function getpaid_limit_length( $string, $limit ) { |
|
934 | +function getpaid_limit_length($string, $limit) { |
|
935 | 935 | $str_limit = $limit - 3; |
936 | 936 | |
937 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
938 | - if ( mb_strlen( $string ) > $limit ) { |
|
939 | - $string = mb_strimwidth( $string, 0, $str_limit ) . '...'; |
|
937 | + if (function_exists('mb_strimwidth')) { |
|
938 | + if (mb_strlen($string) > $limit) { |
|
939 | + $string = mb_strimwidth($string, 0, $str_limit) . '...'; |
|
940 | 940 | } |
941 | 941 | } else { |
942 | - if ( strlen( $string ) > $limit ) { |
|
943 | - $string = substr( $string, 0, $str_limit ) . '...'; |
|
942 | + if (strlen($string) > $limit) { |
|
943 | + $string = substr($string, 0, $str_limit) . '...'; |
|
944 | 944 | } |
945 | 945 | } |
946 | 946 | return $string; |
@@ -954,7 +954,7 @@ discard block |
||
954 | 954 | * @since 1.0.19 |
955 | 955 | */ |
956 | 956 | function getpaid_api() { |
957 | - return getpaid()->get( 'api' ); |
|
957 | + return getpaid()->get('api'); |
|
958 | 958 | } |
959 | 959 | |
960 | 960 | /** |
@@ -964,7 +964,7 @@ discard block |
||
964 | 964 | * @since 1.0.19 |
965 | 965 | */ |
966 | 966 | function getpaid_post_types() { |
967 | - return getpaid()->get( 'post_types' ); |
|
967 | + return getpaid()->get('post_types'); |
|
968 | 968 | } |
969 | 969 | |
970 | 970 | /** |
@@ -974,7 +974,7 @@ discard block |
||
974 | 974 | * @since 1.0.19 |
975 | 975 | */ |
976 | 976 | function getpaid_session() { |
977 | - return getpaid()->get( 'session' ); |
|
977 | + return getpaid()->get('session'); |
|
978 | 978 | } |
979 | 979 | |
980 | 980 | /** |
@@ -984,7 +984,7 @@ discard block |
||
984 | 984 | * @since 1.0.19 |
985 | 985 | */ |
986 | 986 | function getpaid_notes() { |
987 | - return getpaid()->get( 'notes' ); |
|
987 | + return getpaid()->get('notes'); |
|
988 | 988 | } |
989 | 989 | |
990 | 990 | /** |
@@ -993,7 +993,7 @@ discard block |
||
993 | 993 | * @return GetPaid_Admin |
994 | 994 | */ |
995 | 995 | function getpaid_admin() { |
996 | - return getpaid()->get( 'admin' ); |
|
996 | + return getpaid()->get('admin'); |
|
997 | 997 | } |
998 | 998 | |
999 | 999 | /** |
@@ -1003,8 +1003,8 @@ discard block |
||
1003 | 1003 | * @param string $base the base url |
1004 | 1004 | * @return string |
1005 | 1005 | */ |
1006 | -function getpaid_get_authenticated_action_url( $action, $base = false ) { |
|
1007 | - return wp_nonce_url( add_query_arg( 'getpaid-action', $action, $base ), 'getpaid-nonce', 'getpaid-nonce' ); |
|
1006 | +function getpaid_get_authenticated_action_url($action, $base = false) { |
|
1007 | + return wp_nonce_url(add_query_arg('getpaid-action', $action, $base), 'getpaid-nonce', 'getpaid-nonce'); |
|
1008 | 1008 | } |
1009 | 1009 | |
1010 | 1010 | /** |
@@ -1012,11 +1012,11 @@ discard block |
||
1012 | 1012 | * |
1013 | 1013 | * @return string |
1014 | 1014 | */ |
1015 | -function getpaid_get_post_type_label( $post_type, $plural = true ) { |
|
1015 | +function getpaid_get_post_type_label($post_type, $plural = true) { |
|
1016 | 1016 | |
1017 | - $post_type = get_post_type_object( $post_type ); |
|
1017 | + $post_type = get_post_type_object($post_type); |
|
1018 | 1018 | |
1019 | - if ( ! is_object( $post_type ) ) { |
|
1019 | + if (!is_object($post_type)) { |
|
1020 | 1020 | return null; |
1021 | 1021 | } |
1022 | 1022 | |
@@ -1029,18 +1029,18 @@ discard block |
||
1029 | 1029 | * |
1030 | 1030 | * @return mixed|null |
1031 | 1031 | */ |
1032 | -function getpaid_get_array_field( $array, $key, $secondary_key = null ) { |
|
1032 | +function getpaid_get_array_field($array, $key, $secondary_key = null) { |
|
1033 | 1033 | |
1034 | - if ( ! is_array( $array ) ) { |
|
1034 | + if (!is_array($array)) { |
|
1035 | 1035 | return null; |
1036 | 1036 | } |
1037 | 1037 | |
1038 | - if ( ! empty( $secondary_key ) ) { |
|
1039 | - $array = isset( $array[ $secondary_key ] ) ? $array[ $secondary_key ] : array(); |
|
1040 | - return getpaid_get_array_field( $array, $key ); |
|
1038 | + if (!empty($secondary_key)) { |
|
1039 | + $array = isset($array[$secondary_key]) ? $array[$secondary_key] : array(); |
|
1040 | + return getpaid_get_array_field($array, $key); |
|
1041 | 1041 | } |
1042 | 1042 | |
1043 | - return isset( $array[ $key ] ) ? $array[ $key ] : null; |
|
1043 | + return isset($array[$key]) ? $array[$key] : null; |
|
1044 | 1044 | |
1045 | 1045 | } |
1046 | 1046 | |
@@ -1049,12 +1049,12 @@ discard block |
||
1049 | 1049 | * |
1050 | 1050 | * @return array |
1051 | 1051 | */ |
1052 | -function getpaid_array_merge_if_empty( $args, $defaults ) { |
|
1052 | +function getpaid_array_merge_if_empty($args, $defaults) { |
|
1053 | 1053 | |
1054 | - foreach ( $defaults as $key => $value ) { |
|
1054 | + foreach ($defaults as $key => $value) { |
|
1055 | 1055 | |
1056 | - if ( array_key_exists( $key, $args ) && empty( $args[ $key ] ) ) { |
|
1057 | - $args[ $key ] = $value; |
|
1056 | + if (array_key_exists($key, $args) && empty($args[$key])) { |
|
1057 | + $args[$key] = $value; |
|
1058 | 1058 | } |
1059 | 1059 | |
1060 | 1060 | } |
@@ -1072,12 +1072,12 @@ discard block |
||
1072 | 1072 | |
1073 | 1073 | $types = get_allowed_mime_types(); |
1074 | 1074 | |
1075 | - if ( isset( $types['htm|html'] ) ) { |
|
1076 | - unset( $types['htm|html'] ); |
|
1075 | + if (isset($types['htm|html'])) { |
|
1076 | + unset($types['htm|html']); |
|
1077 | 1077 | } |
1078 | 1078 | |
1079 | - if ( isset( $types['js'] ) ) { |
|
1080 | - unset( $types['js'] ); |
|
1079 | + if (isset($types['js'])) { |
|
1080 | + unset($types['js']); |
|
1081 | 1081 | } |
1082 | 1082 | |
1083 | 1083 | return $types; |
@@ -9,41 +9,41 @@ discard block |
||
9 | 9 | * @version 1.0.19 |
10 | 10 | */ |
11 | 11 | |
12 | -defined( 'ABSPATH' ) || exit; |
|
12 | +defined('ABSPATH') || exit; |
|
13 | 13 | |
14 | 14 | return array( |
15 | 15 | |
16 | 16 | array( |
17 | 17 | 'type' => 'heading', |
18 | - 'name' => __( 'Heading', 'invoicing' ), |
|
18 | + 'name' => __('Heading', 'invoicing'), |
|
19 | 19 | 'defaults' => array( |
20 | 20 | 'level' => 'h2', |
21 | - 'text' => __( 'Heading', 'invoicing' ), |
|
21 | + 'text' => __('Heading', 'invoicing'), |
|
22 | 22 | ) |
23 | 23 | ), |
24 | 24 | |
25 | 25 | array( |
26 | 26 | 'type' => 'paragraph', |
27 | - 'name' => __( 'Paragraph', 'invoicing' ), |
|
27 | + 'name' => __('Paragraph', 'invoicing'), |
|
28 | 28 | 'defaults' => array( |
29 | - 'text' => __( 'Paragraph text', 'invoicing' ), |
|
29 | + 'text' => __('Paragraph text', 'invoicing'), |
|
30 | 30 | ) |
31 | 31 | ), |
32 | 32 | |
33 | 33 | array( |
34 | 34 | 'type' => 'alert', |
35 | - 'name' => __( 'Alert', 'invoicing' ), |
|
35 | + 'name' => __('Alert', 'invoicing'), |
|
36 | 36 | 'defaults' => array( |
37 | 37 | 'value' => '', |
38 | 38 | 'class' => 'alert-warning', |
39 | - 'text' => __( 'Alert', 'invoicing' ), |
|
39 | + 'text' => __('Alert', 'invoicing'), |
|
40 | 40 | 'dismissible' => false, |
41 | 41 | ) |
42 | 42 | ), |
43 | 43 | |
44 | 44 | array( |
45 | 45 | 'type' => 'separator', |
46 | - 'name' => __( 'Separator', 'invoicing' ), |
|
46 | + 'name' => __('Separator', 'invoicing'), |
|
47 | 47 | 'defaults' => array( |
48 | 48 | 'value' => '', |
49 | 49 | ), |
@@ -51,11 +51,11 @@ discard block |
||
51 | 51 | |
52 | 52 | array( |
53 | 53 | 'type' => 'text', |
54 | - 'name' => __( 'Text Input', 'invoicing' ), |
|
54 | + 'name' => __('Text Input', 'invoicing'), |
|
55 | 55 | 'defaults' => array( |
56 | - 'placeholder' => __( 'Enter some text', 'invoicing' ), |
|
56 | + 'placeholder' => __('Enter some text', 'invoicing'), |
|
57 | 57 | 'value' => '', |
58 | - 'label' => __( 'Field Label', 'invoicing' ), |
|
58 | + 'label' => __('Field Label', 'invoicing'), |
|
59 | 59 | 'description' => '', |
60 | 60 | 'required' => false, |
61 | 61 | ) |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | |
64 | 64 | array( |
65 | 65 | 'type' => 'textarea', |
66 | - 'name' => __( 'Textarea', 'invoicing' ), |
|
66 | + 'name' => __('Textarea', 'invoicing'), |
|
67 | 67 | 'defaults' => array( |
68 | - 'placeholder' => __( 'Enter your text here', 'invoicing' ), |
|
68 | + 'placeholder' => __('Enter your text here', 'invoicing'), |
|
69 | 69 | 'value' => '', |
70 | - 'label' => __( 'Textarea Label', 'invoicing' ), |
|
70 | + 'label' => __('Textarea Label', 'invoicing'), |
|
71 | 71 | 'description' => '', |
72 | 72 | 'required' => false, |
73 | 73 | ) |
@@ -75,27 +75,27 @@ discard block |
||
75 | 75 | |
76 | 76 | array( |
77 | 77 | 'type' => 'select', |
78 | - 'name' => __( 'Dropdown', 'invoicing' ), |
|
78 | + 'name' => __('Dropdown', 'invoicing'), |
|
79 | 79 | 'defaults' => array( |
80 | - 'placeholder' => __( 'Select a value', 'invoicing' ), |
|
80 | + 'placeholder' => __('Select a value', 'invoicing'), |
|
81 | 81 | 'value' => '', |
82 | - 'label' => __( 'Dropdown Label', 'invoicing' ), |
|
82 | + 'label' => __('Dropdown Label', 'invoicing'), |
|
83 | 83 | 'description' => '', |
84 | 84 | 'required' => false, |
85 | 85 | 'options' => array( |
86 | - esc_attr__( 'Option One', 'invoicing' ), |
|
87 | - esc_attr__( 'Option Two', 'invoicing' ), |
|
88 | - esc_attr__( 'Option Three', 'invoicing' ) |
|
86 | + esc_attr__('Option One', 'invoicing'), |
|
87 | + esc_attr__('Option Two', 'invoicing'), |
|
88 | + esc_attr__('Option Three', 'invoicing') |
|
89 | 89 | ), |
90 | 90 | ) |
91 | 91 | ), |
92 | 92 | |
93 | 93 | array( |
94 | 94 | 'type' => 'checkbox', |
95 | - 'name' => __( 'Checkbox', 'invoicing' ), |
|
95 | + 'name' => __('Checkbox', 'invoicing'), |
|
96 | 96 | 'defaults' => array( |
97 | 97 | 'value' => '', |
98 | - 'label' => __( 'Checkbox Label', 'invoicing' ), |
|
98 | + 'label' => __('Checkbox Label', 'invoicing'), |
|
99 | 99 | 'description' => '', |
100 | 100 | 'required' => false, |
101 | 101 | ) |
@@ -103,23 +103,23 @@ discard block |
||
103 | 103 | |
104 | 104 | array( |
105 | 105 | 'type' => 'radio', |
106 | - 'name' => __( 'Radio', 'invoicing' ), |
|
106 | + 'name' => __('Radio', 'invoicing'), |
|
107 | 107 | 'defaults' => array( |
108 | - 'label' => __( 'Select one choice', 'invoicing' ), |
|
108 | + 'label' => __('Select one choice', 'invoicing'), |
|
109 | 109 | 'options' => array( |
110 | - esc_attr__( 'Choice One', 'invoicing' ), |
|
111 | - esc_attr__( 'Choice Two', 'invoicing' ), |
|
112 | - esc_attr__( 'Choice Three', 'invoicing' ) |
|
110 | + esc_attr__('Choice One', 'invoicing'), |
|
111 | + esc_attr__('Choice Two', 'invoicing'), |
|
112 | + esc_attr__('Choice Three', 'invoicing') |
|
113 | 113 | ), |
114 | 114 | ) |
115 | 115 | ), |
116 | 116 | |
117 | 117 | array( |
118 | 118 | 'type' => 'date', |
119 | - 'name' => __( 'Date', 'invoicing' ), |
|
119 | + 'name' => __('Date', 'invoicing'), |
|
120 | 120 | 'defaults' => array( |
121 | 121 | 'value' => '', |
122 | - 'label' => __( 'Date', 'invoicing' ), |
|
122 | + 'label' => __('Date', 'invoicing'), |
|
123 | 123 | 'description' => '', |
124 | 124 | 'required' => false, |
125 | 125 | ) |
@@ -127,10 +127,10 @@ discard block |
||
127 | 127 | |
128 | 128 | array( |
129 | 129 | 'type' => 'time', |
130 | - 'name' => __( 'Time', 'invoicing' ), |
|
130 | + 'name' => __('Time', 'invoicing'), |
|
131 | 131 | 'defaults' => array( |
132 | 132 | 'value' => '', |
133 | - 'label' => __( 'Time', 'invoicing' ), |
|
133 | + 'label' => __('Time', 'invoicing'), |
|
134 | 134 | 'description' => '', |
135 | 135 | 'required' => false, |
136 | 136 | ) |
@@ -138,11 +138,11 @@ discard block |
||
138 | 138 | |
139 | 139 | array( |
140 | 140 | 'type' => 'number', |
141 | - 'name' => __( 'Number', 'invoicing' ), |
|
141 | + 'name' => __('Number', 'invoicing'), |
|
142 | 142 | 'defaults' => array( |
143 | 143 | 'placeholder' => '', |
144 | 144 | 'value' => '', |
145 | - 'label' => __( 'Number', 'invoicing' ), |
|
145 | + 'label' => __('Number', 'invoicing'), |
|
146 | 146 | 'description' => '', |
147 | 147 | 'required' => false, |
148 | 148 | ) |
@@ -150,11 +150,11 @@ discard block |
||
150 | 150 | |
151 | 151 | array( |
152 | 152 | 'type' => 'website', |
153 | - 'name' => __( 'Website', 'invoicing' ), |
|
153 | + 'name' => __('Website', 'invoicing'), |
|
154 | 154 | 'defaults' => array( |
155 | 155 | 'placeholder' => 'http://example.com', |
156 | 156 | 'value' => '', |
157 | - 'label' => __( 'Website', 'invoicing' ), |
|
157 | + 'label' => __('Website', 'invoicing'), |
|
158 | 158 | 'description' => '', |
159 | 159 | 'required' => false, |
160 | 160 | ) |
@@ -162,11 +162,11 @@ discard block |
||
162 | 162 | |
163 | 163 | array( |
164 | 164 | 'type' => 'email', |
165 | - 'name' => __( 'Email', 'invoicing' ), |
|
165 | + 'name' => __('Email', 'invoicing'), |
|
166 | 166 | 'defaults' => array( |
167 | 167 | 'placeholder' => '[email protected]', |
168 | 168 | 'value' => '', |
169 | - 'label' => __( 'Email Address', 'invoicing' ), |
|
169 | + 'label' => __('Email Address', 'invoicing'), |
|
170 | 170 | 'description' => '', |
171 | 171 | 'required' => false, |
172 | 172 | ) |
@@ -174,31 +174,31 @@ discard block |
||
174 | 174 | |
175 | 175 | array( |
176 | 176 | 'type' => 'file_upload', |
177 | - 'name' => __( 'File Upload', 'invoicing' ), |
|
177 | + 'name' => __('File Upload', 'invoicing'), |
|
178 | 178 | 'defaults' => array( |
179 | 179 | 'value' => '', |
180 | - 'label' => __( 'Upload File', 'invoicing' ), |
|
180 | + 'label' => __('Upload File', 'invoicing'), |
|
181 | 181 | 'description' => '', |
182 | 182 | 'required' => false, |
183 | 183 | 'max_file_num' => 1, |
184 | - 'file_types' => array( 'jpg|jpeg|jpe', 'gif', 'png' ), |
|
184 | + 'file_types' => array('jpg|jpeg|jpe', 'gif', 'png'), |
|
185 | 185 | ) |
186 | 186 | ), |
187 | 187 | |
188 | 188 | array( |
189 | 189 | 'type' => 'address', |
190 | - 'name' => __( 'Address', 'invoicing' ), |
|
190 | + 'name' => __('Address', 'invoicing'), |
|
191 | 191 | 'defaults' => array( |
192 | 192 | |
193 | 193 | 'address_type' => 'billing', |
194 | - 'billing_address_title' => __( 'Billing Address', 'invoicing' ), |
|
195 | - 'shipping_address_title' => __( 'Shipping Address', 'invoicing' ), |
|
196 | - 'shipping_address_toggle' => __( 'Same billing & shipping address.', 'invoicing' ), |
|
194 | + 'billing_address_title' => __('Billing Address', 'invoicing'), |
|
195 | + 'shipping_address_title' => __('Shipping Address', 'invoicing'), |
|
196 | + 'shipping_address_toggle' => __('Same billing & shipping address.', 'invoicing'), |
|
197 | 197 | 'fields' => array( |
198 | 198 | array( |
199 | 199 | 'placeholder' => 'Jon', |
200 | 200 | 'value' => '', |
201 | - 'label' => __( 'First Name', 'invoicing' ), |
|
201 | + 'label' => __('First Name', 'invoicing'), |
|
202 | 202 | 'description' => '', |
203 | 203 | 'required' => false, |
204 | 204 | 'visible' => true, |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | array( |
210 | 210 | 'placeholder' => 'Snow', |
211 | 211 | 'value' => '', |
212 | - 'label' => __( 'Last Name', 'invoicing' ), |
|
212 | + 'label' => __('Last Name', 'invoicing'), |
|
213 | 213 | 'description' => '', |
214 | 214 | 'required' => false, |
215 | 215 | 'visible' => true, |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | array( |
221 | 221 | 'placeholder' => '', |
222 | 222 | 'value' => '', |
223 | - 'label' => __( 'Address', 'invoicing' ), |
|
223 | + 'label' => __('Address', 'invoicing'), |
|
224 | 224 | 'description' => '', |
225 | 225 | 'required' => false, |
226 | 226 | 'visible' => true, |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | array( |
232 | 232 | 'placeholder' => '', |
233 | 233 | 'value' => '', |
234 | - 'label' => __( 'City', 'invoicing' ), |
|
234 | + 'label' => __('City', 'invoicing'), |
|
235 | 235 | 'description' => '', |
236 | 236 | 'required' => false, |
237 | 237 | 'visible' => true, |
@@ -240,9 +240,9 @@ discard block |
||
240 | 240 | ), |
241 | 241 | |
242 | 242 | array( |
243 | - 'placeholder' => __( 'Select your country' ), |
|
243 | + 'placeholder' => __('Select your country'), |
|
244 | 244 | 'value' => '', |
245 | - 'label' => __( 'Country', 'invoicing' ), |
|
245 | + 'label' => __('Country', 'invoicing'), |
|
246 | 246 | 'description' => '', |
247 | 247 | 'required' => false, |
248 | 248 | 'visible' => true, |
@@ -251,9 +251,9 @@ discard block |
||
251 | 251 | ), |
252 | 252 | |
253 | 253 | array( |
254 | - 'placeholder' => __( 'Choose a state', 'invoicing' ), |
|
254 | + 'placeholder' => __('Choose a state', 'invoicing'), |
|
255 | 255 | 'value' => '', |
256 | - 'label' => __( 'State / Province', 'invoicing' ), |
|
256 | + 'label' => __('State / Province', 'invoicing'), |
|
257 | 257 | 'description' => '', |
258 | 258 | 'required' => false, |
259 | 259 | 'visible' => true, |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | array( |
265 | 265 | 'placeholder' => '', |
266 | 266 | 'value' => '', |
267 | - 'label' => __( 'ZIP / Postcode', 'invoicing' ), |
|
267 | + 'label' => __('ZIP / Postcode', 'invoicing'), |
|
268 | 268 | 'description' => '', |
269 | 269 | 'required' => false, |
270 | 270 | 'visible' => true, |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | array( |
276 | 276 | 'placeholder' => '', |
277 | 277 | 'value' => '', |
278 | - 'label' => __( 'Phone', 'invoicing' ), |
|
278 | + 'label' => __('Phone', 'invoicing'), |
|
279 | 279 | 'description' => '', |
280 | 280 | 'required' => false, |
281 | 281 | 'visible' => true, |
@@ -286,7 +286,7 @@ discard block |
||
286 | 286 | array( |
287 | 287 | 'placeholder' => '', |
288 | 288 | 'value' => '', |
289 | - 'label' => __( 'Company', 'invoicing' ), |
|
289 | + 'label' => __('Company', 'invoicing'), |
|
290 | 290 | 'description' => '', |
291 | 291 | 'required' => false, |
292 | 292 | 'visible' => false, |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | array( |
298 | 298 | 'placeholder' => '', |
299 | 299 | 'value' => '', |
300 | - 'label' => __( 'Company ID', 'invoicing' ), |
|
300 | + 'label' => __('Company ID', 'invoicing'), |
|
301 | 301 | 'description' => '', |
302 | 302 | 'required' => false, |
303 | 303 | 'visible' => false, |
@@ -308,7 +308,7 @@ discard block |
||
308 | 308 | array( |
309 | 309 | 'placeholder' => '', |
310 | 310 | 'value' => '', |
311 | - 'label' => __( 'VAT Number', 'invoicing' ), |
|
311 | + 'label' => __('VAT Number', 'invoicing'), |
|
312 | 312 | 'description' => '', |
313 | 313 | 'required' => false, |
314 | 314 | 'visible' => false, |
@@ -321,11 +321,11 @@ discard block |
||
321 | 321 | |
322 | 322 | array( |
323 | 323 | 'type' => 'billing_email', |
324 | - 'name' => __( 'Billing Email', 'invoicing' ), |
|
324 | + 'name' => __('Billing Email', 'invoicing'), |
|
325 | 325 | 'defaults' => array( |
326 | 326 | 'placeholder' => '[email protected]', |
327 | 327 | 'value' => '', |
328 | - 'label' => __( 'Billing Email', 'invoicing' ), |
|
328 | + 'label' => __('Billing Email', 'invoicing'), |
|
329 | 329 | 'description' => '', |
330 | 330 | 'premade' => true, |
331 | 331 | ) |
@@ -333,18 +333,18 @@ discard block |
||
333 | 333 | |
334 | 334 | array( |
335 | 335 | 'type' => 'discount', |
336 | - 'name' => __( 'Discount Input', 'invoicing' ), |
|
336 | + 'name' => __('Discount Input', 'invoicing'), |
|
337 | 337 | 'defaults' => array( |
338 | 338 | 'value' => '', |
339 | - 'input_label' => __( 'Coupon Code', 'invoicing' ), |
|
340 | - 'button_label' => __( 'Apply Coupon', 'invoicing' ), |
|
341 | - 'description' => __( 'Have a discount code? Enter it above.', 'invoicing' ), |
|
339 | + 'input_label' => __('Coupon Code', 'invoicing'), |
|
340 | + 'button_label' => __('Apply Coupon', 'invoicing'), |
|
341 | + 'description' => __('Have a discount code? Enter it above.', 'invoicing'), |
|
342 | 342 | ) |
343 | 343 | ), |
344 | 344 | |
345 | 345 | array( |
346 | 346 | 'type' => 'items', |
347 | - 'name' => __( 'Items', 'invoicing' ), |
|
347 | + 'name' => __('Items', 'invoicing'), |
|
348 | 348 | 'defaults' => array( |
349 | 349 | 'value' => '', |
350 | 350 | 'items_type' => 'total', |
@@ -356,22 +356,22 @@ discard block |
||
356 | 356 | |
357 | 357 | array( |
358 | 358 | 'type' => 'price_input', |
359 | - 'name' => __( 'Price Input', 'invoicing' ), |
|
359 | + 'name' => __('Price Input', 'invoicing'), |
|
360 | 360 | 'defaults' => array( |
361 | 361 | 'placeholder' => wpinv_format_amount(0), |
362 | 362 | 'value' => wpinv_format_amount(0), |
363 | 363 | 'minimum' => wpinv_format_amount(0), |
364 | - 'label' => __( 'Enter Amount', 'invoicing' ), |
|
364 | + 'label' => __('Enter Amount', 'invoicing'), |
|
365 | 365 | 'description' => '', |
366 | 366 | ) |
367 | 367 | ), |
368 | 368 | |
369 | 369 | array( |
370 | 370 | 'type' => 'price_select', |
371 | - 'name' => __( 'Price Select', 'invoicing' ), |
|
371 | + 'name' => __('Price Select', 'invoicing'), |
|
372 | 372 | 'defaults' => array( |
373 | 373 | 'description' => '', |
374 | - 'label' => __( 'Select Amount', 'invoicing' ), |
|
374 | + 'label' => __('Select Amount', 'invoicing'), |
|
375 | 375 | 'options' => 'Option 1|10, Option 2|20', |
376 | 376 | 'placeholder' => '', |
377 | 377 | 'select_type' => 'select', |
@@ -380,39 +380,39 @@ discard block |
||
380 | 380 | |
381 | 381 | array( |
382 | 382 | 'type' => 'pay_button', |
383 | - 'name' => __( 'Payment Button', 'invoicing' ), |
|
383 | + 'name' => __('Payment Button', 'invoicing'), |
|
384 | 384 | 'defaults' => array( |
385 | 385 | 'value' => '', |
386 | 386 | 'class' => 'btn-primary', |
387 | - 'label' => __( 'Pay %price% »', 'invoicing' ), |
|
388 | - 'free' => __( 'Continue »', 'invoicing' ), |
|
389 | - 'description' => __( 'By continuing with our payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ), |
|
387 | + 'label' => __('Pay %price% »', 'invoicing'), |
|
388 | + 'free' => __('Continue »', 'invoicing'), |
|
389 | + 'description' => __('By continuing with our payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'), |
|
390 | 390 | 'premade' => true, |
391 | 391 | ) |
392 | 392 | ), |
393 | 393 | |
394 | 394 | array( |
395 | 395 | 'type' => 'gateway_select', |
396 | - 'name' => __( 'Gateway Select', 'invoicing' ), |
|
396 | + 'name' => __('Gateway Select', 'invoicing'), |
|
397 | 397 | 'defaults' => array( |
398 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
398 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
399 | 399 | 'premade' => true, |
400 | 400 | ) |
401 | 401 | ), |
402 | 402 | |
403 | 403 | array( |
404 | 404 | 'type' => 'total_payable', |
405 | - 'name' => __( 'Total Payable', 'invoicing' ), |
|
405 | + 'name' => __('Total Payable', 'invoicing'), |
|
406 | 406 | 'defaults' => array( |
407 | - 'text' => __( 'Total to pay:', 'invoicing' ), |
|
407 | + 'text' => __('Total to pay:', 'invoicing'), |
|
408 | 408 | ) |
409 | 409 | ), |
410 | 410 | |
411 | 411 | array( |
412 | 412 | 'type' => 'ip_address', |
413 | - 'name' => __( 'IP Address', 'invoicing' ), |
|
413 | + 'name' => __('IP Address', 'invoicing'), |
|
414 | 414 | 'defaults' => array( |
415 | - 'text' => __( 'Your IP address is:', 'invoicing' ), |
|
415 | + 'text' => __('Your IP address is:', 'invoicing'), |
|
416 | 416 | ) |
417 | 417 | ) |
418 | 418 | ); |
@@ -1,32 +1,32 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | - // Is the request set up correctly? |
|
4 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
5 | - return aui()->alert( |
|
6 | - array( |
|
7 | - 'type' => 'warning', |
|
8 | - 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
9 | - ) |
|
10 | - ); |
|
11 | - wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
12 | - } |
|
13 | - |
|
14 | - // Payment form or button? |
|
15 | - if ( ! empty( $_GET['form'] ) ) { |
|
16 | - |
|
17 | - $shortcode = sprintf( |
|
18 | - '[getpaid form=%s]', |
|
19 | - (int) urldecode( $_GET['form'] ) |
|
20 | - ); |
|
21 | - |
|
22 | - } else { |
|
23 | - |
|
24 | - $shortcode = sprintf( |
|
25 | - '[getpaid item=%s]', |
|
26 | - esc_attr( urldecode( $_GET['item'] ) ) |
|
27 | - ); |
|
28 | - |
|
29 | - } |
|
3 | + // Is the request set up correctly? |
|
4 | + if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
5 | + return aui()->alert( |
|
6 | + array( |
|
7 | + 'type' => 'warning', |
|
8 | + 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
9 | + ) |
|
10 | + ); |
|
11 | + wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
12 | + } |
|
13 | + |
|
14 | + // Payment form or button? |
|
15 | + if ( ! empty( $_GET['form'] ) ) { |
|
16 | + |
|
17 | + $shortcode = sprintf( |
|
18 | + '[getpaid form=%s]', |
|
19 | + (int) urldecode( $_GET['form'] ) |
|
20 | + ); |
|
21 | + |
|
22 | + } else { |
|
23 | + |
|
24 | + $shortcode = sprintf( |
|
25 | + '[getpaid item=%s]', |
|
26 | + esc_attr( urldecode( $_GET['item'] ) ) |
|
27 | + ); |
|
28 | + |
|
29 | + } |
|
30 | 30 | |
31 | 31 | ?> |
32 | 32 | |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | |
45 | 45 | <title>GetPaid</title> |
46 | 46 | <?php |
47 | - wp_enqueue_scripts(); |
|
48 | - wp_print_styles(); |
|
49 | - wp_print_head_scripts(); |
|
50 | - wp_custom_css_cb(); |
|
51 | - wpinv_get_template( 'frontend-head.php' ); |
|
52 | - ?> |
|
47 | + wp_enqueue_scripts(); |
|
48 | + wp_print_styles(); |
|
49 | + wp_print_head_scripts(); |
|
50 | + wp_custom_css_cb(); |
|
51 | + wpinv_get_template( 'frontend-head.php' ); |
|
52 | + ?> |
|
53 | 53 | |
54 | 54 | <style type="text/css"> |
55 | 55 | .body{ |
@@ -83,11 +83,11 @@ discard block |
||
83 | 83 | <body class="body page-template-default page"> |
84 | 84 | <div id="getpaid-form-embed" class="container my-5 page type-page status-publish hentry post post-content"> |
85 | 85 | <?php |
86 | - do_action( 'getpaid_payment_form_embed_top' ); |
|
87 | - echo do_shortcode( $shortcode ); |
|
88 | - do_action( 'getpaid_payment_form_embed_bottom' ); |
|
89 | - wpinv_get_template( 'frontend-footer.php' ); |
|
90 | - ?> |
|
86 | + do_action( 'getpaid_payment_form_embed_top' ); |
|
87 | + echo do_shortcode( $shortcode ); |
|
88 | + do_action( 'getpaid_payment_form_embed_bottom' ); |
|
89 | + wpinv_get_template( 'frontend-footer.php' ); |
|
90 | + ?> |
|
91 | 91 | </div> |
92 | 92 | <?php wp_footer(); ?> |
93 | 93 | </body> |
@@ -1,29 +1,29 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Is the request set up correctly? |
4 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) ) { |
|
4 | + if (empty($_GET['form']) && empty($_GET['item'])) { |
|
5 | 5 | return aui()->alert( |
6 | 6 | array( |
7 | 7 | 'type' => 'warning', |
8 | - 'content' => __( 'No payment form or item selected', 'invoicing' ), |
|
8 | + 'content' => __('No payment form or item selected', 'invoicing'), |
|
9 | 9 | ) |
10 | 10 | ); |
11 | - wp_die( __( 'No payment form or item selected', 'invoicing' ), 400 ); |
|
11 | + wp_die(__('No payment form or item selected', 'invoicing'), 400); |
|
12 | 12 | } |
13 | 13 | |
14 | 14 | // Payment form or button? |
15 | - if ( ! empty( $_GET['form'] ) ) { |
|
15 | + if (!empty($_GET['form'])) { |
|
16 | 16 | |
17 | 17 | $shortcode = sprintf( |
18 | 18 | '[getpaid form=%s]', |
19 | - (int) urldecode( $_GET['form'] ) |
|
19 | + (int) urldecode($_GET['form']) |
|
20 | 20 | ); |
21 | 21 | |
22 | 22 | } else { |
23 | 23 | |
24 | 24 | $shortcode = sprintf( |
25 | 25 | '[getpaid item=%s]', |
26 | - esc_attr( urldecode( $_GET['item'] ) ) |
|
26 | + esc_attr(urldecode($_GET['item'])) |
|
27 | 27 | ); |
28 | 28 | |
29 | 29 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | |
36 | 36 | <head> |
37 | 37 | |
38 | - <meta charset="<?php bloginfo( 'charset' ); ?>"> |
|
38 | + <meta charset="<?php bloginfo('charset'); ?>"> |
|
39 | 39 | <meta name="viewport" content="width=device-width, initial-scale=1.0" > |
40 | 40 | |
41 | 41 | <meta name="robots" content="noindex,nofollow"> |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | wp_print_styles(); |
49 | 49 | wp_print_head_scripts(); |
50 | 50 | wp_custom_css_cb(); |
51 | - wpinv_get_template( 'frontend-head.php' ); |
|
51 | + wpinv_get_template('frontend-head.php'); |
|
52 | 52 | ?> |
53 | 53 | |
54 | 54 | <style type="text/css"> |
@@ -83,10 +83,10 @@ discard block |
||
83 | 83 | <body class="body page-template-default page"> |
84 | 84 | <div id="getpaid-form-embed" class="container my-5 page type-page status-publish hentry post post-content"> |
85 | 85 | <?php |
86 | - do_action( 'getpaid_payment_form_embed_top' ); |
|
87 | - echo do_shortcode( $shortcode ); |
|
88 | - do_action( 'getpaid_payment_form_embed_bottom' ); |
|
89 | - wpinv_get_template( 'frontend-footer.php' ); |
|
86 | + do_action('getpaid_payment_form_embed_top'); |
|
87 | + echo do_shortcode($shortcode); |
|
88 | + do_action('getpaid_payment_form_embed_bottom'); |
|
89 | + wpinv_get_template('frontend-footer.php'); |
|
90 | 90 | ?> |
91 | 91 | </div> |
92 | 92 | <?php wp_footer(); ?> |
@@ -12,180 +12,180 @@ discard block |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Checkout { |
14 | 14 | |
15 | - /** |
|
16 | - * @var GetPaid_Payment_Form_Submission |
|
17 | - */ |
|
18 | - protected $payment_form_submission; |
|
19 | - |
|
20 | - /** |
|
21 | - * Class constructor. |
|
22 | - * |
|
23 | - * @param GetPaid_Payment_Form_Submission $submission |
|
24 | - */ |
|
25 | - public function __construct( $submission ) { |
|
26 | - $this->payment_form_submission = $submission; |
|
27 | - } |
|
28 | - |
|
29 | - /** |
|
30 | - * Processes the checkout. |
|
31 | - * |
|
32 | - */ |
|
33 | - public function process_checkout() { |
|
34 | - |
|
35 | - // Validate the submission. |
|
36 | - $this->validate_submission(); |
|
37 | - |
|
38 | - // Prepare the invoice. |
|
39 | - $items = $this->get_submission_items(); |
|
40 | - $invoice = $this->get_submission_invoice(); |
|
41 | - $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
42 | - $prepared = $this->prepare_submission_data_for_saving(); |
|
43 | - |
|
44 | - $this->prepare_billing_info( $invoice ); |
|
45 | - |
|
46 | - $shipping = $this->prepare_shipping_info( $invoice ); |
|
47 | - |
|
48 | - // Save the invoice. |
|
49 | - $invoice->set_is_viewed( true ); |
|
50 | - $invoice->recalculate_total(); |
|
15 | + /** |
|
16 | + * @var GetPaid_Payment_Form_Submission |
|
17 | + */ |
|
18 | + protected $payment_form_submission; |
|
19 | + |
|
20 | + /** |
|
21 | + * Class constructor. |
|
22 | + * |
|
23 | + * @param GetPaid_Payment_Form_Submission $submission |
|
24 | + */ |
|
25 | + public function __construct( $submission ) { |
|
26 | + $this->payment_form_submission = $submission; |
|
27 | + } |
|
28 | + |
|
29 | + /** |
|
30 | + * Processes the checkout. |
|
31 | + * |
|
32 | + */ |
|
33 | + public function process_checkout() { |
|
34 | + |
|
35 | + // Validate the submission. |
|
36 | + $this->validate_submission(); |
|
37 | + |
|
38 | + // Prepare the invoice. |
|
39 | + $items = $this->get_submission_items(); |
|
40 | + $invoice = $this->get_submission_invoice(); |
|
41 | + $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
42 | + $prepared = $this->prepare_submission_data_for_saving(); |
|
43 | + |
|
44 | + $this->prepare_billing_info( $invoice ); |
|
45 | + |
|
46 | + $shipping = $this->prepare_shipping_info( $invoice ); |
|
47 | + |
|
48 | + // Save the invoice. |
|
49 | + $invoice->set_is_viewed( true ); |
|
50 | + $invoice->recalculate_total(); |
|
51 | 51 | $invoice->save(); |
52 | 52 | |
53 | - do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
53 | + do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
54 | 54 | |
55 | - // Send to the gateway. |
|
56 | - $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
57 | - } |
|
55 | + // Send to the gateway. |
|
56 | + $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
57 | + } |
|
58 | 58 | |
59 | - /** |
|
60 | - * Validates the submission. |
|
61 | - * |
|
62 | - */ |
|
63 | - protected function validate_submission() { |
|
59 | + /** |
|
60 | + * Validates the submission. |
|
61 | + * |
|
62 | + */ |
|
63 | + protected function validate_submission() { |
|
64 | 64 | |
65 | - $submission = $this->payment_form_submission; |
|
66 | - $data = $submission->get_data(); |
|
65 | + $submission = $this->payment_form_submission; |
|
66 | + $data = $submission->get_data(); |
|
67 | 67 | |
68 | - // Do we have an error? |
|
68 | + // Do we have an error? |
|
69 | 69 | if ( ! empty( $submission->last_error ) ) { |
70 | - wp_send_json_error( $submission->last_error ); |
|
70 | + wp_send_json_error( $submission->last_error ); |
|
71 | 71 | } |
72 | 72 | |
73 | - // We need a billing email. |
|
73 | + // We need a billing email. |
|
74 | 74 | if ( ! $submission->has_billing_email() ) { |
75 | 75 | wp_send_json_error( __( 'Provide a valid billing email.', 'invoicing' ) ); |
76 | - } |
|
76 | + } |
|
77 | 77 | |
78 | - // Non-recurring gateways should not be allowed to process recurring invoices. |
|
79 | - if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
80 | - wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
81 | - } |
|
78 | + // Non-recurring gateways should not be allowed to process recurring invoices. |
|
79 | + if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
80 | + wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
81 | + } |
|
82 | 82 | |
83 | - // Ensure the gateway is active. |
|
84 | - if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
85 | - wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
86 | - } |
|
83 | + // Ensure the gateway is active. |
|
84 | + if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
85 | + wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
86 | + } |
|
87 | 87 | |
88 | - // Clear any existing errors. |
|
89 | - wpinv_clear_errors(); |
|
88 | + // Clear any existing errors. |
|
89 | + wpinv_clear_errors(); |
|
90 | 90 | |
91 | - // Allow themes and plugins to hook to errors |
|
92 | - do_action( 'getpaid_checkout_error_checks', $submission ); |
|
91 | + // Allow themes and plugins to hook to errors |
|
92 | + do_action( 'getpaid_checkout_error_checks', $submission ); |
|
93 | 93 | |
94 | - // Do we have any errors? |
|
94 | + // Do we have any errors? |
|
95 | 95 | if ( wpinv_get_errors() ) { |
96 | 96 | wp_send_json_error( getpaid_get_errors_html() ); |
97 | - } |
|
97 | + } |
|
98 | 98 | |
99 | - } |
|
99 | + } |
|
100 | 100 | |
101 | - /** |
|
102 | - * Retrieves submission items. |
|
103 | - * |
|
104 | - * @return GetPaid_Form_Item[] |
|
105 | - */ |
|
106 | - protected function get_submission_items() { |
|
101 | + /** |
|
102 | + * Retrieves submission items. |
|
103 | + * |
|
104 | + * @return GetPaid_Form_Item[] |
|
105 | + */ |
|
106 | + protected function get_submission_items() { |
|
107 | 107 | |
108 | - $items = $this->payment_form_submission->get_items(); |
|
108 | + $items = $this->payment_form_submission->get_items(); |
|
109 | 109 | |
110 | 110 | // Ensure that we have items. |
111 | 111 | if ( empty( $items ) && ! $this->payment_form_submission->has_fees() ) { |
112 | 112 | wp_send_json_error( __( 'Please provide at least one item or amount.', 'invoicing' ) ); |
113 | - } |
|
114 | - |
|
115 | - return $items; |
|
116 | - } |
|
117 | - |
|
118 | - /** |
|
119 | - * Retrieves submission invoice. |
|
120 | - * |
|
121 | - * @return WPInv_Invoice |
|
122 | - */ |
|
123 | - protected function get_submission_invoice() { |
|
124 | - $submission = $this->payment_form_submission; |
|
125 | - |
|
126 | - if ( ! $submission->has_invoice() ) { |
|
127 | - $invoice = new WPInv_Invoice(); |
|
128 | - $invoice->set_created_via( 'payment_form' ); |
|
129 | - return $invoice; |
|
130 | 113 | } |
131 | 114 | |
132 | - $invoice = $submission->get_invoice(); |
|
115 | + return $items; |
|
116 | + } |
|
117 | + |
|
118 | + /** |
|
119 | + * Retrieves submission invoice. |
|
120 | + * |
|
121 | + * @return WPInv_Invoice |
|
122 | + */ |
|
123 | + protected function get_submission_invoice() { |
|
124 | + $submission = $this->payment_form_submission; |
|
125 | + |
|
126 | + if ( ! $submission->has_invoice() ) { |
|
127 | + $invoice = new WPInv_Invoice(); |
|
128 | + $invoice->set_created_via( 'payment_form' ); |
|
129 | + return $invoice; |
|
130 | + } |
|
131 | + |
|
132 | + $invoice = $submission->get_invoice(); |
|
133 | 133 | |
134 | - // Make sure that it is neither paid or refunded. |
|
135 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
136 | - wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
137 | - } |
|
134 | + // Make sure that it is neither paid or refunded. |
|
135 | + if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
136 | + wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
137 | + } |
|
138 | 138 | |
139 | - return $invoice; |
|
140 | - } |
|
139 | + return $invoice; |
|
140 | + } |
|
141 | 141 | |
142 | - /** |
|
143 | - * Processes the submission invoice. |
|
144 | - * |
|
145 | - * @param WPInv_Invoice $invoice |
|
146 | - * @param GetPaid_Form_Item[] $items |
|
147 | - * @return WPInv_Invoice |
|
148 | - */ |
|
149 | - protected function process_submission_invoice( $invoice, $items ) { |
|
142 | + /** |
|
143 | + * Processes the submission invoice. |
|
144 | + * |
|
145 | + * @param WPInv_Invoice $invoice |
|
146 | + * @param GetPaid_Form_Item[] $items |
|
147 | + * @return WPInv_Invoice |
|
148 | + */ |
|
149 | + protected function process_submission_invoice( $invoice, $items ) { |
|
150 | 150 | |
151 | - $submission = $this->payment_form_submission; |
|
151 | + $submission = $this->payment_form_submission; |
|
152 | 152 | |
153 | - // Set-up the invoice details. |
|
154 | - $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
155 | - $invoice->set_user_id( $this->get_submission_customer() ); |
|
156 | - $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
153 | + // Set-up the invoice details. |
|
154 | + $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
155 | + $invoice->set_user_id( $this->get_submission_customer() ); |
|
156 | + $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
157 | 157 | $invoice->set_items( $items ); |
158 | 158 | $invoice->set_fees( $submission->get_fees() ); |
159 | 159 | $invoice->set_taxes( $submission->get_taxes() ); |
160 | - $invoice->set_discounts( $submission->get_discounts() ); |
|
161 | - $invoice->set_gateway( $submission->get_field( 'wpi-gateway' ) ); |
|
162 | - $invoice->set_currency( $submission->get_currency() ); |
|
160 | + $invoice->set_discounts( $submission->get_discounts() ); |
|
161 | + $invoice->set_gateway( $submission->get_field( 'wpi-gateway' ) ); |
|
162 | + $invoice->set_currency( $submission->get_currency() ); |
|
163 | 163 | |
164 | - $address_confirmed = $submission->get_field( 'confirm-address' ); |
|
165 | - $invoice->set_address_confirmed( ! empty( $address_confirmed ) ); |
|
164 | + $address_confirmed = $submission->get_field( 'confirm-address' ); |
|
165 | + $invoice->set_address_confirmed( ! empty( $address_confirmed ) ); |
|
166 | 166 | |
167 | - if ( $submission->has_discount_code() ) { |
|
167 | + if ( $submission->has_discount_code() ) { |
|
168 | 168 | $invoice->set_discount_code( $submission->get_discount_code() ); |
169 | - } |
|
170 | - |
|
171 | - getpaid_maybe_add_default_address( $invoice ); |
|
172 | - return $invoice; |
|
173 | - } |
|
174 | - |
|
175 | - /** |
|
176 | - * Retrieves the submission's customer. |
|
177 | - * |
|
178 | - * @return int The customer id. |
|
179 | - */ |
|
180 | - protected function get_submission_customer() { |
|
181 | - $submission = $this->payment_form_submission; |
|
182 | - |
|
183 | - // If this is an existing invoice... |
|
184 | - if ( $submission->has_invoice() ) { |
|
185 | - return $submission->get_invoice()->get_user_id(); |
|
186 | - } |
|
187 | - |
|
188 | - // (Maybe) create the user. |
|
169 | + } |
|
170 | + |
|
171 | + getpaid_maybe_add_default_address( $invoice ); |
|
172 | + return $invoice; |
|
173 | + } |
|
174 | + |
|
175 | + /** |
|
176 | + * Retrieves the submission's customer. |
|
177 | + * |
|
178 | + * @return int The customer id. |
|
179 | + */ |
|
180 | + protected function get_submission_customer() { |
|
181 | + $submission = $this->payment_form_submission; |
|
182 | + |
|
183 | + // If this is an existing invoice... |
|
184 | + if ( $submission->has_invoice() ) { |
|
185 | + return $submission->get_invoice()->get_user_id(); |
|
186 | + } |
|
187 | + |
|
188 | + // (Maybe) create the user. |
|
189 | 189 | $user = get_current_user_id(); |
190 | 190 | |
191 | 191 | if ( empty( $user ) ) { |
@@ -195,11 +195,11 @@ discard block |
||
195 | 195 | if ( empty( $user ) ) { |
196 | 196 | $user = wpinv_create_user( $submission->get_billing_email() ); |
197 | 197 | |
198 | - // (Maybe) send new user notification. |
|
199 | - $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
200 | - if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ), $user ) ) { |
|
201 | - wp_send_new_user_notifications( $user, 'user' ); |
|
202 | - } |
|
198 | + // (Maybe) send new user notification. |
|
199 | + $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
200 | + if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ), $user ) ) { |
|
201 | + wp_send_new_user_notifications( $user, 'user' ); |
|
202 | + } |
|
203 | 203 | |
204 | 204 | } |
205 | 205 | |
@@ -209,49 +209,49 @@ discard block |
||
209 | 209 | |
210 | 210 | if ( is_numeric( $user ) ) { |
211 | 211 | return $user; |
212 | - } |
|
212 | + } |
|
213 | 213 | |
214 | - return $user->ID; |
|
214 | + return $user->ID; |
|
215 | 215 | |
216 | - } |
|
216 | + } |
|
217 | 217 | |
218 | - /** |
|
218 | + /** |
|
219 | 219 | * Prepares submission data for saving to the database. |
220 | 220 | * |
221 | - * @return array |
|
221 | + * @return array |
|
222 | 222 | */ |
223 | 223 | public function prepare_submission_data_for_saving() { |
224 | 224 | |
225 | - $submission = $this->payment_form_submission; |
|
225 | + $submission = $this->payment_form_submission; |
|
226 | 226 | |
227 | - // Prepared submission details. |
|
227 | + // Prepared submission details. |
|
228 | 228 | $prepared = array( |
229 | - 'all' => array(), |
|
230 | - 'meta' => array(), |
|
231 | - ); |
|
229 | + 'all' => array(), |
|
230 | + 'meta' => array(), |
|
231 | + ); |
|
232 | 232 | |
233 | 233 | // Raw submission details. |
234 | - $data = $submission->get_data(); |
|
234 | + $data = $submission->get_data(); |
|
235 | 235 | |
236 | - // Loop through the submitted details. |
|
236 | + // Loop through the submitted details. |
|
237 | 237 | foreach ( $submission->get_payment_form()->get_elements() as $field ) { |
238 | 238 | |
239 | - // Skip premade fields. |
|
239 | + // Skip premade fields. |
|
240 | 240 | if ( ! empty( $field['premade'] ) ) { |
241 | 241 | continue; |
242 | 242 | } |
243 | 243 | |
244 | - // Ensure address is provided. |
|
245 | - if ( $field['type'] == 'address' ) { |
|
244 | + // Ensure address is provided. |
|
245 | + if ( $field['type'] == 'address' ) { |
|
246 | 246 | $address_type = isset( $field['address_type'] ) && 'shipping' === $field['address_type'] ? 'shipping' : 'billing'; |
247 | 247 | |
248 | - foreach ( $field['fields'] as $address_field ) { |
|
248 | + foreach ( $field['fields'] as $address_field ) { |
|
249 | 249 | |
250 | - if ( ! empty( $address_field['visible'] ) && ! empty( $address_field['required'] ) && '' === trim( $_POST[ $address_type ][ $address_field['name'] ] ) ) { |
|
251 | - wp_send_json_error( __( 'Please fill all required fields.', 'invoicing' ) ); |
|
252 | - } |
|
250 | + if ( ! empty( $address_field['visible'] ) && ! empty( $address_field['required'] ) && '' === trim( $_POST[ $address_type ][ $address_field['name'] ] ) ) { |
|
251 | + wp_send_json_error( __( 'Please fill all required fields.', 'invoicing' ) ); |
|
252 | + } |
|
253 | 253 | |
254 | - } |
|
254 | + } |
|
255 | 255 | |
256 | 256 | } |
257 | 257 | |
@@ -263,31 +263,31 @@ discard block |
||
263 | 263 | // Handle misc fields. |
264 | 264 | if ( isset( $data[ $field['id'] ] ) ) { |
265 | 265 | |
266 | - // Uploads. |
|
267 | - if ( $field['type'] == 'file_upload' ) { |
|
268 | - $max_file_num = empty( $field['max_file_num'] ) ? 1 : absint( $field['max_file_num'] ); |
|
266 | + // Uploads. |
|
267 | + if ( $field['type'] == 'file_upload' ) { |
|
268 | + $max_file_num = empty( $field['max_file_num'] ) ? 1 : absint( $field['max_file_num'] ); |
|
269 | 269 | |
270 | - if ( count( $data[ $field['id'] ] ) > $max_file_num ) { |
|
271 | - wp_send_json_error( __( 'Maximum number of allowed files exceeded.', 'invoicing' ) ); |
|
272 | - } |
|
270 | + if ( count( $data[ $field['id'] ] ) > $max_file_num ) { |
|
271 | + wp_send_json_error( __( 'Maximum number of allowed files exceeded.', 'invoicing' ) ); |
|
272 | + } |
|
273 | 273 | |
274 | - $value = array(); |
|
274 | + $value = array(); |
|
275 | 275 | |
276 | - foreach ( $data[ $field['id'] ] as $url => $name ) { |
|
277 | - $value[] = sprintf( |
|
278 | - '<a href="%s" target="_blank">%s</a>', |
|
279 | - esc_url_raw( $url ), |
|
280 | - esc_html( $name ) |
|
281 | - ); |
|
282 | - } |
|
276 | + foreach ( $data[ $field['id'] ] as $url => $name ) { |
|
277 | + $value[] = sprintf( |
|
278 | + '<a href="%s" target="_blank">%s</a>', |
|
279 | + esc_url_raw( $url ), |
|
280 | + esc_html( $name ) |
|
281 | + ); |
|
282 | + } |
|
283 | 283 | |
284 | - $value = implode( ' | ', $value ); |
|
284 | + $value = implode( ' | ', $value ); |
|
285 | 285 | |
286 | - } else if ( $field['type'] == 'checkbox' ) { |
|
287 | - $value = isset( $data[ $field['id'] ] ) ? __( 'Yes', 'invoicing' ) : __( 'No', 'invoicing' ); |
|
288 | - } else { |
|
289 | - $value = wp_kses_post( $data[ $field['id'] ] ); |
|
290 | - } |
|
286 | + } else if ( $field['type'] == 'checkbox' ) { |
|
287 | + $value = isset( $data[ $field['id'] ] ) ? __( 'Yes', 'invoicing' ) : __( 'No', 'invoicing' ); |
|
288 | + } else { |
|
289 | + $value = wp_kses_post( $data[ $field['id'] ] ); |
|
290 | + } |
|
291 | 291 | |
292 | 292 | $label = $field['id']; |
293 | 293 | |
@@ -295,189 +295,189 @@ discard block |
||
295 | 295 | $label = $field['label']; |
296 | 296 | } |
297 | 297 | |
298 | - if ( ! empty( $field['add_meta'] ) ) { |
|
299 | - $prepared['meta'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
300 | - } |
|
301 | - $prepared['all'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
298 | + if ( ! empty( $field['add_meta'] ) ) { |
|
299 | + $prepared['meta'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
300 | + } |
|
301 | + $prepared['all'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
302 | 302 | |
303 | 303 | } |
304 | 304 | |
305 | - } |
|
305 | + } |
|
306 | 306 | |
307 | - return $prepared; |
|
307 | + return $prepared; |
|
308 | 308 | |
309 | - } |
|
309 | + } |
|
310 | 310 | |
311 | - /** |
|
311 | + /** |
|
312 | 312 | * Retrieves address details. |
313 | 313 | * |
314 | - * @return array |
|
315 | - * @param WPInv_Invoice $invoice |
|
316 | - * @param string $type |
|
314 | + * @return array |
|
315 | + * @param WPInv_Invoice $invoice |
|
316 | + * @param string $type |
|
317 | 317 | */ |
318 | 318 | public function prepare_address_details( $invoice, $type = 'billing' ) { |
319 | 319 | |
320 | - $data = $this->payment_form_submission->get_data(); |
|
321 | - $type = sanitize_key( $type ); |
|
322 | - $address = array(); |
|
323 | - $prepared = array(); |
|
320 | + $data = $this->payment_form_submission->get_data(); |
|
321 | + $type = sanitize_key( $type ); |
|
322 | + $address = array(); |
|
323 | + $prepared = array(); |
|
324 | 324 | |
325 | - if ( ! empty( $data[ $type ] ) ) { |
|
326 | - $address = $data[ $type ]; |
|
327 | - } |
|
325 | + if ( ! empty( $data[ $type ] ) ) { |
|
326 | + $address = $data[ $type ]; |
|
327 | + } |
|
328 | 328 | |
329 | - // Clean address details. |
|
330 | - foreach ( $address as $key => $value ) { |
|
331 | - $key = sanitize_key( $key ); |
|
332 | - $key = str_replace( 'wpinv_', '', $key ); |
|
333 | - $value = wpinv_clean( $value ); |
|
334 | - $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
335 | - } |
|
329 | + // Clean address details. |
|
330 | + foreach ( $address as $key => $value ) { |
|
331 | + $key = sanitize_key( $key ); |
|
332 | + $key = str_replace( 'wpinv_', '', $key ); |
|
333 | + $value = wpinv_clean( $value ); |
|
334 | + $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
335 | + } |
|
336 | 336 | |
337 | - // Filter address details. |
|
338 | - $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
337 | + // Filter address details. |
|
338 | + $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
339 | 339 | |
340 | - // Remove non-whitelisted values. |
|
341 | - return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
340 | + // Remove non-whitelisted values. |
|
341 | + return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
342 | 342 | |
343 | - } |
|
343 | + } |
|
344 | 344 | |
345 | - /** |
|
345 | + /** |
|
346 | 346 | * Prepares the billing details. |
347 | 347 | * |
348 | - * @return array |
|
349 | - * @param WPInv_Invoice $invoice |
|
348 | + * @return array |
|
349 | + * @param WPInv_Invoice $invoice |
|
350 | 350 | */ |
351 | 351 | protected function prepare_billing_info( &$invoice ) { |
352 | 352 | |
353 | - $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
353 | + $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
354 | 354 | |
355 | - // Update the invoice with the billing details. |
|
356 | - $invoice->set_props( $billing_address ); |
|
355 | + // Update the invoice with the billing details. |
|
356 | + $invoice->set_props( $billing_address ); |
|
357 | 357 | |
358 | - } |
|
358 | + } |
|
359 | 359 | |
360 | - /** |
|
360 | + /** |
|
361 | 361 | * Prepares the shipping details. |
362 | 362 | * |
363 | - * @return array |
|
364 | - * @param WPInv_Invoice $invoice |
|
363 | + * @return array |
|
364 | + * @param WPInv_Invoice $invoice |
|
365 | 365 | */ |
366 | 366 | protected function prepare_shipping_info( $invoice ) { |
367 | 367 | |
368 | - $data = $this->payment_form_submission->get_data(); |
|
368 | + $data = $this->payment_form_submission->get_data(); |
|
369 | 369 | |
370 | - if ( empty( $data['same-shipping-address'] ) ) { |
|
371 | - return $this->prepare_address_details( $invoice, 'shipping' ); |
|
372 | - } |
|
370 | + if ( empty( $data['same-shipping-address'] ) ) { |
|
371 | + return $this->prepare_address_details( $invoice, 'shipping' ); |
|
372 | + } |
|
373 | 373 | |
374 | - return $this->prepare_address_details( $invoice, 'billing' ); |
|
374 | + return $this->prepare_address_details( $invoice, 'billing' ); |
|
375 | 375 | |
376 | - } |
|
376 | + } |
|
377 | 377 | |
378 | - /** |
|
379 | - * Confirms the submission is valid and send users to the gateway. |
|
380 | - * |
|
381 | - * @param WPInv_Invoice $invoice |
|
382 | - * @param array $prepared_payment_form_data |
|
383 | - * @param array $shipping |
|
384 | - */ |
|
385 | - protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
378 | + /** |
|
379 | + * Confirms the submission is valid and send users to the gateway. |
|
380 | + * |
|
381 | + * @param WPInv_Invoice $invoice |
|
382 | + * @param array $prepared_payment_form_data |
|
383 | + * @param array $shipping |
|
384 | + */ |
|
385 | + protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
386 | 386 | |
387 | - // Ensure the invoice exists. |
|
387 | + // Ensure the invoice exists. |
|
388 | 388 | if ( ! $invoice->exists() ) { |
389 | 389 | wp_send_json_error( __( 'An error occured while saving your invoice. Please try again.', 'invoicing' ) ); |
390 | 390 | } |
391 | 391 | |
392 | - // Save payment form data. |
|
393 | - $prepared_payment_form_data = apply_filters( 'getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice ); |
|
392 | + // Save payment form data. |
|
393 | + $prepared_payment_form_data = apply_filters( 'getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice ); |
|
394 | 394 | delete_post_meta( $invoice->get_id(), 'payment_form_data' ); |
395 | - delete_post_meta( $invoice->get_id(), 'additional_meta_data' ); |
|
396 | - if ( ! empty( $prepared_payment_form_data ) ) { |
|
395 | + delete_post_meta( $invoice->get_id(), 'additional_meta_data' ); |
|
396 | + if ( ! empty( $prepared_payment_form_data ) ) { |
|
397 | 397 | |
398 | - if ( ! empty( $prepared_payment_form_data['all'] ) ) { |
|
399 | - update_post_meta( $invoice->get_id(), 'payment_form_data', $prepared_payment_form_data['all'] ); |
|
400 | - } |
|
398 | + if ( ! empty( $prepared_payment_form_data['all'] ) ) { |
|
399 | + update_post_meta( $invoice->get_id(), 'payment_form_data', $prepared_payment_form_data['all'] ); |
|
400 | + } |
|
401 | 401 | |
402 | - if ( ! empty( $prepared_payment_form_data['meta'] ) ) { |
|
403 | - update_post_meta( $invoice->get_id(), 'additional_meta_data', $prepared_payment_form_data['meta'] ); |
|
404 | - } |
|
402 | + if ( ! empty( $prepared_payment_form_data['meta'] ) ) { |
|
403 | + update_post_meta( $invoice->get_id(), 'additional_meta_data', $prepared_payment_form_data['meta'] ); |
|
404 | + } |
|
405 | 405 | |
406 | - } |
|
406 | + } |
|
407 | 407 | |
408 | - // Save payment form data. |
|
408 | + // Save payment form data. |
|
409 | 409 | if ( ! empty( $shipping ) ) { |
410 | 410 | update_post_meta( $invoice->get_id(), 'shipping_address', $shipping ); |
411 | - } |
|
411 | + } |
|
412 | 412 | |
413 | - // Backwards compatibility. |
|
413 | + // Backwards compatibility. |
|
414 | 414 | add_filter( 'wp_redirect', array( $this, 'send_redirect_response' ) ); |
415 | 415 | |
416 | - $this->process_payment( $invoice ); |
|
416 | + $this->process_payment( $invoice ); |
|
417 | 417 | |
418 | 418 | // If we are here, there was an error. |
419 | - wpinv_send_back_to_checkout( $invoice ); |
|
419 | + wpinv_send_back_to_checkout( $invoice ); |
|
420 | 420 | |
421 | - } |
|
421 | + } |
|
422 | 422 | |
423 | - /** |
|
424 | - * Processes the actual payment. |
|
425 | - * |
|
426 | - * @param WPInv_Invoice $invoice |
|
427 | - */ |
|
428 | - protected function process_payment( $invoice ) { |
|
423 | + /** |
|
424 | + * Processes the actual payment. |
|
425 | + * |
|
426 | + * @param WPInv_Invoice $invoice |
|
427 | + */ |
|
428 | + protected function process_payment( $invoice ) { |
|
429 | 429 | |
430 | - // Clear any checkout errors. |
|
431 | - wpinv_clear_errors(); |
|
430 | + // Clear any checkout errors. |
|
431 | + wpinv_clear_errors(); |
|
432 | 432 | |
433 | - // No need to send free invoices to the gateway. |
|
434 | - if ( $invoice->is_free() ) { |
|
435 | - $this->process_free_payment( $invoice ); |
|
436 | - } |
|
433 | + // No need to send free invoices to the gateway. |
|
434 | + if ( $invoice->is_free() ) { |
|
435 | + $this->process_free_payment( $invoice ); |
|
436 | + } |
|
437 | 437 | |
438 | - $submission = $this->payment_form_submission; |
|
438 | + $submission = $this->payment_form_submission; |
|
439 | 439 | |
440 | - // Fires before sending to the gateway. |
|
441 | - do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
440 | + // Fires before sending to the gateway. |
|
441 | + do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
442 | 442 | |
443 | - // Allow the sumission data to be modified before it is sent to the gateway. |
|
444 | - $submission_data = $submission->get_data(); |
|
445 | - $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
446 | - $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
443 | + // Allow the sumission data to be modified before it is sent to the gateway. |
|
444 | + $submission_data = $submission->get_data(); |
|
445 | + $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
446 | + $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
447 | 447 | |
448 | - // Validate the currency. |
|
449 | - if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
450 | - wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
451 | - } |
|
448 | + // Validate the currency. |
|
449 | + if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
450 | + wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
451 | + } |
|
452 | 452 | |
453 | - // Check to see if we have any errors. |
|
454 | - if ( wpinv_get_errors() ) { |
|
455 | - wpinv_send_back_to_checkout( $invoice ); |
|
456 | - } |
|
453 | + // Check to see if we have any errors. |
|
454 | + if ( wpinv_get_errors() ) { |
|
455 | + wpinv_send_back_to_checkout( $invoice ); |
|
456 | + } |
|
457 | 457 | |
458 | - // Send info to the gateway for payment processing |
|
459 | - do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
458 | + // Send info to the gateway for payment processing |
|
459 | + do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
460 | 460 | |
461 | - // Backwards compatibility. |
|
462 | - wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
461 | + // Backwards compatibility. |
|
462 | + wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
463 | 463 | |
464 | - } |
|
464 | + } |
|
465 | 465 | |
466 | - /** |
|
467 | - * Marks the invoice as paid in case the checkout is free. |
|
468 | - * |
|
469 | - * @param WPInv_Invoice $invoice |
|
470 | - */ |
|
471 | - protected function process_free_payment( $invoice ) { |
|
466 | + /** |
|
467 | + * Marks the invoice as paid in case the checkout is free. |
|
468 | + * |
|
469 | + * @param WPInv_Invoice $invoice |
|
470 | + */ |
|
471 | + protected function process_free_payment( $invoice ) { |
|
472 | 472 | |
473 | - $invoice->set_gateway( 'none' ); |
|
474 | - $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
475 | - $invoice->mark_paid(); |
|
476 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
473 | + $invoice->set_gateway( 'none' ); |
|
474 | + $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
475 | + $invoice->mark_paid(); |
|
476 | + wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
477 | 477 | |
478 | - } |
|
478 | + } |
|
479 | 479 | |
480 | - /** |
|
480 | + /** |
|
481 | 481 | * Sends a redrect response to payment details. |
482 | 482 | * |
483 | 483 | */ |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Main Checkout Class. |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @param GetPaid_Payment_Form_Submission $submission |
24 | 24 | */ |
25 | - public function __construct( $submission ) { |
|
25 | + public function __construct($submission) { |
|
26 | 26 | $this->payment_form_submission = $submission; |
27 | 27 | } |
28 | 28 | |
@@ -38,22 +38,22 @@ discard block |
||
38 | 38 | // Prepare the invoice. |
39 | 39 | $items = $this->get_submission_items(); |
40 | 40 | $invoice = $this->get_submission_invoice(); |
41 | - $invoice = $this->process_submission_invoice( $invoice, $items ); |
|
41 | + $invoice = $this->process_submission_invoice($invoice, $items); |
|
42 | 42 | $prepared = $this->prepare_submission_data_for_saving(); |
43 | 43 | |
44 | - $this->prepare_billing_info( $invoice ); |
|
44 | + $this->prepare_billing_info($invoice); |
|
45 | 45 | |
46 | - $shipping = $this->prepare_shipping_info( $invoice ); |
|
46 | + $shipping = $this->prepare_shipping_info($invoice); |
|
47 | 47 | |
48 | 48 | // Save the invoice. |
49 | - $invoice->set_is_viewed( true ); |
|
49 | + $invoice->set_is_viewed(true); |
|
50 | 50 | $invoice->recalculate_total(); |
51 | 51 | $invoice->save(); |
52 | 52 | |
53 | - do_action( 'getpaid_checkout_invoice_updated', $invoice ); |
|
53 | + do_action('getpaid_checkout_invoice_updated', $invoice); |
|
54 | 54 | |
55 | 55 | // Send to the gateway. |
56 | - $this->post_process_submission( $invoice, $prepared, $shipping ); |
|
56 | + $this->post_process_submission($invoice, $prepared, $shipping); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
@@ -66,34 +66,34 @@ discard block |
||
66 | 66 | $data = $submission->get_data(); |
67 | 67 | |
68 | 68 | // Do we have an error? |
69 | - if ( ! empty( $submission->last_error ) ) { |
|
70 | - wp_send_json_error( $submission->last_error ); |
|
69 | + if (!empty($submission->last_error)) { |
|
70 | + wp_send_json_error($submission->last_error); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | // We need a billing email. |
74 | - if ( ! $submission->has_billing_email() ) { |
|
75 | - wp_send_json_error( __( 'Provide a valid billing email.', 'invoicing' ) ); |
|
74 | + if (!$submission->has_billing_email()) { |
|
75 | + wp_send_json_error(__('Provide a valid billing email.', 'invoicing')); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | // Non-recurring gateways should not be allowed to process recurring invoices. |
79 | - if ( $submission->should_collect_payment_details() && $submission->has_recurring && ! wpinv_gateway_support_subscription( $data['wpi-gateway'] ) ) { |
|
80 | - wp_send_json_error( __( 'The selected payment gateway does not support subscription payments.', 'invoicing' ) ); |
|
79 | + if ($submission->should_collect_payment_details() && $submission->has_recurring && !wpinv_gateway_support_subscription($data['wpi-gateway'])) { |
|
80 | + wp_send_json_error(__('The selected payment gateway does not support subscription payments.', 'invoicing')); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | // Ensure the gateway is active. |
84 | - if ( $submission->should_collect_payment_details() && ! wpinv_is_gateway_active( $data['wpi-gateway'] ) ) { |
|
85 | - wpinv_set_error( 'invalid_gateway', __( 'The selected payment gateway is not active', 'invoicing' ) ); |
|
84 | + if ($submission->should_collect_payment_details() && !wpinv_is_gateway_active($data['wpi-gateway'])) { |
|
85 | + wpinv_set_error('invalid_gateway', __('The selected payment gateway is not active', 'invoicing')); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | // Clear any existing errors. |
89 | 89 | wpinv_clear_errors(); |
90 | 90 | |
91 | 91 | // Allow themes and plugins to hook to errors |
92 | - do_action( 'getpaid_checkout_error_checks', $submission ); |
|
92 | + do_action('getpaid_checkout_error_checks', $submission); |
|
93 | 93 | |
94 | 94 | // Do we have any errors? |
95 | - if ( wpinv_get_errors() ) { |
|
96 | - wp_send_json_error( getpaid_get_errors_html() ); |
|
95 | + if (wpinv_get_errors()) { |
|
96 | + wp_send_json_error(getpaid_get_errors_html()); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | } |
@@ -108,8 +108,8 @@ discard block |
||
108 | 108 | $items = $this->payment_form_submission->get_items(); |
109 | 109 | |
110 | 110 | // Ensure that we have items. |
111 | - if ( empty( $items ) && ! $this->payment_form_submission->has_fees() ) { |
|
112 | - wp_send_json_error( __( 'Please provide at least one item or amount.', 'invoicing' ) ); |
|
111 | + if (empty($items) && !$this->payment_form_submission->has_fees()) { |
|
112 | + wp_send_json_error(__('Please provide at least one item or amount.', 'invoicing')); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | return $items; |
@@ -123,17 +123,17 @@ discard block |
||
123 | 123 | protected function get_submission_invoice() { |
124 | 124 | $submission = $this->payment_form_submission; |
125 | 125 | |
126 | - if ( ! $submission->has_invoice() ) { |
|
126 | + if (!$submission->has_invoice()) { |
|
127 | 127 | $invoice = new WPInv_Invoice(); |
128 | - $invoice->set_created_via( 'payment_form' ); |
|
128 | + $invoice->set_created_via('payment_form'); |
|
129 | 129 | return $invoice; |
130 | 130 | } |
131 | 131 | |
132 | 132 | $invoice = $submission->get_invoice(); |
133 | 133 | |
134 | 134 | // Make sure that it is neither paid or refunded. |
135 | - if ( $invoice->is_paid() || $invoice->is_refunded() ) { |
|
136 | - wp_send_json_error( __( 'This invoice has already been paid for.', 'invoicing' ) ); |
|
135 | + if ($invoice->is_paid() || $invoice->is_refunded()) { |
|
136 | + wp_send_json_error(__('This invoice has already been paid for.', 'invoicing')); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | return $invoice; |
@@ -146,29 +146,29 @@ discard block |
||
146 | 146 | * @param GetPaid_Form_Item[] $items |
147 | 147 | * @return WPInv_Invoice |
148 | 148 | */ |
149 | - protected function process_submission_invoice( $invoice, $items ) { |
|
149 | + protected function process_submission_invoice($invoice, $items) { |
|
150 | 150 | |
151 | 151 | $submission = $this->payment_form_submission; |
152 | 152 | |
153 | 153 | // Set-up the invoice details. |
154 | - $invoice->set_email( sanitize_email( $submission->get_billing_email() ) ); |
|
155 | - $invoice->set_user_id( $this->get_submission_customer() ); |
|
156 | - $invoice->set_payment_form( absint( $submission->get_payment_form()->get_id() ) ); |
|
157 | - $invoice->set_items( $items ); |
|
158 | - $invoice->set_fees( $submission->get_fees() ); |
|
159 | - $invoice->set_taxes( $submission->get_taxes() ); |
|
160 | - $invoice->set_discounts( $submission->get_discounts() ); |
|
161 | - $invoice->set_gateway( $submission->get_field( 'wpi-gateway' ) ); |
|
162 | - $invoice->set_currency( $submission->get_currency() ); |
|
163 | - |
|
164 | - $address_confirmed = $submission->get_field( 'confirm-address' ); |
|
165 | - $invoice->set_address_confirmed( ! empty( $address_confirmed ) ); |
|
166 | - |
|
167 | - if ( $submission->has_discount_code() ) { |
|
168 | - $invoice->set_discount_code( $submission->get_discount_code() ); |
|
154 | + $invoice->set_email(sanitize_email($submission->get_billing_email())); |
|
155 | + $invoice->set_user_id($this->get_submission_customer()); |
|
156 | + $invoice->set_payment_form(absint($submission->get_payment_form()->get_id())); |
|
157 | + $invoice->set_items($items); |
|
158 | + $invoice->set_fees($submission->get_fees()); |
|
159 | + $invoice->set_taxes($submission->get_taxes()); |
|
160 | + $invoice->set_discounts($submission->get_discounts()); |
|
161 | + $invoice->set_gateway($submission->get_field('wpi-gateway')); |
|
162 | + $invoice->set_currency($submission->get_currency()); |
|
163 | + |
|
164 | + $address_confirmed = $submission->get_field('confirm-address'); |
|
165 | + $invoice->set_address_confirmed(!empty($address_confirmed)); |
|
166 | + |
|
167 | + if ($submission->has_discount_code()) { |
|
168 | + $invoice->set_discount_code($submission->get_discount_code()); |
|
169 | 169 | } |
170 | 170 | |
171 | - getpaid_maybe_add_default_address( $invoice ); |
|
171 | + getpaid_maybe_add_default_address($invoice); |
|
172 | 172 | return $invoice; |
173 | 173 | } |
174 | 174 | |
@@ -181,33 +181,33 @@ discard block |
||
181 | 181 | $submission = $this->payment_form_submission; |
182 | 182 | |
183 | 183 | // If this is an existing invoice... |
184 | - if ( $submission->has_invoice() ) { |
|
184 | + if ($submission->has_invoice()) { |
|
185 | 185 | return $submission->get_invoice()->get_user_id(); |
186 | 186 | } |
187 | 187 | |
188 | 188 | // (Maybe) create the user. |
189 | 189 | $user = get_current_user_id(); |
190 | 190 | |
191 | - if ( empty( $user ) ) { |
|
192 | - $user = get_user_by( 'email', $submission->get_billing_email() ); |
|
191 | + if (empty($user)) { |
|
192 | + $user = get_user_by('email', $submission->get_billing_email()); |
|
193 | 193 | } |
194 | 194 | |
195 | - if ( empty( $user ) ) { |
|
196 | - $user = wpinv_create_user( $submission->get_billing_email() ); |
|
195 | + if (empty($user)) { |
|
196 | + $user = wpinv_create_user($submission->get_billing_email()); |
|
197 | 197 | |
198 | 198 | // (Maybe) send new user notification. |
199 | - $should_send_notification = wpinv_get_option( 'disable_new_user_emails' ); |
|
200 | - if ( ! empty( $user ) && is_numeric( $user ) && apply_filters( 'getpaid_send_new_user_notification', empty( $should_send_notification ), $user ) ) { |
|
201 | - wp_send_new_user_notifications( $user, 'user' ); |
|
199 | + $should_send_notification = wpinv_get_option('disable_new_user_emails'); |
|
200 | + if (!empty($user) && is_numeric($user) && apply_filters('getpaid_send_new_user_notification', empty($should_send_notification), $user)) { |
|
201 | + wp_send_new_user_notifications($user, 'user'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | } |
205 | 205 | |
206 | - if ( is_wp_error( $user ) ) { |
|
207 | - wp_send_json_error( $user->get_error_message() ); |
|
206 | + if (is_wp_error($user)) { |
|
207 | + wp_send_json_error($user->get_error_message()); |
|
208 | 208 | } |
209 | 209 | |
210 | - if ( is_numeric( $user ) ) { |
|
210 | + if (is_numeric($user)) { |
|
211 | 211 | return $user; |
212 | 212 | } |
213 | 213 | |
@@ -231,24 +231,24 @@ discard block |
||
231 | 231 | ); |
232 | 232 | |
233 | 233 | // Raw submission details. |
234 | - $data = $submission->get_data(); |
|
234 | + $data = $submission->get_data(); |
|
235 | 235 | |
236 | 236 | // Loop through the submitted details. |
237 | - foreach ( $submission->get_payment_form()->get_elements() as $field ) { |
|
237 | + foreach ($submission->get_payment_form()->get_elements() as $field) { |
|
238 | 238 | |
239 | 239 | // Skip premade fields. |
240 | - if ( ! empty( $field['premade'] ) ) { |
|
240 | + if (!empty($field['premade'])) { |
|
241 | 241 | continue; |
242 | 242 | } |
243 | 243 | |
244 | 244 | // Ensure address is provided. |
245 | - if ( $field['type'] == 'address' ) { |
|
246 | - $address_type = isset( $field['address_type'] ) && 'shipping' === $field['address_type'] ? 'shipping' : 'billing'; |
|
245 | + if ($field['type'] == 'address') { |
|
246 | + $address_type = isset($field['address_type']) && 'shipping' === $field['address_type'] ? 'shipping' : 'billing'; |
|
247 | 247 | |
248 | - foreach ( $field['fields'] as $address_field ) { |
|
248 | + foreach ($field['fields'] as $address_field) { |
|
249 | 249 | |
250 | - if ( ! empty( $address_field['visible'] ) && ! empty( $address_field['required'] ) && '' === trim( $_POST[ $address_type ][ $address_field['name'] ] ) ) { |
|
251 | - wp_send_json_error( __( 'Please fill all required fields.', 'invoicing' ) ); |
|
250 | + if (!empty($address_field['visible']) && !empty($address_field['required']) && '' === trim($_POST[$address_type][$address_field['name']])) { |
|
251 | + wp_send_json_error(__('Please fill all required fields.', 'invoicing')); |
|
252 | 252 | } |
253 | 253 | |
254 | 254 | } |
@@ -256,49 +256,49 @@ discard block |
||
256 | 256 | } |
257 | 257 | |
258 | 258 | // If it is required and not set, abort. |
259 | - if ( ! $submission->is_required_field_set( $field ) ) { |
|
260 | - wp_send_json_error( __( 'Please fill all required fields.', 'invoicing' ) ); |
|
259 | + if (!$submission->is_required_field_set($field)) { |
|
260 | + wp_send_json_error(__('Please fill all required fields.', 'invoicing')); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | // Handle misc fields. |
264 | - if ( isset( $data[ $field['id'] ] ) ) { |
|
264 | + if (isset($data[$field['id']])) { |
|
265 | 265 | |
266 | 266 | // Uploads. |
267 | - if ( $field['type'] == 'file_upload' ) { |
|
268 | - $max_file_num = empty( $field['max_file_num'] ) ? 1 : absint( $field['max_file_num'] ); |
|
267 | + if ($field['type'] == 'file_upload') { |
|
268 | + $max_file_num = empty($field['max_file_num']) ? 1 : absint($field['max_file_num']); |
|
269 | 269 | |
270 | - if ( count( $data[ $field['id'] ] ) > $max_file_num ) { |
|
271 | - wp_send_json_error( __( 'Maximum number of allowed files exceeded.', 'invoicing' ) ); |
|
270 | + if (count($data[$field['id']]) > $max_file_num) { |
|
271 | + wp_send_json_error(__('Maximum number of allowed files exceeded.', 'invoicing')); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | $value = array(); |
275 | 275 | |
276 | - foreach ( $data[ $field['id'] ] as $url => $name ) { |
|
276 | + foreach ($data[$field['id']] as $url => $name) { |
|
277 | 277 | $value[] = sprintf( |
278 | 278 | '<a href="%s" target="_blank">%s</a>', |
279 | - esc_url_raw( $url ), |
|
280 | - esc_html( $name ) |
|
279 | + esc_url_raw($url), |
|
280 | + esc_html($name) |
|
281 | 281 | ); |
282 | 282 | } |
283 | 283 | |
284 | - $value = implode( ' | ', $value ); |
|
284 | + $value = implode(' | ', $value); |
|
285 | 285 | |
286 | - } else if ( $field['type'] == 'checkbox' ) { |
|
287 | - $value = isset( $data[ $field['id'] ] ) ? __( 'Yes', 'invoicing' ) : __( 'No', 'invoicing' ); |
|
286 | + } else if ($field['type'] == 'checkbox') { |
|
287 | + $value = isset($data[$field['id']]) ? __('Yes', 'invoicing') : __('No', 'invoicing'); |
|
288 | 288 | } else { |
289 | - $value = wp_kses_post( $data[ $field['id'] ] ); |
|
289 | + $value = wp_kses_post($data[$field['id']]); |
|
290 | 290 | } |
291 | 291 | |
292 | 292 | $label = $field['id']; |
293 | 293 | |
294 | - if ( isset( $field['label'] ) ) { |
|
294 | + if (isset($field['label'])) { |
|
295 | 295 | $label = $field['label']; |
296 | 296 | } |
297 | 297 | |
298 | - if ( ! empty( $field['add_meta'] ) ) { |
|
299 | - $prepared['meta'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
298 | + if (!empty($field['add_meta'])) { |
|
299 | + $prepared['meta'][wpinv_clean($label)] = wp_kses_post_deep($value); |
|
300 | 300 | } |
301 | - $prepared['all'][ wpinv_clean( $label ) ] = wp_kses_post_deep( $value ); |
|
301 | + $prepared['all'][wpinv_clean($label)] = wp_kses_post_deep($value); |
|
302 | 302 | |
303 | 303 | } |
304 | 304 | |
@@ -315,30 +315,30 @@ discard block |
||
315 | 315 | * @param WPInv_Invoice $invoice |
316 | 316 | * @param string $type |
317 | 317 | */ |
318 | - public function prepare_address_details( $invoice, $type = 'billing' ) { |
|
318 | + public function prepare_address_details($invoice, $type = 'billing') { |
|
319 | 319 | |
320 | 320 | $data = $this->payment_form_submission->get_data(); |
321 | - $type = sanitize_key( $type ); |
|
321 | + $type = sanitize_key($type); |
|
322 | 322 | $address = array(); |
323 | 323 | $prepared = array(); |
324 | 324 | |
325 | - if ( ! empty( $data[ $type ] ) ) { |
|
326 | - $address = $data[ $type ]; |
|
325 | + if (!empty($data[$type])) { |
|
326 | + $address = $data[$type]; |
|
327 | 327 | } |
328 | 328 | |
329 | 329 | // Clean address details. |
330 | - foreach ( $address as $key => $value ) { |
|
331 | - $key = sanitize_key( $key ); |
|
332 | - $key = str_replace( 'wpinv_', '', $key ); |
|
333 | - $value = wpinv_clean( $value ); |
|
334 | - $prepared[ $key] = apply_filters( "getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice ); |
|
330 | + foreach ($address as $key => $value) { |
|
331 | + $key = sanitize_key($key); |
|
332 | + $key = str_replace('wpinv_', '', $key); |
|
333 | + $value = wpinv_clean($value); |
|
334 | + $prepared[$key] = apply_filters("getpaid_checkout_{$type}_address_$key", $value, $this->payment_form_submission, $invoice); |
|
335 | 335 | } |
336 | 336 | |
337 | 337 | // Filter address details. |
338 | - $prepared = apply_filters( "getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice ); |
|
338 | + $prepared = apply_filters("getpaid_checkout_{$type}_address", $prepared, $this->payment_form_submission, $invoice); |
|
339 | 339 | |
340 | 340 | // Remove non-whitelisted values. |
341 | - return array_filter( $prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY ); |
|
341 | + return array_filter($prepared, 'getpaid_is_address_field_whitelisted', ARRAY_FILTER_USE_KEY); |
|
342 | 342 | |
343 | 343 | } |
344 | 344 | |
@@ -348,12 +348,12 @@ discard block |
||
348 | 348 | * @return array |
349 | 349 | * @param WPInv_Invoice $invoice |
350 | 350 | */ |
351 | - protected function prepare_billing_info( &$invoice ) { |
|
351 | + protected function prepare_billing_info(&$invoice) { |
|
352 | 352 | |
353 | - $billing_address = $this->prepare_address_details( $invoice, 'billing' ); |
|
353 | + $billing_address = $this->prepare_address_details($invoice, 'billing'); |
|
354 | 354 | |
355 | 355 | // Update the invoice with the billing details. |
356 | - $invoice->set_props( $billing_address ); |
|
356 | + $invoice->set_props($billing_address); |
|
357 | 357 | |
358 | 358 | } |
359 | 359 | |
@@ -363,15 +363,15 @@ discard block |
||
363 | 363 | * @return array |
364 | 364 | * @param WPInv_Invoice $invoice |
365 | 365 | */ |
366 | - protected function prepare_shipping_info( $invoice ) { |
|
366 | + protected function prepare_shipping_info($invoice) { |
|
367 | 367 | |
368 | 368 | $data = $this->payment_form_submission->get_data(); |
369 | 369 | |
370 | - if ( empty( $data['same-shipping-address'] ) ) { |
|
371 | - return $this->prepare_address_details( $invoice, 'shipping' ); |
|
370 | + if (empty($data['same-shipping-address'])) { |
|
371 | + return $this->prepare_address_details($invoice, 'shipping'); |
|
372 | 372 | } |
373 | 373 | |
374 | - return $this->prepare_address_details( $invoice, 'billing' ); |
|
374 | + return $this->prepare_address_details($invoice, 'billing'); |
|
375 | 375 | |
376 | 376 | } |
377 | 377 | |
@@ -382,41 +382,41 @@ discard block |
||
382 | 382 | * @param array $prepared_payment_form_data |
383 | 383 | * @param array $shipping |
384 | 384 | */ |
385 | - protected function post_process_submission( $invoice, $prepared_payment_form_data, $shipping ) { |
|
385 | + protected function post_process_submission($invoice, $prepared_payment_form_data, $shipping) { |
|
386 | 386 | |
387 | 387 | // Ensure the invoice exists. |
388 | - if ( ! $invoice->exists() ) { |
|
389 | - wp_send_json_error( __( 'An error occured while saving your invoice. Please try again.', 'invoicing' ) ); |
|
388 | + if (!$invoice->exists()) { |
|
389 | + wp_send_json_error(__('An error occured while saving your invoice. Please try again.', 'invoicing')); |
|
390 | 390 | } |
391 | 391 | |
392 | 392 | // Save payment form data. |
393 | - $prepared_payment_form_data = apply_filters( 'getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice ); |
|
394 | - delete_post_meta( $invoice->get_id(), 'payment_form_data' ); |
|
395 | - delete_post_meta( $invoice->get_id(), 'additional_meta_data' ); |
|
396 | - if ( ! empty( $prepared_payment_form_data ) ) { |
|
393 | + $prepared_payment_form_data = apply_filters('getpaid_prepared_payment_form_data', $prepared_payment_form_data, $invoice); |
|
394 | + delete_post_meta($invoice->get_id(), 'payment_form_data'); |
|
395 | + delete_post_meta($invoice->get_id(), 'additional_meta_data'); |
|
396 | + if (!empty($prepared_payment_form_data)) { |
|
397 | 397 | |
398 | - if ( ! empty( $prepared_payment_form_data['all'] ) ) { |
|
399 | - update_post_meta( $invoice->get_id(), 'payment_form_data', $prepared_payment_form_data['all'] ); |
|
398 | + if (!empty($prepared_payment_form_data['all'])) { |
|
399 | + update_post_meta($invoice->get_id(), 'payment_form_data', $prepared_payment_form_data['all']); |
|
400 | 400 | } |
401 | 401 | |
402 | - if ( ! empty( $prepared_payment_form_data['meta'] ) ) { |
|
403 | - update_post_meta( $invoice->get_id(), 'additional_meta_data', $prepared_payment_form_data['meta'] ); |
|
402 | + if (!empty($prepared_payment_form_data['meta'])) { |
|
403 | + update_post_meta($invoice->get_id(), 'additional_meta_data', $prepared_payment_form_data['meta']); |
|
404 | 404 | } |
405 | 405 | |
406 | 406 | } |
407 | 407 | |
408 | 408 | // Save payment form data. |
409 | - if ( ! empty( $shipping ) ) { |
|
410 | - update_post_meta( $invoice->get_id(), 'shipping_address', $shipping ); |
|
409 | + if (!empty($shipping)) { |
|
410 | + update_post_meta($invoice->get_id(), 'shipping_address', $shipping); |
|
411 | 411 | } |
412 | 412 | |
413 | 413 | // Backwards compatibility. |
414 | - add_filter( 'wp_redirect', array( $this, 'send_redirect_response' ) ); |
|
414 | + add_filter('wp_redirect', array($this, 'send_redirect_response')); |
|
415 | 415 | |
416 | - $this->process_payment( $invoice ); |
|
416 | + $this->process_payment($invoice); |
|
417 | 417 | |
418 | 418 | // If we are here, there was an error. |
419 | - wpinv_send_back_to_checkout( $invoice ); |
|
419 | + wpinv_send_back_to_checkout($invoice); |
|
420 | 420 | |
421 | 421 | } |
422 | 422 | |
@@ -425,41 +425,41 @@ discard block |
||
425 | 425 | * |
426 | 426 | * @param WPInv_Invoice $invoice |
427 | 427 | */ |
428 | - protected function process_payment( $invoice ) { |
|
428 | + protected function process_payment($invoice) { |
|
429 | 429 | |
430 | 430 | // Clear any checkout errors. |
431 | 431 | wpinv_clear_errors(); |
432 | 432 | |
433 | 433 | // No need to send free invoices to the gateway. |
434 | - if ( $invoice->is_free() ) { |
|
435 | - $this->process_free_payment( $invoice ); |
|
434 | + if ($invoice->is_free()) { |
|
435 | + $this->process_free_payment($invoice); |
|
436 | 436 | } |
437 | 437 | |
438 | 438 | $submission = $this->payment_form_submission; |
439 | 439 | |
440 | 440 | // Fires before sending to the gateway. |
441 | - do_action( 'getpaid_checkout_before_gateway', $invoice, $submission ); |
|
441 | + do_action('getpaid_checkout_before_gateway', $invoice, $submission); |
|
442 | 442 | |
443 | 443 | // Allow the sumission data to be modified before it is sent to the gateway. |
444 | 444 | $submission_data = $submission->get_data(); |
445 | - $submission_gateway = apply_filters( 'getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice ); |
|
446 | - $submission_data = apply_filters( 'getpaid_gateway_submission_data', $submission_data, $submission, $invoice ); |
|
445 | + $submission_gateway = apply_filters('getpaid_gateway_submission_gateway', $invoice->get_gateway(), $submission, $invoice); |
|
446 | + $submission_data = apply_filters('getpaid_gateway_submission_data', $submission_data, $submission, $invoice); |
|
447 | 447 | |
448 | 448 | // Validate the currency. |
449 | - if ( ! apply_filters( "getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency() ) ) { |
|
450 | - wpinv_set_error( 'invalid_currency', __( 'The chosen payment gateway does not support this currency', 'invoicing' ) ); |
|
449 | + if (!apply_filters("getpaid_gateway_{$submission_gateway}_is_valid_for_currency", true, $invoice->get_currency())) { |
|
450 | + wpinv_set_error('invalid_currency', __('The chosen payment gateway does not support this currency', 'invoicing')); |
|
451 | 451 | } |
452 | 452 | |
453 | 453 | // Check to see if we have any errors. |
454 | - if ( wpinv_get_errors() ) { |
|
455 | - wpinv_send_back_to_checkout( $invoice ); |
|
454 | + if (wpinv_get_errors()) { |
|
455 | + wpinv_send_back_to_checkout($invoice); |
|
456 | 456 | } |
457 | 457 | |
458 | 458 | // Send info to the gateway for payment processing |
459 | - do_action( "getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission ); |
|
459 | + do_action("getpaid_gateway_$submission_gateway", $invoice, $submission_data, $submission); |
|
460 | 460 | |
461 | 461 | // Backwards compatibility. |
462 | - wpinv_send_to_gateway( $submission_gateway, $invoice ); |
|
462 | + wpinv_send_to_gateway($submission_gateway, $invoice); |
|
463 | 463 | |
464 | 464 | } |
465 | 465 | |
@@ -468,12 +468,12 @@ discard block |
||
468 | 468 | * |
469 | 469 | * @param WPInv_Invoice $invoice |
470 | 470 | */ |
471 | - protected function process_free_payment( $invoice ) { |
|
471 | + protected function process_free_payment($invoice) { |
|
472 | 472 | |
473 | - $invoice->set_gateway( 'none' ); |
|
474 | - $invoice->add_note( __( "This is a free invoice and won't be sent to the payment gateway", 'invoicing' ), false, false, true ); |
|
473 | + $invoice->set_gateway('none'); |
|
474 | + $invoice->add_note(__("This is a free invoice and won't be sent to the payment gateway", 'invoicing'), false, false, true); |
|
475 | 475 | $invoice->mark_paid(); |
476 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
476 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
477 | 477 | |
478 | 478 | } |
479 | 479 | |
@@ -481,9 +481,9 @@ discard block |
||
481 | 481 | * Sends a redrect response to payment details. |
482 | 482 | * |
483 | 483 | */ |
484 | - public function send_redirect_response( $url ) { |
|
485 | - $url = urlencode( $url ); |
|
486 | - wp_send_json_success( $url ); |
|
484 | + public function send_redirect_response($url) { |
|
485 | + $url = urlencode($url); |
|
486 | + wp_send_json_success($url); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | } |
@@ -8,24 +8,24 @@ discard block |
||
8 | 8 | * @var GetPaid_Payment_Form $form The current payment form |
9 | 9 | */ |
10 | 10 | |
11 | -defined( 'ABSPATH' ) || exit; |
|
11 | +defined('ABSPATH') || exit; |
|
12 | 12 | |
13 | -if ( ! getpaid_has_published_discount() ) { |
|
13 | +if (!getpaid_has_published_discount()) { |
|
14 | 14 | return; |
15 | 15 | } |
16 | 16 | |
17 | -$placeholder = esc_attr( $input_label ); |
|
18 | -$label = esc_html( $button_label ); |
|
17 | +$placeholder = esc_attr($input_label); |
|
18 | +$label = esc_html($button_label); |
|
19 | 19 | |
20 | -if ( ! empty( $description ) ) { |
|
20 | +if (!empty($description)) { |
|
21 | 21 | $description = "<small class='form-text text-muted'>$description</small>"; |
22 | 22 | } else { |
23 | 23 | $description = ''; |
24 | 24 | } |
25 | 25 | |
26 | 26 | $discount_code = ''; |
27 | -if ( ! empty( $form->invoice ) ) { |
|
28 | - $discount_code = esc_attr( $form->invoice->get_discount_code() ); |
|
27 | +if (!empty($form->invoice)) { |
|
28 | + $discount_code = esc_attr($form->invoice->get_discount_code()); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | ?> |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | <input name="discount" placeholder="<?php echo $placeholder; ?>" value="<?php echo $discount_code; ?>" class="form-control mr-2 mb-2 getpaid-discount-field-input" style="flex: 1;" type="text"> |
37 | 37 | <a href="#" class="btn btn-secondary submit-button mb-2 getpaid-discount-button"><?php echo $label; ?></a> |
38 | 38 | </div> |
39 | - <?php echo wp_kses_post( $description ); ?> |
|
39 | + <?php echo wp_kses_post($description); ?> |
|
40 | 40 | <div class="getpaid-custom-payment-form-errors alert alert-danger d-none"></div> |
41 | 41 | </div> |
42 | 42 | </div> |
@@ -7,11 +7,11 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$tag = isset( $element['level'] ) ? trim( $element['level'] ) : 'h3'; |
|
13 | -$text = isset( $element['text'] ) ? wp_kses_post( trim( $element['text'] ) ) : ''; |
|
12 | +$tag = isset($element['level']) ? trim($element['level']) : 'h3'; |
|
13 | +$text = isset($element['text']) ? wp_kses_post(trim($element['text'])) : ''; |
|
14 | 14 | |
15 | -if ( ! empty( $text ) ) { |
|
15 | +if (!empty($text)) { |
|
16 | 16 | echo "<$tag>$text</$tag>"; |
17 | 17 | } |
@@ -7,10 +7,10 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$text = isset( $element['text'] ) ? wp_kses_post( trim( $element['text'] ) ) : ''; |
|
12 | +$text = isset($element['text']) ? wp_kses_post(trim($element['text'])) : ''; |
|
13 | 13 | |
14 | -if ( ! empty( $text ) ) { |
|
14 | +if (!empty($text)) { |
|
15 | 15 | echo "<p>$text</p>"; |
16 | 16 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
3 | - exit; |
|
3 | + exit; |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -10,55 +10,55 @@ discard block |
||
10 | 10 | class GetPaid_Payment_Form extends GetPaid_Data { |
11 | 11 | |
12 | 12 | /** |
13 | - * Which data store to load. |
|
14 | - * |
|
15 | - * @var string |
|
16 | - */ |
|
13 | + * Which data store to load. |
|
14 | + * |
|
15 | + * @var string |
|
16 | + */ |
|
17 | 17 | protected $data_store_name = 'payment_form'; |
18 | 18 | |
19 | 19 | /** |
20 | - * This is the name of this object type. |
|
21 | - * |
|
22 | - * @var string |
|
23 | - */ |
|
24 | - protected $object_type = 'payment_form'; |
|
20 | + * This is the name of this object type. |
|
21 | + * |
|
22 | + * @var string |
|
23 | + */ |
|
24 | + protected $object_type = 'payment_form'; |
|
25 | 25 | |
26 | 26 | /** |
27 | - * Form Data array. This is the core form data exposed in APIs. |
|
28 | - * |
|
29 | - * @since 1.0.19 |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - protected $data = array( |
|
33 | - 'status' => 'draft', |
|
34 | - 'version' => '', |
|
35 | - 'date_created' => null, |
|
27 | + * Form Data array. This is the core form data exposed in APIs. |
|
28 | + * |
|
29 | + * @since 1.0.19 |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + protected $data = array( |
|
33 | + 'status' => 'draft', |
|
34 | + 'version' => '', |
|
35 | + 'date_created' => null, |
|
36 | 36 | 'date_modified' => null, |
37 | 37 | 'name' => '', |
38 | 38 | 'author' => 1, |
39 | 39 | 'elements' => null, |
40 | - 'items' => null, |
|
41 | - 'earned' => 0, |
|
42 | - 'refunded' => 0, |
|
43 | - 'cancelled' => 0, |
|
44 | - 'failed' => 0, |
|
45 | - ); |
|
46 | - |
|
47 | - /** |
|
48 | - * Stores meta in cache for future reads. |
|
49 | - * |
|
50 | - * A group must be set to to enable caching. |
|
51 | - * |
|
52 | - * @var string |
|
53 | - */ |
|
54 | - protected $cache_group = 'getpaid_forms'; |
|
55 | - |
|
56 | - /** |
|
57 | - * Stores a reference to the invoice if the form is for an invoice.. |
|
58 | - * |
|
59 | - * @var WPInv_Invoice |
|
60 | - */ |
|
61 | - public $invoice = 0; |
|
40 | + 'items' => null, |
|
41 | + 'earned' => 0, |
|
42 | + 'refunded' => 0, |
|
43 | + 'cancelled' => 0, |
|
44 | + 'failed' => 0, |
|
45 | + ); |
|
46 | + |
|
47 | + /** |
|
48 | + * Stores meta in cache for future reads. |
|
49 | + * |
|
50 | + * A group must be set to to enable caching. |
|
51 | + * |
|
52 | + * @var string |
|
53 | + */ |
|
54 | + protected $cache_group = 'getpaid_forms'; |
|
55 | + |
|
56 | + /** |
|
57 | + * Stores a reference to the invoice if the form is for an invoice.. |
|
58 | + * |
|
59 | + * @var WPInv_Invoice |
|
60 | + */ |
|
61 | + public $invoice = 0; |
|
62 | 62 | |
63 | 63 | /** |
64 | 64 | * Stores a reference to the original WP_Post object |
@@ -68,35 +68,35 @@ discard block |
||
68 | 68 | protected $post = null; |
69 | 69 | |
70 | 70 | /** |
71 | - * Get the form if ID is passed, otherwise the form is new and empty. |
|
72 | - * |
|
73 | - * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
74 | - */ |
|
75 | - public function __construct( $form = 0 ) { |
|
76 | - parent::__construct( $form ); |
|
71 | + * Get the form if ID is passed, otherwise the form is new and empty. |
|
72 | + * |
|
73 | + * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
74 | + */ |
|
75 | + public function __construct( $form = 0 ) { |
|
76 | + parent::__construct( $form ); |
|
77 | 77 | |
78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | - $this->set_id( $form ); |
|
80 | - } elseif ( $form instanceof self ) { |
|
78 | + if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | + $this->set_id( $form ); |
|
80 | + } elseif ( $form instanceof self ) { |
|
81 | 81 | |
82 | - $this->set_id( $form->get_id() ); |
|
83 | - $this->invoice = $form->invoice; |
|
82 | + $this->set_id( $form->get_id() ); |
|
83 | + $this->invoice = $form->invoice; |
|
84 | 84 | |
85 | - } elseif ( ! empty( $form->ID ) ) { |
|
86 | - $this->set_id( $form->ID ); |
|
87 | - } else { |
|
88 | - $this->set_object_read( true ); |
|
89 | - } |
|
85 | + } elseif ( ! empty( $form->ID ) ) { |
|
86 | + $this->set_id( $form->ID ); |
|
87 | + } else { |
|
88 | + $this->set_object_read( true ); |
|
89 | + } |
|
90 | 90 | |
91 | 91 | // Load the datastore. |
92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
92 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
93 | 93 | |
94 | - if ( $this->get_id() > 0 ) { |
|
94 | + if ( $this->get_id() > 0 ) { |
|
95 | 95 | $this->post = get_post( $this->get_id() ); |
96 | - $this->data_store->read( $this ); |
|
96 | + $this->data_store->read( $this ); |
|
97 | 97 | } |
98 | 98 | |
99 | - } |
|
99 | + } |
|
100 | 100 | |
101 | 101 | /* |
102 | 102 | |-------------------------------------------------------------------------- |
@@ -114,358 +114,358 @@ discard block |
||
114 | 114 | */ |
115 | 115 | |
116 | 116 | /** |
117 | - * Get plugin version when the form was created. |
|
118 | - * |
|
119 | - * @since 1.0.19 |
|
120 | - * @param string $context View or edit context. |
|
121 | - * @return string |
|
122 | - */ |
|
123 | - public function get_version( $context = 'view' ) { |
|
124 | - return $this->get_prop( 'version', $context ); |
|
117 | + * Get plugin version when the form was created. |
|
118 | + * |
|
119 | + * @since 1.0.19 |
|
120 | + * @param string $context View or edit context. |
|
121 | + * @return string |
|
122 | + */ |
|
123 | + public function get_version( $context = 'view' ) { |
|
124 | + return $this->get_prop( 'version', $context ); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
128 | - * Get date when the form was created. |
|
129 | - * |
|
130 | - * @since 1.0.19 |
|
131 | - * @param string $context View or edit context. |
|
132 | - * @return string |
|
133 | - */ |
|
134 | - public function get_date_created( $context = 'view' ) { |
|
135 | - return $this->get_prop( 'date_created', $context ); |
|
128 | + * Get date when the form was created. |
|
129 | + * |
|
130 | + * @since 1.0.19 |
|
131 | + * @param string $context View or edit context. |
|
132 | + * @return string |
|
133 | + */ |
|
134 | + public function get_date_created( $context = 'view' ) { |
|
135 | + return $this->get_prop( 'date_created', $context ); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
139 | - * Get GMT date when the form was created. |
|
140 | - * |
|
141 | - * @since 1.0.19 |
|
142 | - * @param string $context View or edit context. |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
139 | + * Get GMT date when the form was created. |
|
140 | + * |
|
141 | + * @since 1.0.19 |
|
142 | + * @param string $context View or edit context. |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + public function get_date_created_gmt( $context = 'view' ) { |
|
146 | 146 | $date = $this->get_date_created( $context ); |
147 | 147 | |
148 | 148 | if ( $date ) { |
149 | 149 | $date = get_gmt_from_date( $date ); |
150 | 150 | } |
151 | - return $date; |
|
151 | + return $date; |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
155 | - * Get date when the form was last modified. |
|
156 | - * |
|
157 | - * @since 1.0.19 |
|
158 | - * @param string $context View or edit context. |
|
159 | - * @return string |
|
160 | - */ |
|
161 | - public function get_date_modified( $context = 'view' ) { |
|
162 | - return $this->get_prop( 'date_modified', $context ); |
|
155 | + * Get date when the form was last modified. |
|
156 | + * |
|
157 | + * @since 1.0.19 |
|
158 | + * @param string $context View or edit context. |
|
159 | + * @return string |
|
160 | + */ |
|
161 | + public function get_date_modified( $context = 'view' ) { |
|
162 | + return $this->get_prop( 'date_modified', $context ); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
166 | - * Get GMT date when the form was last modified. |
|
167 | - * |
|
168 | - * @since 1.0.19 |
|
169 | - * @param string $context View or edit context. |
|
170 | - * @return string |
|
171 | - */ |
|
172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
166 | + * Get GMT date when the form was last modified. |
|
167 | + * |
|
168 | + * @since 1.0.19 |
|
169 | + * @param string $context View or edit context. |
|
170 | + * @return string |
|
171 | + */ |
|
172 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
173 | 173 | $date = $this->get_date_modified( $context ); |
174 | 174 | |
175 | 175 | if ( $date ) { |
176 | 176 | $date = get_gmt_from_date( $date ); |
177 | 177 | } |
178 | - return $date; |
|
178 | + return $date; |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
182 | - * Get the form name. |
|
183 | - * |
|
184 | - * @since 1.0.19 |
|
185 | - * @param string $context View or edit context. |
|
186 | - * @return string |
|
187 | - */ |
|
188 | - public function get_name( $context = 'view' ) { |
|
189 | - return $this->get_prop( 'name', $context ); |
|
182 | + * Get the form name. |
|
183 | + * |
|
184 | + * @since 1.0.19 |
|
185 | + * @param string $context View or edit context. |
|
186 | + * @return string |
|
187 | + */ |
|
188 | + public function get_name( $context = 'view' ) { |
|
189 | + return $this->get_prop( 'name', $context ); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
193 | - * Alias of self::get_name(). |
|
194 | - * |
|
195 | - * @since 1.0.19 |
|
196 | - * @param string $context View or edit context. |
|
197 | - * @return string |
|
198 | - */ |
|
199 | - public function get_title( $context = 'view' ) { |
|
200 | - return $this->get_name( $context ); |
|
201 | - } |
|
193 | + * Alias of self::get_name(). |
|
194 | + * |
|
195 | + * @since 1.0.19 |
|
196 | + * @param string $context View or edit context. |
|
197 | + * @return string |
|
198 | + */ |
|
199 | + public function get_title( $context = 'view' ) { |
|
200 | + return $this->get_name( $context ); |
|
201 | + } |
|
202 | 202 | |
203 | 203 | /** |
204 | - * Get the owner of the form. |
|
205 | - * |
|
206 | - * @since 1.0.19 |
|
207 | - * @param string $context View or edit context. |
|
208 | - * @return int |
|
209 | - */ |
|
210 | - public function get_author( $context = 'view' ) { |
|
211 | - return (int) $this->get_prop( 'author', $context ); |
|
204 | + * Get the owner of the form. |
|
205 | + * |
|
206 | + * @since 1.0.19 |
|
207 | + * @param string $context View or edit context. |
|
208 | + * @return int |
|
209 | + */ |
|
210 | + public function get_author( $context = 'view' ) { |
|
211 | + return (int) $this->get_prop( 'author', $context ); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
215 | - * Get the elements that make up the form. |
|
216 | - * |
|
217 | - * @since 1.0.19 |
|
218 | - * @param string $context View or edit context. |
|
219 | - * @return array |
|
220 | - */ |
|
221 | - public function get_elements( $context = 'view' ) { |
|
222 | - $elements = $this->get_prop( 'elements', $context ); |
|
215 | + * Get the elements that make up the form. |
|
216 | + * |
|
217 | + * @since 1.0.19 |
|
218 | + * @param string $context View or edit context. |
|
219 | + * @return array |
|
220 | + */ |
|
221 | + public function get_elements( $context = 'view' ) { |
|
222 | + $elements = $this->get_prop( 'elements', $context ); |
|
223 | 223 | |
224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
224 | + if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
225 | 225 | return wpinv_get_data( 'sample-payment-form' ); |
226 | - } |
|
226 | + } |
|
227 | 227 | |
228 | - // Ensure that all required elements exist. |
|
229 | - $_elements = array(); |
|
230 | - foreach ( $elements as $element ) { |
|
228 | + // Ensure that all required elements exist. |
|
229 | + $_elements = array(); |
|
230 | + foreach ( $elements as $element ) { |
|
231 | 231 | |
232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
232 | + if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
233 | 233 | |
234 | - $_elements[] = array( |
|
235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
236 | - 'id' => 'gtscicd', |
|
237 | - 'name' => 'gtscicd', |
|
238 | - 'type' => 'gateway_select', |
|
239 | - 'premade' => true |
|
234 | + $_elements[] = array( |
|
235 | + 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
236 | + 'id' => 'gtscicd', |
|
237 | + 'name' => 'gtscicd', |
|
238 | + 'type' => 'gateway_select', |
|
239 | + 'premade' => true |
|
240 | 240 | |
241 | - ); |
|
241 | + ); |
|
242 | 242 | |
243 | - } |
|
243 | + } |
|
244 | 244 | |
245 | - $_elements[] = $element; |
|
245 | + $_elements[] = $element; |
|
246 | 246 | |
247 | - } |
|
247 | + } |
|
248 | 248 | |
249 | 249 | return $_elements; |
250 | - } |
|
251 | - |
|
252 | - /** |
|
253 | - * Get the items sold via the form. |
|
254 | - * |
|
255 | - * @since 1.0.19 |
|
256 | - * @param string $context View or edit context. |
|
257 | - * @param string $return objects or arrays. |
|
258 | - * @return GetPaid_Form_Item[] |
|
259 | - */ |
|
260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | - $items = $this->get_prop( 'items', $context ); |
|
262 | - |
|
263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
250 | + } |
|
251 | + |
|
252 | + /** |
|
253 | + * Get the items sold via the form. |
|
254 | + * |
|
255 | + * @since 1.0.19 |
|
256 | + * @param string $context View or edit context. |
|
257 | + * @param string $return objects or arrays. |
|
258 | + * @return GetPaid_Form_Item[] |
|
259 | + */ |
|
260 | + public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | + $items = $this->get_prop( 'items', $context ); |
|
262 | + |
|
263 | + if ( empty( $items ) || ! is_array( $items ) ) { |
|
264 | 264 | $items = wpinv_get_data( 'sample-payment-form-items' ); |
265 | - } |
|
265 | + } |
|
266 | 266 | |
267 | - // Convert the items. |
|
268 | - $prepared = array(); |
|
267 | + // Convert the items. |
|
268 | + $prepared = array(); |
|
269 | 269 | |
270 | - foreach ( $items as $key => $value ) { |
|
270 | + foreach ( $items as $key => $value ) { |
|
271 | 271 | |
272 | - // Form items. |
|
273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
272 | + // Form items. |
|
273 | + if ( $value instanceof GetPaid_Form_Item ) { |
|
274 | 274 | |
275 | - if ( $value->can_purchase() ) { |
|
276 | - $prepared[] = $value; |
|
277 | - } |
|
275 | + if ( $value->can_purchase() ) { |
|
276 | + $prepared[] = $value; |
|
277 | + } |
|
278 | 278 | |
279 | - continue; |
|
279 | + continue; |
|
280 | 280 | |
281 | - } |
|
281 | + } |
|
282 | 282 | |
283 | - // $item_id => $quantity (buy buttons) |
|
284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | - $item = new GetPaid_Form_Item( $key ); |
|
283 | + // $item_id => $quantity (buy buttons) |
|
284 | + if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | + $item = new GetPaid_Form_Item( $key ); |
|
286 | 286 | |
287 | - if ( $item->can_purchase() ) { |
|
287 | + if ( $item->can_purchase() ) { |
|
288 | 288 | |
289 | - $value = (float) $value; |
|
290 | - $item->set_quantity( $value ); |
|
291 | - if ( 0 == $value ) { |
|
292 | - $item->set_quantity( 1 ); |
|
293 | - $item->set_allow_quantities( true ); |
|
294 | - } |
|
289 | + $value = (float) $value; |
|
290 | + $item->set_quantity( $value ); |
|
291 | + if ( 0 == $value ) { |
|
292 | + $item->set_quantity( 1 ); |
|
293 | + $item->set_allow_quantities( true ); |
|
294 | + } |
|
295 | 295 | |
296 | - $prepared[] = $item; |
|
297 | - } |
|
296 | + $prepared[] = $item; |
|
297 | + } |
|
298 | 298 | |
299 | - continue; |
|
300 | - } |
|
299 | + continue; |
|
300 | + } |
|
301 | 301 | |
302 | - // Items saved via payment forms editor. |
|
303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
302 | + // Items saved via payment forms editor. |
|
303 | + if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
304 | 304 | |
305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
305 | + $item = new GetPaid_Form_Item( $value['id'] ); |
|
306 | 306 | |
307 | - if ( ! $item->can_purchase() ) { |
|
308 | - continue; |
|
309 | - } |
|
307 | + if ( ! $item->can_purchase() ) { |
|
308 | + continue; |
|
309 | + } |
|
310 | 310 | |
311 | - // Sub-total (Cart items). |
|
312 | - if ( isset( $value['subtotal'] ) ) { |
|
313 | - $item->set_price( $value['subtotal'] ); |
|
314 | - } |
|
311 | + // Sub-total (Cart items). |
|
312 | + if ( isset( $value['subtotal'] ) ) { |
|
313 | + $item->set_price( $value['subtotal'] ); |
|
314 | + } |
|
315 | 315 | |
316 | - if ( isset( $value['quantity'] ) ) { |
|
317 | - $item->set_quantity( $value['quantity'] ); |
|
318 | - } |
|
316 | + if ( isset( $value['quantity'] ) ) { |
|
317 | + $item->set_quantity( $value['quantity'] ); |
|
318 | + } |
|
319 | 319 | |
320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
322 | - } |
|
320 | + if ( isset( $value['allow_quantities'] ) ) { |
|
321 | + $item->set_allow_quantities( $value['allow_quantities'] ); |
|
322 | + } |
|
323 | 323 | |
324 | - if ( isset( $value['required'] ) ) { |
|
325 | - $item->set_is_required( $value['required'] ); |
|
326 | - } |
|
324 | + if ( isset( $value['required'] ) ) { |
|
325 | + $item->set_is_required( $value['required'] ); |
|
326 | + } |
|
327 | 327 | |
328 | - if ( isset( $value['description'] ) ) { |
|
329 | - $item->set_custom_description( $value['description'] ); |
|
330 | - } |
|
328 | + if ( isset( $value['description'] ) ) { |
|
329 | + $item->set_custom_description( $value['description'] ); |
|
330 | + } |
|
331 | 331 | |
332 | - $prepared[] = $item; |
|
333 | - continue; |
|
332 | + $prepared[] = $item; |
|
333 | + continue; |
|
334 | 334 | |
335 | - } |
|
335 | + } |
|
336 | 336 | |
337 | - // $item_id => array( 'price' => 10 ) (item variations) |
|
338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
339 | - $item = new GetPaid_Form_Item( $key ); |
|
337 | + // $item_id => array( 'price' => 10 ) (item variations) |
|
338 | + if ( is_numeric( $key ) && is_array( $value ) ) { |
|
339 | + $item = new GetPaid_Form_Item( $key ); |
|
340 | 340 | |
341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
342 | - $item->set_price( $value['price'] ); |
|
343 | - } |
|
344 | - |
|
345 | - if ( $item->can_purchase() ) { |
|
346 | - $prepared[] = $item; |
|
347 | - } |
|
348 | - |
|
349 | - continue; |
|
350 | - } |
|
351 | - |
|
352 | - } |
|
353 | - |
|
354 | - if ( 'objects' == $return && 'view' == $context ) { |
|
355 | - return $prepared; |
|
356 | - } |
|
357 | - |
|
358 | - $items = array(); |
|
359 | - foreach ( $prepared as $item ) { |
|
360 | - $items[] = $item->prepare_data_for_use(); |
|
361 | - } |
|
362 | - |
|
363 | - return $items; |
|
364 | - } |
|
365 | - |
|
366 | - /** |
|
367 | - * Get a single item belonging to the form. |
|
368 | - * |
|
369 | - * @since 1.0.19 |
|
370 | - * @param int $item_id The item id to return. |
|
371 | - * @return GetPaid_Form_Item|bool |
|
372 | - */ |
|
373 | - public function get_item( $item_id ) { |
|
374 | - |
|
375 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
376 | - return false; |
|
377 | - } |
|
378 | - |
|
379 | - foreach( $this->get_items() as $item ) { |
|
380 | - if ( $item->get_id() == (int) $item_id ) { |
|
381 | - return $item; |
|
382 | - } |
|
383 | - } |
|
384 | - |
|
385 | - return false; |
|
386 | - |
|
387 | - } |
|
388 | - |
|
389 | - /** |
|
390 | - * Gets a single element. |
|
391 | - * |
|
392 | - * @since 1.0.19 |
|
393 | - * @param string $element_type The element type to return. |
|
394 | - * @return array|bool |
|
395 | - */ |
|
396 | - public function get_element_type( $element_type ) { |
|
397 | - |
|
398 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
399 | - return false; |
|
400 | - } |
|
401 | - |
|
402 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
403 | - |
|
404 | - if ( $element['type'] == $element_type ) { |
|
405 | - return $element; |
|
406 | - } |
|
407 | - |
|
408 | - } |
|
409 | - |
|
410 | - return false; |
|
411 | - |
|
412 | - } |
|
413 | - |
|
414 | - /** |
|
415 | - * Get the total amount earned via this form. |
|
416 | - * |
|
417 | - * @since 1.0.19 |
|
418 | - * @param string $context View or edit context. |
|
419 | - * @return float |
|
420 | - */ |
|
421 | - public function get_earned( $context = 'view' ) { |
|
422 | - return $this->get_prop( 'earned', $context ); |
|
423 | - } |
|
424 | - |
|
425 | - /** |
|
426 | - * Get the total amount refunded via this form. |
|
427 | - * |
|
428 | - * @since 1.0.19 |
|
429 | - * @param string $context View or edit context. |
|
430 | - * @return float |
|
431 | - */ |
|
432 | - public function get_refunded( $context = 'view' ) { |
|
433 | - return $this->get_prop( 'refunded', $context ); |
|
434 | - } |
|
435 | - |
|
436 | - /** |
|
437 | - * Get the total amount cancelled via this form. |
|
438 | - * |
|
439 | - * @since 1.0.19 |
|
440 | - * @param string $context View or edit context. |
|
441 | - * @return float |
|
442 | - */ |
|
443 | - public function get_cancelled( $context = 'view' ) { |
|
444 | - return $this->get_prop( 'cancelled', $context ); |
|
445 | - } |
|
446 | - |
|
447 | - /** |
|
448 | - * Get the total amount failed via this form. |
|
449 | - * |
|
450 | - * @since 1.0.19 |
|
451 | - * @param string $context View or edit context. |
|
452 | - * @return float |
|
453 | - */ |
|
454 | - public function get_failed( $context = 'view' ) { |
|
455 | - return $this->get_prop( 'failed', $context ); |
|
456 | - } |
|
457 | - |
|
458 | - /** |
|
459 | - * Get the currency. |
|
460 | - * |
|
461 | - * @since 1.0.19 |
|
462 | - * @param string $context View or edit context. |
|
463 | - * @return string |
|
464 | - */ |
|
465 | - public function get_currency() { |
|
466 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
467 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
468 | - } |
|
341 | + if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
342 | + $item->set_price( $value['price'] ); |
|
343 | + } |
|
344 | + |
|
345 | + if ( $item->can_purchase() ) { |
|
346 | + $prepared[] = $item; |
|
347 | + } |
|
348 | + |
|
349 | + continue; |
|
350 | + } |
|
351 | + |
|
352 | + } |
|
353 | + |
|
354 | + if ( 'objects' == $return && 'view' == $context ) { |
|
355 | + return $prepared; |
|
356 | + } |
|
357 | + |
|
358 | + $items = array(); |
|
359 | + foreach ( $prepared as $item ) { |
|
360 | + $items[] = $item->prepare_data_for_use(); |
|
361 | + } |
|
362 | + |
|
363 | + return $items; |
|
364 | + } |
|
365 | + |
|
366 | + /** |
|
367 | + * Get a single item belonging to the form. |
|
368 | + * |
|
369 | + * @since 1.0.19 |
|
370 | + * @param int $item_id The item id to return. |
|
371 | + * @return GetPaid_Form_Item|bool |
|
372 | + */ |
|
373 | + public function get_item( $item_id ) { |
|
374 | + |
|
375 | + if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
376 | + return false; |
|
377 | + } |
|
378 | + |
|
379 | + foreach( $this->get_items() as $item ) { |
|
380 | + if ( $item->get_id() == (int) $item_id ) { |
|
381 | + return $item; |
|
382 | + } |
|
383 | + } |
|
384 | + |
|
385 | + return false; |
|
386 | + |
|
387 | + } |
|
388 | + |
|
389 | + /** |
|
390 | + * Gets a single element. |
|
391 | + * |
|
392 | + * @since 1.0.19 |
|
393 | + * @param string $element_type The element type to return. |
|
394 | + * @return array|bool |
|
395 | + */ |
|
396 | + public function get_element_type( $element_type ) { |
|
397 | + |
|
398 | + if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
399 | + return false; |
|
400 | + } |
|
401 | + |
|
402 | + foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
403 | + |
|
404 | + if ( $element['type'] == $element_type ) { |
|
405 | + return $element; |
|
406 | + } |
|
407 | + |
|
408 | + } |
|
409 | + |
|
410 | + return false; |
|
411 | + |
|
412 | + } |
|
413 | + |
|
414 | + /** |
|
415 | + * Get the total amount earned via this form. |
|
416 | + * |
|
417 | + * @since 1.0.19 |
|
418 | + * @param string $context View or edit context. |
|
419 | + * @return float |
|
420 | + */ |
|
421 | + public function get_earned( $context = 'view' ) { |
|
422 | + return $this->get_prop( 'earned', $context ); |
|
423 | + } |
|
424 | + |
|
425 | + /** |
|
426 | + * Get the total amount refunded via this form. |
|
427 | + * |
|
428 | + * @since 1.0.19 |
|
429 | + * @param string $context View or edit context. |
|
430 | + * @return float |
|
431 | + */ |
|
432 | + public function get_refunded( $context = 'view' ) { |
|
433 | + return $this->get_prop( 'refunded', $context ); |
|
434 | + } |
|
435 | + |
|
436 | + /** |
|
437 | + * Get the total amount cancelled via this form. |
|
438 | + * |
|
439 | + * @since 1.0.19 |
|
440 | + * @param string $context View or edit context. |
|
441 | + * @return float |
|
442 | + */ |
|
443 | + public function get_cancelled( $context = 'view' ) { |
|
444 | + return $this->get_prop( 'cancelled', $context ); |
|
445 | + } |
|
446 | + |
|
447 | + /** |
|
448 | + * Get the total amount failed via this form. |
|
449 | + * |
|
450 | + * @since 1.0.19 |
|
451 | + * @param string $context View or edit context. |
|
452 | + * @return float |
|
453 | + */ |
|
454 | + public function get_failed( $context = 'view' ) { |
|
455 | + return $this->get_prop( 'failed', $context ); |
|
456 | + } |
|
457 | + |
|
458 | + /** |
|
459 | + * Get the currency. |
|
460 | + * |
|
461 | + * @since 1.0.19 |
|
462 | + * @param string $context View or edit context. |
|
463 | + * @return string |
|
464 | + */ |
|
465 | + public function get_currency() { |
|
466 | + $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
467 | + return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
468 | + } |
|
469 | 469 | |
470 | 470 | /* |
471 | 471 | |-------------------------------------------------------------------------- |
@@ -478,22 +478,22 @@ discard block |
||
478 | 478 | */ |
479 | 479 | |
480 | 480 | /** |
481 | - * Set plugin version when the item was created. |
|
482 | - * |
|
483 | - * @since 1.0.19 |
|
484 | - */ |
|
485 | - public function set_version( $value ) { |
|
486 | - $this->set_prop( 'version', $value ); |
|
481 | + * Set plugin version when the item was created. |
|
482 | + * |
|
483 | + * @since 1.0.19 |
|
484 | + */ |
|
485 | + public function set_version( $value ) { |
|
486 | + $this->set_prop( 'version', $value ); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | /** |
490 | - * Set date when the item was created. |
|
491 | - * |
|
492 | - * @since 1.0.19 |
|
493 | - * @param string $value Value to set. |
|
490 | + * Set date when the item was created. |
|
491 | + * |
|
492 | + * @since 1.0.19 |
|
493 | + * @param string $value Value to set. |
|
494 | 494 | * @return bool Whether or not the date was set. |
495 | - */ |
|
496 | - public function set_date_created( $value ) { |
|
495 | + */ |
|
496 | + public function set_date_created( $value ) { |
|
497 | 497 | $date = strtotime( $value ); |
498 | 498 | |
499 | 499 | if ( $date ) { |
@@ -506,13 +506,13 @@ discard block |
||
506 | 506 | } |
507 | 507 | |
508 | 508 | /** |
509 | - * Set date when the item was last modified. |
|
510 | - * |
|
511 | - * @since 1.0.19 |
|
512 | - * @param string $value Value to set. |
|
509 | + * Set date when the item was last modified. |
|
510 | + * |
|
511 | + * @since 1.0.19 |
|
512 | + * @param string $value Value to set. |
|
513 | 513 | * @return bool Whether or not the date was set. |
514 | - */ |
|
515 | - public function set_date_modified( $value ) { |
|
514 | + */ |
|
515 | + public function set_date_modified( $value ) { |
|
516 | 516 | $date = strtotime( $value ); |
517 | 517 | |
518 | 518 | if ( $date ) { |
@@ -525,165 +525,165 @@ discard block |
||
525 | 525 | } |
526 | 526 | |
527 | 527 | /** |
528 | - * Set the item name. |
|
529 | - * |
|
530 | - * @since 1.0.19 |
|
531 | - * @param string $value New name. |
|
532 | - */ |
|
533 | - public function set_name( $value ) { |
|
534 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
535 | - } |
|
536 | - |
|
537 | - /** |
|
538 | - * Alias of self::set_name(). |
|
539 | - * |
|
540 | - * @since 1.0.19 |
|
541 | - * @param string $value New name. |
|
542 | - */ |
|
543 | - public function set_title( $value ) { |
|
544 | - $this->set_name( $value ); |
|
545 | - } |
|
546 | - |
|
547 | - /** |
|
548 | - * Set the owner of the item. |
|
549 | - * |
|
550 | - * @since 1.0.19 |
|
551 | - * @param int $value New author. |
|
552 | - */ |
|
553 | - public function set_author( $value ) { |
|
554 | - $this->set_prop( 'author', (int) $value ); |
|
555 | - } |
|
556 | - |
|
557 | - /** |
|
558 | - * Set the form elements. |
|
559 | - * |
|
560 | - * @since 1.0.19 |
|
561 | - * @sinve 2.3.4 Array values sanitized. |
|
562 | - * @param array $value Form elements. |
|
563 | - */ |
|
564 | - public function set_elements( $value ) { |
|
565 | - if ( is_array( $value ) ) { |
|
566 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
567 | - } |
|
568 | - } |
|
569 | - |
|
570 | - /** |
|
571 | - * Sanitize array values. |
|
572 | - * |
|
573 | - * @param $value |
|
574 | - * |
|
575 | - * @return mixed |
|
576 | - */ |
|
577 | - public function sanitize_array_values($value){ |
|
578 | - |
|
579 | - // sanitize |
|
580 | - if(!empty($value )){ |
|
581 | - |
|
582 | - foreach($value as $key => $val_arr){ |
|
583 | - |
|
584 | - if(is_array($val_arr)){ |
|
585 | - // check if we have sub array items. |
|
586 | - $sub_arr = array(); |
|
587 | - foreach($val_arr as $key2 => $val2){ |
|
588 | - if(is_array($val2)){ |
|
589 | - $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
590 | - unset($val_arr[$key][$key2]); |
|
591 | - } |
|
592 | - } |
|
593 | - |
|
594 | - // we allow some html in description so we sanitize it separately. |
|
595 | - $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
596 | - |
|
597 | - // sanitize array elements |
|
598 | - $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
599 | - |
|
600 | - // add back the description if set |
|
601 | - if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
602 | - |
|
603 | - // add back sub array items after its been sanitized. |
|
604 | - if ( ! empty( $sub_arr ) ) { |
|
605 | - $value[$key] = array_merge($value[$key],$sub_arr); |
|
606 | - } |
|
607 | - } |
|
608 | - |
|
609 | - } |
|
610 | - |
|
611 | - } |
|
612 | - |
|
613 | - return $value; |
|
614 | - } |
|
615 | - |
|
616 | - /** |
|
617 | - * Set the form items. |
|
618 | - * |
|
619 | - * @since 1.0.19 |
|
620 | - * @param array $value Form elements. |
|
621 | - */ |
|
622 | - public function set_items( $value ) { |
|
623 | - if ( is_array( $value ) ) { |
|
624 | - $this->set_prop( 'items', $value ); |
|
625 | - } |
|
626 | - } |
|
627 | - |
|
628 | - /** |
|
629 | - * Set the total amount earned via this form. |
|
630 | - * |
|
631 | - * @since 1.0.19 |
|
632 | - * @param float $value Amount earned. |
|
633 | - */ |
|
634 | - public function set_earned( $value ) { |
|
635 | - $value = max( (float) $value, 0 ); |
|
636 | - $this->set_prop( 'earned', $value ); |
|
637 | - } |
|
638 | - |
|
639 | - /** |
|
640 | - * Set the total amount refunded via this form. |
|
641 | - * |
|
642 | - * @since 1.0.19 |
|
643 | - * @param float $value Amount refunded. |
|
644 | - */ |
|
645 | - public function set_refunded( $value ) { |
|
646 | - $value = max( (float) $value, 0 ); |
|
647 | - $this->set_prop( 'refunded', $value ); |
|
648 | - } |
|
649 | - |
|
650 | - /** |
|
651 | - * Set the total amount cancelled via this form. |
|
652 | - * |
|
653 | - * @since 1.0.19 |
|
654 | - * @param float $value Amount cancelled. |
|
655 | - */ |
|
656 | - public function set_cancelled( $value ) { |
|
657 | - $value = max( (float) $value, 0 ); |
|
658 | - $this->set_prop( 'cancelled', $value ); |
|
659 | - } |
|
660 | - |
|
661 | - /** |
|
662 | - * Set the total amount failed via this form. |
|
663 | - * |
|
664 | - * @since 1.0.19 |
|
665 | - * @param float $value Amount cancelled. |
|
666 | - */ |
|
667 | - public function set_failed( $value ) { |
|
668 | - $value = max( (float) $value, 0 ); |
|
669 | - $this->set_prop( 'failed', $value ); |
|
670 | - } |
|
528 | + * Set the item name. |
|
529 | + * |
|
530 | + * @since 1.0.19 |
|
531 | + * @param string $value New name. |
|
532 | + */ |
|
533 | + public function set_name( $value ) { |
|
534 | + $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
535 | + } |
|
536 | + |
|
537 | + /** |
|
538 | + * Alias of self::set_name(). |
|
539 | + * |
|
540 | + * @since 1.0.19 |
|
541 | + * @param string $value New name. |
|
542 | + */ |
|
543 | + public function set_title( $value ) { |
|
544 | + $this->set_name( $value ); |
|
545 | + } |
|
546 | + |
|
547 | + /** |
|
548 | + * Set the owner of the item. |
|
549 | + * |
|
550 | + * @since 1.0.19 |
|
551 | + * @param int $value New author. |
|
552 | + */ |
|
553 | + public function set_author( $value ) { |
|
554 | + $this->set_prop( 'author', (int) $value ); |
|
555 | + } |
|
556 | + |
|
557 | + /** |
|
558 | + * Set the form elements. |
|
559 | + * |
|
560 | + * @since 1.0.19 |
|
561 | + * @sinve 2.3.4 Array values sanitized. |
|
562 | + * @param array $value Form elements. |
|
563 | + */ |
|
564 | + public function set_elements( $value ) { |
|
565 | + if ( is_array( $value ) ) { |
|
566 | + $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
567 | + } |
|
568 | + } |
|
569 | + |
|
570 | + /** |
|
571 | + * Sanitize array values. |
|
572 | + * |
|
573 | + * @param $value |
|
574 | + * |
|
575 | + * @return mixed |
|
576 | + */ |
|
577 | + public function sanitize_array_values($value){ |
|
578 | + |
|
579 | + // sanitize |
|
580 | + if(!empty($value )){ |
|
581 | + |
|
582 | + foreach($value as $key => $val_arr){ |
|
583 | + |
|
584 | + if(is_array($val_arr)){ |
|
585 | + // check if we have sub array items. |
|
586 | + $sub_arr = array(); |
|
587 | + foreach($val_arr as $key2 => $val2){ |
|
588 | + if(is_array($val2)){ |
|
589 | + $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
590 | + unset($val_arr[$key][$key2]); |
|
591 | + } |
|
592 | + } |
|
593 | + |
|
594 | + // we allow some html in description so we sanitize it separately. |
|
595 | + $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
596 | + |
|
597 | + // sanitize array elements |
|
598 | + $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
599 | + |
|
600 | + // add back the description if set |
|
601 | + if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
602 | + |
|
603 | + // add back sub array items after its been sanitized. |
|
604 | + if ( ! empty( $sub_arr ) ) { |
|
605 | + $value[$key] = array_merge($value[$key],$sub_arr); |
|
606 | + } |
|
607 | + } |
|
608 | + |
|
609 | + } |
|
610 | + |
|
611 | + } |
|
612 | + |
|
613 | + return $value; |
|
614 | + } |
|
615 | + |
|
616 | + /** |
|
617 | + * Set the form items. |
|
618 | + * |
|
619 | + * @since 1.0.19 |
|
620 | + * @param array $value Form elements. |
|
621 | + */ |
|
622 | + public function set_items( $value ) { |
|
623 | + if ( is_array( $value ) ) { |
|
624 | + $this->set_prop( 'items', $value ); |
|
625 | + } |
|
626 | + } |
|
627 | + |
|
628 | + /** |
|
629 | + * Set the total amount earned via this form. |
|
630 | + * |
|
631 | + * @since 1.0.19 |
|
632 | + * @param float $value Amount earned. |
|
633 | + */ |
|
634 | + public function set_earned( $value ) { |
|
635 | + $value = max( (float) $value, 0 ); |
|
636 | + $this->set_prop( 'earned', $value ); |
|
637 | + } |
|
638 | + |
|
639 | + /** |
|
640 | + * Set the total amount refunded via this form. |
|
641 | + * |
|
642 | + * @since 1.0.19 |
|
643 | + * @param float $value Amount refunded. |
|
644 | + */ |
|
645 | + public function set_refunded( $value ) { |
|
646 | + $value = max( (float) $value, 0 ); |
|
647 | + $this->set_prop( 'refunded', $value ); |
|
648 | + } |
|
649 | + |
|
650 | + /** |
|
651 | + * Set the total amount cancelled via this form. |
|
652 | + * |
|
653 | + * @since 1.0.19 |
|
654 | + * @param float $value Amount cancelled. |
|
655 | + */ |
|
656 | + public function set_cancelled( $value ) { |
|
657 | + $value = max( (float) $value, 0 ); |
|
658 | + $this->set_prop( 'cancelled', $value ); |
|
659 | + } |
|
660 | + |
|
661 | + /** |
|
662 | + * Set the total amount failed via this form. |
|
663 | + * |
|
664 | + * @since 1.0.19 |
|
665 | + * @param float $value Amount cancelled. |
|
666 | + */ |
|
667 | + public function set_failed( $value ) { |
|
668 | + $value = max( (float) $value, 0 ); |
|
669 | + $this->set_prop( 'failed', $value ); |
|
670 | + } |
|
671 | 671 | |
672 | 672 | /** |
673 | 673 | * Create an item. For backwards compatibilty. |
674 | 674 | * |
675 | 675 | * @deprecated |
676 | - * @return int item id |
|
676 | + * @return int item id |
|
677 | 677 | */ |
678 | 678 | public function create( $data = array() ) { |
679 | 679 | |
680 | - // Set the properties. |
|
681 | - if ( is_array( $data ) ) { |
|
682 | - $this->set_props( $data ); |
|
683 | - } |
|
680 | + // Set the properties. |
|
681 | + if ( is_array( $data ) ) { |
|
682 | + $this->set_props( $data ); |
|
683 | + } |
|
684 | 684 | |
685 | - // Save the item. |
|
686 | - return $this->save(); |
|
685 | + // Save the item. |
|
686 | + return $this->save(); |
|
687 | 687 | |
688 | 688 | } |
689 | 689 | |
@@ -691,7 +691,7 @@ discard block |
||
691 | 691 | * Updates an item. For backwards compatibilty. |
692 | 692 | * |
693 | 693 | * @deprecated |
694 | - * @return int item id |
|
694 | + * @return int item id |
|
695 | 695 | */ |
696 | 696 | public function update( $data = array() ) { |
697 | 697 | return $this->create( $data ); |
@@ -707,22 +707,22 @@ discard block |
||
707 | 707 | */ |
708 | 708 | |
709 | 709 | /** |
710 | - * Checks whether this is the default payment form. |
|
711 | - * |
|
712 | - * @since 1.0.19 |
|
713 | - * @return bool |
|
714 | - */ |
|
710 | + * Checks whether this is the default payment form. |
|
711 | + * |
|
712 | + * @since 1.0.19 |
|
713 | + * @return bool |
|
714 | + */ |
|
715 | 715 | public function is_default() { |
716 | 716 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
717 | 717 | return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
718 | - } |
|
718 | + } |
|
719 | 719 | |
720 | 720 | /** |
721 | - * Checks whether the form is active. |
|
722 | - * |
|
723 | - * @since 1.0.19 |
|
724 | - * @return bool |
|
725 | - */ |
|
721 | + * Checks whether the form is active. |
|
722 | + * |
|
723 | + * @since 1.0.19 |
|
724 | + * @return bool |
|
725 | + */ |
|
726 | 726 | public function is_active() { |
727 | 727 | $is_active = 0 !== (int) $this->get_id(); |
728 | 728 | |
@@ -731,76 +731,76 @@ discard block |
||
731 | 731 | } |
732 | 732 | |
733 | 733 | return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
734 | - } |
|
735 | - |
|
736 | - /** |
|
737 | - * Checks whether the form has a given item. |
|
738 | - * |
|
739 | - * @since 1.0.19 |
|
740 | - * @return bool |
|
741 | - */ |
|
734 | + } |
|
735 | + |
|
736 | + /** |
|
737 | + * Checks whether the form has a given item. |
|
738 | + * |
|
739 | + * @since 1.0.19 |
|
740 | + * @return bool |
|
741 | + */ |
|
742 | 742 | public function has_item( $item_id ) { |
743 | 743 | return false !== $this->get_item( $item_id ); |
744 | - } |
|
745 | - |
|
746 | - /** |
|
747 | - * Checks whether the form has a given element. |
|
748 | - * |
|
749 | - * @since 1.0.19 |
|
750 | - * @return bool |
|
751 | - */ |
|
744 | + } |
|
745 | + |
|
746 | + /** |
|
747 | + * Checks whether the form has a given element. |
|
748 | + * |
|
749 | + * @since 1.0.19 |
|
750 | + * @return bool |
|
751 | + */ |
|
752 | 752 | public function has_element_type( $element_type ) { |
753 | 753 | return false !== $this->get_element_type( $element_type ); |
754 | - } |
|
755 | - |
|
756 | - /** |
|
757 | - * Checks whether this form is recurring or not. |
|
758 | - * |
|
759 | - * @since 1.0.19 |
|
760 | - * @return bool |
|
761 | - */ |
|
754 | + } |
|
755 | + |
|
756 | + /** |
|
757 | + * Checks whether this form is recurring or not. |
|
758 | + * |
|
759 | + * @since 1.0.19 |
|
760 | + * @return bool |
|
761 | + */ |
|
762 | 762 | public function is_recurring() { |
763 | 763 | |
764 | - if ( ! empty( $this->invoice ) ) { |
|
765 | - return $this->invoice->is_recurring(); |
|
766 | - } |
|
764 | + if ( ! empty( $this->invoice ) ) { |
|
765 | + return $this->invoice->is_recurring(); |
|
766 | + } |
|
767 | 767 | |
768 | - foreach ( $this->get_items() as $item ) { |
|
768 | + foreach ( $this->get_items() as $item ) { |
|
769 | 769 | |
770 | - if ( $item->is_recurring() ) { |
|
771 | - return true; |
|
772 | - } |
|
770 | + if ( $item->is_recurring() ) { |
|
771 | + return true; |
|
772 | + } |
|
773 | 773 | |
774 | - } |
|
774 | + } |
|
775 | 775 | |
776 | 776 | return false; |
777 | - } |
|
777 | + } |
|
778 | 778 | |
779 | - /** |
|
780 | - * Retrieves the form's html. |
|
781 | - * |
|
782 | - * @since 1.0.19 |
|
783 | - */ |
|
779 | + /** |
|
780 | + * Retrieves the form's html. |
|
781 | + * |
|
782 | + * @since 1.0.19 |
|
783 | + */ |
|
784 | 784 | public function get_html( $extra_markup = '' ) { |
785 | 785 | |
786 | - // Return the HTML. |
|
787 | - return wpinv_get_template_html( |
|
788 | - 'payment-forms/form.php', |
|
789 | - array( |
|
790 | - 'form' => $this, |
|
791 | - 'extra_markup' => $extra_markup, |
|
792 | - ) |
|
793 | - ); |
|
794 | - |
|
795 | - } |
|
796 | - |
|
797 | - /** |
|
798 | - * Displays the payment form. |
|
799 | - * |
|
800 | - * @since 1.0.19 |
|
801 | - */ |
|
786 | + // Return the HTML. |
|
787 | + return wpinv_get_template_html( |
|
788 | + 'payment-forms/form.php', |
|
789 | + array( |
|
790 | + 'form' => $this, |
|
791 | + 'extra_markup' => $extra_markup, |
|
792 | + ) |
|
793 | + ); |
|
794 | + |
|
795 | + } |
|
796 | + |
|
797 | + /** |
|
798 | + * Displays the payment form. |
|
799 | + * |
|
800 | + * @since 1.0.19 |
|
801 | + */ |
|
802 | 802 | public function display( $extra_markup = '' ) { |
803 | - echo $this->get_html( $extra_markup ); |
|
803 | + echo $this->get_html( $extra_markup ); |
|
804 | 804 | } |
805 | 805 | |
806 | 806 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -72,28 +72,28 @@ discard block |
||
72 | 72 | * |
73 | 73 | * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
74 | 74 | */ |
75 | - public function __construct( $form = 0 ) { |
|
76 | - parent::__construct( $form ); |
|
75 | + public function __construct($form = 0) { |
|
76 | + parent::__construct($form); |
|
77 | 77 | |
78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | - $this->set_id( $form ); |
|
80 | - } elseif ( $form instanceof self ) { |
|
78 | + if (is_numeric($form) && $form > 0) { |
|
79 | + $this->set_id($form); |
|
80 | + } elseif ($form instanceof self) { |
|
81 | 81 | |
82 | - $this->set_id( $form->get_id() ); |
|
82 | + $this->set_id($form->get_id()); |
|
83 | 83 | $this->invoice = $form->invoice; |
84 | 84 | |
85 | - } elseif ( ! empty( $form->ID ) ) { |
|
86 | - $this->set_id( $form->ID ); |
|
85 | + } elseif (!empty($form->ID)) { |
|
86 | + $this->set_id($form->ID); |
|
87 | 87 | } else { |
88 | - $this->set_object_read( true ); |
|
88 | + $this->set_object_read(true); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | // Load the datastore. |
92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
92 | + $this->data_store = GetPaid_Data_Store::load($this->data_store_name); |
|
93 | 93 | |
94 | - if ( $this->get_id() > 0 ) { |
|
95 | - $this->post = get_post( $this->get_id() ); |
|
96 | - $this->data_store->read( $this ); |
|
94 | + if ($this->get_id() > 0) { |
|
95 | + $this->post = get_post($this->get_id()); |
|
96 | + $this->data_store->read($this); |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | } |
@@ -120,8 +120,8 @@ discard block |
||
120 | 120 | * @param string $context View or edit context. |
121 | 121 | * @return string |
122 | 122 | */ |
123 | - public function get_version( $context = 'view' ) { |
|
124 | - return $this->get_prop( 'version', $context ); |
|
123 | + public function get_version($context = 'view') { |
|
124 | + return $this->get_prop('version', $context); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -131,8 +131,8 @@ discard block |
||
131 | 131 | * @param string $context View or edit context. |
132 | 132 | * @return string |
133 | 133 | */ |
134 | - public function get_date_created( $context = 'view' ) { |
|
135 | - return $this->get_prop( 'date_created', $context ); |
|
134 | + public function get_date_created($context = 'view') { |
|
135 | + return $this->get_prop('date_created', $context); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
@@ -142,11 +142,11 @@ discard block |
||
142 | 142 | * @param string $context View or edit context. |
143 | 143 | * @return string |
144 | 144 | */ |
145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
146 | - $date = $this->get_date_created( $context ); |
|
145 | + public function get_date_created_gmt($context = 'view') { |
|
146 | + $date = $this->get_date_created($context); |
|
147 | 147 | |
148 | - if ( $date ) { |
|
149 | - $date = get_gmt_from_date( $date ); |
|
148 | + if ($date) { |
|
149 | + $date = get_gmt_from_date($date); |
|
150 | 150 | } |
151 | 151 | return $date; |
152 | 152 | } |
@@ -158,8 +158,8 @@ discard block |
||
158 | 158 | * @param string $context View or edit context. |
159 | 159 | * @return string |
160 | 160 | */ |
161 | - public function get_date_modified( $context = 'view' ) { |
|
162 | - return $this->get_prop( 'date_modified', $context ); |
|
161 | + public function get_date_modified($context = 'view') { |
|
162 | + return $this->get_prop('date_modified', $context); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
@@ -169,11 +169,11 @@ discard block |
||
169 | 169 | * @param string $context View or edit context. |
170 | 170 | * @return string |
171 | 171 | */ |
172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
173 | - $date = $this->get_date_modified( $context ); |
|
172 | + public function get_date_modified_gmt($context = 'view') { |
|
173 | + $date = $this->get_date_modified($context); |
|
174 | 174 | |
175 | - if ( $date ) { |
|
176 | - $date = get_gmt_from_date( $date ); |
|
175 | + if ($date) { |
|
176 | + $date = get_gmt_from_date($date); |
|
177 | 177 | } |
178 | 178 | return $date; |
179 | 179 | } |
@@ -185,8 +185,8 @@ discard block |
||
185 | 185 | * @param string $context View or edit context. |
186 | 186 | * @return string |
187 | 187 | */ |
188 | - public function get_name( $context = 'view' ) { |
|
189 | - return $this->get_prop( 'name', $context ); |
|
188 | + public function get_name($context = 'view') { |
|
189 | + return $this->get_prop('name', $context); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -196,8 +196,8 @@ discard block |
||
196 | 196 | * @param string $context View or edit context. |
197 | 197 | * @return string |
198 | 198 | */ |
199 | - public function get_title( $context = 'view' ) { |
|
200 | - return $this->get_name( $context ); |
|
199 | + public function get_title($context = 'view') { |
|
200 | + return $this->get_name($context); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | /** |
@@ -207,8 +207,8 @@ discard block |
||
207 | 207 | * @param string $context View or edit context. |
208 | 208 | * @return int |
209 | 209 | */ |
210 | - public function get_author( $context = 'view' ) { |
|
211 | - return (int) $this->get_prop( 'author', $context ); |
|
210 | + public function get_author($context = 'view') { |
|
211 | + return (int) $this->get_prop('author', $context); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
@@ -218,21 +218,21 @@ discard block |
||
218 | 218 | * @param string $context View or edit context. |
219 | 219 | * @return array |
220 | 220 | */ |
221 | - public function get_elements( $context = 'view' ) { |
|
222 | - $elements = $this->get_prop( 'elements', $context ); |
|
221 | + public function get_elements($context = 'view') { |
|
222 | + $elements = $this->get_prop('elements', $context); |
|
223 | 223 | |
224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
225 | - return wpinv_get_data( 'sample-payment-form' ); |
|
224 | + if (empty($elements) || !is_array($elements)) { |
|
225 | + return wpinv_get_data('sample-payment-form'); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | // Ensure that all required elements exist. |
229 | 229 | $_elements = array(); |
230 | - foreach ( $elements as $element ) { |
|
230 | + foreach ($elements as $element) { |
|
231 | 231 | |
232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
232 | + if ($element['type'] == 'pay_button' && !$this->has_element_type('gateway_select')) { |
|
233 | 233 | |
234 | 234 | $_elements[] = array( |
235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
235 | + 'text' => __('Select Payment Method', 'invoicing'), |
|
236 | 236 | 'id' => 'gtscicd', |
237 | 237 | 'name' => 'gtscicd', |
238 | 238 | 'type' => 'gateway_select', |
@@ -257,22 +257,22 @@ discard block |
||
257 | 257 | * @param string $return objects or arrays. |
258 | 258 | * @return GetPaid_Form_Item[] |
259 | 259 | */ |
260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | - $items = $this->get_prop( 'items', $context ); |
|
260 | + public function get_items($context = 'view', $return = 'objects') { |
|
261 | + $items = $this->get_prop('items', $context); |
|
262 | 262 | |
263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
264 | - $items = wpinv_get_data( 'sample-payment-form-items' ); |
|
263 | + if (empty($items) || !is_array($items)) { |
|
264 | + $items = wpinv_get_data('sample-payment-form-items'); |
|
265 | 265 | } |
266 | 266 | |
267 | 267 | // Convert the items. |
268 | 268 | $prepared = array(); |
269 | 269 | |
270 | - foreach ( $items as $key => $value ) { |
|
270 | + foreach ($items as $key => $value) { |
|
271 | 271 | |
272 | 272 | // Form items. |
273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
273 | + if ($value instanceof GetPaid_Form_Item) { |
|
274 | 274 | |
275 | - if ( $value->can_purchase() ) { |
|
275 | + if ($value->can_purchase()) { |
|
276 | 276 | $prepared[] = $value; |
277 | 277 | } |
278 | 278 | |
@@ -281,16 +281,16 @@ discard block |
||
281 | 281 | } |
282 | 282 | |
283 | 283 | // $item_id => $quantity (buy buttons) |
284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | - $item = new GetPaid_Form_Item( $key ); |
|
284 | + if (is_numeric($key) && is_numeric($value)) { |
|
285 | + $item = new GetPaid_Form_Item($key); |
|
286 | 286 | |
287 | - if ( $item->can_purchase() ) { |
|
287 | + if ($item->can_purchase()) { |
|
288 | 288 | |
289 | 289 | $value = (float) $value; |
290 | - $item->set_quantity( $value ); |
|
291 | - if ( 0 == $value ) { |
|
292 | - $item->set_quantity( 1 ); |
|
293 | - $item->set_allow_quantities( true ); |
|
290 | + $item->set_quantity($value); |
|
291 | + if (0 == $value) { |
|
292 | + $item->set_quantity(1); |
|
293 | + $item->set_allow_quantities(true); |
|
294 | 294 | } |
295 | 295 | |
296 | 296 | $prepared[] = $item; |
@@ -300,33 +300,33 @@ discard block |
||
300 | 300 | } |
301 | 301 | |
302 | 302 | // Items saved via payment forms editor. |
303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
303 | + if (is_array($value) && isset($value['id'])) { |
|
304 | 304 | |
305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
305 | + $item = new GetPaid_Form_Item($value['id']); |
|
306 | 306 | |
307 | - if ( ! $item->can_purchase() ) { |
|
307 | + if (!$item->can_purchase()) { |
|
308 | 308 | continue; |
309 | 309 | } |
310 | 310 | |
311 | 311 | // Sub-total (Cart items). |
312 | - if ( isset( $value['subtotal'] ) ) { |
|
313 | - $item->set_price( $value['subtotal'] ); |
|
312 | + if (isset($value['subtotal'])) { |
|
313 | + $item->set_price($value['subtotal']); |
|
314 | 314 | } |
315 | 315 | |
316 | - if ( isset( $value['quantity'] ) ) { |
|
317 | - $item->set_quantity( $value['quantity'] ); |
|
316 | + if (isset($value['quantity'])) { |
|
317 | + $item->set_quantity($value['quantity']); |
|
318 | 318 | } |
319 | 319 | |
320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
320 | + if (isset($value['allow_quantities'])) { |
|
321 | + $item->set_allow_quantities($value['allow_quantities']); |
|
322 | 322 | } |
323 | 323 | |
324 | - if ( isset( $value['required'] ) ) { |
|
325 | - $item->set_is_required( $value['required'] ); |
|
324 | + if (isset($value['required'])) { |
|
325 | + $item->set_is_required($value['required']); |
|
326 | 326 | } |
327 | 327 | |
328 | - if ( isset( $value['description'] ) ) { |
|
329 | - $item->set_custom_description( $value['description'] ); |
|
328 | + if (isset($value['description'])) { |
|
329 | + $item->set_custom_description($value['description']); |
|
330 | 330 | } |
331 | 331 | |
332 | 332 | $prepared[] = $item; |
@@ -335,14 +335,14 @@ discard block |
||
335 | 335 | } |
336 | 336 | |
337 | 337 | // $item_id => array( 'price' => 10 ) (item variations) |
338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
339 | - $item = new GetPaid_Form_Item( $key ); |
|
338 | + if (is_numeric($key) && is_array($value)) { |
|
339 | + $item = new GetPaid_Form_Item($key); |
|
340 | 340 | |
341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
342 | - $item->set_price( $value['price'] ); |
|
341 | + if (isset($value['price']) && $item->user_can_set_their_price()) { |
|
342 | + $item->set_price($value['price']); |
|
343 | 343 | } |
344 | 344 | |
345 | - if ( $item->can_purchase() ) { |
|
345 | + if ($item->can_purchase()) { |
|
346 | 346 | $prepared[] = $item; |
347 | 347 | } |
348 | 348 | |
@@ -351,12 +351,12 @@ discard block |
||
351 | 351 | |
352 | 352 | } |
353 | 353 | |
354 | - if ( 'objects' == $return && 'view' == $context ) { |
|
354 | + if ('objects' == $return && 'view' == $context) { |
|
355 | 355 | return $prepared; |
356 | 356 | } |
357 | 357 | |
358 | 358 | $items = array(); |
359 | - foreach ( $prepared as $item ) { |
|
359 | + foreach ($prepared as $item) { |
|
360 | 360 | $items[] = $item->prepare_data_for_use(); |
361 | 361 | } |
362 | 362 | |
@@ -370,14 +370,14 @@ discard block |
||
370 | 370 | * @param int $item_id The item id to return. |
371 | 371 | * @return GetPaid_Form_Item|bool |
372 | 372 | */ |
373 | - public function get_item( $item_id ) { |
|
373 | + public function get_item($item_id) { |
|
374 | 374 | |
375 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
375 | + if (empty($item_id) || !is_numeric($item_id)) { |
|
376 | 376 | return false; |
377 | 377 | } |
378 | 378 | |
379 | - foreach( $this->get_items() as $item ) { |
|
380 | - if ( $item->get_id() == (int) $item_id ) { |
|
379 | + foreach ($this->get_items() as $item) { |
|
380 | + if ($item->get_id() == (int) $item_id) { |
|
381 | 381 | return $item; |
382 | 382 | } |
383 | 383 | } |
@@ -393,15 +393,15 @@ discard block |
||
393 | 393 | * @param string $element_type The element type to return. |
394 | 394 | * @return array|bool |
395 | 395 | */ |
396 | - public function get_element_type( $element_type ) { |
|
396 | + public function get_element_type($element_type) { |
|
397 | 397 | |
398 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
398 | + if (empty($element_type) || !is_scalar($element_type)) { |
|
399 | 399 | return false; |
400 | 400 | } |
401 | 401 | |
402 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
402 | + foreach ($this->get_prop('elements') as $element) { |
|
403 | 403 | |
404 | - if ( $element['type'] == $element_type ) { |
|
404 | + if ($element['type'] == $element_type) { |
|
405 | 405 | return $element; |
406 | 406 | } |
407 | 407 | |
@@ -418,8 +418,8 @@ discard block |
||
418 | 418 | * @param string $context View or edit context. |
419 | 419 | * @return float |
420 | 420 | */ |
421 | - public function get_earned( $context = 'view' ) { |
|
422 | - return $this->get_prop( 'earned', $context ); |
|
421 | + public function get_earned($context = 'view') { |
|
422 | + return $this->get_prop('earned', $context); |
|
423 | 423 | } |
424 | 424 | |
425 | 425 | /** |
@@ -429,8 +429,8 @@ discard block |
||
429 | 429 | * @param string $context View or edit context. |
430 | 430 | * @return float |
431 | 431 | */ |
432 | - public function get_refunded( $context = 'view' ) { |
|
433 | - return $this->get_prop( 'refunded', $context ); |
|
432 | + public function get_refunded($context = 'view') { |
|
433 | + return $this->get_prop('refunded', $context); |
|
434 | 434 | } |
435 | 435 | |
436 | 436 | /** |
@@ -440,8 +440,8 @@ discard block |
||
440 | 440 | * @param string $context View or edit context. |
441 | 441 | * @return float |
442 | 442 | */ |
443 | - public function get_cancelled( $context = 'view' ) { |
|
444 | - return $this->get_prop( 'cancelled', $context ); |
|
443 | + public function get_cancelled($context = 'view') { |
|
444 | + return $this->get_prop('cancelled', $context); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | /** |
@@ -451,8 +451,8 @@ discard block |
||
451 | 451 | * @param string $context View or edit context. |
452 | 452 | * @return float |
453 | 453 | */ |
454 | - public function get_failed( $context = 'view' ) { |
|
455 | - return $this->get_prop( 'failed', $context ); |
|
454 | + public function get_failed($context = 'view') { |
|
455 | + return $this->get_prop('failed', $context); |
|
456 | 456 | } |
457 | 457 | |
458 | 458 | /** |
@@ -463,8 +463,8 @@ discard block |
||
463 | 463 | * @return string |
464 | 464 | */ |
465 | 465 | public function get_currency() { |
466 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
467 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
466 | + $currency = empty($this->invoice) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
467 | + return apply_filters('getpaid-payment-form-currency', $currency, $this); |
|
468 | 468 | } |
469 | 469 | |
470 | 470 | /* |
@@ -482,8 +482,8 @@ discard block |
||
482 | 482 | * |
483 | 483 | * @since 1.0.19 |
484 | 484 | */ |
485 | - public function set_version( $value ) { |
|
486 | - $this->set_prop( 'version', $value ); |
|
485 | + public function set_version($value) { |
|
486 | + $this->set_prop('version', $value); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | /** |
@@ -493,11 +493,11 @@ discard block |
||
493 | 493 | * @param string $value Value to set. |
494 | 494 | * @return bool Whether or not the date was set. |
495 | 495 | */ |
496 | - public function set_date_created( $value ) { |
|
497 | - $date = strtotime( $value ); |
|
496 | + public function set_date_created($value) { |
|
497 | + $date = strtotime($value); |
|
498 | 498 | |
499 | - if ( $date ) { |
|
500 | - $this->set_prop( 'date_created', date( 'Y-m-d H:i:s', $date ) ); |
|
499 | + if ($date) { |
|
500 | + $this->set_prop('date_created', date('Y-m-d H:i:s', $date)); |
|
501 | 501 | return true; |
502 | 502 | } |
503 | 503 | |
@@ -512,11 +512,11 @@ discard block |
||
512 | 512 | * @param string $value Value to set. |
513 | 513 | * @return bool Whether or not the date was set. |
514 | 514 | */ |
515 | - public function set_date_modified( $value ) { |
|
516 | - $date = strtotime( $value ); |
|
515 | + public function set_date_modified($value) { |
|
516 | + $date = strtotime($value); |
|
517 | 517 | |
518 | - if ( $date ) { |
|
519 | - $this->set_prop( 'date_modified', date( 'Y-m-d H:i:s', $date ) ); |
|
518 | + if ($date) { |
|
519 | + $this->set_prop('date_modified', date('Y-m-d H:i:s', $date)); |
|
520 | 520 | return true; |
521 | 521 | } |
522 | 522 | |
@@ -530,8 +530,8 @@ discard block |
||
530 | 530 | * @since 1.0.19 |
531 | 531 | * @param string $value New name. |
532 | 532 | */ |
533 | - public function set_name( $value ) { |
|
534 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
533 | + public function set_name($value) { |
|
534 | + $this->set_prop('name', sanitize_text_field($value)); |
|
535 | 535 | } |
536 | 536 | |
537 | 537 | /** |
@@ -540,8 +540,8 @@ discard block |
||
540 | 540 | * @since 1.0.19 |
541 | 541 | * @param string $value New name. |
542 | 542 | */ |
543 | - public function set_title( $value ) { |
|
544 | - $this->set_name( $value ); |
|
543 | + public function set_title($value) { |
|
544 | + $this->set_name($value); |
|
545 | 545 | } |
546 | 546 | |
547 | 547 | /** |
@@ -550,8 +550,8 @@ discard block |
||
550 | 550 | * @since 1.0.19 |
551 | 551 | * @param int $value New author. |
552 | 552 | */ |
553 | - public function set_author( $value ) { |
|
554 | - $this->set_prop( 'author', (int) $value ); |
|
553 | + public function set_author($value) { |
|
554 | + $this->set_prop('author', (int) $value); |
|
555 | 555 | } |
556 | 556 | |
557 | 557 | /** |
@@ -561,9 +561,9 @@ discard block |
||
561 | 561 | * @sinve 2.3.4 Array values sanitized. |
562 | 562 | * @param array $value Form elements. |
563 | 563 | */ |
564 | - public function set_elements( $value ) { |
|
565 | - if ( is_array( $value ) ) { |
|
566 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
564 | + public function set_elements($value) { |
|
565 | + if (is_array($value)) { |
|
566 | + $this->set_prop('elements', wp_kses_post_deep($value)); |
|
567 | 567 | } |
568 | 568 | } |
569 | 569 | |
@@ -574,18 +574,18 @@ discard block |
||
574 | 574 | * |
575 | 575 | * @return mixed |
576 | 576 | */ |
577 | - public function sanitize_array_values($value){ |
|
577 | + public function sanitize_array_values($value) { |
|
578 | 578 | |
579 | 579 | // sanitize |
580 | - if(!empty($value )){ |
|
580 | + if (!empty($value)) { |
|
581 | 581 | |
582 | - foreach($value as $key => $val_arr){ |
|
582 | + foreach ($value as $key => $val_arr) { |
|
583 | 583 | |
584 | - if(is_array($val_arr)){ |
|
584 | + if (is_array($val_arr)) { |
|
585 | 585 | // check if we have sub array items. |
586 | 586 | $sub_arr = array(); |
587 | - foreach($val_arr as $key2 => $val2){ |
|
588 | - if(is_array($val2)){ |
|
587 | + foreach ($val_arr as $key2 => $val2) { |
|
588 | + if (is_array($val2)) { |
|
589 | 589 | $sub_arr[$key2] = $this->sanitize_array_values($val2); |
590 | 590 | unset($val_arr[$key][$key2]); |
591 | 591 | } |
@@ -595,14 +595,14 @@ discard block |
||
595 | 595 | $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
596 | 596 | |
597 | 597 | // sanitize array elements |
598 | - $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
598 | + $value[$key] = array_map('sanitize_text_field', $val_arr); |
|
599 | 599 | |
600 | 600 | // add back the description if set |
601 | - if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
601 | + if (isset($val_arr['description'])) { $value[$key]['description'] = $help_text; } |
|
602 | 602 | |
603 | 603 | // add back sub array items after its been sanitized. |
604 | - if ( ! empty( $sub_arr ) ) { |
|
605 | - $value[$key] = array_merge($value[$key],$sub_arr); |
|
604 | + if (!empty($sub_arr)) { |
|
605 | + $value[$key] = array_merge($value[$key], $sub_arr); |
|
606 | 606 | } |
607 | 607 | } |
608 | 608 | |
@@ -619,9 +619,9 @@ discard block |
||
619 | 619 | * @since 1.0.19 |
620 | 620 | * @param array $value Form elements. |
621 | 621 | */ |
622 | - public function set_items( $value ) { |
|
623 | - if ( is_array( $value ) ) { |
|
624 | - $this->set_prop( 'items', $value ); |
|
622 | + public function set_items($value) { |
|
623 | + if (is_array($value)) { |
|
624 | + $this->set_prop('items', $value); |
|
625 | 625 | } |
626 | 626 | } |
627 | 627 | |
@@ -631,9 +631,9 @@ discard block |
||
631 | 631 | * @since 1.0.19 |
632 | 632 | * @param float $value Amount earned. |
633 | 633 | */ |
634 | - public function set_earned( $value ) { |
|
635 | - $value = max( (float) $value, 0 ); |
|
636 | - $this->set_prop( 'earned', $value ); |
|
634 | + public function set_earned($value) { |
|
635 | + $value = max((float) $value, 0); |
|
636 | + $this->set_prop('earned', $value); |
|
637 | 637 | } |
638 | 638 | |
639 | 639 | /** |
@@ -642,9 +642,9 @@ discard block |
||
642 | 642 | * @since 1.0.19 |
643 | 643 | * @param float $value Amount refunded. |
644 | 644 | */ |
645 | - public function set_refunded( $value ) { |
|
646 | - $value = max( (float) $value, 0 ); |
|
647 | - $this->set_prop( 'refunded', $value ); |
|
645 | + public function set_refunded($value) { |
|
646 | + $value = max((float) $value, 0); |
|
647 | + $this->set_prop('refunded', $value); |
|
648 | 648 | } |
649 | 649 | |
650 | 650 | /** |
@@ -653,9 +653,9 @@ discard block |
||
653 | 653 | * @since 1.0.19 |
654 | 654 | * @param float $value Amount cancelled. |
655 | 655 | */ |
656 | - public function set_cancelled( $value ) { |
|
657 | - $value = max( (float) $value, 0 ); |
|
658 | - $this->set_prop( 'cancelled', $value ); |
|
656 | + public function set_cancelled($value) { |
|
657 | + $value = max((float) $value, 0); |
|
658 | + $this->set_prop('cancelled', $value); |
|
659 | 659 | } |
660 | 660 | |
661 | 661 | /** |
@@ -664,9 +664,9 @@ discard block |
||
664 | 664 | * @since 1.0.19 |
665 | 665 | * @param float $value Amount cancelled. |
666 | 666 | */ |
667 | - public function set_failed( $value ) { |
|
668 | - $value = max( (float) $value, 0 ); |
|
669 | - $this->set_prop( 'failed', $value ); |
|
667 | + public function set_failed($value) { |
|
668 | + $value = max((float) $value, 0); |
|
669 | + $this->set_prop('failed', $value); |
|
670 | 670 | } |
671 | 671 | |
672 | 672 | /** |
@@ -675,11 +675,11 @@ discard block |
||
675 | 675 | * @deprecated |
676 | 676 | * @return int item id |
677 | 677 | */ |
678 | - public function create( $data = array() ) { |
|
678 | + public function create($data = array()) { |
|
679 | 679 | |
680 | 680 | // Set the properties. |
681 | - if ( is_array( $data ) ) { |
|
682 | - $this->set_props( $data ); |
|
681 | + if (is_array($data)) { |
|
682 | + $this->set_props($data); |
|
683 | 683 | } |
684 | 684 | |
685 | 685 | // Save the item. |
@@ -693,8 +693,8 @@ discard block |
||
693 | 693 | * @deprecated |
694 | 694 | * @return int item id |
695 | 695 | */ |
696 | - public function update( $data = array() ) { |
|
697 | - return $this->create( $data ); |
|
696 | + public function update($data = array()) { |
|
697 | + return $this->create($data); |
|
698 | 698 | } |
699 | 699 | |
700 | 700 | /* |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | */ |
715 | 715 | public function is_default() { |
716 | 716 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
717 | - return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
|
717 | + return (bool) apply_filters('wpinv_is_default_payment_form', $is_default, $this->get_id(), $this); |
|
718 | 718 | } |
719 | 719 | |
720 | 720 | /** |
@@ -726,11 +726,11 @@ discard block |
||
726 | 726 | public function is_active() { |
727 | 727 | $is_active = 0 !== (int) $this->get_id(); |
728 | 728 | |
729 | - if ( $is_active && ! current_user_can( 'edit_post', $this->get_id() ) && $this->get_status() != 'publish' ) { |
|
729 | + if ($is_active && !current_user_can('edit_post', $this->get_id()) && $this->get_status() != 'publish') { |
|
730 | 730 | $is_active = false; |
731 | 731 | } |
732 | 732 | |
733 | - return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
|
733 | + return (bool) apply_filters('wpinv_is_payment_form_active', $is_active, $this); |
|
734 | 734 | } |
735 | 735 | |
736 | 736 | /** |
@@ -739,8 +739,8 @@ discard block |
||
739 | 739 | * @since 1.0.19 |
740 | 740 | * @return bool |
741 | 741 | */ |
742 | - public function has_item( $item_id ) { |
|
743 | - return false !== $this->get_item( $item_id ); |
|
742 | + public function has_item($item_id) { |
|
743 | + return false !== $this->get_item($item_id); |
|
744 | 744 | } |
745 | 745 | |
746 | 746 | /** |
@@ -749,8 +749,8 @@ discard block |
||
749 | 749 | * @since 1.0.19 |
750 | 750 | * @return bool |
751 | 751 | */ |
752 | - public function has_element_type( $element_type ) { |
|
753 | - return false !== $this->get_element_type( $element_type ); |
|
752 | + public function has_element_type($element_type) { |
|
753 | + return false !== $this->get_element_type($element_type); |
|
754 | 754 | } |
755 | 755 | |
756 | 756 | /** |
@@ -761,13 +761,13 @@ discard block |
||
761 | 761 | */ |
762 | 762 | public function is_recurring() { |
763 | 763 | |
764 | - if ( ! empty( $this->invoice ) ) { |
|
764 | + if (!empty($this->invoice)) { |
|
765 | 765 | return $this->invoice->is_recurring(); |
766 | 766 | } |
767 | 767 | |
768 | - foreach ( $this->get_items() as $item ) { |
|
768 | + foreach ($this->get_items() as $item) { |
|
769 | 769 | |
770 | - if ( $item->is_recurring() ) { |
|
770 | + if ($item->is_recurring()) { |
|
771 | 771 | return true; |
772 | 772 | } |
773 | 773 | |
@@ -781,7 +781,7 @@ discard block |
||
781 | 781 | * |
782 | 782 | * @since 1.0.19 |
783 | 783 | */ |
784 | - public function get_html( $extra_markup = '' ) { |
|
784 | + public function get_html($extra_markup = '') { |
|
785 | 785 | |
786 | 786 | // Return the HTML. |
787 | 787 | return wpinv_get_template_html( |
@@ -799,8 +799,8 @@ discard block |
||
799 | 799 | * |
800 | 800 | * @since 1.0.19 |
801 | 801 | */ |
802 | - public function display( $extra_markup = '' ) { |
|
803 | - echo $this->get_html( $extra_markup ); |
|
802 | + public function display($extra_markup = '') { |
|
803 | + echo $this->get_html($extra_markup); |
|
804 | 804 | } |
805 | 805 | |
806 | 806 | } |