@@ -14,70 +14,70 @@ discard block |
||
14 | 14 | class WPInv_Ajax { |
15 | 15 | |
16 | 16 | /** |
17 | - * Hook in ajax handlers. |
|
18 | - */ |
|
19 | - public static function init() { |
|
20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
22 | - self::add_ajax_events(); |
|
17 | + * Hook in ajax handlers. |
|
18 | + */ |
|
19 | + public static function init() { |
|
20 | + add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | + add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
22 | + self::add_ajax_events(); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
26 | - * Set GetPaid AJAX constant and headers. |
|
27 | - */ |
|
28 | - public static function define_ajax() { |
|
29 | - |
|
30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
35 | - } |
|
36 | - $GLOBALS['wpdb']->hide_errors(); |
|
37 | - } |
|
26 | + * Set GetPaid AJAX constant and headers. |
|
27 | + */ |
|
28 | + public static function define_ajax() { |
|
29 | + |
|
30 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | + getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | + getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | + if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | + /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
35 | + } |
|
36 | + $GLOBALS['wpdb']->hide_errors(); |
|
37 | + } |
|
38 | 38 | |
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | - * Send headers for GetPaid Ajax Requests. |
|
43 | - * |
|
44 | - * @since 1.0.18 |
|
45 | - */ |
|
46 | - private static function wpinv_ajax_headers() { |
|
47 | - if ( ! headers_sent() ) { |
|
48 | - send_origin_headers(); |
|
49 | - send_nosniff_header(); |
|
50 | - nocache_headers(); |
|
51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | - header( 'X-Robots-Tag: noindex' ); |
|
53 | - status_header( 200 ); |
|
54 | - } |
|
42 | + * Send headers for GetPaid Ajax Requests. |
|
43 | + * |
|
44 | + * @since 1.0.18 |
|
45 | + */ |
|
46 | + private static function wpinv_ajax_headers() { |
|
47 | + if ( ! headers_sent() ) { |
|
48 | + send_origin_headers(); |
|
49 | + send_nosniff_header(); |
|
50 | + nocache_headers(); |
|
51 | + header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | + header( 'X-Robots-Tag: noindex' ); |
|
53 | + status_header( 200 ); |
|
54 | + } |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
58 | - * Check for GetPaid Ajax request and fire action. |
|
59 | - */ |
|
60 | - public static function do_wpinv_ajax() { |
|
61 | - global $wp_query; |
|
58 | + * Check for GetPaid Ajax request and fire action. |
|
59 | + */ |
|
60 | + public static function do_wpinv_ajax() { |
|
61 | + global $wp_query; |
|
62 | 62 | |
63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
65 | - } |
|
63 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | + $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
65 | + } |
|
66 | 66 | |
67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
67 | + $action = $wp_query->get( 'wpinv-ajax' ); |
|
68 | 68 | |
69 | - if ( $action ) { |
|
70 | - self::wpinv_ajax_headers(); |
|
71 | - $action = sanitize_text_field( $action ); |
|
72 | - do_action( 'wpinv_ajax_' . $action ); |
|
73 | - wp_die(); |
|
74 | - } |
|
69 | + if ( $action ) { |
|
70 | + self::wpinv_ajax_headers(); |
|
71 | + $action = sanitize_text_field( $action ); |
|
72 | + do_action( 'wpinv_ajax_' . $action ); |
|
73 | + wp_die(); |
|
74 | + } |
|
75 | 75 | |
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * Hook in ajax methods. |
|
80 | - */ |
|
79 | + * Hook in ajax methods. |
|
80 | + */ |
|
81 | 81 | public static function add_ajax_events() { |
82 | 82 | |
83 | 83 | // array( 'event' => is_frontend ) |
@@ -258,11 +258,11 @@ discard block |
||
258 | 258 | global $getpaid_force_checkbox; |
259 | 259 | |
260 | 260 | // Is the request set up correctly? |
261 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) && empty( $_GET['invoice'] ) ) { |
|
262 | - aui()->alert( |
|
263 | - array( |
|
264 | - 'type' => 'warning', |
|
265 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
261 | + if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) && empty( $_GET['invoice'] ) ) { |
|
262 | + aui()->alert( |
|
263 | + array( |
|
264 | + 'type' => 'warning', |
|
265 | + 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
266 | 266 | ), |
267 | 267 | true |
268 | 268 | ); |
@@ -270,7 +270,7 @@ discard block |
||
270 | 270 | } |
271 | 271 | |
272 | 272 | // Payment form or button? |
273 | - if ( ! empty( $_GET['form'] ) ) { |
|
273 | + if ( ! empty( $_GET['form'] ) ) { |
|
274 | 274 | $form = sanitize_text_field( urldecode( $_GET['form'] ) ); |
275 | 275 | |
276 | 276 | if ( false !== strpos( $form, '|' ) ) { |
@@ -323,10 +323,10 @@ discard block |
||
323 | 323 | getpaid_display_payment_form( $form ); |
324 | 324 | } |
325 | 325 | } elseif ( ! empty( $_GET['invoice'] ) ) { |
326 | - getpaid_display_invoice_payment_form( (int) urldecode( $_GET['invoice'] ) ); |
|
326 | + getpaid_display_invoice_payment_form( (int) urldecode( $_GET['invoice'] ) ); |
|
327 | 327 | } else { |
328 | - $items = getpaid_convert_items_to_array( sanitize_text_field( urldecode( $_GET['item'] ) ) ); |
|
329 | - getpaid_display_item_payment_form( $items ); |
|
328 | + $items = getpaid_convert_items_to_array( sanitize_text_field( urldecode( $_GET['item'] ) ) ); |
|
329 | + getpaid_display_item_payment_form( $items ); |
|
330 | 330 | } |
331 | 331 | |
332 | 332 | exit; |
@@ -643,7 +643,7 @@ discard block |
||
643 | 643 | if ( is_wp_error( $error ) ) { |
644 | 644 | $alert = $error->get_error_message(); |
645 | 645 | wp_send_json_success( compact( 'alert' ) ); |
646 | - } |
|
646 | + } |
|
647 | 647 | |
648 | 648 | // Update totals. |
649 | 649 | $invoice->recalculate_total(); |
@@ -1072,12 +1072,12 @@ discard block |
||
1072 | 1072 | } |
1073 | 1073 | |
1074 | 1074 | /** |
1075 | - * Handles file uploads. |
|
1076 | - * |
|
1077 | - * @since 1.0.0 |
|
1078 | - * @return void |
|
1079 | - */ |
|
1080 | - public static function file_upload() { |
|
1075 | + * Handles file uploads. |
|
1076 | + * |
|
1077 | + * @since 1.0.0 |
|
1078 | + * @return void |
|
1079 | + */ |
|
1080 | + public static function file_upload() { |
|
1081 | 1081 | |
1082 | 1082 | // Check nonce. |
1083 | 1083 | check_ajax_referer( 'getpaid_form_nonce' ); |
@@ -1138,7 +1138,7 @@ discard block |
||
1138 | 1138 | |
1139 | 1139 | wp_send_json_success( $response ); |
1140 | 1140 | |
1141 | - } |
|
1141 | + } |
|
1142 | 1142 | |
1143 | 1143 | } |
1144 | 1144 |
@@ -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 | * WPInv_Ajax class. |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | * Hook in ajax handlers. |
18 | 18 | */ |
19 | 19 | public static function init() { |
20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
20 | + add_action('init', array(__CLASS__, 'define_ajax'), 0); |
|
21 | + add_action('template_redirect', array(__CLASS__, 'do_wpinv_ajax'), 0); |
|
22 | 22 | self::add_ajax_events(); |
23 | 23 | } |
24 | 24 | |
@@ -27,11 +27,11 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public static function define_ajax() { |
29 | 29 | |
30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
30 | + if (!empty($_GET['wpinv-ajax'])) { |
|
31 | + getpaid_maybe_define_constant('DOING_AJAX', true); |
|
32 | + getpaid_maybe_define_constant('WPInv_DOING_AJAX', true); |
|
33 | + if (!WP_DEBUG || (WP_DEBUG && !WP_DEBUG_DISPLAY)) { |
|
34 | + /** @scrutinizer ignore-unhandled */ @ini_set('display_errors', 0); |
|
35 | 35 | } |
36 | 36 | $GLOBALS['wpdb']->hide_errors(); |
37 | 37 | } |
@@ -44,13 +44,13 @@ discard block |
||
44 | 44 | * @since 1.0.18 |
45 | 45 | */ |
46 | 46 | private static function wpinv_ajax_headers() { |
47 | - if ( ! headers_sent() ) { |
|
47 | + if (!headers_sent()) { |
|
48 | 48 | send_origin_headers(); |
49 | 49 | send_nosniff_header(); |
50 | 50 | nocache_headers(); |
51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
52 | - header( 'X-Robots-Tag: noindex' ); |
|
53 | - status_header( 200 ); |
|
51 | + header('Content-Type: text/html; charset=' . get_option('blog_charset')); |
|
52 | + header('X-Robots-Tag: noindex'); |
|
53 | + status_header(200); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
@@ -60,16 +60,16 @@ discard block |
||
60 | 60 | public static function do_wpinv_ajax() { |
61 | 61 | global $wp_query; |
62 | 62 | |
63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
63 | + if (!empty($_GET['wpinv-ajax'])) { |
|
64 | + $wp_query->set('wpinv-ajax', sanitize_text_field(wp_unslash($_GET['wpinv-ajax']))); |
|
65 | 65 | } |
66 | 66 | |
67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
67 | + $action = $wp_query->get('wpinv-ajax'); |
|
68 | 68 | |
69 | - if ( $action ) { |
|
69 | + if ($action) { |
|
70 | 70 | self::wpinv_ajax_headers(); |
71 | - $action = sanitize_text_field( $action ); |
|
72 | - do_action( 'wpinv_ajax_' . $action ); |
|
71 | + $action = sanitize_text_field($action); |
|
72 | + do_action('wpinv_ajax_' . $action); |
|
73 | 73 | wp_die(); |
74 | 74 | } |
75 | 75 | |
@@ -106,36 +106,36 @@ discard block |
||
106 | 106 | 'file_upload' => true, |
107 | 107 | ); |
108 | 108 | |
109 | - foreach ( $ajax_events as $ajax_event => $nopriv ) { |
|
110 | - add_action( 'wp_ajax_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
111 | - add_action( 'wp_ajax_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
109 | + foreach ($ajax_events as $ajax_event => $nopriv) { |
|
110 | + add_action('wp_ajax_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
111 | + add_action('wp_ajax_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
112 | 112 | |
113 | - if ( $nopriv ) { |
|
114 | - add_action( 'wp_ajax_nopriv_wpinv_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
115 | - add_action( 'wp_ajax_nopriv_getpaid_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
116 | - add_action( 'wpinv_ajax_' . $ajax_event, array( __CLASS__, $ajax_event ) ); |
|
113 | + if ($nopriv) { |
|
114 | + add_action('wp_ajax_nopriv_wpinv_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
115 | + add_action('wp_ajax_nopriv_getpaid_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
116 | + add_action('wpinv_ajax_' . $ajax_event, array(__CLASS__, $ajax_event)); |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | } |
120 | 120 | |
121 | 121 | public static function add_note() { |
122 | - check_ajax_referer( 'add-invoice-note', '_nonce' ); |
|
122 | + check_ajax_referer('add-invoice-note', '_nonce'); |
|
123 | 123 | |
124 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
124 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
125 | 125 | die( -1 ); |
126 | 126 | } |
127 | 127 | |
128 | - $post_id = absint( $_POST['post_id'] ); |
|
129 | - $note = wp_kses_post( trim( stripslashes( $_POST['note'] ) ) ); |
|
130 | - $note_type = sanitize_text_field( $_POST['note_type'] ); |
|
128 | + $post_id = absint($_POST['post_id']); |
|
129 | + $note = wp_kses_post(trim(stripslashes($_POST['note']))); |
|
130 | + $note_type = sanitize_text_field($_POST['note_type']); |
|
131 | 131 | |
132 | 132 | $is_customer_note = $note_type == 'customer' ? 1 : 0; |
133 | 133 | |
134 | - if ( $post_id > 0 ) { |
|
135 | - $note_id = wpinv_insert_payment_note( $post_id, $note, $is_customer_note ); |
|
134 | + if ($post_id > 0) { |
|
135 | + $note_id = wpinv_insert_payment_note($post_id, $note, $is_customer_note); |
|
136 | 136 | |
137 | - if ( $note_id > 0 && ! is_wp_error( $note_id ) ) { |
|
138 | - wpinv_get_invoice_note_line_item( $note_id ); |
|
137 | + if ($note_id > 0 && !is_wp_error($note_id)) { |
|
138 | + wpinv_get_invoice_note_line_item($note_id); |
|
139 | 139 | } |
140 | 140 | } |
141 | 141 | |
@@ -143,16 +143,16 @@ discard block |
||
143 | 143 | } |
144 | 144 | |
145 | 145 | public static function delete_note() { |
146 | - check_ajax_referer( 'delete-invoice-note', '_nonce' ); |
|
146 | + check_ajax_referer('delete-invoice-note', '_nonce'); |
|
147 | 147 | |
148 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
148 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
149 | 149 | die( -1 ); |
150 | 150 | } |
151 | 151 | |
152 | - $note_id = (int)$_POST['note_id']; |
|
152 | + $note_id = (int) $_POST['note_id']; |
|
153 | 153 | |
154 | - if ( $note_id > 0 ) { |
|
155 | - wp_delete_comment( $note_id, true ); |
|
154 | + if ($note_id > 0) { |
|
155 | + wp_delete_comment($note_id, true); |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | die(); |
@@ -170,34 +170,34 @@ discard block |
||
170 | 170 | public static function get_billing_details() { |
171 | 171 | |
172 | 172 | // Verify nonce. |
173 | - check_ajax_referer( 'wpinv-nonce' ); |
|
173 | + check_ajax_referer('wpinv-nonce'); |
|
174 | 174 | |
175 | 175 | // Can the user manage the plugin? |
176 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
176 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
177 | 177 | die( -1 ); |
178 | 178 | } |
179 | 179 | |
180 | 180 | // Do we have a user id? |
181 | 181 | $user_id = (int) $_GET['user_id']; |
182 | 182 | |
183 | - if ( empty( $user_id ) || ! is_numeric( $user_id ) ) { |
|
183 | + if (empty($user_id) || !is_numeric($user_id)) { |
|
184 | 184 | die( -1 ); |
185 | 185 | } |
186 | 186 | |
187 | 187 | // Fetch the billing details. |
188 | - $billing_details = wpinv_get_user_address( $user_id ); |
|
189 | - $billing_details = apply_filters( 'wpinv_ajax_billing_details', $billing_details, $user_id ); |
|
188 | + $billing_details = wpinv_get_user_address($user_id); |
|
189 | + $billing_details = apply_filters('wpinv_ajax_billing_details', $billing_details, $user_id); |
|
190 | 190 | |
191 | 191 | // unset the user id and email. |
192 | - $to_ignore = array( 'user_id', 'email' ); |
|
192 | + $to_ignore = array('user_id', 'email'); |
|
193 | 193 | |
194 | - foreach ( $to_ignore as $key ) { |
|
195 | - if ( isset( $billing_details[ $key ] ) ) { |
|
196 | - unset( $billing_details[ $key ] ); |
|
194 | + foreach ($to_ignore as $key) { |
|
195 | + if (isset($billing_details[$key])) { |
|
196 | + unset($billing_details[$key]); |
|
197 | 197 | } |
198 | 198 | } |
199 | 199 | |
200 | - wp_send_json_success( $billing_details ); |
|
200 | + wp_send_json_success($billing_details); |
|
201 | 201 | |
202 | 202 | } |
203 | 203 | |
@@ -207,47 +207,47 @@ discard block |
||
207 | 207 | public static function check_new_user_email() { |
208 | 208 | |
209 | 209 | // Verify nonce. |
210 | - check_ajax_referer( 'wpinv-nonce' ); |
|
210 | + check_ajax_referer('wpinv-nonce'); |
|
211 | 211 | |
212 | 212 | // Can the user manage the plugin? |
213 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
213 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
214 | 214 | die( -1 ); |
215 | 215 | } |
216 | 216 | |
217 | 217 | // We need an email address. |
218 | - if ( empty( $_GET['email'] ) ) { |
|
219 | - esc_html_e( "Provide the new user's email address", 'invoicing' ); |
|
218 | + if (empty($_GET['email'])) { |
|
219 | + esc_html_e("Provide the new user's email address", 'invoicing'); |
|
220 | 220 | exit; |
221 | 221 | } |
222 | 222 | |
223 | 223 | // Ensure the email is valid. |
224 | - $email = sanitize_email( $_GET['email'] ); |
|
225 | - if ( ! is_email( $email ) ) { |
|
226 | - esc_html_e( 'Invalid email address', 'invoicing' ); |
|
224 | + $email = sanitize_email($_GET['email']); |
|
225 | + if (!is_email($email)) { |
|
226 | + esc_html_e('Invalid email address', 'invoicing'); |
|
227 | 227 | exit; |
228 | 228 | } |
229 | 229 | |
230 | 230 | // And it does not exist. |
231 | - $id = email_exists( $email ); |
|
232 | - if ( $id ) { |
|
233 | - wp_send_json_success( compact( 'id' ) ); |
|
231 | + $id = email_exists($email); |
|
232 | + if ($id) { |
|
233 | + wp_send_json_success(compact('id')); |
|
234 | 234 | } |
235 | 235 | |
236 | - wp_send_json_success( true ); |
|
236 | + wp_send_json_success(true); |
|
237 | 237 | } |
238 | 238 | |
239 | 239 | public static function run_tool() { |
240 | - check_ajax_referer( 'wpinv-nonce', '_nonce' ); |
|
241 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
240 | + check_ajax_referer('wpinv-nonce', '_nonce'); |
|
241 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
242 | 242 | die( -1 ); |
243 | 243 | } |
244 | 244 | |
245 | - $tool = sanitize_text_field( $_POST['tool'] ); |
|
245 | + $tool = sanitize_text_field($_POST['tool']); |
|
246 | 246 | |
247 | - do_action( 'wpinv_run_tool' ); |
|
247 | + do_action('wpinv_run_tool'); |
|
248 | 248 | |
249 | - if ( ! empty( $tool ) ) { |
|
250 | - do_action( 'wpinv_tool_' . $tool ); |
|
249 | + if (!empty($tool)) { |
|
250 | + do_action('wpinv_tool_' . $tool); |
|
251 | 251 | } |
252 | 252 | } |
253 | 253 | |
@@ -258,11 +258,11 @@ discard block |
||
258 | 258 | global $getpaid_force_checkbox; |
259 | 259 | |
260 | 260 | // Is the request set up correctly? |
261 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) && empty( $_GET['invoice'] ) ) { |
|
261 | + if (empty($_GET['form']) && empty($_GET['item']) && empty($_GET['invoice'])) { |
|
262 | 262 | aui()->alert( |
263 | 263 | array( |
264 | 264 | 'type' => 'warning', |
265 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
265 | + 'content' => __('No payment form or item provided', 'invoicing'), |
|
266 | 266 | ), |
267 | 267 | true |
268 | 268 | ); |
@@ -270,29 +270,29 @@ discard block |
||
270 | 270 | } |
271 | 271 | |
272 | 272 | // Payment form or button? |
273 | - if ( ! empty( $_GET['form'] ) ) { |
|
274 | - $form = sanitize_text_field( urldecode( $_GET['form'] ) ); |
|
273 | + if (!empty($_GET['form'])) { |
|
274 | + $form = sanitize_text_field(urldecode($_GET['form'])); |
|
275 | 275 | |
276 | - if ( false !== strpos( $form, '|' ) ) { |
|
277 | - $form_pos = strpos( $form, '|' ); |
|
278 | - $_items = getpaid_convert_items_to_array( substr( $form, $form_pos + 1 ) ); |
|
279 | - $form = substr( $form, 0, $form_pos ); |
|
276 | + if (false !== strpos($form, '|')) { |
|
277 | + $form_pos = strpos($form, '|'); |
|
278 | + $_items = getpaid_convert_items_to_array(substr($form, $form_pos + 1)); |
|
279 | + $form = substr($form, 0, $form_pos); |
|
280 | 280 | |
281 | 281 | // Retrieve appropriate payment form. |
282 | - $payment_form = new GetPaid_Payment_Form( $form ); |
|
283 | - $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form( wpinv_get_default_payment_form() ); |
|
282 | + $payment_form = new GetPaid_Payment_Form($form); |
|
283 | + $payment_form = $payment_form->exists() ? $payment_form : new GetPaid_Payment_Form(wpinv_get_default_payment_form()); |
|
284 | 284 | |
285 | 285 | $items = array(); |
286 | 286 | $item_ids = array(); |
287 | 287 | |
288 | - foreach ( $_items as $item_id => $qty ) { |
|
289 | - if ( ! in_array( $item_id, $item_ids ) ) { |
|
290 | - $item = new GetPaid_Form_Item( $item_id ); |
|
291 | - $item->set_quantity( $qty ); |
|
288 | + foreach ($_items as $item_id => $qty) { |
|
289 | + if (!in_array($item_id, $item_ids)) { |
|
290 | + $item = new GetPaid_Form_Item($item_id); |
|
291 | + $item->set_quantity($qty); |
|
292 | 292 | |
293 | - if ( 0 == $qty ) { |
|
294 | - $item->set_allow_quantities( true ); |
|
295 | - $item->set_is_required( false ); |
|
293 | + if (0 == $qty) { |
|
294 | + $item->set_allow_quantities(true); |
|
295 | + $item->set_is_required(false); |
|
296 | 296 | $getpaid_force_checkbox = true; |
297 | 297 | } |
298 | 298 | |
@@ -301,32 +301,32 @@ discard block |
||
301 | 301 | } |
302 | 302 | } |
303 | 303 | |
304 | - if ( ! $payment_form->is_default() ) { |
|
304 | + if (!$payment_form->is_default()) { |
|
305 | 305 | |
306 | - foreach ( $payment_form->get_items() as $item ) { |
|
307 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
306 | + foreach ($payment_form->get_items() as $item) { |
|
307 | + if (!in_array($item->get_id(), $item_ids)) { |
|
308 | 308 | $item_ids[] = $item->get_id(); |
309 | 309 | $items[] = $item; |
310 | 310 | } |
311 | 311 | } |
312 | 312 | } |
313 | 313 | |
314 | - $payment_form->set_items( $items ); |
|
315 | - $extra_items = esc_attr( getpaid_convert_items_to_string( $_items ) ); |
|
316 | - $extra_items_key = md5( NONCE_KEY . AUTH_KEY . $extra_items ); |
|
314 | + $payment_form->set_items($items); |
|
315 | + $extra_items = esc_attr(getpaid_convert_items_to_string($_items)); |
|
316 | + $extra_items_key = md5(NONCE_KEY . AUTH_KEY . $extra_items); |
|
317 | 317 | $extra_items = "<input type='hidden' name='getpaid-form-items' value='$extra_items' />"; |
318 | 318 | $extra_items .= "<input type='hidden' name='getpaid-form-items-key' value='$extra_items_key' />"; |
319 | - $payment_form->display( $extra_items ); |
|
319 | + $payment_form->display($extra_items); |
|
320 | 320 | $getpaid_force_checkbox = false; |
321 | 321 | |
322 | 322 | } else { |
323 | - getpaid_display_payment_form( $form ); |
|
323 | + getpaid_display_payment_form($form); |
|
324 | 324 | } |
325 | -} elseif ( ! empty( $_GET['invoice'] ) ) { |
|
326 | - getpaid_display_invoice_payment_form( (int) urldecode( $_GET['invoice'] ) ); |
|
325 | +} elseif (!empty($_GET['invoice'])) { |
|
326 | + getpaid_display_invoice_payment_form((int) urldecode($_GET['invoice'])); |
|
327 | 327 | } else { |
328 | - $items = getpaid_convert_items_to_array( sanitize_text_field( urldecode( $_GET['item'] ) ) ); |
|
329 | - getpaid_display_item_payment_form( $items ); |
|
328 | + $items = getpaid_convert_items_to_array(sanitize_text_field(urldecode($_GET['item']))); |
|
329 | + getpaid_display_item_payment_form($items); |
|
330 | 330 | } |
331 | 331 | |
332 | 332 | exit; |
@@ -341,14 +341,14 @@ discard block |
||
341 | 341 | public static function payment_form() { |
342 | 342 | |
343 | 343 | // ... form fields... |
344 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
345 | - esc_html_e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
344 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
345 | + esc_html_e('Error: Reload the page and try again.', 'invoicing'); |
|
346 | 346 | exit; |
347 | 347 | } |
348 | 348 | |
349 | 349 | // Process the payment form. |
350 | - $checkout_class = apply_filters( 'getpaid_checkout_class', 'GetPaid_Checkout' ); |
|
351 | - $checkout = new $checkout_class( new GetPaid_Payment_Form_Submission() ); |
|
350 | + $checkout_class = apply_filters('getpaid_checkout_class', 'GetPaid_Checkout'); |
|
351 | + $checkout = new $checkout_class(new GetPaid_Payment_Form_Submission()); |
|
352 | 352 | $checkout->process_checkout(); |
353 | 353 | |
354 | 354 | exit; |
@@ -361,55 +361,55 @@ discard block |
||
361 | 361 | */ |
362 | 362 | public static function get_payment_form_states_field() { |
363 | 363 | |
364 | - if ( empty( $_GET['country'] ) || empty( $_GET['form'] ) ) { |
|
364 | + if (empty($_GET['country']) || empty($_GET['form'])) { |
|
365 | 365 | exit; |
366 | 366 | } |
367 | 367 | |
368 | - $elements = getpaid_get_payment_form_elements( (int) $_GET['form'] ); |
|
368 | + $elements = getpaid_get_payment_form_elements((int) $_GET['form']); |
|
369 | 369 | |
370 | - if ( empty( $elements ) ) { |
|
370 | + if (empty($elements)) { |
|
371 | 371 | exit; |
372 | 372 | } |
373 | 373 | |
374 | 374 | $address_fields = array(); |
375 | - foreach ( $elements as $element ) { |
|
376 | - if ( 'address' === $element['type'] ) { |
|
375 | + foreach ($elements as $element) { |
|
376 | + if ('address' === $element['type']) { |
|
377 | 377 | $address_fields = $element; |
378 | 378 | break; |
379 | 379 | } |
380 | 380 | } |
381 | 381 | |
382 | - if ( empty( $address_fields ) ) { |
|
382 | + if (empty($address_fields)) { |
|
383 | 383 | exit; |
384 | 384 | } |
385 | 385 | |
386 | - foreach ( $address_fields['fields'] as $address_field ) { |
|
386 | + foreach ($address_fields['fields'] as $address_field) { |
|
387 | 387 | |
388 | - if ( 'wpinv_state' == $address_field['name'] ) { |
|
388 | + if ('wpinv_state' == $address_field['name']) { |
|
389 | 389 | |
390 | - $wrap_class = getpaid_get_form_element_grid_class( $address_field ); |
|
391 | - $wrap_class = esc_attr( "$wrap_class getpaid-address-field-wrapper" ); |
|
392 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
393 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
394 | - $value = is_user_logged_in() ? get_user_meta( get_current_user_id(), '_wpinv_state', true ) : ''; |
|
395 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
390 | + $wrap_class = getpaid_get_form_element_grid_class($address_field); |
|
391 | + $wrap_class = esc_attr("$wrap_class getpaid-address-field-wrapper"); |
|
392 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
393 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
394 | + $value = is_user_logged_in() ? get_user_meta(get_current_user_id(), '_wpinv_state', true) : ''; |
|
395 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
396 | 396 | |
397 | - if ( ! empty( $address_field['required'] ) ) { |
|
397 | + if (!empty($address_field['required'])) { |
|
398 | 398 | $label .= "<span class='text-danger'> *</span>"; |
399 | 399 | } |
400 | 400 | |
401 | 401 | $html = getpaid_get_states_select_markup( |
402 | - sanitize_text_field( $_GET['country'] ), |
|
402 | + sanitize_text_field($_GET['country']), |
|
403 | 403 | $value, |
404 | 404 | $placeholder, |
405 | 405 | $label, |
406 | 406 | $description, |
407 | - ! empty( $address_field['required'] ), |
|
407 | + !empty($address_field['required']), |
|
408 | 408 | $wrap_class, |
409 | - sanitize_text_field( $_GET['name'] ) |
|
409 | + sanitize_text_field($_GET['name']) |
|
410 | 410 | ); |
411 | 411 | |
412 | - wp_send_json_success( $html ); |
|
412 | + wp_send_json_success($html); |
|
413 | 413 | exit; |
414 | 414 | |
415 | 415 | } |
@@ -424,66 +424,66 @@ discard block |
||
424 | 424 | public static function recalculate_invoice_totals() { |
425 | 425 | |
426 | 426 | // Verify nonce. |
427 | - check_ajax_referer( 'wpinv-nonce' ); |
|
427 | + check_ajax_referer('wpinv-nonce'); |
|
428 | 428 | |
429 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
429 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
430 | 430 | exit; |
431 | 431 | } |
432 | 432 | |
433 | 433 | // We need an invoice. |
434 | - if ( empty( $_POST['post_id'] ) ) { |
|
434 | + if (empty($_POST['post_id'])) { |
|
435 | 435 | exit; |
436 | 436 | } |
437 | 437 | |
438 | 438 | // Fetch the invoice. |
439 | - $invoice = new WPInv_Invoice( intval( $_POST['post_id'] ) ); |
|
439 | + $invoice = new WPInv_Invoice(intval($_POST['post_id'])); |
|
440 | 440 | |
441 | 441 | // Ensure it exists. |
442 | - if ( ! $invoice->get_id() ) { |
|
442 | + if (!$invoice->get_id()) { |
|
443 | 443 | exit; |
444 | 444 | } |
445 | 445 | |
446 | 446 | // Maybe set the country, state, currency. |
447 | - foreach ( array( 'country', 'state', 'currency', 'vat_number', 'discount_code' ) as $key ) { |
|
448 | - if ( isset( $_POST[ $key ] ) ) { |
|
447 | + foreach (array('country', 'state', 'currency', 'vat_number', 'discount_code') as $key) { |
|
448 | + if (isset($_POST[$key])) { |
|
449 | 449 | $method = "set_$key"; |
450 | - $invoice->$method( sanitize_text_field( $_POST[ $key ] ) ); |
|
450 | + $invoice->$method(sanitize_text_field($_POST[$key])); |
|
451 | 451 | } |
452 | 452 | } |
453 | 453 | |
454 | 454 | // Maybe disable taxes. |
455 | - $invoice->set_disable_taxes( ! empty( $_POST['taxes'] ) ); |
|
455 | + $invoice->set_disable_taxes(!empty($_POST['taxes'])); |
|
456 | 456 | |
457 | 457 | // Discount code. |
458 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
459 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
460 | - if ( $discount->exists() ) { |
|
461 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
458 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
459 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
460 | + if ($discount->exists()) { |
|
461 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
462 | 462 | } else { |
463 | - $invoice->remove_discount( 'discount_code' ); |
|
463 | + $invoice->remove_discount('discount_code'); |
|
464 | 464 | } |
465 | 465 | } |
466 | 466 | |
467 | 467 | // Recalculate totals. |
468 | 468 | $invoice->recalculate_total(); |
469 | 469 | |
470 | - $total = wpinv_price( $invoice->get_total(), $invoice->get_currency() ); |
|
471 | - $suscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
472 | - if ( is_a( $suscriptions, 'WPInv_Subscription' ) && $invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total() ) { |
|
473 | - $recurring_total = wpinv_price( $invoice->get_recurring_total(), $invoice->get_currency() ); |
|
474 | - $total .= '<small class="form-text text-muted">' . sprintf( __( 'Recurring Price: %s', 'invoicing' ), $recurring_total ) . '</small>'; |
|
470 | + $total = wpinv_price($invoice->get_total(), $invoice->get_currency()); |
|
471 | + $suscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
472 | + if (is_a($suscriptions, 'WPInv_Subscription') && $invoice->is_recurring() && $invoice->is_parent() && $invoice->get_total() != $invoice->get_recurring_total()) { |
|
473 | + $recurring_total = wpinv_price($invoice->get_recurring_total(), $invoice->get_currency()); |
|
474 | + $total .= '<small class="form-text text-muted">' . sprintf(__('Recurring Price: %s', 'invoicing'), $recurring_total) . '</small>'; |
|
475 | 475 | } |
476 | 476 | |
477 | 477 | $totals = array( |
478 | - 'subtotal' => wpinv_price( $invoice->get_subtotal(), $invoice->get_currency() ), |
|
479 | - 'discount' => wpinv_price( $invoice->get_total_discount(), $invoice->get_currency() ), |
|
480 | - 'tax' => wpinv_price( $invoice->get_total_tax(), $invoice->get_currency() ), |
|
478 | + 'subtotal' => wpinv_price($invoice->get_subtotal(), $invoice->get_currency()), |
|
479 | + 'discount' => wpinv_price($invoice->get_total_discount(), $invoice->get_currency()), |
|
480 | + 'tax' => wpinv_price($invoice->get_total_tax(), $invoice->get_currency()), |
|
481 | 481 | 'total' => $total, |
482 | 482 | ); |
483 | 483 | |
484 | - $totals = apply_filters( 'getpaid_invoice_totals', $totals, $invoice ); |
|
484 | + $totals = apply_filters('getpaid_invoice_totals', $totals, $invoice); |
|
485 | 485 | |
486 | - wp_send_json_success( compact( 'totals' ) ); |
|
486 | + wp_send_json_success(compact('totals')); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | /** |
@@ -492,33 +492,33 @@ discard block |
||
492 | 492 | public static function get_invoice_items() { |
493 | 493 | |
494 | 494 | // Verify nonce. |
495 | - check_ajax_referer( 'wpinv-nonce' ); |
|
495 | + check_ajax_referer('wpinv-nonce'); |
|
496 | 496 | |
497 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
497 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
498 | 498 | exit; |
499 | 499 | } |
500 | 500 | |
501 | 501 | // We need an invoice and items. |
502 | - if ( empty( $_POST['post_id'] ) ) { |
|
502 | + if (empty($_POST['post_id'])) { |
|
503 | 503 | exit; |
504 | 504 | } |
505 | 505 | |
506 | 506 | // Fetch the invoice. |
507 | - $invoice = new WPInv_Invoice( intval( $_POST['post_id'] ) ); |
|
507 | + $invoice = new WPInv_Invoice(intval($_POST['post_id'])); |
|
508 | 508 | |
509 | 509 | // Ensure it exists. |
510 | - if ( ! $invoice->get_id() ) { |
|
510 | + if (!$invoice->get_id()) { |
|
511 | 511 | exit; |
512 | 512 | } |
513 | 513 | |
514 | 514 | // Return an array of invoice items. |
515 | 515 | $items = array(); |
516 | 516 | |
517 | - foreach ( $invoice->get_items() as $item ) { |
|
518 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency(), $invoice->is_renewal() ); |
|
517 | + foreach ($invoice->get_items() as $item) { |
|
518 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency(), $invoice->is_renewal()); |
|
519 | 519 | } |
520 | 520 | |
521 | - wp_send_json_success( compact( 'items' ) ); |
|
521 | + wp_send_json_success(compact('items')); |
|
522 | 522 | } |
523 | 523 | |
524 | 524 | /** |
@@ -527,50 +527,50 @@ discard block |
||
527 | 527 | public static function edit_invoice_item() { |
528 | 528 | |
529 | 529 | // Verify nonce. |
530 | - check_ajax_referer( 'wpinv-nonce' ); |
|
530 | + check_ajax_referer('wpinv-nonce'); |
|
531 | 531 | |
532 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
532 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
533 | 533 | exit; |
534 | 534 | } |
535 | 535 | |
536 | 536 | // We need an invoice and item details. |
537 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['data'] ) ) { |
|
537 | + if (empty($_POST['post_id']) || empty($_POST['data'])) { |
|
538 | 538 | exit; |
539 | 539 | } |
540 | 540 | |
541 | 541 | // Fetch the invoice. |
542 | - $invoice = new WPInv_Invoice( intval( $_POST['post_id'] ) ); |
|
542 | + $invoice = new WPInv_Invoice(intval($_POST['post_id'])); |
|
543 | 543 | |
544 | 544 | // Ensure it exists and its not been paid for. |
545 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
545 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
546 | 546 | exit; |
547 | 547 | } |
548 | 548 | |
549 | 549 | // Format the data. |
550 | - $data = wp_kses_post_deep( wp_unslash( wp_list_pluck( $_POST['data'], 'value', 'field' ) ) ); |
|
550 | + $data = wp_kses_post_deep(wp_unslash(wp_list_pluck($_POST['data'], 'value', 'field'))); |
|
551 | 551 | |
552 | 552 | // Ensure that we have an item id. |
553 | - if ( empty( $data['id'] ) ) { |
|
553 | + if (empty($data['id'])) { |
|
554 | 554 | exit; |
555 | 555 | } |
556 | 556 | |
557 | 557 | // Abort if the invoice does not have the specified item. |
558 | - $item = $invoice->get_item( (int) $data['id'] ); |
|
558 | + $item = $invoice->get_item((int) $data['id']); |
|
559 | 559 | |
560 | - if ( empty( $item ) ) { |
|
560 | + if (empty($item)) { |
|
561 | 561 | exit; |
562 | 562 | } |
563 | 563 | |
564 | 564 | // Update the item. |
565 | - $item->set_price( getpaid_standardize_amount( $data['price'] ) ); |
|
566 | - $item->set_name( sanitize_text_field( $data['name'] ) ); |
|
567 | - $item->set_description( wp_kses_post( $data['description'] ) ); |
|
568 | - $item->set_quantity( floatval( $data['quantity'] ) ); |
|
565 | + $item->set_price(getpaid_standardize_amount($data['price'])); |
|
566 | + $item->set_name(sanitize_text_field($data['name'])); |
|
567 | + $item->set_description(wp_kses_post($data['description'])); |
|
568 | + $item->set_quantity(floatval($data['quantity'])); |
|
569 | 569 | |
570 | 570 | // Add it to the invoice. |
571 | - $error = $invoice->add_item( $item ); |
|
571 | + $error = $invoice->add_item($item); |
|
572 | 572 | $alert = false; |
573 | - if ( is_wp_error( $error ) ) { |
|
573 | + if (is_wp_error($error)) { |
|
574 | 574 | $alert = $error->get_error_message(); |
575 | 575 | } |
576 | 576 | |
@@ -583,11 +583,11 @@ discard block |
||
583 | 583 | // Return an array of invoice items. |
584 | 584 | $items = array(); |
585 | 585 | |
586 | - foreach ( $invoice->get_items() as $item ) { |
|
587 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
586 | + foreach ($invoice->get_items() as $item) { |
|
587 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
588 | 588 | } |
589 | 589 | |
590 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
590 | + wp_send_json_success(compact('items', 'alert')); |
|
591 | 591 | } |
592 | 592 | |
593 | 593 | /** |
@@ -596,53 +596,53 @@ discard block |
||
596 | 596 | public static function create_invoice_item() { |
597 | 597 | |
598 | 598 | // Verify nonce. |
599 | - check_ajax_referer( 'wpinv-nonce' ); |
|
599 | + check_ajax_referer('wpinv-nonce'); |
|
600 | 600 | |
601 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
601 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
602 | 602 | exit; |
603 | 603 | } |
604 | 604 | |
605 | 605 | // We need an invoice and item details. |
606 | - if ( empty( $_POST['invoice_id'] ) || empty( $_POST['_wpinv_quick'] ) ) { |
|
606 | + if (empty($_POST['invoice_id']) || empty($_POST['_wpinv_quick'])) { |
|
607 | 607 | exit; |
608 | 608 | } |
609 | 609 | |
610 | 610 | // Fetch the invoice. |
611 | - $invoice = new WPInv_Invoice( intval( $_POST['invoice_id'] ) ); |
|
611 | + $invoice = new WPInv_Invoice(intval($_POST['invoice_id'])); |
|
612 | 612 | |
613 | 613 | // Ensure it exists and its not been paid for. |
614 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
614 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
615 | 615 | exit; |
616 | 616 | } |
617 | 617 | |
618 | 618 | // Format the data. |
619 | - $data = wp_kses_post_deep( wp_unslash( $_POST['_wpinv_quick'] ) ); |
|
619 | + $data = wp_kses_post_deep(wp_unslash($_POST['_wpinv_quick'])); |
|
620 | 620 | |
621 | 621 | $item = new WPInv_Item(); |
622 | - $item->set_price( getpaid_standardize_amount( $data['price'] ) ); |
|
623 | - $item->set_name( sanitize_text_field( $data['name'] ) ); |
|
624 | - $item->set_description( wp_kses_post( $data['description'] ) ); |
|
625 | - $item->set_type( sanitize_text_field( $data['type'] ) ); |
|
626 | - $item->set_vat_rule( sanitize_text_field( $data['vat_rule'] ) ); |
|
627 | - $item->set_vat_class( sanitize_text_field( $data['vat_class'] ) ); |
|
628 | - $item->set_status( 'publish' ); |
|
622 | + $item->set_price(getpaid_standardize_amount($data['price'])); |
|
623 | + $item->set_name(sanitize_text_field($data['name'])); |
|
624 | + $item->set_description(wp_kses_post($data['description'])); |
|
625 | + $item->set_type(sanitize_text_field($data['type'])); |
|
626 | + $item->set_vat_rule(sanitize_text_field($data['vat_rule'])); |
|
627 | + $item->set_vat_class(sanitize_text_field($data['vat_class'])); |
|
628 | + $item->set_status('publish'); |
|
629 | 629 | $item->save(); |
630 | 630 | |
631 | - if ( ! $item->exists() ) { |
|
632 | - $alert = __( 'Could not create invoice item. Please try again.', 'invoicing' ); |
|
633 | - wp_send_json_success( compact( 'alert' ) ); |
|
631 | + if (!$item->exists()) { |
|
632 | + $alert = __('Could not create invoice item. Please try again.', 'invoicing'); |
|
633 | + wp_send_json_success(compact('alert')); |
|
634 | 634 | } |
635 | 635 | |
636 | - $item = new GetPaid_Form_Item( $item->get_id() ); |
|
637 | - $item->set_quantity( floatval( $data['qty'] ) ); |
|
636 | + $item = new GetPaid_Form_Item($item->get_id()); |
|
637 | + $item->set_quantity(floatval($data['qty'])); |
|
638 | 638 | |
639 | 639 | // Add it to the invoice. |
640 | - $error = $invoice->add_item( $item ); |
|
640 | + $error = $invoice->add_item($item); |
|
641 | 641 | $alert = false; |
642 | 642 | |
643 | - if ( is_wp_error( $error ) ) { |
|
643 | + if (is_wp_error($error)) { |
|
644 | 644 | $alert = $error->get_error_message(); |
645 | - wp_send_json_success( compact( 'alert' ) ); |
|
645 | + wp_send_json_success(compact('alert')); |
|
646 | 646 | } |
647 | 647 | |
648 | 648 | // Update totals. |
@@ -655,9 +655,9 @@ discard block |
||
655 | 655 | $invoice->recalculate_total(); |
656 | 656 | $invoice->save(); |
657 | 657 | ob_start(); |
658 | - GetPaid_Meta_Box_Invoice_Items::output_row( GetPaid_Meta_Box_Invoice_Items::get_columns( $invoice ), $item, $invoice ); |
|
658 | + GetPaid_Meta_Box_Invoice_Items::output_row(GetPaid_Meta_Box_Invoice_Items::get_columns($invoice), $item, $invoice); |
|
659 | 659 | $row = ob_get_clean(); |
660 | - wp_send_json_success( compact( 'row' ) ); |
|
660 | + wp_send_json_success(compact('row')); |
|
661 | 661 | } |
662 | 662 | |
663 | 663 | /** |
@@ -666,33 +666,33 @@ discard block |
||
666 | 666 | public static function remove_invoice_item() { |
667 | 667 | |
668 | 668 | // Verify nonce. |
669 | - check_ajax_referer( 'wpinv-nonce' ); |
|
669 | + check_ajax_referer('wpinv-nonce'); |
|
670 | 670 | |
671 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
671 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
672 | 672 | exit; |
673 | 673 | } |
674 | 674 | |
675 | 675 | // We need an invoice and an item. |
676 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['item_id'] ) ) { |
|
676 | + if (empty($_POST['post_id']) || empty($_POST['item_id'])) { |
|
677 | 677 | exit; |
678 | 678 | } |
679 | 679 | |
680 | 680 | // Fetch the invoice. |
681 | - $invoice = new WPInv_Invoice( intval( $_POST['post_id'] ) ); |
|
681 | + $invoice = new WPInv_Invoice(intval($_POST['post_id'])); |
|
682 | 682 | |
683 | 683 | // Ensure it exists and its not been paid for. |
684 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
684 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
685 | 685 | exit; |
686 | 686 | } |
687 | 687 | |
688 | 688 | // Abort if the invoice does not have the specified item. |
689 | - $item = $invoice->get_item( (int) $_POST['item_id'] ); |
|
689 | + $item = $invoice->get_item((int) $_POST['item_id']); |
|
690 | 690 | |
691 | - if ( empty( $item ) ) { |
|
691 | + if (empty($item)) { |
|
692 | 692 | exit; |
693 | 693 | } |
694 | 694 | |
695 | - $invoice->remove_item( (int) $_POST['item_id'] ); |
|
695 | + $invoice->remove_item((int) $_POST['item_id']); |
|
696 | 696 | |
697 | 697 | // Update totals. |
698 | 698 | $invoice->recalculate_total(); |
@@ -703,11 +703,11 @@ discard block |
||
703 | 703 | // Return an array of invoice items. |
704 | 704 | $items = array(); |
705 | 705 | |
706 | - foreach ( $invoice->get_items() as $item ) { |
|
707 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
706 | + foreach ($invoice->get_items() as $item) { |
|
707 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
708 | 708 | } |
709 | 709 | |
710 | - wp_send_json_success( compact( 'items' ) ); |
|
710 | + wp_send_json_success(compact('items')); |
|
711 | 711 | } |
712 | 712 | |
713 | 713 | /** |
@@ -716,68 +716,68 @@ discard block |
||
716 | 716 | public static function recalculate_full_prices() { |
717 | 717 | |
718 | 718 | // Verify nonce. |
719 | - check_ajax_referer( 'wpinv-nonce' ); |
|
719 | + check_ajax_referer('wpinv-nonce'); |
|
720 | 720 | |
721 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
721 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
722 | 722 | exit; |
723 | 723 | } |
724 | 724 | |
725 | 725 | // We need an invoice and item. |
726 | - if ( empty( $_POST['post_id'] ) ) { |
|
726 | + if (empty($_POST['post_id'])) { |
|
727 | 727 | exit; |
728 | 728 | } |
729 | 729 | |
730 | 730 | // Fetch the invoice. |
731 | - $invoice = new WPInv_Invoice( intval( $_POST['post_id'] ) ); |
|
731 | + $invoice = new WPInv_Invoice(intval($_POST['post_id'])); |
|
732 | 732 | $alert = false; |
733 | 733 | |
734 | 734 | // Ensure it exists and its not been paid for. |
735 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
735 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
736 | 736 | exit; |
737 | 737 | } |
738 | 738 | |
739 | - $invoice->set_items( array() ); |
|
739 | + $invoice->set_items(array()); |
|
740 | 740 | |
741 | - if ( ! empty( $_POST['getpaid_items'] ) ) { |
|
741 | + if (!empty($_POST['getpaid_items'])) { |
|
742 | 742 | |
743 | - foreach ( wp_kses_post_deep( $_POST['getpaid_items'] ) as $item_id => $args ) { |
|
744 | - $item = new GetPaid_Form_Item( $item_id ); |
|
743 | + foreach (wp_kses_post_deep($_POST['getpaid_items']) as $item_id => $args) { |
|
744 | + $item = new GetPaid_Form_Item($item_id); |
|
745 | 745 | |
746 | - if ( $item->exists() ) { |
|
747 | - $item->set_price( getpaid_standardize_amount( $args['price'] ) ); |
|
748 | - $item->set_quantity( floatval( $args['quantity'] ) ); |
|
749 | - $item->set_name( sanitize_text_field( $args['name'] ) ); |
|
750 | - $item->set_description( wp_kses_post( $args['description'] ) ); |
|
751 | - $invoice->add_item( $item ); |
|
746 | + if ($item->exists()) { |
|
747 | + $item->set_price(getpaid_standardize_amount($args['price'])); |
|
748 | + $item->set_quantity(floatval($args['quantity'])); |
|
749 | + $item->set_name(sanitize_text_field($args['name'])); |
|
750 | + $item->set_description(wp_kses_post($args['description'])); |
|
751 | + $invoice->add_item($item); |
|
752 | 752 | } |
753 | 753 | } |
754 | 754 | } |
755 | 755 | |
756 | - $invoice->set_disable_taxes( ! empty( $_POST['disable_taxes'] ) ); |
|
756 | + $invoice->set_disable_taxes(!empty($_POST['disable_taxes'])); |
|
757 | 757 | |
758 | 758 | // Maybe set the country, state, currency. |
759 | - foreach ( array( 'wpinv_country', 'wpinv_state', 'wpinv_currency', 'wpinv_vat_number', 'wpinv_discount_code' ) as $key ) { |
|
760 | - if ( isset( $_POST[ $key ] ) ) { |
|
761 | - $_key = str_replace( 'wpinv_', '', $key ); |
|
759 | + foreach (array('wpinv_country', 'wpinv_state', 'wpinv_currency', 'wpinv_vat_number', 'wpinv_discount_code') as $key) { |
|
760 | + if (isset($_POST[$key])) { |
|
761 | + $_key = str_replace('wpinv_', '', $key); |
|
762 | 762 | $method = "set_$_key"; |
763 | - $invoice->$method( sanitize_text_field( $_POST[ $key ] ) ); |
|
763 | + $invoice->$method(sanitize_text_field($_POST[$key])); |
|
764 | 764 | } |
765 | 765 | } |
766 | 766 | |
767 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
768 | - if ( $discount->exists() ) { |
|
769 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
767 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
768 | + if ($discount->exists()) { |
|
769 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
770 | 770 | } else { |
771 | - $invoice->remove_discount( 'discount_code' ); |
|
771 | + $invoice->remove_discount('discount_code'); |
|
772 | 772 | } |
773 | 773 | |
774 | 774 | // Save the invoice. |
775 | 775 | $invoice->recalculate_total(); |
776 | 776 | $invoice->save(); |
777 | 777 | ob_start(); |
778 | - GetPaid_Meta_Box_Invoice_Items::output( get_post( $invoice->get_id() ), $invoice ); |
|
778 | + GetPaid_Meta_Box_Invoice_Items::output(get_post($invoice->get_id()), $invoice); |
|
779 | 779 | $table = ob_get_clean(); |
780 | - wp_send_json_success( compact( 'table' ) ); |
|
780 | + wp_send_json_success(compact('table')); |
|
781 | 781 | } |
782 | 782 | |
783 | 783 | /** |
@@ -786,42 +786,42 @@ discard block |
||
786 | 786 | public static function admin_add_invoice_item() { |
787 | 787 | |
788 | 788 | // Verify nonce. |
789 | - check_ajax_referer( 'wpinv-nonce' ); |
|
789 | + check_ajax_referer('wpinv-nonce'); |
|
790 | 790 | |
791 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
791 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
792 | 792 | exit; |
793 | 793 | } |
794 | 794 | |
795 | 795 | // We need an invoice and item. |
796 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['item_id'] ) ) { |
|
796 | + if (empty($_POST['post_id']) || empty($_POST['item_id'])) { |
|
797 | 797 | exit; |
798 | 798 | } |
799 | 799 | |
800 | 800 | // Fetch the invoice. |
801 | - $invoice = new WPInv_Invoice( intval( $_POST['post_id'] ) ); |
|
801 | + $invoice = new WPInv_Invoice(intval($_POST['post_id'])); |
|
802 | 802 | $alert = false; |
803 | 803 | |
804 | 804 | // Ensure it exists and its not been paid for. |
805 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
805 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
806 | 806 | exit; |
807 | 807 | } |
808 | 808 | |
809 | 809 | // Add the item. |
810 | - $item = new GetPaid_Form_Item( (int) $_POST['item_id'] ); |
|
811 | - $error = $invoice->add_item( $item ); |
|
810 | + $item = new GetPaid_Form_Item((int) $_POST['item_id']); |
|
811 | + $error = $invoice->add_item($item); |
|
812 | 812 | |
813 | - if ( is_wp_error( $error ) ) { |
|
813 | + if (is_wp_error($error)) { |
|
814 | 814 | $alert = $error->get_error_message(); |
815 | - wp_send_json_success( compact( 'alert' ) ); |
|
815 | + wp_send_json_success(compact('alert')); |
|
816 | 816 | } |
817 | 817 | |
818 | 818 | // Save the invoice. |
819 | 819 | $invoice->recalculate_total(); |
820 | 820 | $invoice->save(); |
821 | 821 | ob_start(); |
822 | - GetPaid_Meta_Box_Invoice_Items::output_row( GetPaid_Meta_Box_Invoice_Items::get_columns( $invoice ), $item, $invoice ); |
|
822 | + GetPaid_Meta_Box_Invoice_Items::output_row(GetPaid_Meta_Box_Invoice_Items::get_columns($invoice), $item, $invoice); |
|
823 | 823 | $row = ob_get_clean(); |
824 | - wp_send_json_success( compact( 'row' ) ); |
|
824 | + wp_send_json_success(compact('row')); |
|
825 | 825 | } |
826 | 826 | |
827 | 827 | /** |
@@ -830,39 +830,39 @@ discard block |
||
830 | 830 | public static function add_invoice_items() { |
831 | 831 | |
832 | 832 | // Verify nonce. |
833 | - check_ajax_referer( 'wpinv-nonce' ); |
|
833 | + check_ajax_referer('wpinv-nonce'); |
|
834 | 834 | |
835 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
835 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
836 | 836 | exit; |
837 | 837 | } |
838 | 838 | |
839 | 839 | // We need an invoice and items. |
840 | - if ( empty( $_POST['post_id'] ) || empty( $_POST['items'] ) ) { |
|
840 | + if (empty($_POST['post_id']) || empty($_POST['items'])) { |
|
841 | 841 | exit; |
842 | 842 | } |
843 | 843 | |
844 | 844 | // Fetch the invoice. |
845 | - $invoice = new WPInv_Invoice( intval( $_POST['post_id'] ) ); |
|
845 | + $invoice = new WPInv_Invoice(intval($_POST['post_id'])); |
|
846 | 846 | $alert = false; |
847 | 847 | |
848 | 848 | // Ensure it exists and its not been paid for. |
849 | - if ( ! $invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded() ) { |
|
849 | + if (!$invoice->get_id() || $invoice->is_paid() || $invoice->is_refunded()) { |
|
850 | 850 | exit; |
851 | 851 | } |
852 | 852 | |
853 | 853 | // Add the items. |
854 | - foreach ( wp_kses_post_deep( wp_unslash( $_POST['items'] ) ) as $data ) { |
|
854 | + foreach (wp_kses_post_deep(wp_unslash($_POST['items'])) as $data) { |
|
855 | 855 | |
856 | - $item = new GetPaid_Form_Item( (int) $data['id'] ); |
|
856 | + $item = new GetPaid_Form_Item((int) $data['id']); |
|
857 | 857 | |
858 | - if ( is_numeric( $data['qty'] ) && (float) $data['qty'] > 0 ) { |
|
859 | - $item->set_quantity( floatval( $data['qty'] ) ); |
|
858 | + if (is_numeric($data['qty']) && (float) $data['qty'] > 0) { |
|
859 | + $item->set_quantity(floatval($data['qty'])); |
|
860 | 860 | } |
861 | 861 | |
862 | - if ( $item->get_id() > 0 ) { |
|
863 | - $error = $invoice->add_item( $item ); |
|
862 | + if ($item->get_id() > 0) { |
|
863 | + $error = $invoice->add_item($item); |
|
864 | 864 | |
865 | - if ( is_wp_error( $error ) ) { |
|
865 | + if (is_wp_error($error)) { |
|
866 | 866 | $alert = $error->get_error_message(); |
867 | 867 | } |
868 | 868 | } |
@@ -875,11 +875,11 @@ discard block |
||
875 | 875 | // Return an array of invoice items. |
876 | 876 | $items = array(); |
877 | 877 | |
878 | - foreach ( $invoice->get_items() as $item ) { |
|
879 | - $items[] = $item->prepare_data_for_invoice_edit_ajax( $invoice->get_currency() ); |
|
878 | + foreach ($invoice->get_items() as $item) { |
|
879 | + $items[] = $item->prepare_data_for_invoice_edit_ajax($invoice->get_currency()); |
|
880 | 880 | } |
881 | 881 | |
882 | - wp_send_json_success( compact( 'items', 'alert' ) ); |
|
882 | + wp_send_json_success(compact('items', 'alert')); |
|
883 | 883 | } |
884 | 884 | |
885 | 885 | /** |
@@ -888,15 +888,15 @@ discard block |
||
888 | 888 | public static function get_invoicing_items() { |
889 | 889 | |
890 | 890 | // Verify nonce. |
891 | - check_ajax_referer( 'wpinv-nonce' ); |
|
891 | + check_ajax_referer('wpinv-nonce'); |
|
892 | 892 | |
893 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
893 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
894 | 894 | exit; |
895 | 895 | } |
896 | 896 | |
897 | 897 | // We need a search term. |
898 | - if ( empty( $_GET['search'] ) ) { |
|
899 | - wp_send_json_success( array() ); |
|
898 | + if (empty($_GET['search'])) { |
|
899 | + wp_send_json_success(array()); |
|
900 | 900 | } |
901 | 901 | |
902 | 902 | // Retrieve items. |
@@ -905,8 +905,8 @@ discard block |
||
905 | 905 | 'orderby' => 'title', |
906 | 906 | 'order' => 'ASC', |
907 | 907 | 'posts_per_page' => -1, |
908 | - 'post_status' => array( 'publish' ), |
|
909 | - 's' => sanitize_text_field( urldecode( $_GET['search'] ) ), |
|
908 | + 'post_status' => array('publish'), |
|
909 | + 's' => sanitize_text_field(urldecode($_GET['search'])), |
|
910 | 910 | 'meta_query' => array( |
911 | 911 | array( |
912 | 912 | 'key' => '_wpinv_type', |
@@ -916,25 +916,25 @@ discard block |
||
916 | 916 | ), |
917 | 917 | ); |
918 | 918 | |
919 | - if ( ! empty( $_GET['ignore'] ) ) { |
|
920 | - $item_args['exclude'] = wp_parse_id_list( sanitize_text_field( $_GET['ignore'] ) ); |
|
919 | + if (!empty($_GET['ignore'])) { |
|
920 | + $item_args['exclude'] = wp_parse_id_list(sanitize_text_field($_GET['ignore'])); |
|
921 | 921 | } |
922 | 922 | |
923 | - $items = get_posts( apply_filters( 'getpaid_ajax_invoice_items_query_args', $item_args ) ); |
|
923 | + $items = get_posts(apply_filters('getpaid_ajax_invoice_items_query_args', $item_args)); |
|
924 | 924 | $data = array(); |
925 | 925 | |
926 | - $is_payment_form = ( ! empty( $_GET['post_id'] ) && 'wpi_payment_form' == get_post_type( (int) $_GET['post_id'] ) ); |
|
926 | + $is_payment_form = (!empty($_GET['post_id']) && 'wpi_payment_form' == get_post_type((int) $_GET['post_id'])); |
|
927 | 927 | |
928 | - foreach ( $items as $item ) { |
|
929 | - $item = new GetPaid_Form_Item( $item ); |
|
928 | + foreach ($items as $item) { |
|
929 | + $item = new GetPaid_Form_Item($item); |
|
930 | 930 | $data[] = array( |
931 | 931 | 'id' => (int) $item->get_id(), |
932 | - 'text' => strip_tags( $item->get_name() ), |
|
933 | - 'form_data' => $is_payment_form ? $item->prepare_data_for_use( false ) : '', |
|
932 | + 'text' => strip_tags($item->get_name()), |
|
933 | + 'form_data' => $is_payment_form ? $item->prepare_data_for_use(false) : '', |
|
934 | 934 | ); |
935 | 935 | } |
936 | 936 | |
937 | - wp_send_json_success( $data ); |
|
937 | + wp_send_json_success($data); |
|
938 | 938 | |
939 | 939 | } |
940 | 940 | |
@@ -944,37 +944,37 @@ discard block |
||
944 | 944 | public static function get_customers() { |
945 | 945 | |
946 | 946 | // Verify nonce. |
947 | - check_ajax_referer( 'wpinv-nonce' ); |
|
947 | + check_ajax_referer('wpinv-nonce'); |
|
948 | 948 | |
949 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
949 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
950 | 950 | exit; |
951 | 951 | } |
952 | 952 | |
953 | 953 | // We need a search term. |
954 | - if ( empty( $_GET['search'] ) ) { |
|
955 | - wp_send_json_success( array() ); |
|
954 | + if (empty($_GET['search'])) { |
|
955 | + wp_send_json_success(array()); |
|
956 | 956 | } |
957 | 957 | |
958 | 958 | // Retrieve customers. |
959 | 959 | |
960 | 960 | $customer_args = array( |
961 | - 'fields' => array( 'ID', 'user_email', 'display_name' ), |
|
961 | + 'fields' => array('ID', 'user_email', 'display_name'), |
|
962 | 962 | 'orderby' => 'display_name', |
963 | - 'search' => '*' . sanitize_text_field( $_GET['search'] ) . '*', |
|
964 | - 'search_columns' => array( 'user_login', 'user_email', 'display_name' ), |
|
963 | + 'search' => '*' . sanitize_text_field($_GET['search']) . '*', |
|
964 | + 'search_columns' => array('user_login', 'user_email', 'display_name'), |
|
965 | 965 | ); |
966 | 966 | |
967 | - $customers = get_users( apply_filters( 'getpaid_ajax_invoice_customers_query_args', $customer_args ) ); |
|
967 | + $customers = get_users(apply_filters('getpaid_ajax_invoice_customers_query_args', $customer_args)); |
|
968 | 968 | $data = array(); |
969 | 969 | |
970 | - foreach ( $customers as $customer ) { |
|
970 | + foreach ($customers as $customer) { |
|
971 | 971 | $data[] = array( |
972 | 972 | 'id' => (int) $customer->ID, |
973 | - 'text' => strip_tags( sprintf( _x( '%1$s (%2$s)', 'user dropdown', 'invoicing' ), $customer->display_name, $customer->user_email ) ), |
|
973 | + 'text' => strip_tags(sprintf(_x('%1$s (%2$s)', 'user dropdown', 'invoicing'), $customer->display_name, $customer->user_email)), |
|
974 | 974 | ); |
975 | 975 | } |
976 | 976 | |
977 | - wp_send_json_success( $data ); |
|
977 | + wp_send_json_success($data); |
|
978 | 978 | |
979 | 979 | } |
980 | 980 | |
@@ -984,25 +984,25 @@ discard block |
||
984 | 984 | public static function get_aui_states_field() { |
985 | 985 | |
986 | 986 | // We need a country. |
987 | - if ( empty( $_GET['country'] ) ) { |
|
987 | + if (empty($_GET['country'])) { |
|
988 | 988 | exit; |
989 | 989 | } |
990 | 990 | |
991 | - $states = wpinv_get_country_states( sanitize_text_field( $_GET['country'] ) ); |
|
992 | - $state = isset( $_GET['state'] ) ? sanitize_text_field( $_GET['state'] ) : wpinv_get_default_state(); |
|
993 | - $name = isset( $_GET['name'] ) ? sanitize_text_field( $_GET['name'] ) : 'wpinv_state'; |
|
994 | - $class = isset( $_GET['class'] ) ? sanitize_text_field( $_GET['class'] ) : 'form-control-sm'; |
|
991 | + $states = wpinv_get_country_states(sanitize_text_field($_GET['country'])); |
|
992 | + $state = isset($_GET['state']) ? sanitize_text_field($_GET['state']) : wpinv_get_default_state(); |
|
993 | + $name = isset($_GET['name']) ? sanitize_text_field($_GET['name']) : 'wpinv_state'; |
|
994 | + $class = isset($_GET['class']) ? sanitize_text_field($_GET['class']) : 'form-control-sm'; |
|
995 | 995 | |
996 | - if ( empty( $states ) ) { |
|
996 | + if (empty($states)) { |
|
997 | 997 | |
998 | 998 | $html = aui()->input( |
999 | 999 | array( |
1000 | 1000 | 'type' => 'text', |
1001 | 1001 | 'id' => 'wpinv_state', |
1002 | 1002 | 'name' => $name, |
1003 | - 'label' => __( 'State', 'invoicing' ), |
|
1003 | + 'label' => __('State', 'invoicing'), |
|
1004 | 1004 | 'label_type' => 'vertical', |
1005 | - 'placeholder' => __( 'State', 'invoicing' ), |
|
1005 | + 'placeholder' => __('State', 'invoicing'), |
|
1006 | 1006 | 'class' => $class, |
1007 | 1007 | 'value' => $state, |
1008 | 1008 | ) |
@@ -1014,9 +1014,9 @@ discard block |
||
1014 | 1014 | array( |
1015 | 1015 | 'id' => 'wpinv_state', |
1016 | 1016 | 'name' => $name, |
1017 | - 'label' => __( 'State', 'invoicing' ), |
|
1017 | + 'label' => __('State', 'invoicing'), |
|
1018 | 1018 | 'label_type' => 'vertical', |
1019 | - 'placeholder' => __( 'Select a state', 'invoicing' ), |
|
1019 | + 'placeholder' => __('Select a state', 'invoicing'), |
|
1020 | 1020 | 'class' => $class, |
1021 | 1021 | 'value' => $state, |
1022 | 1022 | 'options' => $states, |
@@ -1030,7 +1030,7 @@ discard block |
||
1030 | 1030 | wp_send_json_success( |
1031 | 1031 | array( |
1032 | 1032 | 'html' => $html, |
1033 | - 'select' => ! empty( $states ), |
|
1033 | + 'select' => !empty($states), |
|
1034 | 1034 | ) |
1035 | 1035 | ); |
1036 | 1036 | |
@@ -1044,8 +1044,8 @@ discard block |
||
1044 | 1044 | public static function payment_form_refresh_prices() { |
1045 | 1045 | |
1046 | 1046 | // ... form fields... |
1047 | - if ( empty( $_POST['getpaid_payment_form_submission'] ) ) { |
|
1048 | - esc_html_e( 'Error: Reload the page and try again.', 'invoicing' ); |
|
1047 | + if (empty($_POST['getpaid_payment_form_submission'])) { |
|
1048 | + esc_html_e('Error: Reload the page and try again.', 'invoicing'); |
|
1049 | 1049 | exit; |
1050 | 1050 | } |
1051 | 1051 | |
@@ -1053,7 +1053,7 @@ discard block |
||
1053 | 1053 | $submission = new GetPaid_Payment_Form_Submission(); |
1054 | 1054 | |
1055 | 1055 | // Do we have an error? |
1056 | - if ( ! empty( $submission->last_error ) ) { |
|
1056 | + if (!empty($submission->last_error)) { |
|
1057 | 1057 | wp_send_json_error( |
1058 | 1058 | array( |
1059 | 1059 | 'code' => $submission->last_error_code, |
@@ -1063,12 +1063,12 @@ discard block |
||
1063 | 1063 | } |
1064 | 1064 | |
1065 | 1065 | // Prepare the response. |
1066 | - $response = new GetPaid_Payment_Form_Submission_Refresh_Prices( $submission ); |
|
1066 | + $response = new GetPaid_Payment_Form_Submission_Refresh_Prices($submission); |
|
1067 | 1067 | |
1068 | 1068 | // Filter the response. |
1069 | - $response = apply_filters( 'getpaid_payment_form_ajax_refresh_prices', $response->response, $submission ); |
|
1069 | + $response = apply_filters('getpaid_payment_form_ajax_refresh_prices', $response->response, $submission); |
|
1070 | 1070 | |
1071 | - wp_send_json_success( $response ); |
|
1071 | + wp_send_json_success($response); |
|
1072 | 1072 | } |
1073 | 1073 | |
1074 | 1074 | /** |
@@ -1080,63 +1080,63 @@ discard block |
||
1080 | 1080 | public static function file_upload() { |
1081 | 1081 | |
1082 | 1082 | // Check nonce. |
1083 | - check_ajax_referer( 'getpaid_form_nonce' ); |
|
1083 | + check_ajax_referer('getpaid_form_nonce'); |
|
1084 | 1084 | |
1085 | - if ( empty( $_POST['form_id'] ) || empty( $_POST['field_name'] ) || empty( $_FILES['file'] ) ) { |
|
1086 | - wp_die( esc_html_e( 'Bad Request', 'invoicing' ), 400 ); |
|
1085 | + if (empty($_POST['form_id']) || empty($_POST['field_name']) || empty($_FILES['file'])) { |
|
1086 | + wp_die(esc_html_e('Bad Request', 'invoicing'), 400); |
|
1087 | 1087 | } |
1088 | 1088 | |
1089 | 1089 | // Fetch form. |
1090 | - $form = new GetPaid_Payment_Form( intval( $_POST['form_id'] ) ); |
|
1090 | + $form = new GetPaid_Payment_Form(intval($_POST['form_id'])); |
|
1091 | 1091 | |
1092 | - if ( ! $form->is_active() ) { |
|
1093 | - wp_send_json_error( __( 'Payment form not active', 'invoicing' ) ); |
|
1092 | + if (!$form->is_active()) { |
|
1093 | + wp_send_json_error(__('Payment form not active', 'invoicing')); |
|
1094 | 1094 | } |
1095 | 1095 | |
1096 | 1096 | // Fetch appropriate field. |
1097 | - $upload_field = current( wp_list_filter( $form->get_elements(), array( 'id' => sanitize_text_field( $_POST['field_name'] ) ) ) ); |
|
1098 | - if ( empty( $upload_field ) ) { |
|
1099 | - wp_send_json_error( __( 'Invalid upload field.', 'invoicing' ) ); |
|
1097 | + $upload_field = current(wp_list_filter($form->get_elements(), array('id' => sanitize_text_field($_POST['field_name'])))); |
|
1098 | + if (empty($upload_field)) { |
|
1099 | + wp_send_json_error(__('Invalid upload field.', 'invoicing')); |
|
1100 | 1100 | } |
1101 | 1101 | |
1102 | 1102 | // Prepare allowed file types. |
1103 | - $file_types = isset( $upload_field['file_types'] ) ? $upload_field['file_types'] : array( 'jpg|jpeg|jpe', 'gif', 'png' ); |
|
1103 | + $file_types = isset($upload_field['file_types']) ? $upload_field['file_types'] : array('jpg|jpeg|jpe', 'gif', 'png'); |
|
1104 | 1104 | $all_types = getpaid_get_allowed_mime_types(); |
1105 | 1105 | $mime_types = array(); |
1106 | 1106 | |
1107 | - foreach ( $file_types as $file_type ) { |
|
1108 | - if ( isset( $all_types[ $file_type ] ) ) { |
|
1109 | - $mime_types[] = $all_types[ $file_type ]; |
|
1107 | + foreach ($file_types as $file_type) { |
|
1108 | + if (isset($all_types[$file_type])) { |
|
1109 | + $mime_types[] = $all_types[$file_type]; |
|
1110 | 1110 | } |
1111 | 1111 | } |
1112 | 1112 | |
1113 | - if ( ! in_array( $_FILES['file']['type'], $mime_types ) ) { |
|
1114 | - wp_send_json_error( __( 'Unsupported file type.', 'invoicing' ) ); |
|
1113 | + if (!in_array($_FILES['file']['type'], $mime_types)) { |
|
1114 | + wp_send_json_error(__('Unsupported file type.', 'invoicing')); |
|
1115 | 1115 | } |
1116 | 1116 | |
1117 | 1117 | // Upload file. |
1118 | - $file_name = explode( '.', strtolower( $_FILES['file']['name'] ) ); |
|
1119 | - $file_name = uniqid( 'getpaid-' ) . '.' . array_pop( $file_name ); |
|
1118 | + $file_name = explode('.', strtolower($_FILES['file']['name'])); |
|
1119 | + $file_name = uniqid('getpaid-') . '.' . array_pop($file_name); |
|
1120 | 1120 | |
1121 | 1121 | $uploaded = wp_upload_bits( |
1122 | 1122 | $file_name, |
1123 | 1123 | null, |
1124 | - file_get_contents( $_FILES['file']['tmp_name'] ) |
|
1124 | + file_get_contents($_FILES['file']['tmp_name']) |
|
1125 | 1125 | ); |
1126 | 1126 | |
1127 | - if ( ! empty( $uploaded['error'] ) ) { |
|
1128 | - wp_send_json_error( $uploaded['error'] ); |
|
1127 | + if (!empty($uploaded['error'])) { |
|
1128 | + wp_send_json_error($uploaded['error']); |
|
1129 | 1129 | } |
1130 | 1130 | |
1131 | 1131 | // Retrieve response. |
1132 | 1132 | $response = sprintf( |
1133 | 1133 | '<input type="hidden" name="%s[%s]" value="%s" />', |
1134 | - esc_attr( sanitize_text_field( $_POST['field_name'] ) ), |
|
1135 | - esc_url( $uploaded['url'] ), |
|
1136 | - esc_attr( sanitize_text_field( strtolower( $_FILES['file']['name'] ) ) ) |
|
1134 | + esc_attr(sanitize_text_field($_POST['field_name'])), |
|
1135 | + esc_url($uploaded['url']), |
|
1136 | + esc_attr(sanitize_text_field(strtolower($_FILES['file']['name']))) |
|
1137 | 1137 | ); |
1138 | 1138 | |
1139 | - wp_send_json_success( $response ); |
|
1139 | + wp_send_json_success($response); |
|
1140 | 1140 | |
1141 | 1141 | } |
1142 | 1142 |
@@ -13,58 +13,58 @@ discard block |
||
13 | 13 | class GetPaid_Authorize_Net_Gateway extends GetPaid_Authorize_Net_Legacy_Gateway { |
14 | 14 | |
15 | 15 | /** |
16 | - * Payment method id. |
|
17 | - * |
|
18 | - * @var string |
|
19 | - */ |
|
16 | + * Payment method id. |
|
17 | + * |
|
18 | + * @var string |
|
19 | + */ |
|
20 | 20 | public $id = 'authorizenet'; |
21 | 21 | |
22 | 22 | /** |
23 | - * An array of features that this gateway supports. |
|
24 | - * |
|
25 | - * @var array |
|
26 | - */ |
|
23 | + * An array of features that this gateway supports. |
|
24 | + * |
|
25 | + * @var array |
|
26 | + */ |
|
27 | 27 | protected $supports = array( 'subscription', 'sandbox', 'tokens', 'addons', 'single_subscription_group', 'multiple_subscription_groups' ); |
28 | 28 | |
29 | 29 | /** |
30 | - * Payment method order. |
|
31 | - * |
|
32 | - * @var int |
|
33 | - */ |
|
30 | + * Payment method order. |
|
31 | + * |
|
32 | + * @var int |
|
33 | + */ |
|
34 | 34 | public $order = 4; |
35 | 35 | |
36 | 36 | /** |
37 | - * Endpoint for requests from Authorize.net. |
|
38 | - * |
|
39 | - * @var string |
|
40 | - */ |
|
41 | - protected $notify_url; |
|
42 | - |
|
43 | - /** |
|
44 | - * Endpoint for requests to Authorize.net. |
|
45 | - * |
|
46 | - * @var string |
|
47 | - */ |
|
37 | + * Endpoint for requests from Authorize.net. |
|
38 | + * |
|
39 | + * @var string |
|
40 | + */ |
|
41 | + protected $notify_url; |
|
42 | + |
|
43 | + /** |
|
44 | + * Endpoint for requests to Authorize.net. |
|
45 | + * |
|
46 | + * @var string |
|
47 | + */ |
|
48 | 48 | protected $endpoint; |
49 | 49 | |
50 | 50 | /** |
51 | - * Currencies this gateway is allowed for. |
|
52 | - * |
|
53 | - * @var array |
|
54 | - */ |
|
55 | - public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
51 | + * Currencies this gateway is allowed for. |
|
52 | + * |
|
53 | + * @var array |
|
54 | + */ |
|
55 | + public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
56 | 56 | |
57 | 57 | /** |
58 | - * URL to view a transaction. |
|
59 | - * |
|
60 | - * @var string |
|
61 | - */ |
|
58 | + * URL to view a transaction. |
|
59 | + * |
|
60 | + * @var string |
|
61 | + */ |
|
62 | 62 | public $view_transaction_url = 'https://{sandbox}authorize.net/ui/themes/sandbox/Transaction/TransactionReceipt.aspx?transid=%s'; |
63 | 63 | |
64 | 64 | /** |
65 | - * Class constructor. |
|
66 | - */ |
|
67 | - public function __construct() { |
|
65 | + * Class constructor. |
|
66 | + */ |
|
67 | + public function __construct() { |
|
68 | 68 | |
69 | 69 | $this->title = __( 'Credit Card / Debit Card', 'invoicing' ); |
70 | 70 | $this->method_title = __( 'Authorize.Net', 'invoicing' ); |
@@ -76,11 +76,11 @@ discard block |
||
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
79 | - * Displays the payment method select field. |
|
80 | - * |
|
81 | - * @param int $invoice_id 0 or invoice id. |
|
82 | - * @param GetPaid_Payment_Form $form Current payment form. |
|
83 | - */ |
|
79 | + * Displays the payment method select field. |
|
80 | + * |
|
81 | + * @param int $invoice_id 0 or invoice id. |
|
82 | + * @param GetPaid_Payment_Form $form Current payment form. |
|
83 | + */ |
|
84 | 84 | public function payment_fields( $invoice_id, $form ) { |
85 | 85 | |
86 | 86 | // Let the user select a payment method. |
@@ -91,16 +91,16 @@ discard block |
||
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
94 | - * Creates a customer profile. |
|
95 | - * |
|
96 | - * |
|
97 | - * @param WPInv_Invoice $invoice Invoice. |
|
94 | + * Creates a customer profile. |
|
95 | + * |
|
96 | + * |
|
97 | + * @param WPInv_Invoice $invoice Invoice. |
|
98 | 98 | * @param array $submission_data Posted checkout fields. |
99 | 99 | * @param bool $save Whether or not to save the payment as a token. |
100 | 100 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
101 | - * @return string|WP_Error Payment profile id. |
|
102 | - */ |
|
103 | - public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
101 | + * @return string|WP_Error Payment profile id. |
|
102 | + */ |
|
103 | + public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
104 | 104 | |
105 | 105 | // Remove non-digits from the number |
106 | 106 | $submission_data['authorizenet']['cc_number'] = preg_replace( '/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -182,14 +182,14 @@ discard block |
||
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
185 | - * Retrieves a customer profile. |
|
186 | - * |
|
187 | - * |
|
188 | - * @param string $profile_id profile id. |
|
189 | - * @return string|WP_Error Profile id. |
|
185 | + * Retrieves a customer profile. |
|
186 | + * |
|
187 | + * |
|
188 | + * @param string $profile_id profile id. |
|
189 | + * @return string|WP_Error Profile id. |
|
190 | 190 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile |
191 | - */ |
|
192 | - public function get_customer_profile( $profile_id ) { |
|
191 | + */ |
|
192 | + public function get_customer_profile( $profile_id ) { |
|
193 | 193 | |
194 | 194 | // Generate args. |
195 | 195 | $args = array( |
@@ -204,17 +204,17 @@ discard block |
||
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
207 | - * Creates a customer profile. |
|
208 | - * |
|
209 | - * |
|
207 | + * Creates a customer profile. |
|
208 | + * |
|
209 | + * |
|
210 | 210 | * @param string $profile_id profile id. |
211 | - * @param WPInv_Invoice $invoice Invoice. |
|
211 | + * @param WPInv_Invoice $invoice Invoice. |
|
212 | 212 | * @param array $submission_data Posted checkout fields. |
213 | 213 | * @param bool $save Whether or not to save the payment as a token. |
214 | 214 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
215 | - * @return string|WP_Error Profile id. |
|
216 | - */ |
|
217 | - public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
215 | + * @return string|WP_Error Profile id. |
|
216 | + */ |
|
217 | + public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
218 | 218 | |
219 | 219 | // Remove non-digits from the number |
220 | 220 | $submission_data['authorizenet']['cc_number'] = preg_replace( '/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
@@ -302,13 +302,13 @@ discard block |
||
302 | 302 | } |
303 | 303 | |
304 | 304 | /** |
305 | - * Retrieves payment details from cache. |
|
306 | - * |
|
307 | - * |
|
305 | + * Retrieves payment details from cache. |
|
306 | + * |
|
307 | + * |
|
308 | 308 | * @param array $payment_details. |
309 | - * @return array|false Profile id. |
|
310 | - */ |
|
311 | - public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
309 | + * @return array|false Profile id. |
|
310 | + */ |
|
311 | + public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
312 | 312 | |
313 | 313 | $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
314 | 314 | $payment_details = hash_hmac( 'sha256', json_encode( $payment_details ), SECURE_AUTH_KEY ); |
@@ -333,13 +333,13 @@ discard block |
||
333 | 333 | } |
334 | 334 | |
335 | 335 | /** |
336 | - * Securely adds payment details to cache. |
|
337 | - * |
|
338 | - * |
|
336 | + * Securely adds payment details to cache. |
|
337 | + * |
|
338 | + * |
|
339 | 339 | * @param array $payment_details. |
340 | 340 | * @param string $payment_profile_id. |
341 | - */ |
|
342 | - public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
341 | + */ |
|
342 | + public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
343 | 343 | |
344 | 344 | $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
345 | 345 | $cached_information = is_array( $cached_information ) ? $cached_information : array(); |
@@ -351,15 +351,15 @@ discard block |
||
351 | 351 | } |
352 | 352 | |
353 | 353 | /** |
354 | - * Retrieves a customer payment profile. |
|
355 | - * |
|
356 | - * |
|
357 | - * @param string $customer_profile_id customer profile id. |
|
354 | + * Retrieves a customer payment profile. |
|
355 | + * |
|
356 | + * |
|
357 | + * @param string $customer_profile_id customer profile id. |
|
358 | 358 | * @param string $payment_profile_id payment profile id. |
359 | - * @return string|WP_Error Profile id. |
|
359 | + * @return string|WP_Error Profile id. |
|
360 | 360 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-payment-profile |
361 | - */ |
|
362 | - public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
361 | + */ |
|
362 | + public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
363 | 363 | |
364 | 364 | // Generate args. |
365 | 365 | $args = array( |
@@ -375,15 +375,15 @@ discard block |
||
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
378 | - * Charges a customer payment profile. |
|
379 | - * |
|
378 | + * Charges a customer payment profile. |
|
379 | + * |
|
380 | 380 | * @param string $customer_profile_id customer profile id. |
381 | 381 | * @param string $payment_profile_id payment profile id. |
382 | - * @param WPInv_Invoice $invoice Invoice. |
|
382 | + * @param WPInv_Invoice $invoice Invoice. |
|
383 | 383 | * @link https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-customer-profile |
384 | - * @return WP_Error|object |
|
385 | - */ |
|
386 | - public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
384 | + * @return WP_Error|object |
|
385 | + */ |
|
386 | + public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
387 | 387 | |
388 | 388 | // Generate args. |
389 | 389 | $args = array( |
@@ -429,41 +429,41 @@ discard block |
||
429 | 429 | } |
430 | 430 | |
431 | 431 | /** |
432 | - * Processes a customer charge. |
|
433 | - * |
|
432 | + * Processes a customer charge. |
|
433 | + * |
|
434 | 434 | * @param stdClass $result Api response. |
435 | - * @param WPInv_Invoice $invoice Invoice. |
|
436 | - */ |
|
437 | - public function process_charge_response( $result, $invoice ) { |
|
435 | + * @param WPInv_Invoice $invoice Invoice. |
|
436 | + */ |
|
437 | + public function process_charge_response( $result, $invoice ) { |
|
438 | 438 | |
439 | 439 | wpinv_clear_errors(); |
440 | - $response_code = (int) $result->transactionResponse->responseCode; |
|
440 | + $response_code = (int) $result->transactionResponse->responseCode; |
|
441 | 441 | |
442 | - // Succeeded. |
|
443 | - if ( 1 == $response_code || 4 == $response_code ) { |
|
442 | + // Succeeded. |
|
443 | + if ( 1 == $response_code || 4 == $response_code ) { |
|
444 | 444 | |
445 | - // Maybe set a transaction id. |
|
446 | - if ( ! empty( $result->transactionResponse->transId ) ) { |
|
447 | - $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
448 | - } |
|
445 | + // Maybe set a transaction id. |
|
446 | + if ( ! empty( $result->transactionResponse->transId ) ) { |
|
447 | + $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
448 | + } |
|
449 | 449 | |
450 | - $invoice->add_note( sprintf( __( 'Authentication code: %1$s (%2$s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
450 | + $invoice->add_note( sprintf( __( 'Authentication code: %1$s (%2$s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
451 | 451 | |
452 | - if ( 1 == $response_code ) { |
|
453 | - return $invoice->mark_paid(); |
|
454 | - } |
|
452 | + if ( 1 == $response_code ) { |
|
453 | + return $invoice->mark_paid(); |
|
454 | + } |
|
455 | 455 | |
456 | - $invoice->set_status( 'wpi-onhold' ); |
|
457 | - $invoice->add_note( |
|
456 | + $invoice->set_status( 'wpi-onhold' ); |
|
457 | + $invoice->add_note( |
|
458 | 458 | sprintf( |
459 | 459 | __( 'Held for review: %s', 'invoicing' ), |
460 | 460 | $result->transactionResponse->messages->message[0]->description |
461 | 461 | ) |
462 | - ); |
|
462 | + ); |
|
463 | 463 | |
464 | - return $invoice->save(); |
|
464 | + return $invoice->save(); |
|
465 | 465 | |
466 | - } |
|
466 | + } |
|
467 | 467 | |
468 | 468 | wpinv_set_error( 'card_declined' ); |
469 | 469 | |
@@ -475,13 +475,13 @@ discard block |
||
475 | 475 | } |
476 | 476 | |
477 | 477 | /** |
478 | - * Returns payment information. |
|
479 | - * |
|
480 | - * |
|
481 | - * @param array $card Card details. |
|
482 | - * @return array |
|
483 | - */ |
|
484 | - public function get_payment_information( $card ) { |
|
478 | + * Returns payment information. |
|
479 | + * |
|
480 | + * |
|
481 | + * @param array $card Card details. |
|
482 | + * @return array |
|
483 | + */ |
|
484 | + public function get_payment_information( $card ) { |
|
485 | 485 | return array( |
486 | 486 | |
487 | 487 | 'creditCard' => array( |
@@ -494,25 +494,25 @@ discard block |
||
494 | 494 | } |
495 | 495 | |
496 | 496 | /** |
497 | - * Returns the customer profile meta name. |
|
498 | - * |
|
499 | - * |
|
500 | - * @param WPInv_Invoice $invoice Invoice. |
|
501 | - * @return string |
|
502 | - */ |
|
503 | - public function get_customer_profile_meta_name( $invoice ) { |
|
497 | + * Returns the customer profile meta name. |
|
498 | + * |
|
499 | + * |
|
500 | + * @param WPInv_Invoice $invoice Invoice. |
|
501 | + * @return string |
|
502 | + */ |
|
503 | + public function get_customer_profile_meta_name( $invoice ) { |
|
504 | 504 | return $this->is_sandbox( $invoice ) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
505 | 505 | } |
506 | 506 | |
507 | 507 | /** |
508 | - * Validates the submitted data. |
|
509 | - * |
|
510 | - * |
|
511 | - * @param array $submission_data Posted checkout fields. |
|
508 | + * Validates the submitted data. |
|
509 | + * |
|
510 | + * |
|
511 | + * @param array $submission_data Posted checkout fields. |
|
512 | 512 | * @param WPInv_Invoice $invoice |
513 | - * @return WP_Error|string The payment profile id |
|
514 | - */ |
|
515 | - public function validate_submission_data( $submission_data, $invoice ) { |
|
513 | + * @return WP_Error|string The payment profile id |
|
514 | + */ |
|
515 | + public function validate_submission_data( $submission_data, $invoice ) { |
|
516 | 516 | |
517 | 517 | // Validate authentication details. |
518 | 518 | $auth = $this->get_auth_params(); |
@@ -544,13 +544,13 @@ discard block |
||
544 | 544 | } |
545 | 545 | |
546 | 546 | /** |
547 | - * Returns invoice line items. |
|
548 | - * |
|
549 | - * |
|
550 | - * @param WPInv_Invoice $invoice Invoice. |
|
551 | - * @return array |
|
552 | - */ |
|
553 | - public function get_line_items( $invoice ) { |
|
547 | + * Returns invoice line items. |
|
548 | + * |
|
549 | + * |
|
550 | + * @param WPInv_Invoice $invoice Invoice. |
|
551 | + * @return array |
|
552 | + */ |
|
553 | + public function get_line_items( $invoice ) { |
|
554 | 554 | $items = array(); |
555 | 555 | |
556 | 556 | foreach ( $invoice->get_items() as $item ) { |
@@ -587,15 +587,15 @@ discard block |
||
587 | 587 | } |
588 | 588 | |
589 | 589 | /** |
590 | - * Process Payment. |
|
591 | - * |
|
592 | - * |
|
593 | - * @param WPInv_Invoice $invoice Invoice. |
|
594 | - * @param array $submission_data Posted checkout fields. |
|
595 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
596 | - * @return array |
|
597 | - */ |
|
598 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
590 | + * Process Payment. |
|
591 | + * |
|
592 | + * |
|
593 | + * @param WPInv_Invoice $invoice Invoice. |
|
594 | + * @param array $submission_data Posted checkout fields. |
|
595 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
596 | + * @return array |
|
597 | + */ |
|
598 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
599 | 599 | |
600 | 600 | // Validate the submitted data. |
601 | 601 | $payment_profile_id = $this->validate_submission_data( $submission_data, $invoice ); |
@@ -628,45 +628,45 @@ discard block |
||
628 | 628 | |
629 | 629 | exit; |
630 | 630 | |
631 | - } |
|
631 | + } |
|
632 | 632 | |
633 | - /** |
|
634 | - * Processes the initial payment. |
|
635 | - * |
|
633 | + /** |
|
634 | + * Processes the initial payment. |
|
635 | + * |
|
636 | 636 | * @param WPInv_Invoice $invoice Invoice. |
637 | - */ |
|
638 | - protected function process_initial_payment( $invoice ) { |
|
637 | + */ |
|
638 | + protected function process_initial_payment( $invoice ) { |
|
639 | 639 | |
640 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
640 | + $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
641 | 641 | $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
642 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
642 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
643 | 643 | |
644 | - // Do we have an error? |
|
645 | - if ( is_wp_error( $result ) ) { |
|
646 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
647 | - wpinv_send_back_to_checkout( $invoice ); |
|
648 | - } |
|
644 | + // Do we have an error? |
|
645 | + if ( is_wp_error( $result ) ) { |
|
646 | + wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
647 | + wpinv_send_back_to_checkout( $invoice ); |
|
648 | + } |
|
649 | 649 | |
650 | - // Process the response. |
|
651 | - $this->process_charge_response( $result, $invoice ); |
|
650 | + // Process the response. |
|
651 | + $this->process_charge_response( $result, $invoice ); |
|
652 | 652 | |
653 | - if ( wpinv_get_errors() ) { |
|
654 | - wpinv_send_back_to_checkout( $invoice ); |
|
655 | - } |
|
653 | + if ( wpinv_get_errors() ) { |
|
654 | + wpinv_send_back_to_checkout( $invoice ); |
|
655 | + } |
|
656 | 656 | |
657 | - } |
|
657 | + } |
|
658 | 658 | |
659 | 659 | /** |
660 | - * Processes recurring payments. |
|
661 | - * |
|
660 | + * Processes recurring payments. |
|
661 | + * |
|
662 | 662 | * @param WPInv_Invoice $invoice Invoice. |
663 | 663 | * @param WPInv_Subscription[]|WPInv_Subscription $subscriptions Subscriptions. |
664 | - */ |
|
665 | - public function process_subscription( $invoice, $subscriptions ) { |
|
664 | + */ |
|
665 | + public function process_subscription( $invoice, $subscriptions ) { |
|
666 | 666 | |
667 | 667 | // Check if there is an initial amount to charge. |
668 | 668 | if ( (float) $invoice->get_total() > 0 ) { |
669 | - $this->process_initial_payment( $invoice ); |
|
669 | + $this->process_initial_payment( $invoice ); |
|
670 | 670 | } |
671 | 671 | |
672 | 672 | // Activate the subscriptions. |
@@ -684,36 +684,36 @@ discard block |
||
684 | 684 | } |
685 | 685 | } |
686 | 686 | |
687 | - // Redirect to the success page. |
|
687 | + // Redirect to the success page. |
|
688 | 688 | wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
689 | 689 | |
690 | 690 | } |
691 | 691 | |
692 | - /** |
|
693 | - * (Maybe) renews an authorize.net subscription profile. |
|
694 | - * |
|
695 | - * |
|
692 | + /** |
|
693 | + * (Maybe) renews an authorize.net subscription profile. |
|
694 | + * |
|
695 | + * |
|
696 | 696 | * @param WPInv_Subscription $subscription |
697 | - */ |
|
698 | - public function maybe_renew_subscription( $subscription ) { |
|
697 | + */ |
|
698 | + public function maybe_renew_subscription( $subscription ) { |
|
699 | 699 | |
700 | 700 | // Ensure its our subscription && it's active. |
701 | 701 | if ( $this->id === $subscription->get_gateway() && $subscription->has_status( 'active trialling' ) ) { |
702 | 702 | $this->renew_subscription( $subscription ); |
703 | 703 | } |
704 | 704 | |
705 | - } |
|
705 | + } |
|
706 | 706 | |
707 | 707 | /** |
708 | - * Renews a subscription. |
|
709 | - * |
|
708 | + * Renews a subscription. |
|
709 | + * |
|
710 | 710 | * @param WPInv_Subscription $subscription |
711 | - */ |
|
712 | - public function renew_subscription( $subscription ) { |
|
711 | + */ |
|
712 | + public function renew_subscription( $subscription ) { |
|
713 | 713 | |
714 | - // Generate the renewal invoice. |
|
715 | - $new_invoice = $subscription->create_payment(); |
|
716 | - $old_invoice = $subscription->get_parent_payment(); |
|
714 | + // Generate the renewal invoice. |
|
715 | + $new_invoice = $subscription->create_payment(); |
|
716 | + $old_invoice = $subscription->get_parent_payment(); |
|
717 | 717 | |
718 | 718 | if ( empty( $new_invoice ) ) { |
719 | 719 | $old_invoice->add_note( __( 'Error generating a renewal invoice.', 'invoicing' ), false, false, false ); |
@@ -722,37 +722,37 @@ discard block |
||
722 | 722 | } |
723 | 723 | |
724 | 724 | // Charge the payment method. |
725 | - $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
726 | - $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
727 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
728 | - |
|
729 | - // Do we have an error? |
|
730 | - if ( is_wp_error( $result ) ) { |
|
731 | - |
|
732 | - $old_invoice->add_note( |
|
733 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
734 | - true, |
|
735 | - false, |
|
736 | - true |
|
737 | - ); |
|
738 | - $subscription->failing(); |
|
739 | - return; |
|
740 | - |
|
741 | - } |
|
742 | - |
|
743 | - // Process the response. |
|
744 | - $this->process_charge_response( $result, $new_invoice ); |
|
745 | - |
|
746 | - if ( wpinv_get_errors() ) { |
|
747 | - |
|
748 | - $old_invoice->add_note( |
|
749 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
750 | - true, |
|
751 | - false, |
|
752 | - true |
|
753 | - ); |
|
754 | - $subscription->failing(); |
|
755 | - return; |
|
725 | + $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
726 | + $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
727 | + $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
728 | + |
|
729 | + // Do we have an error? |
|
730 | + if ( is_wp_error( $result ) ) { |
|
731 | + |
|
732 | + $old_invoice->add_note( |
|
733 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
734 | + true, |
|
735 | + false, |
|
736 | + true |
|
737 | + ); |
|
738 | + $subscription->failing(); |
|
739 | + return; |
|
740 | + |
|
741 | + } |
|
742 | + |
|
743 | + // Process the response. |
|
744 | + $this->process_charge_response( $result, $new_invoice ); |
|
745 | + |
|
746 | + if ( wpinv_get_errors() ) { |
|
747 | + |
|
748 | + $old_invoice->add_note( |
|
749 | + sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
750 | + true, |
|
751 | + false, |
|
752 | + true |
|
753 | + ); |
|
754 | + $subscription->failing(); |
|
755 | + return; |
|
756 | 756 | |
757 | 757 | } |
758 | 758 | |
@@ -761,13 +761,13 @@ discard block |
||
761 | 761 | } |
762 | 762 | |
763 | 763 | /** |
764 | - * Processes invoice addons. |
|
765 | - * |
|
766 | - * @param WPInv_Invoice $invoice |
|
767 | - * @param GetPaid_Form_Item[] $items |
|
768 | - * @return WPInv_Invoice |
|
769 | - */ |
|
770 | - public function process_addons( $invoice, $items ) { |
|
764 | + * Processes invoice addons. |
|
765 | + * |
|
766 | + * @param WPInv_Invoice $invoice |
|
767 | + * @param GetPaid_Form_Item[] $items |
|
768 | + * @return WPInv_Invoice |
|
769 | + */ |
|
770 | + public function process_addons( $invoice, $items ) { |
|
771 | 771 | |
772 | 772 | global $getpaid_authorize_addons; |
773 | 773 | |
@@ -786,7 +786,7 @@ discard block |
||
786 | 786 | $invoice->recalculate_total(); |
787 | 787 | |
788 | 788 | $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
789 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
789 | + $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
790 | 790 | |
791 | 791 | add_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ), 10, 2 ); |
792 | 792 | $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
@@ -801,11 +801,11 @@ discard block |
||
801 | 801 | } |
802 | 802 | |
803 | 803 | /** |
804 | - * Processes invoice addons. |
|
805 | - * |
|
804 | + * Processes invoice addons. |
|
805 | + * |
|
806 | 806 | * @param array $args |
807 | - * @return array |
|
808 | - */ |
|
807 | + * @return array |
|
808 | + */ |
|
809 | 809 | public function filter_addons_request( $args ) { |
810 | 810 | |
811 | 811 | global $getpaid_authorize_addons; |
@@ -839,11 +839,11 @@ discard block |
||
839 | 839 | } |
840 | 840 | |
841 | 841 | /** |
842 | - * Filters the gateway settings. |
|
843 | - * |
|
844 | - * @param array $admin_settings |
|
845 | - */ |
|
846 | - public function admin_settings( $admin_settings ) { |
|
842 | + * Filters the gateway settings. |
|
843 | + * |
|
844 | + * @param array $admin_settings |
|
845 | + */ |
|
846 | + public function admin_settings( $admin_settings ) { |
|
847 | 847 | |
848 | 848 | $currencies = sprintf( |
849 | 849 | __( 'Supported Currencies: %s', 'invoicing' ), |
@@ -883,7 +883,7 @@ discard block |
||
883 | 883 | 'readonly' => true, |
884 | 884 | ); |
885 | 885 | |
886 | - return $admin_settings; |
|
887 | - } |
|
886 | + return $admin_settings; |
|
887 | + } |
|
888 | 888 | |
889 | 889 | } |
@@ -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 | * Authorize.net Payment Gateway class. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected $supports = array( 'subscription', 'sandbox', 'tokens', 'addons', 'single_subscription_group', 'multiple_subscription_groups' ); |
|
27 | + protected $supports = array('subscription', 'sandbox', 'tokens', 'addons', 'single_subscription_group', 'multiple_subscription_groups'); |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Payment method order. |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @var array |
54 | 54 | */ |
55 | - public $currencies = array( 'USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD' ); |
|
55 | + public $currencies = array('USD', 'CAD', 'GBP', 'DKK', 'NOK', 'PLN', 'SEK', 'AUD', 'EUR', 'NZD'); |
|
56 | 56 | |
57 | 57 | /** |
58 | 58 | * URL to view a transaction. |
@@ -66,12 +66,12 @@ discard block |
||
66 | 66 | */ |
67 | 67 | public function __construct() { |
68 | 68 | |
69 | - $this->title = __( 'Credit Card / Debit Card', 'invoicing' ); |
|
70 | - $this->method_title = __( 'Authorize.Net', 'invoicing' ); |
|
71 | - $this->notify_url = getpaid_get_non_query_string_ipn_url( $this->id ); |
|
69 | + $this->title = __('Credit Card / Debit Card', 'invoicing'); |
|
70 | + $this->method_title = __('Authorize.Net', 'invoicing'); |
|
71 | + $this->notify_url = getpaid_get_non_query_string_ipn_url($this->id); |
|
72 | 72 | |
73 | - add_action( 'getpaid_should_renew_subscription', array( $this, 'maybe_renew_subscription' ) ); |
|
74 | - add_filter( 'getpaid_authorizenet_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
|
73 | + add_action('getpaid_should_renew_subscription', array($this, 'maybe_renew_subscription')); |
|
74 | + add_filter('getpaid_authorizenet_sandbox_notice', array($this, 'sandbox_notice')); |
|
75 | 75 | parent::__construct(); |
76 | 76 | } |
77 | 77 | |
@@ -81,13 +81,13 @@ discard block |
||
81 | 81 | * @param int $invoice_id 0 or invoice id. |
82 | 82 | * @param GetPaid_Payment_Form $form Current payment form. |
83 | 83 | */ |
84 | - public function payment_fields( $invoice_id, $form ) { |
|
84 | + public function payment_fields($invoice_id, $form) { |
|
85 | 85 | |
86 | 86 | // Let the user select a payment method. |
87 | 87 | $this->saved_payment_methods(); |
88 | 88 | |
89 | 89 | // Show the credit card entry form. |
90 | - $this->new_payment_method_entry( $this->get_cc_form( true ) ); |
|
90 | + $this->new_payment_method_entry($this->get_cc_form(true)); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -100,79 +100,79 @@ discard block |
||
100 | 100 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
101 | 101 | * @return string|WP_Error Payment profile id. |
102 | 102 | */ |
103 | - public function create_customer_profile( $invoice, $submission_data, $save = true ) { |
|
103 | + public function create_customer_profile($invoice, $submission_data, $save = true) { |
|
104 | 104 | |
105 | 105 | // Remove non-digits from the number |
106 | - $submission_data['authorizenet']['cc_number'] = preg_replace( '/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
|
106 | + $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number']); |
|
107 | 107 | |
108 | 108 | // Generate args. |
109 | 109 | $args = array( |
110 | 110 | 'createCustomerProfileRequest' => array( |
111 | 111 | 'merchantAuthentication' => $this->get_auth_params(), |
112 | 112 | 'profile' => array( |
113 | - 'merchantCustomerId' => getpaid_limit_length( $invoice->get_user_id(), 20 ), |
|
114 | - 'description' => getpaid_limit_length( $invoice->get_full_name(), 255 ), |
|
115 | - 'email' => getpaid_limit_length( $invoice->get_email(), 255 ), |
|
113 | + 'merchantCustomerId' => getpaid_limit_length($invoice->get_user_id(), 20), |
|
114 | + 'description' => getpaid_limit_length($invoice->get_full_name(), 255), |
|
115 | + 'email' => getpaid_limit_length($invoice->get_email(), 255), |
|
116 | 116 | 'paymentProfiles' => array( |
117 | 117 | 'customerType' => 'individual', |
118 | 118 | |
119 | 119 | // Billing information. |
120 | 120 | 'billTo' => array( |
121 | - 'firstName' => getpaid_limit_length( $invoice->get_first_name(), 50 ), |
|
122 | - 'lastName' => getpaid_limit_length( $invoice->get_last_name(), 50 ), |
|
123 | - 'address' => getpaid_limit_length( $invoice->get_address(), 60 ), |
|
124 | - 'city' => getpaid_limit_length( $invoice->get_city(), 40 ), |
|
125 | - 'state' => getpaid_limit_length( $invoice->get_state(), 40 ), |
|
126 | - 'zip' => getpaid_limit_length( $invoice->get_zip(), 20 ), |
|
127 | - 'country' => getpaid_limit_length( $invoice->get_country(), 60 ), |
|
121 | + 'firstName' => getpaid_limit_length($invoice->get_first_name(), 50), |
|
122 | + 'lastName' => getpaid_limit_length($invoice->get_last_name(), 50), |
|
123 | + 'address' => getpaid_limit_length($invoice->get_address(), 60), |
|
124 | + 'city' => getpaid_limit_length($invoice->get_city(), 40), |
|
125 | + 'state' => getpaid_limit_length($invoice->get_state(), 40), |
|
126 | + 'zip' => getpaid_limit_length($invoice->get_zip(), 20), |
|
127 | + 'country' => getpaid_limit_length($invoice->get_country(), 60), |
|
128 | 128 | ), |
129 | 129 | |
130 | 130 | // Payment information. |
131 | - 'payment' => $this->get_payment_information( $submission_data['authorizenet'] ), |
|
131 | + 'payment' => $this->get_payment_information($submission_data['authorizenet']), |
|
132 | 132 | ), |
133 | 133 | ), |
134 | - 'validationMode' => $this->is_sandbox( $invoice ) ? 'testMode' : 'liveMode', |
|
134 | + 'validationMode' => $this->is_sandbox($invoice) ? 'testMode' : 'liveMode', |
|
135 | 135 | ), |
136 | 136 | ); |
137 | 137 | |
138 | - $response = $this->post( apply_filters( 'getpaid_authorizenet_customer_profile_args', $args, $invoice ), $invoice ); |
|
138 | + $response = $this->post(apply_filters('getpaid_authorizenet_customer_profile_args', $args, $invoice), $invoice); |
|
139 | 139 | |
140 | - if ( is_wp_error( $response ) ) { |
|
140 | + if (is_wp_error($response)) { |
|
141 | 141 | |
142 | 142 | // In case the payment profile already exists remotely. |
143 | - if ( 'dup_payment_profile' === $response->get_error_code() ) { |
|
144 | - $customer_profile_id = strtok( $response->get_error_message(), '.' ); |
|
145 | - update_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), $customer_profile_id ); |
|
146 | - return strtok( '.' ); |
|
143 | + if ('dup_payment_profile' === $response->get_error_code()) { |
|
144 | + $customer_profile_id = strtok($response->get_error_message(), '.'); |
|
145 | + update_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), $customer_profile_id); |
|
146 | + return strtok('.'); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | // In case the customer profile already exists remotely. |
150 | - if ( 'E00039' === $response->get_error_code() ) { |
|
151 | - $customer_profile_id = str_replace( 'A duplicate record with ID ', '', $response->get_error_message() ); |
|
152 | - $customer_profile_id = str_replace( ' already exists.', '', $customer_profile_id ); |
|
153 | - return $this->create_customer_payment_profile( trim( $customer_profile_id ), $invoice, $submission_data, $save ); |
|
150 | + if ('E00039' === $response->get_error_code()) { |
|
151 | + $customer_profile_id = str_replace('A duplicate record with ID ', '', $response->get_error_message()); |
|
152 | + $customer_profile_id = str_replace(' already exists.', '', $customer_profile_id); |
|
153 | + return $this->create_customer_payment_profile(trim($customer_profile_id), $invoice, $submission_data, $save); |
|
154 | 154 | } |
155 | 155 | |
156 | 156 | return $response; |
157 | 157 | } |
158 | 158 | |
159 | - update_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), $response->customerProfileId ); |
|
159 | + update_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), $response->customerProfileId); |
|
160 | 160 | |
161 | 161 | // Save the payment token. |
162 | - if ( $save ) { |
|
162 | + if ($save) { |
|
163 | 163 | $this->save_token( |
164 | 164 | array( |
165 | 165 | 'id' => $response->customerPaymentProfileIdList[0], |
166 | - 'name' => getpaid_get_card_name( $submission_data['authorizenet']['cc_number'] ) . '····' . substr( $submission_data['authorizenet']['cc_number'], -4 ), |
|
166 | + 'name' => getpaid_get_card_name($submission_data['authorizenet']['cc_number']) . '····' . substr($submission_data['authorizenet']['cc_number'], -4), |
|
167 | 167 | 'default' => true, |
168 | - 'type' => $this->is_sandbox( $invoice ) ? 'sandbox' : 'live', |
|
168 | + 'type' => $this->is_sandbox($invoice) ? 'sandbox' : 'live', |
|
169 | 169 | ) |
170 | 170 | ); |
171 | 171 | } |
172 | 172 | |
173 | 173 | // Add a note about the validation response. |
174 | 174 | $invoice->add_note( |
175 | - sprintf( __( 'Created Authorize.NET customer profile: %s', 'invoicing' ), $response->validationDirectResponseList[0] ), |
|
175 | + sprintf(__('Created Authorize.NET customer profile: %s', 'invoicing'), $response->validationDirectResponseList[0]), |
|
176 | 176 | false, |
177 | 177 | false, |
178 | 178 | true |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | * @return string|WP_Error Profile id. |
190 | 190 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile |
191 | 191 | */ |
192 | - public function get_customer_profile( $profile_id ) { |
|
192 | + public function get_customer_profile($profile_id) { |
|
193 | 193 | |
194 | 194 | // Generate args. |
195 | 195 | $args = array( |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | ), |
200 | 200 | ); |
201 | 201 | |
202 | - return $this->post( $args, false ); |
|
202 | + return $this->post($args, false); |
|
203 | 203 | |
204 | 204 | } |
205 | 205 | |
@@ -214,18 +214,18 @@ discard block |
||
214 | 214 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-create-customer-profile |
215 | 215 | * @return string|WP_Error Profile id. |
216 | 216 | */ |
217 | - public function create_customer_payment_profile( $customer_profile, $invoice, $submission_data, $save ) { |
|
217 | + public function create_customer_payment_profile($customer_profile, $invoice, $submission_data, $save) { |
|
218 | 218 | |
219 | 219 | // Remove non-digits from the number |
220 | - $submission_data['authorizenet']['cc_number'] = preg_replace( '/\D/', '', $submission_data['authorizenet']['cc_number'] ); |
|
220 | + $submission_data['authorizenet']['cc_number'] = preg_replace('/\D/', '', $submission_data['authorizenet']['cc_number']); |
|
221 | 221 | |
222 | 222 | // Prepare card details. |
223 | - $payment_information = $this->get_payment_information( $submission_data['authorizenet'] ); |
|
223 | + $payment_information = $this->get_payment_information($submission_data['authorizenet']); |
|
224 | 224 | |
225 | 225 | // Authorize.NET does not support saving the same card twice. |
226 | - $cached_information = $this->retrieve_payment_profile_from_cache( $payment_information, $customer_profile, $invoice ); |
|
226 | + $cached_information = $this->retrieve_payment_profile_from_cache($payment_information, $customer_profile, $invoice); |
|
227 | 227 | |
228 | - if ( $cached_information ) { |
|
228 | + if ($cached_information) { |
|
229 | 229 | return $cached_information; |
230 | 230 | } |
231 | 231 | |
@@ -238,34 +238,34 @@ discard block |
||
238 | 238 | |
239 | 239 | // Billing information. |
240 | 240 | 'billTo' => array( |
241 | - 'firstName' => getpaid_limit_length( $invoice->get_first_name(), 50 ), |
|
242 | - 'lastName' => getpaid_limit_length( $invoice->get_last_name(), 50 ), |
|
243 | - 'address' => getpaid_limit_length( $invoice->get_address(), 60 ), |
|
244 | - 'city' => getpaid_limit_length( $invoice->get_city(), 40 ), |
|
245 | - 'state' => getpaid_limit_length( $invoice->get_state(), 40 ), |
|
246 | - 'zip' => getpaid_limit_length( $invoice->get_zip(), 20 ), |
|
247 | - 'country' => getpaid_limit_length( $invoice->get_country(), 60 ), |
|
241 | + 'firstName' => getpaid_limit_length($invoice->get_first_name(), 50), |
|
242 | + 'lastName' => getpaid_limit_length($invoice->get_last_name(), 50), |
|
243 | + 'address' => getpaid_limit_length($invoice->get_address(), 60), |
|
244 | + 'city' => getpaid_limit_length($invoice->get_city(), 40), |
|
245 | + 'state' => getpaid_limit_length($invoice->get_state(), 40), |
|
246 | + 'zip' => getpaid_limit_length($invoice->get_zip(), 20), |
|
247 | + 'country' => getpaid_limit_length($invoice->get_country(), 60), |
|
248 | 248 | ), |
249 | 249 | |
250 | 250 | // Payment information. |
251 | 251 | 'payment' => $payment_information, |
252 | 252 | ), |
253 | - 'validationMode' => $this->is_sandbox( $invoice ) ? 'testMode' : 'liveMode', |
|
253 | + 'validationMode' => $this->is_sandbox($invoice) ? 'testMode' : 'liveMode', |
|
254 | 254 | ), |
255 | 255 | ); |
256 | 256 | |
257 | - $response = $this->post( apply_filters( 'getpaid_authorizenet_create_customer_payment_profile_args', $args, $invoice ), $invoice ); |
|
257 | + $response = $this->post(apply_filters('getpaid_authorizenet_create_customer_payment_profile_args', $args, $invoice), $invoice); |
|
258 | 258 | |
259 | - if ( is_wp_error( $response ) ) { |
|
259 | + if (is_wp_error($response)) { |
|
260 | 260 | |
261 | 261 | // In case the payment profile already exists remotely. |
262 | - if ( 'dup_payment_profile' == $response->get_error_code() ) { |
|
263 | - $customer_profile_id = strtok( $response->get_error_message(), '.' ); |
|
264 | - $payment_profile_id = strtok( '.' ); |
|
265 | - update_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), $customer_profile_id ); |
|
262 | + if ('dup_payment_profile' == $response->get_error_code()) { |
|
263 | + $customer_profile_id = strtok($response->get_error_message(), '.'); |
|
264 | + $payment_profile_id = strtok('.'); |
|
265 | + update_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), $customer_profile_id); |
|
266 | 266 | |
267 | 267 | // Cache payment profile id. |
268 | - $this->add_payment_profile_to_cache( $payment_information, $payment_profile_id ); |
|
268 | + $this->add_payment_profile_to_cache($payment_information, $payment_profile_id); |
|
269 | 269 | |
270 | 270 | return $payment_profile_id; |
271 | 271 | } |
@@ -274,29 +274,29 @@ discard block |
||
274 | 274 | } |
275 | 275 | |
276 | 276 | // Save the payment token. |
277 | - if ( $save ) { |
|
277 | + if ($save) { |
|
278 | 278 | $this->save_token( |
279 | 279 | array( |
280 | 280 | 'id' => $response->customerPaymentProfileId, |
281 | - 'name' => getpaid_get_card_name( $submission_data['authorizenet']['cc_number'] ) . ' ···· ' . substr( $submission_data['authorizenet']['cc_number'], -4 ), |
|
281 | + 'name' => getpaid_get_card_name($submission_data['authorizenet']['cc_number']) . ' ···· ' . substr($submission_data['authorizenet']['cc_number'], -4), |
|
282 | 282 | 'default' => true, |
283 | - 'type' => $this->is_sandbox( $invoice ) ? 'sandbox' : 'live', |
|
283 | + 'type' => $this->is_sandbox($invoice) ? 'sandbox' : 'live', |
|
284 | 284 | ) |
285 | 285 | ); |
286 | 286 | } |
287 | 287 | |
288 | 288 | // Cache payment profile id. |
289 | - $this->add_payment_profile_to_cache( $payment_information, $response->customerPaymentProfileId ); |
|
289 | + $this->add_payment_profile_to_cache($payment_information, $response->customerPaymentProfileId); |
|
290 | 290 | |
291 | 291 | // Add a note about the validation response. |
292 | 292 | $invoice->add_note( |
293 | - sprintf( __( 'Saved Authorize.NET payment profile: %s', 'invoicing' ), $response->validationDirectResponse ), |
|
293 | + sprintf(__('Saved Authorize.NET payment profile: %s', 'invoicing'), $response->validationDirectResponse), |
|
294 | 294 | false, |
295 | 295 | false, |
296 | 296 | true |
297 | 297 | ); |
298 | 298 | |
299 | - update_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), $customer_profile ); |
|
299 | + update_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), $customer_profile); |
|
300 | 300 | |
301 | 301 | return $response->customerPaymentProfileId; |
302 | 302 | } |
@@ -308,12 +308,12 @@ discard block |
||
308 | 308 | * @param array $payment_details. |
309 | 309 | * @return array|false Profile id. |
310 | 310 | */ |
311 | - public function retrieve_payment_profile_from_cache( $payment_details, $customer_profile, $invoice ) { |
|
311 | + public function retrieve_payment_profile_from_cache($payment_details, $customer_profile, $invoice) { |
|
312 | 312 | |
313 | - $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
|
314 | - $payment_details = hash_hmac( 'sha256', json_encode( $payment_details ), SECURE_AUTH_KEY ); |
|
313 | + $cached_information = get_option('getpaid_authorize_net_cached_profiles', array()); |
|
314 | + $payment_details = hash_hmac('sha256', json_encode($payment_details), SECURE_AUTH_KEY); |
|
315 | 315 | |
316 | - if ( ! is_array( $cached_information ) || ! array_key_exists( $payment_details, $cached_information ) ) { |
|
316 | + if (!is_array($cached_information) || !array_key_exists($payment_details, $cached_information)) { |
|
317 | 317 | return false; |
318 | 318 | } |
319 | 319 | |
@@ -322,13 +322,13 @@ discard block |
||
322 | 322 | 'getCustomerPaymentProfileRequest' => array( |
323 | 323 | 'merchantAuthentication' => $this->get_auth_params(), |
324 | 324 | 'customerProfileId' => $customer_profile, |
325 | - 'customerPaymentProfileId' => $cached_information[ $payment_details ], |
|
325 | + 'customerPaymentProfileId' => $cached_information[$payment_details], |
|
326 | 326 | ), |
327 | 327 | ); |
328 | 328 | |
329 | - $response = $this->post( $args, $invoice ); |
|
329 | + $response = $this->post($args, $invoice); |
|
330 | 330 | |
331 | - return is_wp_error( $response ) ? false : $cached_information[ $payment_details ]; |
|
331 | + return is_wp_error($response) ? false : $cached_information[$payment_details]; |
|
332 | 332 | |
333 | 333 | } |
334 | 334 | |
@@ -339,14 +339,14 @@ discard block |
||
339 | 339 | * @param array $payment_details. |
340 | 340 | * @param string $payment_profile_id. |
341 | 341 | */ |
342 | - public function add_payment_profile_to_cache( $payment_details, $payment_profile_id ) { |
|
342 | + public function add_payment_profile_to_cache($payment_details, $payment_profile_id) { |
|
343 | 343 | |
344 | - $cached_information = get_option( 'getpaid_authorize_net_cached_profiles', array() ); |
|
345 | - $cached_information = is_array( $cached_information ) ? $cached_information : array(); |
|
346 | - $payment_details = hash_hmac( 'sha256', json_encode( $payment_details ), SECURE_AUTH_KEY ); |
|
344 | + $cached_information = get_option('getpaid_authorize_net_cached_profiles', array()); |
|
345 | + $cached_information = is_array($cached_information) ? $cached_information : array(); |
|
346 | + $payment_details = hash_hmac('sha256', json_encode($payment_details), SECURE_AUTH_KEY); |
|
347 | 347 | |
348 | - $cached_information[ $payment_details ] = $payment_profile_id; |
|
349 | - update_option( 'getpaid_authorize_net_cached_profiles', $cached_information ); |
|
348 | + $cached_information[$payment_details] = $payment_profile_id; |
|
349 | + update_option('getpaid_authorize_net_cached_profiles', $cached_information); |
|
350 | 350 | |
351 | 351 | } |
352 | 352 | |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | * @return string|WP_Error Profile id. |
360 | 360 | * @link https://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-payment-profile |
361 | 361 | */ |
362 | - public function get_customer_payment_profile( $customer_profile_id, $payment_profile_id ) { |
|
362 | + public function get_customer_payment_profile($customer_profile_id, $payment_profile_id) { |
|
363 | 363 | |
364 | 364 | // Generate args. |
365 | 365 | $args = array( |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | ), |
371 | 371 | ); |
372 | 372 | |
373 | - return $this->post( $args, false ); |
|
373 | + return $this->post($args, false); |
|
374 | 374 | |
375 | 375 | } |
376 | 376 | |
@@ -383,7 +383,7 @@ discard block |
||
383 | 383 | * @link https://developer.authorize.net/api/reference/index.html#payment-transactions-charge-a-customer-profile |
384 | 384 | * @return WP_Error|object |
385 | 385 | */ |
386 | - public function charge_customer_payment_profile( $customer_profile_id, $payment_profile_id, $invoice ) { |
|
386 | + public function charge_customer_payment_profile($customer_profile_id, $payment_profile_id, $invoice) { |
|
387 | 387 | |
388 | 388 | // Generate args. |
389 | 389 | $args = array( |
@@ -403,28 +403,28 @@ discard block |
||
403 | 403 | ), |
404 | 404 | ), |
405 | 405 | 'order' => array( |
406 | - 'invoiceNumber' => getpaid_limit_length( $invoice->get_number(), 20 ), |
|
406 | + 'invoiceNumber' => getpaid_limit_length($invoice->get_number(), 20), |
|
407 | 407 | ), |
408 | - 'lineItems' => array( 'lineItem' => $this->get_line_items( $invoice ) ), |
|
408 | + 'lineItems' => array('lineItem' => $this->get_line_items($invoice)), |
|
409 | 409 | 'tax' => array( |
410 | 410 | 'amount' => $invoice->get_total_tax(), |
411 | - 'name' => __( 'TAX', 'invoicing' ), |
|
411 | + 'name' => __('TAX', 'invoicing'), |
|
412 | 412 | ), |
413 | - 'poNumber' => getpaid_limit_length( $invoice->get_number(), 25 ), |
|
413 | + 'poNumber' => getpaid_limit_length($invoice->get_number(), 25), |
|
414 | 414 | 'customer' => array( |
415 | - 'id' => getpaid_limit_length( $invoice->get_user_id(), 25 ), |
|
416 | - 'email' => getpaid_limit_length( $invoice->get_email(), 25 ), |
|
415 | + 'id' => getpaid_limit_length($invoice->get_user_id(), 25), |
|
416 | + 'email' => getpaid_limit_length($invoice->get_email(), 25), |
|
417 | 417 | ), |
418 | 418 | 'customerIP' => $invoice->get_ip(), |
419 | 419 | ), |
420 | 420 | ), |
421 | 421 | ); |
422 | 422 | |
423 | - if ( 0 == $invoice->get_total_tax() ) { |
|
424 | - unset( $args['createTransactionRequest']['transactionRequest']['tax'] ); |
|
423 | + if (0 == $invoice->get_total_tax()) { |
|
424 | + unset($args['createTransactionRequest']['transactionRequest']['tax']); |
|
425 | 425 | } |
426 | 426 | |
427 | - return $this->post( apply_filters( 'getpaid_authorizenet_charge_customer_payment_profile_args', $args, $invoice ), $invoice ); |
|
427 | + return $this->post(apply_filters('getpaid_authorizenet_charge_customer_payment_profile_args', $args, $invoice), $invoice); |
|
428 | 428 | |
429 | 429 | } |
430 | 430 | |
@@ -434,29 +434,29 @@ discard block |
||
434 | 434 | * @param stdClass $result Api response. |
435 | 435 | * @param WPInv_Invoice $invoice Invoice. |
436 | 436 | */ |
437 | - public function process_charge_response( $result, $invoice ) { |
|
437 | + public function process_charge_response($result, $invoice) { |
|
438 | 438 | |
439 | 439 | wpinv_clear_errors(); |
440 | 440 | $response_code = (int) $result->transactionResponse->responseCode; |
441 | 441 | |
442 | 442 | // Succeeded. |
443 | - if ( 1 == $response_code || 4 == $response_code ) { |
|
443 | + if (1 == $response_code || 4 == $response_code) { |
|
444 | 444 | |
445 | 445 | // Maybe set a transaction id. |
446 | - if ( ! empty( $result->transactionResponse->transId ) ) { |
|
447 | - $invoice->set_transaction_id( $result->transactionResponse->transId ); |
|
446 | + if (!empty($result->transactionResponse->transId)) { |
|
447 | + $invoice->set_transaction_id($result->transactionResponse->transId); |
|
448 | 448 | } |
449 | 449 | |
450 | - $invoice->add_note( sprintf( __( 'Authentication code: %1$s (%2$s).', 'invoicing' ), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber ), false, false, true ); |
|
450 | + $invoice->add_note(sprintf(__('Authentication code: %1$s (%2$s).', 'invoicing'), $result->transactionResponse->authCode, $result->transactionResponse->accountNumber), false, false, true); |
|
451 | 451 | |
452 | - if ( 1 == $response_code ) { |
|
452 | + if (1 == $response_code) { |
|
453 | 453 | return $invoice->mark_paid(); |
454 | 454 | } |
455 | 455 | |
456 | - $invoice->set_status( 'wpi-onhold' ); |
|
456 | + $invoice->set_status('wpi-onhold'); |
|
457 | 457 | $invoice->add_note( |
458 | 458 | sprintf( |
459 | - __( 'Held for review: %s', 'invoicing' ), |
|
459 | + __('Held for review: %s', 'invoicing'), |
|
460 | 460 | $result->transactionResponse->messages->message[0]->description |
461 | 461 | ) |
462 | 462 | ); |
@@ -465,11 +465,11 @@ discard block |
||
465 | 465 | |
466 | 466 | } |
467 | 467 | |
468 | - wpinv_set_error( 'card_declined' ); |
|
468 | + wpinv_set_error('card_declined'); |
|
469 | 469 | |
470 | - if ( ! empty( $result->transactionResponse->errors ) ) { |
|
470 | + if (!empty($result->transactionResponse->errors)) { |
|
471 | 471 | $errors = (object) $result->transactionResponse->errors; |
472 | - wpinv_set_error( $errors->error[0]->errorCode, esc_html( $errors->error[0]->errorText ) ); |
|
472 | + wpinv_set_error($errors->error[0]->errorCode, esc_html($errors->error[0]->errorText)); |
|
473 | 473 | } |
474 | 474 | |
475 | 475 | } |
@@ -481,7 +481,7 @@ discard block |
||
481 | 481 | * @param array $card Card details. |
482 | 482 | * @return array |
483 | 483 | */ |
484 | - public function get_payment_information( $card ) { |
|
484 | + public function get_payment_information($card) { |
|
485 | 485 | return array( |
486 | 486 | |
487 | 487 | 'creditCard' => array( |
@@ -500,8 +500,8 @@ discard block |
||
500 | 500 | * @param WPInv_Invoice $invoice Invoice. |
501 | 501 | * @return string |
502 | 502 | */ |
503 | - public function get_customer_profile_meta_name( $invoice ) { |
|
504 | - return $this->is_sandbox( $invoice ) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
|
503 | + public function get_customer_profile_meta_name($invoice) { |
|
504 | + return $this->is_sandbox($invoice) ? 'getpaid_authorizenet_sandbox_customer_profile_id' : 'getpaid_authorizenet_customer_profile_id'; |
|
505 | 505 | } |
506 | 506 | |
507 | 507 | /** |
@@ -512,34 +512,34 @@ discard block |
||
512 | 512 | * @param WPInv_Invoice $invoice |
513 | 513 | * @return WP_Error|string The payment profile id |
514 | 514 | */ |
515 | - public function validate_submission_data( $submission_data, $invoice ) { |
|
515 | + public function validate_submission_data($submission_data, $invoice) { |
|
516 | 516 | |
517 | 517 | // Validate authentication details. |
518 | 518 | $auth = $this->get_auth_params(); |
519 | 519 | |
520 | - if ( empty( $auth['name'] ) || empty( $auth['transactionKey'] ) ) { |
|
521 | - return new WP_Error( 'invalid_settings', __( 'Please set-up your login id and transaction key before using this gateway.', 'invoicing' ) ); |
|
520 | + if (empty($auth['name']) || empty($auth['transactionKey'])) { |
|
521 | + return new WP_Error('invalid_settings', __('Please set-up your login id and transaction key before using this gateway.', 'invoicing')); |
|
522 | 522 | } |
523 | 523 | |
524 | 524 | // Validate the payment method. |
525 | - if ( empty( $submission_data['getpaid-authorizenet-payment-method'] ) ) { |
|
526 | - return new WP_Error( 'invalid_payment_method', __( 'Please select a different payment method or add a new card.', 'invoicing' ) ); |
|
525 | + if (empty($submission_data['getpaid-authorizenet-payment-method'])) { |
|
526 | + return new WP_Error('invalid_payment_method', __('Please select a different payment method or add a new card.', 'invoicing')); |
|
527 | 527 | } |
528 | 528 | |
529 | 529 | // Are we adding a new payment method? |
530 | - if ( 'new' != $submission_data['getpaid-authorizenet-payment-method'] ) { |
|
530 | + if ('new' != $submission_data['getpaid-authorizenet-payment-method']) { |
|
531 | 531 | return $submission_data['getpaid-authorizenet-payment-method']; |
532 | 532 | } |
533 | 533 | |
534 | 534 | // Retrieve the customer profile id. |
535 | - $profile_id = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
535 | + $profile_id = get_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), true); |
|
536 | 536 | |
537 | 537 | // Create payment method. |
538 | - if ( empty( $profile_id ) ) { |
|
539 | - return $this->create_customer_profile( $invoice, $submission_data, ! empty( $submission_data['getpaid-authorizenet-new-payment-method'] ) ); |
|
538 | + if (empty($profile_id)) { |
|
539 | + return $this->create_customer_profile($invoice, $submission_data, !empty($submission_data['getpaid-authorizenet-new-payment-method'])); |
|
540 | 540 | } |
541 | 541 | |
542 | - return $this->create_customer_payment_profile( $profile_id, $invoice, $submission_data, ! empty( $submission_data['getpaid-authorizenet-new-payment-method'] ) ); |
|
542 | + return $this->create_customer_payment_profile($profile_id, $invoice, $submission_data, !empty($submission_data['getpaid-authorizenet-new-payment-method'])); |
|
543 | 543 | |
544 | 544 | } |
545 | 545 | |
@@ -550,32 +550,32 @@ discard block |
||
550 | 550 | * @param WPInv_Invoice $invoice Invoice. |
551 | 551 | * @return array |
552 | 552 | */ |
553 | - public function get_line_items( $invoice ) { |
|
553 | + public function get_line_items($invoice) { |
|
554 | 554 | $items = array(); |
555 | 555 | |
556 | - foreach ( $invoice->get_items() as $item ) { |
|
556 | + foreach ($invoice->get_items() as $item) { |
|
557 | 557 | |
558 | 558 | $amount = $invoice->is_renewal() ? $item->get_price() : $item->get_initial_price(); |
559 | 559 | $items[] = array( |
560 | - 'itemId' => getpaid_limit_length( $item->get_id(), 31 ), |
|
561 | - 'name' => getpaid_limit_length( $item->get_raw_name(), 31 ), |
|
562 | - 'description' => getpaid_limit_length( $item->get_description(), 255 ), |
|
563 | - 'quantity' => (string) ( $invoice->get_template() == 'amount' ? 1 : $item->get_quantity() ), |
|
560 | + 'itemId' => getpaid_limit_length($item->get_id(), 31), |
|
561 | + 'name' => getpaid_limit_length($item->get_raw_name(), 31), |
|
562 | + 'description' => getpaid_limit_length($item->get_description(), 255), |
|
563 | + 'quantity' => (string) ($invoice->get_template() == 'amount' ? 1 : $item->get_quantity()), |
|
564 | 564 | 'unitPrice' => (float) $amount, |
565 | 565 | 'taxable' => wpinv_use_taxes() && $invoice->is_taxable() && 'tax-exempt' != $item->get_vat_rule(), |
566 | 566 | ); |
567 | 567 | |
568 | 568 | } |
569 | 569 | |
570 | - foreach ( $invoice->get_fees() as $fee_name => $fee ) { |
|
570 | + foreach ($invoice->get_fees() as $fee_name => $fee) { |
|
571 | 571 | |
572 | - $amount = $invoice->is_renewal() ? $fee['recurring_fee'] : $fee['initial_fee']; |
|
572 | + $amount = $invoice->is_renewal() ? $fee['recurring_fee'] : $fee['initial_fee']; |
|
573 | 573 | |
574 | - if ( $amount > 0 ) { |
|
574 | + if ($amount > 0) { |
|
575 | 575 | $items[] = array( |
576 | - 'itemId' => getpaid_limit_length( $fee_name, 31 ), |
|
577 | - 'name' => getpaid_limit_length( $fee_name, 31 ), |
|
578 | - 'description' => getpaid_limit_length( $fee_name, 255 ), |
|
576 | + 'itemId' => getpaid_limit_length($fee_name, 31), |
|
577 | + 'name' => getpaid_limit_length($fee_name, 31), |
|
578 | + 'description' => getpaid_limit_length($fee_name, 255), |
|
579 | 579 | 'quantity' => '1', |
580 | 580 | 'unitPrice' => (float) $amount, |
581 | 581 | 'taxable' => false, |
@@ -595,36 +595,36 @@ discard block |
||
595 | 595 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
596 | 596 | * @return array |
597 | 597 | */ |
598 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
598 | + public function process_payment($invoice, $submission_data, $submission) { |
|
599 | 599 | |
600 | 600 | // Validate the submitted data. |
601 | - $payment_profile_id = $this->validate_submission_data( $submission_data, $invoice ); |
|
601 | + $payment_profile_id = $this->validate_submission_data($submission_data, $invoice); |
|
602 | 602 | |
603 | 603 | // Do we have an error? |
604 | - if ( is_wp_error( $payment_profile_id ) ) { |
|
605 | - wpinv_set_error( $payment_profile_id->get_error_code(), $payment_profile_id->get_error_message() ); |
|
606 | - wpinv_send_back_to_checkout( $invoice ); |
|
604 | + if (is_wp_error($payment_profile_id)) { |
|
605 | + wpinv_set_error($payment_profile_id->get_error_code(), $payment_profile_id->get_error_message()); |
|
606 | + wpinv_send_back_to_checkout($invoice); |
|
607 | 607 | } |
608 | 608 | |
609 | 609 | // Save the payment method to the order. |
610 | - update_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', $payment_profile_id ); |
|
610 | + update_post_meta($invoice->get_id(), 'getpaid_authorizenet_profile_id', $payment_profile_id); |
|
611 | 611 | |
612 | 612 | // Check if this is a subscription or not. |
613 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
614 | - if ( ! empty( $subscriptions ) ) { |
|
615 | - $this->process_subscription( $invoice, $subscriptions ); |
|
613 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
614 | + if (!empty($subscriptions)) { |
|
615 | + $this->process_subscription($invoice, $subscriptions); |
|
616 | 616 | } |
617 | 617 | |
618 | 618 | // If it is free, send to the success page. |
619 | - if ( ! $invoice->needs_payment() ) { |
|
619 | + if (!$invoice->needs_payment()) { |
|
620 | 620 | $invoice->mark_paid(); |
621 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
621 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
622 | 622 | } |
623 | 623 | |
624 | 624 | // Charge the payment profile. |
625 | - $this->process_initial_payment( $invoice ); |
|
625 | + $this->process_initial_payment($invoice); |
|
626 | 626 | |
627 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
627 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
628 | 628 | |
629 | 629 | exit; |
630 | 630 | |
@@ -635,23 +635,23 @@ discard block |
||
635 | 635 | * |
636 | 636 | * @param WPInv_Invoice $invoice Invoice. |
637 | 637 | */ |
638 | - protected function process_initial_payment( $invoice ) { |
|
638 | + protected function process_initial_payment($invoice) { |
|
639 | 639 | |
640 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
641 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
642 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
640 | + $payment_profile_id = get_post_meta($invoice->get_id(), 'getpaid_authorizenet_profile_id', true); |
|
641 | + $customer_profile = get_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), true); |
|
642 | + $result = $this->charge_customer_payment_profile($customer_profile, $payment_profile_id, $invoice); |
|
643 | 643 | |
644 | 644 | // Do we have an error? |
645 | - if ( is_wp_error( $result ) ) { |
|
646 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
647 | - wpinv_send_back_to_checkout( $invoice ); |
|
645 | + if (is_wp_error($result)) { |
|
646 | + wpinv_set_error($result->get_error_code(), $result->get_error_message()); |
|
647 | + wpinv_send_back_to_checkout($invoice); |
|
648 | 648 | } |
649 | 649 | |
650 | 650 | // Process the response. |
651 | - $this->process_charge_response( $result, $invoice ); |
|
651 | + $this->process_charge_response($result, $invoice); |
|
652 | 652 | |
653 | - if ( wpinv_get_errors() ) { |
|
654 | - wpinv_send_back_to_checkout( $invoice ); |
|
653 | + if (wpinv_get_errors()) { |
|
654 | + wpinv_send_back_to_checkout($invoice); |
|
655 | 655 | } |
656 | 656 | |
657 | 657 | } |
@@ -662,30 +662,30 @@ discard block |
||
662 | 662 | * @param WPInv_Invoice $invoice Invoice. |
663 | 663 | * @param WPInv_Subscription[]|WPInv_Subscription $subscriptions Subscriptions. |
664 | 664 | */ |
665 | - public function process_subscription( $invoice, $subscriptions ) { |
|
665 | + public function process_subscription($invoice, $subscriptions) { |
|
666 | 666 | |
667 | 667 | // Check if there is an initial amount to charge. |
668 | - if ( (float) $invoice->get_total() > 0 ) { |
|
669 | - $this->process_initial_payment( $invoice ); |
|
668 | + if ((float) $invoice->get_total() > 0) { |
|
669 | + $this->process_initial_payment($invoice); |
|
670 | 670 | } |
671 | 671 | |
672 | 672 | // Activate the subscriptions. |
673 | - $subscriptions = is_array( $subscriptions ) ? $subscriptions : array( $subscriptions ); |
|
673 | + $subscriptions = is_array($subscriptions) ? $subscriptions : array($subscriptions); |
|
674 | 674 | |
675 | - foreach ( $subscriptions as $subscription ) { |
|
676 | - if ( $subscription->exists() ) { |
|
677 | - $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
678 | - $expiry = date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ); |
|
675 | + foreach ($subscriptions as $subscription) { |
|
676 | + if ($subscription->exists()) { |
|
677 | + $duration = strtotime($subscription->get_expiration()) - strtotime($subscription->get_date_created()); |
|
678 | + $expiry = date('Y-m-d H:i:s', (current_time('timestamp') + $duration)); |
|
679 | 679 | |
680 | - $subscription->set_next_renewal_date( $expiry ); |
|
681 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
682 | - $subscription->set_profile_id( $invoice->generate_key( 'authnet_sub_' . $invoice->get_id() . '_' . $subscription->get_id() ) ); |
|
680 | + $subscription->set_next_renewal_date($expiry); |
|
681 | + $subscription->set_date_created(current_time('mysql')); |
|
682 | + $subscription->set_profile_id($invoice->generate_key('authnet_sub_' . $invoice->get_id() . '_' . $subscription->get_id())); |
|
683 | 683 | $subscription->activate(); |
684 | 684 | } |
685 | 685 | } |
686 | 686 | |
687 | 687 | // Redirect to the success page. |
688 | - wpinv_send_to_success_page( array( 'invoice_key' => $invoice->get_key() ) ); |
|
688 | + wpinv_send_to_success_page(array('invoice_key' => $invoice->get_key())); |
|
689 | 689 | |
690 | 690 | } |
691 | 691 | |
@@ -695,11 +695,11 @@ discard block |
||
695 | 695 | * |
696 | 696 | * @param WPInv_Subscription $subscription |
697 | 697 | */ |
698 | - public function maybe_renew_subscription( $subscription ) { |
|
698 | + public function maybe_renew_subscription($subscription) { |
|
699 | 699 | |
700 | 700 | // Ensure its our subscription && it's active. |
701 | - if ( $this->id === $subscription->get_gateway() && $subscription->has_status( 'active trialling' ) ) { |
|
702 | - $this->renew_subscription( $subscription ); |
|
701 | + if ($this->id === $subscription->get_gateway() && $subscription->has_status('active trialling')) { |
|
702 | + $this->renew_subscription($subscription); |
|
703 | 703 | } |
704 | 704 | |
705 | 705 | } |
@@ -709,28 +709,28 @@ discard block |
||
709 | 709 | * |
710 | 710 | * @param WPInv_Subscription $subscription |
711 | 711 | */ |
712 | - public function renew_subscription( $subscription ) { |
|
712 | + public function renew_subscription($subscription) { |
|
713 | 713 | |
714 | 714 | // Generate the renewal invoice. |
715 | 715 | $new_invoice = $subscription->create_payment(); |
716 | 716 | $old_invoice = $subscription->get_parent_payment(); |
717 | 717 | |
718 | - if ( empty( $new_invoice ) ) { |
|
719 | - $old_invoice->add_note( __( 'Error generating a renewal invoice.', 'invoicing' ), false, false, false ); |
|
718 | + if (empty($new_invoice)) { |
|
719 | + $old_invoice->add_note(__('Error generating a renewal invoice.', 'invoicing'), false, false, false); |
|
720 | 720 | $subscription->failing(); |
721 | 721 | return; |
722 | 722 | } |
723 | 723 | |
724 | 724 | // Charge the payment method. |
725 | - $payment_profile_id = get_post_meta( $old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
726 | - $customer_profile = get_user_meta( $old_invoice->get_user_id(), $this->get_customer_profile_meta_name( $old_invoice ), true ); |
|
727 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $new_invoice ); |
|
725 | + $payment_profile_id = get_post_meta($old_invoice->get_id(), 'getpaid_authorizenet_profile_id', true); |
|
726 | + $customer_profile = get_user_meta($old_invoice->get_user_id(), $this->get_customer_profile_meta_name($old_invoice), true); |
|
727 | + $result = $this->charge_customer_payment_profile($customer_profile, $payment_profile_id, $new_invoice); |
|
728 | 728 | |
729 | 729 | // Do we have an error? |
730 | - if ( is_wp_error( $result ) ) { |
|
730 | + if (is_wp_error($result)) { |
|
731 | 731 | |
732 | 732 | $old_invoice->add_note( |
733 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), $result->get_error_message() ), |
|
733 | + sprintf(__('Error renewing subscription : ( %s ).', 'invoicing'), $result->get_error_message()), |
|
734 | 734 | true, |
735 | 735 | false, |
736 | 736 | true |
@@ -741,12 +741,12 @@ discard block |
||
741 | 741 | } |
742 | 742 | |
743 | 743 | // Process the response. |
744 | - $this->process_charge_response( $result, $new_invoice ); |
|
744 | + $this->process_charge_response($result, $new_invoice); |
|
745 | 745 | |
746 | - if ( wpinv_get_errors() ) { |
|
746 | + if (wpinv_get_errors()) { |
|
747 | 747 | |
748 | 748 | $old_invoice->add_note( |
749 | - sprintf( __( 'Error renewing subscription : ( %s ).', 'invoicing' ), getpaid_get_errors_html() ), |
|
749 | + sprintf(__('Error renewing subscription : ( %s ).', 'invoicing'), getpaid_get_errors_html()), |
|
750 | 750 | true, |
751 | 751 | false, |
752 | 752 | true |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | |
757 | 757 | } |
758 | 758 | |
759 | - $subscription->add_payment( array(), $new_invoice ); |
|
759 | + $subscription->add_payment(array(), $new_invoice); |
|
760 | 760 | $subscription->renew(); |
761 | 761 | } |
762 | 762 | |
@@ -767,33 +767,33 @@ discard block |
||
767 | 767 | * @param GetPaid_Form_Item[] $items |
768 | 768 | * @return WPInv_Invoice |
769 | 769 | */ |
770 | - public function process_addons( $invoice, $items ) { |
|
770 | + public function process_addons($invoice, $items) { |
|
771 | 771 | |
772 | 772 | global $getpaid_authorize_addons; |
773 | 773 | |
774 | 774 | $getpaid_authorize_addons = array(); |
775 | - foreach ( $items as $item ) { |
|
775 | + foreach ($items as $item) { |
|
776 | 776 | |
777 | - if ( is_null( $invoice->get_item( $item->get_id() ) ) && ! is_wp_error( $invoice->add_item( $item ) ) ) { |
|
777 | + if (is_null($invoice->get_item($item->get_id())) && !is_wp_error($invoice->add_item($item))) { |
|
778 | 778 | $getpaid_authorize_addons[] = $item; |
779 | 779 | } |
780 | 780 | } |
781 | 781 | |
782 | - if ( empty( $getpaid_authorize_addons ) ) { |
|
782 | + if (empty($getpaid_authorize_addons)) { |
|
783 | 783 | return; |
784 | 784 | } |
785 | 785 | |
786 | 786 | $invoice->recalculate_total(); |
787 | 787 | |
788 | - $payment_profile_id = get_post_meta( $invoice->get_id(), 'getpaid_authorizenet_profile_id', true ); |
|
789 | - $customer_profile = get_user_meta( $invoice->get_user_id(), $this->get_customer_profile_meta_name( $invoice ), true ); |
|
788 | + $payment_profile_id = get_post_meta($invoice->get_id(), 'getpaid_authorizenet_profile_id', true); |
|
789 | + $customer_profile = get_user_meta($invoice->get_user_id(), $this->get_customer_profile_meta_name($invoice), true); |
|
790 | 790 | |
791 | - add_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ), 10, 2 ); |
|
792 | - $result = $this->charge_customer_payment_profile( $customer_profile, $payment_profile_id, $invoice ); |
|
793 | - remove_filter( 'getpaid_authorizenet_charge_customer_payment_profile_args', array( $this, 'filter_addons_request' ) ); |
|
791 | + add_filter('getpaid_authorizenet_charge_customer_payment_profile_args', array($this, 'filter_addons_request'), 10, 2); |
|
792 | + $result = $this->charge_customer_payment_profile($customer_profile, $payment_profile_id, $invoice); |
|
793 | + remove_filter('getpaid_authorizenet_charge_customer_payment_profile_args', array($this, 'filter_addons_request')); |
|
794 | 794 | |
795 | - if ( is_wp_error( $result ) ) { |
|
796 | - wpinv_set_error( $result->get_error_code(), $result->get_error_message() ); |
|
795 | + if (is_wp_error($result)) { |
|
796 | + wpinv_set_error($result->get_error_code(), $result->get_error_message()); |
|
797 | 797 | return; |
798 | 798 | } |
799 | 799 | |
@@ -806,19 +806,19 @@ discard block |
||
806 | 806 | * @param array $args |
807 | 807 | * @return array |
808 | 808 | */ |
809 | - public function filter_addons_request( $args ) { |
|
809 | + public function filter_addons_request($args) { |
|
810 | 810 | |
811 | 811 | global $getpaid_authorize_addons; |
812 | 812 | $total = 0; |
813 | 813 | |
814 | - foreach ( $getpaid_authorize_addons as $addon ) { |
|
814 | + foreach ($getpaid_authorize_addons as $addon) { |
|
815 | 815 | $total += $addon->get_sub_total(); |
816 | 816 | } |
817 | 817 | |
818 | 818 | $args['createTransactionRequest']['transactionRequest']['amount'] = $total; |
819 | 819 | |
820 | - if ( isset( $args['createTransactionRequest']['transactionRequest']['tax'] ) ) { |
|
821 | - unset( $args['createTransactionRequest']['transactionRequest']['tax'] ); |
|
820 | + if (isset($args['createTransactionRequest']['transactionRequest']['tax'])) { |
|
821 | + unset($args['createTransactionRequest']['transactionRequest']['tax']); |
|
822 | 822 | } |
823 | 823 | |
824 | 824 | return $args; |
@@ -831,7 +831,7 @@ discard block |
||
831 | 831 | public function sandbox_notice() { |
832 | 832 | |
833 | 833 | return sprintf( |
834 | - __( 'SANDBOX ENABLED. You can use sandbox testing details only. See the %1$sAuthorize.NET Sandbox Testing Guide%2$s for more details.', 'invoicing' ), |
|
834 | + __('SANDBOX ENABLED. You can use sandbox testing details only. See the %1$sAuthorize.NET Sandbox Testing Guide%2$s for more details.', 'invoicing'), |
|
835 | 835 | '<a href="https://developer.authorize.net/hello_world/testing_guide.html">', |
836 | 836 | '</a>' |
837 | 837 | ); |
@@ -843,42 +843,42 @@ discard block |
||
843 | 843 | * |
844 | 844 | * @param array $admin_settings |
845 | 845 | */ |
846 | - public function admin_settings( $admin_settings ) { |
|
846 | + public function admin_settings($admin_settings) { |
|
847 | 847 | |
848 | 848 | $currencies = sprintf( |
849 | - __( 'Supported Currencies: %s', 'invoicing' ), |
|
850 | - implode( ', ', $this->currencies ) |
|
849 | + __('Supported Currencies: %s', 'invoicing'), |
|
850 | + implode(', ', $this->currencies) |
|
851 | 851 | ); |
852 | 852 | |
853 | 853 | $admin_settings['authorizenet_active']['desc'] .= " ($currencies)"; |
854 | - $admin_settings['authorizenet_desc']['std'] = __( 'Pay securely using your credit or debit card.', 'invoicing' ); |
|
854 | + $admin_settings['authorizenet_desc']['std'] = __('Pay securely using your credit or debit card.', 'invoicing'); |
|
855 | 855 | |
856 | 856 | $admin_settings['authorizenet_login_id'] = array( |
857 | 857 | 'type' => 'text', |
858 | 858 | 'id' => 'authorizenet_login_id', |
859 | - 'name' => __( 'API Login ID', 'invoicing' ), |
|
860 | - 'desc' => '<a href="https://support.authorize.net/s/article/How-do-I-obtain-my-API-Login-ID-and-Transaction-Key"><em>' . __( 'How do I obtain my API Login ID and Transaction Key?', 'invoicing' ) . '</em></a>', |
|
859 | + 'name' => __('API Login ID', 'invoicing'), |
|
860 | + 'desc' => '<a href="https://support.authorize.net/s/article/How-do-I-obtain-my-API-Login-ID-and-Transaction-Key"><em>' . __('How do I obtain my API Login ID and Transaction Key?', 'invoicing') . '</em></a>', |
|
861 | 861 | ); |
862 | 862 | |
863 | 863 | $admin_settings['authorizenet_transaction_key'] = array( |
864 | 864 | 'type' => 'text', |
865 | 865 | 'id' => 'authorizenet_transaction_key', |
866 | - 'name' => __( 'Transaction Key', 'invoicing' ), |
|
866 | + 'name' => __('Transaction Key', 'invoicing'), |
|
867 | 867 | ); |
868 | 868 | |
869 | 869 | $admin_settings['authorizenet_signature_key'] = array( |
870 | 870 | 'type' => 'text', |
871 | 871 | 'id' => 'authorizenet_signature_key', |
872 | - 'name' => __( 'Signature Key', 'invoicing' ), |
|
873 | - 'desc' => '<a href="https://support.authorize.net/s/article/What-is-a-Signature-Key"><em>' . __( 'Learn more.', 'invoicing' ) . '</em></a>', |
|
872 | + 'name' => __('Signature Key', 'invoicing'), |
|
873 | + 'desc' => '<a href="https://support.authorize.net/s/article/What-is-a-Signature-Key"><em>' . __('Learn more.', 'invoicing') . '</em></a>', |
|
874 | 874 | ); |
875 | 875 | |
876 | 876 | $admin_settings['authorizenet_ipn_url'] = array( |
877 | 877 | 'type' => 'ipn_url', |
878 | 878 | 'id' => 'authorizenet_ipn_url', |
879 | - 'name' => __( 'Webhook URL', 'invoicing' ), |
|
879 | + 'name' => __('Webhook URL', 'invoicing'), |
|
880 | 880 | 'std' => $this->notify_url, |
881 | - 'desc' => __( 'Create a new webhook using this URL as the endpoint URL and set it to receive all payment events.', 'invoicing' ) . ' <a href="https://support.authorize.net/s/article/How-do-I-add-edit-Webhook-notification-end-points"><em>' . __( 'Learn more.', 'invoicing' ) . '</em></a>', |
|
881 | + 'desc' => __('Create a new webhook using this URL as the endpoint URL and set it to receive all payment events.', 'invoicing') . ' <a href="https://support.authorize.net/s/article/How-do-I-add-edit-Webhook-notification-end-points"><em>' . __('Learn more.', 'invoicing') . '</em></a>', |
|
882 | 882 | 'custom' => 'authorizenet', |
883 | 883 | 'readonly' => true, |
884 | 884 | ); |
@@ -14,125 +14,125 @@ discard block |
||
14 | 14 | */ |
15 | 15 | class WPInv_Session_Handler extends WPInv_Session { |
16 | 16 | |
17 | - /** |
|
18 | - * Cookie name used for the session. |
|
19 | - * |
|
20 | - * @var string cookie name |
|
21 | - */ |
|
22 | - protected $_cookie; |
|
23 | - |
|
24 | - /** |
|
25 | - * Stores session expiry. |
|
26 | - * |
|
27 | - * @var int session due to expire timestamp |
|
28 | - */ |
|
29 | - protected $_session_expiring; |
|
30 | - |
|
31 | - /** |
|
32 | - * Stores session due to expire timestamp. |
|
33 | - * |
|
34 | - * @var string session expiration timestamp |
|
35 | - */ |
|
36 | - protected $_session_expiration; |
|
37 | - |
|
38 | - /** |
|
39 | - * True when the cookie exists. |
|
40 | - * |
|
41 | - * @var bool Based on whether a cookie exists. |
|
42 | - */ |
|
43 | - protected $_has_cookie = false; |
|
44 | - |
|
45 | - /** |
|
46 | - * Table name for session data. |
|
47 | - * |
|
48 | - * @var string Custom session table name |
|
49 | - */ |
|
50 | - protected $_table; |
|
51 | - |
|
52 | - /** |
|
53 | - * Constructor for the session class. |
|
54 | - */ |
|
55 | - public function old__construct() { |
|
56 | - |
|
57 | - $this->_cookie = apply_filters( 'wpinv_cookie', 'wpinv_session_' . COOKIEHASH ); |
|
17 | + /** |
|
18 | + * Cookie name used for the session. |
|
19 | + * |
|
20 | + * @var string cookie name |
|
21 | + */ |
|
22 | + protected $_cookie; |
|
23 | + |
|
24 | + /** |
|
25 | + * Stores session expiry. |
|
26 | + * |
|
27 | + * @var int session due to expire timestamp |
|
28 | + */ |
|
29 | + protected $_session_expiring; |
|
30 | + |
|
31 | + /** |
|
32 | + * Stores session due to expire timestamp. |
|
33 | + * |
|
34 | + * @var string session expiration timestamp |
|
35 | + */ |
|
36 | + protected $_session_expiration; |
|
37 | + |
|
38 | + /** |
|
39 | + * True when the cookie exists. |
|
40 | + * |
|
41 | + * @var bool Based on whether a cookie exists. |
|
42 | + */ |
|
43 | + protected $_has_cookie = false; |
|
44 | + |
|
45 | + /** |
|
46 | + * Table name for session data. |
|
47 | + * |
|
48 | + * @var string Custom session table name |
|
49 | + */ |
|
50 | + protected $_table; |
|
51 | + |
|
52 | + /** |
|
53 | + * Constructor for the session class. |
|
54 | + */ |
|
55 | + public function old__construct() { |
|
56 | + |
|
57 | + $this->_cookie = apply_filters( 'wpinv_cookie', 'wpinv_session_' . COOKIEHASH ); |
|
58 | 58 | add_action( 'init', array( $this, 'init' ), -1 ); |
59 | - add_action( 'wp_logout', array( $this, 'destroy_session' ) ); |
|
60 | - add_action( 'wp', array( $this, 'set_customer_session_cookie' ), 10 ); |
|
61 | - add_action( 'shutdown', array( $this, 'save_data' ), 20 ); |
|
62 | - |
|
63 | - } |
|
64 | - |
|
65 | - /** |
|
66 | - * Init hooks and session data. |
|
67 | - * |
|
68 | - * @since 3.3.0 |
|
69 | - */ |
|
70 | - public function init() { |
|
71 | - $this->init_session_cookie(); |
|
72 | - |
|
73 | - if ( ! is_user_logged_in() ) { |
|
74 | - add_filter( 'nonce_user_logged_out', array( $this, 'nonce_user_logged_out' ), 10, 2 ); |
|
75 | - } |
|
76 | - } |
|
77 | - |
|
78 | - /** |
|
79 | - * Setup cookie and customer ID. |
|
80 | - * |
|
81 | - * @since 3.6.0 |
|
82 | - */ |
|
83 | - public function init_session_cookie() { |
|
84 | - $cookie = $this->get_session_cookie(); |
|
85 | - |
|
86 | - if ( $cookie ) { |
|
87 | - $this->_customer_id = $cookie[0]; |
|
88 | - $this->_session_expiration = $cookie[1]; |
|
89 | - $this->_session_expiring = $cookie[2]; |
|
90 | - $this->_has_cookie = true; |
|
91 | - $this->_data = $this->get_session_data(); |
|
92 | - |
|
93 | - // If the user logs in, update session. |
|
94 | - if ( is_user_logged_in() && get_current_user_id() != $this->_customer_id ) { |
|
95 | - $this->_customer_id = get_current_user_id(); |
|
96 | - $this->_dirty = true; |
|
97 | - $this->save_data(); |
|
98 | - $this->set_customer_session_cookie( true ); |
|
99 | - } |
|
100 | - |
|
101 | - // Update session if its close to expiring. |
|
102 | - if ( time() > $this->_session_expiring ) { |
|
103 | - $this->set_session_expiration(); |
|
104 | - $this->update_session_timestamp( $this->_customer_id, $this->_session_expiration ); |
|
105 | - } |
|
106 | - } else { |
|
107 | - $this->set_session_expiration(); |
|
108 | - $this->_customer_id = $this->generate_customer_id(); |
|
109 | - $this->_data = $this->get_session_data(); |
|
110 | - } |
|
111 | - } |
|
112 | - |
|
113 | - /** |
|
114 | - * Sets the session cookie on-demand (usually after adding an item to the cart). |
|
115 | - * |
|
116 | - * Since the cookie name (as of 2.1) is prepended with wp, cache systems like batcache will not cache pages when set. |
|
117 | - * |
|
118 | - * Warning: Cookies will only be set if this is called before the headers are sent. |
|
119 | - * |
|
120 | - * @param bool $set Should the session cookie be set. |
|
121 | - */ |
|
122 | - public function set_customer_session_cookie( $set ) { |
|
123 | - if ( $set ) { |
|
124 | - $to_hash = $this->_customer_id . '|' . $this->_session_expiration; |
|
125 | - $cookie_hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); |
|
126 | - $cookie_value = $this->_customer_id . '||' . $this->_session_expiration . '||' . $this->_session_expiring . '||' . $cookie_hash; |
|
127 | - $this->_has_cookie = true; |
|
128 | - |
|
129 | - if ( ! isset( $_COOKIE[ $this->_cookie ] ) || $_COOKIE[ $this->_cookie ] !== $cookie_value ) { |
|
130 | - $this->setcookie( $this->_cookie, $cookie_value, $this->_session_expiration, $this->use_secure_cookie(), true ); |
|
131 | - } |
|
132 | - } |
|
133 | - } |
|
134 | - |
|
135 | - public function setcookie( $name, $value, $expire = 0, $secure = false, $httponly = false ) { |
|
59 | + add_action( 'wp_logout', array( $this, 'destroy_session' ) ); |
|
60 | + add_action( 'wp', array( $this, 'set_customer_session_cookie' ), 10 ); |
|
61 | + add_action( 'shutdown', array( $this, 'save_data' ), 20 ); |
|
62 | + |
|
63 | + } |
|
64 | + |
|
65 | + /** |
|
66 | + * Init hooks and session data. |
|
67 | + * |
|
68 | + * @since 3.3.0 |
|
69 | + */ |
|
70 | + public function init() { |
|
71 | + $this->init_session_cookie(); |
|
72 | + |
|
73 | + if ( ! is_user_logged_in() ) { |
|
74 | + add_filter( 'nonce_user_logged_out', array( $this, 'nonce_user_logged_out' ), 10, 2 ); |
|
75 | + } |
|
76 | + } |
|
77 | + |
|
78 | + /** |
|
79 | + * Setup cookie and customer ID. |
|
80 | + * |
|
81 | + * @since 3.6.0 |
|
82 | + */ |
|
83 | + public function init_session_cookie() { |
|
84 | + $cookie = $this->get_session_cookie(); |
|
85 | + |
|
86 | + if ( $cookie ) { |
|
87 | + $this->_customer_id = $cookie[0]; |
|
88 | + $this->_session_expiration = $cookie[1]; |
|
89 | + $this->_session_expiring = $cookie[2]; |
|
90 | + $this->_has_cookie = true; |
|
91 | + $this->_data = $this->get_session_data(); |
|
92 | + |
|
93 | + // If the user logs in, update session. |
|
94 | + if ( is_user_logged_in() && get_current_user_id() != $this->_customer_id ) { |
|
95 | + $this->_customer_id = get_current_user_id(); |
|
96 | + $this->_dirty = true; |
|
97 | + $this->save_data(); |
|
98 | + $this->set_customer_session_cookie( true ); |
|
99 | + } |
|
100 | + |
|
101 | + // Update session if its close to expiring. |
|
102 | + if ( time() > $this->_session_expiring ) { |
|
103 | + $this->set_session_expiration(); |
|
104 | + $this->update_session_timestamp( $this->_customer_id, $this->_session_expiration ); |
|
105 | + } |
|
106 | + } else { |
|
107 | + $this->set_session_expiration(); |
|
108 | + $this->_customer_id = $this->generate_customer_id(); |
|
109 | + $this->_data = $this->get_session_data(); |
|
110 | + } |
|
111 | + } |
|
112 | + |
|
113 | + /** |
|
114 | + * Sets the session cookie on-demand (usually after adding an item to the cart). |
|
115 | + * |
|
116 | + * Since the cookie name (as of 2.1) is prepended with wp, cache systems like batcache will not cache pages when set. |
|
117 | + * |
|
118 | + * Warning: Cookies will only be set if this is called before the headers are sent. |
|
119 | + * |
|
120 | + * @param bool $set Should the session cookie be set. |
|
121 | + */ |
|
122 | + public function set_customer_session_cookie( $set ) { |
|
123 | + if ( $set ) { |
|
124 | + $to_hash = $this->_customer_id . '|' . $this->_session_expiration; |
|
125 | + $cookie_hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); |
|
126 | + $cookie_value = $this->_customer_id . '||' . $this->_session_expiration . '||' . $this->_session_expiring . '||' . $cookie_hash; |
|
127 | + $this->_has_cookie = true; |
|
128 | + |
|
129 | + if ( ! isset( $_COOKIE[ $this->_cookie ] ) || $_COOKIE[ $this->_cookie ] !== $cookie_value ) { |
|
130 | + $this->setcookie( $this->_cookie, $cookie_value, $this->_session_expiration, $this->use_secure_cookie(), true ); |
|
131 | + } |
|
132 | + } |
|
133 | + } |
|
134 | + |
|
135 | + public function setcookie( $name, $value, $expire = 0, $secure = false, $httponly = false ) { |
|
136 | 136 | if ( ! headers_sent() ) { |
137 | 137 | setcookie( $name, $value, $expire, COOKIEPATH ? COOKIEPATH : '/', COOKIE_DOMAIN, $secure, apply_filters( 'wpinv_cookie_httponly', $httponly, $name, $value, $expire, $secure ) ); |
138 | 138 | } elseif ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
@@ -141,86 +141,86 @@ discard block |
||
141 | 141 | } |
142 | 142 | } |
143 | 143 | |
144 | - /** |
|
145 | - * Should the session cookie be secure? |
|
146 | - * |
|
147 | - * @since 3.6.0 |
|
148 | - * @return bool |
|
149 | - */ |
|
150 | - protected function use_secure_cookie() { |
|
144 | + /** |
|
145 | + * Should the session cookie be secure? |
|
146 | + * |
|
147 | + * @since 3.6.0 |
|
148 | + * @return bool |
|
149 | + */ |
|
150 | + protected function use_secure_cookie() { |
|
151 | 151 | $is_https = false !== strstr( get_option( 'home' ), 'https:' ); |
152 | - return apply_filters( 'wpinv_session_use_secure_cookie', $is_https && is_ssl() ); |
|
153 | - } |
|
154 | - |
|
155 | - /** |
|
156 | - * Return true if the current user has an active session, i.e. a cookie to retrieve values. |
|
157 | - * |
|
158 | - * @return bool |
|
159 | - */ |
|
160 | - public function has_session() { |
|
161 | - return isset( $_COOKIE[ $this->_cookie ] ) || $this->_has_cookie || is_user_logged_in(); // @codingStandardsIgnoreLine. |
|
162 | - } |
|
163 | - |
|
164 | - /** |
|
165 | - * Set session expiration. |
|
166 | - */ |
|
167 | - public function set_session_expiration() { |
|
168 | - $this->_session_expiring = time() + intval( apply_filters( 'wpinv_session_expiring', 60 * 60 * 47 ) ); // 47 Hours. |
|
169 | - $this->_session_expiration = time() + intval( apply_filters( 'wpinv_session_expiration', 60 * 60 * 48 ) ); // 48 Hours. |
|
170 | - } |
|
171 | - |
|
172 | - /** |
|
173 | - * Generates session ids. |
|
174 | - * |
|
175 | - * @return string |
|
176 | - */ |
|
177 | - public function generate_customer_id() { |
|
178 | - require_once ABSPATH . 'wp-includes/class-phpass.php'; |
|
179 | - $hasher = new PasswordHash( 8, false ); |
|
180 | - return md5( $hasher->get_random_bytes( 32 ) ); |
|
181 | - } |
|
182 | - |
|
183 | - /** |
|
184 | - * Get the session cookie, if set. Otherwise return false. |
|
185 | - * |
|
186 | - * Session cookies without a customer ID are invalid. |
|
187 | - * |
|
188 | - * @return bool|array |
|
189 | - */ |
|
190 | - public function get_session_cookie() { |
|
191 | - $cookie_value = isset( $_COOKIE[ $this->_cookie ] ) ? wp_unslash( $_COOKIE[ $this->_cookie ] ) : false; // @codingStandardsIgnoreLine. |
|
192 | - |
|
193 | - if ( empty( $cookie_value ) || ! is_string( $cookie_value ) ) { |
|
194 | - return false; |
|
195 | - } |
|
196 | - |
|
197 | - list( $customer_id, $session_expiration, $session_expiring, $cookie_hash ) = explode( '||', $cookie_value ); |
|
198 | - |
|
199 | - if ( empty( $customer_id ) ) { |
|
200 | - return false; |
|
201 | - } |
|
202 | - |
|
203 | - // Validate hash. |
|
204 | - $to_hash = $customer_id . '|' . $session_expiration; |
|
205 | - $hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); |
|
206 | - |
|
207 | - if ( empty( $cookie_hash ) || ! hash_equals( $hash, $cookie_hash ) ) { |
|
208 | - return false; |
|
209 | - } |
|
210 | - |
|
211 | - return array( $customer_id, $session_expiration, $session_expiring, $cookie_hash ); |
|
212 | - } |
|
213 | - |
|
214 | - /** |
|
215 | - * Get session data. |
|
216 | - * |
|
217 | - * @return array |
|
218 | - */ |
|
219 | - public function get_session_data() { |
|
220 | - return $this->has_session() ? (array) $this->get_session( $this->_customer_id ) : array(); |
|
221 | - } |
|
222 | - |
|
223 | - public function generate_key( $customer_id ) { |
|
152 | + return apply_filters( 'wpinv_session_use_secure_cookie', $is_https && is_ssl() ); |
|
153 | + } |
|
154 | + |
|
155 | + /** |
|
156 | + * Return true if the current user has an active session, i.e. a cookie to retrieve values. |
|
157 | + * |
|
158 | + * @return bool |
|
159 | + */ |
|
160 | + public function has_session() { |
|
161 | + return isset( $_COOKIE[ $this->_cookie ] ) || $this->_has_cookie || is_user_logged_in(); // @codingStandardsIgnoreLine. |
|
162 | + } |
|
163 | + |
|
164 | + /** |
|
165 | + * Set session expiration. |
|
166 | + */ |
|
167 | + public function set_session_expiration() { |
|
168 | + $this->_session_expiring = time() + intval( apply_filters( 'wpinv_session_expiring', 60 * 60 * 47 ) ); // 47 Hours. |
|
169 | + $this->_session_expiration = time() + intval( apply_filters( 'wpinv_session_expiration', 60 * 60 * 48 ) ); // 48 Hours. |
|
170 | + } |
|
171 | + |
|
172 | + /** |
|
173 | + * Generates session ids. |
|
174 | + * |
|
175 | + * @return string |
|
176 | + */ |
|
177 | + public function generate_customer_id() { |
|
178 | + require_once ABSPATH . 'wp-includes/class-phpass.php'; |
|
179 | + $hasher = new PasswordHash( 8, false ); |
|
180 | + return md5( $hasher->get_random_bytes( 32 ) ); |
|
181 | + } |
|
182 | + |
|
183 | + /** |
|
184 | + * Get the session cookie, if set. Otherwise return false. |
|
185 | + * |
|
186 | + * Session cookies without a customer ID are invalid. |
|
187 | + * |
|
188 | + * @return bool|array |
|
189 | + */ |
|
190 | + public function get_session_cookie() { |
|
191 | + $cookie_value = isset( $_COOKIE[ $this->_cookie ] ) ? wp_unslash( $_COOKIE[ $this->_cookie ] ) : false; // @codingStandardsIgnoreLine. |
|
192 | + |
|
193 | + if ( empty( $cookie_value ) || ! is_string( $cookie_value ) ) { |
|
194 | + return false; |
|
195 | + } |
|
196 | + |
|
197 | + list( $customer_id, $session_expiration, $session_expiring, $cookie_hash ) = explode( '||', $cookie_value ); |
|
198 | + |
|
199 | + if ( empty( $customer_id ) ) { |
|
200 | + return false; |
|
201 | + } |
|
202 | + |
|
203 | + // Validate hash. |
|
204 | + $to_hash = $customer_id . '|' . $session_expiration; |
|
205 | + $hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); |
|
206 | + |
|
207 | + if ( empty( $cookie_hash ) || ! hash_equals( $hash, $cookie_hash ) ) { |
|
208 | + return false; |
|
209 | + } |
|
210 | + |
|
211 | + return array( $customer_id, $session_expiration, $session_expiring, $cookie_hash ); |
|
212 | + } |
|
213 | + |
|
214 | + /** |
|
215 | + * Get session data. |
|
216 | + * |
|
217 | + * @return array |
|
218 | + */ |
|
219 | + public function get_session_data() { |
|
220 | + return $this->has_session() ? (array) $this->get_session( $this->_customer_id ) : array(); |
|
221 | + } |
|
222 | + |
|
223 | + public function generate_key( $customer_id ) { |
|
224 | 224 | if ( ! $customer_id ) { |
225 | 225 | return; |
226 | 226 | } |
@@ -228,68 +228,68 @@ discard block |
||
228 | 228 | return 'wpi_trans_' . $customer_id; |
229 | 229 | } |
230 | 230 | |
231 | - /** |
|
232 | - * Save data. |
|
233 | - */ |
|
234 | - public function save_data() { |
|
235 | - // Dirty if something changed - prevents saving nothing new. |
|
236 | - if ( $this->_dirty && $this->has_session() ) { |
|
231 | + /** |
|
232 | + * Save data. |
|
233 | + */ |
|
234 | + public function save_data() { |
|
235 | + // Dirty if something changed - prevents saving nothing new. |
|
236 | + if ( $this->_dirty && $this->has_session() ) { |
|
237 | 237 | |
238 | 238 | set_transient( $this->generate_key( $this->_customer_id ), $this->_data, $this->_session_expiration ); |
239 | 239 | |
240 | - $this->_dirty = false; |
|
241 | - } |
|
242 | - } |
|
243 | - |
|
244 | - /** |
|
245 | - * Destroy all session data. |
|
246 | - */ |
|
247 | - public function destroy_session() { |
|
248 | - $this->delete_session( $this->_customer_id ); |
|
249 | - $this->forget_session(); |
|
250 | - } |
|
251 | - |
|
252 | - /** |
|
253 | - * Forget all session data without destroying it. |
|
254 | - */ |
|
255 | - public function forget_session() { |
|
256 | - $this->setcookie( $this->_cookie, '', time() - YEAR_IN_SECONDS, $this->use_secure_cookie(), true ); |
|
257 | - |
|
258 | - wpinv_empty_cart(); |
|
259 | - |
|
260 | - $this->_data = array(); |
|
261 | - $this->_dirty = false; |
|
262 | - $this->_customer_id = $this->generate_customer_id(); |
|
263 | - } |
|
264 | - |
|
265 | - /** |
|
266 | - * When a user is logged out, ensure they have a unique nonce by using the customer/session ID. |
|
267 | - * |
|
268 | - * @param int $uid User ID. |
|
269 | - * @return string |
|
270 | - */ |
|
271 | - public function nonce_user_logged_out( $uid ) { |
|
272 | - |
|
273 | - // Check if one of our nonces. |
|
274 | - if ( substr( $uid, 0, 5 ) === 'wpinv' || substr( $uid, 0, 7 ) === 'getpaid' ) { |
|
275 | - return $this->has_session() && $this->_customer_id ? $this->_customer_id : $uid; |
|
276 | - } |
|
277 | - |
|
278 | - return $uid; |
|
279 | - } |
|
280 | - |
|
281 | - /** |
|
282 | - * Returns the session. |
|
283 | - * |
|
284 | - * @param string $customer_id Customer ID. |
|
285 | - * @param mixed $default Default session value. |
|
286 | - * @return string|array |
|
287 | - */ |
|
288 | - public function get_session( $customer_id, $default = false ) { |
|
289 | - |
|
290 | - if ( defined( 'WP_SETUP_CONFIG' ) ) { |
|
291 | - return array(); |
|
292 | - } |
|
240 | + $this->_dirty = false; |
|
241 | + } |
|
242 | + } |
|
243 | + |
|
244 | + /** |
|
245 | + * Destroy all session data. |
|
246 | + */ |
|
247 | + public function destroy_session() { |
|
248 | + $this->delete_session( $this->_customer_id ); |
|
249 | + $this->forget_session(); |
|
250 | + } |
|
251 | + |
|
252 | + /** |
|
253 | + * Forget all session data without destroying it. |
|
254 | + */ |
|
255 | + public function forget_session() { |
|
256 | + $this->setcookie( $this->_cookie, '', time() - YEAR_IN_SECONDS, $this->use_secure_cookie(), true ); |
|
257 | + |
|
258 | + wpinv_empty_cart(); |
|
259 | + |
|
260 | + $this->_data = array(); |
|
261 | + $this->_dirty = false; |
|
262 | + $this->_customer_id = $this->generate_customer_id(); |
|
263 | + } |
|
264 | + |
|
265 | + /** |
|
266 | + * When a user is logged out, ensure they have a unique nonce by using the customer/session ID. |
|
267 | + * |
|
268 | + * @param int $uid User ID. |
|
269 | + * @return string |
|
270 | + */ |
|
271 | + public function nonce_user_logged_out( $uid ) { |
|
272 | + |
|
273 | + // Check if one of our nonces. |
|
274 | + if ( substr( $uid, 0, 5 ) === 'wpinv' || substr( $uid, 0, 7 ) === 'getpaid' ) { |
|
275 | + return $this->has_session() && $this->_customer_id ? $this->_customer_id : $uid; |
|
276 | + } |
|
277 | + |
|
278 | + return $uid; |
|
279 | + } |
|
280 | + |
|
281 | + /** |
|
282 | + * Returns the session. |
|
283 | + * |
|
284 | + * @param string $customer_id Customer ID. |
|
285 | + * @param mixed $default Default session value. |
|
286 | + * @return string|array |
|
287 | + */ |
|
288 | + public function get_session( $customer_id, $default = false ) { |
|
289 | + |
|
290 | + if ( defined( 'WP_SETUP_CONFIG' ) ) { |
|
291 | + return array(); |
|
292 | + } |
|
293 | 293 | |
294 | 294 | $key = $this->generate_key( $customer_id ); |
295 | 295 | $value = get_transient( $key ); |
@@ -298,30 +298,30 @@ discard block |
||
298 | 298 | $value = $default; |
299 | 299 | } |
300 | 300 | |
301 | - return maybe_unserialize( $value ); |
|
302 | - } |
|
301 | + return maybe_unserialize( $value ); |
|
302 | + } |
|
303 | 303 | |
304 | - /** |
|
305 | - * Delete the session from the cache and database. |
|
306 | - * |
|
307 | - * @param int $customer_id Customer ID. |
|
308 | - */ |
|
309 | - public function delete_session( $customer_id ) { |
|
304 | + /** |
|
305 | + * Delete the session from the cache and database. |
|
306 | + * |
|
307 | + * @param int $customer_id Customer ID. |
|
308 | + */ |
|
309 | + public function delete_session( $customer_id ) { |
|
310 | 310 | |
311 | 311 | $key = $this->generate_key( $customer_id ); |
312 | 312 | |
313 | - delete_transient( $key ); |
|
314 | - } |
|
313 | + delete_transient( $key ); |
|
314 | + } |
|
315 | 315 | |
316 | - /** |
|
317 | - * Update the session expiry timestamp. |
|
318 | - * |
|
319 | - * @param string $customer_id Customer ID. |
|
320 | - * @param int $timestamp Timestamp to expire the cookie. |
|
321 | - */ |
|
322 | - public function update_session_timestamp( $customer_id, $timestamp ) { |
|
316 | + /** |
|
317 | + * Update the session expiry timestamp. |
|
318 | + * |
|
319 | + * @param string $customer_id Customer ID. |
|
320 | + * @param int $timestamp Timestamp to expire the cookie. |
|
321 | + */ |
|
322 | + public function update_session_timestamp( $customer_id, $timestamp ) { |
|
323 | 323 | |
324 | 324 | set_transient( $this->generate_key( $customer_id ), maybe_serialize( $this->_data ), $timestamp ); |
325 | 325 | |
326 | - } |
|
326 | + } |
|
327 | 327 | } |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * |
6 | 6 | */ |
7 | 7 | |
8 | -defined( 'ABSPATH' ) || exit; |
|
8 | +defined('ABSPATH') || exit; |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Session handler class. |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function old__construct() { |
56 | 56 | |
57 | - $this->_cookie = apply_filters( 'wpinv_cookie', 'wpinv_session_' . COOKIEHASH ); |
|
58 | - add_action( 'init', array( $this, 'init' ), -1 ); |
|
59 | - add_action( 'wp_logout', array( $this, 'destroy_session' ) ); |
|
60 | - add_action( 'wp', array( $this, 'set_customer_session_cookie' ), 10 ); |
|
61 | - add_action( 'shutdown', array( $this, 'save_data' ), 20 ); |
|
57 | + $this->_cookie = apply_filters('wpinv_cookie', 'wpinv_session_' . COOKIEHASH); |
|
58 | + add_action('init', array($this, 'init'), -1); |
|
59 | + add_action('wp_logout', array($this, 'destroy_session')); |
|
60 | + add_action('wp', array($this, 'set_customer_session_cookie'), 10); |
|
61 | + add_action('shutdown', array($this, 'save_data'), 20); |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | |
@@ -70,8 +70,8 @@ discard block |
||
70 | 70 | public function init() { |
71 | 71 | $this->init_session_cookie(); |
72 | 72 | |
73 | - if ( ! is_user_logged_in() ) { |
|
74 | - add_filter( 'nonce_user_logged_out', array( $this, 'nonce_user_logged_out' ), 10, 2 ); |
|
73 | + if (!is_user_logged_in()) { |
|
74 | + add_filter('nonce_user_logged_out', array($this, 'nonce_user_logged_out'), 10, 2); |
|
75 | 75 | } |
76 | 76 | } |
77 | 77 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | public function init_session_cookie() { |
84 | 84 | $cookie = $this->get_session_cookie(); |
85 | 85 | |
86 | - if ( $cookie ) { |
|
86 | + if ($cookie) { |
|
87 | 87 | $this->_customer_id = $cookie[0]; |
88 | 88 | $this->_session_expiration = $cookie[1]; |
89 | 89 | $this->_session_expiring = $cookie[2]; |
@@ -91,17 +91,17 @@ discard block |
||
91 | 91 | $this->_data = $this->get_session_data(); |
92 | 92 | |
93 | 93 | // If the user logs in, update session. |
94 | - if ( is_user_logged_in() && get_current_user_id() != $this->_customer_id ) { |
|
94 | + if (is_user_logged_in() && get_current_user_id() != $this->_customer_id) { |
|
95 | 95 | $this->_customer_id = get_current_user_id(); |
96 | 96 | $this->_dirty = true; |
97 | 97 | $this->save_data(); |
98 | - $this->set_customer_session_cookie( true ); |
|
98 | + $this->set_customer_session_cookie(true); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | // Update session if its close to expiring. |
102 | - if ( time() > $this->_session_expiring ) { |
|
102 | + if (time() > $this->_session_expiring) { |
|
103 | 103 | $this->set_session_expiration(); |
104 | - $this->update_session_timestamp( $this->_customer_id, $this->_session_expiration ); |
|
104 | + $this->update_session_timestamp($this->_customer_id, $this->_session_expiration); |
|
105 | 105 | } |
106 | 106 | } else { |
107 | 107 | $this->set_session_expiration(); |
@@ -119,25 +119,25 @@ discard block |
||
119 | 119 | * |
120 | 120 | * @param bool $set Should the session cookie be set. |
121 | 121 | */ |
122 | - public function set_customer_session_cookie( $set ) { |
|
123 | - if ( $set ) { |
|
122 | + public function set_customer_session_cookie($set) { |
|
123 | + if ($set) { |
|
124 | 124 | $to_hash = $this->_customer_id . '|' . $this->_session_expiration; |
125 | - $cookie_hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); |
|
125 | + $cookie_hash = hash_hmac('md5', $to_hash, wp_hash($to_hash)); |
|
126 | 126 | $cookie_value = $this->_customer_id . '||' . $this->_session_expiration . '||' . $this->_session_expiring . '||' . $cookie_hash; |
127 | 127 | $this->_has_cookie = true; |
128 | 128 | |
129 | - if ( ! isset( $_COOKIE[ $this->_cookie ] ) || $_COOKIE[ $this->_cookie ] !== $cookie_value ) { |
|
130 | - $this->setcookie( $this->_cookie, $cookie_value, $this->_session_expiration, $this->use_secure_cookie(), true ); |
|
129 | + if (!isset($_COOKIE[$this->_cookie]) || $_COOKIE[$this->_cookie] !== $cookie_value) { |
|
130 | + $this->setcookie($this->_cookie, $cookie_value, $this->_session_expiration, $this->use_secure_cookie(), true); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | } |
134 | 134 | |
135 | - public function setcookie( $name, $value, $expire = 0, $secure = false, $httponly = false ) { |
|
136 | - if ( ! headers_sent() ) { |
|
137 | - setcookie( $name, $value, $expire, COOKIEPATH ? COOKIEPATH : '/', COOKIE_DOMAIN, $secure, apply_filters( 'wpinv_cookie_httponly', $httponly, $name, $value, $expire, $secure ) ); |
|
138 | - } elseif ( defined( 'WP_DEBUG' ) && WP_DEBUG ) { |
|
139 | - headers_sent( $file, $line ); |
|
140 | - trigger_error( "{$name} cookie cannot be set - headers already sent by {$file} on line {$line}", E_USER_NOTICE ); // @codingStandardsIgnoreLine |
|
135 | + public function setcookie($name, $value, $expire = 0, $secure = false, $httponly = false) { |
|
136 | + if (!headers_sent()) { |
|
137 | + setcookie($name, $value, $expire, COOKIEPATH ? COOKIEPATH : '/', COOKIE_DOMAIN, $secure, apply_filters('wpinv_cookie_httponly', $httponly, $name, $value, $expire, $secure)); |
|
138 | + } elseif (defined('WP_DEBUG') && WP_DEBUG) { |
|
139 | + headers_sent($file, $line); |
|
140 | + trigger_error("{$name} cookie cannot be set - headers already sent by {$file} on line {$line}", E_USER_NOTICE); // @codingStandardsIgnoreLine |
|
141 | 141 | } |
142 | 142 | } |
143 | 143 | |
@@ -148,8 +148,8 @@ discard block |
||
148 | 148 | * @return bool |
149 | 149 | */ |
150 | 150 | protected function use_secure_cookie() { |
151 | - $is_https = false !== strstr( get_option( 'home' ), 'https:' ); |
|
152 | - return apply_filters( 'wpinv_session_use_secure_cookie', $is_https && is_ssl() ); |
|
151 | + $is_https = false !== strstr(get_option('home'), 'https:'); |
|
152 | + return apply_filters('wpinv_session_use_secure_cookie', $is_https && is_ssl()); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -158,15 +158,15 @@ discard block |
||
158 | 158 | * @return bool |
159 | 159 | */ |
160 | 160 | public function has_session() { |
161 | - return isset( $_COOKIE[ $this->_cookie ] ) || $this->_has_cookie || is_user_logged_in(); // @codingStandardsIgnoreLine. |
|
161 | + return isset($_COOKIE[$this->_cookie]) || $this->_has_cookie || is_user_logged_in(); // @codingStandardsIgnoreLine. |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
165 | 165 | * Set session expiration. |
166 | 166 | */ |
167 | 167 | public function set_session_expiration() { |
168 | - $this->_session_expiring = time() + intval( apply_filters( 'wpinv_session_expiring', 60 * 60 * 47 ) ); // 47 Hours. |
|
169 | - $this->_session_expiration = time() + intval( apply_filters( 'wpinv_session_expiration', 60 * 60 * 48 ) ); // 48 Hours. |
|
168 | + $this->_session_expiring = time() + intval(apply_filters('wpinv_session_expiring', 60 * 60 * 47)); // 47 Hours. |
|
169 | + $this->_session_expiration = time() + intval(apply_filters('wpinv_session_expiration', 60 * 60 * 48)); // 48 Hours. |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | /** |
@@ -176,8 +176,8 @@ discard block |
||
176 | 176 | */ |
177 | 177 | public function generate_customer_id() { |
178 | 178 | require_once ABSPATH . 'wp-includes/class-phpass.php'; |
179 | - $hasher = new PasswordHash( 8, false ); |
|
180 | - return md5( $hasher->get_random_bytes( 32 ) ); |
|
179 | + $hasher = new PasswordHash(8, false); |
|
180 | + return md5($hasher->get_random_bytes(32)); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -188,27 +188,27 @@ discard block |
||
188 | 188 | * @return bool|array |
189 | 189 | */ |
190 | 190 | public function get_session_cookie() { |
191 | - $cookie_value = isset( $_COOKIE[ $this->_cookie ] ) ? wp_unslash( $_COOKIE[ $this->_cookie ] ) : false; // @codingStandardsIgnoreLine. |
|
191 | + $cookie_value = isset($_COOKIE[$this->_cookie]) ? wp_unslash($_COOKIE[$this->_cookie]) : false; // @codingStandardsIgnoreLine. |
|
192 | 192 | |
193 | - if ( empty( $cookie_value ) || ! is_string( $cookie_value ) ) { |
|
193 | + if (empty($cookie_value) || !is_string($cookie_value)) { |
|
194 | 194 | return false; |
195 | 195 | } |
196 | 196 | |
197 | - list( $customer_id, $session_expiration, $session_expiring, $cookie_hash ) = explode( '||', $cookie_value ); |
|
197 | + list($customer_id, $session_expiration, $session_expiring, $cookie_hash) = explode('||', $cookie_value); |
|
198 | 198 | |
199 | - if ( empty( $customer_id ) ) { |
|
199 | + if (empty($customer_id)) { |
|
200 | 200 | return false; |
201 | 201 | } |
202 | 202 | |
203 | 203 | // Validate hash. |
204 | 204 | $to_hash = $customer_id . '|' . $session_expiration; |
205 | - $hash = hash_hmac( 'md5', $to_hash, wp_hash( $to_hash ) ); |
|
205 | + $hash = hash_hmac('md5', $to_hash, wp_hash($to_hash)); |
|
206 | 206 | |
207 | - if ( empty( $cookie_hash ) || ! hash_equals( $hash, $cookie_hash ) ) { |
|
207 | + if (empty($cookie_hash) || !hash_equals($hash, $cookie_hash)) { |
|
208 | 208 | return false; |
209 | 209 | } |
210 | 210 | |
211 | - return array( $customer_id, $session_expiration, $session_expiring, $cookie_hash ); |
|
211 | + return array($customer_id, $session_expiration, $session_expiring, $cookie_hash); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
@@ -217,11 +217,11 @@ discard block |
||
217 | 217 | * @return array |
218 | 218 | */ |
219 | 219 | public function get_session_data() { |
220 | - return $this->has_session() ? (array) $this->get_session( $this->_customer_id ) : array(); |
|
220 | + return $this->has_session() ? (array) $this->get_session($this->_customer_id) : array(); |
|
221 | 221 | } |
222 | 222 | |
223 | - public function generate_key( $customer_id ) { |
|
224 | - if ( ! $customer_id ) { |
|
223 | + public function generate_key($customer_id) { |
|
224 | + if (!$customer_id) { |
|
225 | 225 | return; |
226 | 226 | } |
227 | 227 | |
@@ -233,9 +233,9 @@ discard block |
||
233 | 233 | */ |
234 | 234 | public function save_data() { |
235 | 235 | // Dirty if something changed - prevents saving nothing new. |
236 | - if ( $this->_dirty && $this->has_session() ) { |
|
236 | + if ($this->_dirty && $this->has_session()) { |
|
237 | 237 | |
238 | - set_transient( $this->generate_key( $this->_customer_id ), $this->_data, $this->_session_expiration ); |
|
238 | + set_transient($this->generate_key($this->_customer_id), $this->_data, $this->_session_expiration); |
|
239 | 239 | |
240 | 240 | $this->_dirty = false; |
241 | 241 | } |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | * Destroy all session data. |
246 | 246 | */ |
247 | 247 | public function destroy_session() { |
248 | - $this->delete_session( $this->_customer_id ); |
|
248 | + $this->delete_session($this->_customer_id); |
|
249 | 249 | $this->forget_session(); |
250 | 250 | } |
251 | 251 | |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | * Forget all session data without destroying it. |
254 | 254 | */ |
255 | 255 | public function forget_session() { |
256 | - $this->setcookie( $this->_cookie, '', time() - YEAR_IN_SECONDS, $this->use_secure_cookie(), true ); |
|
256 | + $this->setcookie($this->_cookie, '', time() - YEAR_IN_SECONDS, $this->use_secure_cookie(), true); |
|
257 | 257 | |
258 | 258 | wpinv_empty_cart(); |
259 | 259 | |
@@ -268,10 +268,10 @@ discard block |
||
268 | 268 | * @param int $uid User ID. |
269 | 269 | * @return string |
270 | 270 | */ |
271 | - public function nonce_user_logged_out( $uid ) { |
|
271 | + public function nonce_user_logged_out($uid) { |
|
272 | 272 | |
273 | 273 | // Check if one of our nonces. |
274 | - if ( substr( $uid, 0, 5 ) === 'wpinv' || substr( $uid, 0, 7 ) === 'getpaid' ) { |
|
274 | + if (substr($uid, 0, 5) === 'wpinv' || substr($uid, 0, 7) === 'getpaid') { |
|
275 | 275 | return $this->has_session() && $this->_customer_id ? $this->_customer_id : $uid; |
276 | 276 | } |
277 | 277 | |
@@ -285,20 +285,20 @@ discard block |
||
285 | 285 | * @param mixed $default Default session value. |
286 | 286 | * @return string|array |
287 | 287 | */ |
288 | - public function get_session( $customer_id, $default = false ) { |
|
288 | + public function get_session($customer_id, $default = false) { |
|
289 | 289 | |
290 | - if ( defined( 'WP_SETUP_CONFIG' ) ) { |
|
290 | + if (defined('WP_SETUP_CONFIG')) { |
|
291 | 291 | return array(); |
292 | 292 | } |
293 | 293 | |
294 | - $key = $this->generate_key( $customer_id ); |
|
295 | - $value = get_transient( $key ); |
|
294 | + $key = $this->generate_key($customer_id); |
|
295 | + $value = get_transient($key); |
|
296 | 296 | |
297 | - if ( ! $value ) { |
|
297 | + if (!$value) { |
|
298 | 298 | $value = $default; |
299 | 299 | } |
300 | 300 | |
301 | - return maybe_unserialize( $value ); |
|
301 | + return maybe_unserialize($value); |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | /** |
@@ -306,11 +306,11 @@ discard block |
||
306 | 306 | * |
307 | 307 | * @param int $customer_id Customer ID. |
308 | 308 | */ |
309 | - public function delete_session( $customer_id ) { |
|
309 | + public function delete_session($customer_id) { |
|
310 | 310 | |
311 | - $key = $this->generate_key( $customer_id ); |
|
311 | + $key = $this->generate_key($customer_id); |
|
312 | 312 | |
313 | - delete_transient( $key ); |
|
313 | + delete_transient($key); |
|
314 | 314 | } |
315 | 315 | |
316 | 316 | /** |
@@ -319,9 +319,9 @@ discard block |
||
319 | 319 | * @param string $customer_id Customer ID. |
320 | 320 | * @param int $timestamp Timestamp to expire the cookie. |
321 | 321 | */ |
322 | - public function update_session_timestamp( $customer_id, $timestamp ) { |
|
322 | + public function update_session_timestamp($customer_id, $timestamp) { |
|
323 | 323 | |
324 | - set_transient( $this->generate_key( $customer_id ), maybe_serialize( $this->_data ), $timestamp ); |
|
324 | + set_transient($this->generate_key($customer_id), maybe_serialize($this->_data), $timestamp); |
|
325 | 325 | |
326 | 326 | } |
327 | 327 | } |
@@ -12,280 +12,280 @@ |
||
12 | 12 | */ |
13 | 13 | class GetPaid_Metaboxes { |
14 | 14 | |
15 | - /** |
|
16 | - * Only save metaboxes once. |
|
17 | - * |
|
18 | - * @var boolean |
|
19 | - */ |
|
20 | - private static $saved_meta_boxes = false; |
|
15 | + /** |
|
16 | + * Only save metaboxes once. |
|
17 | + * |
|
18 | + * @var boolean |
|
19 | + */ |
|
20 | + private static $saved_meta_boxes = false; |
|
21 | 21 | |
22 | 22 | /** |
23 | - * Hook in methods. |
|
24 | - */ |
|
25 | - public static function init() { |
|
23 | + * Hook in methods. |
|
24 | + */ |
|
25 | + public static function init() { |
|
26 | 26 | |
27 | - // Register metaboxes. |
|
28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 50, 2 ); |
|
27 | + // Register metaboxes. |
|
28 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 50, 2 ); |
|
29 | 29 | |
30 | - // Remove metaboxes. |
|
31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
30 | + // Remove metaboxes. |
|
31 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
32 | 32 | |
33 | - // Rename metaboxes. |
|
34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
33 | + // Rename metaboxes. |
|
34 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
35 | 35 | |
36 | - // Save metaboxes. |
|
37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
38 | - } |
|
36 | + // Save metaboxes. |
|
37 | + add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
38 | + } |
|
39 | 39 | |
40 | - /** |
|
41 | - * Register core metaboxes. |
|
42 | - */ |
|
43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
40 | + /** |
|
41 | + * Register core metaboxes. |
|
42 | + */ |
|
43 | + public static function add_meta_boxes( $post_type, $post ) { |
|
44 | 44 | |
45 | - // For invoices. |
|
46 | - self::add_invoice_meta_boxes( $post_type, $post ); |
|
45 | + // For invoices. |
|
46 | + self::add_invoice_meta_boxes( $post_type, $post ); |
|
47 | 47 | |
48 | - // For payment forms. |
|
49 | - self::add_payment_form_meta_boxes( $post_type, $post ); |
|
48 | + // For payment forms. |
|
49 | + self::add_payment_form_meta_boxes( $post_type, $post ); |
|
50 | 50 | |
51 | - // For invoice items. |
|
52 | - self::add_item_meta_boxes( $post_type ); |
|
51 | + // For invoice items. |
|
52 | + self::add_item_meta_boxes( $post_type ); |
|
53 | 53 | |
54 | - // For invoice discounts. |
|
55 | - if ( 'wpi_discount' === $post_type ) { |
|
56 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
57 | - } |
|
54 | + // For invoice discounts. |
|
55 | + if ( 'wpi_discount' === $post_type ) { |
|
56 | + add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
57 | + } |
|
58 | 58 | |
59 | - } |
|
59 | + } |
|
60 | 60 | |
61 | - /** |
|
62 | - * Register core metaboxes. |
|
63 | - */ |
|
64 | - protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
61 | + /** |
|
62 | + * Register core metaboxes. |
|
63 | + */ |
|
64 | + protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
65 | 65 | |
66 | - // For payment forms. |
|
67 | - if ( 'wpi_payment_form' === $post_type ) { |
|
66 | + // For payment forms. |
|
67 | + if ( 'wpi_payment_form' === $post_type ) { |
|
68 | 68 | |
69 | - // Design payment form. |
|
70 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
69 | + // Design payment form. |
|
70 | + add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
71 | 71 | |
72 | - // Payment form information. |
|
73 | - if ( wpinv_get_default_payment_form() !== $post->ID ) { |
|
74 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
75 | - } |
|
72 | + // Payment form information. |
|
73 | + if ( wpinv_get_default_payment_form() !== $post->ID ) { |
|
74 | + add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
75 | + } |
|
76 | 76 | } |
77 | 77 | |
78 | - } |
|
79 | - |
|
80 | - /** |
|
81 | - * Register core metaboxes. |
|
82 | - */ |
|
83 | - protected static function add_item_meta_boxes( $post_type ) { |
|
78 | + } |
|
84 | 79 | |
85 | - if ( 'wpi_item' === $post_type ) { |
|
86 | - |
|
87 | - // Item details. |
|
88 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
89 | - |
|
90 | - // If taxes are enabled, register the tax metabox. |
|
91 | - if ( wpinv_use_taxes() ) { |
|
92 | - add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
93 | - } |
|
80 | + /** |
|
81 | + * Register core metaboxes. |
|
82 | + */ |
|
83 | + protected static function add_item_meta_boxes( $post_type ) { |
|
94 | 84 | |
95 | - // Item info. |
|
96 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
85 | + if ( 'wpi_item' === $post_type ) { |
|
97 | 86 | |
98 | - // Item description. |
|
99 | - add_meta_box( 'postexcerpt', __( 'Item Description', 'invoicing' ), 'GetPaid_Meta_Box_Description::output', 'wpi_item', 'normal' ); |
|
100 | - } |
|
87 | + // Item details. |
|
88 | + add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
101 | 89 | |
102 | - } |
|
90 | + // If taxes are enabled, register the tax metabox. |
|
91 | + if ( wpinv_use_taxes() ) { |
|
92 | + add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
93 | + } |
|
103 | 94 | |
104 | - /** |
|
105 | - * Register invoice metaboxes. |
|
106 | - */ |
|
107 | - protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
95 | + // Item info. |
|
96 | + add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
108 | 97 | |
109 | - // For invoices... |
|
110 | - if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
111 | - $invoice = new WPInv_Invoice( $post ); |
|
98 | + // Item description. |
|
99 | + add_meta_box( 'postexcerpt', __( 'Item Description', 'invoicing' ), 'GetPaid_Meta_Box_Description::output', 'wpi_item', 'normal' ); |
|
100 | + } |
|
112 | 101 | |
113 | - // Resend invoice. |
|
114 | - if ( ! $invoice->is_draft() ) { |
|
102 | + } |
|
115 | 103 | |
116 | - add_meta_box( |
|
117 | - 'wpinv-mb-resend-invoice', |
|
118 | - sprintf( |
|
119 | - // translators: %s is the invoice type. |
|
120 | - __( 'Resend %s', 'invoicing' ), |
|
121 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
122 | - ), |
|
123 | - 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
124 | - $post_type, |
|
125 | - 'side', |
|
126 | - 'low' |
|
127 | - ); |
|
104 | + /** |
|
105 | + * Register invoice metaboxes. |
|
106 | + */ |
|
107 | + protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
108 | + |
|
109 | + // For invoices... |
|
110 | + if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
111 | + $invoice = new WPInv_Invoice( $post ); |
|
112 | + |
|
113 | + // Resend invoice. |
|
114 | + if ( ! $invoice->is_draft() ) { |
|
115 | + |
|
116 | + add_meta_box( |
|
117 | + 'wpinv-mb-resend-invoice', |
|
118 | + sprintf( |
|
119 | + // translators: %s is the invoice type. |
|
120 | + __( 'Resend %s', 'invoicing' ), |
|
121 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
122 | + ), |
|
123 | + 'GetPaid_Meta_Box_Resend_Invoice::output', |
|
124 | + $post_type, |
|
125 | + 'side', |
|
126 | + 'low' |
|
127 | + ); |
|
128 | + |
|
129 | + } |
|
130 | + |
|
131 | + // Subscriptions. |
|
132 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
133 | + if ( ! empty( $subscriptions ) ) { |
|
134 | + |
|
135 | + if ( is_array( $subscriptions ) ) { |
|
136 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
137 | + } else { |
|
138 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
139 | + } |
|
140 | + |
|
141 | + if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
142 | + add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
143 | + } |
|
144 | +} |
|
128 | 145 | |
129 | - } |
|
146 | + // Invoice details. |
|
147 | + add_meta_box( |
|
148 | + 'wpinv-details', |
|
149 | + sprintf( |
|
150 | + // translators: %s is the invoice type. |
|
151 | + __( '%s Details', 'invoicing' ), |
|
152 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
153 | + ), |
|
154 | + 'GetPaid_Meta_Box_Invoice_Details::output', |
|
155 | + $post_type, |
|
156 | + 'side' |
|
157 | + ); |
|
158 | + |
|
159 | + // Payment details. |
|
160 | + add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
161 | + |
|
162 | + // Billing details. |
|
163 | + add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
164 | + |
|
165 | + // Invoice items. |
|
166 | + add_meta_box( |
|
167 | + 'wpinv-items', |
|
168 | + sprintf( |
|
169 | + // translators: %s is the invoice type. |
|
170 | + __( '%s Items', 'invoicing' ), |
|
171 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
172 | + ), |
|
173 | + 'GetPaid_Meta_Box_Invoice_Items::output', |
|
174 | + $post_type, |
|
175 | + 'normal', |
|
176 | + 'high' |
|
177 | + ); |
|
178 | + |
|
179 | + // Invoice notes. |
|
180 | + add_meta_box( |
|
181 | + 'wpinv-notes', |
|
182 | + sprintf( |
|
183 | + // translators: %s is the invoice type. |
|
184 | + __( '%s Notes', 'invoicing' ), |
|
185 | + ucfirst( $invoice->get_invoice_quote_type() ) |
|
186 | + ), |
|
187 | + 'WPInv_Meta_Box_Notes::output', |
|
188 | + $post_type, |
|
189 | + 'side', |
|
190 | + 'low' |
|
191 | + ); |
|
192 | + |
|
193 | + // Shipping Address. |
|
194 | + if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
195 | + add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
196 | + } |
|
197 | + |
|
198 | + // Payment form information. |
|
199 | + if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
200 | + add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
201 | + } |
|
202 | +} |
|
130 | 203 | |
131 | - // Subscriptions. |
|
132 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
133 | - if ( ! empty( $subscriptions ) ) { |
|
204 | + } |
|
134 | 205 | |
135 | - if ( is_array( $subscriptions ) ) { |
|
136 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
137 | - } else { |
|
138 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
139 | - } |
|
206 | + /** |
|
207 | + * Remove some metaboxes. |
|
208 | + */ |
|
209 | + public static function remove_meta_boxes() { |
|
210 | + remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
211 | + remove_meta_box( 'postexcerpt', 'wpi_item', 'normal' ); |
|
212 | + } |
|
140 | 213 | |
141 | - if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
142 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
143 | - } |
|
144 | -} |
|
214 | + /** |
|
215 | + * Rename other metaboxes. |
|
216 | + */ |
|
217 | + public static function rename_meta_boxes() { |
|
145 | 218 | |
146 | - // Invoice details. |
|
147 | - add_meta_box( |
|
148 | - 'wpinv-details', |
|
149 | - sprintf( |
|
150 | - // translators: %s is the invoice type. |
|
151 | - __( '%s Details', 'invoicing' ), |
|
152 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
153 | - ), |
|
154 | - 'GetPaid_Meta_Box_Invoice_Details::output', |
|
155 | - $post_type, |
|
156 | - 'side' |
|
157 | - ); |
|
158 | - |
|
159 | - // Payment details. |
|
160 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
161 | - |
|
162 | - // Billing details. |
|
163 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
164 | - |
|
165 | - // Invoice items. |
|
166 | - add_meta_box( |
|
167 | - 'wpinv-items', |
|
168 | - sprintf( |
|
169 | - // translators: %s is the invoice type. |
|
170 | - __( '%s Items', 'invoicing' ), |
|
171 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
172 | - ), |
|
173 | - 'GetPaid_Meta_Box_Invoice_Items::output', |
|
174 | - $post_type, |
|
175 | - 'normal', |
|
176 | - 'high' |
|
177 | - ); |
|
178 | - |
|
179 | - // Invoice notes. |
|
180 | - add_meta_box( |
|
181 | - 'wpinv-notes', |
|
182 | - sprintf( |
|
183 | - // translators: %s is the invoice type. |
|
184 | - __( '%s Notes', 'invoicing' ), |
|
185 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
186 | - ), |
|
187 | - 'WPInv_Meta_Box_Notes::output', |
|
188 | - $post_type, |
|
189 | - 'side', |
|
190 | - 'low' |
|
191 | - ); |
|
192 | - |
|
193 | - // Shipping Address. |
|
194 | - if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
195 | - add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
196 | - } |
|
197 | - |
|
198 | - // Payment form information. |
|
199 | - if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
200 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
201 | - } |
|
202 | -} |
|
219 | + } |
|
203 | 220 | |
204 | - } |
|
205 | - |
|
206 | - /** |
|
207 | - * Remove some metaboxes. |
|
208 | - */ |
|
209 | - public static function remove_meta_boxes() { |
|
210 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
211 | - remove_meta_box( 'postexcerpt', 'wpi_item', 'normal' ); |
|
212 | - } |
|
213 | - |
|
214 | - /** |
|
215 | - * Rename other metaboxes. |
|
216 | - */ |
|
217 | - public static function rename_meta_boxes() { |
|
218 | - |
|
219 | - } |
|
220 | - |
|
221 | - /** |
|
222 | - * Check if we're saving, then trigger an action based on the post type. |
|
223 | - * |
|
224 | - * @param int $post_id Post ID. |
|
225 | - * @param object $post Post object. |
|
226 | - */ |
|
227 | - public static function save_meta_boxes( $post_id, $post ) { |
|
228 | - $post_id = absint( $post_id ); |
|
229 | - $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
230 | - |
|
231 | - // Do not save for ajax requests. |
|
232 | - if ( ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
233 | - return; |
|
234 | - } |
|
235 | - |
|
236 | - // $post_id and $post are required |
|
237 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
238 | - return; |
|
239 | - } |
|
240 | - |
|
241 | - // Dont' save meta boxes for revisions or autosaves. |
|
242 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
243 | - return; |
|
244 | - } |
|
245 | - |
|
246 | - // Check the nonce. |
|
247 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
248 | - return; |
|
249 | - } |
|
250 | - |
|
251 | - // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
252 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
253 | - return; |
|
254 | - } |
|
255 | - |
|
256 | - // Check user has permission to edit. |
|
257 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
258 | - return; |
|
259 | - } |
|
260 | - |
|
261 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
262 | - |
|
263 | - // We need this save event to run once to avoid potential endless loops. |
|
264 | - self::$saved_meta_boxes = true; |
|
265 | - |
|
266 | - return GetPaid_Meta_Box_Invoice_Address::save( $post_id, wp_kses_post_deep( $_POST ) ); |
|
267 | - |
|
268 | - } |
|
269 | - |
|
270 | - // Ensure this is our post type. |
|
271 | - $post_types_map = array( |
|
272 | - 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
273 | - 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
274 | - 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
275 | - ); |
|
276 | - |
|
277 | - // Is this our post type? |
|
278 | - if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
279 | - return; |
|
280 | - } |
|
281 | - |
|
282 | - // We need this save event to run once to avoid potential endless loops. |
|
283 | - self::$saved_meta_boxes = true; |
|
284 | - |
|
285 | - // Save the post. |
|
286 | - $class = $post_types_map[ $post->post_type ]; |
|
287 | - $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
288 | - |
|
289 | - } |
|
221 | + /** |
|
222 | + * Check if we're saving, then trigger an action based on the post type. |
|
223 | + * |
|
224 | + * @param int $post_id Post ID. |
|
225 | + * @param object $post Post object. |
|
226 | + */ |
|
227 | + public static function save_meta_boxes( $post_id, $post ) { |
|
228 | + $post_id = absint( $post_id ); |
|
229 | + $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
230 | + |
|
231 | + // Do not save for ajax requests. |
|
232 | + if ( ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
233 | + return; |
|
234 | + } |
|
235 | + |
|
236 | + // $post_id and $post are required |
|
237 | + if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
238 | + return; |
|
239 | + } |
|
240 | + |
|
241 | + // Dont' save meta boxes for revisions or autosaves. |
|
242 | + if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
243 | + return; |
|
244 | + } |
|
245 | + |
|
246 | + // Check the nonce. |
|
247 | + if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
248 | + return; |
|
249 | + } |
|
250 | + |
|
251 | + // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
252 | + if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
253 | + return; |
|
254 | + } |
|
255 | + |
|
256 | + // Check user has permission to edit. |
|
257 | + if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
258 | + return; |
|
259 | + } |
|
260 | + |
|
261 | + if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
262 | + |
|
263 | + // We need this save event to run once to avoid potential endless loops. |
|
264 | + self::$saved_meta_boxes = true; |
|
265 | + |
|
266 | + return GetPaid_Meta_Box_Invoice_Address::save( $post_id, wp_kses_post_deep( $_POST ) ); |
|
267 | + |
|
268 | + } |
|
269 | + |
|
270 | + // Ensure this is our post type. |
|
271 | + $post_types_map = array( |
|
272 | + 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
273 | + 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
274 | + 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
275 | + ); |
|
276 | + |
|
277 | + // Is this our post type? |
|
278 | + if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
279 | + return; |
|
280 | + } |
|
281 | + |
|
282 | + // We need this save event to run once to avoid potential endless loops. |
|
283 | + self::$saved_meta_boxes = true; |
|
284 | + |
|
285 | + // Save the post. |
|
286 | + $class = $post_types_map[ $post->post_type ]; |
|
287 | + $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
288 | + |
|
289 | + } |
|
290 | 290 | |
291 | 291 | } |
@@ -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 | * Metaboxes Admin Class |
@@ -25,35 +25,35 @@ discard block |
||
25 | 25 | public static function init() { |
26 | 26 | |
27 | 27 | // Register metaboxes. |
28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 50, 2 ); |
|
28 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 50, 2); |
|
29 | 29 | |
30 | 30 | // Remove metaboxes. |
31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
31 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30); |
|
32 | 32 | |
33 | 33 | // Rename metaboxes. |
34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
34 | + add_action('add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45); |
|
35 | 35 | |
36 | 36 | // Save metaboxes. |
37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
37 | + add_action('save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | /** |
41 | 41 | * Register core metaboxes. |
42 | 42 | */ |
43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
43 | + public static function add_meta_boxes($post_type, $post) { |
|
44 | 44 | |
45 | 45 | // For invoices. |
46 | - self::add_invoice_meta_boxes( $post_type, $post ); |
|
46 | + self::add_invoice_meta_boxes($post_type, $post); |
|
47 | 47 | |
48 | 48 | // For payment forms. |
49 | - self::add_payment_form_meta_boxes( $post_type, $post ); |
|
49 | + self::add_payment_form_meta_boxes($post_type, $post); |
|
50 | 50 | |
51 | 51 | // For invoice items. |
52 | - self::add_item_meta_boxes( $post_type ); |
|
52 | + self::add_item_meta_boxes($post_type); |
|
53 | 53 | |
54 | 54 | // For invoice discounts. |
55 | - if ( 'wpi_discount' === $post_type ) { |
|
56 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
55 | + if ('wpi_discount' === $post_type) { |
|
56 | + add_meta_box('wpinv_discount_details', __('Discount Details', 'invoicing'), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high'); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | } |
@@ -61,17 +61,17 @@ discard block |
||
61 | 61 | /** |
62 | 62 | * Register core metaboxes. |
63 | 63 | */ |
64 | - protected static function add_payment_form_meta_boxes( $post_type, $post ) { |
|
64 | + protected static function add_payment_form_meta_boxes($post_type, $post) { |
|
65 | 65 | |
66 | 66 | // For payment forms. |
67 | - if ( 'wpi_payment_form' === $post_type ) { |
|
67 | + if ('wpi_payment_form' === $post_type) { |
|
68 | 68 | |
69 | 69 | // Design payment form. |
70 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
70 | + add_meta_box('wpinv-payment-form-design', __('Payment Form', 'invoicing'), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal'); |
|
71 | 71 | |
72 | 72 | // Payment form information. |
73 | - if ( wpinv_get_default_payment_form() !== $post->ID ) { |
|
74 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
73 | + if (wpinv_get_default_payment_form() !== $post->ID) { |
|
74 | + add_meta_box('wpinv-payment-form-info', __('Details', 'invoicing'), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side'); |
|
75 | 75 | } |
76 | 76 | } |
77 | 77 | |
@@ -80,23 +80,23 @@ discard block |
||
80 | 80 | /** |
81 | 81 | * Register core metaboxes. |
82 | 82 | */ |
83 | - protected static function add_item_meta_boxes( $post_type ) { |
|
83 | + protected static function add_item_meta_boxes($post_type) { |
|
84 | 84 | |
85 | - if ( 'wpi_item' === $post_type ) { |
|
85 | + if ('wpi_item' === $post_type) { |
|
86 | 86 | |
87 | 87 | // Item details. |
88 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
88 | + add_meta_box('wpinv_item_details', __('Item Details', 'invoicing'), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high'); |
|
89 | 89 | |
90 | 90 | // If taxes are enabled, register the tax metabox. |
91 | - if ( wpinv_use_taxes() ) { |
|
92 | - add_meta_box( 'wpinv_item_vat', __( 'Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
91 | + if (wpinv_use_taxes()) { |
|
92 | + add_meta_box('wpinv_item_vat', __('Tax', 'invoicing'), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high'); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | // Item info. |
96 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
96 | + add_meta_box('wpinv_field_item_info', __('Item info', 'invoicing'), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core'); |
|
97 | 97 | |
98 | 98 | // Item description. |
99 | - add_meta_box( 'postexcerpt', __( 'Item Description', 'invoicing' ), 'GetPaid_Meta_Box_Description::output', 'wpi_item', 'normal' ); |
|
99 | + add_meta_box('postexcerpt', __('Item Description', 'invoicing'), 'GetPaid_Meta_Box_Description::output', 'wpi_item', 'normal'); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | } |
@@ -104,21 +104,21 @@ discard block |
||
104 | 104 | /** |
105 | 105 | * Register invoice metaboxes. |
106 | 106 | */ |
107 | - protected static function add_invoice_meta_boxes( $post_type, $post ) { |
|
107 | + protected static function add_invoice_meta_boxes($post_type, $post) { |
|
108 | 108 | |
109 | 109 | // For invoices... |
110 | - if ( getpaid_is_invoice_post_type( $post_type ) ) { |
|
111 | - $invoice = new WPInv_Invoice( $post ); |
|
110 | + if (getpaid_is_invoice_post_type($post_type)) { |
|
111 | + $invoice = new WPInv_Invoice($post); |
|
112 | 112 | |
113 | 113 | // Resend invoice. |
114 | - if ( ! $invoice->is_draft() ) { |
|
114 | + if (!$invoice->is_draft()) { |
|
115 | 115 | |
116 | 116 | add_meta_box( |
117 | 117 | 'wpinv-mb-resend-invoice', |
118 | 118 | sprintf( |
119 | 119 | // translators: %s is the invoice type. |
120 | - __( 'Resend %s', 'invoicing' ), |
|
121 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
120 | + __('Resend %s', 'invoicing'), |
|
121 | + ucfirst($invoice->get_invoice_quote_type()) |
|
122 | 122 | ), |
123 | 123 | 'GetPaid_Meta_Box_Resend_Invoice::output', |
124 | 124 | $post_type, |
@@ -129,17 +129,17 @@ discard block |
||
129 | 129 | } |
130 | 130 | |
131 | 131 | // Subscriptions. |
132 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
133 | - if ( ! empty( $subscriptions ) ) { |
|
132 | + $subscriptions = getpaid_get_invoice_subscriptions($invoice); |
|
133 | + if (!empty($subscriptions)) { |
|
134 | 134 | |
135 | - if ( is_array( $subscriptions ) ) { |
|
136 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Related Subscriptions', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced' ); |
|
135 | + if (is_array($subscriptions)) { |
|
136 | + add_meta_box('wpinv-mb-subscriptions', __('Related Subscriptions', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output_related', $post_type, 'advanced'); |
|
137 | 137 | } else { |
138 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced' ); |
|
138 | + add_meta_box('wpinv-mb-subscriptions', __('Subscription Details', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output', $post_type, 'advanced'); |
|
139 | 139 | } |
140 | 140 | |
141 | - if ( getpaid_count_subscription_invoices( $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id() ) > 1 ) { |
|
142 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced' ); |
|
141 | + if (getpaid_count_subscription_invoices($invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id()) > 1) { |
|
142 | + add_meta_box('wpinv-mb-subscription-invoices', __('Related Payments', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', $post_type, 'advanced'); |
|
143 | 143 | } |
144 | 144 | } |
145 | 145 | |
@@ -148,8 +148,8 @@ discard block |
||
148 | 148 | 'wpinv-details', |
149 | 149 | sprintf( |
150 | 150 | // translators: %s is the invoice type. |
151 | - __( '%s Details', 'invoicing' ), |
|
152 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
151 | + __('%s Details', 'invoicing'), |
|
152 | + ucfirst($invoice->get_invoice_quote_type()) |
|
153 | 153 | ), |
154 | 154 | 'GetPaid_Meta_Box_Invoice_Details::output', |
155 | 155 | $post_type, |
@@ -157,18 +157,18 @@ discard block |
||
157 | 157 | ); |
158 | 158 | |
159 | 159 | // Payment details. |
160 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default' ); |
|
160 | + add_meta_box('wpinv-payment-meta', __('Payment Meta', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', $post_type, 'side', 'default'); |
|
161 | 161 | |
162 | 162 | // Billing details. |
163 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high' ); |
|
163 | + add_meta_box('wpinv-address', __('Billing Details', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Address::output', $post_type, 'normal', 'high'); |
|
164 | 164 | |
165 | 165 | // Invoice items. |
166 | 166 | add_meta_box( |
167 | 167 | 'wpinv-items', |
168 | 168 | sprintf( |
169 | 169 | // translators: %s is the invoice type. |
170 | - __( '%s Items', 'invoicing' ), |
|
171 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
170 | + __('%s Items', 'invoicing'), |
|
171 | + ucfirst($invoice->get_invoice_quote_type()) |
|
172 | 172 | ), |
173 | 173 | 'GetPaid_Meta_Box_Invoice_Items::output', |
174 | 174 | $post_type, |
@@ -181,8 +181,8 @@ discard block |
||
181 | 181 | 'wpinv-notes', |
182 | 182 | sprintf( |
183 | 183 | // translators: %s is the invoice type. |
184 | - __( '%s Notes', 'invoicing' ), |
|
185 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
184 | + __('%s Notes', 'invoicing'), |
|
185 | + ucfirst($invoice->get_invoice_quote_type()) |
|
186 | 186 | ), |
187 | 187 | 'WPInv_Meta_Box_Notes::output', |
188 | 188 | $post_type, |
@@ -191,13 +191,13 @@ discard block |
||
191 | 191 | ); |
192 | 192 | |
193 | 193 | // Shipping Address. |
194 | - if ( get_post_meta( $invoice->get_id(), 'shipping_address', true ) ) { |
|
195 | - add_meta_box( 'wpinv-invoice-shipping-details', __( 'Shipping Address', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high' ); |
|
194 | + if (get_post_meta($invoice->get_id(), 'shipping_address', true)) { |
|
195 | + add_meta_box('wpinv-invoice-shipping-details', __('Shipping Address', 'invoicing'), 'GetPaid_Meta_Box_Invoice_Shipping_Address::output', $post_type, 'side', 'high'); |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | // Payment form information. |
199 | - if ( get_post_meta( $invoice->get_id(), 'payment_form_data', true ) ) { |
|
200 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high' ); |
|
199 | + if (get_post_meta($invoice->get_id(), 'payment_form_data', true)) { |
|
200 | + add_meta_box('wpinv-invoice-payment-form-details', __('Payment Form Details', 'invoicing'), 'WPInv_Meta_Box_Payment_Form::output_details', $post_type, 'side', 'high'); |
|
201 | 201 | } |
202 | 202 | } |
203 | 203 | |
@@ -207,8 +207,8 @@ discard block |
||
207 | 207 | * Remove some metaboxes. |
208 | 208 | */ |
209 | 209 | public static function remove_meta_boxes() { |
210 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
211 | - remove_meta_box( 'postexcerpt', 'wpi_item', 'normal' ); |
|
210 | + remove_meta_box('wpseo_meta', 'wpi_invoice', 'normal'); |
|
211 | + remove_meta_box('postexcerpt', 'wpi_item', 'normal'); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
@@ -224,46 +224,46 @@ discard block |
||
224 | 224 | * @param int $post_id Post ID. |
225 | 225 | * @param object $post Post object. |
226 | 226 | */ |
227 | - public static function save_meta_boxes( $post_id, $post ) { |
|
228 | - $post_id = absint( $post_id ); |
|
229 | - $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
227 | + public static function save_meta_boxes($post_id, $post) { |
|
228 | + $post_id = absint($post_id); |
|
229 | + $data = wp_kses_post_deep(wp_unslash($_POST)); |
|
230 | 230 | |
231 | 231 | // Do not save for ajax requests. |
232 | - if ( ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
232 | + if ((defined('DOING_AJAX') && DOING_AJAX) || isset($_REQUEST['bulk_edit'])) { |
|
233 | 233 | return; |
234 | 234 | } |
235 | 235 | |
236 | 236 | // $post_id and $post are required |
237 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
237 | + if (empty($post_id) || empty($post) || self::$saved_meta_boxes) { |
|
238 | 238 | return; |
239 | 239 | } |
240 | 240 | |
241 | 241 | // Dont' save meta boxes for revisions or autosaves. |
242 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
242 | + if ((defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) || is_int(wp_is_post_revision($post)) || is_int(wp_is_post_autosave($post))) { |
|
243 | 243 | return; |
244 | 244 | } |
245 | 245 | |
246 | 246 | // Check the nonce. |
247 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
247 | + if (empty($data['getpaid_meta_nonce']) || !wp_verify_nonce($data['getpaid_meta_nonce'], 'getpaid_meta_nonce')) { |
|
248 | 248 | return; |
249 | 249 | } |
250 | 250 | |
251 | 251 | // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
252 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
252 | + if (empty($data['post_ID']) || absint($data['post_ID']) !== $post_id) { |
|
253 | 253 | return; |
254 | 254 | } |
255 | 255 | |
256 | 256 | // Check user has permission to edit. |
257 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
257 | + if (!current_user_can('edit_post', $post_id)) { |
|
258 | 258 | return; |
259 | 259 | } |
260 | 260 | |
261 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
261 | + if (getpaid_is_invoice_post_type($post->post_type)) { |
|
262 | 262 | |
263 | 263 | // We need this save event to run once to avoid potential endless loops. |
264 | 264 | self::$saved_meta_boxes = true; |
265 | 265 | |
266 | - return GetPaid_Meta_Box_Invoice_Address::save( $post_id, wp_kses_post_deep( $_POST ) ); |
|
266 | + return GetPaid_Meta_Box_Invoice_Address::save($post_id, wp_kses_post_deep($_POST)); |
|
267 | 267 | |
268 | 268 | } |
269 | 269 | |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | ); |
276 | 276 | |
277 | 277 | // Is this our post type? |
278 | - if ( ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
278 | + if (!isset($post_types_map[$post->post_type])) { |
|
279 | 279 | return; |
280 | 280 | } |
281 | 281 | |
@@ -283,8 +283,8 @@ discard block |
||
283 | 283 | self::$saved_meta_boxes = true; |
284 | 284 | |
285 | 285 | // Save the post. |
286 | - $class = $post_types_map[ $post->post_type ]; |
|
287 | - $class::save( $post_id, wp_kses_post_deep( $_POST ), $post ); |
|
286 | + $class = $post_types_map[$post->post_type]; |
|
287 | + $class::save($post_id, wp_kses_post_deep($_POST), $post); |
|
288 | 288 | |
289 | 289 | } |
290 | 290 |
@@ -13,97 +13,97 @@ discard block |
||
13 | 13 | class GetPaid_Paypal_Gateway extends GetPaid_Payment_Gateway { |
14 | 14 | |
15 | 15 | /** |
16 | - * Payment method id. |
|
17 | - * |
|
18 | - * @var string |
|
19 | - */ |
|
16 | + * Payment method id. |
|
17 | + * |
|
18 | + * @var string |
|
19 | + */ |
|
20 | 20 | public $id = 'paypal'; |
21 | 21 | |
22 | 22 | /** |
23 | - * An array of features that this gateway supports. |
|
24 | - * |
|
25 | - * @var array |
|
26 | - */ |
|
23 | + * An array of features that this gateway supports. |
|
24 | + * |
|
25 | + * @var array |
|
26 | + */ |
|
27 | 27 | protected $supports = array( 'subscription', 'sandbox', 'single_subscription_group' ); |
28 | 28 | |
29 | 29 | /** |
30 | - * Payment method order. |
|
31 | - * |
|
32 | - * @var int |
|
33 | - */ |
|
30 | + * Payment method order. |
|
31 | + * |
|
32 | + * @var int |
|
33 | + */ |
|
34 | 34 | public $order = 1; |
35 | 35 | |
36 | 36 | /** |
37 | - * Stores line items to send to PayPal. |
|
38 | - * |
|
39 | - * @var array |
|
40 | - */ |
|
37 | + * Stores line items to send to PayPal. |
|
38 | + * |
|
39 | + * @var array |
|
40 | + */ |
|
41 | 41 | protected $line_items = array(); |
42 | 42 | |
43 | 43 | /** |
44 | - * Endpoint for requests from PayPal. |
|
45 | - * |
|
46 | - * @var string |
|
47 | - */ |
|
48 | - protected $notify_url; |
|
49 | - |
|
50 | - /** |
|
51 | - * Endpoint for requests to PayPal. |
|
52 | - * |
|
53 | - * @var string |
|
54 | - */ |
|
44 | + * Endpoint for requests from PayPal. |
|
45 | + * |
|
46 | + * @var string |
|
47 | + */ |
|
48 | + protected $notify_url; |
|
49 | + |
|
50 | + /** |
|
51 | + * Endpoint for requests to PayPal. |
|
52 | + * |
|
53 | + * @var string |
|
54 | + */ |
|
55 | 55 | protected $endpoint; |
56 | 56 | |
57 | 57 | /** |
58 | - * Currencies this gateway is allowed for. |
|
59 | - * |
|
60 | - * @var array |
|
61 | - */ |
|
62 | - public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
58 | + * Currencies this gateway is allowed for. |
|
59 | + * |
|
60 | + * @var array |
|
61 | + */ |
|
62 | + public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
63 | 63 | |
64 | 64 | /** |
65 | - * URL to view a transaction. |
|
66 | - * |
|
67 | - * @var string |
|
68 | - */ |
|
65 | + * URL to view a transaction. |
|
66 | + * |
|
67 | + * @var string |
|
68 | + */ |
|
69 | 69 | public $view_transaction_url = 'https://www.{sandbox}paypal.com/activity/payment/%s'; |
70 | 70 | |
71 | 71 | /** |
72 | - * URL to view a subscription. |
|
73 | - * |
|
74 | - * @var string |
|
75 | - */ |
|
76 | - public $view_subscription_url = 'https://www.{sandbox}paypal.com/cgi-bin/webscr?cmd=_profile-recurring-payments&encrypted_profile_id=%s'; |
|
72 | + * URL to view a subscription. |
|
73 | + * |
|
74 | + * @var string |
|
75 | + */ |
|
76 | + public $view_subscription_url = 'https://www.{sandbox}paypal.com/cgi-bin/webscr?cmd=_profile-recurring-payments&encrypted_profile_id=%s'; |
|
77 | 77 | |
78 | 78 | /** |
79 | - * Class constructor. |
|
80 | - */ |
|
81 | - public function __construct() { |
|
79 | + * Class constructor. |
|
80 | + */ |
|
81 | + public function __construct() { |
|
82 | 82 | |
83 | 83 | $this->title = __( 'PayPal Standard', 'invoicing' ); |
84 | 84 | $this->method_title = __( 'PayPal Standard', 'invoicing' ); |
85 | 85 | $this->checkout_button_text = __( 'Proceed to PayPal', 'invoicing' ); |
86 | 86 | $this->notify_url = wpinv_get_ipn_url( $this->id ); |
87 | 87 | |
88 | - add_filter( 'wpinv_subscription_cancel_url', array( $this, 'filter_cancel_subscription_url' ), 10, 2 ); |
|
89 | - add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
88 | + add_filter( 'wpinv_subscription_cancel_url', array( $this, 'filter_cancel_subscription_url' ), 10, 2 ); |
|
89 | + add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
90 | 90 | add_filter( 'getpaid_paypal_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
91 | - add_filter( 'getpaid_get_paypal_connect_url', array( $this, 'maybe_get_connect_url' ), 10, 2 ); |
|
92 | - add_action( 'getpaid_authenticated_admin_action_connect_paypal', array( $this, 'connect_paypal' ) ); |
|
93 | - add_action( 'wpinv_paypal_connect', array( $this, 'display_connect_buttons' ) ); |
|
94 | - parent::__construct(); |
|
91 | + add_filter( 'getpaid_get_paypal_connect_url', array( $this, 'maybe_get_connect_url' ), 10, 2 ); |
|
92 | + add_action( 'getpaid_authenticated_admin_action_connect_paypal', array( $this, 'connect_paypal' ) ); |
|
93 | + add_action( 'wpinv_paypal_connect', array( $this, 'display_connect_buttons' ) ); |
|
94 | + parent::__construct(); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
98 | - * Process Payment. |
|
99 | - * |
|
100 | - * |
|
101 | - * @param WPInv_Invoice $invoice Invoice. |
|
102 | - * @param array $submission_data Posted checkout fields. |
|
103 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
104 | - * @return array |
|
105 | - */ |
|
106 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
98 | + * Process Payment. |
|
99 | + * |
|
100 | + * |
|
101 | + * @param WPInv_Invoice $invoice Invoice. |
|
102 | + * @param array $submission_data Posted checkout fields. |
|
103 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
104 | + * @return array |
|
105 | + */ |
|
106 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
107 | 107 | |
108 | 108 | // Get redirect url. |
109 | 109 | $paypal_redirect = $this->get_request_url( $invoice ); |
@@ -126,15 +126,15 @@ discard block |
||
126 | 126 | } |
127 | 127 | |
128 | 128 | /** |
129 | - * Get the PayPal request URL for an invoice. |
|
130 | - * |
|
131 | - * @param WPInv_Invoice $invoice Invoice object. |
|
132 | - * @return string |
|
133 | - */ |
|
134 | - public function get_request_url( $invoice ) { |
|
129 | + * Get the PayPal request URL for an invoice. |
|
130 | + * |
|
131 | + * @param WPInv_Invoice $invoice Invoice object. |
|
132 | + * @return string |
|
133 | + */ |
|
134 | + public function get_request_url( $invoice ) { |
|
135 | 135 | |
136 | 136 | // Endpoint for this request |
137 | - $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
137 | + $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
138 | 138 | |
139 | 139 | // Retrieve paypal args. |
140 | 140 | $paypal_args = map_deep( $this->get_paypal_args( $invoice ), 'urlencode' ); |
@@ -147,45 +147,45 @@ discard block |
||
147 | 147 | |
148 | 148 | return add_query_arg( $paypal_args, $this->endpoint ); |
149 | 149 | |
150 | - } |
|
150 | + } |
|
151 | 151 | |
152 | 152 | /** |
153 | - * Get PayPal Args for passing to PP. |
|
154 | - * |
|
155 | - * @param WPInv_Invoice $invoice Invoice object. |
|
156 | - * @return array |
|
157 | - */ |
|
158 | - protected function get_paypal_args( $invoice ) { |
|
153 | + * Get PayPal Args for passing to PP. |
|
154 | + * |
|
155 | + * @param WPInv_Invoice $invoice Invoice object. |
|
156 | + * @return array |
|
157 | + */ |
|
158 | + protected function get_paypal_args( $invoice ) { |
|
159 | 159 | |
160 | 160 | // Whether or not to send the line items as one item. |
161 | - $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
162 | - |
|
163 | - if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
164 | - $force_one_line_item = true; |
|
165 | - } |
|
166 | - |
|
167 | - $paypal_args = apply_filters( |
|
168 | - 'getpaid_paypal_args', |
|
169 | - array_merge( |
|
170 | - $this->get_transaction_args( $invoice ), |
|
171 | - $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
172 | - ), |
|
173 | - $invoice |
|
174 | - ); |
|
175 | - |
|
176 | - return $this->fix_request_length( $invoice, $paypal_args ); |
|
161 | + $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
162 | + |
|
163 | + if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
164 | + $force_one_line_item = true; |
|
165 | + } |
|
166 | + |
|
167 | + $paypal_args = apply_filters( |
|
168 | + 'getpaid_paypal_args', |
|
169 | + array_merge( |
|
170 | + $this->get_transaction_args( $invoice ), |
|
171 | + $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
172 | + ), |
|
173 | + $invoice |
|
174 | + ); |
|
175 | + |
|
176 | + return $this->fix_request_length( $invoice, $paypal_args ); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /** |
180 | - * Get transaction args for paypal request. |
|
181 | - * |
|
182 | - * @param WPInv_Invoice $invoice Invoice object. |
|
183 | - * @return array |
|
184 | - */ |
|
185 | - protected function get_transaction_args( $invoice ) { |
|
186 | - |
|
187 | - $email = $this->is_sandbox( $invoice ) ? wpinv_get_option( 'paypal_sandbox_email', wpinv_get_option( 'paypal_email', '' ) ) : wpinv_get_option( 'paypal_email', '' ); |
|
188 | - return array( |
|
180 | + * Get transaction args for paypal request. |
|
181 | + * |
|
182 | + * @param WPInv_Invoice $invoice Invoice object. |
|
183 | + * @return array |
|
184 | + */ |
|
185 | + protected function get_transaction_args( $invoice ) { |
|
186 | + |
|
187 | + $email = $this->is_sandbox( $invoice ) ? wpinv_get_option( 'paypal_sandbox_email', wpinv_get_option( 'paypal_email', '' ) ) : wpinv_get_option( 'paypal_email', '' ); |
|
188 | + return array( |
|
189 | 189 | 'cmd' => '_cart', |
190 | 190 | 'business' => $email, |
191 | 191 | 'no_shipping' => '1', |
@@ -210,16 +210,16 @@ discard block |
||
210 | 210 | } |
211 | 211 | |
212 | 212 | /** |
213 | - * Get line item args for paypal request. |
|
214 | - * |
|
215 | - * @param WPInv_Invoice $invoice Invoice object. |
|
216 | - * @param bool $force_one_line_item Create only one item for this invoice. |
|
217 | - * @return array |
|
218 | - */ |
|
219 | - protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
213 | + * Get line item args for paypal request. |
|
214 | + * |
|
215 | + * @param WPInv_Invoice $invoice Invoice object. |
|
216 | + * @param bool $force_one_line_item Create only one item for this invoice. |
|
217 | + * @return array |
|
218 | + */ |
|
219 | + protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
220 | 220 | |
221 | 221 | // Maybe send invoice as a single item. |
222 | - if ( $force_one_line_item ) { |
|
222 | + if ( $force_one_line_item ) { |
|
223 | 223 | return $this->get_line_item_args_single_item( $invoice ); |
224 | 224 | } |
225 | 225 | |
@@ -239,129 +239,129 @@ discard block |
||
239 | 239 | $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_discount(), 2 ); |
240 | 240 | } |
241 | 241 | |
242 | - return array_merge( $line_item_args, $this->get_line_items() ); |
|
242 | + return array_merge( $line_item_args, $this->get_line_items() ); |
|
243 | 243 | |
244 | 244 | } |
245 | 245 | |
246 | 246 | /** |
247 | - * Get line item args for paypal request as a single line item. |
|
248 | - * |
|
249 | - * @param WPInv_Invoice $invoice Invoice object. |
|
250 | - * @return array |
|
251 | - */ |
|
252 | - protected function get_line_item_args_single_item( $invoice ) { |
|
253 | - $this->delete_line_items(); |
|
247 | + * Get line item args for paypal request as a single line item. |
|
248 | + * |
|
249 | + * @param WPInv_Invoice $invoice Invoice object. |
|
250 | + * @return array |
|
251 | + */ |
|
252 | + protected function get_line_item_args_single_item( $invoice ) { |
|
253 | + $this->delete_line_items(); |
|
254 | 254 | |
255 | 255 | $item_name = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
256 | - $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
256 | + $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
257 | 257 | |
258 | - return $this->get_line_items(); |
|
258 | + return $this->get_line_items(); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
262 | - * Return all line items. |
|
263 | - */ |
|
264 | - protected function get_line_items() { |
|
265 | - return $this->line_items; |
|
266 | - } |
|
262 | + * Return all line items. |
|
263 | + */ |
|
264 | + protected function get_line_items() { |
|
265 | + return $this->line_items; |
|
266 | + } |
|
267 | 267 | |
268 | 268 | /** |
269 | - * Remove all line items. |
|
270 | - */ |
|
271 | - protected function delete_line_items() { |
|
272 | - $this->line_items = array(); |
|
269 | + * Remove all line items. |
|
270 | + */ |
|
271 | + protected function delete_line_items() { |
|
272 | + $this->line_items = array(); |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | /** |
276 | - * Prepare line items to send to paypal. |
|
277 | - * |
|
278 | - * @param WPInv_Invoice $invoice Invoice object. |
|
279 | - */ |
|
280 | - protected function prepare_line_items( $invoice ) { |
|
281 | - $this->delete_line_items(); |
|
282 | - |
|
283 | - // Items. |
|
284 | - foreach ( $invoice->get_items() as $item ) { |
|
285 | - $amount = $item->get_price(); |
|
286 | - $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
|
287 | - $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
276 | + * Prepare line items to send to paypal. |
|
277 | + * |
|
278 | + * @param WPInv_Invoice $invoice Invoice object. |
|
279 | + */ |
|
280 | + protected function prepare_line_items( $invoice ) { |
|
281 | + $this->delete_line_items(); |
|
282 | + |
|
283 | + // Items. |
|
284 | + foreach ( $invoice->get_items() as $item ) { |
|
285 | + $amount = $item->get_price(); |
|
286 | + $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
|
287 | + $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
288 | 288 | } |
289 | 289 | |
290 | 290 | // Fees. |
291 | - foreach ( $invoice->get_fees() as $fee => $data ) { |
|
291 | + foreach ( $invoice->get_fees() as $fee => $data ) { |
|
292 | 292 | $this->add_line_item( $fee, 1, wpinv_sanitize_amount( $data['initial_fee'] ) ); |
293 | 293 | } |
294 | 294 | |
295 | 295 | } |
296 | 296 | |
297 | 297 | /** |
298 | - * Add PayPal Line Item. |
|
299 | - * |
|
300 | - * @param string $item_name Item name. |
|
301 | - * @param float $quantity Item quantity. |
|
302 | - * @param float $amount Amount. |
|
303 | - * @param string $item_number Item number. |
|
304 | - */ |
|
305 | - protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
306 | - $index = ( count( $this->line_items ) / 4 ) + 1; |
|
307 | - |
|
308 | - $item = apply_filters( |
|
309 | - 'getpaid_paypal_line_item', |
|
310 | - array( |
|
311 | - 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
312 | - 'quantity' => (float) $quantity, |
|
313 | - 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
314 | - 'item_number' => $item_number, |
|
315 | - ), |
|
316 | - $item_name, |
|
317 | - $quantity, |
|
318 | - $amount, |
|
319 | - $item_number |
|
320 | - ); |
|
321 | - |
|
322 | - $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
298 | + * Add PayPal Line Item. |
|
299 | + * |
|
300 | + * @param string $item_name Item name. |
|
301 | + * @param float $quantity Item quantity. |
|
302 | + * @param float $amount Amount. |
|
303 | + * @param string $item_number Item number. |
|
304 | + */ |
|
305 | + protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
306 | + $index = ( count( $this->line_items ) / 4 ) + 1; |
|
307 | + |
|
308 | + $item = apply_filters( |
|
309 | + 'getpaid_paypal_line_item', |
|
310 | + array( |
|
311 | + 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
312 | + 'quantity' => (float) $quantity, |
|
313 | + 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
314 | + 'item_number' => $item_number, |
|
315 | + ), |
|
316 | + $item_name, |
|
317 | + $quantity, |
|
318 | + $amount, |
|
319 | + $item_number |
|
320 | + ); |
|
321 | + |
|
322 | + $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
323 | 323 | $this->line_items[ 'quantity_' . $index ] = $item['quantity']; |
324 | 324 | |
325 | 325 | // The price or amount of the product, service, or contribution, not including shipping, handling, or tax. |
326 | - $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
327 | - $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
326 | + $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
327 | + $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
328 | 328 | } |
329 | 329 | |
330 | 330 | /** |
331 | - * If the default request with line items is too long, generate a new one with only one line item. |
|
332 | - * |
|
333 | - * https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer. |
|
334 | - * |
|
335 | - * @param WPInv_Invoice $invoice Invoice to be sent to Paypal. |
|
336 | - * @param array $paypal_args Arguments sent to Paypal in the request. |
|
337 | - * @return array |
|
338 | - */ |
|
339 | - protected function fix_request_length( $invoice, $paypal_args ) { |
|
340 | - $max_paypal_length = 2083; |
|
341 | - $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
342 | - |
|
343 | - if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
344 | - return $paypal_args; |
|
345 | - } |
|
346 | - |
|
347 | - return apply_filters( |
|
348 | - 'getpaid_paypal_args', |
|
349 | - array_merge( |
|
350 | - $this->get_transaction_args( $invoice ), |
|
351 | - $this->get_line_item_args( $invoice, true ) |
|
352 | - ), |
|
353 | - $invoice |
|
354 | - ); |
|
331 | + * If the default request with line items is too long, generate a new one with only one line item. |
|
332 | + * |
|
333 | + * https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer. |
|
334 | + * |
|
335 | + * @param WPInv_Invoice $invoice Invoice to be sent to Paypal. |
|
336 | + * @param array $paypal_args Arguments sent to Paypal in the request. |
|
337 | + * @return array |
|
338 | + */ |
|
339 | + protected function fix_request_length( $invoice, $paypal_args ) { |
|
340 | + $max_paypal_length = 2083; |
|
341 | + $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
342 | + |
|
343 | + if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
344 | + return $paypal_args; |
|
345 | + } |
|
346 | + |
|
347 | + return apply_filters( |
|
348 | + 'getpaid_paypal_args', |
|
349 | + array_merge( |
|
350 | + $this->get_transaction_args( $invoice ), |
|
351 | + $this->get_line_item_args( $invoice, true ) |
|
352 | + ), |
|
353 | + $invoice |
|
354 | + ); |
|
355 | 355 | |
356 | 356 | } |
357 | 357 | |
358 | 358 | /** |
359 | - * Processes recurring invoices. |
|
360 | - * |
|
361 | - * @param array $paypal_args PayPal args. |
|
362 | - * @param WPInv_Invoice $invoice Invoice object. |
|
363 | - */ |
|
364 | - public function process_subscription( $paypal_args, $invoice ) { |
|
359 | + * Processes recurring invoices. |
|
360 | + * |
|
361 | + * @param array $paypal_args PayPal args. |
|
362 | + * @param WPInv_Invoice $invoice Invoice object. |
|
363 | + */ |
|
364 | + public function process_subscription( $paypal_args, $invoice ) { |
|
365 | 365 | |
366 | 366 | // Make sure this is a subscription. |
367 | 367 | if ( ! $invoice->is_recurring() || ! $subscription = getpaid_get_invoice_subscription( $invoice ) ) { |
@@ -382,21 +382,21 @@ discard block |
||
382 | 382 | $recurring_amount = (float) wpinv_sanitize_amount( $invoice->get_recurring_total(), 2 ); |
383 | 383 | $subscription_item = $invoice->get_recurring( true ); |
384 | 384 | |
385 | - // Convert 365 days to 1 year. |
|
386 | - if ( 'D' == $period && 365 == $interval ) { |
|
387 | - $period = 'Y'; |
|
388 | - $interval = 1; |
|
389 | - } |
|
385 | + // Convert 365 days to 1 year. |
|
386 | + if ( 'D' == $period && 365 == $interval ) { |
|
387 | + $period = 'Y'; |
|
388 | + $interval = 1; |
|
389 | + } |
|
390 | 390 | |
391 | 391 | if ( $subscription_item->has_free_trial() ) { |
392 | 392 | |
393 | 393 | $paypal_args['a1'] = 0 == $initial_amount ? 0 : $initial_amount; |
394 | 394 | |
395 | - // Trial period length. |
|
396 | - $paypal_args['p1'] = $subscription_item->get_trial_interval(); |
|
395 | + // Trial period length. |
|
396 | + $paypal_args['p1'] = $subscription_item->get_trial_interval(); |
|
397 | 397 | |
398 | - // Trial period. |
|
399 | - $paypal_args['t1'] = $subscription_item->get_trial_period(); |
|
398 | + // Trial period. |
|
399 | + $paypal_args['t1'] = $subscription_item->get_trial_period(); |
|
400 | 400 | |
401 | 401 | } elseif ( $initial_amount != $recurring_amount ) { |
402 | 402 | |
@@ -419,40 +419,40 @@ discard block |
||
419 | 419 | } |
420 | 420 | |
421 | 421 | // We have a recurring payment |
422 | - if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
422 | + if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
423 | 423 | |
424 | - // Subscription price |
|
425 | - $paypal_args['a3'] = $recurring_amount; |
|
424 | + // Subscription price |
|
425 | + $paypal_args['a3'] = $recurring_amount; |
|
426 | 426 | |
427 | - // Subscription duration |
|
428 | - $paypal_args['p3'] = $interval; |
|
427 | + // Subscription duration |
|
428 | + $paypal_args['p3'] = $interval; |
|
429 | 429 | |
430 | - // Subscription period |
|
431 | - $paypal_args['t3'] = $period; |
|
430 | + // Subscription period |
|
431 | + $paypal_args['t3'] = $period; |
|
432 | 432 | |
433 | 433 | } |
434 | 434 | |
435 | 435 | // Recurring payments |
436 | - if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
436 | + if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
437 | 437 | |
438 | - // Non-recurring payments |
|
439 | - $paypal_args['src'] = 0; |
|
438 | + // Non-recurring payments |
|
439 | + $paypal_args['src'] = 0; |
|
440 | 440 | |
441 | - } else { |
|
441 | + } else { |
|
442 | 442 | |
443 | - $paypal_args['src'] = 1; |
|
443 | + $paypal_args['src'] = 1; |
|
444 | 444 | |
445 | - if ( $bill_times > 0 ) { |
|
445 | + if ( $bill_times > 0 ) { |
|
446 | 446 | |
447 | - // An initial period is being used to charge a sign-up fee |
|
448 | - if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
449 | - $bill_times--; |
|
450 | - } |
|
447 | + // An initial period is being used to charge a sign-up fee |
|
448 | + if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
449 | + $bill_times--; |
|
450 | + } |
|
451 | 451 | |
452 | 452 | // Make sure it's not over the max of 52 |
453 | 453 | $paypal_args['srt'] = ( $bill_times <= 52 ? absint( $bill_times ) : 52 ); |
454 | 454 | |
455 | - } |
|
455 | + } |
|
456 | 456 | } |
457 | 457 | |
458 | 458 | // Force return URL so that order description & instructions display |
@@ -467,19 +467,19 @@ discard block |
||
467 | 467 | } |
468 | 468 | |
469 | 469 | return apply_filters( |
470 | - 'getpaid_paypal_subscription_args', |
|
471 | - $paypal_args, |
|
472 | - $invoice |
|
470 | + 'getpaid_paypal_subscription_args', |
|
471 | + $paypal_args, |
|
472 | + $invoice |
|
473 | 473 | ); |
474 | 474 | |
475 | 475 | } |
476 | 476 | |
477 | 477 | /** |
478 | - * Processes ipns and marks payments as complete. |
|
479 | - * |
|
480 | - * @return void |
|
481 | - */ |
|
482 | - public function verify_ipn() { |
|
478 | + * Processes ipns and marks payments as complete. |
|
479 | + * |
|
480 | + * @return void |
|
481 | + */ |
|
482 | + public function verify_ipn() { |
|
483 | 483 | new GetPaid_Paypal_Gateway_IPN_Handler( $this ); |
484 | 484 | } |
485 | 485 | |
@@ -489,19 +489,19 @@ discard block |
||
489 | 489 | public function sandbox_notice() { |
490 | 490 | |
491 | 491 | return sprintf( |
492 | - __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing' ), |
|
493 | - '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
|
494 | - '</a>' |
|
495 | - ); |
|
492 | + __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing' ), |
|
493 | + '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
|
494 | + '</a>' |
|
495 | + ); |
|
496 | 496 | |
497 | 497 | } |
498 | 498 | |
499 | - /** |
|
500 | - * Filters the gateway settings. |
|
501 | - * |
|
502 | - * @param array $admin_settings |
|
503 | - */ |
|
504 | - public function admin_settings( $admin_settings ) { |
|
499 | + /** |
|
500 | + * Filters the gateway settings. |
|
501 | + * |
|
502 | + * @param array $admin_settings |
|
503 | + */ |
|
504 | + public function admin_settings( $admin_settings ) { |
|
505 | 505 | |
506 | 506 | $currencies = sprintf( |
507 | 507 | __( 'Supported Currencies: %s', 'invoicing' ), |
@@ -511,31 +511,31 @@ discard block |
||
511 | 511 | $admin_settings['paypal_active']['desc'] .= " ($currencies)"; |
512 | 512 | $admin_settings['paypal_desc']['std'] = __( 'Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing' ); |
513 | 513 | |
514 | - // Access tokens. |
|
515 | - $live_email = wpinv_get_option( 'paypal_email' ); |
|
516 | - $sandbox_email = wpinv_get_option( 'paypal_sandbox_email' ); |
|
514 | + // Access tokens. |
|
515 | + $live_email = wpinv_get_option( 'paypal_email' ); |
|
516 | + $sandbox_email = wpinv_get_option( 'paypal_sandbox_email' ); |
|
517 | 517 | |
518 | - $admin_settings['paypal_connect'] = array( |
|
519 | - 'type' => 'hook', |
|
520 | - 'id' => 'paypal_connect', |
|
521 | - 'name' => __( 'Connect to PayPal', 'invoicing' ), |
|
522 | - ); |
|
518 | + $admin_settings['paypal_connect'] = array( |
|
519 | + 'type' => 'hook', |
|
520 | + 'id' => 'paypal_connect', |
|
521 | + 'name' => __( 'Connect to PayPal', 'invoicing' ), |
|
522 | + ); |
|
523 | 523 | |
524 | 524 | $admin_settings['paypal_email'] = array( |
525 | 525 | 'type' => 'text', |
526 | - 'class' => 'live-auth-data', |
|
526 | + 'class' => 'live-auth-data', |
|
527 | 527 | 'id' => 'paypal_email', |
528 | 528 | 'name' => __( 'Live Email Address', 'invoicing' ), |
529 | 529 | 'desc' => __( 'The email address of your PayPal account.', 'invoicing' ), |
530 | 530 | ); |
531 | 531 | |
532 | - $admin_settings['paypal_sandbox_email'] = array( |
|
532 | + $admin_settings['paypal_sandbox_email'] = array( |
|
533 | 533 | 'type' => 'text', |
534 | - 'class' => 'sandbox-auth-data', |
|
534 | + 'class' => 'sandbox-auth-data', |
|
535 | 535 | 'id' => 'paypal_sandbox_email', |
536 | 536 | 'name' => __( 'Sandbox Email Address', 'invoicing' ), |
537 | 537 | 'desc' => __( 'The email address of your sandbox PayPal account.', 'invoicing' ), |
538 | - 'std' => wpinv_get_option( 'paypal_email', '' ), |
|
538 | + 'std' => wpinv_get_option( 'paypal_email', '' ), |
|
539 | 539 | ); |
540 | 540 | |
541 | 541 | $admin_settings['paypal_ipn_url'] = array( |
@@ -547,57 +547,57 @@ discard block |
||
547 | 547 | 'readonly' => true, |
548 | 548 | ); |
549 | 549 | |
550 | - return $admin_settings; |
|
551 | - } |
|
552 | - |
|
553 | - /** |
|
554 | - * Retrieves the URL to cancel a subscription. |
|
555 | - * |
|
556 | - * @param string $url |
|
557 | - * @param WPInv_Subscription $subscription |
|
558 | - */ |
|
559 | - public function filter_cancel_subscription_url( $url, $subscription ) { |
|
560 | - |
|
561 | - if ( $this->id !== $subscription->get_gateway() ) { |
|
562 | - return $url; |
|
563 | - } |
|
564 | - |
|
565 | - // Get the PayPal profile ID. |
|
566 | - $profile_id = $subscription->get_profile_id(); |
|
567 | - |
|
568 | - // Bail if no profile ID. |
|
569 | - if ( empty( $profile_id ) ) { |
|
570 | - return $url; |
|
571 | - } |
|
572 | - |
|
573 | - $cancel_url = 'https://www.paypal.com/myaccount/autopay/connect/%s/cancel'; |
|
574 | - if ( $this->is_sandbox( $subscription->get_parent_payment() ) ) { |
|
575 | - $cancel_url = 'https://www.sandbox.paypal.com/myaccount/autopay/connect/%s/cancel'; |
|
576 | - } |
|
577 | - |
|
578 | - return sprintf( $cancel_url, $profile_id ); |
|
579 | - } |
|
580 | - |
|
581 | - /** |
|
582 | - * Retrieves the PayPal connect URL when using the setup wizzard. |
|
583 | - * |
|
584 | - * |
|
550 | + return $admin_settings; |
|
551 | + } |
|
552 | + |
|
553 | + /** |
|
554 | + * Retrieves the URL to cancel a subscription. |
|
555 | + * |
|
556 | + * @param string $url |
|
557 | + * @param WPInv_Subscription $subscription |
|
558 | + */ |
|
559 | + public function filter_cancel_subscription_url( $url, $subscription ) { |
|
560 | + |
|
561 | + if ( $this->id !== $subscription->get_gateway() ) { |
|
562 | + return $url; |
|
563 | + } |
|
564 | + |
|
565 | + // Get the PayPal profile ID. |
|
566 | + $profile_id = $subscription->get_profile_id(); |
|
567 | + |
|
568 | + // Bail if no profile ID. |
|
569 | + if ( empty( $profile_id ) ) { |
|
570 | + return $url; |
|
571 | + } |
|
572 | + |
|
573 | + $cancel_url = 'https://www.paypal.com/myaccount/autopay/connect/%s/cancel'; |
|
574 | + if ( $this->is_sandbox( $subscription->get_parent_payment() ) ) { |
|
575 | + $cancel_url = 'https://www.sandbox.paypal.com/myaccount/autopay/connect/%s/cancel'; |
|
576 | + } |
|
577 | + |
|
578 | + return sprintf( $cancel_url, $profile_id ); |
|
579 | + } |
|
580 | + |
|
581 | + /** |
|
582 | + * Retrieves the PayPal connect URL when using the setup wizzard. |
|
583 | + * |
|
584 | + * |
|
585 | 585 | * @param array $data |
586 | 586 | * @return string |
587 | - */ |
|
588 | - public static function maybe_get_connect_url( $url = '', $data = array() ) { |
|
589 | - return self::get_connect_url( false, urldecode( $data['redirect'] ) ); |
|
590 | - } |
|
591 | - |
|
592 | - /** |
|
593 | - * Retrieves the PayPal connect URL. |
|
594 | - * |
|
595 | - * |
|
587 | + */ |
|
588 | + public static function maybe_get_connect_url( $url = '', $data = array() ) { |
|
589 | + return self::get_connect_url( false, urldecode( $data['redirect'] ) ); |
|
590 | + } |
|
591 | + |
|
592 | + /** |
|
593 | + * Retrieves the PayPal connect URL. |
|
594 | + * |
|
595 | + * |
|
596 | 596 | * @param bool $is_sandbox |
597 | - * @param string $redirect |
|
597 | + * @param string $redirect |
|
598 | 598 | * @return string |
599 | - */ |
|
600 | - public static function get_connect_url( $is_sandbox, $redirect = '' ) { |
|
599 | + */ |
|
600 | + public static function get_connect_url( $is_sandbox, $redirect = '' ) { |
|
601 | 601 | |
602 | 602 | $redirect_url = add_query_arg( |
603 | 603 | array( |
@@ -607,7 +607,7 @@ discard block |
||
607 | 607 | 'tab' => 'gateways', |
608 | 608 | 'section' => 'paypal', |
609 | 609 | 'getpaid-nonce' => wp_create_nonce( 'getpaid-nonce' ), |
610 | - 'redirect' => urlencode( $redirect ), |
|
610 | + 'redirect' => urlencode( $redirect ), |
|
611 | 611 | ), |
612 | 612 | admin_url( 'admin.php' ) |
613 | 613 | ); |
@@ -622,12 +622,12 @@ discard block |
||
622 | 622 | |
623 | 623 | } |
624 | 624 | |
625 | - /** |
|
626 | - * Generates settings page js. |
|
627 | - * |
|
625 | + /** |
|
626 | + * Generates settings page js. |
|
627 | + * |
|
628 | 628 | * @return void |
629 | - */ |
|
630 | - public static function display_connect_buttons() { |
|
629 | + */ |
|
630 | + public static function display_connect_buttons() { |
|
631 | 631 | |
632 | 632 | ?> |
633 | 633 | <div class="wpinv-paypal-connect-live"> |
@@ -669,70 +669,70 @@ discard block |
||
669 | 669 | <?php |
670 | 670 | } |
671 | 671 | |
672 | - /** |
|
673 | - * Connects to PayPal. |
|
674 | - * |
|
675 | - * @param array $data Connection data. |
|
676 | - * @return void |
|
677 | - */ |
|
678 | - public function connect_paypal( $data ) { |
|
679 | - |
|
680 | - $sandbox = $this->is_sandbox(); |
|
681 | - $data = wp_unslash( $data ); |
|
682 | - $access_token = empty( $data['access_token'] ) ? '' : sanitize_text_field( $data['access_token'] ); |
|
683 | - |
|
684 | - if ( isset( $data['live_mode'] ) ) { |
|
685 | - $sandbox = empty( $data['live_mode'] ); |
|
686 | - } |
|
687 | - |
|
688 | - wpinv_update_option( 'paypal_sandbox', (int) $sandbox ); |
|
689 | - wpinv_update_option( 'paypal_active', 1 ); |
|
690 | - |
|
691 | - if ( ! empty( $data['error_description'] ) ) { |
|
692 | - getpaid_admin()->show_error( wp_kses_post( urldecode( $data['error_description'] ) ) ); |
|
693 | - } else { |
|
694 | - |
|
695 | - // Retrieve the user info. |
|
696 | - $user_info = wp_remote_get( |
|
697 | - ! $sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
698 | - array( |
|
699 | - |
|
700 | - 'headers' => array( |
|
701 | - 'Authorization' => 'Bearer ' . $access_token, |
|
702 | - 'Content-type' => 'application/json', |
|
703 | - ), |
|
704 | - |
|
705 | - ) |
|
706 | - ); |
|
707 | - |
|
708 | - if ( is_wp_error( $user_info ) ) { |
|
709 | - getpaid_admin()->show_error( wp_kses_post( $user_info->get_error_message() ) ); |
|
710 | - } else { |
|
711 | - |
|
712 | - // Create application. |
|
713 | - $user_info = json_decode( wp_remote_retrieve_body( $user_info ) ); |
|
714 | - |
|
715 | - if ( $sandbox ) { |
|
716 | - wpinv_update_option( 'paypal_sandbox_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
717 | - wpinv_update_option( 'paypal_sandbox_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
718 | - set_transient( 'getpaid_paypal_sandbox_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
719 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal sandbox account', 'invoicing' ) ); |
|
720 | - } else { |
|
721 | - wpinv_update_option( 'paypal_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
722 | - wpinv_update_option( 'paypal_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
723 | - set_transient( 'getpaid_paypal_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
724 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal account', 'invoicing' ) ); |
|
725 | - } |
|
672 | + /** |
|
673 | + * Connects to PayPal. |
|
674 | + * |
|
675 | + * @param array $data Connection data. |
|
676 | + * @return void |
|
677 | + */ |
|
678 | + public function connect_paypal( $data ) { |
|
679 | + |
|
680 | + $sandbox = $this->is_sandbox(); |
|
681 | + $data = wp_unslash( $data ); |
|
682 | + $access_token = empty( $data['access_token'] ) ? '' : sanitize_text_field( $data['access_token'] ); |
|
683 | + |
|
684 | + if ( isset( $data['live_mode'] ) ) { |
|
685 | + $sandbox = empty( $data['live_mode'] ); |
|
686 | + } |
|
687 | + |
|
688 | + wpinv_update_option( 'paypal_sandbox', (int) $sandbox ); |
|
689 | + wpinv_update_option( 'paypal_active', 1 ); |
|
690 | + |
|
691 | + if ( ! empty( $data['error_description'] ) ) { |
|
692 | + getpaid_admin()->show_error( wp_kses_post( urldecode( $data['error_description'] ) ) ); |
|
693 | + } else { |
|
694 | + |
|
695 | + // Retrieve the user info. |
|
696 | + $user_info = wp_remote_get( |
|
697 | + ! $sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
698 | + array( |
|
699 | + |
|
700 | + 'headers' => array( |
|
701 | + 'Authorization' => 'Bearer ' . $access_token, |
|
702 | + 'Content-type' => 'application/json', |
|
703 | + ), |
|
704 | + |
|
705 | + ) |
|
706 | + ); |
|
707 | + |
|
708 | + if ( is_wp_error( $user_info ) ) { |
|
709 | + getpaid_admin()->show_error( wp_kses_post( $user_info->get_error_message() ) ); |
|
710 | + } else { |
|
711 | + |
|
712 | + // Create application. |
|
713 | + $user_info = json_decode( wp_remote_retrieve_body( $user_info ) ); |
|
714 | + |
|
715 | + if ( $sandbox ) { |
|
716 | + wpinv_update_option( 'paypal_sandbox_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
717 | + wpinv_update_option( 'paypal_sandbox_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
718 | + set_transient( 'getpaid_paypal_sandbox_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
719 | + getpaid_admin()->show_success( __( 'Successfully connected your PayPal sandbox account', 'invoicing' ) ); |
|
720 | + } else { |
|
721 | + wpinv_update_option( 'paypal_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
722 | + wpinv_update_option( 'paypal_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
723 | + set_transient( 'getpaid_paypal_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
724 | + getpaid_admin()->show_success( __( 'Successfully connected your PayPal account', 'invoicing' ) ); |
|
725 | + } |
|
726 | 726 | } |
727 | 727 | } |
728 | 728 | |
729 | - $redirect = empty( $data['redirect'] ) ? admin_url( 'admin.php?page=wpinv-settings&tab=gateways§ion=paypal' ) : urldecode( $data['redirect'] ); |
|
729 | + $redirect = empty( $data['redirect'] ) ? admin_url( 'admin.php?page=wpinv-settings&tab=gateways§ion=paypal' ) : urldecode( $data['redirect'] ); |
|
730 | 730 | |
731 | - if ( isset( $data['step'] ) ) { |
|
732 | - $redirect = add_query_arg( 'step', $data['step'], $redirect ); |
|
733 | - } |
|
734 | - wp_redirect( $redirect ); |
|
735 | - exit; |
|
736 | - } |
|
731 | + if ( isset( $data['step'] ) ) { |
|
732 | + $redirect = add_query_arg( 'step', $data['step'], $redirect ); |
|
733 | + } |
|
734 | + wp_redirect( $redirect ); |
|
735 | + exit; |
|
736 | + } |
|
737 | 737 | |
738 | 738 | } |
@@ -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 | * Paypal Payment Gateway class. |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - protected $supports = array( 'subscription', 'sandbox', 'single_subscription_group' ); |
|
27 | + protected $supports = array('subscription', 'sandbox', 'single_subscription_group'); |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * Payment method order. |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @var array |
61 | 61 | */ |
62 | - public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
62 | + public $currencies = array('AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR'); |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * URL to view a transaction. |
@@ -80,17 +80,17 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function __construct() { |
82 | 82 | |
83 | - $this->title = __( 'PayPal Standard', 'invoicing' ); |
|
84 | - $this->method_title = __( 'PayPal Standard', 'invoicing' ); |
|
85 | - $this->checkout_button_text = __( 'Proceed to PayPal', 'invoicing' ); |
|
86 | - $this->notify_url = wpinv_get_ipn_url( $this->id ); |
|
87 | - |
|
88 | - add_filter( 'wpinv_subscription_cancel_url', array( $this, 'filter_cancel_subscription_url' ), 10, 2 ); |
|
89 | - add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
90 | - add_filter( 'getpaid_paypal_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
|
91 | - add_filter( 'getpaid_get_paypal_connect_url', array( $this, 'maybe_get_connect_url' ), 10, 2 ); |
|
92 | - add_action( 'getpaid_authenticated_admin_action_connect_paypal', array( $this, 'connect_paypal' ) ); |
|
93 | - add_action( 'wpinv_paypal_connect', array( $this, 'display_connect_buttons' ) ); |
|
83 | + $this->title = __('PayPal Standard', 'invoicing'); |
|
84 | + $this->method_title = __('PayPal Standard', 'invoicing'); |
|
85 | + $this->checkout_button_text = __('Proceed to PayPal', 'invoicing'); |
|
86 | + $this->notify_url = wpinv_get_ipn_url($this->id); |
|
87 | + |
|
88 | + add_filter('wpinv_subscription_cancel_url', array($this, 'filter_cancel_subscription_url'), 10, 2); |
|
89 | + add_filter('getpaid_paypal_args', array($this, 'process_subscription'), 10, 2); |
|
90 | + add_filter('getpaid_paypal_sandbox_notice', array($this, 'sandbox_notice')); |
|
91 | + add_filter('getpaid_get_paypal_connect_url', array($this, 'maybe_get_connect_url'), 10, 2); |
|
92 | + add_action('getpaid_authenticated_admin_action_connect_paypal', array($this, 'connect_paypal')); |
|
93 | + add_action('wpinv_paypal_connect', array($this, 'display_connect_buttons')); |
|
94 | 94 | parent::__construct(); |
95 | 95 | } |
96 | 96 | |
@@ -103,16 +103,16 @@ discard block |
||
103 | 103 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
104 | 104 | * @return array |
105 | 105 | */ |
106 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
106 | + public function process_payment($invoice, $submission_data, $submission) { |
|
107 | 107 | |
108 | 108 | // Get redirect url. |
109 | - $paypal_redirect = $this->get_request_url( $invoice ); |
|
109 | + $paypal_redirect = $this->get_request_url($invoice); |
|
110 | 110 | |
111 | 111 | // Add a note about the request url. |
112 | 112 | $invoice->add_note( |
113 | 113 | sprintf( |
114 | - __( 'Redirecting to PayPal: %s', 'invoicing' ), |
|
115 | - esc_url( $paypal_redirect ) |
|
114 | + __('Redirecting to PayPal: %s', 'invoicing'), |
|
115 | + esc_url($paypal_redirect) |
|
116 | 116 | ), |
117 | 117 | false, |
118 | 118 | false, |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | ); |
121 | 121 | |
122 | 122 | // Redirect to PayPal |
123 | - wp_redirect( $paypal_redirect ); |
|
123 | + wp_redirect($paypal_redirect); |
|
124 | 124 | exit; |
125 | 125 | |
126 | 126 | } |
@@ -131,21 +131,21 @@ discard block |
||
131 | 131 | * @param WPInv_Invoice $invoice Invoice object. |
132 | 132 | * @return string |
133 | 133 | */ |
134 | - public function get_request_url( $invoice ) { |
|
134 | + public function get_request_url($invoice) { |
|
135 | 135 | |
136 | 136 | // Endpoint for this request |
137 | - $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
137 | + $this->endpoint = $this->is_sandbox($invoice) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
138 | 138 | |
139 | 139 | // Retrieve paypal args. |
140 | - $paypal_args = map_deep( $this->get_paypal_args( $invoice ), 'urlencode' ); |
|
140 | + $paypal_args = map_deep($this->get_paypal_args($invoice), 'urlencode'); |
|
141 | 141 | |
142 | - if ( $invoice->is_recurring() ) { |
|
142 | + if ($invoice->is_recurring()) { |
|
143 | 143 | $paypal_args['bn'] = 'GetPaid_Subscribe_WPS_US'; |
144 | 144 | } else { |
145 | 145 | $paypal_args['bn'] = 'GetPaid_ShoppingCart_WPS_US'; |
146 | 146 | } |
147 | 147 | |
148 | - return add_query_arg( $paypal_args, $this->endpoint ); |
|
148 | + return add_query_arg($paypal_args, $this->endpoint); |
|
149 | 149 | |
150 | 150 | } |
151 | 151 | |
@@ -155,25 +155,25 @@ discard block |
||
155 | 155 | * @param WPInv_Invoice $invoice Invoice object. |
156 | 156 | * @return array |
157 | 157 | */ |
158 | - protected function get_paypal_args( $invoice ) { |
|
158 | + protected function get_paypal_args($invoice) { |
|
159 | 159 | |
160 | 160 | // Whether or not to send the line items as one item. |
161 | - $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
161 | + $force_one_line_item = apply_filters('getpaid_paypal_force_one_line_item', true, $invoice); |
|
162 | 162 | |
163 | - if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
163 | + if ($invoice->is_recurring() || (wpinv_use_taxes() && wpinv_prices_include_tax())) { |
|
164 | 164 | $force_one_line_item = true; |
165 | 165 | } |
166 | 166 | |
167 | 167 | $paypal_args = apply_filters( |
168 | 168 | 'getpaid_paypal_args', |
169 | 169 | array_merge( |
170 | - $this->get_transaction_args( $invoice ), |
|
171 | - $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
170 | + $this->get_transaction_args($invoice), |
|
171 | + $this->get_line_item_args($invoice, $force_one_line_item) |
|
172 | 172 | ), |
173 | 173 | $invoice |
174 | 174 | ); |
175 | 175 | |
176 | - return $this->fix_request_length( $invoice, $paypal_args ); |
|
176 | + return $this->fix_request_length($invoice, $paypal_args); |
|
177 | 177 | } |
178 | 178 | |
179 | 179 | /** |
@@ -182,9 +182,9 @@ discard block |
||
182 | 182 | * @param WPInv_Invoice $invoice Invoice object. |
183 | 183 | * @return array |
184 | 184 | */ |
185 | - protected function get_transaction_args( $invoice ) { |
|
185 | + protected function get_transaction_args($invoice) { |
|
186 | 186 | |
187 | - $email = $this->is_sandbox( $invoice ) ? wpinv_get_option( 'paypal_sandbox_email', wpinv_get_option( 'paypal_email', '' ) ) : wpinv_get_option( 'paypal_email', '' ); |
|
187 | + $email = $this->is_sandbox($invoice) ? wpinv_get_option('paypal_sandbox_email', wpinv_get_option('paypal_email', '')) : wpinv_get_option('paypal_email', ''); |
|
188 | 188 | return array( |
189 | 189 | 'cmd' => '_cart', |
190 | 190 | 'business' => $email, |
@@ -195,16 +195,16 @@ discard block |
||
195 | 195 | 'rm' => is_ssl() ? 2 : 1, |
196 | 196 | 'upload' => 1, |
197 | 197 | 'currency_code' => $invoice->get_currency(), // https://developer.paypal.com/docs/nvp-soap-api/currency-codes/#paypal |
198 | - 'return' => esc_url_raw( $this->get_return_url( $invoice ) ), |
|
199 | - 'cancel_return' => esc_url_raw( $invoice->get_checkout_payment_url() ), |
|
200 | - 'notify_url' => getpaid_limit_length( $this->notify_url, 255 ), |
|
201 | - 'invoice' => getpaid_limit_length( $invoice->get_number(), 127 ), |
|
198 | + 'return' => esc_url_raw($this->get_return_url($invoice)), |
|
199 | + 'cancel_return' => esc_url_raw($invoice->get_checkout_payment_url()), |
|
200 | + 'notify_url' => getpaid_limit_length($this->notify_url, 255), |
|
201 | + 'invoice' => getpaid_limit_length($invoice->get_number(), 127), |
|
202 | 202 | 'custom' => $invoice->get_id(), |
203 | - 'first_name' => getpaid_limit_length( $invoice->get_first_name(), 32 ), |
|
204 | - 'last_name' => getpaid_limit_length( $invoice->get_last_name(), 64 ), |
|
205 | - 'country' => getpaid_limit_length( $invoice->get_country(), 2 ), |
|
206 | - 'email' => getpaid_limit_length( $invoice->get_email(), 127 ), |
|
207 | - 'cbt' => get_bloginfo( 'name' ), |
|
203 | + 'first_name' => getpaid_limit_length($invoice->get_first_name(), 32), |
|
204 | + 'last_name' => getpaid_limit_length($invoice->get_last_name(), 64), |
|
205 | + 'country' => getpaid_limit_length($invoice->get_country(), 2), |
|
206 | + 'email' => getpaid_limit_length($invoice->get_email(), 127), |
|
207 | + 'cbt' => get_bloginfo('name'), |
|
208 | 208 | ); |
209 | 209 | |
210 | 210 | } |
@@ -216,30 +216,30 @@ discard block |
||
216 | 216 | * @param bool $force_one_line_item Create only one item for this invoice. |
217 | 217 | * @return array |
218 | 218 | */ |
219 | - protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
219 | + protected function get_line_item_args($invoice, $force_one_line_item = false) { |
|
220 | 220 | |
221 | 221 | // Maybe send invoice as a single item. |
222 | - if ( $force_one_line_item ) { |
|
223 | - return $this->get_line_item_args_single_item( $invoice ); |
|
222 | + if ($force_one_line_item) { |
|
223 | + return $this->get_line_item_args_single_item($invoice); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | // Send each line item individually. |
227 | 227 | $line_item_args = array(); |
228 | 228 | |
229 | 229 | // Prepare line items. |
230 | - $this->prepare_line_items( $invoice ); |
|
230 | + $this->prepare_line_items($invoice); |
|
231 | 231 | |
232 | 232 | // Add taxes to the cart |
233 | - if ( wpinv_use_taxes() && $invoice->is_taxable() ) { |
|
234 | - $line_item_args['tax_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_tax(), 2 ); |
|
233 | + if (wpinv_use_taxes() && $invoice->is_taxable()) { |
|
234 | + $line_item_args['tax_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_tax(), 2); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | // Add discount. |
238 | - if ( $invoice->get_total_discount() > 0 ) { |
|
239 | - $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_discount(), 2 ); |
|
238 | + if ($invoice->get_total_discount() > 0) { |
|
239 | + $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount((float) $invoice->get_total_discount(), 2); |
|
240 | 240 | } |
241 | 241 | |
242 | - return array_merge( $line_item_args, $this->get_line_items() ); |
|
242 | + return array_merge($line_item_args, $this->get_line_items()); |
|
243 | 243 | |
244 | 244 | } |
245 | 245 | |
@@ -249,11 +249,11 @@ discard block |
||
249 | 249 | * @param WPInv_Invoice $invoice Invoice object. |
250 | 250 | * @return array |
251 | 251 | */ |
252 | - protected function get_line_item_args_single_item( $invoice ) { |
|
252 | + protected function get_line_item_args_single_item($invoice) { |
|
253 | 253 | $this->delete_line_items(); |
254 | 254 | |
255 | - $item_name = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
|
256 | - $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
255 | + $item_name = sprintf(__('Invoice #%s', 'invoicing'), $invoice->get_number()); |
|
256 | + $this->add_line_item($item_name, 1, wpinv_round_amount((float) $invoice->get_total(), 2, true), $invoice->get_id()); |
|
257 | 257 | |
258 | 258 | return $this->get_line_items(); |
259 | 259 | } |
@@ -277,19 +277,19 @@ discard block |
||
277 | 277 | * |
278 | 278 | * @param WPInv_Invoice $invoice Invoice object. |
279 | 279 | */ |
280 | - protected function prepare_line_items( $invoice ) { |
|
280 | + protected function prepare_line_items($invoice) { |
|
281 | 281 | $this->delete_line_items(); |
282 | 282 | |
283 | 283 | // Items. |
284 | - foreach ( $invoice->get_items() as $item ) { |
|
284 | + foreach ($invoice->get_items() as $item) { |
|
285 | 285 | $amount = $item->get_price(); |
286 | 286 | $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
287 | - $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
287 | + $this->add_line_item($item->get_raw_name(), $quantity, $amount, $item->get_id()); |
|
288 | 288 | } |
289 | 289 | |
290 | 290 | // Fees. |
291 | - foreach ( $invoice->get_fees() as $fee => $data ) { |
|
292 | - $this->add_line_item( $fee, 1, wpinv_sanitize_amount( $data['initial_fee'] ) ); |
|
291 | + foreach ($invoice->get_fees() as $fee => $data) { |
|
292 | + $this->add_line_item($fee, 1, wpinv_sanitize_amount($data['initial_fee'])); |
|
293 | 293 | } |
294 | 294 | |
295 | 295 | } |
@@ -302,15 +302,15 @@ discard block |
||
302 | 302 | * @param float $amount Amount. |
303 | 303 | * @param string $item_number Item number. |
304 | 304 | */ |
305 | - protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
306 | - $index = ( count( $this->line_items ) / 4 ) + 1; |
|
305 | + protected function add_line_item($item_name, $quantity = 1, $amount = 0.0, $item_number = '') { |
|
306 | + $index = (count($this->line_items) / 4) + 1; |
|
307 | 307 | |
308 | 308 | $item = apply_filters( |
309 | 309 | 'getpaid_paypal_line_item', |
310 | 310 | array( |
311 | - 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
311 | + 'item_name' => html_entity_decode(getpaid_limit_length($item_name ? wp_strip_all_tags($item_name) : __('Item', 'invoicing'), 127), ENT_NOQUOTES, 'UTF-8'), |
|
312 | 312 | 'quantity' => (float) $quantity, |
313 | - 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
313 | + 'amount' => wpinv_sanitize_amount((float) $amount, 2), |
|
314 | 314 | 'item_number' => $item_number, |
315 | 315 | ), |
316 | 316 | $item_name, |
@@ -319,12 +319,12 @@ discard block |
||
319 | 319 | $item_number |
320 | 320 | ); |
321 | 321 | |
322 | - $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
323 | - $this->line_items[ 'quantity_' . $index ] = $item['quantity']; |
|
322 | + $this->line_items['item_name_' . $index] = getpaid_limit_length($item['item_name'], 127); |
|
323 | + $this->line_items['quantity_' . $index] = $item['quantity']; |
|
324 | 324 | |
325 | 325 | // The price or amount of the product, service, or contribution, not including shipping, handling, or tax. |
326 | - $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
327 | - $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
326 | + $this->line_items['amount_' . $index] = $item['amount'] * $item['quantity']; |
|
327 | + $this->line_items['item_number_' . $index] = getpaid_limit_length($item['item_number'], 127); |
|
328 | 328 | } |
329 | 329 | |
330 | 330 | /** |
@@ -336,19 +336,19 @@ discard block |
||
336 | 336 | * @param array $paypal_args Arguments sent to Paypal in the request. |
337 | 337 | * @return array |
338 | 338 | */ |
339 | - protected function fix_request_length( $invoice, $paypal_args ) { |
|
339 | + protected function fix_request_length($invoice, $paypal_args) { |
|
340 | 340 | $max_paypal_length = 2083; |
341 | - $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
341 | + $query_candidate = http_build_query($paypal_args, '', '&'); |
|
342 | 342 | |
343 | - if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
343 | + if (strlen($this->endpoint . $query_candidate) <= $max_paypal_length) { |
|
344 | 344 | return $paypal_args; |
345 | 345 | } |
346 | 346 | |
347 | 347 | return apply_filters( |
348 | 348 | 'getpaid_paypal_args', |
349 | 349 | array_merge( |
350 | - $this->get_transaction_args( $invoice ), |
|
351 | - $this->get_line_item_args( $invoice, true ) |
|
350 | + $this->get_transaction_args($invoice), |
|
351 | + $this->get_line_item_args($invoice, true) |
|
352 | 352 | ), |
353 | 353 | $invoice |
354 | 354 | ); |
@@ -361,10 +361,10 @@ discard block |
||
361 | 361 | * @param array $paypal_args PayPal args. |
362 | 362 | * @param WPInv_Invoice $invoice Invoice object. |
363 | 363 | */ |
364 | - public function process_subscription( $paypal_args, $invoice ) { |
|
364 | + public function process_subscription($paypal_args, $invoice) { |
|
365 | 365 | |
366 | 366 | // Make sure this is a subscription. |
367 | - if ( ! $invoice->is_recurring() || ! $subscription = getpaid_get_invoice_subscription( $invoice ) ) { |
|
367 | + if (!$invoice->is_recurring() || !$subscription = getpaid_get_invoice_subscription($invoice)) { |
|
368 | 368 | return $paypal_args; |
369 | 369 | } |
370 | 370 | |
@@ -372,23 +372,23 @@ discard block |
||
372 | 372 | $paypal_args['cmd'] = '_xclick-subscriptions'; |
373 | 373 | |
374 | 374 | // Subscription name. |
375 | - $paypal_args['item_name'] = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
|
375 | + $paypal_args['item_name'] = sprintf(__('Invoice #%s', 'invoicing'), $invoice->get_number()); |
|
376 | 376 | |
377 | 377 | // Get subscription args. |
378 | - $period = strtoupper( substr( $subscription->get_period(), 0, 1 ) ); |
|
378 | + $period = strtoupper(substr($subscription->get_period(), 0, 1)); |
|
379 | 379 | $interval = (int) $subscription->get_frequency(); |
380 | 380 | $bill_times = (int) $subscription->get_bill_times(); |
381 | - $initial_amount = (float) wpinv_sanitize_amount( $invoice->get_initial_total(), 2 ); |
|
382 | - $recurring_amount = (float) wpinv_sanitize_amount( $invoice->get_recurring_total(), 2 ); |
|
383 | - $subscription_item = $invoice->get_recurring( true ); |
|
381 | + $initial_amount = (float) wpinv_sanitize_amount($invoice->get_initial_total(), 2); |
|
382 | + $recurring_amount = (float) wpinv_sanitize_amount($invoice->get_recurring_total(), 2); |
|
383 | + $subscription_item = $invoice->get_recurring(true); |
|
384 | 384 | |
385 | 385 | // Convert 365 days to 1 year. |
386 | - if ( 'D' == $period && 365 == $interval ) { |
|
386 | + if ('D' == $period && 365 == $interval) { |
|
387 | 387 | $period = 'Y'; |
388 | 388 | $interval = 1; |
389 | 389 | } |
390 | 390 | |
391 | - if ( $subscription_item->has_free_trial() ) { |
|
391 | + if ($subscription_item->has_free_trial()) { |
|
392 | 392 | |
393 | 393 | $paypal_args['a1'] = 0 == $initial_amount ? 0 : $initial_amount; |
394 | 394 | |
@@ -398,28 +398,28 @@ discard block |
||
398 | 398 | // Trial period. |
399 | 399 | $paypal_args['t1'] = $subscription_item->get_trial_period(); |
400 | 400 | |
401 | - } elseif ( $initial_amount != $recurring_amount ) { |
|
401 | + } elseif ($initial_amount != $recurring_amount) { |
|
402 | 402 | |
403 | 403 | // No trial period, but initial amount includes a sign-up fee and/or other items, so charge it as a separate period. |
404 | 404 | |
405 | - if ( 1 == $bill_times ) { |
|
405 | + if (1 == $bill_times) { |
|
406 | 406 | $param_number = 3; |
407 | 407 | } else { |
408 | 408 | $param_number = 1; |
409 | 409 | } |
410 | 410 | |
411 | - $paypal_args[ 'a' . $param_number ] = $initial_amount ? $initial_amount : 0; |
|
411 | + $paypal_args['a' . $param_number] = $initial_amount ? $initial_amount : 0; |
|
412 | 412 | |
413 | 413 | // Sign Up interval |
414 | - $paypal_args[ 'p' . $param_number ] = $interval; |
|
414 | + $paypal_args['p' . $param_number] = $interval; |
|
415 | 415 | |
416 | 416 | // Sign Up unit of duration |
417 | - $paypal_args[ 't' . $param_number ] = $period; |
|
417 | + $paypal_args['t' . $param_number] = $period; |
|
418 | 418 | |
419 | 419 | } |
420 | 420 | |
421 | 421 | // We have a recurring payment |
422 | - if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
422 | + if (!isset($param_number) || 1 == $param_number) { |
|
423 | 423 | |
424 | 424 | // Subscription price |
425 | 425 | $paypal_args['a3'] = $recurring_amount; |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | } |
434 | 434 | |
435 | 435 | // Recurring payments |
436 | - if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
436 | + if (1 == $bill_times || ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial() && 2 == $bill_times)) { |
|
437 | 437 | |
438 | 438 | // Non-recurring payments |
439 | 439 | $paypal_args['src'] = 0; |
@@ -442,15 +442,15 @@ discard block |
||
442 | 442 | |
443 | 443 | $paypal_args['src'] = 1; |
444 | 444 | |
445 | - if ( $bill_times > 0 ) { |
|
445 | + if ($bill_times > 0) { |
|
446 | 446 | |
447 | 447 | // An initial period is being used to charge a sign-up fee |
448 | - if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
448 | + if ($initial_amount != $recurring_amount && !$subscription_item->has_free_trial()) { |
|
449 | 449 | $bill_times--; |
450 | 450 | } |
451 | 451 | |
452 | 452 | // Make sure it's not over the max of 52 |
453 | - $paypal_args['srt'] = ( $bill_times <= 52 ? absint( $bill_times ) : 52 ); |
|
453 | + $paypal_args['srt'] = ($bill_times <= 52 ? absint($bill_times) : 52); |
|
454 | 454 | |
455 | 455 | } |
456 | 456 | } |
@@ -459,10 +459,10 @@ discard block |
||
459 | 459 | $paypal_args['rm'] = 2; |
460 | 460 | |
461 | 461 | // Get rid of redudant items. |
462 | - foreach ( array( 'item_name_1', 'quantity_1', 'amount_1', 'item_number_1' ) as $arg ) { |
|
462 | + foreach (array('item_name_1', 'quantity_1', 'amount_1', 'item_number_1') as $arg) { |
|
463 | 463 | |
464 | - if ( isset( $paypal_args[ $arg ] ) ) { |
|
465 | - unset( $paypal_args[ $arg ] ); |
|
464 | + if (isset($paypal_args[$arg])) { |
|
465 | + unset($paypal_args[$arg]); |
|
466 | 466 | } |
467 | 467 | } |
468 | 468 | |
@@ -480,7 +480,7 @@ discard block |
||
480 | 480 | * @return void |
481 | 481 | */ |
482 | 482 | public function verify_ipn() { |
483 | - new GetPaid_Paypal_Gateway_IPN_Handler( $this ); |
|
483 | + new GetPaid_Paypal_Gateway_IPN_Handler($this); |
|
484 | 484 | } |
485 | 485 | |
486 | 486 | /** |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | public function sandbox_notice() { |
490 | 490 | |
491 | 491 | return sprintf( |
492 | - __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing' ), |
|
492 | + __('SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing'), |
|
493 | 493 | '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
494 | 494 | '</a>' |
495 | 495 | ); |
@@ -501,49 +501,49 @@ discard block |
||
501 | 501 | * |
502 | 502 | * @param array $admin_settings |
503 | 503 | */ |
504 | - public function admin_settings( $admin_settings ) { |
|
504 | + public function admin_settings($admin_settings) { |
|
505 | 505 | |
506 | 506 | $currencies = sprintf( |
507 | - __( 'Supported Currencies: %s', 'invoicing' ), |
|
508 | - implode( ', ', $this->currencies ) |
|
507 | + __('Supported Currencies: %s', 'invoicing'), |
|
508 | + implode(', ', $this->currencies) |
|
509 | 509 | ); |
510 | 510 | |
511 | 511 | $admin_settings['paypal_active']['desc'] .= " ($currencies)"; |
512 | - $admin_settings['paypal_desc']['std'] = __( 'Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing' ); |
|
512 | + $admin_settings['paypal_desc']['std'] = __('Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing'); |
|
513 | 513 | |
514 | 514 | // Access tokens. |
515 | - $live_email = wpinv_get_option( 'paypal_email' ); |
|
516 | - $sandbox_email = wpinv_get_option( 'paypal_sandbox_email' ); |
|
515 | + $live_email = wpinv_get_option('paypal_email'); |
|
516 | + $sandbox_email = wpinv_get_option('paypal_sandbox_email'); |
|
517 | 517 | |
518 | 518 | $admin_settings['paypal_connect'] = array( |
519 | 519 | 'type' => 'hook', |
520 | 520 | 'id' => 'paypal_connect', |
521 | - 'name' => __( 'Connect to PayPal', 'invoicing' ), |
|
521 | + 'name' => __('Connect to PayPal', 'invoicing'), |
|
522 | 522 | ); |
523 | 523 | |
524 | 524 | $admin_settings['paypal_email'] = array( |
525 | 525 | 'type' => 'text', |
526 | 526 | 'class' => 'live-auth-data', |
527 | 527 | 'id' => 'paypal_email', |
528 | - 'name' => __( 'Live Email Address', 'invoicing' ), |
|
529 | - 'desc' => __( 'The email address of your PayPal account.', 'invoicing' ), |
|
528 | + 'name' => __('Live Email Address', 'invoicing'), |
|
529 | + 'desc' => __('The email address of your PayPal account.', 'invoicing'), |
|
530 | 530 | ); |
531 | 531 | |
532 | 532 | $admin_settings['paypal_sandbox_email'] = array( |
533 | 533 | 'type' => 'text', |
534 | 534 | 'class' => 'sandbox-auth-data', |
535 | 535 | 'id' => 'paypal_sandbox_email', |
536 | - 'name' => __( 'Sandbox Email Address', 'invoicing' ), |
|
537 | - 'desc' => __( 'The email address of your sandbox PayPal account.', 'invoicing' ), |
|
538 | - 'std' => wpinv_get_option( 'paypal_email', '' ), |
|
536 | + 'name' => __('Sandbox Email Address', 'invoicing'), |
|
537 | + 'desc' => __('The email address of your sandbox PayPal account.', 'invoicing'), |
|
538 | + 'std' => wpinv_get_option('paypal_email', ''), |
|
539 | 539 | ); |
540 | 540 | |
541 | 541 | $admin_settings['paypal_ipn_url'] = array( |
542 | 542 | 'type' => 'ipn_url', |
543 | 543 | 'id' => 'paypal_ipn_url', |
544 | - 'name' => __( 'IPN Url', 'invoicing' ), |
|
544 | + 'name' => __('IPN Url', 'invoicing'), |
|
545 | 545 | 'std' => $this->notify_url, |
546 | - 'desc' => __( "If you've not enabled IPNs in your paypal account, use the above URL to enable them.", 'invoicing' ) . ' <a href="https://developer.paypal.com/docs/api-basics/notifications/ipn/"><em>' . __( 'Learn more.', 'invoicing' ) . '</em></a>', |
|
546 | + 'desc' => __("If you've not enabled IPNs in your paypal account, use the above URL to enable them.", 'invoicing') . ' <a href="https://developer.paypal.com/docs/api-basics/notifications/ipn/"><em>' . __('Learn more.', 'invoicing') . '</em></a>', |
|
547 | 547 | 'readonly' => true, |
548 | 548 | ); |
549 | 549 | |
@@ -556,9 +556,9 @@ discard block |
||
556 | 556 | * @param string $url |
557 | 557 | * @param WPInv_Subscription $subscription |
558 | 558 | */ |
559 | - public function filter_cancel_subscription_url( $url, $subscription ) { |
|
559 | + public function filter_cancel_subscription_url($url, $subscription) { |
|
560 | 560 | |
561 | - if ( $this->id !== $subscription->get_gateway() ) { |
|
561 | + if ($this->id !== $subscription->get_gateway()) { |
|
562 | 562 | return $url; |
563 | 563 | } |
564 | 564 | |
@@ -566,16 +566,16 @@ discard block |
||
566 | 566 | $profile_id = $subscription->get_profile_id(); |
567 | 567 | |
568 | 568 | // Bail if no profile ID. |
569 | - if ( empty( $profile_id ) ) { |
|
569 | + if (empty($profile_id)) { |
|
570 | 570 | return $url; |
571 | 571 | } |
572 | 572 | |
573 | 573 | $cancel_url = 'https://www.paypal.com/myaccount/autopay/connect/%s/cancel'; |
574 | - if ( $this->is_sandbox( $subscription->get_parent_payment() ) ) { |
|
574 | + if ($this->is_sandbox($subscription->get_parent_payment())) { |
|
575 | 575 | $cancel_url = 'https://www.sandbox.paypal.com/myaccount/autopay/connect/%s/cancel'; |
576 | 576 | } |
577 | 577 | |
578 | - return sprintf( $cancel_url, $profile_id ); |
|
578 | + return sprintf($cancel_url, $profile_id); |
|
579 | 579 | } |
580 | 580 | |
581 | 581 | /** |
@@ -585,8 +585,8 @@ discard block |
||
585 | 585 | * @param array $data |
586 | 586 | * @return string |
587 | 587 | */ |
588 | - public static function maybe_get_connect_url( $url = '', $data = array() ) { |
|
589 | - return self::get_connect_url( false, urldecode( $data['redirect'] ) ); |
|
588 | + public static function maybe_get_connect_url($url = '', $data = array()) { |
|
589 | + return self::get_connect_url(false, urldecode($data['redirect'])); |
|
590 | 590 | } |
591 | 591 | |
592 | 592 | /** |
@@ -597,25 +597,25 @@ discard block |
||
597 | 597 | * @param string $redirect |
598 | 598 | * @return string |
599 | 599 | */ |
600 | - public static function get_connect_url( $is_sandbox, $redirect = '' ) { |
|
600 | + public static function get_connect_url($is_sandbox, $redirect = '') { |
|
601 | 601 | |
602 | 602 | $redirect_url = add_query_arg( |
603 | 603 | array( |
604 | 604 | 'getpaid-admin-action' => 'connect_paypal', |
605 | 605 | 'page' => 'wpinv-settings', |
606 | - 'live_mode' => (int) empty( $is_sandbox ), |
|
606 | + 'live_mode' => (int) empty($is_sandbox), |
|
607 | 607 | 'tab' => 'gateways', |
608 | 608 | 'section' => 'paypal', |
609 | - 'getpaid-nonce' => wp_create_nonce( 'getpaid-nonce' ), |
|
610 | - 'redirect' => urlencode( $redirect ), |
|
609 | + 'getpaid-nonce' => wp_create_nonce('getpaid-nonce'), |
|
610 | + 'redirect' => urlencode($redirect), |
|
611 | 611 | ), |
612 | - admin_url( 'admin.php' ) |
|
612 | + admin_url('admin.php') |
|
613 | 613 | ); |
614 | 614 | |
615 | 615 | return add_query_arg( |
616 | 616 | array( |
617 | - 'live_mode' => (int) empty( $is_sandbox ), |
|
618 | - 'redirect_url' => urlencode( str_replace( '&', '&', $redirect_url ) ), |
|
617 | + 'live_mode' => (int) empty($is_sandbox), |
|
618 | + 'redirect_url' => urlencode(str_replace('&', '&', $redirect_url)), |
|
619 | 619 | ), |
620 | 620 | 'https://ayecode.io/oauth/paypal' |
621 | 621 | ); |
@@ -631,10 +631,10 @@ discard block |
||
631 | 631 | |
632 | 632 | ?> |
633 | 633 | <div class="wpinv-paypal-connect-live"> |
634 | - <a class="button button-primary" href="<?php echo esc_url( self::get_connect_url( false ) ); ?>"><?php esc_html_e( 'Connect to PayPal', 'invoicing' ); ?></a> |
|
634 | + <a class="button button-primary" href="<?php echo esc_url(self::get_connect_url(false)); ?>"><?php esc_html_e('Connect to PayPal', 'invoicing'); ?></a> |
|
635 | 635 | </div> |
636 | 636 | <div class="wpinv-paypal-connect-sandbox"> |
637 | - <a class="button button-primary" href="<?php echo esc_url( self::get_connect_url( true ) ); ?>"><?php esc_html_e( 'Connect to PayPal Sandbox', 'invoicing' ); ?></a> |
|
637 | + <a class="button button-primary" href="<?php echo esc_url(self::get_connect_url(true)); ?>"><?php esc_html_e('Connect to PayPal Sandbox', 'invoicing'); ?></a> |
|
638 | 638 | </div> |
639 | 639 | |
640 | 640 | <script> |
@@ -675,26 +675,26 @@ discard block |
||
675 | 675 | * @param array $data Connection data. |
676 | 676 | * @return void |
677 | 677 | */ |
678 | - public function connect_paypal( $data ) { |
|
678 | + public function connect_paypal($data) { |
|
679 | 679 | |
680 | 680 | $sandbox = $this->is_sandbox(); |
681 | - $data = wp_unslash( $data ); |
|
682 | - $access_token = empty( $data['access_token'] ) ? '' : sanitize_text_field( $data['access_token'] ); |
|
681 | + $data = wp_unslash($data); |
|
682 | + $access_token = empty($data['access_token']) ? '' : sanitize_text_field($data['access_token']); |
|
683 | 683 | |
684 | - if ( isset( $data['live_mode'] ) ) { |
|
685 | - $sandbox = empty( $data['live_mode'] ); |
|
684 | + if (isset($data['live_mode'])) { |
|
685 | + $sandbox = empty($data['live_mode']); |
|
686 | 686 | } |
687 | 687 | |
688 | - wpinv_update_option( 'paypal_sandbox', (int) $sandbox ); |
|
689 | - wpinv_update_option( 'paypal_active', 1 ); |
|
688 | + wpinv_update_option('paypal_sandbox', (int) $sandbox); |
|
689 | + wpinv_update_option('paypal_active', 1); |
|
690 | 690 | |
691 | - if ( ! empty( $data['error_description'] ) ) { |
|
692 | - getpaid_admin()->show_error( wp_kses_post( urldecode( $data['error_description'] ) ) ); |
|
691 | + if (!empty($data['error_description'])) { |
|
692 | + getpaid_admin()->show_error(wp_kses_post(urldecode($data['error_description']))); |
|
693 | 693 | } else { |
694 | 694 | |
695 | 695 | // Retrieve the user info. |
696 | 696 | $user_info = wp_remote_get( |
697 | - ! $sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
697 | + !$sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
698 | 698 | array( |
699 | 699 | |
700 | 700 | 'headers' => array( |
@@ -705,33 +705,33 @@ discard block |
||
705 | 705 | ) |
706 | 706 | ); |
707 | 707 | |
708 | - if ( is_wp_error( $user_info ) ) { |
|
709 | - getpaid_admin()->show_error( wp_kses_post( $user_info->get_error_message() ) ); |
|
708 | + if (is_wp_error($user_info)) { |
|
709 | + getpaid_admin()->show_error(wp_kses_post($user_info->get_error_message())); |
|
710 | 710 | } else { |
711 | 711 | |
712 | 712 | // Create application. |
713 | - $user_info = json_decode( wp_remote_retrieve_body( $user_info ) ); |
|
713 | + $user_info = json_decode(wp_remote_retrieve_body($user_info)); |
|
714 | 714 | |
715 | - if ( $sandbox ) { |
|
716 | - wpinv_update_option( 'paypal_sandbox_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
717 | - wpinv_update_option( 'paypal_sandbox_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
718 | - set_transient( 'getpaid_paypal_sandbox_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
719 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal sandbox account', 'invoicing' ) ); |
|
715 | + if ($sandbox) { |
|
716 | + wpinv_update_option('paypal_sandbox_email', sanitize_email($user_info->emails[0]->value)); |
|
717 | + wpinv_update_option('paypal_sandbox_refresh_token', sanitize_text_field(urldecode($data['refresh_token']))); |
|
718 | + set_transient('getpaid_paypal_sandbox_access_token', sanitize_text_field(urldecode($data['access_token'])), (int) $data['expires_in']); |
|
719 | + getpaid_admin()->show_success(__('Successfully connected your PayPal sandbox account', 'invoicing')); |
|
720 | 720 | } else { |
721 | - wpinv_update_option( 'paypal_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
722 | - wpinv_update_option( 'paypal_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
723 | - set_transient( 'getpaid_paypal_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
724 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal account', 'invoicing' ) ); |
|
721 | + wpinv_update_option('paypal_email', sanitize_email($user_info->emails[0]->value)); |
|
722 | + wpinv_update_option('paypal_refresh_token', sanitize_text_field(urldecode($data['refresh_token']))); |
|
723 | + set_transient('getpaid_paypal_access_token', sanitize_text_field(urldecode($data['access_token'])), (int) $data['expires_in']); |
|
724 | + getpaid_admin()->show_success(__('Successfully connected your PayPal account', 'invoicing')); |
|
725 | 725 | } |
726 | 726 | } |
727 | 727 | } |
728 | 728 | |
729 | - $redirect = empty( $data['redirect'] ) ? admin_url( 'admin.php?page=wpinv-settings&tab=gateways§ion=paypal' ) : urldecode( $data['redirect'] ); |
|
729 | + $redirect = empty($data['redirect']) ? admin_url('admin.php?page=wpinv-settings&tab=gateways§ion=paypal') : urldecode($data['redirect']); |
|
730 | 730 | |
731 | - if ( isset( $data['step'] ) ) { |
|
732 | - $redirect = add_query_arg( 'step', $data['step'], $redirect ); |
|
731 | + if (isset($data['step'])) { |
|
732 | + $redirect = add_query_arg('step', $data['step'], $redirect); |
|
733 | 733 | } |
734 | - wp_redirect( $redirect ); |
|
734 | + wp_redirect($redirect); |
|
735 | 735 | exit; |
736 | 736 | } |
737 | 737 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | if ( ! defined( 'ABSPATH' ) ) { |
7 | - exit; |
|
7 | + exit; |
|
8 | 8 | } |
9 | 9 | add_ThickBox(); |
10 | 10 | ?> |
@@ -14,18 +14,18 @@ discard block |
||
14 | 14 | <?php if ( $tabs ) { ?> |
15 | 15 | <nav class="nav-tab-wrapper wpi-nav-tab-wrapper"> |
16 | 16 | <?php |
17 | - foreach ( $tabs as $name => $label ) { |
|
18 | - echo '<a href="' . esc_url( admin_url( 'admin.php?page=wpi-addons&tab=' . $name ) ) . '" class="nav-tab ' . ( $current_tab == $name ? 'nav-tab-active' : '' ) . '">' . esc_html( $label ) . '</a>'; |
|
19 | - } |
|
20 | - do_action( 'wpi_addons_tabs' ); |
|
21 | - ?> |
|
17 | + foreach ( $tabs as $name => $label ) { |
|
18 | + echo '<a href="' . esc_url( admin_url( 'admin.php?page=wpi-addons&tab=' . $name ) ) . '" class="nav-tab ' . ( $current_tab == $name ? 'nav-tab-active' : '' ) . '">' . esc_html( $label ) . '</a>'; |
|
19 | + } |
|
20 | + do_action( 'wpi_addons_tabs' ); |
|
21 | + ?> |
|
22 | 22 | </nav> |
23 | 23 | |
24 | 24 | <?php |
25 | 25 | |
26 | - if ( $current_tab == 'membership' ) { |
|
26 | + if ( $current_tab == 'membership' ) { |
|
27 | 27 | |
28 | - ?> |
|
28 | + ?> |
|
29 | 29 | |
30 | 30 | <div class="wpi-membership-tab-conatiner"> |
31 | 31 | <div class="membership-content"> |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | <h2><?php esc_html_e( 'Have a membership key?', 'invoicing' ); ?></h2> |
37 | 37 | <p> |
38 | 38 | <?php |
39 | - $wpeu_admin = new External_Updates_Admin( 'wpinvoicing.com', '1' ); |
|
40 | - echo $wpeu_admin->render_licence_actions( 'wpinvoicing.com', 'membership', array( 95, 106, 108, 12351 ) ); |
|
41 | - ?> |
|
39 | + $wpeu_admin = new External_Updates_Admin( 'wpinvoicing.com', '1' ); |
|
40 | + echo $wpeu_admin->render_licence_actions( 'wpinvoicing.com', 'membership', array( 95, 106, 108, 12351 ) ); |
|
41 | + ?> |
|
42 | 42 | </p> |
43 | 43 | <?php } ?> |
44 | 44 | |
@@ -48,13 +48,13 @@ discard block |
||
48 | 48 | <div class="feature-list"> |
49 | 49 | <ul> |
50 | 50 | <?php |
51 | - $addon_obj = new WPInv_Admin_Addons(); |
|
52 | - if ( $addons = $addon_obj->get_section_data( 'addons' ) ) { |
|
53 | - foreach ( $addons as $addon ) { |
|
54 | - echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html( $addon->info->title ) . '</li>'; |
|
55 | - } |
|
56 | - } |
|
57 | - ?> |
|
51 | + $addon_obj = new WPInv_Admin_Addons(); |
|
52 | + if ( $addons = $addon_obj->get_section_data( 'addons' ) ) { |
|
53 | + foreach ( $addons as $addon ) { |
|
54 | + echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html( $addon->info->title ) . '</li>'; |
|
55 | + } |
|
56 | + } |
|
57 | + ?> |
|
58 | 58 | </ul> |
59 | 59 | |
60 | 60 | <div class="feature-cta"> |
@@ -65,12 +65,12 @@ discard block |
||
65 | 65 | <h3><?php esc_html_e( 'Included Gateways:', 'invoicing' ); ?></h3> |
66 | 66 | <ul> |
67 | 67 | <?php |
68 | - if ( $addons = $addon_obj->get_section_data( 'gateways' ) ) { |
|
69 | - foreach ( $addons as $addon ) { |
|
70 | - echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html( $addon->info->title ) . '</li>'; |
|
71 | - } |
|
72 | - } |
|
73 | - ?> |
|
68 | + if ( $addons = $addon_obj->get_section_data( 'gateways' ) ) { |
|
69 | + foreach ( $addons as $addon ) { |
|
70 | + echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html( $addon->info->title ) . '</li>'; |
|
71 | + } |
|
72 | + } |
|
73 | + ?> |
|
74 | 74 | </ul> |
75 | 75 | </div> |
76 | 76 | |
@@ -81,8 +81,8 @@ discard block |
||
81 | 81 | <div class="testimonial-content"> |
82 | 82 | <div class="t-image"> |
83 | 83 | <?php |
84 | - echo '<img src="' . esc_url( plugins_url( 'images/t-image2.png', dirname( __FILE__ ) ) ) . '" > '; |
|
85 | - ?> |
|
84 | + echo '<img src="' . esc_url( plugins_url( 'images/t-image2.png', dirname( __FILE__ ) ) ) . '" > '; |
|
85 | + ?> |
|
86 | 86 | </div> |
87 | 87 | <div class="t-content"> |
88 | 88 | <p> |
@@ -101,8 +101,8 @@ discard block |
||
101 | 101 | <div class="testimonial-content"> |
102 | 102 | <div class="t-image"> |
103 | 103 | <?php |
104 | - echo '<img src="' . esc_url( plugins_url( 'images/t-image1.png', dirname( __FILE__ ) ) ) . '" > '; |
|
105 | - ?> |
|
104 | + echo '<img src="' . esc_url( plugins_url( 'images/t-image1.png', dirname( __FILE__ ) ) ) . '" > '; |
|
105 | + ?> |
|
106 | 106 | </div> |
107 | 107 | <div class="t-content"> |
108 | 108 | <p> |
@@ -126,26 +126,26 @@ discard block |
||
126 | 126 | </div> |
127 | 127 | </div> |
128 | 128 | <?php |
129 | - } else { |
|
130 | - $installed_plugins = get_plugins(); |
|
129 | + } else { |
|
130 | + $installed_plugins = get_plugins(); |
|
131 | 131 | $addon_obj = new WPInv_Admin_Addons(); |
132 | - if ( $addons = $addon_obj->get_section_data( $current_tab ) ) : |
|
133 | - //print_r($addons); |
|
134 | - ?> |
|
132 | + if ( $addons = $addon_obj->get_section_data( $current_tab ) ) : |
|
133 | + //print_r($addons); |
|
134 | + ?> |
|
135 | 135 | <ul class="wpi-products"> |
136 | 136 | <?php |
137 | 137 | foreach ( $addons as $addon ) : |
138 | 138 | if ( 965 == $addon->info->id ) { |
139 | 139 | continue;}// don't show quote add on |
140 | - ?> |
|
140 | + ?> |
|
141 | 141 | <li class="wpi-product"> |
142 | 142 | <div class="wpi-product-title"> |
143 | 143 | <h3> |
144 | 144 | <?php |
145 | - if ( ! empty( $addon->info->excerpt ) ) { |
|
146 | - wpi_help_tip( $addon->info->excerpt, false, false, true ); |
|
147 | - } |
|
148 | - echo esc_html( $addon->info->title ); |
|
145 | + if ( ! empty( $addon->info->excerpt ) ) { |
|
146 | + wpi_help_tip( $addon->info->excerpt, false, false, true ); |
|
147 | + } |
|
148 | + echo esc_html( $addon->info->title ); |
|
149 | 149 | ?> |
150 | 150 | </h3> |
151 | 151 | </div> |
@@ -156,32 +156,32 @@ discard block |
||
156 | 156 | <?php |
157 | 157 | endif; |
158 | 158 | |
159 | - if ( 'stripe-payment-gateway' == $addon->info->slug ) { |
|
160 | - $addon->info->slug = 'getpaid-stripe-payments'; |
|
161 | - $addon->info->link = 'https://wordpress.org/plugins/getpaid-stripe-payments/'; |
|
162 | - } |
|
163 | - |
|
164 | - if ( isset( $addon->info->link ) && substr( $addon->info->link, 0, 21 ) === 'https://wordpress.org' ) { |
|
165 | - echo '<a href="' . esc_url( admin_url( '/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug ) ) . '&width=770&height=660&TB_iframe=true" class="thickbox" >'; |
|
166 | - echo '<span class="wpi-product-info">' . esc_html__( 'More info', 'invoicing' ) . '</span>'; |
|
167 | - echo '</a>'; |
|
168 | - } elseif ( isset( $addon->info->link ) && ( substr( $addon->info->link, 0, 23 ) === 'https://wpinvoicing.com' || substr( $addon->info->link, 0, 21 ) === 'https://wpgetpaid.com' ) ) { |
|
169 | - if ( defined( 'WP_EASY_UPDATES_ACTIVE' ) ) { |
|
170 | - $url = admin_url( '/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug . '&width=770&height=660&item_id=' . $addon->info->id . '&update_url=https://wpgetpaid.com&TB_iframe=true' ); |
|
171 | - } else { |
|
172 | - // if installed show activation link |
|
173 | - if ( isset( $installed_plugins['wp-easy-updates/external-updates.php'] ) ) { |
|
174 | - $url = '#TB_inline?width=600&height=50&inlineId=wpi-wpeu-required-activation'; |
|
175 | - } else { |
|
176 | - $url = '#TB_inline?width=600&height=50&inlineId=wpi-wpeu-required-for-external'; |
|
177 | - } |
|
178 | - } |
|
179 | - echo '<a href="' . esc_url( $url ) . '" class="thickbox">'; |
|
180 | - echo '<span class="wpi-product-info">' . esc_html__( 'More info', 'invoicing' ) . '</span>'; |
|
181 | - echo '</a>'; |
|
182 | - } |
|
183 | - |
|
184 | - ?> |
|
159 | + if ( 'stripe-payment-gateway' == $addon->info->slug ) { |
|
160 | + $addon->info->slug = 'getpaid-stripe-payments'; |
|
161 | + $addon->info->link = 'https://wordpress.org/plugins/getpaid-stripe-payments/'; |
|
162 | + } |
|
163 | + |
|
164 | + if ( isset( $addon->info->link ) && substr( $addon->info->link, 0, 21 ) === 'https://wordpress.org' ) { |
|
165 | + echo '<a href="' . esc_url( admin_url( '/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug ) ) . '&width=770&height=660&TB_iframe=true" class="thickbox" >'; |
|
166 | + echo '<span class="wpi-product-info">' . esc_html__( 'More info', 'invoicing' ) . '</span>'; |
|
167 | + echo '</a>'; |
|
168 | + } elseif ( isset( $addon->info->link ) && ( substr( $addon->info->link, 0, 23 ) === 'https://wpinvoicing.com' || substr( $addon->info->link, 0, 21 ) === 'https://wpgetpaid.com' ) ) { |
|
169 | + if ( defined( 'WP_EASY_UPDATES_ACTIVE' ) ) { |
|
170 | + $url = admin_url( '/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug . '&width=770&height=660&item_id=' . $addon->info->id . '&update_url=https://wpgetpaid.com&TB_iframe=true' ); |
|
171 | + } else { |
|
172 | + // if installed show activation link |
|
173 | + if ( isset( $installed_plugins['wp-easy-updates/external-updates.php'] ) ) { |
|
174 | + $url = '#TB_inline?width=600&height=50&inlineId=wpi-wpeu-required-activation'; |
|
175 | + } else { |
|
176 | + $url = '#TB_inline?width=600&height=50&inlineId=wpi-wpeu-required-for-external'; |
|
177 | + } |
|
178 | + } |
|
179 | + echo '<a href="' . esc_url( $url ) . '" class="thickbox">'; |
|
180 | + echo '<span class="wpi-product-info">' . esc_html__( 'More info', 'invoicing' ) . '</span>'; |
|
181 | + echo '</a>'; |
|
182 | + } |
|
183 | + |
|
184 | + ?> |
|
185 | 185 | |
186 | 186 | </span> |
187 | 187 | |
@@ -189,15 +189,15 @@ discard block |
||
189 | 189 | <span class="wpi-product-button"> |
190 | 190 | <?php |
191 | 191 | $addon_obj->output_button( $addon ); |
192 | - ?> |
|
192 | + ?> |
|
193 | 193 | </span> |
194 | 194 | |
195 | 195 | <span class="wpi-price"><?php //print_r($addon); //echo wp_kses_post( $addon->price ); ?></span></li><?php endforeach; ?></ul> |
196 | 196 | <?php |
197 | 197 | endif; |
198 | - } |
|
198 | + } |
|
199 | 199 | } |
200 | - ?> |
|
200 | + ?> |
|
201 | 201 | |
202 | 202 | |
203 | 203 | <div class="clearfix" ></div> |
@@ -216,8 +216,8 @@ discard block |
||
216 | 216 | <input class="wpeu-licence-key" type="text" placeholder="<?php esc_attr_e( 'Enter your licence key', 'invoicing' ); ?>"> <button class="button-primary wpeu-licence-popup-button" ><?php esc_html_e( 'Install', 'invoicing' ); ?></button> |
217 | 217 | <br> |
218 | 218 | <?php |
219 | - printf( esc_html__( '%1$sFind your licence key here%2$s OR %3$sBuy one here%4$s', 'invoicing' ), '<a href="https://wpinvoicing.com/your-account/" target="_blank">', '</a>', '<a class="wpeu-licence-link" href="https://wpinvoicing.com/downloads/category/addons/" target="_blank">', '</a>' ); |
|
220 | - ?> |
|
219 | + printf( esc_html__( '%1$sFind your licence key here%2$s OR %3$sBuy one here%4$s', 'invoicing' ), '<a href="https://wpinvoicing.com/your-account/" target="_blank">', '</a>', '<a class="wpeu-licence-link" href="https://wpinvoicing.com/downloads/category/addons/" target="_blank">', '</a>' ); |
|
220 | + ?> |
|
221 | 221 | </span> |
222 | 222 | </div> |
223 | 223 |
@@ -3,27 +3,27 @@ discard block |
||
3 | 3 | * Admin View: Page - Addons |
4 | 4 | * |
5 | 5 | */ |
6 | -if ( ! defined( 'ABSPATH' ) ) { |
|
6 | +if (!defined('ABSPATH')) { |
|
7 | 7 | exit; |
8 | 8 | } |
9 | 9 | add_ThickBox(); |
10 | 10 | ?> |
11 | 11 | <div class="wrap wpi_addons_wrap"> |
12 | - <h1><?php echo esc_html( get_admin_page_title() ); ?></h1> |
|
12 | + <h1><?php echo esc_html(get_admin_page_title()); ?></h1> |
|
13 | 13 | |
14 | - <?php if ( $tabs ) { ?> |
|
14 | + <?php if ($tabs) { ?> |
|
15 | 15 | <nav class="nav-tab-wrapper wpi-nav-tab-wrapper"> |
16 | 16 | <?php |
17 | - foreach ( $tabs as $name => $label ) { |
|
18 | - echo '<a href="' . esc_url( admin_url( 'admin.php?page=wpi-addons&tab=' . $name ) ) . '" class="nav-tab ' . ( $current_tab == $name ? 'nav-tab-active' : '' ) . '">' . esc_html( $label ) . '</a>'; |
|
17 | + foreach ($tabs as $name => $label) { |
|
18 | + echo '<a href="' . esc_url(admin_url('admin.php?page=wpi-addons&tab=' . $name)) . '" class="nav-tab ' . ($current_tab == $name ? 'nav-tab-active' : '') . '">' . esc_html($label) . '</a>'; |
|
19 | 19 | } |
20 | - do_action( 'wpi_addons_tabs' ); |
|
20 | + do_action('wpi_addons_tabs'); |
|
21 | 21 | ?> |
22 | 22 | </nav> |
23 | 23 | |
24 | 24 | <?php |
25 | 25 | |
26 | - if ( $current_tab == 'membership' ) { |
|
26 | + if ($current_tab == 'membership') { |
|
27 | 27 | |
28 | 28 | ?> |
29 | 29 | |
@@ -32,42 +32,42 @@ discard block |
||
32 | 32 | <!-- |
33 | 33 | <h2>With our WPInvoicing Membership you get access to all our products!</h2> |
34 | 34 | <p><a class="button button-primary" href="https://wpinvoicing.com/downloads/membership/">View Memberships</a></p>--> |
35 | - <?php if ( defined( 'WP_EASY_UPDATES_ACTIVE' ) ) { ?> |
|
36 | - <h2><?php esc_html_e( 'Have a membership key?', 'invoicing' ); ?></h2> |
|
35 | + <?php if (defined('WP_EASY_UPDATES_ACTIVE')) { ?> |
|
36 | + <h2><?php esc_html_e('Have a membership key?', 'invoicing'); ?></h2> |
|
37 | 37 | <p> |
38 | 38 | <?php |
39 | - $wpeu_admin = new External_Updates_Admin( 'wpinvoicing.com', '1' ); |
|
40 | - echo $wpeu_admin->render_licence_actions( 'wpinvoicing.com', 'membership', array( 95, 106, 108, 12351 ) ); |
|
39 | + $wpeu_admin = new External_Updates_Admin('wpinvoicing.com', '1'); |
|
40 | + echo $wpeu_admin->render_licence_actions('wpinvoicing.com', 'membership', array(95, 106, 108, 12351)); |
|
41 | 41 | ?> |
42 | 42 | </p> |
43 | 43 | <?php } ?> |
44 | 44 | |
45 | 45 | <div class="membership-cta-contet"> |
46 | 46 | <div class="main-cta"> |
47 | - <h2><?php esc_html_e( 'Membership benefits Include:', 'invoicing' ); ?></h2> |
|
47 | + <h2><?php esc_html_e('Membership benefits Include:', 'invoicing'); ?></h2> |
|
48 | 48 | <div class="feature-list"> |
49 | 49 | <ul> |
50 | 50 | <?php |
51 | 51 | $addon_obj = new WPInv_Admin_Addons(); |
52 | - if ( $addons = $addon_obj->get_section_data( 'addons' ) ) { |
|
53 | - foreach ( $addons as $addon ) { |
|
54 | - echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html( $addon->info->title ) . '</li>'; |
|
52 | + if ($addons = $addon_obj->get_section_data('addons')) { |
|
53 | + foreach ($addons as $addon) { |
|
54 | + echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html($addon->info->title) . '</li>'; |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | ?> |
58 | 58 | </ul> |
59 | 59 | |
60 | 60 | <div class="feature-cta"> |
61 | - <h3><?php esc_html_e( 'Membership Starts from', 'invoicing' ); ?></h3> |
|
61 | + <h3><?php esc_html_e('Membership Starts from', 'invoicing'); ?></h3> |
|
62 | 62 | <h4>$99</h4> |
63 | - <a href="https://wpinvoicing.com/downloads/membership/" target="_blank"><?php esc_attr_e( 'Buy Membership', 'invoicing' ); ?></a> |
|
63 | + <a href="https://wpinvoicing.com/downloads/membership/" target="_blank"><?php esc_attr_e('Buy Membership', 'invoicing'); ?></a> |
|
64 | 64 | </div> |
65 | - <h3><?php esc_html_e( 'Included Gateways:', 'invoicing' ); ?></h3> |
|
65 | + <h3><?php esc_html_e('Included Gateways:', 'invoicing'); ?></h3> |
|
66 | 66 | <ul> |
67 | 67 | <?php |
68 | - if ( $addons = $addon_obj->get_section_data( 'gateways' ) ) { |
|
69 | - foreach ( $addons as $addon ) { |
|
70 | - echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html( $addon->info->title ) . '</li>'; |
|
68 | + if ($addons = $addon_obj->get_section_data('gateways')) { |
|
69 | + foreach ($addons as $addon) { |
|
70 | + echo '<li><i class="far fa-check-circle fa-sm"></i> ' . esc_html($addon->info->title) . '</li>'; |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | ?> |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | <div class="testimonial-content"> |
82 | 82 | <div class="t-image"> |
83 | 83 | <?php |
84 | - echo '<img src="' . esc_url( plugins_url( 'images/t-image2.png', dirname( __FILE__ ) ) ) . '" > '; |
|
84 | + echo '<img src="' . esc_url(plugins_url('images/t-image2.png', dirname(__FILE__))) . '" > '; |
|
85 | 85 | ?> |
86 | 86 | </div> |
87 | 87 | <div class="t-content"> |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | <div class="testimonial-content"> |
102 | 102 | <div class="t-image"> |
103 | 103 | <?php |
104 | - echo '<img src="' . esc_url( plugins_url( 'images/t-image1.png', dirname( __FILE__ ) ) ) . '" > '; |
|
104 | + echo '<img src="' . esc_url(plugins_url('images/t-image1.png', dirname(__FILE__))) . '" > '; |
|
105 | 105 | ?> |
106 | 106 | </div> |
107 | 107 | <div class="t-content"> |
@@ -117,8 +117,8 @@ discard block |
||
117 | 117 | </div> |
118 | 118 | </div> |
119 | 119 | <div class="member-footer"> |
120 | - <a class="footer-btn" href="https://wpinvoicing.com/downloads/membership/" target="_blank"><?php esc_html_e( 'Buy Membership', 'invoicing' ); ?></a> |
|
121 | - <a class="footer-link" href="post-new.php?post_type=wpi_invoice"><?php esc_html_e( 'Create Invoice', 'invoicing' ); ?></a> |
|
120 | + <a class="footer-btn" href="https://wpinvoicing.com/downloads/membership/" target="_blank"><?php esc_html_e('Buy Membership', 'invoicing'); ?></a> |
|
121 | + <a class="footer-link" href="post-new.php?post_type=wpi_invoice"><?php esc_html_e('Create Invoice', 'invoicing'); ?></a> |
|
122 | 122 | </div> |
123 | 123 | </div> |
124 | 124 | |
@@ -129,55 +129,55 @@ discard block |
||
129 | 129 | } else { |
130 | 130 | $installed_plugins = get_plugins(); |
131 | 131 | $addon_obj = new WPInv_Admin_Addons(); |
132 | - if ( $addons = $addon_obj->get_section_data( $current_tab ) ) : |
|
132 | + if ($addons = $addon_obj->get_section_data($current_tab)) : |
|
133 | 133 | //print_r($addons); |
134 | 134 | ?> |
135 | 135 | <ul class="wpi-products"> |
136 | 136 | <?php |
137 | - foreach ( $addons as $addon ) : |
|
138 | - if ( 965 == $addon->info->id ) { |
|
139 | -continue;}// don't show quote add on |
|
137 | + foreach ($addons as $addon) : |
|
138 | + if (965 == $addon->info->id) { |
|
139 | +continue; }// don't show quote add on |
|
140 | 140 | ?> |
141 | 141 | <li class="wpi-product"> |
142 | 142 | <div class="wpi-product-title"> |
143 | 143 | <h3> |
144 | 144 | <?php |
145 | - if ( ! empty( $addon->info->excerpt ) ) { |
|
146 | - wpi_help_tip( $addon->info->excerpt, false, false, true ); |
|
145 | + if (!empty($addon->info->excerpt)) { |
|
146 | + wpi_help_tip($addon->info->excerpt, false, false, true); |
|
147 | 147 | } |
148 | - echo esc_html( $addon->info->title ); |
|
148 | + echo esc_html($addon->info->title); |
|
149 | 149 | ?> |
150 | 150 | </h3> |
151 | 151 | </div> |
152 | 152 | |
153 | 153 | <span class="wpi-product-image"> |
154 | - <?php if ( ! empty( $addon->info->thumbnail ) ) : ?> |
|
155 | - <img src="<?php echo esc_attr( $addon->info->thumbnail ); ?>"/> |
|
154 | + <?php if (!empty($addon->info->thumbnail)) : ?> |
|
155 | + <img src="<?php echo esc_attr($addon->info->thumbnail); ?>"/> |
|
156 | 156 | <?php |
157 | 157 | endif; |
158 | 158 | |
159 | - if ( 'stripe-payment-gateway' == $addon->info->slug ) { |
|
159 | + if ('stripe-payment-gateway' == $addon->info->slug) { |
|
160 | 160 | $addon->info->slug = 'getpaid-stripe-payments'; |
161 | 161 | $addon->info->link = 'https://wordpress.org/plugins/getpaid-stripe-payments/'; |
162 | 162 | } |
163 | 163 | |
164 | - if ( isset( $addon->info->link ) && substr( $addon->info->link, 0, 21 ) === 'https://wordpress.org' ) { |
|
165 | - echo '<a href="' . esc_url( admin_url( '/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug ) ) . '&width=770&height=660&TB_iframe=true" class="thickbox" >'; |
|
166 | - echo '<span class="wpi-product-info">' . esc_html__( 'More info', 'invoicing' ) . '</span>'; |
|
164 | + if (isset($addon->info->link) && substr($addon->info->link, 0, 21) === 'https://wordpress.org') { |
|
165 | + echo '<a href="' . esc_url(admin_url('/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug)) . '&width=770&height=660&TB_iframe=true" class="thickbox" >'; |
|
166 | + echo '<span class="wpi-product-info">' . esc_html__('More info', 'invoicing') . '</span>'; |
|
167 | 167 | echo '</a>'; |
168 | - } elseif ( isset( $addon->info->link ) && ( substr( $addon->info->link, 0, 23 ) === 'https://wpinvoicing.com' || substr( $addon->info->link, 0, 21 ) === 'https://wpgetpaid.com' ) ) { |
|
169 | - if ( defined( 'WP_EASY_UPDATES_ACTIVE' ) ) { |
|
170 | - $url = admin_url( '/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug . '&width=770&height=660&item_id=' . $addon->info->id . '&update_url=https://wpgetpaid.com&TB_iframe=true' ); |
|
168 | + } elseif (isset($addon->info->link) && (substr($addon->info->link, 0, 23) === 'https://wpinvoicing.com' || substr($addon->info->link, 0, 21) === 'https://wpgetpaid.com')) { |
|
169 | + if (defined('WP_EASY_UPDATES_ACTIVE')) { |
|
170 | + $url = admin_url('/plugin-install.php?tab=plugin-information&plugin=' . $addon->info->slug . '&width=770&height=660&item_id=' . $addon->info->id . '&update_url=https://wpgetpaid.com&TB_iframe=true'); |
|
171 | 171 | } else { |
172 | 172 | // if installed show activation link |
173 | - if ( isset( $installed_plugins['wp-easy-updates/external-updates.php'] ) ) { |
|
173 | + if (isset($installed_plugins['wp-easy-updates/external-updates.php'])) { |
|
174 | 174 | $url = '#TB_inline?width=600&height=50&inlineId=wpi-wpeu-required-activation'; |
175 | 175 | } else { |
176 | 176 | $url = '#TB_inline?width=600&height=50&inlineId=wpi-wpeu-required-for-external'; |
177 | 177 | } |
178 | 178 | } |
179 | - echo '<a href="' . esc_url( $url ) . '" class="thickbox">'; |
|
180 | - echo '<span class="wpi-product-info">' . esc_html__( 'More info', 'invoicing' ) . '</span>'; |
|
179 | + echo '<a href="' . esc_url($url) . '" class="thickbox">'; |
|
180 | + echo '<span class="wpi-product-info">' . esc_html__('More info', 'invoicing') . '</span>'; |
|
181 | 181 | echo '</a>'; |
182 | 182 | } |
183 | 183 | |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | |
189 | 189 | <span class="wpi-product-button"> |
190 | 190 | <?php |
191 | - $addon_obj->output_button( $addon ); |
|
191 | + $addon_obj->output_button($addon); |
|
192 | 192 | ?> |
193 | 193 | </span> |
194 | 194 | |
@@ -202,21 +202,21 @@ discard block |
||
202 | 202 | |
203 | 203 | <div class="clearfix" ></div> |
204 | 204 | |
205 | - <?php if ( $current_tab == 'addons' ) { ?> |
|
206 | - <p><?php printf( esc_attr__( 'All of our Addons can be found on wpGetPaid.com here: %sInvoicing Addons%s', 'invoicing' ), '<a href="https://wpinvoicing.com/downloads/category/addons/">','</a>' ); ?></p> |
|
207 | - <?php } if ( $current_tab == 'gateways' ) { ?> |
|
208 | - <p><?php printf( esc_attr__( 'All of our Payment Gateways can be found on wpGetPaid.com here: %sGetPaid Payment Gateways %s', 'invoicing' ), '<a href="https://wpinvoicing.com/downloads/category/gateways/">','</a>' ); ?></p> |
|
205 | + <?php if ($current_tab == 'addons') { ?> |
|
206 | + <p><?php printf(esc_attr__('All of our Addons can be found on wpGetPaid.com here: %sInvoicing Addons%s', 'invoicing'), '<a href="https://wpinvoicing.com/downloads/category/addons/">', '</a>'); ?></p> |
|
207 | + <?php } if ($current_tab == 'gateways') { ?> |
|
208 | + <p><?php printf(esc_attr__('All of our Payment Gateways can be found on wpGetPaid.com here: %sGetPaid Payment Gateways %s', 'invoicing'), '<a href="https://wpinvoicing.com/downloads/category/gateways/">', '</a>'); ?></p> |
|
209 | 209 | <?php } ?> |
210 | 210 | |
211 | - <div id="wpi-wpeu-required-activation" style="display:none;"><span class="wpi-notification "><?php echo wp_kses_post( sprintf( __( "The plugin <a href='https://wpeasyupdates.com/' target='_blank'>WP Easy Updates</a> is required to check for and update some installed plugins/themes, please <a href='%s'>activate</a> it now.", 'invoicing' ), wp_nonce_url( admin_url( 'plugins.php?action=activate&plugin=wp-easy-updates/external-updates.php' ), 'activate-plugin_wp-easy-updates/external-updates.php' ) ) ); ?></span></div> |
|
212 | - <div id="wpi-wpeu-required-for-external" style="display:none;"><span class="wpi-notification "><?php echo wp_kses_post( sprintf( __( "The plugin <a href='https://wpeasyupdates.com/' target='_blank'>WP Easy Updates</a> is required to check for and update some installed plugins/themes, please <a href='%s' onclick='window.open(\"https://wpeasyupdates.com/wp-easy-updates.zip\", \"_blank\");' >download</a> and install it now.", 'invoicing' ), admin_url( 'plugin-install.php?tab=upload&wpeu-install=true' ) ) ); ?></span></div> |
|
211 | + <div id="wpi-wpeu-required-activation" style="display:none;"><span class="wpi-notification "><?php echo wp_kses_post(sprintf(__("The plugin <a href='https://wpeasyupdates.com/' target='_blank'>WP Easy Updates</a> is required to check for and update some installed plugins/themes, please <a href='%s'>activate</a> it now.", 'invoicing'), wp_nonce_url(admin_url('plugins.php?action=activate&plugin=wp-easy-updates/external-updates.php'), 'activate-plugin_wp-easy-updates/external-updates.php'))); ?></span></div> |
|
212 | + <div id="wpi-wpeu-required-for-external" style="display:none;"><span class="wpi-notification "><?php echo wp_kses_post(sprintf(__("The plugin <a href='https://wpeasyupdates.com/' target='_blank'>WP Easy Updates</a> is required to check for and update some installed plugins/themes, please <a href='%s' onclick='window.open(\"https://wpeasyupdates.com/wp-easy-updates.zip\", \"_blank\");' >download</a> and install it now.", 'invoicing'), admin_url('plugin-install.php?tab=upload&wpeu-install=true'))); ?></span></div> |
|
213 | 213 | <div id="wpeu-licence-popup" style="display:none;"> |
214 | 214 | <span class="wpi-notification noti-white"> |
215 | - <h3 class="wpeu-licence-title"><?php esc_html_e( 'Licence key', 'invoicing' ); ?></h3> |
|
216 | - <input class="wpeu-licence-key" type="text" placeholder="<?php esc_attr_e( 'Enter your licence key', 'invoicing' ); ?>"> <button class="button-primary wpeu-licence-popup-button" ><?php esc_html_e( 'Install', 'invoicing' ); ?></button> |
|
215 | + <h3 class="wpeu-licence-title"><?php esc_html_e('Licence key', 'invoicing'); ?></h3> |
|
216 | + <input class="wpeu-licence-key" type="text" placeholder="<?php esc_attr_e('Enter your licence key', 'invoicing'); ?>"> <button class="button-primary wpeu-licence-popup-button" ><?php esc_html_e('Install', 'invoicing'); ?></button> |
|
217 | 217 | <br> |
218 | 218 | <?php |
219 | - printf( esc_html__( '%1$sFind your licence key here%2$s OR %3$sBuy one here%4$s', 'invoicing' ), '<a href="https://wpinvoicing.com/your-account/" target="_blank">', '</a>', '<a class="wpeu-licence-link" href="https://wpinvoicing.com/downloads/category/addons/" target="_blank">', '</a>' ); |
|
219 | + printf(esc_html__('%1$sFind your licence key here%2$s OR %3$sBuy one here%4$s', 'invoicing'), '<a href="https://wpinvoicing.com/your-account/" target="_blank">', '</a>', '<a class="wpeu-licence-link" href="https://wpinvoicing.com/downloads/category/addons/" target="_blank">', '</a>'); |
|
220 | 220 | ?> |
221 | 221 | </span> |
222 | 222 | </div> |
@@ -993,8 +993,8 @@ |
||
993 | 993 | aui_flip_color_scheme_on_scroll(); |
994 | 994 | |
995 | 995 | <?php |
996 | - // FSE tweaks. |
|
997 | - if(!empty($_REQUEST['postType']) && $_REQUEST['postType']=='wp_template'){ ?> |
|
996 | + // FSE tweaks. |
|
997 | + if(!empty($_REQUEST['postType']) && $_REQUEST['postType']=='wp_template'){ ?> |
|
998 | 998 | function aui_fse_set_data_scroll() { |
999 | 999 | console.log('init scroll'); |
1000 | 1000 | let Iframe = document.getElementsByClassName("edit-site-visual-editor__editor-canvas"); |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | function aui_init_flatpickr(){ |
248 | 248 | if ( typeof jQuery.fn.flatpickr === "function" && !$aui_doing_init_flatpickr) { |
249 | 249 | $aui_doing_init_flatpickr = true; |
250 | - <?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?> |
|
250 | + <?php if (!empty($flatpickr_locale)) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?> |
|
251 | 251 | jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr(); |
252 | 252 | } |
253 | 253 | $aui_doing_init_flatpickr = false; |
@@ -994,7 +994,7 @@ discard block |
||
994 | 994 | |
995 | 995 | <?php |
996 | 996 | // FSE tweaks. |
997 | - if(!empty($_REQUEST['postType']) && $_REQUEST['postType']=='wp_template'){ ?> |
|
997 | + if (!empty($_REQUEST['postType']) && $_REQUEST['postType'] == 'wp_template') { ?> |
|
998 | 998 | function aui_fse_set_data_scroll() { |
999 | 999 | console.log('init scroll'); |
1000 | 1000 | let Iframe = document.getElementsByClassName("edit-site-visual-editor__editor-canvas"); |
@@ -13,10 +13,10 @@ discard block |
||
13 | 13 | * |
14 | 14 | * @return array|mixed|string|string[] |
15 | 15 | */ |
16 | -function aui_bs_convert_sd_output( $output, $instance = '', $args = '', $sd = '' ) { |
|
16 | +function aui_bs_convert_sd_output($output, $instance = '', $args = '', $sd = '') { |
|
17 | 17 | global $aui_bs5; |
18 | 18 | |
19 | - if ( $aui_bs5 ) { |
|
19 | + if ($aui_bs5) { |
|
20 | 20 | |
21 | 21 | $convert = array( |
22 | 22 | 'ml-' => 'ms-', |
@@ -57,9 +57,9 @@ discard block |
||
57 | 57 | 'class="close"' => 'class="btn-close"', |
58 | 58 | '<span aria-hidden="true">×</span>' => '', |
59 | 59 | ); |
60 | - $output = str_replace( |
|
61 | - array_keys( $convert ), |
|
62 | - array_values( $convert ), |
|
60 | + $output = str_replace( |
|
61 | + array_keys($convert), |
|
62 | + array_values($convert), |
|
63 | 63 | $output |
64 | 64 | ); |
65 | 65 | } |
@@ -67,4 +67,4 @@ discard block |
||
67 | 67 | return $output; |
68 | 68 | } |
69 | 69 | |
70 | -add_filter( 'wp_super_duper_widget_output', 'aui_bs_convert_sd_output', 10, 4 ); //$output, $instance, $args, $this |
|
70 | +add_filter('wp_super_duper_widget_output', 'aui_bs_convert_sd_output', 10, 4); //$output, $instance, $args, $this |
@@ -14,57 +14,57 @@ |
||
14 | 14 | * @return array|mixed|string|string[] |
15 | 15 | */ |
16 | 16 | function aui_bs_convert_sd_output( $output, $instance = '', $args = '', $sd = '' ) { |
17 | - global $aui_bs5; |
|
17 | + global $aui_bs5; |
|
18 | 18 | |
19 | - if ( $aui_bs5 ) { |
|
19 | + if ( $aui_bs5 ) { |
|
20 | 20 | |
21 | - $convert = array( |
|
22 | - 'ml-' => 'ms-', |
|
23 | - 'mr-' => 'me-', |
|
24 | - 'pl-' => 'ps-', |
|
25 | - 'pr-' => 'pe-', |
|
26 | - ' form-row' => ' row', |
|
27 | - ' embed-responsive-item' => '', |
|
28 | - ' embed-responsive' => ' ratio', |
|
29 | - '-1by1' => '-1x1', |
|
30 | - '-4by3' => '-4x3', |
|
31 | - '-16by9' => '-16x9', |
|
32 | - '-21by9' => '-21x9', |
|
33 | - 'geodir-lightbox-image' => 'aui-lightbox-image', |
|
34 | - ' badge-' => ' text-bg-', |
|
35 | - 'form-group' => 'mb-3', |
|
36 | - 'custom-select' => 'form-select', |
|
37 | - 'float-left' => 'float-start', |
|
38 | - 'float-right' => 'float-end', |
|
39 | - 'text-left' => 'text-start', |
|
40 | - 'text-right' => 'text-end', |
|
41 | - 'border-right' => 'border-end', |
|
42 | - 'border-left' => 'border-start', |
|
43 | - 'font-weight-' => 'fw-', |
|
44 | - 'btn-block' => 'w-100', |
|
45 | - 'rounded-left' => 'rounded-start', |
|
46 | - 'rounded-right' => 'rounded-end', |
|
21 | + $convert = array( |
|
22 | + 'ml-' => 'ms-', |
|
23 | + 'mr-' => 'me-', |
|
24 | + 'pl-' => 'ps-', |
|
25 | + 'pr-' => 'pe-', |
|
26 | + ' form-row' => ' row', |
|
27 | + ' embed-responsive-item' => '', |
|
28 | + ' embed-responsive' => ' ratio', |
|
29 | + '-1by1' => '-1x1', |
|
30 | + '-4by3' => '-4x3', |
|
31 | + '-16by9' => '-16x9', |
|
32 | + '-21by9' => '-21x9', |
|
33 | + 'geodir-lightbox-image' => 'aui-lightbox-image', |
|
34 | + ' badge-' => ' text-bg-', |
|
35 | + 'form-group' => 'mb-3', |
|
36 | + 'custom-select' => 'form-select', |
|
37 | + 'float-left' => 'float-start', |
|
38 | + 'float-right' => 'float-end', |
|
39 | + 'text-left' => 'text-start', |
|
40 | + 'text-right' => 'text-end', |
|
41 | + 'border-right' => 'border-end', |
|
42 | + 'border-left' => 'border-start', |
|
43 | + 'font-weight-' => 'fw-', |
|
44 | + 'btn-block' => 'w-100', |
|
45 | + 'rounded-left' => 'rounded-start', |
|
46 | + 'rounded-right' => 'rounded-end', |
|
47 | 47 | |
48 | 48 | // 'custom-control custom-checkbox' => 'form-check', |
49 | - // data |
|
50 | - ' data-toggle=' => ' data-bs-toggle=', |
|
51 | - 'data-ride=' => 'data-bs-ride=', |
|
52 | - 'data-controlnav=' => 'data-bs-controlnav=', |
|
53 | - 'data-slide=' => 'data-bs-slide=', |
|
54 | - 'data-slide-to=' => 'data-bs-slide-to=', |
|
55 | - 'data-target=' => 'data-bs-target=', |
|
56 | - 'data-dismiss="modal"' => 'data-bs-dismiss="modal"', |
|
57 | - 'class="close"' => 'class="btn-close"', |
|
58 | - '<span aria-hidden="true">×</span>' => '', |
|
59 | - ); |
|
60 | - $output = str_replace( |
|
61 | - array_keys( $convert ), |
|
62 | - array_values( $convert ), |
|
63 | - $output |
|
64 | - ); |
|
65 | - } |
|
49 | + // data |
|
50 | + ' data-toggle=' => ' data-bs-toggle=', |
|
51 | + 'data-ride=' => 'data-bs-ride=', |
|
52 | + 'data-controlnav=' => 'data-bs-controlnav=', |
|
53 | + 'data-slide=' => 'data-bs-slide=', |
|
54 | + 'data-slide-to=' => 'data-bs-slide-to=', |
|
55 | + 'data-target=' => 'data-bs-target=', |
|
56 | + 'data-dismiss="modal"' => 'data-bs-dismiss="modal"', |
|
57 | + 'class="close"' => 'class="btn-close"', |
|
58 | + '<span aria-hidden="true">×</span>' => '', |
|
59 | + ); |
|
60 | + $output = str_replace( |
|
61 | + array_keys( $convert ), |
|
62 | + array_values( $convert ), |
|
63 | + $output |
|
64 | + ); |
|
65 | + } |
|
66 | 66 | |
67 | - return $output; |
|
67 | + return $output; |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | add_filter( 'wp_super_duper_widget_output', 'aui_bs_convert_sd_output', 10, 4 ); //$output, $instance, $args, $this |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
4 | - exit; // Exit if accessed directly |
|
4 | + exit; // Exit if accessed directly |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | /** |
@@ -11,87 +11,87 @@ discard block |
||
11 | 11 | */ |
12 | 12 | class AUI_Component_Alert { |
13 | 13 | |
14 | - /** |
|
15 | - * Build the component. |
|
16 | - * |
|
17 | - * @param array $args |
|
18 | - * |
|
19 | - * @return string The rendered component. |
|
20 | - */ |
|
21 | - public static function get($args = array()){ |
|
22 | - global $aui_bs5; |
|
23 | - $defaults = array( |
|
24 | - 'type' => 'info', |
|
25 | - 'class' => '', |
|
26 | - 'icon' => '', |
|
27 | - 'heading' => '', |
|
28 | - 'content' => '', |
|
29 | - 'footer' => '', |
|
30 | - 'dismissible'=> false, |
|
31 | - 'data' => '', |
|
32 | - ); |
|
33 | - |
|
34 | - /** |
|
35 | - * Parse incoming $args into an array and merge it with $defaults |
|
36 | - */ |
|
37 | - $args = wp_parse_args( $args, $defaults ); |
|
38 | - $output = ''; |
|
39 | - if ( ! empty( $args['content'] ) ) { |
|
40 | - $type = sanitize_html_class( $args['type'] ); |
|
41 | - if($type=='error'){$type='danger';} |
|
42 | - $icon = !empty($args['icon']) ? "<i class='".esc_attr($args['icon'])."'></i>" : ''; |
|
43 | - |
|
44 | - // set default icon |
|
45 | - if(!$icon && $args['icon']!==false && $type){ |
|
46 | - if($type=='danger'){$icon = '<i class="fas fa-exclamation-circle"></i>';} |
|
47 | - elseif($type=='warning'){$icon = '<i class="fas fa-exclamation-triangle"></i>';} |
|
48 | - elseif($type=='success'){$icon = '<i class="fas fa-check-circle"></i>';} |
|
49 | - elseif($type=='info'){$icon = '<i class="fas fa-info-circle"></i>';} |
|
50 | - } |
|
51 | - |
|
52 | - $data = ''; |
|
53 | - $class = !empty($args['class']) ? esc_attr($args['class']) : ''; |
|
54 | - if($args['dismissible']){$class .= " alert-dismissible fade show";} |
|
55 | - |
|
56 | - // open |
|
57 | - $output .= '<div class="alert alert-' . $type . ' '.$class.'" role="alert" '.$data.'>'; |
|
58 | - |
|
59 | - // heading |
|
60 | - if ( ! empty( $args['heading'] ) ) { |
|
61 | - $output .= '<h4 class="alert-heading">' . $args['heading'] . '</h4>'; |
|
62 | - } |
|
63 | - |
|
64 | - // icon |
|
65 | - if ( ! empty( $icon) ) { |
|
66 | - $output .= $icon." "; |
|
67 | - } |
|
68 | - |
|
69 | - // content |
|
70 | - $output .= $args['content']; |
|
71 | - |
|
72 | - // dismissible |
|
73 | - if($args['dismissible']){ |
|
74 | - |
|
75 | - if ( $aui_bs5 ) { |
|
76 | - $output .= '<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>'; |
|
77 | - }else{ |
|
78 | - $output .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close">'; |
|
79 | - $output .= '<span aria-hidden="true">×</span>'; |
|
80 | - $output .= '</button>'; |
|
81 | - } |
|
82 | - } |
|
83 | - |
|
84 | - // footer |
|
85 | - if ( ! empty( $args['footer'] ) ) { |
|
86 | - $output .= '<hr>'; |
|
87 | - $output .= '<p class="mb-0">' . $args['footer'] . '</p>'; |
|
88 | - } |
|
89 | - |
|
90 | - // close |
|
91 | - $output .= '</div>'; |
|
92 | - } |
|
93 | - |
|
94 | - return $output; |
|
95 | - } |
|
14 | + /** |
|
15 | + * Build the component. |
|
16 | + * |
|
17 | + * @param array $args |
|
18 | + * |
|
19 | + * @return string The rendered component. |
|
20 | + */ |
|
21 | + public static function get($args = array()){ |
|
22 | + global $aui_bs5; |
|
23 | + $defaults = array( |
|
24 | + 'type' => 'info', |
|
25 | + 'class' => '', |
|
26 | + 'icon' => '', |
|
27 | + 'heading' => '', |
|
28 | + 'content' => '', |
|
29 | + 'footer' => '', |
|
30 | + 'dismissible'=> false, |
|
31 | + 'data' => '', |
|
32 | + ); |
|
33 | + |
|
34 | + /** |
|
35 | + * Parse incoming $args into an array and merge it with $defaults |
|
36 | + */ |
|
37 | + $args = wp_parse_args( $args, $defaults ); |
|
38 | + $output = ''; |
|
39 | + if ( ! empty( $args['content'] ) ) { |
|
40 | + $type = sanitize_html_class( $args['type'] ); |
|
41 | + if($type=='error'){$type='danger';} |
|
42 | + $icon = !empty($args['icon']) ? "<i class='".esc_attr($args['icon'])."'></i>" : ''; |
|
43 | + |
|
44 | + // set default icon |
|
45 | + if(!$icon && $args['icon']!==false && $type){ |
|
46 | + if($type=='danger'){$icon = '<i class="fas fa-exclamation-circle"></i>';} |
|
47 | + elseif($type=='warning'){$icon = '<i class="fas fa-exclamation-triangle"></i>';} |
|
48 | + elseif($type=='success'){$icon = '<i class="fas fa-check-circle"></i>';} |
|
49 | + elseif($type=='info'){$icon = '<i class="fas fa-info-circle"></i>';} |
|
50 | + } |
|
51 | + |
|
52 | + $data = ''; |
|
53 | + $class = !empty($args['class']) ? esc_attr($args['class']) : ''; |
|
54 | + if($args['dismissible']){$class .= " alert-dismissible fade show";} |
|
55 | + |
|
56 | + // open |
|
57 | + $output .= '<div class="alert alert-' . $type . ' '.$class.'" role="alert" '.$data.'>'; |
|
58 | + |
|
59 | + // heading |
|
60 | + if ( ! empty( $args['heading'] ) ) { |
|
61 | + $output .= '<h4 class="alert-heading">' . $args['heading'] . '</h4>'; |
|
62 | + } |
|
63 | + |
|
64 | + // icon |
|
65 | + if ( ! empty( $icon) ) { |
|
66 | + $output .= $icon." "; |
|
67 | + } |
|
68 | + |
|
69 | + // content |
|
70 | + $output .= $args['content']; |
|
71 | + |
|
72 | + // dismissible |
|
73 | + if($args['dismissible']){ |
|
74 | + |
|
75 | + if ( $aui_bs5 ) { |
|
76 | + $output .= '<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>'; |
|
77 | + }else{ |
|
78 | + $output .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close">'; |
|
79 | + $output .= '<span aria-hidden="true">×</span>'; |
|
80 | + $output .= '</button>'; |
|
81 | + } |
|
82 | + } |
|
83 | + |
|
84 | + // footer |
|
85 | + if ( ! empty( $args['footer'] ) ) { |
|
86 | + $output .= '<hr>'; |
|
87 | + $output .= '<p class="mb-0">' . $args['footer'] . '</p>'; |
|
88 | + } |
|
89 | + |
|
90 | + // close |
|
91 | + $output .= '</div>'; |
|
92 | + } |
|
93 | + |
|
94 | + return $output; |
|
95 | + } |
|
96 | 96 | |
97 | 97 | } |
98 | 98 | \ No newline at end of file |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if (!defined('ABSPATH')) { |
|
4 | 4 | exit; // Exit if accessed directly |
5 | 5 | } |
6 | 6 | |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @return string The rendered component. |
20 | 20 | */ |
21 | - public static function get($args = array()){ |
|
21 | + public static function get($args = array()) { |
|
22 | 22 | global $aui_bs5; |
23 | 23 | $defaults = array( |
24 | 24 | 'type' => 'info', |
@@ -34,47 +34,47 @@ discard block |
||
34 | 34 | /** |
35 | 35 | * Parse incoming $args into an array and merge it with $defaults |
36 | 36 | */ |
37 | - $args = wp_parse_args( $args, $defaults ); |
|
37 | + $args = wp_parse_args($args, $defaults); |
|
38 | 38 | $output = ''; |
39 | - if ( ! empty( $args['content'] ) ) { |
|
40 | - $type = sanitize_html_class( $args['type'] ); |
|
41 | - if($type=='error'){$type='danger';} |
|
42 | - $icon = !empty($args['icon']) ? "<i class='".esc_attr($args['icon'])."'></i>" : ''; |
|
39 | + if (!empty($args['content'])) { |
|
40 | + $type = sanitize_html_class($args['type']); |
|
41 | + if ($type == 'error') {$type = 'danger'; } |
|
42 | + $icon = !empty($args['icon']) ? "<i class='" . esc_attr($args['icon']) . "'></i>" : ''; |
|
43 | 43 | |
44 | 44 | // set default icon |
45 | - if(!$icon && $args['icon']!==false && $type){ |
|
46 | - if($type=='danger'){$icon = '<i class="fas fa-exclamation-circle"></i>';} |
|
47 | - elseif($type=='warning'){$icon = '<i class="fas fa-exclamation-triangle"></i>';} |
|
48 | - elseif($type=='success'){$icon = '<i class="fas fa-check-circle"></i>';} |
|
49 | - elseif($type=='info'){$icon = '<i class="fas fa-info-circle"></i>';} |
|
45 | + if (!$icon && $args['icon'] !== false && $type) { |
|
46 | + if ($type == 'danger') {$icon = '<i class="fas fa-exclamation-circle"></i>'; } |
|
47 | + elseif ($type == 'warning') {$icon = '<i class="fas fa-exclamation-triangle"></i>'; } |
|
48 | + elseif ($type == 'success') {$icon = '<i class="fas fa-check-circle"></i>'; } |
|
49 | + elseif ($type == 'info') {$icon = '<i class="fas fa-info-circle"></i>'; } |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | $data = ''; |
53 | 53 | $class = !empty($args['class']) ? esc_attr($args['class']) : ''; |
54 | - if($args['dismissible']){$class .= " alert-dismissible fade show";} |
|
54 | + if ($args['dismissible']) {$class .= " alert-dismissible fade show"; } |
|
55 | 55 | |
56 | 56 | // open |
57 | - $output .= '<div class="alert alert-' . $type . ' '.$class.'" role="alert" '.$data.'>'; |
|
57 | + $output .= '<div class="alert alert-' . $type . ' ' . $class . '" role="alert" ' . $data . '>'; |
|
58 | 58 | |
59 | 59 | // heading |
60 | - if ( ! empty( $args['heading'] ) ) { |
|
60 | + if (!empty($args['heading'])) { |
|
61 | 61 | $output .= '<h4 class="alert-heading">' . $args['heading'] . '</h4>'; |
62 | 62 | } |
63 | 63 | |
64 | 64 | // icon |
65 | - if ( ! empty( $icon) ) { |
|
66 | - $output .= $icon." "; |
|
65 | + if (!empty($icon)) { |
|
66 | + $output .= $icon . " "; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | // content |
70 | 70 | $output .= $args['content']; |
71 | 71 | |
72 | 72 | // dismissible |
73 | - if($args['dismissible']){ |
|
73 | + if ($args['dismissible']) { |
|
74 | 74 | |
75 | - if ( $aui_bs5 ) { |
|
75 | + if ($aui_bs5) { |
|
76 | 76 | $output .= '<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>'; |
77 | - }else{ |
|
77 | + } else { |
|
78 | 78 | $output .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close">'; |
79 | 79 | $output .= '<span aria-hidden="true">×</span>'; |
80 | 80 | $output .= '</button>'; |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | } |
83 | 83 | |
84 | 84 | // footer |
85 | - if ( ! empty( $args['footer'] ) ) { |
|
85 | + if (!empty($args['footer'])) { |
|
86 | 86 | $output .= '<hr>'; |
87 | 87 | $output .= '<p class="mb-0">' . $args['footer'] . '</p>'; |
88 | 88 | } |
@@ -43,10 +43,7 @@ discard block |
||
43 | 43 | |
44 | 44 | // set default icon |
45 | 45 | if(!$icon && $args['icon']!==false && $type){ |
46 | - if($type=='danger'){$icon = '<i class="fas fa-exclamation-circle"></i>';} |
|
47 | - elseif($type=='warning'){$icon = '<i class="fas fa-exclamation-triangle"></i>';} |
|
48 | - elseif($type=='success'){$icon = '<i class="fas fa-check-circle"></i>';} |
|
49 | - elseif($type=='info'){$icon = '<i class="fas fa-info-circle"></i>';} |
|
46 | + if($type=='danger'){$icon = '<i class="fas fa-exclamation-circle"></i>';} elseif($type=='warning'){$icon = '<i class="fas fa-exclamation-triangle"></i>';} elseif($type=='success'){$icon = '<i class="fas fa-check-circle"></i>';} elseif($type=='info'){$icon = '<i class="fas fa-info-circle"></i>';} |
|
50 | 47 | } |
51 | 48 | |
52 | 49 | $data = ''; |
@@ -74,7 +71,7 @@ discard block |
||
74 | 71 | |
75 | 72 | if ( $aui_bs5 ) { |
76 | 73 | $output .= '<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>'; |
77 | - }else{ |
|
74 | + } else{ |
|
78 | 75 | $output .= '<button type="button" class="close" data-dismiss="alert" aria-label="Close">'; |
79 | 76 | $output .= '<span aria-hidden="true">×</span>'; |
80 | 77 | $output .= '</button>'; |