@@ -13,464 +13,464 @@ discard block |
||
13 | 13 | */ |
14 | 14 | abstract class GetPaid_Payment_Gateway { |
15 | 15 | |
16 | - /** |
|
17 | - * Set if the place checkout button should be renamed on selection. |
|
18 | - * |
|
19 | - * @var string |
|
20 | - */ |
|
21 | - public $checkout_button_text; |
|
22 | - |
|
23 | - /** |
|
24 | - * Boolean whether the method is enabled. |
|
25 | - * |
|
26 | - * @var bool |
|
27 | - */ |
|
28 | - public $enabled = true; |
|
29 | - |
|
30 | - /** |
|
31 | - * Payment method id. |
|
32 | - * |
|
33 | - * @var string |
|
34 | - */ |
|
35 | - public $id; |
|
36 | - |
|
37 | - /** |
|
38 | - * Payment method order. |
|
39 | - * |
|
40 | - * @var int |
|
41 | - */ |
|
42 | - public $order = 10; |
|
43 | - |
|
44 | - /** |
|
45 | - * Payment method title for the frontend. |
|
46 | - * |
|
47 | - * @var string |
|
48 | - */ |
|
49 | - public $title; |
|
50 | - |
|
51 | - /** |
|
52 | - * Payment method description for the frontend. |
|
53 | - * |
|
54 | - * @var string |
|
55 | - */ |
|
56 | - public $description; |
|
57 | - |
|
58 | - /** |
|
59 | - * Gateway title. |
|
60 | - * |
|
61 | - * @var string |
|
62 | - */ |
|
63 | - public $method_title = ''; |
|
64 | - |
|
65 | - /** |
|
66 | - * Gateway description. |
|
67 | - * |
|
68 | - * @var string |
|
69 | - */ |
|
70 | - public $method_description = ''; |
|
71 | - |
|
72 | - /** |
|
73 | - * Countries this gateway is allowed for. |
|
74 | - * |
|
75 | - * @var array |
|
76 | - */ |
|
77 | - public $countries; |
|
78 | - |
|
79 | - /** |
|
80 | - * Currencies this gateway is allowed for. |
|
81 | - * |
|
82 | - * @var array |
|
83 | - */ |
|
84 | - public $currencies; |
|
85 | - |
|
86 | - /** |
|
87 | - * Currencies this gateway is not allowed for. |
|
88 | - * |
|
89 | - * @var array |
|
90 | - */ |
|
91 | - public $exclude_currencies; |
|
92 | - |
|
93 | - /** |
|
94 | - * Maximum transaction amount, zero does not define a maximum. |
|
95 | - * |
|
96 | - * @var int |
|
97 | - */ |
|
98 | - public $max_amount = 0; |
|
99 | - |
|
100 | - /** |
|
101 | - * Optional URL to view a transaction. |
|
102 | - * |
|
103 | - * @var string |
|
104 | - */ |
|
105 | - public $view_transaction_url = ''; |
|
106 | - |
|
107 | - /** |
|
108 | - * Optional URL to view a subscription. |
|
109 | - * |
|
110 | - * @var string |
|
111 | - */ |
|
112 | - public $view_subscription_url = ''; |
|
113 | - |
|
114 | - /** |
|
115 | - * Optional label to show for "new payment method" in the payment |
|
116 | - * method/token selection radio selection. |
|
117 | - * |
|
118 | - * @var string |
|
119 | - */ |
|
120 | - public $new_method_label = ''; |
|
121 | - |
|
122 | - /** |
|
123 | - * Contains a user's saved tokens for this gateway. |
|
124 | - * |
|
125 | - * @var array |
|
126 | - */ |
|
127 | - protected $tokens = array(); |
|
128 | - |
|
129 | - /** |
|
130 | - * An array of features that this gateway supports. |
|
131 | - * |
|
132 | - * @var array |
|
133 | - */ |
|
134 | - protected $supports = array(); |
|
135 | - |
|
136 | - /** |
|
137 | - * Class constructor. |
|
138 | - */ |
|
139 | - public function __construct() { |
|
140 | - |
|
141 | - do_action( 'getpaid_before_init_payment_gateway_' . $this->id, $this ); |
|
142 | - |
|
143 | - // Register gateway. |
|
144 | - add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) ); |
|
145 | - |
|
146 | - $this->enabled = wpinv_is_gateway_active( $this->id ); |
|
147 | - |
|
148 | - // Add support for various features. |
|
149 | - foreach ( $this->supports as $feature ) { |
|
150 | - add_filter( "wpinv_{$this->id}_support_{$feature}", '__return_true' ); |
|
151 | - add_filter( "getpaid_{$this->id}_support_{$feature}", '__return_true' ); |
|
152 | - add_filter( "getpaid_{$this->id}_supports_{$feature}", '__return_true' ); |
|
153 | - } |
|
154 | - |
|
155 | - // Invoice addons. |
|
156 | - if ( $this->supports( 'addons' ) ) { |
|
157 | - add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 ); |
|
158 | - } |
|
159 | - |
|
160 | - // Gateway settings. |
|
161 | - add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) ); |
|
162 | - |
|
163 | - // Gateway checkout fiellds. |
|
164 | - add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 ); |
|
165 | - |
|
166 | - // Process payment. |
|
167 | - add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 ); |
|
168 | - |
|
169 | - // Change the checkout button text. |
|
170 | - if ( ! empty( $this->checkout_button_text ) ) { |
|
171 | - add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) ); |
|
172 | - } |
|
173 | - |
|
174 | - // Check if a gateway is valid for a given currency. |
|
175 | - add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 ); |
|
176 | - |
|
177 | - // Generate the transaction url. |
|
178 | - add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 ); |
|
179 | - |
|
180 | - // Generate the subscription url. |
|
181 | - add_filter( 'getpaid_remote_subscription_profile_url', array( $this, 'generate_subscription_url' ), 10, 2 ); |
|
182 | - |
|
183 | - // Confirm payments. |
|
184 | - add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 ); |
|
185 | - |
|
186 | - // Verify IPNs. |
|
187 | - add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) ); |
|
188 | - |
|
189 | - } |
|
190 | - |
|
191 | - /** |
|
192 | - * Checks if this gateway is a given gateway. |
|
193 | - * |
|
194 | - * @since 1.0.19 |
|
195 | - * @return bool |
|
196 | - */ |
|
197 | - public function is( $gateway ) { |
|
198 | - return $gateway == $this->id; |
|
199 | - } |
|
200 | - |
|
201 | - /** |
|
202 | - * Returns a users saved tokens for this gateway. |
|
203 | - * |
|
204 | - * @since 1.0.19 |
|
205 | - * @return array |
|
206 | - */ |
|
207 | - public function get_tokens( $sandbox = null ) { |
|
208 | - |
|
209 | - if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) { |
|
210 | - $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true ); |
|
211 | - |
|
212 | - if ( is_array( $tokens ) ) { |
|
213 | - $this->tokens = $tokens; |
|
214 | - } |
|
16 | + /** |
|
17 | + * Set if the place checkout button should be renamed on selection. |
|
18 | + * |
|
19 | + * @var string |
|
20 | + */ |
|
21 | + public $checkout_button_text; |
|
22 | + |
|
23 | + /** |
|
24 | + * Boolean whether the method is enabled. |
|
25 | + * |
|
26 | + * @var bool |
|
27 | + */ |
|
28 | + public $enabled = true; |
|
29 | + |
|
30 | + /** |
|
31 | + * Payment method id. |
|
32 | + * |
|
33 | + * @var string |
|
34 | + */ |
|
35 | + public $id; |
|
36 | + |
|
37 | + /** |
|
38 | + * Payment method order. |
|
39 | + * |
|
40 | + * @var int |
|
41 | + */ |
|
42 | + public $order = 10; |
|
43 | + |
|
44 | + /** |
|
45 | + * Payment method title for the frontend. |
|
46 | + * |
|
47 | + * @var string |
|
48 | + */ |
|
49 | + public $title; |
|
50 | + |
|
51 | + /** |
|
52 | + * Payment method description for the frontend. |
|
53 | + * |
|
54 | + * @var string |
|
55 | + */ |
|
56 | + public $description; |
|
57 | + |
|
58 | + /** |
|
59 | + * Gateway title. |
|
60 | + * |
|
61 | + * @var string |
|
62 | + */ |
|
63 | + public $method_title = ''; |
|
64 | + |
|
65 | + /** |
|
66 | + * Gateway description. |
|
67 | + * |
|
68 | + * @var string |
|
69 | + */ |
|
70 | + public $method_description = ''; |
|
71 | + |
|
72 | + /** |
|
73 | + * Countries this gateway is allowed for. |
|
74 | + * |
|
75 | + * @var array |
|
76 | + */ |
|
77 | + public $countries; |
|
78 | + |
|
79 | + /** |
|
80 | + * Currencies this gateway is allowed for. |
|
81 | + * |
|
82 | + * @var array |
|
83 | + */ |
|
84 | + public $currencies; |
|
85 | + |
|
86 | + /** |
|
87 | + * Currencies this gateway is not allowed for. |
|
88 | + * |
|
89 | + * @var array |
|
90 | + */ |
|
91 | + public $exclude_currencies; |
|
92 | + |
|
93 | + /** |
|
94 | + * Maximum transaction amount, zero does not define a maximum. |
|
95 | + * |
|
96 | + * @var int |
|
97 | + */ |
|
98 | + public $max_amount = 0; |
|
99 | + |
|
100 | + /** |
|
101 | + * Optional URL to view a transaction. |
|
102 | + * |
|
103 | + * @var string |
|
104 | + */ |
|
105 | + public $view_transaction_url = ''; |
|
106 | + |
|
107 | + /** |
|
108 | + * Optional URL to view a subscription. |
|
109 | + * |
|
110 | + * @var string |
|
111 | + */ |
|
112 | + public $view_subscription_url = ''; |
|
113 | + |
|
114 | + /** |
|
115 | + * Optional label to show for "new payment method" in the payment |
|
116 | + * method/token selection radio selection. |
|
117 | + * |
|
118 | + * @var string |
|
119 | + */ |
|
120 | + public $new_method_label = ''; |
|
121 | + |
|
122 | + /** |
|
123 | + * Contains a user's saved tokens for this gateway. |
|
124 | + * |
|
125 | + * @var array |
|
126 | + */ |
|
127 | + protected $tokens = array(); |
|
128 | + |
|
129 | + /** |
|
130 | + * An array of features that this gateway supports. |
|
131 | + * |
|
132 | + * @var array |
|
133 | + */ |
|
134 | + protected $supports = array(); |
|
135 | + |
|
136 | + /** |
|
137 | + * Class constructor. |
|
138 | + */ |
|
139 | + public function __construct() { |
|
140 | + |
|
141 | + do_action( 'getpaid_before_init_payment_gateway_' . $this->id, $this ); |
|
142 | + |
|
143 | + // Register gateway. |
|
144 | + add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) ); |
|
145 | + |
|
146 | + $this->enabled = wpinv_is_gateway_active( $this->id ); |
|
147 | + |
|
148 | + // Add support for various features. |
|
149 | + foreach ( $this->supports as $feature ) { |
|
150 | + add_filter( "wpinv_{$this->id}_support_{$feature}", '__return_true' ); |
|
151 | + add_filter( "getpaid_{$this->id}_support_{$feature}", '__return_true' ); |
|
152 | + add_filter( "getpaid_{$this->id}_supports_{$feature}", '__return_true' ); |
|
153 | + } |
|
154 | + |
|
155 | + // Invoice addons. |
|
156 | + if ( $this->supports( 'addons' ) ) { |
|
157 | + add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 ); |
|
158 | + } |
|
159 | + |
|
160 | + // Gateway settings. |
|
161 | + add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) ); |
|
162 | + |
|
163 | + // Gateway checkout fiellds. |
|
164 | + add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 ); |
|
165 | + |
|
166 | + // Process payment. |
|
167 | + add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 ); |
|
168 | + |
|
169 | + // Change the checkout button text. |
|
170 | + if ( ! empty( $this->checkout_button_text ) ) { |
|
171 | + add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) ); |
|
172 | + } |
|
173 | + |
|
174 | + // Check if a gateway is valid for a given currency. |
|
175 | + add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 ); |
|
176 | + |
|
177 | + // Generate the transaction url. |
|
178 | + add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 ); |
|
179 | + |
|
180 | + // Generate the subscription url. |
|
181 | + add_filter( 'getpaid_remote_subscription_profile_url', array( $this, 'generate_subscription_url' ), 10, 2 ); |
|
182 | + |
|
183 | + // Confirm payments. |
|
184 | + add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 ); |
|
185 | + |
|
186 | + // Verify IPNs. |
|
187 | + add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) ); |
|
188 | + |
|
189 | + } |
|
190 | + |
|
191 | + /** |
|
192 | + * Checks if this gateway is a given gateway. |
|
193 | + * |
|
194 | + * @since 1.0.19 |
|
195 | + * @return bool |
|
196 | + */ |
|
197 | + public function is( $gateway ) { |
|
198 | + return $gateway == $this->id; |
|
199 | + } |
|
200 | + |
|
201 | + /** |
|
202 | + * Returns a users saved tokens for this gateway. |
|
203 | + * |
|
204 | + * @since 1.0.19 |
|
205 | + * @return array |
|
206 | + */ |
|
207 | + public function get_tokens( $sandbox = null ) { |
|
208 | + |
|
209 | + if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) { |
|
210 | + $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true ); |
|
211 | + |
|
212 | + if ( is_array( $tokens ) ) { |
|
213 | + $this->tokens = $tokens; |
|
214 | + } |
|
215 | 215 | } |
216 | 216 | |
217 | - if ( ! is_bool( $sandbox ) ) { |
|
218 | - return $this->tokens; |
|
219 | - } |
|
220 | - |
|
221 | - // Filter tokens. |
|
222 | - $args = array( 'type' => $sandbox ? 'sandbox' : 'live' ); |
|
223 | - return wp_list_filter( $this->tokens, $args ); |
|
224 | - |
|
225 | - } |
|
226 | - |
|
227 | - /** |
|
228 | - * Saves a token for this gateway. |
|
229 | - * |
|
230 | - * @since 1.0.19 |
|
231 | - */ |
|
232 | - public function save_token( $token ) { |
|
233 | - |
|
234 | - $tokens = $this->get_tokens(); |
|
235 | - $tokens[] = $token; |
|
236 | - |
|
237 | - update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens ); |
|
238 | - |
|
239 | - $this->tokens = $tokens; |
|
240 | - |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * Return the title for admin screens. |
|
245 | - * |
|
246 | - * @return string |
|
247 | - */ |
|
248 | - public function get_method_title() { |
|
249 | - return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this ); |
|
250 | - } |
|
251 | - |
|
252 | - /** |
|
253 | - * Return the description for admin screens. |
|
254 | - * |
|
255 | - * @return string |
|
256 | - */ |
|
257 | - public function get_method_description() { |
|
258 | - return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this ); |
|
259 | - } |
|
260 | - |
|
261 | - /** |
|
262 | - * Get the success url. |
|
263 | - * |
|
264 | - * @param WPInv_Invoice $invoice Invoice object. |
|
265 | - * @return string |
|
266 | - */ |
|
267 | - public function get_return_url( $invoice ) { |
|
268 | - |
|
269 | - // Payment success url |
|
270 | - $return_url = add_query_arg( |
|
271 | - array( |
|
272 | - 'payment-confirm' => $this->id, |
|
273 | - 'invoice_key' => $invoice->get_key(), |
|
274 | - 'utm_nooverride' => 1, |
|
275 | - ), |
|
276 | - wpinv_get_success_page_uri() |
|
277 | - ); |
|
278 | - |
|
279 | - return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this ); |
|
280 | - } |
|
281 | - |
|
282 | - /** |
|
283 | - * Confirms payments when rendering the success page. |
|
284 | - * |
|
285 | - * @param string $content Success page content. |
|
286 | - * @return string |
|
287 | - */ |
|
288 | - public function confirm_payment( $content ) { |
|
289 | - |
|
290 | - // Retrieve the invoice. |
|
291 | - $invoice_id = getpaid_get_current_invoice_id(); |
|
292 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
293 | - |
|
294 | - // Ensure that it exists and that it is pending payment. |
|
295 | - if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) { |
|
296 | - return $content; |
|
297 | - } |
|
298 | - |
|
299 | - // Can the user view this invoice?? |
|
300 | - if ( ! wpinv_user_can_view_invoice( $invoice ) ) { |
|
301 | - return $content; |
|
302 | - } |
|
303 | - |
|
304 | - // Show payment processing indicator. |
|
305 | - return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) ); |
|
306 | - } |
|
307 | - |
|
308 | - /** |
|
309 | - * Processes ipns and marks payments as complete. |
|
310 | - * |
|
311 | - * @return void |
|
312 | - */ |
|
313 | - public function verify_ipn() {} |
|
314 | - |
|
315 | - /** |
|
316 | - * Processes invoice addons. |
|
317 | - * |
|
318 | - * @param WPInv_Invoice $invoice |
|
319 | - * @param GetPaid_Form_Item[] $items |
|
320 | - * @return WPInv_Invoice |
|
321 | - */ |
|
322 | - public function process_addons( $invoice, $items ) { |
|
323 | - |
|
324 | - } |
|
325 | - |
|
326 | - /** |
|
327 | - * Get a link to the transaction on the 3rd party gateway site (if applicable). |
|
328 | - * |
|
329 | - * @param string $transaction_url transaction url. |
|
330 | - * @param WPInv_Invoice $invoice Invoice object. |
|
331 | - * @return string transaction URL, or empty string. |
|
332 | - */ |
|
333 | - public function filter_transaction_url( $transaction_url, $invoice ) { |
|
334 | - |
|
335 | - $transaction_id = $invoice->get_transaction_id(); |
|
336 | - |
|
337 | - if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) { |
|
338 | - $transaction_url = sprintf( $this->view_transaction_url, $transaction_id ); |
|
339 | - $replace = $this->is_sandbox( $invoice ) ? 'sandbox' : ''; |
|
340 | - $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url ); |
|
341 | - } |
|
342 | - |
|
343 | - return $transaction_url; |
|
344 | - } |
|
345 | - |
|
346 | - /** |
|
347 | - * Get a link to the subscription on the 3rd party gateway site (if applicable). |
|
348 | - * |
|
349 | - * @param string $subscription_url transaction url. |
|
350 | - * @param WPInv_Subscription $subscription Subscription objectt. |
|
351 | - * @return string subscription URL, or empty string. |
|
352 | - */ |
|
353 | - public function generate_subscription_url( $subscription_url, $subscription ) { |
|
354 | - |
|
355 | - $profile_id = $subscription->get_profile_id(); |
|
356 | - |
|
357 | - if ( $this->id == $subscription->get_gateway() && ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) { |
|
358 | - |
|
359 | - $subscription_url = sprintf( $this->view_subscription_url, $profile_id ); |
|
360 | - $replace = $this->is_sandbox( $subscription->get_parent_invoice() ) ? 'sandbox' : ''; |
|
361 | - $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url ); |
|
362 | - |
|
363 | - } |
|
364 | - |
|
365 | - return $subscription_url; |
|
366 | - } |
|
367 | - |
|
368 | - /** |
|
369 | - * Check if the gateway is available for use. |
|
370 | - * |
|
371 | - * @return bool |
|
372 | - */ |
|
373 | - public function is_available() { |
|
374 | - return ! empty( $this->enabled ); |
|
375 | - } |
|
376 | - |
|
377 | - /** |
|
378 | - * Return the gateway's title. |
|
379 | - * |
|
380 | - * @return string |
|
381 | - */ |
|
382 | - public function get_title() { |
|
383 | - return apply_filters( 'getpaid_gateway_title', $this->title, $this ); |
|
384 | - } |
|
385 | - |
|
386 | - /** |
|
387 | - * Return the gateway's description. |
|
388 | - * |
|
389 | - * @return string |
|
390 | - */ |
|
391 | - public function get_description() { |
|
392 | - return apply_filters( 'getpaid_gateway_description', $this->description, $this ); |
|
393 | - } |
|
394 | - |
|
395 | - /** |
|
396 | - * Process Payment. |
|
397 | - * |
|
398 | - * |
|
399 | - * @param WPInv_Invoice $invoice Invoice. |
|
400 | - * @param array $submission_data Posted checkout fields. |
|
401 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
402 | - * @return void |
|
403 | - */ |
|
404 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
405 | - // Process the payment then either redirect to the success page or the gateway. |
|
406 | - do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission ); |
|
407 | - } |
|
408 | - |
|
409 | - /** |
|
410 | - * Process refund. |
|
411 | - * |
|
412 | - * If the gateway declares 'refunds' support, this will allow it to refund. |
|
413 | - * a passed in amount. |
|
414 | - * |
|
415 | - * @param WPInv_Invoice $invoice Invoice. |
|
416 | - * @param float $amount Refund amount. |
|
417 | - * @param string $reason Refund reason. |
|
418 | - * @return WP_Error|bool True or false based on success, or a WP_Error object. |
|
419 | - */ |
|
420 | - public function process_refund( $invoice, $amount = null, $reason = '' ) { |
|
421 | - return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason ); |
|
422 | - } |
|
423 | - |
|
424 | - /** |
|
425 | - * Displays the payment fields, credit cards etc. |
|
426 | - * |
|
427 | - * @param int $invoice_id 0 or invoice id. |
|
428 | - * @param GetPaid_Payment_Form $form Current payment form. |
|
429 | - */ |
|
430 | - public function payment_fields( $invoice_id, $form ) { |
|
431 | - do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form ); |
|
432 | - } |
|
433 | - |
|
434 | - /** |
|
435 | - * Filters the gateway settings. |
|
436 | - * |
|
437 | - * @param array $admin_settings |
|
438 | - */ |
|
439 | - public function admin_settings( $admin_settings ) { |
|
440 | - return $admin_settings; |
|
441 | - } |
|
442 | - |
|
443 | - /** |
|
444 | - * Retrieves the value of a gateway setting. |
|
445 | - * |
|
446 | - * @param string $option |
|
447 | - */ |
|
448 | - public function get_option( $option, $default = false ) { |
|
449 | - return wpinv_get_option( $this->id . '_' . $option, $default ); |
|
450 | - } |
|
451 | - |
|
452 | - /** |
|
453 | - * Check if a gateway supports a given feature. |
|
454 | - * |
|
455 | - * Gateways should override this to declare support (or lack of support) for a feature. |
|
456 | - * For backward compatibility, gateways support 'products' by default, but nothing else. |
|
457 | - * |
|
458 | - * @param string $feature string The name of a feature to test support for. |
|
459 | - * @return bool True if the gateway supports the feature, false otherwise. |
|
460 | - * @since 1.0.19 |
|
461 | - */ |
|
462 | - public function supports( $feature ) { |
|
463 | - return getpaid_payment_gateway_supports( $this->id, $feature ); |
|
464 | - } |
|
465 | - |
|
466 | - /** |
|
467 | - * Returns the credit card form html. |
|
468 | - * |
|
469 | - * @param bool $save whether or not to display the save button. |
|
470 | - */ |
|
217 | + if ( ! is_bool( $sandbox ) ) { |
|
218 | + return $this->tokens; |
|
219 | + } |
|
220 | + |
|
221 | + // Filter tokens. |
|
222 | + $args = array( 'type' => $sandbox ? 'sandbox' : 'live' ); |
|
223 | + return wp_list_filter( $this->tokens, $args ); |
|
224 | + |
|
225 | + } |
|
226 | + |
|
227 | + /** |
|
228 | + * Saves a token for this gateway. |
|
229 | + * |
|
230 | + * @since 1.0.19 |
|
231 | + */ |
|
232 | + public function save_token( $token ) { |
|
233 | + |
|
234 | + $tokens = $this->get_tokens(); |
|
235 | + $tokens[] = $token; |
|
236 | + |
|
237 | + update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens ); |
|
238 | + |
|
239 | + $this->tokens = $tokens; |
|
240 | + |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * Return the title for admin screens. |
|
245 | + * |
|
246 | + * @return string |
|
247 | + */ |
|
248 | + public function get_method_title() { |
|
249 | + return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this ); |
|
250 | + } |
|
251 | + |
|
252 | + /** |
|
253 | + * Return the description for admin screens. |
|
254 | + * |
|
255 | + * @return string |
|
256 | + */ |
|
257 | + public function get_method_description() { |
|
258 | + return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this ); |
|
259 | + } |
|
260 | + |
|
261 | + /** |
|
262 | + * Get the success url. |
|
263 | + * |
|
264 | + * @param WPInv_Invoice $invoice Invoice object. |
|
265 | + * @return string |
|
266 | + */ |
|
267 | + public function get_return_url( $invoice ) { |
|
268 | + |
|
269 | + // Payment success url |
|
270 | + $return_url = add_query_arg( |
|
271 | + array( |
|
272 | + 'payment-confirm' => $this->id, |
|
273 | + 'invoice_key' => $invoice->get_key(), |
|
274 | + 'utm_nooverride' => 1, |
|
275 | + ), |
|
276 | + wpinv_get_success_page_uri() |
|
277 | + ); |
|
278 | + |
|
279 | + return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this ); |
|
280 | + } |
|
281 | + |
|
282 | + /** |
|
283 | + * Confirms payments when rendering the success page. |
|
284 | + * |
|
285 | + * @param string $content Success page content. |
|
286 | + * @return string |
|
287 | + */ |
|
288 | + public function confirm_payment( $content ) { |
|
289 | + |
|
290 | + // Retrieve the invoice. |
|
291 | + $invoice_id = getpaid_get_current_invoice_id(); |
|
292 | + $invoice = wpinv_get_invoice( $invoice_id ); |
|
293 | + |
|
294 | + // Ensure that it exists and that it is pending payment. |
|
295 | + if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) { |
|
296 | + return $content; |
|
297 | + } |
|
298 | + |
|
299 | + // Can the user view this invoice?? |
|
300 | + if ( ! wpinv_user_can_view_invoice( $invoice ) ) { |
|
301 | + return $content; |
|
302 | + } |
|
303 | + |
|
304 | + // Show payment processing indicator. |
|
305 | + return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) ); |
|
306 | + } |
|
307 | + |
|
308 | + /** |
|
309 | + * Processes ipns and marks payments as complete. |
|
310 | + * |
|
311 | + * @return void |
|
312 | + */ |
|
313 | + public function verify_ipn() {} |
|
314 | + |
|
315 | + /** |
|
316 | + * Processes invoice addons. |
|
317 | + * |
|
318 | + * @param WPInv_Invoice $invoice |
|
319 | + * @param GetPaid_Form_Item[] $items |
|
320 | + * @return WPInv_Invoice |
|
321 | + */ |
|
322 | + public function process_addons( $invoice, $items ) { |
|
323 | + |
|
324 | + } |
|
325 | + |
|
326 | + /** |
|
327 | + * Get a link to the transaction on the 3rd party gateway site (if applicable). |
|
328 | + * |
|
329 | + * @param string $transaction_url transaction url. |
|
330 | + * @param WPInv_Invoice $invoice Invoice object. |
|
331 | + * @return string transaction URL, or empty string. |
|
332 | + */ |
|
333 | + public function filter_transaction_url( $transaction_url, $invoice ) { |
|
334 | + |
|
335 | + $transaction_id = $invoice->get_transaction_id(); |
|
336 | + |
|
337 | + if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) { |
|
338 | + $transaction_url = sprintf( $this->view_transaction_url, $transaction_id ); |
|
339 | + $replace = $this->is_sandbox( $invoice ) ? 'sandbox' : ''; |
|
340 | + $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url ); |
|
341 | + } |
|
342 | + |
|
343 | + return $transaction_url; |
|
344 | + } |
|
345 | + |
|
346 | + /** |
|
347 | + * Get a link to the subscription on the 3rd party gateway site (if applicable). |
|
348 | + * |
|
349 | + * @param string $subscription_url transaction url. |
|
350 | + * @param WPInv_Subscription $subscription Subscription objectt. |
|
351 | + * @return string subscription URL, or empty string. |
|
352 | + */ |
|
353 | + public function generate_subscription_url( $subscription_url, $subscription ) { |
|
354 | + |
|
355 | + $profile_id = $subscription->get_profile_id(); |
|
356 | + |
|
357 | + if ( $this->id == $subscription->get_gateway() && ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) { |
|
358 | + |
|
359 | + $subscription_url = sprintf( $this->view_subscription_url, $profile_id ); |
|
360 | + $replace = $this->is_sandbox( $subscription->get_parent_invoice() ) ? 'sandbox' : ''; |
|
361 | + $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url ); |
|
362 | + |
|
363 | + } |
|
364 | + |
|
365 | + return $subscription_url; |
|
366 | + } |
|
367 | + |
|
368 | + /** |
|
369 | + * Check if the gateway is available for use. |
|
370 | + * |
|
371 | + * @return bool |
|
372 | + */ |
|
373 | + public function is_available() { |
|
374 | + return ! empty( $this->enabled ); |
|
375 | + } |
|
376 | + |
|
377 | + /** |
|
378 | + * Return the gateway's title. |
|
379 | + * |
|
380 | + * @return string |
|
381 | + */ |
|
382 | + public function get_title() { |
|
383 | + return apply_filters( 'getpaid_gateway_title', $this->title, $this ); |
|
384 | + } |
|
385 | + |
|
386 | + /** |
|
387 | + * Return the gateway's description. |
|
388 | + * |
|
389 | + * @return string |
|
390 | + */ |
|
391 | + public function get_description() { |
|
392 | + return apply_filters( 'getpaid_gateway_description', $this->description, $this ); |
|
393 | + } |
|
394 | + |
|
395 | + /** |
|
396 | + * Process Payment. |
|
397 | + * |
|
398 | + * |
|
399 | + * @param WPInv_Invoice $invoice Invoice. |
|
400 | + * @param array $submission_data Posted checkout fields. |
|
401 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
402 | + * @return void |
|
403 | + */ |
|
404 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
405 | + // Process the payment then either redirect to the success page or the gateway. |
|
406 | + do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission ); |
|
407 | + } |
|
408 | + |
|
409 | + /** |
|
410 | + * Process refund. |
|
411 | + * |
|
412 | + * If the gateway declares 'refunds' support, this will allow it to refund. |
|
413 | + * a passed in amount. |
|
414 | + * |
|
415 | + * @param WPInv_Invoice $invoice Invoice. |
|
416 | + * @param float $amount Refund amount. |
|
417 | + * @param string $reason Refund reason. |
|
418 | + * @return WP_Error|bool True or false based on success, or a WP_Error object. |
|
419 | + */ |
|
420 | + public function process_refund( $invoice, $amount = null, $reason = '' ) { |
|
421 | + return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason ); |
|
422 | + } |
|
423 | + |
|
424 | + /** |
|
425 | + * Displays the payment fields, credit cards etc. |
|
426 | + * |
|
427 | + * @param int $invoice_id 0 or invoice id. |
|
428 | + * @param GetPaid_Payment_Form $form Current payment form. |
|
429 | + */ |
|
430 | + public function payment_fields( $invoice_id, $form ) { |
|
431 | + do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form ); |
|
432 | + } |
|
433 | + |
|
434 | + /** |
|
435 | + * Filters the gateway settings. |
|
436 | + * |
|
437 | + * @param array $admin_settings |
|
438 | + */ |
|
439 | + public function admin_settings( $admin_settings ) { |
|
440 | + return $admin_settings; |
|
441 | + } |
|
442 | + |
|
443 | + /** |
|
444 | + * Retrieves the value of a gateway setting. |
|
445 | + * |
|
446 | + * @param string $option |
|
447 | + */ |
|
448 | + public function get_option( $option, $default = false ) { |
|
449 | + return wpinv_get_option( $this->id . '_' . $option, $default ); |
|
450 | + } |
|
451 | + |
|
452 | + /** |
|
453 | + * Check if a gateway supports a given feature. |
|
454 | + * |
|
455 | + * Gateways should override this to declare support (or lack of support) for a feature. |
|
456 | + * For backward compatibility, gateways support 'products' by default, but nothing else. |
|
457 | + * |
|
458 | + * @param string $feature string The name of a feature to test support for. |
|
459 | + * @return bool True if the gateway supports the feature, false otherwise. |
|
460 | + * @since 1.0.19 |
|
461 | + */ |
|
462 | + public function supports( $feature ) { |
|
463 | + return getpaid_payment_gateway_supports( $this->id, $feature ); |
|
464 | + } |
|
465 | + |
|
466 | + /** |
|
467 | + * Returns the credit card form html. |
|
468 | + * |
|
469 | + * @param bool $save whether or not to display the save button. |
|
470 | + */ |
|
471 | 471 | public function get_cc_form( $save = false ) { |
472 | 472 | |
473 | - ob_start(); |
|
473 | + ob_start(); |
|
474 | 474 | |
475 | 475 | $id_prefix = esc_attr( uniqid( $this->id ) ); |
476 | 476 | |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | '11' => __( 'November', 'invoicing' ), |
489 | 489 | '12' => __( 'December', 'invoicing' ), |
490 | 490 | ); |
491 | - $months = apply_filters( 'getpaid_cc_months', $months, $this ); |
|
491 | + $months = apply_filters( 'getpaid_cc_months', $months, $this ); |
|
492 | 492 | |
493 | 493 | $year = (int) current_time( 'Y' ); |
494 | 494 | $years = array(); |
@@ -497,7 +497,7 @@ discard block |
||
497 | 497 | $years[ $year + $i ] = $year + $i; |
498 | 498 | } |
499 | 499 | |
500 | - $years = apply_filters( 'getpaid_cc_years', $years, $this ); |
|
500 | + $years = apply_filters( 'getpaid_cc_years', $years, $this ); |
|
501 | 501 | |
502 | 502 | ?> |
503 | 503 | <div class="<?php echo esc_attr( $this->id ); ?>-cc-form getpaid-cc-form mt-1"> |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | |
540 | 540 | <?php |
541 | 541 | foreach ( $months as $key => $month ) { |
542 | - echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $month ) . '</option>'; |
|
542 | + echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $month ) . '</option>'; |
|
543 | 543 | } |
544 | 544 | ?> |
545 | 545 | |
@@ -552,7 +552,7 @@ discard block |
||
552 | 552 | |
553 | 553 | <?php |
554 | 554 | foreach ( $years as $key => $year ) { |
555 | - echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $year ) . '</option>'; |
|
555 | + echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $year ) . '</option>'; |
|
556 | 556 | } |
557 | 557 | ?> |
558 | 558 | |
@@ -570,13 +570,13 @@ discard block |
||
570 | 570 | 'name' => $this->id . '[cc_cvv2]', |
571 | 571 | 'id' => "$id_prefix-cc-cvv2", |
572 | 572 | 'label' => __( 'CCV', 'invoicing' ), |
573 | - 'label_type' => 'vertical', |
|
574 | - 'class' => 'form-control-sm', |
|
575 | - 'extra_attributes' => array( |
|
576 | - 'autocomplete' => 'cc-csc', |
|
577 | - ), |
|
573 | + 'label_type' => 'vertical', |
|
574 | + 'class' => 'form-control-sm', |
|
575 | + 'extra_attributes' => array( |
|
576 | + 'autocomplete' => 'cc-csc', |
|
577 | + ), |
|
578 | 578 | ), |
579 | - true |
|
579 | + true |
|
580 | 580 | ); |
581 | 581 | ?> |
582 | 582 | </div> |
@@ -585,192 +585,192 @@ discard block |
||
585 | 585 | |
586 | 586 | <?php |
587 | 587 | |
588 | - if ( $save ) { |
|
589 | - $this->save_payment_method_checkbox(); |
|
590 | - } |
|
588 | + if ( $save ) { |
|
589 | + $this->save_payment_method_checkbox(); |
|
590 | + } |
|
591 | 591 | |
592 | - ?> |
|
592 | + ?> |
|
593 | 593 | </div> |
594 | 594 | |
595 | 595 | </div> |
596 | 596 | <?php |
597 | 597 | |
598 | - return ob_get_clean(); |
|
598 | + return ob_get_clean(); |
|
599 | + |
|
600 | + } |
|
601 | + |
|
602 | + /** |
|
603 | + * Displays a new payment method entry form. |
|
604 | + * |
|
605 | + * @since 1.0.19 |
|
606 | + */ |
|
607 | + public function new_payment_method_entry( $form ) { |
|
608 | + echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses( $form, getpaid_allowed_html() ) . '</div>'; |
|
609 | + } |
|
610 | + |
|
611 | + /** |
|
612 | + * Grab and display our saved payment methods. |
|
613 | + * |
|
614 | + * @since 1.0.19 |
|
615 | + */ |
|
616 | + public function saved_payment_methods() { |
|
617 | + echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">'; |
|
618 | + |
|
619 | + foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) { |
|
620 | + $this->get_saved_payment_method_option_html( $token ); |
|
621 | + } |
|
622 | + |
|
623 | + $this->get_new_payment_method_option_html(); |
|
624 | + echo '</ul>'; |
|
599 | 625 | |
600 | 626 | } |
601 | 627 | |
602 | - /** |
|
603 | - * Displays a new payment method entry form. |
|
604 | - * |
|
605 | - * @since 1.0.19 |
|
606 | - */ |
|
607 | - public function new_payment_method_entry( $form ) { |
|
608 | - echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses( $form, getpaid_allowed_html() ) . '</div>'; |
|
609 | - } |
|
610 | - |
|
611 | - /** |
|
612 | - * Grab and display our saved payment methods. |
|
613 | - * |
|
614 | - * @since 1.0.19 |
|
615 | - */ |
|
616 | - public function saved_payment_methods() { |
|
617 | - echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">'; |
|
618 | - |
|
619 | - foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) { |
|
620 | - $this->get_saved_payment_method_option_html( $token ); |
|
621 | - } |
|
622 | - |
|
623 | - $this->get_new_payment_method_option_html(); |
|
624 | - echo '</ul>'; |
|
625 | - |
|
626 | - } |
|
627 | - |
|
628 | - /** |
|
629 | - * Gets saved payment method HTML from a token. |
|
630 | - * |
|
631 | - * @since 1.0.19 |
|
632 | - * @param array $token Payment Token. |
|
633 | - * @return string Generated payment method HTML |
|
634 | - */ |
|
635 | - public function get_saved_payment_method_option_html( $token ) { |
|
636 | - |
|
637 | - printf( |
|
638 | - '<li class="getpaid-payment-method form-group mb-3"> |
|
628 | + /** |
|
629 | + * Gets saved payment method HTML from a token. |
|
630 | + * |
|
631 | + * @since 1.0.19 |
|
632 | + * @param array $token Payment Token. |
|
633 | + * @return string Generated payment method HTML |
|
634 | + */ |
|
635 | + public function get_saved_payment_method_option_html( $token ) { |
|
636 | + |
|
637 | + printf( |
|
638 | + '<li class="getpaid-payment-method form-group mb-3"> |
|
639 | 639 | <label> |
640 | 640 | <input name="getpaid-%1$s-payment-method" type="radio" value="%2$s" data-currency="%5$s" style="width:auto;" class="getpaid-saved-payment-method-token-input" %4$s /> |
641 | 641 | <span>%3$s</span> |
642 | 642 | </label> |
643 | 643 | </li>', |
644 | - esc_attr( $this->id ), |
|
645 | - esc_attr( $token['id'] ), |
|
646 | - esc_html( $token['name'] ), |
|
647 | - checked( empty( $token['default'] ), false, false ), |
|
648 | - empty( $token['currency'] ) ? 'none' : esc_attr( $token['currency'] ) |
|
649 | - ); |
|
650 | - |
|
651 | - } |
|
652 | - |
|
653 | - /** |
|
654 | - * Displays a radio button for entering a new payment method (new CC details) instead of using a saved method. |
|
655 | - * |
|
656 | - * @since 1.0.19 |
|
657 | - */ |
|
658 | - public function get_new_payment_method_option_html() { |
|
659 | - |
|
660 | - $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this ); |
|
661 | - |
|
662 | - printf( |
|
663 | - '<li class="getpaid-new-payment-method"> |
|
644 | + esc_attr( $this->id ), |
|
645 | + esc_attr( $token['id'] ), |
|
646 | + esc_html( $token['name'] ), |
|
647 | + checked( empty( $token['default'] ), false, false ), |
|
648 | + empty( $token['currency'] ) ? 'none' : esc_attr( $token['currency'] ) |
|
649 | + ); |
|
650 | + |
|
651 | + } |
|
652 | + |
|
653 | + /** |
|
654 | + * Displays a radio button for entering a new payment method (new CC details) instead of using a saved method. |
|
655 | + * |
|
656 | + * @since 1.0.19 |
|
657 | + */ |
|
658 | + public function get_new_payment_method_option_html() { |
|
659 | + |
|
660 | + $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this ); |
|
661 | + |
|
662 | + printf( |
|
663 | + '<li class="getpaid-new-payment-method"> |
|
664 | 664 | <label> |
665 | 665 | <input name="getpaid-%1$s-payment-method" type="radio" data-currency="none" value="new" style="width:auto;" /> |
666 | 666 | <span>%2$s</span> |
667 | 667 | </label> |
668 | 668 | </li>', |
669 | - esc_attr( $this->id ), |
|
670 | - esc_html( $label ) |
|
671 | - ); |
|
672 | - |
|
673 | - } |
|
674 | - |
|
675 | - /** |
|
676 | - * Outputs a checkbox for saving a new payment method to the database. |
|
677 | - * |
|
678 | - * @since 1.0.19 |
|
679 | - */ |
|
680 | - public function save_payment_method_checkbox() { |
|
681 | - |
|
682 | - aui()->input( |
|
683 | - array( |
|
684 | - 'type' => 'checkbox', |
|
685 | - 'name' => esc_attr( "getpaid-$this->id-new-payment-method" ), |
|
686 | - 'id' => esc_attr( uniqid( $this->id ) ), |
|
687 | - 'required' => false, |
|
688 | - 'label' => esc_html__( 'Save payment method', 'invoicing' ), |
|
689 | - 'value' => 'true', |
|
690 | - 'checked' => true, |
|
691 | - 'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1', |
|
692 | - ), |
|
693 | - true |
|
694 | - ); |
|
695 | - |
|
696 | - } |
|
697 | - |
|
698 | - /** |
|
699 | - * Registers the gateway. |
|
700 | - * |
|
701 | - * @return array |
|
702 | - */ |
|
703 | - public function register_gateway( $gateways ) { |
|
704 | - |
|
705 | - $gateways[ $this->id ] = array( |
|
706 | - |
|
707 | - 'admin_label' => $this->method_title, |
|
669 | + esc_attr( $this->id ), |
|
670 | + esc_html( $label ) |
|
671 | + ); |
|
672 | + |
|
673 | + } |
|
674 | + |
|
675 | + /** |
|
676 | + * Outputs a checkbox for saving a new payment method to the database. |
|
677 | + * |
|
678 | + * @since 1.0.19 |
|
679 | + */ |
|
680 | + public function save_payment_method_checkbox() { |
|
681 | + |
|
682 | + aui()->input( |
|
683 | + array( |
|
684 | + 'type' => 'checkbox', |
|
685 | + 'name' => esc_attr( "getpaid-$this->id-new-payment-method" ), |
|
686 | + 'id' => esc_attr( uniqid( $this->id ) ), |
|
687 | + 'required' => false, |
|
688 | + 'label' => esc_html__( 'Save payment method', 'invoicing' ), |
|
689 | + 'value' => 'true', |
|
690 | + 'checked' => true, |
|
691 | + 'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1', |
|
692 | + ), |
|
693 | + true |
|
694 | + ); |
|
695 | + |
|
696 | + } |
|
697 | + |
|
698 | + /** |
|
699 | + * Registers the gateway. |
|
700 | + * |
|
701 | + * @return array |
|
702 | + */ |
|
703 | + public function register_gateway( $gateways ) { |
|
704 | + |
|
705 | + $gateways[ $this->id ] = array( |
|
706 | + |
|
707 | + 'admin_label' => $this->method_title, |
|
708 | 708 | 'checkout_label' => $this->title, |
709 | - 'ordering' => $this->order, |
|
709 | + 'ordering' => $this->order, |
|
710 | 710 | |
711 | - ); |
|
711 | + ); |
|
712 | 712 | |
713 | - return $gateways; |
|
713 | + return $gateways; |
|
714 | 714 | |
715 | - } |
|
715 | + } |
|
716 | 716 | |
717 | - /** |
|
718 | - * Checks whether or not this is a sandbox request. |
|
719 | - * |
|
720 | - * @param WPInv_Invoice|null $invoice Invoice object or null. |
|
721 | - * @return bool |
|
722 | - */ |
|
723 | - public function is_sandbox( $invoice = null ) { |
|
717 | + /** |
|
718 | + * Checks whether or not this is a sandbox request. |
|
719 | + * |
|
720 | + * @param WPInv_Invoice|null $invoice Invoice object or null. |
|
721 | + * @return bool |
|
722 | + */ |
|
723 | + public function is_sandbox( $invoice = null ) { |
|
724 | 724 | |
725 | - if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) { |
|
726 | - return $invoice->get_mode() == 'test'; |
|
727 | - } |
|
725 | + if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) { |
|
726 | + return $invoice->get_mode() == 'test'; |
|
727 | + } |
|
728 | 728 | |
729 | - return wpinv_is_test_mode( $this->id ); |
|
729 | + return wpinv_is_test_mode( $this->id ); |
|
730 | 730 | |
731 | - } |
|
731 | + } |
|
732 | 732 | |
733 | - /** |
|
734 | - * Renames the checkout button |
|
735 | - * |
|
736 | - * @return string |
|
737 | - */ |
|
738 | - public function rename_checkout_button() { |
|
739 | - return $this->checkout_button_text; |
|
740 | - } |
|
733 | + /** |
|
734 | + * Renames the checkout button |
|
735 | + * |
|
736 | + * @return string |
|
737 | + */ |
|
738 | + public function rename_checkout_button() { |
|
739 | + return $this->checkout_button_text; |
|
740 | + } |
|
741 | 741 | |
742 | - /** |
|
743 | - * Validate gateway currency |
|
744 | - * |
|
745 | - * @return bool |
|
746 | - */ |
|
747 | - public function validate_currency( $validation, $currency ) { |
|
742 | + /** |
|
743 | + * Validate gateway currency |
|
744 | + * |
|
745 | + * @return bool |
|
746 | + */ |
|
747 | + public function validate_currency( $validation, $currency ) { |
|
748 | 748 | |
749 | - // Required currencies. |
|
750 | - if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) { |
|
751 | - return false; |
|
752 | - } |
|
749 | + // Required currencies. |
|
750 | + if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) { |
|
751 | + return false; |
|
752 | + } |
|
753 | 753 | |
754 | - // Excluded currencies. |
|
755 | - if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) { |
|
756 | - return false; |
|
757 | - } |
|
754 | + // Excluded currencies. |
|
755 | + if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) { |
|
756 | + return false; |
|
757 | + } |
|
758 | 758 | |
759 | - return $validation; |
|
760 | - } |
|
759 | + return $validation; |
|
760 | + } |
|
761 | 761 | |
762 | - /** |
|
763 | - * Displays an error |
|
764 | - * |
|
765 | - */ |
|
766 | - public function show_error( $code, $message, $type ) { |
|
762 | + /** |
|
763 | + * Displays an error |
|
764 | + * |
|
765 | + */ |
|
766 | + public function show_error( $code, $message, $type ) { |
|
767 | 767 | |
768 | - if ( is_admin() ) { |
|
769 | - getpaid_admin()->{"show_$type"}( $message ); |
|
770 | - } |
|
768 | + if ( is_admin() ) { |
|
769 | + getpaid_admin()->{"show_$type"}( $message ); |
|
770 | + } |
|
771 | 771 | |
772 | - wpinv_set_error( $code, $message, $type ); |
|
772 | + wpinv_set_error( $code, $message, $type ); |
|
773 | 773 | |
774 | - } |
|
774 | + } |
|
775 | 775 | |
776 | 776 | } |
@@ -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 | * Abstaract Payment Gateway class. |
@@ -138,53 +138,53 @@ discard block |
||
138 | 138 | */ |
139 | 139 | public function __construct() { |
140 | 140 | |
141 | - do_action( 'getpaid_before_init_payment_gateway_' . $this->id, $this ); |
|
141 | + do_action('getpaid_before_init_payment_gateway_' . $this->id, $this); |
|
142 | 142 | |
143 | 143 | // Register gateway. |
144 | - add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) ); |
|
144 | + add_filter('wpinv_payment_gateways', array($this, 'register_gateway')); |
|
145 | 145 | |
146 | - $this->enabled = wpinv_is_gateway_active( $this->id ); |
|
146 | + $this->enabled = wpinv_is_gateway_active($this->id); |
|
147 | 147 | |
148 | 148 | // Add support for various features. |
149 | - foreach ( $this->supports as $feature ) { |
|
150 | - add_filter( "wpinv_{$this->id}_support_{$feature}", '__return_true' ); |
|
151 | - add_filter( "getpaid_{$this->id}_support_{$feature}", '__return_true' ); |
|
152 | - add_filter( "getpaid_{$this->id}_supports_{$feature}", '__return_true' ); |
|
149 | + foreach ($this->supports as $feature) { |
|
150 | + add_filter("wpinv_{$this->id}_support_{$feature}", '__return_true'); |
|
151 | + add_filter("getpaid_{$this->id}_support_{$feature}", '__return_true'); |
|
152 | + add_filter("getpaid_{$this->id}_supports_{$feature}", '__return_true'); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | // Invoice addons. |
156 | - if ( $this->supports( 'addons' ) ) { |
|
157 | - add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 ); |
|
156 | + if ($this->supports('addons')) { |
|
157 | + add_action("getpaid_process_{$this->id}_invoice_addons", array($this, 'process_addons'), 10, 2); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | // Gateway settings. |
161 | - add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) ); |
|
161 | + add_filter("wpinv_gateway_settings_{$this->id}", array($this, 'admin_settings')); |
|
162 | 162 | |
163 | 163 | // Gateway checkout fiellds. |
164 | - add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 ); |
|
164 | + add_action("wpinv_{$this->id}_cc_form", array($this, 'payment_fields'), 10, 2); |
|
165 | 165 | |
166 | 166 | // Process payment. |
167 | - add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 ); |
|
167 | + add_action("getpaid_gateway_{$this->id}", array($this, 'process_payment'), 10, 3); |
|
168 | 168 | |
169 | 169 | // Change the checkout button text. |
170 | - if ( ! empty( $this->checkout_button_text ) ) { |
|
171 | - add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) ); |
|
170 | + if (!empty($this->checkout_button_text)) { |
|
171 | + add_filter("getpaid_gateway_{$this->id}_checkout_button_label", array($this, 'rename_checkout_button')); |
|
172 | 172 | } |
173 | 173 | |
174 | 174 | // Check if a gateway is valid for a given currency. |
175 | - add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 ); |
|
175 | + add_filter("getpaid_gateway_{$this->id}_is_valid_for_currency", array($this, 'validate_currency'), 10, 2); |
|
176 | 176 | |
177 | 177 | // Generate the transaction url. |
178 | - add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 ); |
|
178 | + add_filter("getpaid_gateway_{$this->id}_transaction_url", array($this, 'filter_transaction_url'), 10, 2); |
|
179 | 179 | |
180 | 180 | // Generate the subscription url. |
181 | - add_filter( 'getpaid_remote_subscription_profile_url', array( $this, 'generate_subscription_url' ), 10, 2 ); |
|
181 | + add_filter('getpaid_remote_subscription_profile_url', array($this, 'generate_subscription_url'), 10, 2); |
|
182 | 182 | |
183 | 183 | // Confirm payments. |
184 | - add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 ); |
|
184 | + add_filter("wpinv_payment_confirm_{$this->id}", array($this, 'confirm_payment'), 10, 2); |
|
185 | 185 | |
186 | 186 | // Verify IPNs. |
187 | - add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) ); |
|
187 | + add_action("wpinv_verify_{$this->id}_ipn", array($this, 'verify_ipn')); |
|
188 | 188 | |
189 | 189 | } |
190 | 190 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | * @since 1.0.19 |
195 | 195 | * @return bool |
196 | 196 | */ |
197 | - public function is( $gateway ) { |
|
197 | + public function is($gateway) { |
|
198 | 198 | return $gateway == $this->id; |
199 | 199 | } |
200 | 200 | |
@@ -204,23 +204,23 @@ discard block |
||
204 | 204 | * @since 1.0.19 |
205 | 205 | * @return array |
206 | 206 | */ |
207 | - public function get_tokens( $sandbox = null ) { |
|
207 | + public function get_tokens($sandbox = null) { |
|
208 | 208 | |
209 | - if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) { |
|
210 | - $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true ); |
|
209 | + if (is_user_logged_in() && $this->supports('tokens') && 0 == count($this->tokens)) { |
|
210 | + $tokens = get_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", true); |
|
211 | 211 | |
212 | - if ( is_array( $tokens ) ) { |
|
212 | + if (is_array($tokens)) { |
|
213 | 213 | $this->tokens = $tokens; |
214 | 214 | } |
215 | 215 | } |
216 | 216 | |
217 | - if ( ! is_bool( $sandbox ) ) { |
|
217 | + if (!is_bool($sandbox)) { |
|
218 | 218 | return $this->tokens; |
219 | 219 | } |
220 | 220 | |
221 | 221 | // Filter tokens. |
222 | - $args = array( 'type' => $sandbox ? 'sandbox' : 'live' ); |
|
223 | - return wp_list_filter( $this->tokens, $args ); |
|
222 | + $args = array('type' => $sandbox ? 'sandbox' : 'live'); |
|
223 | + return wp_list_filter($this->tokens, $args); |
|
224 | 224 | |
225 | 225 | } |
226 | 226 | |
@@ -229,12 +229,12 @@ discard block |
||
229 | 229 | * |
230 | 230 | * @since 1.0.19 |
231 | 231 | */ |
232 | - public function save_token( $token ) { |
|
232 | + public function save_token($token) { |
|
233 | 233 | |
234 | 234 | $tokens = $this->get_tokens(); |
235 | 235 | $tokens[] = $token; |
236 | 236 | |
237 | - update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens ); |
|
237 | + update_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens); |
|
238 | 238 | |
239 | 239 | $this->tokens = $tokens; |
240 | 240 | |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @return string |
247 | 247 | */ |
248 | 248 | public function get_method_title() { |
249 | - return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this ); |
|
249 | + return apply_filters('getpaid_gateway_method_title', $this->method_title, $this); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | * @return string |
256 | 256 | */ |
257 | 257 | public function get_method_description() { |
258 | - return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this ); |
|
258 | + return apply_filters('getpaid_gateway_method_description', $this->method_description, $this); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | * @param WPInv_Invoice $invoice Invoice object. |
265 | 265 | * @return string |
266 | 266 | */ |
267 | - public function get_return_url( $invoice ) { |
|
267 | + public function get_return_url($invoice) { |
|
268 | 268 | |
269 | 269 | // Payment success url |
270 | 270 | $return_url = add_query_arg( |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | wpinv_get_success_page_uri() |
277 | 277 | ); |
278 | 278 | |
279 | - return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this ); |
|
279 | + return apply_filters('getpaid_gateway_success_url', $return_url, $invoice, $this); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | /** |
@@ -285,24 +285,24 @@ discard block |
||
285 | 285 | * @param string $content Success page content. |
286 | 286 | * @return string |
287 | 287 | */ |
288 | - public function confirm_payment( $content ) { |
|
288 | + public function confirm_payment($content) { |
|
289 | 289 | |
290 | 290 | // Retrieve the invoice. |
291 | 291 | $invoice_id = getpaid_get_current_invoice_id(); |
292 | - $invoice = wpinv_get_invoice( $invoice_id ); |
|
292 | + $invoice = wpinv_get_invoice($invoice_id); |
|
293 | 293 | |
294 | 294 | // Ensure that it exists and that it is pending payment. |
295 | - if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) { |
|
295 | + if (empty($invoice_id) || !$invoice->needs_payment()) { |
|
296 | 296 | return $content; |
297 | 297 | } |
298 | 298 | |
299 | 299 | // Can the user view this invoice?? |
300 | - if ( ! wpinv_user_can_view_invoice( $invoice ) ) { |
|
300 | + if (!wpinv_user_can_view_invoice($invoice)) { |
|
301 | 301 | return $content; |
302 | 302 | } |
303 | 303 | |
304 | 304 | // Show payment processing indicator. |
305 | - return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) ); |
|
305 | + return wpinv_get_template_html('wpinv-payment-processing.php', compact('invoice')); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @param GetPaid_Form_Item[] $items |
320 | 320 | * @return WPInv_Invoice |
321 | 321 | */ |
322 | - public function process_addons( $invoice, $items ) { |
|
322 | + public function process_addons($invoice, $items) { |
|
323 | 323 | |
324 | 324 | } |
325 | 325 | |
@@ -330,14 +330,14 @@ discard block |
||
330 | 330 | * @param WPInv_Invoice $invoice Invoice object. |
331 | 331 | * @return string transaction URL, or empty string. |
332 | 332 | */ |
333 | - public function filter_transaction_url( $transaction_url, $invoice ) { |
|
333 | + public function filter_transaction_url($transaction_url, $invoice) { |
|
334 | 334 | |
335 | - $transaction_id = $invoice->get_transaction_id(); |
|
335 | + $transaction_id = $invoice->get_transaction_id(); |
|
336 | 336 | |
337 | - if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) { |
|
338 | - $transaction_url = sprintf( $this->view_transaction_url, $transaction_id ); |
|
339 | - $replace = $this->is_sandbox( $invoice ) ? 'sandbox' : ''; |
|
340 | - $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url ); |
|
337 | + if (!empty($this->view_transaction_url) && !empty($transaction_id)) { |
|
338 | + $transaction_url = sprintf($this->view_transaction_url, $transaction_id); |
|
339 | + $replace = $this->is_sandbox($invoice) ? 'sandbox' : ''; |
|
340 | + $transaction_url = str_replace('{sandbox}', $replace, $transaction_url); |
|
341 | 341 | } |
342 | 342 | |
343 | 343 | return $transaction_url; |
@@ -350,15 +350,15 @@ discard block |
||
350 | 350 | * @param WPInv_Subscription $subscription Subscription objectt. |
351 | 351 | * @return string subscription URL, or empty string. |
352 | 352 | */ |
353 | - public function generate_subscription_url( $subscription_url, $subscription ) { |
|
353 | + public function generate_subscription_url($subscription_url, $subscription) { |
|
354 | 354 | |
355 | - $profile_id = $subscription->get_profile_id(); |
|
355 | + $profile_id = $subscription->get_profile_id(); |
|
356 | 356 | |
357 | - if ( $this->id == $subscription->get_gateway() && ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) { |
|
357 | + if ($this->id == $subscription->get_gateway() && !empty($this->view_subscription_url) && !empty($profile_id)) { |
|
358 | 358 | |
359 | - $subscription_url = sprintf( $this->view_subscription_url, $profile_id ); |
|
360 | - $replace = $this->is_sandbox( $subscription->get_parent_invoice() ) ? 'sandbox' : ''; |
|
361 | - $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url ); |
|
359 | + $subscription_url = sprintf($this->view_subscription_url, $profile_id); |
|
360 | + $replace = $this->is_sandbox($subscription->get_parent_invoice()) ? 'sandbox' : ''; |
|
361 | + $subscription_url = str_replace('{sandbox}', $replace, $subscription_url); |
|
362 | 362 | |
363 | 363 | } |
364 | 364 | |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | * @return bool |
372 | 372 | */ |
373 | 373 | public function is_available() { |
374 | - return ! empty( $this->enabled ); |
|
374 | + return !empty($this->enabled); |
|
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | * @return string |
381 | 381 | */ |
382 | 382 | public function get_title() { |
383 | - return apply_filters( 'getpaid_gateway_title', $this->title, $this ); |
|
383 | + return apply_filters('getpaid_gateway_title', $this->title, $this); |
|
384 | 384 | } |
385 | 385 | |
386 | 386 | /** |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | * @return string |
390 | 390 | */ |
391 | 391 | public function get_description() { |
392 | - return apply_filters( 'getpaid_gateway_description', $this->description, $this ); |
|
392 | + return apply_filters('getpaid_gateway_description', $this->description, $this); |
|
393 | 393 | } |
394 | 394 | |
395 | 395 | /** |
@@ -401,9 +401,9 @@ discard block |
||
401 | 401 | * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
402 | 402 | * @return void |
403 | 403 | */ |
404 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
404 | + public function process_payment($invoice, $submission_data, $submission) { |
|
405 | 405 | // Process the payment then either redirect to the success page or the gateway. |
406 | - do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission ); |
|
406 | + do_action('getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission); |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | /** |
@@ -417,8 +417,8 @@ discard block |
||
417 | 417 | * @param string $reason Refund reason. |
418 | 418 | * @return WP_Error|bool True or false based on success, or a WP_Error object. |
419 | 419 | */ |
420 | - public function process_refund( $invoice, $amount = null, $reason = '' ) { |
|
421 | - return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason ); |
|
420 | + public function process_refund($invoice, $amount = null, $reason = '') { |
|
421 | + return apply_filters('getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason); |
|
422 | 422 | } |
423 | 423 | |
424 | 424 | /** |
@@ -427,8 +427,8 @@ discard block |
||
427 | 427 | * @param int $invoice_id 0 or invoice id. |
428 | 428 | * @param GetPaid_Payment_Form $form Current payment form. |
429 | 429 | */ |
430 | - public function payment_fields( $invoice_id, $form ) { |
|
431 | - do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form ); |
|
430 | + public function payment_fields($invoice_id, $form) { |
|
431 | + do_action('getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form); |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | /** |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | * |
437 | 437 | * @param array $admin_settings |
438 | 438 | */ |
439 | - public function admin_settings( $admin_settings ) { |
|
439 | + public function admin_settings($admin_settings) { |
|
440 | 440 | return $admin_settings; |
441 | 441 | } |
442 | 442 | |
@@ -445,8 +445,8 @@ discard block |
||
445 | 445 | * |
446 | 446 | * @param string $option |
447 | 447 | */ |
448 | - public function get_option( $option, $default = false ) { |
|
449 | - return wpinv_get_option( $this->id . '_' . $option, $default ); |
|
448 | + public function get_option($option, $default = false) { |
|
449 | + return wpinv_get_option($this->id . '_' . $option, $default); |
|
450 | 450 | } |
451 | 451 | |
452 | 452 | /** |
@@ -459,8 +459,8 @@ discard block |
||
459 | 459 | * @return bool True if the gateway supports the feature, false otherwise. |
460 | 460 | * @since 1.0.19 |
461 | 461 | */ |
462 | - public function supports( $feature ) { |
|
463 | - return getpaid_payment_gateway_supports( $this->id, $feature ); |
|
462 | + public function supports($feature) { |
|
463 | + return getpaid_payment_gateway_supports($this->id, $feature); |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | /** |
@@ -468,39 +468,39 @@ discard block |
||
468 | 468 | * |
469 | 469 | * @param bool $save whether or not to display the save button. |
470 | 470 | */ |
471 | - public function get_cc_form( $save = false ) { |
|
471 | + public function get_cc_form($save = false) { |
|
472 | 472 | |
473 | 473 | ob_start(); |
474 | 474 | |
475 | - $id_prefix = esc_attr( uniqid( $this->id ) ); |
|
475 | + $id_prefix = esc_attr(uniqid($this->id)); |
|
476 | 476 | |
477 | 477 | $months = array( |
478 | - '01' => __( 'January', 'invoicing' ), |
|
479 | - '02' => __( 'February', 'invoicing' ), |
|
480 | - '03' => __( 'March', 'invoicing' ), |
|
481 | - '04' => __( 'April', 'invoicing' ), |
|
482 | - '05' => __( 'May', 'invoicing' ), |
|
483 | - '06' => __( 'June', 'invoicing' ), |
|
484 | - '07' => __( 'July', 'invoicing' ), |
|
485 | - '08' => __( 'August', 'invoicing' ), |
|
486 | - '09' => __( 'September', 'invoicing' ), |
|
487 | - '10' => __( 'October', 'invoicing' ), |
|
488 | - '11' => __( 'November', 'invoicing' ), |
|
489 | - '12' => __( 'December', 'invoicing' ), |
|
478 | + '01' => __('January', 'invoicing'), |
|
479 | + '02' => __('February', 'invoicing'), |
|
480 | + '03' => __('March', 'invoicing'), |
|
481 | + '04' => __('April', 'invoicing'), |
|
482 | + '05' => __('May', 'invoicing'), |
|
483 | + '06' => __('June', 'invoicing'), |
|
484 | + '07' => __('July', 'invoicing'), |
|
485 | + '08' => __('August', 'invoicing'), |
|
486 | + '09' => __('September', 'invoicing'), |
|
487 | + '10' => __('October', 'invoicing'), |
|
488 | + '11' => __('November', 'invoicing'), |
|
489 | + '12' => __('December', 'invoicing'), |
|
490 | 490 | ); |
491 | - $months = apply_filters( 'getpaid_cc_months', $months, $this ); |
|
491 | + $months = apply_filters('getpaid_cc_months', $months, $this); |
|
492 | 492 | |
493 | - $year = (int) current_time( 'Y' ); |
|
493 | + $year = (int) current_time('Y'); |
|
494 | 494 | $years = array(); |
495 | 495 | |
496 | - for ( $i = 0; $i <= 10; $i++ ) { |
|
497 | - $years[ $year + $i ] = $year + $i; |
|
496 | + for ($i = 0; $i <= 10; $i++) { |
|
497 | + $years[$year + $i] = $year + $i; |
|
498 | 498 | } |
499 | 499 | |
500 | - $years = apply_filters( 'getpaid_cc_years', $years, $this ); |
|
500 | + $years = apply_filters('getpaid_cc_years', $years, $this); |
|
501 | 501 | |
502 | 502 | ?> |
503 | - <div class="<?php echo esc_attr( $this->id ); ?>-cc-form getpaid-cc-form mt-1"> |
|
503 | + <div class="<?php echo esc_attr($this->id); ?>-cc-form getpaid-cc-form mt-1"> |
|
504 | 504 | |
505 | 505 | |
506 | 506 | <div class="getpaid-cc-card-inner"> |
@@ -509,9 +509,9 @@ discard block |
||
509 | 509 | <div class="col-12"> |
510 | 510 | |
511 | 511 | <div class="form-group mb-3"> |
512 | - <label for="<?php echo esc_attr( "$id_prefix-cc-number" ); ?>"><?php esc_html_e( 'Card number', 'invoicing' ); ?></label> |
|
512 | + <label for="<?php echo esc_attr("$id_prefix-cc-number"); ?>"><?php esc_html_e('Card number', 'invoicing'); ?></label> |
|
513 | 513 | <div class="input-group input-group-sm"> |
514 | - <?php if ( empty( $GLOBALS['aui_bs5'] ) ) : ?> |
|
514 | + <?php if (empty($GLOBALS['aui_bs5'])) : ?> |
|
515 | 515 | <div class="input-group-prepend "> |
516 | 516 | <span class="input-group-text"> |
517 | 517 | <i class="fa fa-credit-card"></i> |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | <i class="fa fa-credit-card"></i> |
523 | 523 | </span> |
524 | 524 | <?php endif; ?> |
525 | - <input type="text" name="<?php echo esc_attr( $this->id . '[cc_number]' ); ?>" id="<?php echo esc_attr( "$id_prefix-cc-number" ); ?>" class="form-control form-control-sm getpaid-format-card-number" autocomplete="cc-number"> |
|
525 | + <input type="text" name="<?php echo esc_attr($this->id . '[cc_number]'); ?>" id="<?php echo esc_attr("$id_prefix-cc-number"); ?>" class="form-control form-control-sm getpaid-format-card-number" autocomplete="cc-number"> |
|
526 | 526 | </div> |
527 | 527 | </div> |
528 | 528 | |
@@ -530,16 +530,16 @@ discard block |
||
530 | 530 | |
531 | 531 | <div class="col-12"> |
532 | 532 | <div class="form-group mb-3"> |
533 | - <label><?php esc_html_e( 'Expiration', 'invoicing' ); ?></label> |
|
533 | + <label><?php esc_html_e('Expiration', 'invoicing'); ?></label> |
|
534 | 534 | <div class="form-row row"> |
535 | 535 | |
536 | 536 | <div class="col"> |
537 | - <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr( $this->id ); ?>[cc_expire_month]"> |
|
538 | - <option disabled selected="selected"><?php esc_html_e( 'MM', 'invoicing' ); ?></option> |
|
537 | + <select class="form-control form-control-sm" autocomplete="cc-exp-month" name="<?php echo esc_attr($this->id); ?>[cc_expire_month]"> |
|
538 | + <option disabled selected="selected"><?php esc_html_e('MM', 'invoicing'); ?></option> |
|
539 | 539 | |
540 | 540 | <?php |
541 | - foreach ( $months as $key => $month ) { |
|
542 | - echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $month ) . '</option>'; |
|
541 | + foreach ($months as $key => $month) { |
|
542 | + echo "<option value='" . esc_attr($key) . "'>" . esc_html($month) . '</option>'; |
|
543 | 543 | } |
544 | 544 | ?> |
545 | 545 | |
@@ -547,12 +547,12 @@ discard block |
||
547 | 547 | </div> |
548 | 548 | |
549 | 549 | <div class="col"> |
550 | - <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr( $this->id ); ?>[cc_expire_year]"> |
|
551 | - <option disabled selected="selected"><?php esc_html_e( 'YY', 'invoicing' ); ?></option> |
|
550 | + <select class="form-control form-control-sm" autocomplete="cc-exp-year" name="<?php echo esc_attr($this->id); ?>[cc_expire_year]"> |
|
551 | + <option disabled selected="selected"><?php esc_html_e('YY', 'invoicing'); ?></option> |
|
552 | 552 | |
553 | 553 | <?php |
554 | - foreach ( $years as $key => $year ) { |
|
555 | - echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $year ) . '</option>'; |
|
554 | + foreach ($years as $key => $year) { |
|
555 | + echo "<option value='" . esc_attr($key) . "'>" . esc_html($year) . '</option>'; |
|
556 | 556 | } |
557 | 557 | ?> |
558 | 558 | |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | array( |
570 | 570 | 'name' => $this->id . '[cc_cvv2]', |
571 | 571 | 'id' => "$id_prefix-cc-cvv2", |
572 | - 'label' => __( 'CCV', 'invoicing' ), |
|
572 | + 'label' => __('CCV', 'invoicing'), |
|
573 | 573 | 'label_type' => 'vertical', |
574 | 574 | 'class' => 'form-control-sm', |
575 | 575 | 'extra_attributes' => array( |
@@ -585,7 +585,7 @@ discard block |
||
585 | 585 | |
586 | 586 | <?php |
587 | 587 | |
588 | - if ( $save ) { |
|
588 | + if ($save) { |
|
589 | 589 | $this->save_payment_method_checkbox(); |
590 | 590 | } |
591 | 591 | |
@@ -604,8 +604,8 @@ discard block |
||
604 | 604 | * |
605 | 605 | * @since 1.0.19 |
606 | 606 | */ |
607 | - public function new_payment_method_entry( $form ) { |
|
608 | - echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses( $form, getpaid_allowed_html() ) . '</div>'; |
|
607 | + public function new_payment_method_entry($form) { |
|
608 | + echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses($form, getpaid_allowed_html()) . '</div>'; |
|
609 | 609 | } |
610 | 610 | |
611 | 611 | /** |
@@ -614,10 +614,10 @@ discard block |
||
614 | 614 | * @since 1.0.19 |
615 | 615 | */ |
616 | 616 | public function saved_payment_methods() { |
617 | - echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">'; |
|
617 | + echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr(count($this->get_tokens($this->is_sandbox()))) . '">'; |
|
618 | 618 | |
619 | - foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) { |
|
620 | - $this->get_saved_payment_method_option_html( $token ); |
|
619 | + foreach ($this->get_tokens($this->is_sandbox()) as $token) { |
|
620 | + $this->get_saved_payment_method_option_html($token); |
|
621 | 621 | } |
622 | 622 | |
623 | 623 | $this->get_new_payment_method_option_html(); |
@@ -632,7 +632,7 @@ discard block |
||
632 | 632 | * @param array $token Payment Token. |
633 | 633 | * @return string Generated payment method HTML |
634 | 634 | */ |
635 | - public function get_saved_payment_method_option_html( $token ) { |
|
635 | + public function get_saved_payment_method_option_html($token) { |
|
636 | 636 | |
637 | 637 | printf( |
638 | 638 | '<li class="getpaid-payment-method form-group mb-3"> |
@@ -641,11 +641,11 @@ discard block |
||
641 | 641 | <span>%3$s</span> |
642 | 642 | </label> |
643 | 643 | </li>', |
644 | - esc_attr( $this->id ), |
|
645 | - esc_attr( $token['id'] ), |
|
646 | - esc_html( $token['name'] ), |
|
647 | - checked( empty( $token['default'] ), false, false ), |
|
648 | - empty( $token['currency'] ) ? 'none' : esc_attr( $token['currency'] ) |
|
644 | + esc_attr($this->id), |
|
645 | + esc_attr($token['id']), |
|
646 | + esc_html($token['name']), |
|
647 | + checked(empty($token['default']), false, false), |
|
648 | + empty($token['currency']) ? 'none' : esc_attr($token['currency']) |
|
649 | 649 | ); |
650 | 650 | |
651 | 651 | } |
@@ -657,7 +657,7 @@ discard block |
||
657 | 657 | */ |
658 | 658 | public function get_new_payment_method_option_html() { |
659 | 659 | |
660 | - $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this ); |
|
660 | + $label = apply_filters('getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __('Use a new payment method', 'invoicing'), $this); |
|
661 | 661 | |
662 | 662 | printf( |
663 | 663 | '<li class="getpaid-new-payment-method"> |
@@ -666,8 +666,8 @@ discard block |
||
666 | 666 | <span>%2$s</span> |
667 | 667 | </label> |
668 | 668 | </li>', |
669 | - esc_attr( $this->id ), |
|
670 | - esc_html( $label ) |
|
669 | + esc_attr($this->id), |
|
670 | + esc_html($label) |
|
671 | 671 | ); |
672 | 672 | |
673 | 673 | } |
@@ -682,10 +682,10 @@ discard block |
||
682 | 682 | aui()->input( |
683 | 683 | array( |
684 | 684 | 'type' => 'checkbox', |
685 | - 'name' => esc_attr( "getpaid-$this->id-new-payment-method" ), |
|
686 | - 'id' => esc_attr( uniqid( $this->id ) ), |
|
685 | + 'name' => esc_attr("getpaid-$this->id-new-payment-method"), |
|
686 | + 'id' => esc_attr(uniqid($this->id)), |
|
687 | 687 | 'required' => false, |
688 | - 'label' => esc_html__( 'Save payment method', 'invoicing' ), |
|
688 | + 'label' => esc_html__('Save payment method', 'invoicing'), |
|
689 | 689 | 'value' => 'true', |
690 | 690 | 'checked' => true, |
691 | 691 | 'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1', |
@@ -700,9 +700,9 @@ discard block |
||
700 | 700 | * |
701 | 701 | * @return array |
702 | 702 | */ |
703 | - public function register_gateway( $gateways ) { |
|
703 | + public function register_gateway($gateways) { |
|
704 | 704 | |
705 | - $gateways[ $this->id ] = array( |
|
705 | + $gateways[$this->id] = array( |
|
706 | 706 | |
707 | 707 | 'admin_label' => $this->method_title, |
708 | 708 | 'checkout_label' => $this->title, |
@@ -720,13 +720,13 @@ discard block |
||
720 | 720 | * @param WPInv_Invoice|null $invoice Invoice object or null. |
721 | 721 | * @return bool |
722 | 722 | */ |
723 | - public function is_sandbox( $invoice = null ) { |
|
723 | + public function is_sandbox($invoice = null) { |
|
724 | 724 | |
725 | - if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) { |
|
725 | + if (!empty($invoice) && !$invoice->needs_payment()) { |
|
726 | 726 | return $invoice->get_mode() == 'test'; |
727 | 727 | } |
728 | 728 | |
729 | - return wpinv_is_test_mode( $this->id ); |
|
729 | + return wpinv_is_test_mode($this->id); |
|
730 | 730 | |
731 | 731 | } |
732 | 732 | |
@@ -744,15 +744,15 @@ discard block |
||
744 | 744 | * |
745 | 745 | * @return bool |
746 | 746 | */ |
747 | - public function validate_currency( $validation, $currency ) { |
|
747 | + public function validate_currency($validation, $currency) { |
|
748 | 748 | |
749 | 749 | // Required currencies. |
750 | - if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) { |
|
750 | + if (!empty($this->currencies) && !in_array($currency, $this->currencies)) { |
|
751 | 751 | return false; |
752 | 752 | } |
753 | 753 | |
754 | 754 | // Excluded currencies. |
755 | - if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) { |
|
755 | + if (!empty($this->exclude_currencies) && in_array($currency, $this->exclude_currencies)) { |
|
756 | 756 | return false; |
757 | 757 | } |
758 | 758 | |
@@ -763,13 +763,13 @@ discard block |
||
763 | 763 | * Displays an error |
764 | 764 | * |
765 | 765 | */ |
766 | - public function show_error( $code, $message, $type ) { |
|
766 | + public function show_error($code, $message, $type) { |
|
767 | 767 | |
768 | - if ( is_admin() ) { |
|
769 | - getpaid_admin()->{"show_$type"}( $message ); |
|
768 | + if (is_admin()) { |
|
769 | + getpaid_admin()->{"show_$type"}($message); |
|
770 | 770 | } |
771 | 771 | |
772 | - wpinv_set_error( $code, $message, $type ); |
|
772 | + wpinv_set_error($code, $message, $type); |
|
773 | 773 | |
774 | 774 | } |
775 | 775 |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | * |
145 | 145 | */ |
146 | 146 | function wpinv_register_settings() { |
147 | - do_action( 'getpaid_before_register_settings' ); |
|
147 | + do_action( 'getpaid_before_register_settings' ); |
|
148 | 148 | |
149 | 149 | // Loop through all tabs. |
150 | 150 | foreach ( wpinv_get_registered_settings() as $tab => $sections ) { |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | $settings = $sections; |
160 | 160 | } |
161 | 161 | |
162 | - do_action( "getpaid_register_{$tab}_{$section}" ); |
|
162 | + do_action( "getpaid_register_{$tab}_{$section}" ); |
|
163 | 163 | |
164 | 164 | // Register the setting section. |
165 | 165 | add_settings_section( |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | // Creates our settings in the options table. |
181 | 181 | register_setting( 'wpinv_settings', 'wpinv_settings', 'wpinv_settings_sanitize' ); |
182 | 182 | |
183 | - do_action( 'getpaid_after_register_settings' ); |
|
183 | + do_action( 'getpaid_after_register_settings' ); |
|
184 | 184 | } |
185 | 185 | add_action( 'admin_init', 'wpinv_register_settings' ); |
186 | 186 | |
@@ -197,13 +197,13 @@ discard block |
||
197 | 197 | $name = isset( $option['name'] ) ? $option['name'] : ''; |
198 | 198 | $cb = "wpinv_{$option['type']}_callback"; |
199 | 199 | $section = "wpinv_settings_{$tab}_$section"; |
200 | - $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
200 | + $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
201 | 201 | |
202 | - if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
203 | - $tip = wpinv_clean( $option['desc'] ); |
|
204 | - $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
205 | - unset( $option['desc'] ); |
|
206 | - } |
|
202 | + if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
203 | + $tip = wpinv_clean( $option['desc'] ); |
|
204 | + $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
|
205 | + unset( $option['desc'] ); |
|
206 | + } |
|
207 | 207 | |
208 | 208 | // Loop through all tabs. |
209 | 209 | add_settings_field( |
@@ -230,9 +230,9 @@ discard block |
||
230 | 230 | 'faux' => isset( $option['faux'] ) ? $option['faux'] : false, |
231 | 231 | 'onchange' => isset( $option['onchange'] ) ? $option['onchange'] : '', |
232 | 232 | 'custom' => isset( $option['custom'] ) ? $option['custom'] : '', |
233 | - 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
234 | - 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
235 | - 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
233 | + 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
234 | + 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
235 | + 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
236 | 236 | 'cols' => isset( $option['cols'] ) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
237 | 237 | 'rows' => isset( $option['rows'] ) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
238 | 238 | ) |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @return array |
247 | 247 | */ |
248 | 248 | function wpinv_get_registered_settings() { |
249 | - return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
249 | + return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -265,18 +265,18 @@ discard block |
||
265 | 265 | */ |
266 | 266 | function wpinv_settings_sanitize( $input = array() ) { |
267 | 267 | |
268 | - $wpinv_options = wpinv_get_options(); |
|
269 | - $raw_referrer = wp_get_raw_referer(); |
|
268 | + $wpinv_options = wpinv_get_options(); |
|
269 | + $raw_referrer = wp_get_raw_referer(); |
|
270 | 270 | |
271 | 271 | if ( empty( $raw_referrer ) ) { |
272 | - return array_merge( $wpinv_options, $input ); |
|
272 | + return array_merge( $wpinv_options, $input ); |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | wp_parse_str( $raw_referrer, $referrer ); |
276 | 276 | |
277 | - if ( in_array( 'gp-setup', $referrer ) ) { |
|
278 | - return array_merge( $wpinv_options, $input ); |
|
279 | - } |
|
277 | + if ( in_array( 'gp-setup', $referrer ) ) { |
|
278 | + return array_merge( $wpinv_options, $input ); |
|
279 | + } |
|
280 | 280 | |
281 | 281 | $settings = wpinv_get_registered_settings(); |
282 | 282 | $tab = isset( $referrer['tab'] ) ? $referrer['tab'] : 'general'; |
@@ -298,10 +298,10 @@ discard block |
||
298 | 298 | } |
299 | 299 | |
300 | 300 | // General filter |
301 | - $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
301 | + $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
302 | 302 | |
303 | - // Key specific filter. |
|
304 | - $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
303 | + // Key specific filter. |
|
304 | + $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
305 | 305 | } |
306 | 306 | |
307 | 307 | // Loop through the whitelist and unset any that are empty for the tab being saved |
@@ -344,14 +344,14 @@ discard block |
||
344 | 344 | |
345 | 345 | foreach ( $new_rates as $rate ) { |
346 | 346 | |
347 | - $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
348 | - $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
349 | - $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
350 | - $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
351 | - $rate['global'] = empty( $rate['state'] ); |
|
352 | - $tax_rates[] = $rate; |
|
347 | + $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
348 | + $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
349 | + $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
350 | + $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
351 | + $rate['global'] = empty( $rate['state'] ); |
|
352 | + $tax_rates[] = $rate; |
|
353 | 353 | |
354 | - } |
|
354 | + } |
|
355 | 355 | |
356 | 356 | update_option( 'wpinv_tax_rates', $tax_rates ); |
357 | 357 | |
@@ -364,21 +364,21 @@ discard block |
||
364 | 364 | return $input; |
365 | 365 | } |
366 | 366 | |
367 | - if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
368 | - return $input; |
|
369 | - } |
|
367 | + if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
368 | + return $input; |
|
369 | + } |
|
370 | 370 | |
371 | 371 | $new_rules = ! empty( $_POST['tax_rules'] ) ? wp_kses_post_deep( array_values( $_POST['tax_rules'] ) ) : array(); |
372 | 372 | $tax_rules = array(); |
373 | 373 | |
374 | 374 | foreach ( $new_rules as $rule ) { |
375 | 375 | |
376 | - $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
377 | - $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
378 | - $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
379 | - $tax_rules[] = $rule; |
|
376 | + $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
377 | + $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
378 | + $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
379 | + $tax_rules[] = $rule; |
|
380 | 380 | |
381 | - } |
|
381 | + } |
|
382 | 382 | |
383 | 383 | update_option( 'wpinv_tax_rules', $tax_rules ); |
384 | 384 | |
@@ -391,11 +391,11 @@ discard block |
||
391 | 391 | $tabs['general'] = __( 'General', 'invoicing' ); |
392 | 392 | $tabs['gateways'] = __( 'Payment Gateways', 'invoicing' ); |
393 | 393 | $tabs['taxes'] = __( 'Taxes', 'invoicing' ); |
394 | - $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
394 | + $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
395 | 395 | |
396 | - if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
397 | - $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
398 | - } |
|
396 | + if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
397 | + $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
398 | + } |
|
399 | 399 | |
400 | 400 | $tabs['privacy'] = __( 'Privacy', 'invoicing' ); |
401 | 401 | $tabs['misc'] = __( 'Misc', 'invoicing' ); |
@@ -426,53 +426,53 @@ discard block |
||
426 | 426 | 'general' => apply_filters( |
427 | 427 | 'wpinv_settings_sections_general', |
428 | 428 | array( |
429 | - 'main' => __( 'General Settings', 'invoicing' ), |
|
430 | - 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
431 | - 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
432 | - 'labels' => __( 'Label Texts', 'invoicing' ), |
|
429 | + 'main' => __( 'General Settings', 'invoicing' ), |
|
430 | + 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
431 | + 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
432 | + 'labels' => __( 'Label Texts', 'invoicing' ), |
|
433 | 433 | ) |
434 | 434 | ), |
435 | 435 | 'gateways' => apply_filters( |
436 | 436 | 'wpinv_settings_sections_gateways', |
437 | 437 | array( |
438 | - 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
438 | + 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
439 | 439 | ) |
440 | 440 | ), |
441 | 441 | 'taxes' => apply_filters( |
442 | 442 | 'wpinv_settings_sections_taxes', |
443 | 443 | array( |
444 | - 'main' => __( 'Tax Settings', 'invoicing' ), |
|
445 | - 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
446 | - 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
447 | - 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
444 | + 'main' => __( 'Tax Settings', 'invoicing' ), |
|
445 | + 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
446 | + 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
447 | + 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
448 | 448 | ) |
449 | 449 | ), |
450 | 450 | 'emails' => apply_filters( |
451 | 451 | 'wpinv_settings_sections_emails', |
452 | 452 | array( |
453 | - 'main' => __( 'Email Settings', 'invoicing' ), |
|
453 | + 'main' => __( 'Email Settings', 'invoicing' ), |
|
454 | 454 | ) |
455 | 455 | ), |
456 | 456 | |
457 | - 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
457 | + 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
458 | 458 | |
459 | 459 | 'privacy' => apply_filters( |
460 | 460 | 'wpinv_settings_sections_privacy', |
461 | 461 | array( |
462 | - 'main' => __( 'Privacy policy', 'invoicing' ), |
|
462 | + 'main' => __( 'Privacy policy', 'invoicing' ), |
|
463 | 463 | ) |
464 | 464 | ), |
465 | 465 | 'misc' => apply_filters( |
466 | 466 | 'wpinv_settings_sections_misc', |
467 | 467 | array( |
468 | - 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
469 | - 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
468 | + 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
469 | + 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
470 | 470 | ) |
471 | 471 | ), |
472 | 472 | 'tools' => apply_filters( |
473 | 473 | 'wpinv_settings_sections_tools', |
474 | 474 | array( |
475 | - 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
475 | + 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
476 | 476 | ) |
477 | 477 | ), |
478 | 478 | ); |
@@ -483,46 +483,46 @@ discard block |
||
483 | 483 | } |
484 | 484 | |
485 | 485 | function wpinv_get_pages( $with_slug = false, $default_label = null ) { |
486 | - $pages_options = array(); |
|
486 | + $pages_options = array(); |
|
487 | 487 | |
488 | - if ( $default_label !== null && $default_label !== false ) { |
|
489 | - $pages_options = array( '' => $default_label ); // Blank option |
|
490 | - } |
|
488 | + if ( $default_label !== null && $default_label !== false ) { |
|
489 | + $pages_options = array( '' => $default_label ); // Blank option |
|
490 | + } |
|
491 | 491 | |
492 | - $pages = get_pages(); |
|
493 | - if ( $pages ) { |
|
494 | - foreach ( $pages as $page ) { |
|
495 | - $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
|
492 | + $pages = get_pages(); |
|
493 | + if ( $pages ) { |
|
494 | + foreach ( $pages as $page ) { |
|
495 | + $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
|
496 | 496 | $pages_options[ $page->ID ] = $title; |
497 | - } |
|
498 | - } |
|
497 | + } |
|
498 | + } |
|
499 | 499 | |
500 | - return $pages_options; |
|
500 | + return $pages_options; |
|
501 | 501 | } |
502 | 502 | |
503 | 503 | function wpinv_header_callback( $args ) { |
504 | - if ( ! empty( $args['desc'] ) ) { |
|
504 | + if ( ! empty( $args['desc'] ) ) { |
|
505 | 505 | echo wp_kses_post( $args['desc'] ); |
506 | 506 | } |
507 | 507 | } |
508 | 508 | |
509 | 509 | function wpinv_hidden_callback( $args ) { |
510 | 510 | |
511 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
512 | - $value = wpinv_get_option( $args['id'], $std ); |
|
511 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
512 | + $value = wpinv_get_option( $args['id'], $std ); |
|
513 | 513 | |
514 | - if ( isset( $args['set_value'] ) ) { |
|
515 | - $value = $args['set_value']; |
|
516 | - } |
|
514 | + if ( isset( $args['set_value'] ) ) { |
|
515 | + $value = $args['set_value']; |
|
516 | + } |
|
517 | 517 | |
518 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
519 | - $args['readonly'] = true; |
|
520 | - $name = ''; |
|
521 | - } else { |
|
522 | - $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
523 | - } |
|
518 | + if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
519 | + $args['readonly'] = true; |
|
520 | + $name = ''; |
|
521 | + } else { |
|
522 | + $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
523 | + } |
|
524 | 524 | |
525 | - echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
525 | + echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
526 | 526 | |
527 | 527 | } |
528 | 528 | |
@@ -531,12 +531,12 @@ discard block |
||
531 | 531 | */ |
532 | 532 | function wpinv_checkbox_callback( $args ) { |
533 | 533 | |
534 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
535 | - $std = wpinv_get_option( $args['id'], $std ); |
|
536 | - $id = esc_attr( $args['id'] ); |
|
534 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
535 | + $std = wpinv_get_option( $args['id'], $std ); |
|
536 | + $id = esc_attr( $args['id'] ); |
|
537 | 537 | |
538 | - getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
539 | - ?> |
|
538 | + getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
539 | + ?> |
|
540 | 540 | <fieldset> |
541 | 541 | <label> |
542 | 542 | <input id="wpinv-settings-<?php echo esc_attr( $id ); ?>" name="wpinv_settings[<?php echo esc_attr( $id ); ?>]" <?php checked( empty( $std ), false ); ?> value="1" type="checkbox" /> |
@@ -548,75 +548,75 @@ discard block |
||
548 | 548 | |
549 | 549 | function wpinv_multicheck_callback( $args ) { |
550 | 550 | |
551 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
552 | - $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
551 | + $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
552 | + $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
553 | 553 | |
554 | - if ( ! empty( $args['options'] ) ) { |
|
554 | + if ( ! empty( $args['options'] ) ) { |
|
555 | 555 | |
556 | - $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
557 | - $value = wpinv_get_option( $args['id'], $std ); |
|
556 | + $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
557 | + $value = wpinv_get_option( $args['id'], $std ); |
|
558 | 558 | |
559 | - echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
559 | + echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
560 | 560 | foreach ( $args['options'] as $key => $option ) : |
561 | - $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
562 | - if ( in_array( $sanitize_key, $value ) ) { |
|
563 | - $enabled = $sanitize_key; |
|
564 | - } else { |
|
565 | - $enabled = null; |
|
566 | - } |
|
567 | - echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
568 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
569 | - endforeach; |
|
570 | - echo '</div>'; |
|
571 | - echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
572 | - } |
|
561 | + $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
562 | + if ( in_array( $sanitize_key, $value ) ) { |
|
563 | + $enabled = $sanitize_key; |
|
564 | + } else { |
|
565 | + $enabled = null; |
|
566 | + } |
|
567 | + echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
568 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
569 | + endforeach; |
|
570 | + echo '</div>'; |
|
571 | + echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
572 | + } |
|
573 | 573 | } |
574 | 574 | |
575 | 575 | function wpinv_payment_icons_callback( $args ) { |
576 | 576 | |
577 | 577 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
578 | - $value = wpinv_get_option( $args['id'], false ); |
|
578 | + $value = wpinv_get_option( $args['id'], false ); |
|
579 | 579 | |
580 | - if ( ! empty( $args['options'] ) ) { |
|
581 | - foreach ( $args['options'] as $key => $option ) { |
|
580 | + if ( ! empty( $args['options'] ) ) { |
|
581 | + foreach ( $args['options'] as $key => $option ) { |
|
582 | 582 | $sanitize_key = wpinv_sanitize_key( $key ); |
583 | 583 | |
584 | - if ( empty( $value ) ) { |
|
585 | - $enabled = $option; |
|
586 | - } else { |
|
587 | - $enabled = null; |
|
588 | - } |
|
589 | - |
|
590 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
591 | - |
|
592 | - echo '<input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
593 | - |
|
594 | - if ( wpinv_string_is_image_url( $key ) ) { |
|
595 | - echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
596 | - } else { |
|
597 | - $card = strtolower( str_replace( ' ', '', $option ) ); |
|
598 | - |
|
599 | - if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
600 | - $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
601 | - } else { |
|
602 | - $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
603 | - $content_dir = WP_CONTENT_DIR; |
|
604 | - |
|
605 | - if ( function_exists( 'wp_normalize_path' ) ) { |
|
606 | - // Replaces backslashes with forward slashes for Windows systems |
|
607 | - $image = wp_normalize_path( $image ); |
|
608 | - $content_dir = wp_normalize_path( $content_dir ); |
|
609 | - } |
|
610 | - |
|
611 | - $image = str_replace( $content_dir, content_url(), $image ); |
|
612 | - } |
|
613 | - |
|
614 | - echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
615 | - } |
|
616 | - echo wp_kses_post( $option ) . '</label>'; |
|
617 | - } |
|
618 | - echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
619 | - } |
|
584 | + if ( empty( $value ) ) { |
|
585 | + $enabled = $option; |
|
586 | + } else { |
|
587 | + $enabled = null; |
|
588 | + } |
|
589 | + |
|
590 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
591 | + |
|
592 | + echo '<input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
593 | + |
|
594 | + if ( wpinv_string_is_image_url( $key ) ) { |
|
595 | + echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
596 | + } else { |
|
597 | + $card = strtolower( str_replace( ' ', '', $option ) ); |
|
598 | + |
|
599 | + if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
600 | + $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
601 | + } else { |
|
602 | + $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
603 | + $content_dir = WP_CONTENT_DIR; |
|
604 | + |
|
605 | + if ( function_exists( 'wp_normalize_path' ) ) { |
|
606 | + // Replaces backslashes with forward slashes for Windows systems |
|
607 | + $image = wp_normalize_path( $image ); |
|
608 | + $content_dir = wp_normalize_path( $content_dir ); |
|
609 | + } |
|
610 | + |
|
611 | + $image = str_replace( $content_dir, content_url(), $image ); |
|
612 | + } |
|
613 | + |
|
614 | + echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
615 | + } |
|
616 | + echo wp_kses_post( $option ) . '</label>'; |
|
617 | + } |
|
618 | + echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
619 | + } |
|
620 | 620 | } |
621 | 621 | |
622 | 622 | /** |
@@ -624,9 +624,9 @@ discard block |
||
624 | 624 | */ |
625 | 625 | function wpinv_radio_callback( $args ) { |
626 | 626 | |
627 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
628 | - $std = wpinv_get_option( $args['id'], $std ); |
|
629 | - ?> |
|
627 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
628 | + $std = wpinv_get_option( $args['id'], $std ); |
|
629 | + ?> |
|
630 | 630 | <fieldset> |
631 | 631 | <ul id="wpinv-settings-<?php echo esc_attr( $args['id'] ); ?>" style="margin-top: 0;"> |
632 | 632 | <?php foreach ( $args['options'] as $key => $option ) : ?> |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | </ul> |
641 | 641 | </fieldset> |
642 | 642 | <?php |
643 | - getpaid_settings_description_callback( $args ); |
|
643 | + getpaid_settings_description_callback( $args ); |
|
644 | 644 | } |
645 | 645 | |
646 | 646 | /** |
@@ -648,10 +648,10 @@ discard block |
||
648 | 648 | */ |
649 | 649 | function getpaid_settings_description_callback( $args ) { |
650 | 650 | |
651 | - if ( ! empty( $args['desc'] ) ) { |
|
652 | - $description = $args['desc']; |
|
653 | - echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
654 | - } |
|
651 | + if ( ! empty( $args['desc'] ) ) { |
|
652 | + $description = $args['desc']; |
|
653 | + echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
654 | + } |
|
655 | 655 | |
656 | 656 | } |
657 | 657 | |
@@ -660,7 +660,7 @@ discard block |
||
660 | 660 | */ |
661 | 661 | function wpinv_gateways_callback() { |
662 | 662 | |
663 | - ?> |
|
663 | + ?> |
|
664 | 664 | </td> |
665 | 665 | </tr> |
666 | 666 | <tr class="bsui"> |
@@ -674,26 +674,26 @@ discard block |
||
674 | 674 | |
675 | 675 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
676 | 676 | $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
677 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
678 | - $value = wpinv_get_option( $args['id'], $std ); |
|
677 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
678 | + $value = wpinv_get_option( $args['id'], $std ); |
|
679 | 679 | |
680 | - echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
680 | + echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
681 | 681 | |
682 | - foreach ( $args['options'] as $key => $option ) : |
|
682 | + foreach ( $args['options'] as $key => $option ) : |
|
683 | 683 | |
684 | - echo '<option value="' . esc_attr( $key ) . '" '; |
|
684 | + echo '<option value="' . esc_attr( $key ) . '" '; |
|
685 | 685 | |
686 | - if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
686 | + if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
687 | 687 | selected( $key, $args['selected'] ); |
688 | 688 | } else { |
689 | 689 | selected( $key, $value ); |
690 | 690 | } |
691 | 691 | |
692 | - echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
693 | - endforeach; |
|
692 | + echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
693 | + endforeach; |
|
694 | 694 | |
695 | - echo '</select>'; |
|
696 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
695 | + echo '</select>'; |
|
696 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
697 | 697 | } |
698 | 698 | |
699 | 699 | /** |
@@ -704,38 +704,38 @@ discard block |
||
704 | 704 | */ |
705 | 705 | function wpinv_settings_attrs_helper( $args ) { |
706 | 706 | |
707 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
708 | - $id = esc_attr( $args['id'] ); |
|
709 | - $value = is_scalar( $value ) ? $value : ''; |
|
710 | - |
|
711 | - $attrs = array( |
|
712 | - 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
713 | - 'readonly' => ! empty( $args['faux'] ), |
|
714 | - 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
715 | - 'id' => 'wpinv-settings-' . $args['id'], |
|
716 | - 'style' => $args['style'], |
|
717 | - 'class' => $args['class'], |
|
718 | - 'placeholder' => $args['placeholder'], |
|
719 | - 'data-placeholder' => $args['placeholder'], |
|
720 | - ); |
|
707 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
708 | + $id = esc_attr( $args['id'] ); |
|
709 | + $value = is_scalar( $value ) ? $value : ''; |
|
710 | + |
|
711 | + $attrs = array( |
|
712 | + 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
713 | + 'readonly' => ! empty( $args['faux'] ), |
|
714 | + 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
715 | + 'id' => 'wpinv-settings-' . $args['id'], |
|
716 | + 'style' => $args['style'], |
|
717 | + 'class' => $args['class'], |
|
718 | + 'placeholder' => $args['placeholder'], |
|
719 | + 'data-placeholder' => $args['placeholder'], |
|
720 | + ); |
|
721 | 721 | |
722 | - if ( ! empty( $args['onchange'] ) ) { |
|
723 | - $attrs['onchange'] = $args['onchange']; |
|
724 | - } |
|
722 | + if ( ! empty( $args['onchange'] ) ) { |
|
723 | + $attrs['onchange'] = $args['onchange']; |
|
724 | + } |
|
725 | 725 | |
726 | - foreach ( $attrs as $key => $value ) { |
|
726 | + foreach ( $attrs as $key => $value ) { |
|
727 | 727 | |
728 | - if ( false === $value ) { |
|
729 | - continue; |
|
730 | - } |
|
728 | + if ( false === $value ) { |
|
729 | + continue; |
|
730 | + } |
|
731 | 731 | |
732 | - if ( true === $value ) { |
|
733 | - echo ' ' . esc_attr( $key ); |
|
734 | - } else { |
|
735 | - echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
736 | - } |
|
732 | + if ( true === $value ) { |
|
733 | + echo ' ' . esc_attr( $key ); |
|
734 | + } else { |
|
735 | + echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
736 | + } |
|
737 | 737 | |
738 | - } |
|
738 | + } |
|
739 | 739 | |
740 | 740 | } |
741 | 741 | |
@@ -744,7 +744,7 @@ discard block |
||
744 | 744 | */ |
745 | 745 | function wpinv_text_callback( $args ) { |
746 | 746 | |
747 | - ?> |
|
747 | + ?> |
|
748 | 748 | <label style="width: 100%;"> |
749 | 749 | <input type="text" <?php wpinv_settings_attrs_helper( $args ); ?>> |
750 | 750 | <?php getpaid_settings_description_callback( $args ); ?> |
@@ -758,7 +758,7 @@ discard block |
||
758 | 758 | */ |
759 | 759 | function wpinv_number_callback( $args ) { |
760 | 760 | |
761 | - ?> |
|
761 | + ?> |
|
762 | 762 | <label style="width: 100%;"> |
763 | 763 | <input type="number" step="<?php echo esc_attr( $args['step'] ); ?>" max="<?php echo intval( $args['max'] ); ?>" min="<?php echo intval( $args['min'] ); ?>" <?php wpinv_settings_attrs_helper( $args ); ?>> |
764 | 764 | <?php getpaid_settings_description_callback( $args ); ?> |
@@ -770,34 +770,34 @@ discard block |
||
770 | 770 | function wpinv_textarea_callback( $args ) { |
771 | 771 | |
772 | 772 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
773 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
774 | - $value = wpinv_get_option( $args['id'], $std ); |
|
773 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
774 | + $value = wpinv_get_option( $args['id'], $std ); |
|
775 | 775 | |
776 | 776 | $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
777 | 777 | $class = ( isset( $args['class'] ) && ! is_null( $args['class'] ) ) ? $args['class'] : 'large-text'; |
778 | 778 | |
779 | - echo '<textarea class="' . esc_attr( $class ) . ' txtarea-' . esc_attr( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . esc_attr( $args['cols'] ) . '" rows="' . esc_attr( $args['rows'] ) . '" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
780 | - echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
779 | + echo '<textarea class="' . esc_attr( $class ) . ' txtarea-' . esc_attr( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . esc_attr( $args['cols'] ) . '" rows="' . esc_attr( $args['rows'] ) . '" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
780 | + echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
781 | 781 | |
782 | 782 | } |
783 | 783 | |
784 | 784 | function wpinv_password_callback( $args ) { |
785 | 785 | |
786 | 786 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
787 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
788 | - $value = wpinv_get_option( $args['id'], $std ); |
|
787 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
788 | + $value = wpinv_get_option( $args['id'], $std ); |
|
789 | 789 | |
790 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
791 | - echo '<input type="password" class="' . esc_attr( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
792 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
790 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
791 | + echo '<input type="password" class="' . esc_attr( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
792 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
793 | 793 | |
794 | 794 | } |
795 | 795 | |
796 | 796 | function wpinv_missing_callback( $args ) { |
797 | - printf( |
|
798 | - esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
799 | - '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
800 | - ); |
|
797 | + printf( |
|
798 | + esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
799 | + '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
800 | + ); |
|
801 | 801 | } |
802 | 802 | |
803 | 803 | /** |
@@ -805,13 +805,13 @@ discard block |
||
805 | 805 | */ |
806 | 806 | function wpinv_select_callback( $args ) { |
807 | 807 | |
808 | - $desc = wp_kses_post( $args['desc'] ); |
|
809 | - $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
810 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
811 | - $value = wpinv_get_option( $args['id'], $value ); |
|
812 | - $rand = uniqid( 'random_id' ); |
|
808 | + $desc = wp_kses_post( $args['desc'] ); |
|
809 | + $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
810 | + $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
811 | + $value = wpinv_get_option( $args['id'], $value ); |
|
812 | + $rand = uniqid( 'random_id' ); |
|
813 | 813 | |
814 | - ?> |
|
814 | + ?> |
|
815 | 815 | <label style="width: 100%;"> |
816 | 816 | <select <?php wpinv_settings_attrs_helper( $args ); ?> data-allow-clear="true"> |
817 | 817 | <?php foreach ( $args['options'] as $option => $name ) : ?> |
@@ -844,50 +844,50 @@ discard block |
||
844 | 844 | function wpinv_color_select_callback( $args ) { |
845 | 845 | |
846 | 846 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
847 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
848 | - $value = wpinv_get_option( $args['id'], $std ); |
|
847 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
848 | + $value = wpinv_get_option( $args['id'], $std ); |
|
849 | 849 | |
850 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
850 | + echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
851 | 851 | |
852 | - foreach ( $args['options'] as $option => $color ) { |
|
853 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
854 | - } |
|
852 | + foreach ( $args['options'] as $option => $color ) { |
|
853 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
854 | + } |
|
855 | 855 | |
856 | - echo '</select>'; |
|
857 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
856 | + echo '</select>'; |
|
857 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
858 | 858 | |
859 | 859 | } |
860 | 860 | |
861 | 861 | function wpinv_rich_editor_callback( $args ) { |
862 | - global $wp_version; |
|
862 | + global $wp_version; |
|
863 | 863 | |
864 | 864 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
865 | 865 | |
866 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
867 | - $value = wpinv_get_option( $args['id'], $std ); |
|
866 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
867 | + $value = wpinv_get_option( $args['id'], $std ); |
|
868 | 868 | |
869 | - if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
870 | - $value = $std; |
|
871 | - } |
|
869 | + if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
870 | + $value = $std; |
|
871 | + } |
|
872 | 872 | |
873 | - $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
873 | + $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
874 | 874 | |
875 | - echo '<div class="getpaid-settings-editor-input">'; |
|
876 | - if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
877 | - wp_editor( |
|
875 | + echo '<div class="getpaid-settings-editor-input">'; |
|
876 | + if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
877 | + wp_editor( |
|
878 | 878 | stripslashes( $value ), |
879 | 879 | 'wpinv_settings_' . esc_attr( $args['id'] ), |
880 | 880 | array( |
881 | - 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
882 | - 'textarea_rows' => absint( $rows ), |
|
883 | - 'media_buttons' => false, |
|
881 | + 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
882 | + 'textarea_rows' => absint( $rows ), |
|
883 | + 'media_buttons' => false, |
|
884 | 884 | ) |
885 | 885 | ); |
886 | - } else { |
|
887 | - echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
888 | - } |
|
886 | + } else { |
|
887 | + echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
888 | + } |
|
889 | 889 | |
890 | - echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
890 | + echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
891 | 891 | |
892 | 892 | } |
893 | 893 | |
@@ -895,51 +895,51 @@ discard block |
||
895 | 895 | |
896 | 896 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
897 | 897 | |
898 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
899 | - $value = wpinv_get_option( $args['id'], $std ); |
|
898 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
899 | + $value = wpinv_get_option( $args['id'], $std ); |
|
900 | 900 | |
901 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
902 | - echo '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
903 | - echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
904 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
901 | + $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
902 | + echo '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
903 | + echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
904 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
905 | 905 | |
906 | 906 | } |
907 | 907 | |
908 | 908 | function wpinv_color_callback( $args ) { |
909 | 909 | |
910 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
911 | - $value = wpinv_get_option( $args['id'], $std ); |
|
910 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
911 | + $value = wpinv_get_option( $args['id'], $std ); |
|
912 | 912 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
913 | 913 | |
914 | - echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $std ) . '" />'; |
|
915 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
914 | + echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $std ) . '" />'; |
|
915 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
916 | 916 | |
917 | 917 | } |
918 | 918 | |
919 | 919 | function wpinv_country_states_callback( $args ) { |
920 | 920 | |
921 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
922 | - $value = wpinv_get_option( $args['id'], $std ); |
|
921 | + $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
922 | + $value = wpinv_get_option( $args['id'], $std ); |
|
923 | 923 | |
924 | 924 | $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
925 | 925 | |
926 | - if ( isset( $args['placeholder'] ) ) { |
|
927 | - $placeholder = $args['placeholder']; |
|
928 | - } else { |
|
929 | - $placeholder = ''; |
|
930 | - } |
|
926 | + if ( isset( $args['placeholder'] ) ) { |
|
927 | + $placeholder = $args['placeholder']; |
|
928 | + } else { |
|
929 | + $placeholder = ''; |
|
930 | + } |
|
931 | 931 | |
932 | - $states = wpinv_get_country_states(); |
|
932 | + $states = wpinv_get_country_states(); |
|
933 | 933 | |
934 | - $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
935 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="' . esc_attr( $class ) . '" data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
934 | + $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
935 | + echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="' . esc_attr( $class ) . '" data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
936 | 936 | |
937 | - foreach ( $states as $option => $name ) { |
|
938 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
939 | - } |
|
937 | + foreach ( $states as $option => $name ) { |
|
938 | + echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
939 | + } |
|
940 | 940 | |
941 | - echo '</select>'; |
|
942 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
941 | + echo '</select>'; |
|
942 | + echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
943 | 943 | |
944 | 944 | } |
945 | 945 | |
@@ -948,7 +948,7 @@ discard block |
||
948 | 948 | */ |
949 | 949 | function wpinv_tax_rates_callback() { |
950 | 950 | |
951 | - ?> |
|
951 | + ?> |
|
952 | 952 | </td> |
953 | 953 | </tr> |
954 | 954 | <tr class="bsui"> |
@@ -964,9 +964,9 @@ discard block |
||
964 | 964 | */ |
965 | 965 | function wpinv_tax_rate_callback( $tax_rate, $key ) { |
966 | 966 | |
967 | - $key = sanitize_key( $key ); |
|
968 | - $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
969 | - include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
967 | + $key = sanitize_key( $key ); |
|
968 | + $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
969 | + include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
970 | 970 | |
971 | 971 | } |
972 | 972 | |
@@ -975,7 +975,7 @@ discard block |
||
975 | 975 | */ |
976 | 976 | function wpinv_tax_rules_callback() { |
977 | 977 | |
978 | - ?> |
|
978 | + ?> |
|
979 | 979 | </td> |
980 | 980 | </tr> |
981 | 981 | <tr class="bsui"> |
@@ -1013,14 +1013,14 @@ discard block |
||
1013 | 1013 | <td> |
1014 | 1014 | <a href=" |
1015 | 1015 | <?php |
1016 | - echo esc_url( |
|
1017 | - wp_nonce_url( |
|
1018 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
1019 | - 'getpaid-nonce', |
|
1020 | - 'getpaid-nonce' |
|
1021 | - ) |
|
1022 | - ); |
|
1023 | - ?> |
|
1016 | + echo esc_url( |
|
1017 | + wp_nonce_url( |
|
1018 | + add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
1019 | + 'getpaid-nonce', |
|
1020 | + 'getpaid-nonce' |
|
1021 | + ) |
|
1022 | + ); |
|
1023 | + ?> |
|
1024 | 1024 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
1025 | 1025 | </td> |
1026 | 1026 | </tr> |
@@ -1032,14 +1032,14 @@ discard block |
||
1032 | 1032 | <td> |
1033 | 1033 | <a href=" |
1034 | 1034 | <?php |
1035 | - echo esc_url( |
|
1036 | - wp_nonce_url( |
|
1037 | - add_query_arg( 'getpaid-admin-action', 'refresh_permalinks' ), |
|
1038 | - 'getpaid-nonce', |
|
1039 | - 'getpaid-nonce' |
|
1040 | - ) |
|
1041 | - ); |
|
1042 | - ?> |
|
1035 | + echo esc_url( |
|
1036 | + wp_nonce_url( |
|
1037 | + add_query_arg( 'getpaid-admin-action', 'refresh_permalinks' ), |
|
1038 | + 'getpaid-nonce', |
|
1039 | + 'getpaid-nonce' |
|
1040 | + ) |
|
1041 | + ); |
|
1042 | + ?> |
|
1043 | 1043 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
1044 | 1044 | </td> |
1045 | 1045 | </tr> |
@@ -1051,14 +1051,14 @@ discard block |
||
1051 | 1051 | <td> |
1052 | 1052 | <a href=" |
1053 | 1053 | <?php |
1054 | - echo esc_url( |
|
1055 | - wp_nonce_url( |
|
1056 | - add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
1057 | - 'getpaid-nonce', |
|
1058 | - 'getpaid-nonce' |
|
1059 | - ) |
|
1060 | - ); |
|
1061 | - ?> |
|
1054 | + echo esc_url( |
|
1055 | + wp_nonce_url( |
|
1056 | + add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
1057 | + 'getpaid-nonce', |
|
1058 | + 'getpaid-nonce' |
|
1059 | + ) |
|
1060 | + ); |
|
1061 | + ?> |
|
1062 | 1062 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
1063 | 1063 | </td> |
1064 | 1064 | </tr> |
@@ -1070,14 +1070,14 @@ discard block |
||
1070 | 1070 | <td> |
1071 | 1071 | <a href=" |
1072 | 1072 | <?php |
1073 | - echo esc_url( |
|
1074 | - wp_nonce_url( |
|
1075 | - add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
1076 | - 'getpaid-nonce', |
|
1077 | - 'getpaid-nonce' |
|
1078 | - ) |
|
1079 | - ); |
|
1080 | - ?> |
|
1073 | + echo esc_url( |
|
1074 | + wp_nonce_url( |
|
1075 | + add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
1076 | + 'getpaid-nonce', |
|
1077 | + 'getpaid-nonce' |
|
1078 | + ) |
|
1079 | + ); |
|
1080 | + ?> |
|
1081 | 1081 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
1082 | 1082 | </td> |
1083 | 1083 | </tr> |
@@ -1090,14 +1090,14 @@ discard block |
||
1090 | 1090 | <td> |
1091 | 1091 | <a href=" |
1092 | 1092 | <?php |
1093 | - echo esc_url( |
|
1094 | - wp_nonce_url( |
|
1095 | - add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
1096 | - 'getpaid-nonce', |
|
1097 | - 'getpaid-nonce' |
|
1098 | - ) |
|
1099 | - ); |
|
1100 | - ?> |
|
1093 | + echo esc_url( |
|
1094 | + wp_nonce_url( |
|
1095 | + add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
1096 | + 'getpaid-nonce', |
|
1097 | + 'getpaid-nonce' |
|
1098 | + ) |
|
1099 | + ); |
|
1100 | + ?> |
|
1101 | 1101 | " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
1102 | 1102 | </td> |
1103 | 1103 | </tr> |
@@ -1110,8 +1110,8 @@ discard block |
||
1110 | 1110 | <td> |
1111 | 1111 | <a href=" |
1112 | 1112 | <?php |
1113 | - echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
1114 | - ?> |
|
1113 | + echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
1114 | + ?> |
|
1115 | 1115 | " class="button button-primary"><?php esc_html_e( 'Launch', 'invoicing' ); ?></a> |
1116 | 1116 | </td> |
1117 | 1117 | </tr> |
@@ -1125,19 +1125,19 @@ discard block |
||
1125 | 1125 | |
1126 | 1126 | |
1127 | 1127 | function wpinv_descriptive_text_callback( $args ) { |
1128 | - echo wp_kses_post( $args['desc'] ); |
|
1128 | + echo wp_kses_post( $args['desc'] ); |
|
1129 | 1129 | } |
1130 | 1130 | |
1131 | 1131 | function wpinv_raw_html_callback( $args ) { |
1132 | - echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
1132 | + echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
1133 | 1133 | } |
1134 | 1134 | |
1135 | 1135 | function wpinv_hook_callback( $args ) { |
1136 | - do_action( 'wpinv_' . $args['id'], $args ); |
|
1136 | + do_action( 'wpinv_' . $args['id'], $args ); |
|
1137 | 1137 | } |
1138 | 1138 | |
1139 | 1139 | function wpinv_set_settings_cap() { |
1140 | - return wpinv_get_capability(); |
|
1140 | + return wpinv_get_capability(); |
|
1141 | 1141 | } |
1142 | 1142 | add_filter( 'option_page_capability_wpinv_settings', 'wpinv_set_settings_cap' ); |
1143 | 1143 | |
@@ -1161,15 +1161,15 @@ discard block |
||
1161 | 1161 | */ |
1162 | 1162 | function wpinv_get_merge_tags_help_text( $subscription = false ) { |
1163 | 1163 | |
1164 | - $url = $subscription ? 'https://gist.github.com/picocodes/3d213982d57c34edf7a46fd3f0e8583e' : 'https://gist.github.com/picocodes/43bdc4d4bbba844534b2722e2af0b58f'; |
|
1165 | - $link = sprintf( |
|
1166 | - '<strong><a href="%s" target="_blank">%s</a></strong>', |
|
1167 | - $url, |
|
1168 | - esc_html__( 'View available merge tags.', 'wpinv-quotes' ) |
|
1169 | - ); |
|
1164 | + $url = $subscription ? 'https://gist.github.com/picocodes/3d213982d57c34edf7a46fd3f0e8583e' : 'https://gist.github.com/picocodes/43bdc4d4bbba844534b2722e2af0b58f'; |
|
1165 | + $link = sprintf( |
|
1166 | + '<strong><a href="%s" target="_blank">%s</a></strong>', |
|
1167 | + $url, |
|
1168 | + esc_html__( 'View available merge tags.', 'wpinv-quotes' ) |
|
1169 | + ); |
|
1170 | 1170 | |
1171 | - $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
1171 | + $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
1172 | 1172 | |
1173 | - return "$description $link"; |
|
1173 | + return "$description $link"; |
|
1174 | 1174 | |
1175 | 1175 | } |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @since 1.0.0 |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Retrieves all default settings. |
@@ -16,13 +16,13 @@ discard block |
||
16 | 16 | function wpinv_get_settings() { |
17 | 17 | $defaults = array(); |
18 | 18 | |
19 | - foreach ( array_values( wpinv_get_registered_settings() ) as $tab_settings ) { |
|
19 | + foreach (array_values(wpinv_get_registered_settings()) as $tab_settings) { |
|
20 | 20 | |
21 | - foreach ( array_values( $tab_settings ) as $section_settings ) { |
|
21 | + foreach (array_values($tab_settings) as $section_settings) { |
|
22 | 22 | |
23 | - foreach ( $section_settings as $key => $setting ) { |
|
24 | - if ( isset( $setting['std'] ) ) { |
|
25 | - $defaults[ $key ] = $setting['std']; |
|
23 | + foreach ($section_settings as $key => $setting) { |
|
24 | + if (isset($setting['std'])) { |
|
25 | + $defaults[$key] = $setting['std']; |
|
26 | 26 | } |
27 | 27 | } |
28 | 28 | } |
@@ -41,12 +41,12 @@ discard block |
||
41 | 41 | global $wpinv_options; |
42 | 42 | |
43 | 43 | // Try fetching the saved options. |
44 | - if ( empty( $wpinv_options ) ) { |
|
45 | - $wpinv_options = get_option( 'wpinv_settings' ); |
|
44 | + if (empty($wpinv_options)) { |
|
45 | + $wpinv_options = get_option('wpinv_settings'); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | // If that fails, don't fetch the default settings to prevent a loop. |
49 | - if ( ! is_array( $wpinv_options ) ) { |
|
49 | + if (!is_array($wpinv_options)) { |
|
50 | 50 | $wpinv_options = array(); |
51 | 51 | } |
52 | 52 | |
@@ -60,13 +60,13 @@ discard block |
||
60 | 60 | * @param mixed $default The default value to use if the setting has not been set. |
61 | 61 | * @return mixed |
62 | 62 | */ |
63 | -function wpinv_get_option( $key = '', $default = false ) { |
|
63 | +function wpinv_get_option($key = '', $default = false) { |
|
64 | 64 | |
65 | 65 | $options = wpinv_get_options(); |
66 | - $value = isset( $options[ $key ] ) ? $options[ $key ] : $default; |
|
67 | - $value = apply_filters( 'wpinv_get_option', $value, $key, $default ); |
|
66 | + $value = isset($options[$key]) ? $options[$key] : $default; |
|
67 | + $value = apply_filters('wpinv_get_option', $value, $key, $default); |
|
68 | 68 | |
69 | - return apply_filters( 'wpinv_get_option_' . $key, $value, $key, $default ); |
|
69 | + return apply_filters('wpinv_get_option_' . $key, $value, $key, $default); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | /** |
@@ -75,11 +75,11 @@ discard block |
||
75 | 75 | * @param array $options the new options. |
76 | 76 | * @return bool |
77 | 77 | */ |
78 | -function wpinv_update_options( $options ) { |
|
78 | +function wpinv_update_options($options) { |
|
79 | 79 | global $wpinv_options; |
80 | 80 | |
81 | 81 | // update the option. |
82 | - if ( is_array( $options ) && update_option( 'wpinv_settings', $options ) ) { |
|
82 | + if (is_array($options) && update_option('wpinv_settings', $options)) { |
|
83 | 83 | $wpinv_options = $options; |
84 | 84 | return true; |
85 | 85 | } |
@@ -94,24 +94,24 @@ discard block |
||
94 | 94 | * @param mixed $value The setting value. |
95 | 95 | * @return bool |
96 | 96 | */ |
97 | -function wpinv_update_option( $key = '', $value = false ) { |
|
97 | +function wpinv_update_option($key = '', $value = false) { |
|
98 | 98 | |
99 | 99 | // If no key, exit. |
100 | - if ( empty( $key ) ) { |
|
100 | + if (empty($key)) { |
|
101 | 101 | return false; |
102 | 102 | } |
103 | 103 | |
104 | 104 | // Maybe delete the option instead. |
105 | - if ( is_null( $value ) ) { |
|
106 | - return wpinv_delete_option( $key ); |
|
105 | + if (is_null($value)) { |
|
106 | + return wpinv_delete_option($key); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | // Prepare the new options. |
110 | 110 | $options = wpinv_get_options(); |
111 | - $options[ $key ] = apply_filters( 'wpinv_update_option', $value, $key ); |
|
111 | + $options[$key] = apply_filters('wpinv_update_option', $value, $key); |
|
112 | 112 | |
113 | 113 | // Save the new options. |
114 | - return wpinv_update_options( $options ); |
|
114 | + return wpinv_update_options($options); |
|
115 | 115 | |
116 | 116 | } |
117 | 117 | |
@@ -121,18 +121,18 @@ discard block |
||
121 | 121 | * @param string $key the setting key. |
122 | 122 | * @return bool |
123 | 123 | */ |
124 | -function wpinv_delete_option( $key = '' ) { |
|
124 | +function wpinv_delete_option($key = '') { |
|
125 | 125 | |
126 | 126 | // If no key, exit |
127 | - if ( empty( $key ) ) { |
|
127 | + if (empty($key)) { |
|
128 | 128 | return false; |
129 | 129 | } |
130 | 130 | |
131 | 131 | $options = wpinv_get_options(); |
132 | 132 | |
133 | - if ( isset( $options[ $key ] ) ) { |
|
134 | - unset( $options[ $key ] ); |
|
135 | - return wpinv_update_options( $options ); |
|
133 | + if (isset($options[$key])) { |
|
134 | + unset($options[$key]); |
|
135 | + return wpinv_update_options($options); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | return true; |
@@ -144,22 +144,22 @@ discard block |
||
144 | 144 | * |
145 | 145 | */ |
146 | 146 | function wpinv_register_settings() { |
147 | - do_action( 'getpaid_before_register_settings' ); |
|
147 | + do_action('getpaid_before_register_settings'); |
|
148 | 148 | |
149 | 149 | // Loop through all tabs. |
150 | - foreach ( wpinv_get_registered_settings() as $tab => $sections ) { |
|
150 | + foreach (wpinv_get_registered_settings() as $tab => $sections) { |
|
151 | 151 | |
152 | 152 | // In each tab, loop through sections. |
153 | - foreach ( $sections as $section => $settings ) { |
|
153 | + foreach ($sections as $section => $settings) { |
|
154 | 154 | |
155 | 155 | // Check for backwards compatibility |
156 | - $section_tabs = wpinv_get_settings_tab_sections( $tab ); |
|
157 | - if ( ! is_array( $section_tabs ) || ! array_key_exists( $section, $section_tabs ) ) { |
|
156 | + $section_tabs = wpinv_get_settings_tab_sections($tab); |
|
157 | + if (!is_array($section_tabs) || !array_key_exists($section, $section_tabs)) { |
|
158 | 158 | $section = 'main'; |
159 | 159 | $settings = $sections; |
160 | 160 | } |
161 | 161 | |
162 | - do_action( "getpaid_register_{$tab}_{$section}" ); |
|
162 | + do_action("getpaid_register_{$tab}_{$section}"); |
|
163 | 163 | |
164 | 164 | // Register the setting section. |
165 | 165 | add_settings_section( |
@@ -169,20 +169,20 @@ discard block |
||
169 | 169 | 'wpinv_settings_' . $tab . '_' . $section |
170 | 170 | ); |
171 | 171 | |
172 | - foreach ( $settings as $option ) { |
|
173 | - if ( ! empty( $option['id'] ) ) { |
|
174 | - wpinv_register_settings_option( $tab, $section, $option ); |
|
172 | + foreach ($settings as $option) { |
|
173 | + if (!empty($option['id'])) { |
|
174 | + wpinv_register_settings_option($tab, $section, $option); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | } |
178 | 178 | } |
179 | 179 | |
180 | 180 | // Creates our settings in the options table. |
181 | - register_setting( 'wpinv_settings', 'wpinv_settings', 'wpinv_settings_sanitize' ); |
|
181 | + register_setting('wpinv_settings', 'wpinv_settings', 'wpinv_settings_sanitize'); |
|
182 | 182 | |
183 | - do_action( 'getpaid_after_register_settings' ); |
|
183 | + do_action('getpaid_after_register_settings'); |
|
184 | 184 | } |
185 | -add_action( 'admin_init', 'wpinv_register_settings' ); |
|
185 | +add_action('admin_init', 'wpinv_register_settings'); |
|
186 | 186 | |
187 | 187 | /** |
188 | 188 | * Register a single settings option. |
@@ -192,49 +192,49 @@ discard block |
||
192 | 192 | * @param string $option |
193 | 193 | * |
194 | 194 | */ |
195 | -function wpinv_register_settings_option( $tab, $section, $option ) { |
|
195 | +function wpinv_register_settings_option($tab, $section, $option) { |
|
196 | 196 | |
197 | - $name = isset( $option['name'] ) ? $option['name'] : ''; |
|
197 | + $name = isset($option['name']) ? $option['name'] : ''; |
|
198 | 198 | $cb = "wpinv_{$option['type']}_callback"; |
199 | 199 | $section = "wpinv_settings_{$tab}_$section"; |
200 | - $is_wizzard = is_admin() && isset( $_GET['page'] ) && 'gp-setup' == $_GET['page']; |
|
200 | + $is_wizzard = is_admin() && isset($_GET['page']) && 'gp-setup' == $_GET['page']; |
|
201 | 201 | |
202 | - if ( isset( $option['desc'] ) && ( ! $is_wizzard && ! empty( $option['help-tip'] ) ) ) { |
|
203 | - $tip = wpinv_clean( $option['desc'] ); |
|
202 | + if (isset($option['desc']) && (!$is_wizzard && !empty($option['help-tip']))) { |
|
203 | + $tip = wpinv_clean($option['desc']); |
|
204 | 204 | $name .= "<span class='dashicons dashicons-editor-help wpi-help-tip' title='$tip'></span>"; |
205 | - unset( $option['desc'] ); |
|
205 | + unset($option['desc']); |
|
206 | 206 | } |
207 | 207 | |
208 | 208 | // Loop through all tabs. |
209 | 209 | add_settings_field( |
210 | 210 | 'wpinv_settings[' . $option['id'] . ']', |
211 | 211 | $name, |
212 | - function_exists( $cb ) ? $cb : 'wpinv_missing_callback', |
|
212 | + function_exists($cb) ? $cb : 'wpinv_missing_callback', |
|
213 | 213 | $section, |
214 | 214 | $section, |
215 | 215 | array( |
216 | 216 | 'section' => $section, |
217 | - 'id' => isset( $option['id'] ) ? $option['id'] : uniqid( 'wpinv-' ), |
|
218 | - 'desc' => isset( $option['desc'] ) ? $option['desc'] : '', |
|
217 | + 'id' => isset($option['id']) ? $option['id'] : uniqid('wpinv-'), |
|
218 | + 'desc' => isset($option['desc']) ? $option['desc'] : '', |
|
219 | 219 | 'name' => $name, |
220 | - 'size' => isset( $option['size'] ) ? $option['size'] : null, |
|
221 | - 'options' => isset( $option['options'] ) ? $option['options'] : '', |
|
222 | - 'selected' => isset( $option['selected'] ) ? $option['selected'] : null, |
|
223 | - 'std' => isset( $option['std'] ) ? $option['std'] : '', |
|
224 | - 'min' => isset( $option['min'] ) ? $option['min'] : 0, |
|
225 | - 'max' => isset( $option['max'] ) ? $option['max'] : 999999, |
|
226 | - 'step' => isset( $option['step'] ) ? $option['step'] : 1, |
|
227 | - 'placeholder' => isset( $option['placeholder'] ) ? $option['placeholder'] : null, |
|
228 | - 'allow_blank' => isset( $option['allow_blank'] ) ? $option['allow_blank'] : true, |
|
229 | - 'readonly' => isset( $option['readonly'] ) ? $option['readonly'] : false, |
|
230 | - 'faux' => isset( $option['faux'] ) ? $option['faux'] : false, |
|
231 | - 'onchange' => isset( $option['onchange'] ) ? $option['onchange'] : '', |
|
232 | - 'custom' => isset( $option['custom'] ) ? $option['custom'] : '', |
|
233 | - 'default_content' => isset( $option['default_content'] ) ? $option['default_content'] : '', |
|
234 | - 'class' => isset( $option['class'] ) ? $option['class'] : '', |
|
235 | - 'style' => isset( $option['style'] ) ? $option['style'] : '', |
|
236 | - 'cols' => isset( $option['cols'] ) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
|
237 | - 'rows' => isset( $option['rows'] ) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
|
220 | + 'size' => isset($option['size']) ? $option['size'] : null, |
|
221 | + 'options' => isset($option['options']) ? $option['options'] : '', |
|
222 | + 'selected' => isset($option['selected']) ? $option['selected'] : null, |
|
223 | + 'std' => isset($option['std']) ? $option['std'] : '', |
|
224 | + 'min' => isset($option['min']) ? $option['min'] : 0, |
|
225 | + 'max' => isset($option['max']) ? $option['max'] : 999999, |
|
226 | + 'step' => isset($option['step']) ? $option['step'] : 1, |
|
227 | + 'placeholder' => isset($option['placeholder']) ? $option['placeholder'] : null, |
|
228 | + 'allow_blank' => isset($option['allow_blank']) ? $option['allow_blank'] : true, |
|
229 | + 'readonly' => isset($option['readonly']) ? $option['readonly'] : false, |
|
230 | + 'faux' => isset($option['faux']) ? $option['faux'] : false, |
|
231 | + 'onchange' => isset($option['onchange']) ? $option['onchange'] : '', |
|
232 | + 'custom' => isset($option['custom']) ? $option['custom'] : '', |
|
233 | + 'default_content' => isset($option['default_content']) ? $option['default_content'] : '', |
|
234 | + 'class' => isset($option['class']) ? $option['class'] : '', |
|
235 | + 'style' => isset($option['style']) ? $option['style'] : '', |
|
236 | + 'cols' => isset($option['cols']) && (int) $option['cols'] > 0 ? (int) $option['cols'] : 50, |
|
237 | + 'rows' => isset($option['rows']) && (int) $option['rows'] > 0 ? (int) $option['rows'] : 5, |
|
238 | 238 | ) |
239 | 239 | ); |
240 | 240 | |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | * @return array |
247 | 247 | */ |
248 | 248 | function wpinv_get_registered_settings() { |
249 | - return array_filter( apply_filters( 'wpinv_registered_settings', wpinv_get_data( 'admin-settings' ) ) ); |
|
249 | + return array_filter(apply_filters('wpinv_registered_settings', wpinv_get_data('admin-settings'))); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | * @return array |
256 | 256 | */ |
257 | 257 | function getpaid_get_integration_settings() { |
258 | - return apply_filters( 'getpaid_integration_settings', array() ); |
|
258 | + return apply_filters('getpaid_integration_settings', array()); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | /** |
@@ -263,153 +263,153 @@ discard block |
||
263 | 263 | * |
264 | 264 | * @return array |
265 | 265 | */ |
266 | -function wpinv_settings_sanitize( $input = array() ) { |
|
266 | +function wpinv_settings_sanitize($input = array()) { |
|
267 | 267 | |
268 | 268 | $wpinv_options = wpinv_get_options(); |
269 | 269 | $raw_referrer = wp_get_raw_referer(); |
270 | 270 | |
271 | - if ( empty( $raw_referrer ) ) { |
|
272 | - return array_merge( $wpinv_options, $input ); |
|
271 | + if (empty($raw_referrer)) { |
|
272 | + return array_merge($wpinv_options, $input); |
|
273 | 273 | } |
274 | 274 | |
275 | - wp_parse_str( $raw_referrer, $referrer ); |
|
275 | + wp_parse_str($raw_referrer, $referrer); |
|
276 | 276 | |
277 | - if ( in_array( 'gp-setup', $referrer ) ) { |
|
278 | - return array_merge( $wpinv_options, $input ); |
|
277 | + if (in_array('gp-setup', $referrer)) { |
|
278 | + return array_merge($wpinv_options, $input); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | $settings = wpinv_get_registered_settings(); |
282 | - $tab = isset( $referrer['tab'] ) ? $referrer['tab'] : 'general'; |
|
283 | - $section = isset( $referrer['section'] ) ? $referrer['section'] : 'main'; |
|
282 | + $tab = isset($referrer['tab']) ? $referrer['tab'] : 'general'; |
|
283 | + $section = isset($referrer['section']) ? $referrer['section'] : 'main'; |
|
284 | 284 | |
285 | 285 | $input = $input ? $input : array(); |
286 | - $input = apply_filters( 'wpinv_settings_tab_' . $tab . '_sanitize', $input ); |
|
287 | - $input = apply_filters( 'wpinv_settings_' . $tab . '-' . $section . '_sanitize', $input ); |
|
286 | + $input = apply_filters('wpinv_settings_tab_' . $tab . '_sanitize', $input); |
|
287 | + $input = apply_filters('wpinv_settings_' . $tab . '-' . $section . '_sanitize', $input); |
|
288 | 288 | |
289 | 289 | // Loop through each setting being saved and pass it through a sanitization filter |
290 | - foreach ( $input as $key => $value ) { |
|
290 | + foreach ($input as $key => $value) { |
|
291 | 291 | |
292 | 292 | // Get the setting type (checkbox, select, etc) |
293 | - $type = isset( $settings[ $tab ][ $section ][ $key ]['type'] ) ? $settings[ $tab ][ $section ][ $key ]['type'] : false; |
|
293 | + $type = isset($settings[$tab][$section][$key]['type']) ? $settings[$tab][$section][$key]['type'] : false; |
|
294 | 294 | |
295 | - if ( $type ) { |
|
295 | + if ($type) { |
|
296 | 296 | // Field type specific filter |
297 | - $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$type", $value, $key ); |
|
297 | + $input[$key] = apply_filters("wpinv_settings_sanitize_$type", $value, $key); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | // General filter |
301 | - $input[ $key ] = apply_filters( 'wpinv_settings_sanitize', $input[ $key ], $key ); |
|
301 | + $input[$key] = apply_filters('wpinv_settings_sanitize', $input[$key], $key); |
|
302 | 302 | |
303 | 303 | // Key specific filter. |
304 | - $input[ $key ] = apply_filters( "wpinv_settings_sanitize_$key", $input[ $key ] ); |
|
304 | + $input[$key] = apply_filters("wpinv_settings_sanitize_$key", $input[$key]); |
|
305 | 305 | } |
306 | 306 | |
307 | 307 | // Loop through the whitelist and unset any that are empty for the tab being saved |
308 | - $main_settings = isset( $settings[ $tab ] ) ? $settings[ $tab ] : array(); // Check for extensions that aren't using new sections |
|
309 | - $section_settings = ! empty( $settings[ $tab ][ $section ] ) ? $settings[ $tab ][ $section ] : array(); |
|
308 | + $main_settings = isset($settings[$tab]) ? $settings[$tab] : array(); // Check for extensions that aren't using new sections |
|
309 | + $section_settings = !empty($settings[$tab][$section]) ? $settings[$tab][$section] : array(); |
|
310 | 310 | |
311 | - $found_settings = array_merge( $main_settings, $section_settings ); |
|
311 | + $found_settings = array_merge($main_settings, $section_settings); |
|
312 | 312 | |
313 | - if ( ! empty( $found_settings ) ) { |
|
314 | - foreach ( $found_settings as $key => $value ) { |
|
313 | + if (!empty($found_settings)) { |
|
314 | + foreach ($found_settings as $key => $value) { |
|
315 | 315 | |
316 | 316 | // settings used to have numeric keys, now they have keys that match the option ID. This ensures both methods work |
317 | - if ( is_numeric( $key ) ) { |
|
317 | + if (is_numeric($key)) { |
|
318 | 318 | $key = $value['id']; |
319 | 319 | } |
320 | 320 | |
321 | - if ( ! isset( $input[ $key ] ) && isset( $wpinv_options[ $key ] ) ) { |
|
322 | - unset( $wpinv_options[ $key ] ); |
|
321 | + if (!isset($input[$key]) && isset($wpinv_options[$key])) { |
|
322 | + unset($wpinv_options[$key]); |
|
323 | 323 | } |
324 | 324 | } |
325 | 325 | } |
326 | 326 | |
327 | 327 | // Merge our new settings with the existing |
328 | - $output = array_merge( $wpinv_options, $input ); |
|
328 | + $output = array_merge($wpinv_options, $input); |
|
329 | 329 | |
330 | - add_settings_error( 'wpinv-notices', '', __( 'Settings updated.', 'invoicing' ), 'updated' ); |
|
330 | + add_settings_error('wpinv-notices', '', __('Settings updated.', 'invoicing'), 'updated'); |
|
331 | 331 | |
332 | 332 | return $output; |
333 | 333 | } |
334 | -add_filter( 'wpinv_settings_sanitize_text', 'trim', 10, 1 ); |
|
335 | -add_filter( 'wpinv_settings_sanitize_tax_rate', 'wpinv_sanitize_amount' ); |
|
334 | +add_filter('wpinv_settings_sanitize_text', 'trim', 10, 1); |
|
335 | +add_filter('wpinv_settings_sanitize_tax_rate', 'wpinv_sanitize_amount'); |
|
336 | 336 | |
337 | -function wpinv_settings_sanitize_tax_rates( $input ) { |
|
338 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
337 | +function wpinv_settings_sanitize_tax_rates($input) { |
|
338 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
339 | 339 | return $input; |
340 | 340 | } |
341 | 341 | |
342 | - $new_rates = ! empty( $_POST['tax_rates'] ) ? wp_kses_post_deep( array_values( $_POST['tax_rates'] ) ) : array(); |
|
342 | + $new_rates = !empty($_POST['tax_rates']) ? wp_kses_post_deep(array_values($_POST['tax_rates'])) : array(); |
|
343 | 343 | $tax_rates = array(); |
344 | 344 | |
345 | - foreach ( $new_rates as $rate ) { |
|
345 | + foreach ($new_rates as $rate) { |
|
346 | 346 | |
347 | - $rate['rate'] = wpinv_sanitize_amount( $rate['rate'] ); |
|
348 | - $rate['name'] = sanitize_text_field( $rate['name'] ); |
|
349 | - $rate['state'] = sanitize_text_field( $rate['state'] ); |
|
350 | - $rate['country'] = sanitize_text_field( $rate['country'] ); |
|
351 | - $rate['global'] = empty( $rate['state'] ); |
|
347 | + $rate['rate'] = wpinv_sanitize_amount($rate['rate']); |
|
348 | + $rate['name'] = sanitize_text_field($rate['name']); |
|
349 | + $rate['state'] = sanitize_text_field($rate['state']); |
|
350 | + $rate['country'] = sanitize_text_field($rate['country']); |
|
351 | + $rate['global'] = empty($rate['state']); |
|
352 | 352 | $tax_rates[] = $rate; |
353 | 353 | |
354 | 354 | } |
355 | 355 | |
356 | - update_option( 'wpinv_tax_rates', $tax_rates ); |
|
356 | + update_option('wpinv_tax_rates', $tax_rates); |
|
357 | 357 | |
358 | 358 | return $input; |
359 | 359 | } |
360 | -add_filter( 'wpinv_settings_taxes-rates_sanitize', 'wpinv_settings_sanitize_tax_rates' ); |
|
360 | +add_filter('wpinv_settings_taxes-rates_sanitize', 'wpinv_settings_sanitize_tax_rates'); |
|
361 | 361 | |
362 | -function wpinv_settings_sanitize_tax_rules( $input ) { |
|
363 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
362 | +function wpinv_settings_sanitize_tax_rules($input) { |
|
363 | + if (!wpinv_current_user_can_manage_invoicing()) { |
|
364 | 364 | return $input; |
365 | 365 | } |
366 | 366 | |
367 | - if ( empty( $_POST['wpinv_tax_rules_nonce'] ) || ! wp_verify_nonce( $_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules' ) ) { |
|
367 | + if (empty($_POST['wpinv_tax_rules_nonce']) || !wp_verify_nonce($_POST['wpinv_tax_rules_nonce'], 'wpinv_tax_rules')) { |
|
368 | 368 | return $input; |
369 | 369 | } |
370 | 370 | |
371 | - $new_rules = ! empty( $_POST['tax_rules'] ) ? wp_kses_post_deep( array_values( $_POST['tax_rules'] ) ) : array(); |
|
371 | + $new_rules = !empty($_POST['tax_rules']) ? wp_kses_post_deep(array_values($_POST['tax_rules'])) : array(); |
|
372 | 372 | $tax_rules = array(); |
373 | 373 | |
374 | - foreach ( $new_rules as $rule ) { |
|
374 | + foreach ($new_rules as $rule) { |
|
375 | 375 | |
376 | - $rule['key'] = sanitize_title_with_dashes( $rule['key'] ); |
|
377 | - $rule['label'] = sanitize_text_field( $rule['label'] ); |
|
378 | - $rule['tax_base'] = sanitize_text_field( $rule['tax_base'] ); |
|
376 | + $rule['key'] = sanitize_title_with_dashes($rule['key']); |
|
377 | + $rule['label'] = sanitize_text_field($rule['label']); |
|
378 | + $rule['tax_base'] = sanitize_text_field($rule['tax_base']); |
|
379 | 379 | $tax_rules[] = $rule; |
380 | 380 | |
381 | 381 | } |
382 | 382 | |
383 | - update_option( 'wpinv_tax_rules', $tax_rules ); |
|
383 | + update_option('wpinv_tax_rules', $tax_rules); |
|
384 | 384 | |
385 | 385 | return $input; |
386 | 386 | } |
387 | -add_filter( 'wpinv_settings_taxes-rules_sanitize', 'wpinv_settings_sanitize_tax_rules' ); |
|
387 | +add_filter('wpinv_settings_taxes-rules_sanitize', 'wpinv_settings_sanitize_tax_rules'); |
|
388 | 388 | |
389 | 389 | function wpinv_get_settings_tabs() { |
390 | 390 | $tabs = array(); |
391 | - $tabs['general'] = __( 'General', 'invoicing' ); |
|
392 | - $tabs['gateways'] = __( 'Payment Gateways', 'invoicing' ); |
|
393 | - $tabs['taxes'] = __( 'Taxes', 'invoicing' ); |
|
394 | - $tabs['emails'] = __( 'Emails', 'invoicing' ); |
|
391 | + $tabs['general'] = __('General', 'invoicing'); |
|
392 | + $tabs['gateways'] = __('Payment Gateways', 'invoicing'); |
|
393 | + $tabs['taxes'] = __('Taxes', 'invoicing'); |
|
394 | + $tabs['emails'] = __('Emails', 'invoicing'); |
|
395 | 395 | |
396 | - if ( count( getpaid_get_integration_settings() ) > 0 ) { |
|
397 | - $tabs['integrations'] = __( 'Integrations', 'invoicing' ); |
|
396 | + if (count(getpaid_get_integration_settings()) > 0) { |
|
397 | + $tabs['integrations'] = __('Integrations', 'invoicing'); |
|
398 | 398 | } |
399 | 399 | |
400 | - $tabs['privacy'] = __( 'Privacy', 'invoicing' ); |
|
401 | - $tabs['misc'] = __( 'Misc', 'invoicing' ); |
|
402 | - $tabs['tools'] = __( 'Tools', 'invoicing' ); |
|
400 | + $tabs['privacy'] = __('Privacy', 'invoicing'); |
|
401 | + $tabs['misc'] = __('Misc', 'invoicing'); |
|
402 | + $tabs['tools'] = __('Tools', 'invoicing'); |
|
403 | 403 | |
404 | - return apply_filters( 'wpinv_settings_tabs', $tabs ); |
|
404 | + return apply_filters('wpinv_settings_tabs', $tabs); |
|
405 | 405 | } |
406 | 406 | |
407 | -function wpinv_get_settings_tab_sections( $tab = false ) { |
|
407 | +function wpinv_get_settings_tab_sections($tab = false) { |
|
408 | 408 | $tabs = false; |
409 | 409 | $sections = wpinv_get_registered_settings_sections(); |
410 | 410 | |
411 | - if ( $tab && ! empty( $sections[ $tab ] ) ) { |
|
412 | - $tabs = $sections[ $tab ]; |
|
411 | + if ($tab && !empty($sections[$tab])) { |
|
412 | + $tabs = $sections[$tab]; |
|
413 | 413 | } |
414 | 414 | |
415 | 415 | return $tabs; |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | function wpinv_get_registered_settings_sections() { |
419 | 419 | static $sections = false; |
420 | 420 | |
421 | - if ( false !== $sections ) { |
|
421 | + if (false !== $sections) { |
|
422 | 422 | return $sections; |
423 | 423 | } |
424 | 424 | |
@@ -426,231 +426,231 @@ discard block |
||
426 | 426 | 'general' => apply_filters( |
427 | 427 | 'wpinv_settings_sections_general', |
428 | 428 | array( |
429 | - 'main' => __( 'General Settings', 'invoicing' ), |
|
430 | - 'page_section' => __( 'Page Settings', 'invoicing' ), |
|
431 | - 'currency_section' => __( 'Currency Settings', 'invoicing' ), |
|
432 | - 'labels' => __( 'Label Texts', 'invoicing' ), |
|
429 | + 'main' => __('General Settings', 'invoicing'), |
|
430 | + 'page_section' => __('Page Settings', 'invoicing'), |
|
431 | + 'currency_section' => __('Currency Settings', 'invoicing'), |
|
432 | + 'labels' => __('Label Texts', 'invoicing'), |
|
433 | 433 | ) |
434 | 434 | ), |
435 | 435 | 'gateways' => apply_filters( |
436 | 436 | 'wpinv_settings_sections_gateways', |
437 | 437 | array( |
438 | - 'main' => __( 'Gateway Settings', 'invoicing' ), |
|
438 | + 'main' => __('Gateway Settings', 'invoicing'), |
|
439 | 439 | ) |
440 | 440 | ), |
441 | 441 | 'taxes' => apply_filters( |
442 | 442 | 'wpinv_settings_sections_taxes', |
443 | 443 | array( |
444 | - 'main' => __( 'Tax Settings', 'invoicing' ), |
|
445 | - 'rules' => __( 'Tax Rules', 'invoicing' ), |
|
446 | - 'rates' => __( 'Tax Rates', 'invoicing' ), |
|
447 | - 'vat' => __( 'EU VAT Settings', 'invoicing' ), |
|
444 | + 'main' => __('Tax Settings', 'invoicing'), |
|
445 | + 'rules' => __('Tax Rules', 'invoicing'), |
|
446 | + 'rates' => __('Tax Rates', 'invoicing'), |
|
447 | + 'vat' => __('EU VAT Settings', 'invoicing'), |
|
448 | 448 | ) |
449 | 449 | ), |
450 | 450 | 'emails' => apply_filters( |
451 | 451 | 'wpinv_settings_sections_emails', |
452 | 452 | array( |
453 | - 'main' => __( 'Email Settings', 'invoicing' ), |
|
453 | + 'main' => __('Email Settings', 'invoicing'), |
|
454 | 454 | ) |
455 | 455 | ), |
456 | 456 | |
457 | - 'integrations' => wp_list_pluck( getpaid_get_integration_settings(), 'label', 'id' ), |
|
457 | + 'integrations' => wp_list_pluck(getpaid_get_integration_settings(), 'label', 'id'), |
|
458 | 458 | |
459 | 459 | 'privacy' => apply_filters( |
460 | 460 | 'wpinv_settings_sections_privacy', |
461 | 461 | array( |
462 | - 'main' => __( 'Privacy policy', 'invoicing' ), |
|
462 | + 'main' => __('Privacy policy', 'invoicing'), |
|
463 | 463 | ) |
464 | 464 | ), |
465 | 465 | 'misc' => apply_filters( |
466 | 466 | 'wpinv_settings_sections_misc', |
467 | 467 | array( |
468 | - 'main' => __( 'Miscellaneous', 'invoicing' ), |
|
469 | - 'custom-css' => __( 'Custom CSS', 'invoicing' ), |
|
468 | + 'main' => __('Miscellaneous', 'invoicing'), |
|
469 | + 'custom-css' => __('Custom CSS', 'invoicing'), |
|
470 | 470 | ) |
471 | 471 | ), |
472 | 472 | 'tools' => apply_filters( |
473 | 473 | 'wpinv_settings_sections_tools', |
474 | 474 | array( |
475 | - 'main' => __( 'Diagnostic Tools', 'invoicing' ), |
|
475 | + 'main' => __('Diagnostic Tools', 'invoicing'), |
|
476 | 476 | ) |
477 | 477 | ), |
478 | 478 | ); |
479 | 479 | |
480 | - $sections = apply_filters( 'wpinv_settings_sections', $sections ); |
|
480 | + $sections = apply_filters('wpinv_settings_sections', $sections); |
|
481 | 481 | |
482 | 482 | return $sections; |
483 | 483 | } |
484 | 484 | |
485 | -function wpinv_get_pages( $with_slug = false, $default_label = null ) { |
|
485 | +function wpinv_get_pages($with_slug = false, $default_label = null) { |
|
486 | 486 | $pages_options = array(); |
487 | 487 | |
488 | - if ( $default_label !== null && $default_label !== false ) { |
|
489 | - $pages_options = array( '' => $default_label ); // Blank option |
|
488 | + if ($default_label !== null && $default_label !== false) { |
|
489 | + $pages_options = array('' => $default_label); // Blank option |
|
490 | 490 | } |
491 | 491 | |
492 | 492 | $pages = get_pages(); |
493 | - if ( $pages ) { |
|
494 | - foreach ( $pages as $page ) { |
|
493 | + if ($pages) { |
|
494 | + foreach ($pages as $page) { |
|
495 | 495 | $title = $with_slug ? $page->post_title . ' (' . $page->post_name . ')' : $page->post_title; |
496 | - $pages_options[ $page->ID ] = $title; |
|
496 | + $pages_options[$page->ID] = $title; |
|
497 | 497 | } |
498 | 498 | } |
499 | 499 | |
500 | 500 | return $pages_options; |
501 | 501 | } |
502 | 502 | |
503 | -function wpinv_header_callback( $args ) { |
|
504 | - if ( ! empty( $args['desc'] ) ) { |
|
505 | - echo wp_kses_post( $args['desc'] ); |
|
503 | +function wpinv_header_callback($args) { |
|
504 | + if (!empty($args['desc'])) { |
|
505 | + echo wp_kses_post($args['desc']); |
|
506 | 506 | } |
507 | 507 | } |
508 | 508 | |
509 | -function wpinv_hidden_callback( $args ) { |
|
509 | +function wpinv_hidden_callback($args) { |
|
510 | 510 | |
511 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
512 | - $value = wpinv_get_option( $args['id'], $std ); |
|
511 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
512 | + $value = wpinv_get_option($args['id'], $std); |
|
513 | 513 | |
514 | - if ( isset( $args['set_value'] ) ) { |
|
514 | + if (isset($args['set_value'])) { |
|
515 | 515 | $value = $args['set_value']; |
516 | 516 | } |
517 | 517 | |
518 | - if ( isset( $args['faux'] ) && true === $args['faux'] ) { |
|
518 | + if (isset($args['faux']) && true === $args['faux']) { |
|
519 | 519 | $args['readonly'] = true; |
520 | - $name = ''; |
|
520 | + $name = ''; |
|
521 | 521 | } else { |
522 | - $name = 'wpinv_settings[' . esc_attr( $args['id'] ) . ']'; |
|
522 | + $name = 'wpinv_settings[' . esc_attr($args['id']) . ']'; |
|
523 | 523 | } |
524 | 524 | |
525 | - echo '<input type="hidden" id="wpinv_settings[' . esc_attr( $args['id'] ) . ']" name="' . esc_attr( $name ) . '" value="' . esc_attr( stripslashes( $value ) ) . '" />'; |
|
525 | + echo '<input type="hidden" id="wpinv_settings[' . esc_attr($args['id']) . ']" name="' . esc_attr($name) . '" value="' . esc_attr(stripslashes($value)) . '" />'; |
|
526 | 526 | |
527 | 527 | } |
528 | 528 | |
529 | 529 | /** |
530 | 530 | * Displays a checkbox settings callback. |
531 | 531 | */ |
532 | -function wpinv_checkbox_callback( $args ) { |
|
532 | +function wpinv_checkbox_callback($args) { |
|
533 | 533 | |
534 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
535 | - $std = wpinv_get_option( $args['id'], $std ); |
|
536 | - $id = esc_attr( $args['id'] ); |
|
534 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
535 | + $std = wpinv_get_option($args['id'], $std); |
|
536 | + $id = esc_attr($args['id']); |
|
537 | 537 | |
538 | - getpaid_hidden_field( "wpinv_settings[$id]", '0' ); |
|
538 | + getpaid_hidden_field("wpinv_settings[$id]", '0'); |
|
539 | 539 | ?> |
540 | 540 | <fieldset> |
541 | 541 | <label> |
542 | - <input id="wpinv-settings-<?php echo esc_attr( $id ); ?>" name="wpinv_settings[<?php echo esc_attr( $id ); ?>]" <?php checked( empty( $std ), false ); ?> value="1" type="checkbox" /> |
|
543 | - <?php echo wp_kses_post( $args['desc'] ); ?> |
|
542 | + <input id="wpinv-settings-<?php echo esc_attr($id); ?>" name="wpinv_settings[<?php echo esc_attr($id); ?>]" <?php checked(empty($std), false); ?> value="1" type="checkbox" /> |
|
543 | + <?php echo wp_kses_post($args['desc']); ?> |
|
544 | 544 | </label> |
545 | 545 | </fieldset> |
546 | 546 | <?php |
547 | 547 | } |
548 | 548 | |
549 | -function wpinv_multicheck_callback( $args ) { |
|
549 | +function wpinv_multicheck_callback($args) { |
|
550 | 550 | |
551 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
552 | - $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
551 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
552 | + $class = !empty($args['class']) ? ' ' . esc_attr($args['class']) : ''; |
|
553 | 553 | |
554 | - if ( ! empty( $args['options'] ) ) { |
|
554 | + if (!empty($args['options'])) { |
|
555 | 555 | |
556 | - $std = isset( $args['std'] ) ? $args['std'] : array(); |
|
557 | - $value = wpinv_get_option( $args['id'], $std ); |
|
556 | + $std = isset($args['std']) ? $args['std'] : array(); |
|
557 | + $value = wpinv_get_option($args['id'], $std); |
|
558 | 558 | |
559 | - echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr( $sanitize_id . $class ) . '">'; |
|
560 | - foreach ( $args['options'] as $key => $option ) : |
|
561 | - $sanitize_key = esc_attr( wpinv_sanitize_key( $key ) ); |
|
562 | - if ( in_array( $sanitize_key, $value ) ) { |
|
559 | + echo '<div class="wpi-mcheck-rows wpi-mcheck-' . esc_attr($sanitize_id . $class) . '">'; |
|
560 | + foreach ($args['options'] as $key => $option) : |
|
561 | + $sanitize_key = esc_attr(wpinv_sanitize_key($key)); |
|
562 | + if (in_array($sanitize_key, $value)) { |
|
563 | 563 | $enabled = $sanitize_key; |
564 | 564 | } else { |
565 | 565 | $enabled = null; |
566 | 566 | } |
567 | - echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $sanitize_key ) . '" ' . checked( $sanitize_key, $enabled, false ) . '/> '; |
|
568 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']">' . wp_kses_post( $option ) . '</label></div>'; |
|
567 | + echo '<div class="wpi-mcheck-row"><input name="wpinv_settings[' . esc_attr($sanitize_id) . '][' . esc_attr($sanitize_key) . ']" id="wpinv_settings[' . esc_attr($sanitize_id) . '][' . esc_attr($sanitize_key) . ']" type="checkbox" value="' . esc_attr($sanitize_key) . '" ' . checked($sanitize_key, $enabled, false) . '/> '; |
|
568 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . '][' . esc_attr($sanitize_key) . ']">' . wp_kses_post($option) . '</label></div>'; |
|
569 | 569 | endforeach; |
570 | 570 | echo '</div>'; |
571 | - echo '<p class="description">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
571 | + echo '<p class="description">' . wp_kses_post($args['desc']) . '</p>'; |
|
572 | 572 | } |
573 | 573 | } |
574 | 574 | |
575 | -function wpinv_payment_icons_callback( $args ) { |
|
575 | +function wpinv_payment_icons_callback($args) { |
|
576 | 576 | |
577 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
578 | - $value = wpinv_get_option( $args['id'], false ); |
|
577 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
578 | + $value = wpinv_get_option($args['id'], false); |
|
579 | 579 | |
580 | - if ( ! empty( $args['options'] ) ) { |
|
581 | - foreach ( $args['options'] as $key => $option ) { |
|
582 | - $sanitize_key = wpinv_sanitize_key( $key ); |
|
580 | + if (!empty($args['options'])) { |
|
581 | + foreach ($args['options'] as $key => $option) { |
|
582 | + $sanitize_key = wpinv_sanitize_key($key); |
|
583 | 583 | |
584 | - if ( empty( $value ) ) { |
|
584 | + if (empty($value)) { |
|
585 | 585 | $enabled = $option; |
586 | 586 | } else { |
587 | 587 | $enabled = null; |
588 | 588 | } |
589 | 589 | |
590 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
590 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . '][' . esc_attr($sanitize_key) . ']" style="margin-right:10px;line-height:16px;height:16px;display:inline-block;">'; |
|
591 | 591 | |
592 | - echo '<input name="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" id="wpinv_settings[' . esc_attr( $sanitize_id ) . '][' . esc_attr( $sanitize_key ) . ']" type="checkbox" value="' . esc_attr( $option ) . '" ' . checked( $option, $enabled, false ) . '/> '; |
|
592 | + echo '<input name="wpinv_settings[' . esc_attr($sanitize_id) . '][' . esc_attr($sanitize_key) . ']" id="wpinv_settings[' . esc_attr($sanitize_id) . '][' . esc_attr($sanitize_key) . ']" type="checkbox" value="' . esc_attr($option) . '" ' . checked($option, $enabled, false) . '/> '; |
|
593 | 593 | |
594 | - if ( wpinv_string_is_image_url( $key ) ) { |
|
595 | - echo '<img class="payment-icon" src="' . esc_url( $key ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
594 | + if (wpinv_string_is_image_url($key)) { |
|
595 | + echo '<img class="payment-icon" src="' . esc_url($key) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
596 | 596 | } else { |
597 | - $card = strtolower( str_replace( ' ', '', $option ) ); |
|
597 | + $card = strtolower(str_replace(' ', '', $option)); |
|
598 | 598 | |
599 | - if ( has_filter( 'wpinv_accepted_payment_' . $card . '_image' ) ) { |
|
600 | - $image = apply_filters( 'wpinv_accepted_payment_' . $card . '_image', '' ); |
|
599 | + if (has_filter('wpinv_accepted_payment_' . $card . '_image')) { |
|
600 | + $image = apply_filters('wpinv_accepted_payment_' . $card . '_image', ''); |
|
601 | 601 | } else { |
602 | - $image = wpinv_locate_template( 'images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false ); |
|
602 | + $image = wpinv_locate_template('images' . DIRECTORY_SEPARATOR . 'icons' . DIRECTORY_SEPARATOR . $card . '.gif', false); |
|
603 | 603 | $content_dir = WP_CONTENT_DIR; |
604 | 604 | |
605 | - if ( function_exists( 'wp_normalize_path' ) ) { |
|
605 | + if (function_exists('wp_normalize_path')) { |
|
606 | 606 | // Replaces backslashes with forward slashes for Windows systems |
607 | - $image = wp_normalize_path( $image ); |
|
608 | - $content_dir = wp_normalize_path( $content_dir ); |
|
607 | + $image = wp_normalize_path($image); |
|
608 | + $content_dir = wp_normalize_path($content_dir); |
|
609 | 609 | } |
610 | 610 | |
611 | - $image = str_replace( $content_dir, content_url(), $image ); |
|
611 | + $image = str_replace($content_dir, content_url(), $image); |
|
612 | 612 | } |
613 | 613 | |
614 | - echo '<img class="payment-icon" src="' . esc_url( $image ) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
614 | + echo '<img class="payment-icon" src="' . esc_url($image) . '" style="width:32px;height:24px;position:relative;top:6px;margin-right:5px;"/>'; |
|
615 | 615 | } |
616 | - echo wp_kses_post( $option ) . '</label>'; |
|
616 | + echo wp_kses_post($option) . '</label>'; |
|
617 | 617 | } |
618 | - echo '<p class="description" style="margin-top:16px;">' . wp_kses_post( $args['desc'] ) . '</p>'; |
|
618 | + echo '<p class="description" style="margin-top:16px;">' . wp_kses_post($args['desc']) . '</p>'; |
|
619 | 619 | } |
620 | 620 | } |
621 | 621 | |
622 | 622 | /** |
623 | 623 | * Displays a radio settings field. |
624 | 624 | */ |
625 | -function wpinv_radio_callback( $args ) { |
|
625 | +function wpinv_radio_callback($args) { |
|
626 | 626 | |
627 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
628 | - $std = wpinv_get_option( $args['id'], $std ); |
|
627 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
628 | + $std = wpinv_get_option($args['id'], $std); |
|
629 | 629 | ?> |
630 | 630 | <fieldset> |
631 | - <ul id="wpinv-settings-<?php echo esc_attr( $args['id'] ); ?>" style="margin-top: 0;"> |
|
632 | - <?php foreach ( $args['options'] as $key => $option ) : ?> |
|
631 | + <ul id="wpinv-settings-<?php echo esc_attr($args['id']); ?>" style="margin-top: 0;"> |
|
632 | + <?php foreach ($args['options'] as $key => $option) : ?> |
|
633 | 633 | <li> |
634 | 634 | <label> |
635 | - <input name="wpinv_settings[<?php echo esc_attr( $args['id'] ); ?>]" <?php checked( $std, $key ); ?> value="<?php echo esc_attr( $key ); ?>" type="radio"> |
|
636 | - <?php echo wp_kses_post( $option ); ?> |
|
635 | + <input name="wpinv_settings[<?php echo esc_attr($args['id']); ?>]" <?php checked($std, $key); ?> value="<?php echo esc_attr($key); ?>" type="radio"> |
|
636 | + <?php echo wp_kses_post($option); ?> |
|
637 | 637 | </label> |
638 | 638 | </li> |
639 | 639 | <?php endforeach; ?> |
640 | 640 | </ul> |
641 | 641 | </fieldset> |
642 | 642 | <?php |
643 | - getpaid_settings_description_callback( $args ); |
|
643 | + getpaid_settings_description_callback($args); |
|
644 | 644 | } |
645 | 645 | |
646 | 646 | /** |
647 | 647 | * Displays a description if available. |
648 | 648 | */ |
649 | -function getpaid_settings_description_callback( $args ) { |
|
649 | +function getpaid_settings_description_callback($args) { |
|
650 | 650 | |
651 | - if ( ! empty( $args['desc'] ) ) { |
|
651 | + if (!empty($args['desc'])) { |
|
652 | 652 | $description = $args['desc']; |
653 | - echo wp_kses_post( "<p class='description'>$description</p>" ); |
|
653 | + echo wp_kses_post("<p class='description'>$description</p>"); |
|
654 | 654 | } |
655 | 655 | |
656 | 656 | } |
@@ -665,35 +665,35 @@ discard block |
||
665 | 665 | </tr> |
666 | 666 | <tr class="bsui"> |
667 | 667 | <td colspan="2" class="p-0"> |
668 | - <?php include plugin_dir_path( __FILE__ ) . 'views/html-gateways-edit.php'; ?> |
|
668 | + <?php include plugin_dir_path(__FILE__) . 'views/html-gateways-edit.php'; ?> |
|
669 | 669 | |
670 | 670 | <?php |
671 | 671 | } |
672 | 672 | |
673 | -function wpinv_gateway_select_callback( $args ) { |
|
673 | +function wpinv_gateway_select_callback($args) { |
|
674 | 674 | |
675 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
676 | - $class = ! empty( $args['class'] ) ? ' ' . esc_attr( $args['class'] ) : ''; |
|
677 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
678 | - $value = wpinv_get_option( $args['id'], $std ); |
|
675 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
676 | + $class = !empty($args['class']) ? ' ' . esc_attr($args['class']) : ''; |
|
677 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
678 | + $value = wpinv_get_option($args['id'], $std); |
|
679 | 679 | |
680 | - echo '<select name="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" class="' . esc_attr( $class ) . '" >'; |
|
680 | + echo '<select name="wpinv_settings[' . esc_attr($sanitize_id) . ']"" id="wpinv_settings[' . esc_attr($sanitize_id) . ']" class="' . esc_attr($class) . '" >'; |
|
681 | 681 | |
682 | - foreach ( $args['options'] as $key => $option ) : |
|
682 | + foreach ($args['options'] as $key => $option) : |
|
683 | 683 | |
684 | - echo '<option value="' . esc_attr( $key ) . '" '; |
|
684 | + echo '<option value="' . esc_attr($key) . '" '; |
|
685 | 685 | |
686 | - if ( isset( $args['selected'] ) && $args['selected'] !== null && $args['selected'] !== false ) { |
|
687 | - selected( $key, $args['selected'] ); |
|
686 | + if (isset($args['selected']) && $args['selected'] !== null && $args['selected'] !== false) { |
|
687 | + selected($key, $args['selected']); |
|
688 | 688 | } else { |
689 | - selected( $key, $value ); |
|
689 | + selected($key, $value); |
|
690 | 690 | } |
691 | 691 | |
692 | - echo '>' . esc_html( $option['admin_label'] ) . '</option>'; |
|
692 | + echo '>' . esc_html($option['admin_label']) . '</option>'; |
|
693 | 693 | endforeach; |
694 | 694 | |
695 | 695 | echo '</select>'; |
696 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
696 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
697 | 697 | } |
698 | 698 | |
699 | 699 | /** |
@@ -702,16 +702,16 @@ discard block |
||
702 | 702 | * @param array $args |
703 | 703 | * @return string |
704 | 704 | */ |
705 | -function wpinv_settings_attrs_helper( $args ) { |
|
705 | +function wpinv_settings_attrs_helper($args) { |
|
706 | 706 | |
707 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
708 | - $id = esc_attr( $args['id'] ); |
|
709 | - $value = is_scalar( $value ) ? $value : ''; |
|
707 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
708 | + $id = esc_attr($args['id']); |
|
709 | + $value = is_scalar($value) ? $value : ''; |
|
710 | 710 | |
711 | 711 | $attrs = array( |
712 | - 'name' => ! empty( $args['faux'] ) ? false : "wpinv_settings[$id]", |
|
713 | - 'readonly' => ! empty( $args['faux'] ), |
|
714 | - 'value' => ! empty( $args['faux'] ) ? $value : wpinv_get_option( $args['id'], $value ), |
|
712 | + 'name' => !empty($args['faux']) ? false : "wpinv_settings[$id]", |
|
713 | + 'readonly' => !empty($args['faux']), |
|
714 | + 'value' => !empty($args['faux']) ? $value : wpinv_get_option($args['id'], $value), |
|
715 | 715 | 'id' => 'wpinv-settings-' . $args['id'], |
716 | 716 | 'style' => $args['style'], |
717 | 717 | 'class' => $args['class'], |
@@ -719,20 +719,20 @@ discard block |
||
719 | 719 | 'data-placeholder' => $args['placeholder'], |
720 | 720 | ); |
721 | 721 | |
722 | - if ( ! empty( $args['onchange'] ) ) { |
|
722 | + if (!empty($args['onchange'])) { |
|
723 | 723 | $attrs['onchange'] = $args['onchange']; |
724 | 724 | } |
725 | 725 | |
726 | - foreach ( $attrs as $key => $value ) { |
|
726 | + foreach ($attrs as $key => $value) { |
|
727 | 727 | |
728 | - if ( false === $value ) { |
|
728 | + if (false === $value) { |
|
729 | 729 | continue; |
730 | 730 | } |
731 | 731 | |
732 | - if ( true === $value ) { |
|
733 | - echo ' ' . esc_attr( $key ); |
|
732 | + if (true === $value) { |
|
733 | + echo ' ' . esc_attr($key); |
|
734 | 734 | } else { |
735 | - echo ' ' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
|
735 | + echo ' ' . esc_attr($key) . '="' . esc_attr($value) . '"'; |
|
736 | 736 | } |
737 | 737 | |
738 | 738 | } |
@@ -742,12 +742,12 @@ discard block |
||
742 | 742 | /** |
743 | 743 | * Displays a text input settings callback. |
744 | 744 | */ |
745 | -function wpinv_text_callback( $args ) { |
|
745 | +function wpinv_text_callback($args) { |
|
746 | 746 | |
747 | 747 | ?> |
748 | 748 | <label style="width: 100%;"> |
749 | - <input type="text" <?php wpinv_settings_attrs_helper( $args ); ?>> |
|
750 | - <?php getpaid_settings_description_callback( $args ); ?> |
|
749 | + <input type="text" <?php wpinv_settings_attrs_helper($args); ?>> |
|
750 | + <?php getpaid_settings_description_callback($args); ?> |
|
751 | 751 | </label> |
752 | 752 | <?php |
753 | 753 | |
@@ -756,174 +756,174 @@ discard block |
||
756 | 756 | /** |
757 | 757 | * Displays a number input settings callback. |
758 | 758 | */ |
759 | -function wpinv_number_callback( $args ) { |
|
759 | +function wpinv_number_callback($args) { |
|
760 | 760 | |
761 | 761 | ?> |
762 | 762 | <label style="width: 100%;"> |
763 | - <input type="number" step="<?php echo esc_attr( $args['step'] ); ?>" max="<?php echo intval( $args['max'] ); ?>" min="<?php echo intval( $args['min'] ); ?>" <?php wpinv_settings_attrs_helper( $args ); ?>> |
|
764 | - <?php getpaid_settings_description_callback( $args ); ?> |
|
763 | + <input type="number" step="<?php echo esc_attr($args['step']); ?>" max="<?php echo intval($args['max']); ?>" min="<?php echo intval($args['min']); ?>" <?php wpinv_settings_attrs_helper($args); ?>> |
|
764 | + <?php getpaid_settings_description_callback($args); ?> |
|
765 | 765 | </label> |
766 | 766 | <?php |
767 | 767 | |
768 | 768 | } |
769 | 769 | |
770 | -function wpinv_textarea_callback( $args ) { |
|
770 | +function wpinv_textarea_callback($args) { |
|
771 | 771 | |
772 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
773 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
774 | - $value = wpinv_get_option( $args['id'], $std ); |
|
772 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
773 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
774 | + $value = wpinv_get_option($args['id'], $std); |
|
775 | 775 | |
776 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
777 | - $class = ( isset( $args['class'] ) && ! is_null( $args['class'] ) ) ? $args['class'] : 'large-text'; |
|
776 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
777 | + $class = (isset($args['class']) && !is_null($args['class'])) ? $args['class'] : 'large-text'; |
|
778 | 778 | |
779 | - echo '<textarea class="' . esc_attr( $class ) . ' txtarea-' . esc_attr( $size ) . ' wpi-' . esc_attr( sanitize_html_class( $sanitize_id ) ) . ' " cols="' . esc_attr( $args['cols'] ) . '" rows="' . esc_attr( $args['rows'] ) . '" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
780 | - echo '<br /><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
779 | + echo '<textarea class="' . esc_attr($class) . ' txtarea-' . esc_attr($size) . ' wpi-' . esc_attr(sanitize_html_class($sanitize_id)) . ' " cols="' . esc_attr($args['cols']) . '" rows="' . esc_attr($args['rows']) . '" id="wpinv_settings[' . esc_attr($sanitize_id) . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']">' . esc_textarea(stripslashes($value)) . '</textarea>'; |
|
780 | + echo '<br /><label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
781 | 781 | |
782 | 782 | } |
783 | 783 | |
784 | -function wpinv_password_callback( $args ) { |
|
784 | +function wpinv_password_callback($args) { |
|
785 | 785 | |
786 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
787 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
788 | - $value = wpinv_get_option( $args['id'], $std ); |
|
786 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
787 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
788 | + $value = wpinv_get_option($args['id'], $std); |
|
789 | 789 | |
790 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
791 | - echo '<input type="password" class="' . esc_attr( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '"/>'; |
|
792 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
790 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
791 | + echo '<input type="password" class="' . esc_attr($size) . '-text" id="wpinv_settings[' . esc_attr($sanitize_id) . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" value="' . esc_attr($value) . '"/>'; |
|
792 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
793 | 793 | |
794 | 794 | } |
795 | 795 | |
796 | -function wpinv_missing_callback( $args ) { |
|
796 | +function wpinv_missing_callback($args) { |
|
797 | 797 | printf( |
798 | - esc_html__( 'The callback function used for the %s setting is missing.', 'invoicing' ), |
|
799 | - '<strong>' . esc_html( $args['id'] ) . '</strong>' |
|
798 | + esc_html__('The callback function used for the %s setting is missing.', 'invoicing'), |
|
799 | + '<strong>' . esc_html($args['id']) . '</strong>' |
|
800 | 800 | ); |
801 | 801 | } |
802 | 802 | |
803 | 803 | /** |
804 | 804 | * Displays a number input settings callback. |
805 | 805 | */ |
806 | -function wpinv_select_callback( $args ) { |
|
806 | +function wpinv_select_callback($args) { |
|
807 | 807 | |
808 | - $desc = wp_kses_post( $args['desc'] ); |
|
809 | - $desc = empty( $desc ) ? '' : "<p class='description'>$desc</p>"; |
|
810 | - $value = isset( $args['std'] ) ? $args['std'] : ''; |
|
811 | - $value = wpinv_get_option( $args['id'], $value ); |
|
812 | - $rand = uniqid( 'random_id' ); |
|
808 | + $desc = wp_kses_post($args['desc']); |
|
809 | + $desc = empty($desc) ? '' : "<p class='description'>$desc</p>"; |
|
810 | + $value = isset($args['std']) ? $args['std'] : ''; |
|
811 | + $value = wpinv_get_option($args['id'], $value); |
|
812 | + $rand = uniqid('random_id'); |
|
813 | 813 | |
814 | 814 | ?> |
815 | 815 | <label style="width: 100%;"> |
816 | - <select <?php wpinv_settings_attrs_helper( $args ); ?> data-allow-clear="true"> |
|
817 | - <?php foreach ( $args['options'] as $option => $name ) : ?> |
|
818 | - <option value="<?php echo esc_attr( $option ); ?>" <?php echo selected( $option, $value ); ?>><?php echo esc_html( $name ); ?></option> |
|
816 | + <select <?php wpinv_settings_attrs_helper($args); ?> data-allow-clear="true"> |
|
817 | + <?php foreach ($args['options'] as $option => $name) : ?> |
|
818 | + <option value="<?php echo esc_attr($option); ?>" <?php echo selected($option, $value); ?>><?php echo esc_html($name); ?></option> |
|
819 | 819 | <?php endforeach; ?> |
820 | 820 | </select> |
821 | 821 | |
822 | - <?php if ( substr( $args['id'], -5 ) === '_page' && is_numeric( $value ) ) : ?> |
|
823 | - <a href="<?php echo esc_url( get_edit_post_link( $value ) ); ?>" target="_blank" class="button getpaid-page-setting-edit"><?php esc_html_e( 'Edit Page', 'invoicing' ); ?></a> |
|
822 | + <?php if (substr($args['id'], -5) === '_page' && is_numeric($value)) : ?> |
|
823 | + <a href="<?php echo esc_url(get_edit_post_link($value)); ?>" target="_blank" class="button getpaid-page-setting-edit"><?php esc_html_e('Edit Page', 'invoicing'); ?></a> |
|
824 | 824 | <?php endif; ?> |
825 | 825 | |
826 | - <?php if ( substr( $args['id'], -5 ) === '_page' && ! empty( $args['default_content'] ) ) : ?> |
|
827 | - <a href="#TB_inline?&width=400&height=550&inlineId=<?php echo esc_attr( $rand ); ?>" class="button thickbox getpaid-page-setting-view-default"><?php esc_html_e( 'View Default Content', 'invoicing' ); ?></a> |
|
828 | - <div id='<?php echo esc_attr( $rand ); ?>' style='display:none;'> |
|
826 | + <?php if (substr($args['id'], -5) === '_page' && !empty($args['default_content'])) : ?> |
|
827 | + <a href="#TB_inline?&width=400&height=550&inlineId=<?php echo esc_attr($rand); ?>" class="button thickbox getpaid-page-setting-view-default"><?php esc_html_e('View Default Content', 'invoicing'); ?></a> |
|
828 | + <div id='<?php echo esc_attr($rand); ?>' style='display:none;'> |
|
829 | 829 | <div> |
830 | - <h3><?php esc_html_e( 'Original Content', 'invoicing' ); ?></h3> |
|
831 | - <textarea readonly onclick="this.select()" rows="8" style="width: 100%;"><?php echo wp_kses_post( gepaid_trim_lines( $args['default_content'] ) ); ?></textarea> |
|
832 | - <h3><?php esc_html_e( 'Current Content', 'invoicing' ); ?></h3> |
|
833 | - <textarea readonly onclick="this.select()" rows="8" style="width: 100%;"><?php $_post = get_post( $value ); echo empty( $_post ) ? '' : wp_kses_post( gepaid_trim_lines( $_post->post_content ) ); ?></textarea> |
|
830 | + <h3><?php esc_html_e('Original Content', 'invoicing'); ?></h3> |
|
831 | + <textarea readonly onclick="this.select()" rows="8" style="width: 100%;"><?php echo wp_kses_post(gepaid_trim_lines($args['default_content'])); ?></textarea> |
|
832 | + <h3><?php esc_html_e('Current Content', 'invoicing'); ?></h3> |
|
833 | + <textarea readonly onclick="this.select()" rows="8" style="width: 100%;"><?php $_post = get_post($value); echo empty($_post) ? '' : wp_kses_post(gepaid_trim_lines($_post->post_content)); ?></textarea> |
|
834 | 834 | </div> |
835 | 835 | </div> |
836 | 836 | <?php endif; ?> |
837 | 837 | |
838 | - <?php echo wp_kses_post( $desc ); ?> |
|
838 | + <?php echo wp_kses_post($desc); ?> |
|
839 | 839 | </label> |
840 | 840 | <?php |
841 | 841 | |
842 | 842 | } |
843 | 843 | |
844 | -function wpinv_color_select_callback( $args ) { |
|
844 | +function wpinv_color_select_callback($args) { |
|
845 | 845 | |
846 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
847 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
848 | - $value = wpinv_get_option( $args['id'], $std ); |
|
846 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
847 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
848 | + $value = wpinv_get_option($args['id'], $std); |
|
849 | 849 | |
850 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']"/>'; |
|
850 | + echo '<select id="wpinv_settings[' . esc_attr($sanitize_id) . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']"/>'; |
|
851 | 851 | |
852 | - foreach ( $args['options'] as $option => $color ) { |
|
853 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $color['label'] ) . '</option>'; |
|
852 | + foreach ($args['options'] as $option => $color) { |
|
853 | + echo '<option value="' . esc_attr($option) . '" ' . selected($option, $value) . '>' . esc_html($color['label']) . '</option>'; |
|
854 | 854 | } |
855 | 855 | |
856 | 856 | echo '</select>'; |
857 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
857 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
858 | 858 | |
859 | 859 | } |
860 | 860 | |
861 | -function wpinv_rich_editor_callback( $args ) { |
|
861 | +function wpinv_rich_editor_callback($args) { |
|
862 | 862 | global $wp_version; |
863 | 863 | |
864 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
864 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
865 | 865 | |
866 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
867 | - $value = wpinv_get_option( $args['id'], $std ); |
|
866 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
867 | + $value = wpinv_get_option($args['id'], $std); |
|
868 | 868 | |
869 | - if ( ! empty( $args['allow_blank'] ) && empty( $value ) ) { |
|
869 | + if (!empty($args['allow_blank']) && empty($value)) { |
|
870 | 870 | $value = $std; |
871 | 871 | } |
872 | 872 | |
873 | - $rows = isset( $args['size'] ) ? $args['size'] : 20; |
|
873 | + $rows = isset($args['size']) ? $args['size'] : 20; |
|
874 | 874 | |
875 | 875 | echo '<div class="getpaid-settings-editor-input">'; |
876 | - if ( $wp_version >= 3.3 && function_exists( 'wp_editor' ) ) { |
|
876 | + if ($wp_version >= 3.3 && function_exists('wp_editor')) { |
|
877 | 877 | wp_editor( |
878 | - stripslashes( $value ), |
|
879 | - 'wpinv_settings_' . esc_attr( $args['id'] ), |
|
878 | + stripslashes($value), |
|
879 | + 'wpinv_settings_' . esc_attr($args['id']), |
|
880 | 880 | array( |
881 | - 'textarea_name' => 'wpinv_settings[' . esc_attr( $args['id'] ) . ']', |
|
882 | - 'textarea_rows' => absint( $rows ), |
|
881 | + 'textarea_name' => 'wpinv_settings[' . esc_attr($args['id']) . ']', |
|
882 | + 'textarea_rows' => absint($rows), |
|
883 | 883 | 'media_buttons' => false, |
884 | 884 | ) |
885 | 885 | ); |
886 | 886 | } else { |
887 | - echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="wpi-' . esc_attr( sanitize_html_class( $args['id'] ) ) . '">' . esc_textarea( stripslashes( $value ) ) . '</textarea>'; |
|
887 | + echo '<textarea class="large-text" rows="10" id="wpinv_settings[' . esc_attr($sanitize_id) . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" class="wpi-' . esc_attr(sanitize_html_class($args['id'])) . '">' . esc_textarea(stripslashes($value)) . '</textarea>'; |
|
888 | 888 | } |
889 | 889 | |
890 | - echo '</div><br/><label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
890 | + echo '</div><br/><label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
891 | 891 | |
892 | 892 | } |
893 | 893 | |
894 | -function wpinv_upload_callback( $args ) { |
|
894 | +function wpinv_upload_callback($args) { |
|
895 | 895 | |
896 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
896 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
897 | 897 | |
898 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
899 | - $value = wpinv_get_option( $args['id'], $std ); |
|
898 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
899 | + $value = wpinv_get_option($args['id'], $std); |
|
900 | 900 | |
901 | - $size = ( isset( $args['size'] ) && ! is_null( $args['size'] ) ) ? $args['size'] : 'regular'; |
|
902 | - echo '<input type="text" class="' . sanitize_html_class( $size ) . '-text" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( stripslashes( $value ) ) . '"/>'; |
|
903 | - echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__( 'Upload File', 'invoicing' ) . '"/></span>'; |
|
904 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
901 | + $size = (isset($args['size']) && !is_null($args['size'])) ? $args['size'] : 'regular'; |
|
902 | + echo '<input type="text" class="' . sanitize_html_class($size) . '-text" id="wpinv_settings[' . esc_attr($sanitize_id) . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" value="' . esc_attr(stripslashes($value)) . '"/>'; |
|
903 | + echo '<span> <input type="button" class="wpinv_settings_upload_button button-secondary" value="' . esc_attr__('Upload File', 'invoicing') . '"/></span>'; |
|
904 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
905 | 905 | |
906 | 906 | } |
907 | 907 | |
908 | -function wpinv_color_callback( $args ) { |
|
908 | +function wpinv_color_callback($args) { |
|
909 | 909 | |
910 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
911 | - $value = wpinv_get_option( $args['id'], $std ); |
|
912 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
910 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
911 | + $value = wpinv_get_option($args['id'], $std); |
|
912 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
913 | 913 | |
914 | - echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" value="' . esc_attr( $value ) . '" data-default-color="' . esc_attr( $std ) . '" />'; |
|
915 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
914 | + echo '<input type="text" class="wpinv-color-picker" id="wpinv_settings[' . esc_attr($sanitize_id) . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" value="' . esc_attr($value) . '" data-default-color="' . esc_attr($std) . '" />'; |
|
915 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
916 | 916 | |
917 | 917 | } |
918 | 918 | |
919 | -function wpinv_country_states_callback( $args ) { |
|
919 | +function wpinv_country_states_callback($args) { |
|
920 | 920 | |
921 | - $std = isset( $args['std'] ) ? $args['std'] : ''; |
|
922 | - $value = wpinv_get_option( $args['id'], $std ); |
|
921 | + $std = isset($args['std']) ? $args['std'] : ''; |
|
922 | + $value = wpinv_get_option($args['id'], $std); |
|
923 | 923 | |
924 | - $sanitize_id = wpinv_sanitize_key( $args['id'] ); |
|
924 | + $sanitize_id = wpinv_sanitize_key($args['id']); |
|
925 | 925 | |
926 | - if ( isset( $args['placeholder'] ) ) { |
|
926 | + if (isset($args['placeholder'])) { |
|
927 | 927 | $placeholder = $args['placeholder']; |
928 | 928 | } else { |
929 | 929 | $placeholder = ''; |
@@ -931,15 +931,15 @@ discard block |
||
931 | 931 | |
932 | 932 | $states = wpinv_get_country_states(); |
933 | 933 | |
934 | - $class = empty( $states ) ? 'wpinv-no-states' : 'wpi_select2'; |
|
935 | - echo '<select id="wpinv_settings[' . esc_attr( $sanitize_id ) . ']" name="wpinv_settings[' . esc_attr( $args['id'] ) . ']" class="' . esc_attr( $class ) . '" data-placeholder="' . esc_html( $placeholder ) . '"/>'; |
|
934 | + $class = empty($states) ? 'wpinv-no-states' : 'wpi_select2'; |
|
935 | + echo '<select id="wpinv_settings[' . esc_attr($sanitize_id) . ']" name="wpinv_settings[' . esc_attr($args['id']) . ']" class="' . esc_attr($class) . '" data-placeholder="' . esc_html($placeholder) . '"/>'; |
|
936 | 936 | |
937 | - foreach ( $states as $option => $name ) { |
|
938 | - echo '<option value="' . esc_attr( $option ) . '" ' . selected( $option, $value ) . '>' . esc_html( $name ) . '</option>'; |
|
937 | + foreach ($states as $option => $name) { |
|
938 | + echo '<option value="' . esc_attr($option) . '" ' . selected($option, $value) . '>' . esc_html($name) . '</option>'; |
|
939 | 939 | } |
940 | 940 | |
941 | 941 | echo '</select>'; |
942 | - echo '<label for="wpinv_settings[' . esc_attr( $sanitize_id ) . ']"> ' . wp_kses_post( $args['desc'] ) . '</label>'; |
|
942 | + echo '<label for="wpinv_settings[' . esc_attr($sanitize_id) . ']"> ' . wp_kses_post($args['desc']) . '</label>'; |
|
943 | 943 | |
944 | 944 | } |
945 | 945 | |
@@ -953,7 +953,7 @@ discard block |
||
953 | 953 | </tr> |
954 | 954 | <tr class="bsui"> |
955 | 955 | <td colspan="2" class="p-0"> |
956 | - <?php include plugin_dir_path( __FILE__ ) . 'views/html-tax-rates-edit.php'; ?> |
|
956 | + <?php include plugin_dir_path(__FILE__) . 'views/html-tax-rates-edit.php'; ?> |
|
957 | 957 | |
958 | 958 | <?php |
959 | 959 | |
@@ -962,11 +962,11 @@ discard block |
||
962 | 962 | /** |
963 | 963 | * Displays a tax rate' edit row. |
964 | 964 | */ |
965 | -function wpinv_tax_rate_callback( $tax_rate, $key ) { |
|
965 | +function wpinv_tax_rate_callback($tax_rate, $key) { |
|
966 | 966 | |
967 | - $key = sanitize_key( $key ); |
|
968 | - $tax_rate['reduced_rate'] = empty( $tax_rate['reduced_rate'] ) ? 0 : $tax_rate['reduced_rate']; |
|
969 | - include plugin_dir_path( __FILE__ ) . 'views/html-tax-rate-edit.php'; |
|
967 | + $key = sanitize_key($key); |
|
968 | + $tax_rate['reduced_rate'] = empty($tax_rate['reduced_rate']) ? 0 : $tax_rate['reduced_rate']; |
|
969 | + include plugin_dir_path(__FILE__) . 'views/html-tax-rate-edit.php'; |
|
970 | 970 | |
971 | 971 | } |
972 | 972 | |
@@ -980,177 +980,177 @@ discard block |
||
980 | 980 | </tr> |
981 | 981 | <tr class="bsui"> |
982 | 982 | <td colspan="2" class="p-0"> |
983 | - <?php include plugin_dir_path( __FILE__ ) . 'views/html-tax-rules-edit.php'; ?> |
|
983 | + <?php include plugin_dir_path(__FILE__) . 'views/html-tax-rules-edit.php'; ?> |
|
984 | 984 | |
985 | 985 | <?php |
986 | 986 | |
987 | 987 | } |
988 | 988 | |
989 | -function wpinv_tools_callback( $args ) { |
|
989 | +function wpinv_tools_callback($args) { |
|
990 | 990 | ?> |
991 | 991 | </td><tr> |
992 | 992 | <td colspan="2" class="wpinv_tools_tdbox"> |
993 | 993 | <?php |
994 | - if ( $args['desc'] ) { |
|
994 | + if ($args['desc']) { |
|
995 | 995 | ?> |
996 | -<p><?php echo wp_kses_post( $args['desc'] ); ?></p><?php } ?> |
|
997 | - <?php do_action( 'wpinv_tools_before' ); ?> |
|
996 | +<p><?php echo wp_kses_post($args['desc']); ?></p><?php } ?> |
|
997 | + <?php do_action('wpinv_tools_before'); ?> |
|
998 | 998 | <table id="wpinv_tools_table" class="wp-list-table widefat fixed posts"> |
999 | 999 | <thead> |
1000 | 1000 | <tr> |
1001 | - <th scope="col" class="wpinv-th-tool"><?php esc_html_e( 'Tool', 'invoicing' ); ?></th> |
|
1002 | - <th scope="col" class="wpinv-th-desc"><?php esc_html_e( 'Description', 'invoicing' ); ?></th> |
|
1003 | - <th scope="col" class="wpinv-th-action"><?php esc_html_e( 'Action', 'invoicing' ); ?></th> |
|
1001 | + <th scope="col" class="wpinv-th-tool"><?php esc_html_e('Tool', 'invoicing'); ?></th> |
|
1002 | + <th scope="col" class="wpinv-th-desc"><?php esc_html_e('Description', 'invoicing'); ?></th> |
|
1003 | + <th scope="col" class="wpinv-th-action"><?php esc_html_e('Action', 'invoicing'); ?></th> |
|
1004 | 1004 | </tr> |
1005 | 1005 | </thead> |
1006 | 1006 | |
1007 | 1007 | <tbody> |
1008 | 1008 | <tr> |
1009 | - <td><?php esc_html_e( 'Check Pages', 'invoicing' ); ?></td> |
|
1009 | + <td><?php esc_html_e('Check Pages', 'invoicing'); ?></td> |
|
1010 | 1010 | <td> |
1011 | - <small><?php esc_html_e( 'Creates any missing GetPaid pages.', 'invoicing' ); ?></small> |
|
1011 | + <small><?php esc_html_e('Creates any missing GetPaid pages.', 'invoicing'); ?></small> |
|
1012 | 1012 | </td> |
1013 | 1013 | <td> |
1014 | 1014 | <a href=" |
1015 | 1015 | <?php |
1016 | 1016 | echo esc_url( |
1017 | 1017 | wp_nonce_url( |
1018 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
1018 | + add_query_arg('getpaid-admin-action', 'create_missing_pages'), |
|
1019 | 1019 | 'getpaid-nonce', |
1020 | 1020 | 'getpaid-nonce' |
1021 | 1021 | ) |
1022 | 1022 | ); |
1023 | 1023 | ?> |
1024 | - " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
|
1024 | + " class="button button-primary"><?php esc_html_e('Run', 'invoicing'); ?></a> |
|
1025 | 1025 | </td> |
1026 | 1026 | </tr> |
1027 | 1027 | <tr> |
1028 | - <td><?php esc_html_e( 'Refresh Permalinks', 'invoicing' ); ?></td> |
|
1028 | + <td><?php esc_html_e('Refresh Permalinks', 'invoicing'); ?></td> |
|
1029 | 1029 | <td> |
1030 | - <small><?php esc_html_e( 'Might fix the page not found error when viewing an invoice.', 'invoicing' ); ?></small> |
|
1030 | + <small><?php esc_html_e('Might fix the page not found error when viewing an invoice.', 'invoicing'); ?></small> |
|
1031 | 1031 | </td> |
1032 | 1032 | <td> |
1033 | 1033 | <a href=" |
1034 | 1034 | <?php |
1035 | 1035 | echo esc_url( |
1036 | 1036 | wp_nonce_url( |
1037 | - add_query_arg( 'getpaid-admin-action', 'refresh_permalinks' ), |
|
1037 | + add_query_arg('getpaid-admin-action', 'refresh_permalinks'), |
|
1038 | 1038 | 'getpaid-nonce', |
1039 | 1039 | 'getpaid-nonce' |
1040 | 1040 | ) |
1041 | 1041 | ); |
1042 | 1042 | ?> |
1043 | - " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
|
1043 | + " class="button button-primary"><?php esc_html_e('Run', 'invoicing'); ?></a> |
|
1044 | 1044 | </td> |
1045 | 1045 | </tr> |
1046 | 1046 | <tr> |
1047 | - <td><?php esc_html_e( 'Create Database Tables', 'invoicing' ); ?></td> |
|
1047 | + <td><?php esc_html_e('Create Database Tables', 'invoicing'); ?></td> |
|
1048 | 1048 | <td> |
1049 | - <small><?php esc_html_e( 'Run this tool to create any missing database tables.', 'invoicing' ); ?></small> |
|
1049 | + <small><?php esc_html_e('Run this tool to create any missing database tables.', 'invoicing'); ?></small> |
|
1050 | 1050 | </td> |
1051 | 1051 | <td> |
1052 | 1052 | <a href=" |
1053 | 1053 | <?php |
1054 | 1054 | echo esc_url( |
1055 | 1055 | wp_nonce_url( |
1056 | - add_query_arg( 'getpaid-admin-action', 'create_missing_tables' ), |
|
1056 | + add_query_arg('getpaid-admin-action', 'create_missing_tables'), |
|
1057 | 1057 | 'getpaid-nonce', |
1058 | 1058 | 'getpaid-nonce' |
1059 | 1059 | ) |
1060 | 1060 | ); |
1061 | 1061 | ?> |
1062 | - " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
|
1062 | + " class="button button-primary"><?php esc_html_e('Run', 'invoicing'); ?></a> |
|
1063 | 1063 | </td> |
1064 | 1064 | </tr> |
1065 | 1065 | <tr> |
1066 | - <td><?php esc_html_e( 'Migrate old invoices', 'invoicing' ); ?></td> |
|
1066 | + <td><?php esc_html_e('Migrate old invoices', 'invoicing'); ?></td> |
|
1067 | 1067 | <td> |
1068 | - <small><?php esc_html_e( 'If your old invoices were not migrated after updating from Invoicing to GetPaid, you can use this tool to migrate them.', 'invoicing' ); ?></small> |
|
1068 | + <small><?php esc_html_e('If your old invoices were not migrated after updating from Invoicing to GetPaid, you can use this tool to migrate them.', 'invoicing'); ?></small> |
|
1069 | 1069 | </td> |
1070 | 1070 | <td> |
1071 | 1071 | <a href=" |
1072 | 1072 | <?php |
1073 | 1073 | echo esc_url( |
1074 | 1074 | wp_nonce_url( |
1075 | - add_query_arg( 'getpaid-admin-action', 'migrate_old_invoices' ), |
|
1075 | + add_query_arg('getpaid-admin-action', 'migrate_old_invoices'), |
|
1076 | 1076 | 'getpaid-nonce', |
1077 | 1077 | 'getpaid-nonce' |
1078 | 1078 | ) |
1079 | 1079 | ); |
1080 | 1080 | ?> |
1081 | - " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
|
1081 | + " class="button button-primary"><?php esc_html_e('Run', 'invoicing'); ?></a> |
|
1082 | 1082 | </td> |
1083 | 1083 | </tr> |
1084 | 1084 | |
1085 | 1085 | <tr> |
1086 | - <td><?php esc_html_e( 'Recalculate Discounts', 'invoicing' ); ?></td> |
|
1086 | + <td><?php esc_html_e('Recalculate Discounts', 'invoicing'); ?></td> |
|
1087 | 1087 | <td> |
1088 | - <small><?php esc_html_e( 'Recalculate discounts for existing invoices that have discount codes but are not discounted.', 'invoicing' ); ?></small> |
|
1088 | + <small><?php esc_html_e('Recalculate discounts for existing invoices that have discount codes but are not discounted.', 'invoicing'); ?></small> |
|
1089 | 1089 | </td> |
1090 | 1090 | <td> |
1091 | 1091 | <a href=" |
1092 | 1092 | <?php |
1093 | 1093 | echo esc_url( |
1094 | 1094 | wp_nonce_url( |
1095 | - add_query_arg( 'getpaid-admin-action', 'recalculate_discounts' ), |
|
1095 | + add_query_arg('getpaid-admin-action', 'recalculate_discounts'), |
|
1096 | 1096 | 'getpaid-nonce', |
1097 | 1097 | 'getpaid-nonce' |
1098 | 1098 | ) |
1099 | 1099 | ); |
1100 | 1100 | ?> |
1101 | - " class="button button-primary"><?php esc_html_e( 'Run', 'invoicing' ); ?></a> |
|
1101 | + " class="button button-primary"><?php esc_html_e('Run', 'invoicing'); ?></a> |
|
1102 | 1102 | </td> |
1103 | 1103 | </tr> |
1104 | 1104 | |
1105 | 1105 | <tr> |
1106 | - <td><?php esc_html_e( 'Set-up Wizard', 'invoicing' ); ?></td> |
|
1106 | + <td><?php esc_html_e('Set-up Wizard', 'invoicing'); ?></td> |
|
1107 | 1107 | <td> |
1108 | - <small><?php esc_html_e( 'Launch the quick set-up wizard.', 'invoicing' ); ?></small> |
|
1108 | + <small><?php esc_html_e('Launch the quick set-up wizard.', 'invoicing'); ?></small> |
|
1109 | 1109 | </td> |
1110 | 1110 | <td> |
1111 | 1111 | <a href=" |
1112 | 1112 | <?php |
1113 | - echo esc_url( admin_url( 'index.php?page=gp-setup' ) ); |
|
1113 | + echo esc_url(admin_url('index.php?page=gp-setup')); |
|
1114 | 1114 | ?> |
1115 | - " class="button button-primary"><?php esc_html_e( 'Launch', 'invoicing' ); ?></a> |
|
1115 | + " class="button button-primary"><?php esc_html_e('Launch', 'invoicing'); ?></a> |
|
1116 | 1116 | </td> |
1117 | 1117 | </tr> |
1118 | 1118 | |
1119 | - <?php do_action( 'wpinv_tools_row' ); ?> |
|
1119 | + <?php do_action('wpinv_tools_row'); ?> |
|
1120 | 1120 | </tbody> |
1121 | 1121 | </table> |
1122 | - <?php do_action( 'wpinv_tools_after' ); ?> |
|
1122 | + <?php do_action('wpinv_tools_after'); ?> |
|
1123 | 1123 | <?php |
1124 | 1124 | } |
1125 | 1125 | |
1126 | 1126 | |
1127 | -function wpinv_descriptive_text_callback( $args ) { |
|
1128 | - echo wp_kses_post( $args['desc'] ); |
|
1127 | +function wpinv_descriptive_text_callback($args) { |
|
1128 | + echo wp_kses_post($args['desc']); |
|
1129 | 1129 | } |
1130 | 1130 | |
1131 | -function wpinv_raw_html_callback( $args ) { |
|
1132 | - echo wp_kses( $args['desc'], getpaid_allowed_html() ); |
|
1131 | +function wpinv_raw_html_callback($args) { |
|
1132 | + echo wp_kses($args['desc'], getpaid_allowed_html()); |
|
1133 | 1133 | } |
1134 | 1134 | |
1135 | -function wpinv_hook_callback( $args ) { |
|
1136 | - do_action( 'wpinv_' . $args['id'], $args ); |
|
1135 | +function wpinv_hook_callback($args) { |
|
1136 | + do_action('wpinv_' . $args['id'], $args); |
|
1137 | 1137 | } |
1138 | 1138 | |
1139 | 1139 | function wpinv_set_settings_cap() { |
1140 | 1140 | return wpinv_get_capability(); |
1141 | 1141 | } |
1142 | -add_filter( 'option_page_capability_wpinv_settings', 'wpinv_set_settings_cap' ); |
|
1142 | +add_filter('option_page_capability_wpinv_settings', 'wpinv_set_settings_cap'); |
|
1143 | 1143 | |
1144 | 1144 | |
1145 | -function wpinv_on_update_settings( $old_value, $value, $option ) { |
|
1146 | - $old = ! empty( $old_value['remove_data_on_unistall'] ) ? 1 : ''; |
|
1147 | - $new = ! empty( $value['remove_data_on_unistall'] ) ? 1 : ''; |
|
1145 | +function wpinv_on_update_settings($old_value, $value, $option) { |
|
1146 | + $old = !empty($old_value['remove_data_on_unistall']) ? 1 : ''; |
|
1147 | + $new = !empty($value['remove_data_on_unistall']) ? 1 : ''; |
|
1148 | 1148 | |
1149 | - if ( $old != $new ) { |
|
1150 | - update_option( 'wpinv_remove_data_on_invoice_unistall', $new ); |
|
1149 | + if ($old != $new) { |
|
1150 | + update_option('wpinv_remove_data_on_invoice_unistall', $new); |
|
1151 | 1151 | } |
1152 | 1152 | } |
1153 | -add_action( 'update_option_wpinv_settings', 'wpinv_on_update_settings', 10, 3 ); |
|
1153 | +add_action('update_option_wpinv_settings', 'wpinv_on_update_settings', 10, 3); |
|
1154 | 1154 | |
1155 | 1155 | /** |
1156 | 1156 | * Returns the merge tags help text. |
@@ -1159,16 +1159,16 @@ discard block |
||
1159 | 1159 | * |
1160 | 1160 | * @return string |
1161 | 1161 | */ |
1162 | -function wpinv_get_merge_tags_help_text( $subscription = false ) { |
|
1162 | +function wpinv_get_merge_tags_help_text($subscription = false) { |
|
1163 | 1163 | |
1164 | 1164 | $url = $subscription ? 'https://gist.github.com/picocodes/3d213982d57c34edf7a46fd3f0e8583e' : 'https://gist.github.com/picocodes/43bdc4d4bbba844534b2722e2af0b58f'; |
1165 | 1165 | $link = sprintf( |
1166 | 1166 | '<strong><a href="%s" target="_blank">%s</a></strong>', |
1167 | 1167 | $url, |
1168 | - esc_html__( 'View available merge tags.', 'wpinv-quotes' ) |
|
1168 | + esc_html__('View available merge tags.', 'wpinv-quotes') |
|
1169 | 1169 | ); |
1170 | 1170 | |
1171 | - $description = esc_html__( 'The content of the email (Merge Tags and HTML are allowed).', 'invoicing' ); |
|
1171 | + $description = esc_html__('The content of the email (Merge Tags and HTML are allowed).', 'invoicing'); |
|
1172 | 1172 | |
1173 | 1173 | return "$description $link"; |
1174 | 1174 |