Passed
Push — master ( 69e6d2...8b22fd )
by Brian
04:39
created
includes/gateways/class-getpaid-payment-gateway.php 1 patch
Indentation   +613 added lines, -613 removed lines patch added patch discarded remove patch
@@ -13,462 +13,462 @@  discard block
 block discarded – undo
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
-		// Register gateway.
142
-		add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) );
143
-
144
-		$this->enabled = wpinv_is_gateway_active( $this->id );
145
-
146
-		// Add support for various features.
147
-		foreach ( $this->supports as $feature ) {
148
-			add_filter( "wpinv_{$this->id}_support_{$feature}", '__return_true' );
149
-			add_filter( "getpaid_{$this->id}_support_{$feature}", '__return_true' );
150
-			add_filter( "getpaid_{$this->id}_supports_{$feature}", '__return_true' );
151
-		}
152
-
153
-		// Invoice addons.
154
-		if ( $this->supports( 'addons' ) ) {
155
-			add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 );
156
-		}
157
-
158
-		// Gateway settings.
159
-		add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) );
160
-
161
-		// Gateway checkout fiellds.
162
-		add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 );
163
-
164
-		// Process payment.
165
-		add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 );
166
-
167
-		// Change the checkout button text.
168
-		if ( ! empty( $this->checkout_button_text ) ) {
169
-			add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) );
170
-		}
171
-
172
-		// Check if a gateway is valid for a given currency.
173
-		add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 );
174
-
175
-		// Generate the transaction url.
176
-		add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 );
177
-
178
-		// Generate the subscription url.
179
-		add_filter( 'getpaid_remote_subscription_profile_url', array( $this, 'generate_subscription_url' ), 10, 2 );
180
-
181
-		// Confirm payments.
182
-		add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 );
183
-
184
-		// Verify IPNs.
185
-		add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) );
186
-
187
-	}
188
-
189
-	/**
190
-	 * Checks if this gateway is a given gateway.
191
-	 *
192
-	 * @since 1.0.19
193
-	 * @return bool
194
-	 */
195
-	public function is( $gateway ) {
196
-		return $gateway == $this->id;
197
-	}
198
-
199
-	/**
200
-	 * Returns a users saved tokens for this gateway.
201
-	 *
202
-	 * @since 1.0.19
203
-	 * @return array
204
-	 */
205
-	public function get_tokens( $sandbox = null ) {
206
-
207
-		if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) {
208
-			$tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true );
209
-
210
-			if ( is_array( $tokens ) ) {
211
-				$this->tokens = $tokens;
212
-			}
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
+        // Register gateway.
142
+        add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) );
143
+
144
+        $this->enabled = wpinv_is_gateway_active( $this->id );
145
+
146
+        // Add support for various features.
147
+        foreach ( $this->supports as $feature ) {
148
+            add_filter( "wpinv_{$this->id}_support_{$feature}", '__return_true' );
149
+            add_filter( "getpaid_{$this->id}_support_{$feature}", '__return_true' );
150
+            add_filter( "getpaid_{$this->id}_supports_{$feature}", '__return_true' );
151
+        }
152
+
153
+        // Invoice addons.
154
+        if ( $this->supports( 'addons' ) ) {
155
+            add_action( "getpaid_process_{$this->id}_invoice_addons", array( $this, 'process_addons' ), 10, 2 );
156
+        }
157
+
158
+        // Gateway settings.
159
+        add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) );
160
+
161
+        // Gateway checkout fiellds.
162
+        add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 );
163
+
164
+        // Process payment.
165
+        add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 );
166
+
167
+        // Change the checkout button text.
168
+        if ( ! empty( $this->checkout_button_text ) ) {
169
+            add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) );
170
+        }
171
+
172
+        // Check if a gateway is valid for a given currency.
173
+        add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 );
174
+
175
+        // Generate the transaction url.
176
+        add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 );
177
+
178
+        // Generate the subscription url.
179
+        add_filter( 'getpaid_remote_subscription_profile_url', array( $this, 'generate_subscription_url' ), 10, 2 );
180
+
181
+        // Confirm payments.
182
+        add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 );
183
+
184
+        // Verify IPNs.
185
+        add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) );
186
+
187
+    }
188
+
189
+    /**
190
+     * Checks if this gateway is a given gateway.
191
+     *
192
+     * @since 1.0.19
193
+     * @return bool
194
+     */
195
+    public function is( $gateway ) {
196
+        return $gateway == $this->id;
197
+    }
198
+
199
+    /**
200
+     * Returns a users saved tokens for this gateway.
201
+     *
202
+     * @since 1.0.19
203
+     * @return array
204
+     */
205
+    public function get_tokens( $sandbox = null ) {
206
+
207
+        if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) {
208
+            $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true );
209
+
210
+            if ( is_array( $tokens ) ) {
211
+                $this->tokens = $tokens;
212
+            }
213 213
 }
214 214
 
215
-		if ( ! is_bool( $sandbox ) ) {
216
-			return $this->tokens;
217
-		}
218
-
219
-		// Filter tokens.
220
-		$args = array( 'type' => $sandbox ? 'sandbox' : 'live' );
221
-		return wp_list_filter( $this->tokens, $args );
222
-
223
-	}
224
-
225
-	/**
226
-	 * Saves a token for this gateway.
227
-	 *
228
-	 * @since 1.0.19
229
-	 */
230
-	public function save_token( $token ) {
231
-
232
-		$tokens   = $this->get_tokens();
233
-		$tokens[] = $token;
234
-
235
-		update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens );
236
-
237
-		$this->tokens = $tokens;
238
-
239
-	}
240
-
241
-	/**
242
-	 * Return the title for admin screens.
243
-	 *
244
-	 * @return string
245
-	 */
246
-	public function get_method_title() {
247
-		return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this );
248
-	}
249
-
250
-	/**
251
-	 * Return the description for admin screens.
252
-	 *
253
-	 * @return string
254
-	 */
255
-	public function get_method_description() {
256
-		return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this );
257
-	}
258
-
259
-	/**
260
-	 * Get the success url.
261
-	 *
262
-	 * @param WPInv_Invoice $invoice Invoice object.
263
-	 * @return string
264
-	 */
265
-	public function get_return_url( $invoice ) {
266
-
267
-		// Payment success url
268
-		$return_url = add_query_arg(
269
-			array(
270
-				'payment-confirm' => $this->id,
271
-				'invoice_key'     => $invoice->get_key(),
272
-				'utm_nooverride'  => 1,
273
-			),
274
-			wpinv_get_success_page_uri()
275
-		);
276
-
277
-		return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this );
278
-	}
279
-
280
-	/**
281
-	 * Confirms payments when rendering the success page.
282
-	 *
283
-	 * @param string $content Success page content.
284
-	 * @return string
285
-	 */
286
-	public function confirm_payment( $content ) {
287
-
288
-		// Retrieve the invoice.
289
-		$invoice_id = getpaid_get_current_invoice_id();
290
-		$invoice    = wpinv_get_invoice( $invoice_id );
291
-
292
-		// Ensure that it exists and that it is pending payment.
293
-		if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) {
294
-			return $content;
295
-		}
296
-
297
-		// Can the user view this invoice??
298
-		if ( ! wpinv_user_can_view_invoice( $invoice ) ) {
299
-			return $content;
300
-		}
301
-
302
-		// Show payment processing indicator.
303
-		return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) );
304
-	}
305
-
306
-	/**
307
-	 * Processes ipns and marks payments as complete.
308
-	 *
309
-	 * @return void
310
-	 */
311
-	public function verify_ipn() {}
312
-
313
-	/**
314
-	 * Processes invoice addons.
315
-	 *
316
-	 * @param WPInv_Invoice $invoice
317
-	 * @param GetPaid_Form_Item[] $items
318
-	 * @return WPInv_Invoice
319
-	 */
320
-	public function process_addons( $invoice, $items ) {
321
-
322
-	}
323
-
324
-	/**
325
-	 * Get a link to the transaction on the 3rd party gateway site (if applicable).
326
-	 *
327
-	 * @param string $transaction_url transaction url.
328
-	 * @param WPInv_Invoice $invoice Invoice object.
329
-	 * @return string transaction URL, or empty string.
330
-	 */
331
-	public function filter_transaction_url( $transaction_url, $invoice ) {
332
-
333
-		$transaction_id  = $invoice->get_transaction_id();
334
-
335
-		if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) {
336
-			$transaction_url = sprintf( $this->view_transaction_url, $transaction_id );
337
-			$replace         = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
338
-			$transaction_url = str_replace( '{sandbox}', $replace, $transaction_url );
339
-		}
340
-
341
-		return $transaction_url;
342
-	}
343
-
344
-	/**
345
-	 * Get a link to the subscription on the 3rd party gateway site (if applicable).
346
-	 *
347
-	 * @param string $subscription_url transaction url.
348
-	 * @param WPInv_Subscription $subscription Subscription objectt.
349
-	 * @return string subscription URL, or empty string.
350
-	 */
351
-	public function generate_subscription_url( $subscription_url, $subscription ) {
352
-
353
-		$profile_id      = $subscription->get_profile_id();
354
-
355
-		if ( $this->id == $subscription->get_gateway() && ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) {
356
-
357
-			$subscription_url = sprintf( $this->view_subscription_url, $profile_id );
358
-			$replace          = $this->is_sandbox( $subscription->get_parent_invoice() ) ? 'sandbox' : '';
359
-			$subscription_url = str_replace( '{sandbox}', $replace, $subscription_url );
360
-
361
-		}
362
-
363
-		return $subscription_url;
364
-	}
365
-
366
-	/**
367
-	 * Check if the gateway is available for use.
368
-	 *
369
-	 * @return bool
370
-	 */
371
-	public function is_available() {
372
-		return ! empty( $this->enabled );
373
-	}
374
-
375
-	/**
376
-	 * Return the gateway's title.
377
-	 *
378
-	 * @return string
379
-	 */
380
-	public function get_title() {
381
-		return apply_filters( 'getpaid_gateway_title', $this->title, $this );
382
-	}
383
-
384
-	/**
385
-	 * Return the gateway's description.
386
-	 *
387
-	 * @return string
388
-	 */
389
-	public function get_description() {
390
-		return apply_filters( 'getpaid_gateway_description', $this->description, $this );
391
-	}
392
-
393
-	/**
394
-	 * Process Payment.
395
-	 *
396
-	 *
397
-	 * @param WPInv_Invoice $invoice Invoice.
398
-	 * @param array $submission_data Posted checkout fields.
399
-	 * @param GetPaid_Payment_Form_Submission $submission Checkout submission.
400
-	 * @return void
401
-	 */
402
-	public function process_payment( $invoice, $submission_data, $submission ) {
403
-		// Process the payment then either redirect to the success page or the gateway.
404
-		do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission );
405
-	}
406
-
407
-	/**
408
-	 * Process refund.
409
-	 *
410
-	 * If the gateway declares 'refunds' support, this will allow it to refund.
411
-	 * a passed in amount.
412
-	 *
413
-	 * @param WPInv_Invoice $invoice Invoice.
414
-	 * @param  float  $amount Refund amount.
415
-	 * @param  string $reason Refund reason.
416
-	 * @return WP_Error|bool True or false based on success, or a WP_Error object.
417
-	 */
418
-	public function process_refund( $invoice, $amount = null, $reason = '' ) {
419
-		return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason );
420
-	}
421
-
422
-	/**
423
-	 * Displays the payment fields, credit cards etc.
424
-	 *
425
-	 * @param int $invoice_id 0 or invoice id.
426
-	 * @param GetPaid_Payment_Form $form Current payment form.
427
-	 */
428
-	public function payment_fields( $invoice_id, $form ) {
429
-		do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form );
430
-	}
431
-
432
-	/**
433
-	 * Filters the gateway settings.
434
-	 *
435
-	 * @param array $admin_settings
436
-	 */
437
-	public function admin_settings( $admin_settings ) {
438
-		return $admin_settings;
439
-	}
440
-
441
-	/**
442
-	 * Retrieves the value of a gateway setting.
443
-	 *
444
-	 * @param string $option
445
-	 */
446
-	public function get_option( $option, $default = false ) {
447
-		return wpinv_get_option( $this->id . '_' . $option, $default );
448
-	}
449
-
450
-	/**
451
-	 * Check if a gateway supports a given feature.
452
-	 *
453
-	 * Gateways should override this to declare support (or lack of support) for a feature.
454
-	 * For backward compatibility, gateways support 'products' by default, but nothing else.
455
-	 *
456
-	 * @param string $feature string The name of a feature to test support for.
457
-	 * @return bool True if the gateway supports the feature, false otherwise.
458
-	 * @since 1.0.19
459
-	 */
460
-	public function supports( $feature ) {
461
-		return getpaid_payment_gateway_supports( $this->id, $feature );
462
-	}
463
-
464
-	/**
465
-	 * Returns the credit card form html.
466
-	 *
467
-	 * @param bool $save whether or not to display the save button.
468
-	 */
215
+        if ( ! is_bool( $sandbox ) ) {
216
+            return $this->tokens;
217
+        }
218
+
219
+        // Filter tokens.
220
+        $args = array( 'type' => $sandbox ? 'sandbox' : 'live' );
221
+        return wp_list_filter( $this->tokens, $args );
222
+
223
+    }
224
+
225
+    /**
226
+     * Saves a token for this gateway.
227
+     *
228
+     * @since 1.0.19
229
+     */
230
+    public function save_token( $token ) {
231
+
232
+        $tokens   = $this->get_tokens();
233
+        $tokens[] = $token;
234
+
235
+        update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens );
236
+
237
+        $this->tokens = $tokens;
238
+
239
+    }
240
+
241
+    /**
242
+     * Return the title for admin screens.
243
+     *
244
+     * @return string
245
+     */
246
+    public function get_method_title() {
247
+        return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this );
248
+    }
249
+
250
+    /**
251
+     * Return the description for admin screens.
252
+     *
253
+     * @return string
254
+     */
255
+    public function get_method_description() {
256
+        return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this );
257
+    }
258
+
259
+    /**
260
+     * Get the success url.
261
+     *
262
+     * @param WPInv_Invoice $invoice Invoice object.
263
+     * @return string
264
+     */
265
+    public function get_return_url( $invoice ) {
266
+
267
+        // Payment success url
268
+        $return_url = add_query_arg(
269
+            array(
270
+                'payment-confirm' => $this->id,
271
+                'invoice_key'     => $invoice->get_key(),
272
+                'utm_nooverride'  => 1,
273
+            ),
274
+            wpinv_get_success_page_uri()
275
+        );
276
+
277
+        return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this );
278
+    }
279
+
280
+    /**
281
+     * Confirms payments when rendering the success page.
282
+     *
283
+     * @param string $content Success page content.
284
+     * @return string
285
+     */
286
+    public function confirm_payment( $content ) {
287
+
288
+        // Retrieve the invoice.
289
+        $invoice_id = getpaid_get_current_invoice_id();
290
+        $invoice    = wpinv_get_invoice( $invoice_id );
291
+
292
+        // Ensure that it exists and that it is pending payment.
293
+        if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) {
294
+            return $content;
295
+        }
296
+
297
+        // Can the user view this invoice??
298
+        if ( ! wpinv_user_can_view_invoice( $invoice ) ) {
299
+            return $content;
300
+        }
301
+
302
+        // Show payment processing indicator.
303
+        return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) );
304
+    }
305
+
306
+    /**
307
+     * Processes ipns and marks payments as complete.
308
+     *
309
+     * @return void
310
+     */
311
+    public function verify_ipn() {}
312
+
313
+    /**
314
+     * Processes invoice addons.
315
+     *
316
+     * @param WPInv_Invoice $invoice
317
+     * @param GetPaid_Form_Item[] $items
318
+     * @return WPInv_Invoice
319
+     */
320
+    public function process_addons( $invoice, $items ) {
321
+
322
+    }
323
+
324
+    /**
325
+     * Get a link to the transaction on the 3rd party gateway site (if applicable).
326
+     *
327
+     * @param string $transaction_url transaction url.
328
+     * @param WPInv_Invoice $invoice Invoice object.
329
+     * @return string transaction URL, or empty string.
330
+     */
331
+    public function filter_transaction_url( $transaction_url, $invoice ) {
332
+
333
+        $transaction_id  = $invoice->get_transaction_id();
334
+
335
+        if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) {
336
+            $transaction_url = sprintf( $this->view_transaction_url, $transaction_id );
337
+            $replace         = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
338
+            $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url );
339
+        }
340
+
341
+        return $transaction_url;
342
+    }
343
+
344
+    /**
345
+     * Get a link to the subscription on the 3rd party gateway site (if applicable).
346
+     *
347
+     * @param string $subscription_url transaction url.
348
+     * @param WPInv_Subscription $subscription Subscription objectt.
349
+     * @return string subscription URL, or empty string.
350
+     */
351
+    public function generate_subscription_url( $subscription_url, $subscription ) {
352
+
353
+        $profile_id      = $subscription->get_profile_id();
354
+
355
+        if ( $this->id == $subscription->get_gateway() && ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) {
356
+
357
+            $subscription_url = sprintf( $this->view_subscription_url, $profile_id );
358
+            $replace          = $this->is_sandbox( $subscription->get_parent_invoice() ) ? 'sandbox' : '';
359
+            $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url );
360
+
361
+        }
362
+
363
+        return $subscription_url;
364
+    }
365
+
366
+    /**
367
+     * Check if the gateway is available for use.
368
+     *
369
+     * @return bool
370
+     */
371
+    public function is_available() {
372
+        return ! empty( $this->enabled );
373
+    }
374
+
375
+    /**
376
+     * Return the gateway's title.
377
+     *
378
+     * @return string
379
+     */
380
+    public function get_title() {
381
+        return apply_filters( 'getpaid_gateway_title', $this->title, $this );
382
+    }
383
+
384
+    /**
385
+     * Return the gateway's description.
386
+     *
387
+     * @return string
388
+     */
389
+    public function get_description() {
390
+        return apply_filters( 'getpaid_gateway_description', $this->description, $this );
391
+    }
392
+
393
+    /**
394
+     * Process Payment.
395
+     *
396
+     *
397
+     * @param WPInv_Invoice $invoice Invoice.
398
+     * @param array $submission_data Posted checkout fields.
399
+     * @param GetPaid_Payment_Form_Submission $submission Checkout submission.
400
+     * @return void
401
+     */
402
+    public function process_payment( $invoice, $submission_data, $submission ) {
403
+        // Process the payment then either redirect to the success page or the gateway.
404
+        do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission );
405
+    }
406
+
407
+    /**
408
+     * Process refund.
409
+     *
410
+     * If the gateway declares 'refunds' support, this will allow it to refund.
411
+     * a passed in amount.
412
+     *
413
+     * @param WPInv_Invoice $invoice Invoice.
414
+     * @param  float  $amount Refund amount.
415
+     * @param  string $reason Refund reason.
416
+     * @return WP_Error|bool True or false based on success, or a WP_Error object.
417
+     */
418
+    public function process_refund( $invoice, $amount = null, $reason = '' ) {
419
+        return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason );
420
+    }
421
+
422
+    /**
423
+     * Displays the payment fields, credit cards etc.
424
+     *
425
+     * @param int $invoice_id 0 or invoice id.
426
+     * @param GetPaid_Payment_Form $form Current payment form.
427
+     */
428
+    public function payment_fields( $invoice_id, $form ) {
429
+        do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form );
430
+    }
431
+
432
+    /**
433
+     * Filters the gateway settings.
434
+     *
435
+     * @param array $admin_settings
436
+     */
437
+    public function admin_settings( $admin_settings ) {
438
+        return $admin_settings;
439
+    }
440
+
441
+    /**
442
+     * Retrieves the value of a gateway setting.
443
+     *
444
+     * @param string $option
445
+     */
446
+    public function get_option( $option, $default = false ) {
447
+        return wpinv_get_option( $this->id . '_' . $option, $default );
448
+    }
449
+
450
+    /**
451
+     * Check if a gateway supports a given feature.
452
+     *
453
+     * Gateways should override this to declare support (or lack of support) for a feature.
454
+     * For backward compatibility, gateways support 'products' by default, but nothing else.
455
+     *
456
+     * @param string $feature string The name of a feature to test support for.
457
+     * @return bool True if the gateway supports the feature, false otherwise.
458
+     * @since 1.0.19
459
+     */
460
+    public function supports( $feature ) {
461
+        return getpaid_payment_gateway_supports( $this->id, $feature );
462
+    }
463
+
464
+    /**
465
+     * Returns the credit card form html.
466
+     *
467
+     * @param bool $save whether or not to display the save button.
468
+     */
469 469
     public function get_cc_form( $save = false ) {
470 470
 
471
-		ob_start();
471
+        ob_start();
472 472
 
473 473
         $id_prefix = esc_attr( uniqid( $this->id ) );
474 474
 
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
             '11' => __( 'November', 'invoicing' ),
487 487
             '12' => __( 'December', 'invoicing' ),
488 488
         );
489
-		$months = apply_filters( 'getpaid_cc_months', $months, $this );
489
+        $months = apply_filters( 'getpaid_cc_months', $months, $this );
490 490
 
491 491
         $year  = (int) current_time( 'Y' );
492 492
         $years = array();
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
             $years[ $year + $i ] = $year + $i;
496 496
         }
497 497
 
498
-		$years = apply_filters( 'getpaid_cc_years', $years, $this );
498
+        $years = apply_filters( 'getpaid_cc_years', $years, $this );
499 499
 
500 500
         ?>
501 501
             <div class="<?php echo esc_attr( $this->id ); ?>-cc-form getpaid-cc-form mt-1">
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
 
532 532
                                             <?php
533 533
                                                 foreach ( $months as $key => $month ) {
534
-												echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $month ) . '</option>';
534
+                                                echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $month ) . '</option>';
535 535
                                                 }
536 536
                                             ?>
537 537
 
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
 
545 545
                                             <?php
546 546
                                                 foreach ( $years as $key => $year ) {
547
-												echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $year ) . '</option>';
547
+                                                echo "<option value='" . esc_attr( $key ) . "'>" . esc_html( $year ) . '</option>';
548 548
                                                 }
549 549
                                             ?>
550 550
 
@@ -562,13 +562,13 @@  discard block
 block discarded – undo
562 562
                                         'name'             => $this->id . '[cc_cvv2]',
563 563
                                         'id'               => "$id_prefix-cc-cvv2",
564 564
                                         'label'            => __( 'CCV', 'invoicing' ),
565
-										'label_type'       => 'vertical',
566
-										'class'            => 'form-control-sm',
567
-										'extra_attributes' => array(
568
-											'autocomplete' => 'cc-csc',
569
-										),
565
+                                        'label_type'       => 'vertical',
566
+                                        'class'            => 'form-control-sm',
567
+                                        'extra_attributes' => array(
568
+                                            'autocomplete' => 'cc-csc',
569
+                                        ),
570 570
                                     ),
571
-									true
571
+                                    true
572 572
                                 );
573 573
                             ?>
574 574
                         </div>
@@ -577,192 +577,192 @@  discard block
 block discarded – undo
577 577
 
578 578
 					<?php
579 579
 
580
-						if ( $save ) {
581
-							$this->save_payment_method_checkbox();
582
-						}
580
+                        if ( $save ) {
581
+                            $this->save_payment_method_checkbox();
582
+                        }
583 583
 
584
-					?>
584
+                    ?>
585 585
                 </div>
586 586
 
587 587
             </div>
588 588
 		<?php
589 589
 
590
-		return ob_get_clean();
590
+        return ob_get_clean();
591
+
592
+    }
593
+
594
+    /**
595
+     * Displays a new payment method entry form.
596
+     *
597
+     * @since 1.0.19
598
+     */
599
+    public function new_payment_method_entry( $form ) {
600
+        echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses( $form, getpaid_allowed_html() ) . '</div>';
601
+    }
602
+
603
+    /**
604
+     * Grab and display our saved payment methods.
605
+     *
606
+     * @since 1.0.19
607
+     */
608
+    public function saved_payment_methods() {
609
+        echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">';
610
+
611
+        foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) {
612
+            $this->get_saved_payment_method_option_html( $token );
613
+        }
614
+
615
+        $this->get_new_payment_method_option_html();
616
+        echo '</ul>';
591 617
 
592 618
     }
593 619
 
594
-	/**
595
-	 * Displays a new payment method entry form.
596
-	 *
597
-	 * @since 1.0.19
598
-	 */
599
-	public function new_payment_method_entry( $form ) {
600
-		echo "<div class='getpaid-new-payment-method-form' style='display:none;'> " . wp_kses( $form, getpaid_allowed_html() ) . '</div>';
601
-	}
602
-
603
-	/**
604
-	 * Grab and display our saved payment methods.
605
-	 *
606
-	 * @since 1.0.19
607
-	 */
608
-	public function saved_payment_methods() {
609
-		echo '<ul class="getpaid-saved-payment-methods list-unstyled m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">';
610
-
611
-		foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) {
612
-			$this->get_saved_payment_method_option_html( $token );
613
-		}
614
-
615
-		$this->get_new_payment_method_option_html();
616
-		echo '</ul>';
617
-
618
-	}
619
-
620
-	/**
621
-	 * Gets saved payment method HTML from a token.
622
-	 *
623
-	 * @since 1.0.19
624
-	 * @param  array $token Payment Token.
625
-	 * @return string Generated payment method HTML
626
-	 */
627
-	public function get_saved_payment_method_option_html( $token ) {
628
-
629
-		printf(
630
-			'<li class="getpaid-payment-method form-group">
620
+    /**
621
+     * Gets saved payment method HTML from a token.
622
+     *
623
+     * @since 1.0.19
624
+     * @param  array $token Payment Token.
625
+     * @return string Generated payment method HTML
626
+     */
627
+    public function get_saved_payment_method_option_html( $token ) {
628
+
629
+        printf(
630
+            '<li class="getpaid-payment-method form-group">
631 631
 				<label>
632 632
 					<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 />
633 633
 					<span>%3$s</span>
634 634
 				</label>
635 635
 			</li>',
636
-			esc_attr( $this->id ),
637
-			esc_attr( $token['id'] ),
638
-			esc_html( $token['name'] ),
639
-			checked( empty( $token['default'] ), false, false ),
640
-			empty( $token['currency'] ) ? 'none' : esc_attr( $token['currency'] )
641
-		);
642
-
643
-	}
644
-
645
-	/**
646
-	 * Displays a radio button for entering a new payment method (new CC details) instead of using a saved method.
647
-	 *
648
-	 * @since 1.0.19
649
-	 */
650
-	public function get_new_payment_method_option_html() {
651
-
652
-		$label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this );
653
-
654
-		printf(
655
-			'<li class="getpaid-new-payment-method">
636
+            esc_attr( $this->id ),
637
+            esc_attr( $token['id'] ),
638
+            esc_html( $token['name'] ),
639
+            checked( empty( $token['default'] ), false, false ),
640
+            empty( $token['currency'] ) ? 'none' : esc_attr( $token['currency'] )
641
+        );
642
+
643
+    }
644
+
645
+    /**
646
+     * Displays a radio button for entering a new payment method (new CC details) instead of using a saved method.
647
+     *
648
+     * @since 1.0.19
649
+     */
650
+    public function get_new_payment_method_option_html() {
651
+
652
+        $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this );
653
+
654
+        printf(
655
+            '<li class="getpaid-new-payment-method">
656 656
 				<label>
657 657
 					<input name="getpaid-%1$s-payment-method" type="radio" data-currency="none" value="new" style="width:auto;" />
658 658
 					<span>%2$s</span>
659 659
 				</label>
660 660
 			</li>',
661
-			esc_attr( $this->id ),
662
-			esc_html( $label )
663
-		);
664
-
665
-	}
666
-
667
-	/**
668
-	 * Outputs a checkbox for saving a new payment method to the database.
669
-	 *
670
-	 * @since 1.0.19
671
-	 */
672
-	public function save_payment_method_checkbox() {
673
-
674
-		aui()->input(
675
-			array(
676
-				'type'       => 'checkbox',
677
-				'name'       => esc_attr( "getpaid-$this->id-new-payment-method" ),
678
-				'id'         => esc_attr( uniqid( $this->id ) ),
679
-				'required'   => false,
680
-				'label'      => esc_html__( 'Save payment method', 'invoicing' ),
681
-				'value'      => 'true',
682
-				'checked'    => true,
683
-				'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1',
684
-			),
685
-			true
686
-		);
687
-
688
-	}
689
-
690
-	/**
691
-	 * Registers the gateway.
692
-	 *
693
-	 * @return array
694
-	 */
695
-	public function register_gateway( $gateways ) {
696
-
697
-		$gateways[ $this->id ] = array(
698
-
699
-			'admin_label'    => $this->method_title,
661
+            esc_attr( $this->id ),
662
+            esc_html( $label )
663
+        );
664
+
665
+    }
666
+
667
+    /**
668
+     * Outputs a checkbox for saving a new payment method to the database.
669
+     *
670
+     * @since 1.0.19
671
+     */
672
+    public function save_payment_method_checkbox() {
673
+
674
+        aui()->input(
675
+            array(
676
+                'type'       => 'checkbox',
677
+                'name'       => esc_attr( "getpaid-$this->id-new-payment-method" ),
678
+                'id'         => esc_attr( uniqid( $this->id ) ),
679
+                'required'   => false,
680
+                'label'      => esc_html__( 'Save payment method', 'invoicing' ),
681
+                'value'      => 'true',
682
+                'checked'    => true,
683
+                'wrap_class' => 'getpaid-save-payment-method pt-1 pb-1',
684
+            ),
685
+            true
686
+        );
687
+
688
+    }
689
+
690
+    /**
691
+     * Registers the gateway.
692
+     *
693
+     * @return array
694
+     */
695
+    public function register_gateway( $gateways ) {
696
+
697
+        $gateways[ $this->id ] = array(
698
+
699
+            'admin_label'    => $this->method_title,
700 700
             'checkout_label' => $this->title,
701
-			'ordering'       => $this->order,
701
+            'ordering'       => $this->order,
702 702
 
703
-		);
703
+        );
704 704
 
705
-		return $gateways;
705
+        return $gateways;
706 706
 
707
-	}
707
+    }
708 708
 
709
-	/**
710
-	 * Checks whether or not this is a sandbox request.
711
-	 *
712
-	 * @param  WPInv_Invoice|null $invoice Invoice object or null.
713
-	 * @return bool
714
-	 */
715
-	public function is_sandbox( $invoice = null ) {
709
+    /**
710
+     * Checks whether or not this is a sandbox request.
711
+     *
712
+     * @param  WPInv_Invoice|null $invoice Invoice object or null.
713
+     * @return bool
714
+     */
715
+    public function is_sandbox( $invoice = null ) {
716 716
 
717
-		if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) {
718
-			return $invoice->get_mode() == 'test';
719
-		}
717
+        if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) {
718
+            return $invoice->get_mode() == 'test';
719
+        }
720 720
 
721
-		return wpinv_is_test_mode( $this->id );
721
+        return wpinv_is_test_mode( $this->id );
722 722
 
723
-	}
723
+    }
724 724
 
725
-	/**
726
-	 * Renames the checkout button
727
-	 *
728
-	 * @return string
729
-	 */
730
-	public function rename_checkout_button() {
731
-		return $this->checkout_button_text;
732
-	}
725
+    /**
726
+     * Renames the checkout button
727
+     *
728
+     * @return string
729
+     */
730
+    public function rename_checkout_button() {
731
+        return $this->checkout_button_text;
732
+    }
733 733
 
734
-	/**
735
-	 * Validate gateway currency
736
-	 *
737
-	 * @return bool
738
-	 */
739
-	public function validate_currency( $validation, $currency ) {
734
+    /**
735
+     * Validate gateway currency
736
+     *
737
+     * @return bool
738
+     */
739
+    public function validate_currency( $validation, $currency ) {
740 740
 
741
-		// Required currencies.
742
-		if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) {
743
-			return false;
744
-		}
741
+        // Required currencies.
742
+        if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) {
743
+            return false;
744
+        }
745 745
 
746
-		// Excluded currencies.
747
-		if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) {
748
-			return false;
749
-		}
746
+        // Excluded currencies.
747
+        if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) {
748
+            return false;
749
+        }
750 750
 
751
-		return $validation;
752
-	}
751
+        return $validation;
752
+    }
753 753
 
754
-	/**
755
-	 * Displays an error
756
-	 *
757
-	 */
758
-	public function show_error( $code, $message, $type ) {
754
+    /**
755
+     * Displays an error
756
+     *
757
+     */
758
+    public function show_error( $code, $message, $type ) {
759 759
 
760
-		if ( is_admin() ) {
761
-			getpaid_admin()->{"show_$type"}( $message );
762
-		}
760
+        if ( is_admin() ) {
761
+            getpaid_admin()->{"show_$type"}( $message );
762
+        }
763 763
 
764
-		wpinv_set_error( $code, $message, $type );
764
+        wpinv_set_error( $code, $message, $type );
765 765
 
766
-	}
766
+    }
767 767
 
768 768
 }
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,40 +7,40 @@
 block discarded – undo
7 7
  * Bail if we are not in WP.
8 8
  */
9 9
 if ( ! defined( 'ABSPATH' ) ) {
10
-	exit;
10
+    exit;
11 11
 }
12 12
 
13 13
 /**
14 14
  * Set the version only if its the current newest while loading.
15 15
  */
16 16
 add_action('after_setup_theme', function () {
17
-	global $ayecode_ui_version,$ayecode_ui_file_key;
18
-	$this_version = "0.1.72";
19
-	if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
20
-		$ayecode_ui_version = $this_version ;
21
-		$ayecode_ui_file_key = wp_hash( __FILE__ );
22
-	}
17
+    global $ayecode_ui_version,$ayecode_ui_file_key;
18
+    $this_version = "0.1.72";
19
+    if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
20
+        $ayecode_ui_version = $this_version ;
21
+        $ayecode_ui_file_key = wp_hash( __FILE__ );
22
+    }
23 23
 },0);
24 24
 
25 25
 /**
26 26
  * Load this version of WP Bootstrap Settings only if the file hash is the current one.
27 27
  */
28 28
 add_action('after_setup_theme', function () {
29
-	global $ayecode_ui_file_key;
30
-	if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){
31
-		include_once( dirname( __FILE__ ) . '/includes/class-aui.php' );
32
-		include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' );
33
-	}
29
+    global $ayecode_ui_file_key;
30
+    if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){
31
+        include_once( dirname( __FILE__ ) . '/includes/class-aui.php' );
32
+        include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' );
33
+    }
34 34
 },1);
35 35
 
36 36
 /**
37 37
  * Add the function that calls the class.
38 38
  */
39 39
 if(!function_exists('aui')){
40
-	function aui(){
41
-		if(!class_exists("AUI",false)){
42
-			return false;
43
-		}
44
-		return AUI::instance();
45
-	}
40
+    function aui(){
41
+        if(!class_exists("AUI",false)){
42
+            return false;
43
+        }
44
+        return AUI::instance();
45
+    }
46 46
 }
Please login to merge, or discard this patch.
ayecode/wp-ayecode-ui/includes/components/class-aui-component-input.php 1 patch
Indentation   +1216 added lines, -1216 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! defined( 'ABSPATH' ) ) {
4
-	exit; // Exit if accessed directly
4
+    exit; // Exit if accessed directly
5 5
 }
6 6
 
7 7
 /**
@@ -11,1240 +11,1240 @@  discard block
 block discarded – undo
11 11
  */
12 12
 class AUI_Component_Input {
13 13
 
14
-	/**
15
-	 * Build the component.
16
-	 *
17
-	 * @param array $args
18
-	 *
19
-	 * @return string The rendered component.
20
-	 */
21
-	public static function input( $args = array() ) {
22
-		$defaults = array(
23
-			'type'                     => 'text',
24
-			'name'                     => '',
25
-			'class'                    => '',
26
-			'wrap_class'               => '',
27
-			'id'                       => '',
28
-			'placeholder'              => '',
29
-			'title'                    => '',
30
-			'value'                    => '',
31
-			'required'                 => false,
32
-			'size'                     => '', // sm, lg, small, large
33
-			'clear_icon'               => '', // true will show a clear icon, can't be used with input_group_right
34
-			'label'                    => '',
35
-			'label_after'              => false,
36
-			'label_class'              => '',
37
-			'label_col'                => '2',
38
-			'label_type'               => '', // top, horizontal, empty = hidden
39
-			'label_force_left'         => false, // used to force checkbox label left when using horizontal
40
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
41
-			'help_text'                => '',
42
-			'validation_text'          => '',
43
-			'validation_pattern'       => '',
44
-			'no_wrap'                  => false,
45
-			'input_group_right'        => '',
46
-			'input_group_left'         => '',
47
-			'input_group_right_inside' => false,
48
-			// forces the input group inside the input
49
-			'input_group_left_inside'  => false,
50
-			// forces the input group inside the input
51
-			'step'                     => '',
52
-			'switch'                   => false,
53
-			// to show checkbox as a switch
54
-			'checked'                  => false,
55
-			// set a checkbox or radio as selected
56
-			'password_toggle'          => true,
57
-			// toggle view/hide password
58
-			'element_require'          => '',
59
-			// [%element_id%] == "1"
60
-			'extra_attributes'         => array(),
61
-			// an array of extra attributes
62
-			'wrap_attributes'          => array()
63
-		);
64
-
65
-		/**
66
-		 * Parse incoming $args into an array and merge it with $defaults
67
-		 */
68
-		$args   = wp_parse_args( $args, $defaults );
69
-		$output = '';
70
-		if ( ! empty( $args['type'] ) ) {
71
-			// hidden label option needs to be empty
72
-			$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
73
-
74
-			$type = sanitize_html_class( $args['type'] );
75
-
76
-			$help_text   = '';
77
-			$label       = '';
78
-			$label_after = $args['label_after'];
79
-			$label_args  = array(
80
-				'title'      => $args['label'],
81
-				'for'        => $args['id'],
82
-				'class'      => $args['label_class'] . " ",
83
-				'label_type' => $args['label_type'],
84
-				'label_col'  => $args['label_col']
85
-			);
86
-
87
-			// floating labels need label after
88
-			if ( $args['label_type'] == 'floating' && $type != 'checkbox' ) {
89
-				$label_after         = true;
90
-				$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
91
-			}
92
-
93
-			// size
94
-			$size = '';
95
-			if ( $args['size'] == 'lg' || $args['size'] == 'large' ) {
96
-				$size = 'lg';
97
-				$args['class'] .= ' form-control-lg';
98
-			}elseif ( $args['size'] == 'sm' || $args['size'] == 'small' ) {
99
-				$size = 'sm';
100
-				$args['class'] .= ' form-control-sm';
101
-			}
102
-
103
-			// clear function
104
-			$clear_function = 'jQuery(this).parent().parent().find(\'input\').val(\'\');';
105
-
106
-			// Some special sauce for files
107
-			if ( $type == 'file' ) {
108
-				$label_after = true; // if type file we need the label after
109
-				$args['class'] .= ' custom-file-input ';
110
-			} elseif ( $type == 'checkbox' ) {
111
-				$label_after = true; // if type file we need the label after
112
-				$args['class'] .= ' custom-control-input ';
113
-			} elseif ( $type == 'datepicker' || $type == 'timepicker' ) {
114
-				$type = 'text';
115
-				$args['class'] .= ' bg-initial '; // @todo not sure why we have this?
116
-
117
-				$args['extra_attributes']['data-aui-init'] = 'flatpickr';
118
-
119
-				// set a way to clear field if empty
120
-				if ( $args['input_group_right'] === '' && $args['clear_icon'] !== false ) {
121
-					$args['input_group_right_inside'] = true;
122
-					$args['clear_icon'] = true;
123
-				}
124
-
125
-				// enqueue the script
126
-				$aui_settings = AyeCode_UI_Settings::instance();
127
-				$aui_settings->enqueue_flatpickr();
128
-			} elseif ( $type == 'iconpicker' ) {
129
-				$type = 'text';
130
-				//$args['class'] .= ' aui-flatpickr bg-initial ';
14
+    /**
15
+     * Build the component.
16
+     *
17
+     * @param array $args
18
+     *
19
+     * @return string The rendered component.
20
+     */
21
+    public static function input( $args = array() ) {
22
+        $defaults = array(
23
+            'type'                     => 'text',
24
+            'name'                     => '',
25
+            'class'                    => '',
26
+            'wrap_class'               => '',
27
+            'id'                       => '',
28
+            'placeholder'              => '',
29
+            'title'                    => '',
30
+            'value'                    => '',
31
+            'required'                 => false,
32
+            'size'                     => '', // sm, lg, small, large
33
+            'clear_icon'               => '', // true will show a clear icon, can't be used with input_group_right
34
+            'label'                    => '',
35
+            'label_after'              => false,
36
+            'label_class'              => '',
37
+            'label_col'                => '2',
38
+            'label_type'               => '', // top, horizontal, empty = hidden
39
+            'label_force_left'         => false, // used to force checkbox label left when using horizontal
40
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
41
+            'help_text'                => '',
42
+            'validation_text'          => '',
43
+            'validation_pattern'       => '',
44
+            'no_wrap'                  => false,
45
+            'input_group_right'        => '',
46
+            'input_group_left'         => '',
47
+            'input_group_right_inside' => false,
48
+            // forces the input group inside the input
49
+            'input_group_left_inside'  => false,
50
+            // forces the input group inside the input
51
+            'step'                     => '',
52
+            'switch'                   => false,
53
+            // to show checkbox as a switch
54
+            'checked'                  => false,
55
+            // set a checkbox or radio as selected
56
+            'password_toggle'          => true,
57
+            // toggle view/hide password
58
+            'element_require'          => '',
59
+            // [%element_id%] == "1"
60
+            'extra_attributes'         => array(),
61
+            // an array of extra attributes
62
+            'wrap_attributes'          => array()
63
+        );
64
+
65
+        /**
66
+         * Parse incoming $args into an array and merge it with $defaults
67
+         */
68
+        $args   = wp_parse_args( $args, $defaults );
69
+        $output = '';
70
+        if ( ! empty( $args['type'] ) ) {
71
+            // hidden label option needs to be empty
72
+            $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
73
+
74
+            $type = sanitize_html_class( $args['type'] );
75
+
76
+            $help_text   = '';
77
+            $label       = '';
78
+            $label_after = $args['label_after'];
79
+            $label_args  = array(
80
+                'title'      => $args['label'],
81
+                'for'        => $args['id'],
82
+                'class'      => $args['label_class'] . " ",
83
+                'label_type' => $args['label_type'],
84
+                'label_col'  => $args['label_col']
85
+            );
86
+
87
+            // floating labels need label after
88
+            if ( $args['label_type'] == 'floating' && $type != 'checkbox' ) {
89
+                $label_after         = true;
90
+                $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
91
+            }
92
+
93
+            // size
94
+            $size = '';
95
+            if ( $args['size'] == 'lg' || $args['size'] == 'large' ) {
96
+                $size = 'lg';
97
+                $args['class'] .= ' form-control-lg';
98
+            }elseif ( $args['size'] == 'sm' || $args['size'] == 'small' ) {
99
+                $size = 'sm';
100
+                $args['class'] .= ' form-control-sm';
101
+            }
102
+
103
+            // clear function
104
+            $clear_function = 'jQuery(this).parent().parent().find(\'input\').val(\'\');';
105
+
106
+            // Some special sauce for files
107
+            if ( $type == 'file' ) {
108
+                $label_after = true; // if type file we need the label after
109
+                $args['class'] .= ' custom-file-input ';
110
+            } elseif ( $type == 'checkbox' ) {
111
+                $label_after = true; // if type file we need the label after
112
+                $args['class'] .= ' custom-control-input ';
113
+            } elseif ( $type == 'datepicker' || $type == 'timepicker' ) {
114
+                $type = 'text';
115
+                $args['class'] .= ' bg-initial '; // @todo not sure why we have this?
116
+
117
+                $args['extra_attributes']['data-aui-init'] = 'flatpickr';
118
+
119
+                // set a way to clear field if empty
120
+                if ( $args['input_group_right'] === '' && $args['clear_icon'] !== false ) {
121
+                    $args['input_group_right_inside'] = true;
122
+                    $args['clear_icon'] = true;
123
+                }
124
+
125
+                // enqueue the script
126
+                $aui_settings = AyeCode_UI_Settings::instance();
127
+                $aui_settings->enqueue_flatpickr();
128
+            } elseif ( $type == 'iconpicker' ) {
129
+                $type = 'text';
130
+                //$args['class'] .= ' aui-flatpickr bg-initial ';
131 131
 //				$args['class'] .= ' bg-initial ';
132 132
 
133
-				$args['extra_attributes']['data-aui-init'] = 'iconpicker';
134
-				$args['extra_attributes']['data-placement'] = 'bottomRight';
133
+                $args['extra_attributes']['data-aui-init'] = 'iconpicker';
134
+                $args['extra_attributes']['data-placement'] = 'bottomRight';
135 135
 
136
-				$args['input_group_right'] = '<span class="input-group-addon input-group-text c-pointer"></span>';
136
+                $args['input_group_right'] = '<span class="input-group-addon input-group-text c-pointer"></span>';
137 137
 //				$args['input_group_right_inside'] = true;
138
-				// enqueue the script
139
-				$aui_settings = AyeCode_UI_Settings::instance();
140
-				$aui_settings->enqueue_iconpicker();
141
-			}
142
-
143
-			if ( $type == 'checkbox' && !empty($args['name'] ) && strpos($args['name'], '[') === false ) {
144
-				$output .= '<input type="hidden" name="' . esc_attr( $args['name'] ) . '" value="0" />';
145
-			}
146
-
147
-			// allow clear icon
148
-			if ( $args['input_group_right'] === '' && $args['clear_icon'] ) {
149
-				$font_size = $size == 'sm' ? '1.3' : ( $size == 'lg' ? '1.65' : '1.5' );
150
-				$args['input_group_right_inside'] = true;
151
-				$args['input_group_right'] = '<span class="input-group-text aui-clear-input c-pointer bg-initial border-0 px-2 d-none" onclick="' . $clear_function . '"><span style="font-size: '.$font_size.'rem" aria-hidden="true" class="close">&times;</span></span>';
152
-			}
153
-
154
-			// open/type
155
-			$output .= '<input type="' . $type . '" ';
156
-
157
-			// name
158
-			if ( ! empty( $args['name'] ) ) {
159
-				$output .= ' name="' . esc_attr( $args['name'] ) . '" ';
160
-			}
161
-
162
-			// id
163
-			if ( ! empty( $args['id'] ) ) {
164
-				$output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
165
-			}
166
-
167
-			// placeholder
168
-			if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
169
-				$output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
170
-			}
171
-
172
-			// title
173
-			if ( ! empty( $args['title'] ) ) {
174
-				$output .= ' title="' . esc_attr( $args['title'] ) . '" ';
175
-			}
176
-
177
-			// value
178
-			if ( ! empty( $args['value'] ) ) {
179
-				$output .= AUI_Component_Helper::value( $args['value'] );
180
-			}
181
-
182
-			// checked, for radio and checkboxes
183
-			if ( ( $type == 'checkbox' || $type == 'radio' ) && $args['checked'] ) {
184
-				$output .= ' checked ';
185
-			}
186
-
187
-			// validation text
188
-			if ( ! empty( $args['validation_text'] ) ) {
189
-				$output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
190
-				$output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
191
-			}
192
-
193
-			// validation_pattern
194
-			if ( ! empty( $args['validation_pattern'] ) ) {
195
-				$output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
196
-			}
197
-
198
-			// step (for numbers)
199
-			if ( ! empty( $args['step'] ) ) {
200
-				$output .= ' step="' . $args['step'] . '" ';
201
-			}
202
-
203
-			// required
204
-			if ( ! empty( $args['required'] ) ) {
205
-				$output .= ' required ';
206
-			}
207
-
208
-			// class
209
-			$class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
210
-			$output .= ' class="form-control ' . $class . '" ';
211
-
212
-			// data-attributes
213
-			$output .= AUI_Component_Helper::data_attributes( $args );
214
-
215
-			// extra attributes
216
-			if ( ! empty( $args['extra_attributes'] ) ) {
217
-				$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
218
-			}
219
-
220
-			// close
221
-			$output .= ' >';
222
-
223
-			// help text
224
-			if ( ! empty( $args['help_text'] ) ) {
225
-				$help_text = AUI_Component_Helper::help_text( $args['help_text'] );
226
-			}
227
-
228
-			// label
229
-			if ( ! empty( $args['label'] ) ) {
230
-				$label_base_class = '';
231
-				if ( $type == 'file' ) {
232
-					$label_base_class = ' custom-file-label';
233
-				} elseif ( $type == 'checkbox' ) {
234
-					if ( ! empty( $args['label_force_left'] ) ) {
235
-						$label_args['title'] = wp_kses_post( $args['help_text'] );
236
-						$help_text = '';
237
-						//$label_args['class'] .= ' d-inline ';
238
-						$args['wrap_class'] .= ' align-items-center ';
239
-					}else{
240
-
241
-					}
242
-
243
-					$label_base_class = ' custom-control-label';
244
-				}
245
-				$label_args['class'] .= $label_base_class;
246
-				$temp_label_args = $label_args;
247
-				if(! empty( $args['label_force_left'] )){$temp_label_args['class'] = $label_base_class." text-muted";}
248
-				$label = self::label( $temp_label_args, $type );
249
-			}
250
-
251
-
252
-
253
-
254
-			// set help text in the correct position
255
-			if ( $label_after ) {
256
-				$output .= $label . $help_text;
257
-			}
258
-
259
-			// some input types need a separate wrap
260
-			if ( $type == 'file' ) {
261
-				$output = self::wrap( array(
262
-					'content' => $output,
263
-					'class'   => 'form-group custom-file'
264
-				) );
265
-			} elseif ( $type == 'checkbox' ) {
266
-
267
-				$label_args['title'] = $args['label'];
268
-				$label_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'label' );
269
-				$label = !empty( $args['label_force_left'] ) ? self::label( $label_args, 'cb' ) : '<div class="' . $label_col . ' col-form-label"></div>';
270
-				$switch_size_class = $args['switch'] && !is_bool( $args['switch'] ) ? ' custom-switch-'.esc_attr( $args['switch'] ) : '';
271
-				$wrap_class = $args['switch'] ? 'custom-switch'.$switch_size_class : 'custom-checkbox';
272
-				if ( ! empty( $args['label_force_left'] ) ) {
273
-					$wrap_class .= ' d-flex align-content-center';
274
-					$label = str_replace("custom-control-label","", self::label( $label_args, 'cb' ) );
275
-				}
276
-				$output     = self::wrap( array(
277
-					'content' => $output,
278
-					'class'   => 'custom-control ' . $wrap_class
279
-				) );
280
-
281
-				if ( $args['label_type'] == 'horizontal' ) {
282
-					$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
283
-					$output    = $label . '<div class="' . $input_col . '">' . $output . '</div>';
284
-				}
285
-			} elseif ( $type == 'password' && $args['password_toggle'] && ! $args['input_group_right'] ) {
286
-
287
-
288
-				// allow password field to toggle view
289
-				$args['input_group_right'] = '<span class="input-group-text c-pointer px-3" 
138
+                // enqueue the script
139
+                $aui_settings = AyeCode_UI_Settings::instance();
140
+                $aui_settings->enqueue_iconpicker();
141
+            }
142
+
143
+            if ( $type == 'checkbox' && !empty($args['name'] ) && strpos($args['name'], '[') === false ) {
144
+                $output .= '<input type="hidden" name="' . esc_attr( $args['name'] ) . '" value="0" />';
145
+            }
146
+
147
+            // allow clear icon
148
+            if ( $args['input_group_right'] === '' && $args['clear_icon'] ) {
149
+                $font_size = $size == 'sm' ? '1.3' : ( $size == 'lg' ? '1.65' : '1.5' );
150
+                $args['input_group_right_inside'] = true;
151
+                $args['input_group_right'] = '<span class="input-group-text aui-clear-input c-pointer bg-initial border-0 px-2 d-none" onclick="' . $clear_function . '"><span style="font-size: '.$font_size.'rem" aria-hidden="true" class="close">&times;</span></span>';
152
+            }
153
+
154
+            // open/type
155
+            $output .= '<input type="' . $type . '" ';
156
+
157
+            // name
158
+            if ( ! empty( $args['name'] ) ) {
159
+                $output .= ' name="' . esc_attr( $args['name'] ) . '" ';
160
+            }
161
+
162
+            // id
163
+            if ( ! empty( $args['id'] ) ) {
164
+                $output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
165
+            }
166
+
167
+            // placeholder
168
+            if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
169
+                $output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
170
+            }
171
+
172
+            // title
173
+            if ( ! empty( $args['title'] ) ) {
174
+                $output .= ' title="' . esc_attr( $args['title'] ) . '" ';
175
+            }
176
+
177
+            // value
178
+            if ( ! empty( $args['value'] ) ) {
179
+                $output .= AUI_Component_Helper::value( $args['value'] );
180
+            }
181
+
182
+            // checked, for radio and checkboxes
183
+            if ( ( $type == 'checkbox' || $type == 'radio' ) && $args['checked'] ) {
184
+                $output .= ' checked ';
185
+            }
186
+
187
+            // validation text
188
+            if ( ! empty( $args['validation_text'] ) ) {
189
+                $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
190
+                $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
191
+            }
192
+
193
+            // validation_pattern
194
+            if ( ! empty( $args['validation_pattern'] ) ) {
195
+                $output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
196
+            }
197
+
198
+            // step (for numbers)
199
+            if ( ! empty( $args['step'] ) ) {
200
+                $output .= ' step="' . $args['step'] . '" ';
201
+            }
202
+
203
+            // required
204
+            if ( ! empty( $args['required'] ) ) {
205
+                $output .= ' required ';
206
+            }
207
+
208
+            // class
209
+            $class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
210
+            $output .= ' class="form-control ' . $class . '" ';
211
+
212
+            // data-attributes
213
+            $output .= AUI_Component_Helper::data_attributes( $args );
214
+
215
+            // extra attributes
216
+            if ( ! empty( $args['extra_attributes'] ) ) {
217
+                $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
218
+            }
219
+
220
+            // close
221
+            $output .= ' >';
222
+
223
+            // help text
224
+            if ( ! empty( $args['help_text'] ) ) {
225
+                $help_text = AUI_Component_Helper::help_text( $args['help_text'] );
226
+            }
227
+
228
+            // label
229
+            if ( ! empty( $args['label'] ) ) {
230
+                $label_base_class = '';
231
+                if ( $type == 'file' ) {
232
+                    $label_base_class = ' custom-file-label';
233
+                } elseif ( $type == 'checkbox' ) {
234
+                    if ( ! empty( $args['label_force_left'] ) ) {
235
+                        $label_args['title'] = wp_kses_post( $args['help_text'] );
236
+                        $help_text = '';
237
+                        //$label_args['class'] .= ' d-inline ';
238
+                        $args['wrap_class'] .= ' align-items-center ';
239
+                    }else{
240
+
241
+                    }
242
+
243
+                    $label_base_class = ' custom-control-label';
244
+                }
245
+                $label_args['class'] .= $label_base_class;
246
+                $temp_label_args = $label_args;
247
+                if(! empty( $args['label_force_left'] )){$temp_label_args['class'] = $label_base_class." text-muted";}
248
+                $label = self::label( $temp_label_args, $type );
249
+            }
250
+
251
+
252
+
253
+
254
+            // set help text in the correct position
255
+            if ( $label_after ) {
256
+                $output .= $label . $help_text;
257
+            }
258
+
259
+            // some input types need a separate wrap
260
+            if ( $type == 'file' ) {
261
+                $output = self::wrap( array(
262
+                    'content' => $output,
263
+                    'class'   => 'form-group custom-file'
264
+                ) );
265
+            } elseif ( $type == 'checkbox' ) {
266
+
267
+                $label_args['title'] = $args['label'];
268
+                $label_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'label' );
269
+                $label = !empty( $args['label_force_left'] ) ? self::label( $label_args, 'cb' ) : '<div class="' . $label_col . ' col-form-label"></div>';
270
+                $switch_size_class = $args['switch'] && !is_bool( $args['switch'] ) ? ' custom-switch-'.esc_attr( $args['switch'] ) : '';
271
+                $wrap_class = $args['switch'] ? 'custom-switch'.$switch_size_class : 'custom-checkbox';
272
+                if ( ! empty( $args['label_force_left'] ) ) {
273
+                    $wrap_class .= ' d-flex align-content-center';
274
+                    $label = str_replace("custom-control-label","", self::label( $label_args, 'cb' ) );
275
+                }
276
+                $output     = self::wrap( array(
277
+                    'content' => $output,
278
+                    'class'   => 'custom-control ' . $wrap_class
279
+                ) );
280
+
281
+                if ( $args['label_type'] == 'horizontal' ) {
282
+                    $input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
283
+                    $output    = $label . '<div class="' . $input_col . '">' . $output . '</div>';
284
+                }
285
+            } elseif ( $type == 'password' && $args['password_toggle'] && ! $args['input_group_right'] ) {
286
+
287
+
288
+                // allow password field to toggle view
289
+                $args['input_group_right'] = '<span class="input-group-text c-pointer px-3" 
290 290
 onclick="var $el = jQuery(this).find(\'i\');$el.toggleClass(\'fa-eye fa-eye-slash\');
291 291
 var $eli = jQuery(this).parent().parent().find(\'input\');
292 292
 if($el.hasClass(\'fa-eye\'))
293 293
 {$eli.attr(\'type\',\'text\');}
294 294
 else{$eli.attr(\'type\',\'password\');}"
295 295
 ><i class="far fa-fw fa-eye-slash"></i></span>';
296
-			}
297
-
298
-			// input group wraps
299
-			if ( $args['input_group_left'] || $args['input_group_right'] ) {
300
-				$w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
301
-				$group_size = $size == 'lg' ? ' input-group-lg' : '';
302
-				$group_size = !$group_size && $size == 'sm' ? ' input-group-sm' : $group_size;
303
-
304
-				if ( $args['input_group_left'] ) {
305
-					$output = self::wrap( array(
306
-						'content'                 => $output,
307
-						'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 . $group_size : 'input-group' . $group_size,
308
-						'input_group_left'        => $args['input_group_left'],
309
-						'input_group_left_inside' => $args['input_group_left_inside']
310
-					) );
311
-				}
312
-				if ( $args['input_group_right'] ) {
313
-					$output = self::wrap( array(
314
-						'content'                  => $output,
315
-						'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 . $group_size : 'input-group' . $group_size,
316
-						'input_group_right'        => $args['input_group_right'],
317
-						'input_group_right_inside' => $args['input_group_right_inside']
318
-					) );
319
-				}
320
-
321
-			}
322
-
323
-			if ( ! $label_after ) {
324
-				$output .= $help_text;
325
-			}
326
-
327
-
328
-			if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
329
-				$output = self::wrap( array(
330
-					'content' => $output,
331
-					'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
332
-				) );
333
-			}
334
-
335
-			if ( ! $label_after ) {
336
-				$output = $label . $output;
337
-			}
338
-
339
-			// wrap
340
-			if ( ! $args['no_wrap'] ) {
341
-				$form_group_class = $args['label_type'] == 'floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group';
342
-				$wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
343
-				$wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
344
-				$output           = self::wrap( array(
345
-					'content'         => $output,
346
-					'class'           => $wrap_class,
347
-					'element_require' => $args['element_require'],
348
-					'argument_id'     => $args['id'],
349
-					'wrap_attributes' => $args['wrap_attributes'],
350
-				) );
351
-			}
352
-		}
353
-
354
-		return $output;
355
-	}
356
-
357
-	public static function label( $args = array(), $type = '' ) {
358
-		//<label for="exampleInputEmail1">Email address</label>
359
-		$defaults = array(
360
-			'title'      => 'div',
361
-			'for'        => '',
362
-			'class'      => '',
363
-			'label_type' => '', // empty = hidden, top, horizontal
364
-			'label_col'  => '',
365
-		);
366
-
367
-		/**
368
-		 * Parse incoming $args into an array and merge it with $defaults
369
-		 */
370
-		$args   = wp_parse_args( $args, $defaults );
371
-		$output = '';
372
-
373
-		if ( $args['title'] ) {
374
-
375
-			// maybe hide labels //@todo set a global option for visibility class
376
-			if ( $type == 'file' || $type == 'checkbox' || $type == 'radio' || ! empty( $args['label_type'] ) ) {
377
-				$class = $args['class'];
378
-			} else {
379
-				$class = 'sr-only ' . $args['class'];
380
-			}
381
-
382
-			// maybe horizontal
383
-			if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
384
-				$class .= ' ' . AUI_Component_Helper::get_column_class( $args['label_col'], 'label' ) . ' col-form-label';
385
-			}
386
-
387
-			// open
388
-			$output .= '<label ';
389
-
390
-			// for
391
-			if ( ! empty( $args['for'] ) ) {
392
-				$output .= ' for="' . esc_attr( $args['for'] ) . '" ';
393
-			}
394
-
395
-			// class
396
-			$class = $class ? AUI_Component_Helper::esc_classes( $class ) : '';
397
-			$output .= ' class="' . $class . '" ';
398
-
399
-			// close
400
-			$output .= '>';
401
-
402
-
403
-			// title, don't escape fully as can contain html
404
-			if ( ! empty( $args['title'] ) ) {
405
-				$output .= wp_kses_post( $args['title'] );
406
-			}
407
-
408
-			// close wrap
409
-			$output .= '</label>';
410
-
411
-
412
-		}
413
-
414
-
415
-		return $output;
416
-	}
417
-
418
-	/**
419
-	 * Wrap some content in a HTML wrapper.
420
-	 *
421
-	 * @param array $args
422
-	 *
423
-	 * @return string
424
-	 */
425
-	public static function wrap( $args = array() ) {
426
-		$defaults = array(
427
-			'type'                     => 'div',
428
-			'class'                    => 'form-group',
429
-			'content'                  => '',
430
-			'input_group_left'         => '',
431
-			'input_group_right'        => '',
432
-			'input_group_left_inside'  => false,
433
-			'input_group_right_inside' => false,
434
-			'element_require'          => '',
435
-			'argument_id'              => '',
436
-			'wrap_attributes'          => array()
437
-		);
438
-
439
-		/**
440
-		 * Parse incoming $args into an array and merge it with $defaults
441
-		 */
442
-		$args   = wp_parse_args( $args, $defaults );
443
-		$output = '';
444
-		if ( $args['type'] ) {
445
-
446
-			// open
447
-			$output .= '<' . sanitize_html_class( $args['type'] );
448
-
449
-			// element require
450
-			if ( ! empty( $args['element_require'] ) ) {
451
-				$output .= AUI_Component_Helper::element_require( $args['element_require'] );
452
-				$args['class'] .= " aui-conditional-field";
453
-			}
454
-
455
-			// argument_id
456
-			if ( ! empty( $args['argument_id'] ) ) {
457
-				$output .= ' data-argument="' . esc_attr( $args['argument_id'] ) . '"';
458
-			}
459
-
460
-			// class
461
-			$class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
462
-			$output .= ' class="' . $class . '" ';
463
-
464
-			// Attributes
465
-			if ( ! empty( $args['wrap_attributes'] ) ) {
466
-				$output .= AUI_Component_Helper::extra_attributes( $args['wrap_attributes'] );
467
-			}
468
-
469
-			// close wrap
470
-			$output .= ' >';
471
-
472
-
473
-			// Input group left
474
-			if ( ! empty( $args['input_group_left'] ) ) {
475
-				$position_class   = ! empty( $args['input_group_left_inside'] ) ? 'position-absolute h-100' : '';
476
-				$input_group_left = strpos( $args['input_group_left'], '<' ) !== false ? $args['input_group_left'] : '<span class="input-group-text">' . $args['input_group_left'] . '</span>';
477
-				$output .= '<div class="input-group-prepend ' . $position_class . '">' . $input_group_left . '</div>';
478
-			}
479
-
480
-			// content
481
-			$output .= $args['content'];
482
-
483
-			// Input group right
484
-			if ( ! empty( $args['input_group_right'] ) ) {
485
-				$position_class    = ! empty( $args['input_group_right_inside'] ) ? 'position-absolute h-100' : '';
486
-				$input_group_right = strpos( $args['input_group_right'], '<' ) !== false ? $args['input_group_right'] : '<span class="input-group-text">' . $args['input_group_right'] . '</span>';
487
-				$output .= '<div class="input-group-append ' . $position_class . '" style="top:0;right:0;">' . $input_group_right . '</div>';
488
-			}
489
-
490
-
491
-			// close wrap
492
-			$output .= '</' . sanitize_html_class( $args['type'] ) . '>';
493
-
494
-
495
-		} else {
496
-			$output = $args['content'];
497
-		}
498
-
499
-		return $output;
500
-	}
501
-
502
-	/**
503
-	 * Build the component.
504
-	 *
505
-	 * @param array $args
506
-	 *
507
-	 * @return string The rendered component.
508
-	 */
509
-	public static function textarea( $args = array() ) {
510
-		$defaults = array(
511
-			'name'               => '',
512
-			'class'              => '',
513
-			'wrap_class'         => '',
514
-			'id'                 => '',
515
-			'placeholder'        => '',
516
-			'title'              => '',
517
-			'value'              => '',
518
-			'required'           => false,
519
-			'label'              => '',
520
-			'label_after'        => false,
521
-			'label_class'        => '',
522
-			'label_type'         => '',
523
-			'label_col'          => '',
524
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
525
-			'input_group_right'        => '',
526
-			'input_group_left'         => '',
527
-			'input_group_right_inside' => false,
528
-			'help_text'          => '',
529
-			'validation_text'    => '',
530
-			'validation_pattern' => '',
531
-			'no_wrap'            => false,
532
-			'rows'               => '',
533
-			'wysiwyg'            => false,
534
-			'allow_tags'         => false,
535
-			// Allow HTML tags
536
-			'element_require'    => '',
537
-			// [%element_id%] == "1"
538
-			'extra_attributes'   => array(),
539
-			// an array of extra attributes
540
-			'wrap_attributes'    => array(),
541
-		);
542
-
543
-		/**
544
-		 * Parse incoming $args into an array and merge it with $defaults
545
-		 */
546
-		$args   = wp_parse_args( $args, $defaults );
547
-		$output = '';
548
-
549
-		// hidden label option needs to be empty
550
-		$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
551
-
552
-		// floating labels don't work with wysiwyg so set it as top
553
-		if ( $args['label_type'] == 'floating' && ! empty( $args['wysiwyg'] ) ) {
554
-			$args['label_type'] = 'top';
555
-		}
556
-
557
-		$label_after = $args['label_after'];
558
-
559
-		// floating labels need label after
560
-		if ( $args['label_type'] == 'floating' && empty( $args['wysiwyg'] ) ) {
561
-			$label_after         = true;
562
-			$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
563
-		}
564
-
565
-		// label
566
-		if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
567
-		} elseif ( ! empty( $args['label'] ) && ! $label_after ) {
568
-			$label_args = array(
569
-				'title'      => $args['label'],
570
-				'for'        => $args['id'],
571
-				'class'      => $args['label_class'] . " ",
572
-				'label_type' => $args['label_type'],
573
-				'label_col'  => $args['label_col']
574
-			);
575
-			$output .= self::label( $label_args );
576
-		}
577
-
578
-		// maybe horizontal label
579
-		if ( $args['label_type'] == 'horizontal' ) {
580
-			$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
581
-			$output .= '<div class="' . $input_col . '">';
582
-		}
583
-
584
-		if ( ! empty( $args['wysiwyg'] ) ) {
585
-			ob_start();
586
-			$content   = $args['value'];
587
-			$editor_id = ! empty( $args['id'] ) ? sanitize_html_class( $args['id'] ) : 'wp_editor';
588
-			$settings  = array(
589
-				'textarea_rows' => ! empty( absint( $args['rows'] ) ) ? absint( $args['rows'] ) : 4,
590
-				'quicktags'     => false,
591
-				'media_buttons' => false,
592
-				'editor_class'  => 'form-control',
593
-				'textarea_name' => ! empty( $args['name'] ) ? sanitize_html_class( $args['name'] ) : sanitize_html_class( $args['id'] ),
594
-				'teeny'         => true,
595
-			);
596
-
597
-			// maybe set settings if array
598
-			if ( is_array( $args['wysiwyg'] ) ) {
599
-				$settings = wp_parse_args( $args['wysiwyg'], $settings );
600
-			}
601
-
602
-			wp_editor( $content, $editor_id, $settings );
603
-			$output .= ob_get_clean();
604
-		} else {
605
-
606
-			// open
607
-			$output .= '<textarea ';
608
-
609
-			// name
610
-			if ( ! empty( $args['name'] ) ) {
611
-				$output .= ' name="' . esc_attr( $args['name'] ) . '" ';
612
-			}
613
-
614
-			// id
615
-			if ( ! empty( $args['id'] ) ) {
616
-				$output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
617
-			}
618
-
619
-			// placeholder
620
-			if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
621
-				$output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
622
-			}
623
-
624
-			// title
625
-			if ( ! empty( $args['title'] ) ) {
626
-				$output .= ' title="' . esc_attr( $args['title'] ) . '" ';
627
-			}
628
-
629
-			// validation text
630
-			if ( ! empty( $args['validation_text'] ) ) {
631
-				$output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
632
-				$output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
633
-			}
634
-
635
-			// validation_pattern
636
-			if ( ! empty( $args['validation_pattern'] ) ) {
637
-				$output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
638
-			}
639
-
640
-			// required
641
-			if ( ! empty( $args['required'] ) ) {
642
-				$output .= ' required ';
643
-			}
644
-
645
-			// rows
646
-			if ( ! empty( $args['rows'] ) ) {
647
-				$output .= ' rows="' . absint( $args['rows'] ) . '" ';
648
-			}
649
-
650
-
651
-			// class
652
-			$class = ! empty( $args['class'] ) ? $args['class'] : '';
653
-			$output .= ' class="form-control ' . $class . '" ';
654
-
655
-			// extra attributes
656
-			if ( ! empty( $args['extra_attributes'] ) ) {
657
-				$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
658
-			}
659
-
660
-			// close tag
661
-			$output .= ' >';
662
-
663
-			// value
664
-			if ( ! empty( $args['value'] ) ) {
665
-				if ( ! empty( $args['allow_tags'] ) ) {
666
-					$output .= AUI_Component_Helper::sanitize_html_field( $args['value'], $args ); // Sanitize HTML.
667
-				} else {
668
-					$output .= AUI_Component_Helper::sanitize_textarea_field( $args['value'] );
669
-				}
670
-			}
671
-
672
-			// closing tag
673
-			$output .= '</textarea>';
674
-
675
-
676
-			// input group wraps
677
-			if ( $args['input_group_left'] || $args['input_group_right'] ) {
678
-				$w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
679
-				if ( $args['input_group_left'] ) {
680
-					$output = self::wrap( array(
681
-						'content'                 => $output,
682
-						'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
683
-						'input_group_left'        => $args['input_group_left'],
684
-						'input_group_left_inside' => $args['input_group_left_inside']
685
-					) );
686
-				}
687
-				if ( $args['input_group_right'] ) {
688
-					$output = self::wrap( array(
689
-						'content'                  => $output,
690
-						'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
691
-						'input_group_right'        => $args['input_group_right'],
692
-						'input_group_right_inside' => $args['input_group_right_inside']
693
-					) );
694
-				}
695
-
696
-			}
697
-
698
-
699
-		}
700
-
701
-		if ( ! empty( $args['label'] ) && $label_after ) {
702
-			$label_args = array(
703
-				'title'      => $args['label'],
704
-				'for'        => $args['id'],
705
-				'class'      => $args['label_class'] . " ",
706
-				'label_type' => $args['label_type'],
707
-				'label_col'  => $args['label_col']
708
-			);
709
-			$output .= self::label( $label_args );
710
-		}
711
-
712
-		// help text
713
-		if ( ! empty( $args['help_text'] ) ) {
714
-			$output .= AUI_Component_Helper::help_text( $args['help_text'] );
715
-		}
716
-
717
-		// maybe horizontal label
718
-		if ( $args['label_type'] == 'horizontal' ) {
719
-			$output .= '</div>';
720
-		}
721
-
722
-
723
-		// wrap
724
-		if ( ! $args['no_wrap'] ) {
725
-			$form_group_class = $args['label_type'] == 'floating' ? 'form-label-group' : 'form-group';
726
-			$wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
727
-			$wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
728
-			$output           = self::wrap( array(
729
-				'content'         => $output,
730
-				'class'           => $wrap_class,
731
-				'element_require' => $args['element_require'],
732
-				'argument_id'     => $args['id'],
733
-				'wrap_attributes' => $args['wrap_attributes'],
734
-			) );
735
-		}
736
-
737
-
738
-		return $output;
739
-	}
740
-
741
-	/**
742
-	 * Build the component.
743
-	 *
744
-	 * @param array $args
745
-	 *
746
-	 * @return string The rendered component.
747
-	 */
748
-	public static function select( $args = array() ) {
749
-		$defaults = array(
750
-			'class'            => '',
751
-			'wrap_class'       => '',
752
-			'id'               => '',
753
-			'title'            => '',
754
-			'value'            => '',
755
-			// can be an array or a string
756
-			'required'         => false,
757
-			'label'            => '',
758
-			'label_after'      => false,
759
-			'label_type'       => '',
760
-			'label_col'        => '',
761
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
762
-			'label_class'      => '',
763
-			'help_text'        => '',
764
-			'placeholder'      => '',
765
-			'options'          => array(),
766
-			// array or string
767
-			'icon'             => '',
768
-			'multiple'         => false,
769
-			'select2'          => false,
770
-			'no_wrap'          => false,
771
-			'input_group_right' => '',
772
-			'input_group_left' => '',
773
-			'input_group_right_inside' => false, // forces the input group inside the input
774
-			'input_group_left_inside' => false, // forces the input group inside the input
775
-			'element_require'  => '',
776
-			// [%element_id%] == "1"
777
-			'extra_attributes' => array(),
778
-			// an array of extra attributes
779
-			'wrap_attributes'  => array(),
780
-		);
781
-
782
-		/**
783
-		 * Parse incoming $args into an array and merge it with $defaults
784
-		 */
785
-		$args   = wp_parse_args( $args, $defaults );
786
-		$output = '';
787
-
788
-		// for now lets hide floating labels
789
-		if ( $args['label_type'] == 'floating' ) {
790
-			$args['label_type'] = 'hidden';
791
-		}
792
-
793
-		// hidden label option needs to be empty
794
-		$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
795
-
796
-
797
-		$label_after = $args['label_after'];
798
-
799
-		// floating labels need label after
800
-		if ( $args['label_type'] == 'floating' ) {
801
-			$label_after         = true;
802
-			$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
803
-		}
804
-
805
-		// Maybe setup select2
806
-		$is_select2 = false;
807
-		if ( ! empty( $args['select2'] ) ) {
808
-			$args['class'] .= ' aui-select2';
809
-			$is_select2 = true;
810
-		} elseif ( strpos( $args['class'], 'aui-select2' ) !== false ) {
811
-			$is_select2 = true;
812
-		}
813
-
814
-		// select2 tags
815
-		if ( ! empty( $args['select2'] ) && $args['select2'] === 'tags' ) { // triple equals needed here for some reason
816
-			$args['data-tags']             = 'true';
817
-			$args['data-token-separators'] = "[',']";
818
-			$args['multiple']              = true;
819
-		}
820
-
821
-		// select2 placeholder
822
-		if ( $is_select2 && isset( $args['placeholder'] ) && '' != $args['placeholder'] && empty( $args['data-placeholder'] ) ) {
823
-			$args['data-placeholder'] = esc_attr( $args['placeholder'] );
824
-			$args['data-allow-clear'] = isset( $args['data-allow-clear'] ) ? (bool) $args['data-allow-clear'] : true;
825
-		}
826
-
827
-
828
-
829
-		// maybe horizontal label
296
+            }
297
+
298
+            // input group wraps
299
+            if ( $args['input_group_left'] || $args['input_group_right'] ) {
300
+                $w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
301
+                $group_size = $size == 'lg' ? ' input-group-lg' : '';
302
+                $group_size = !$group_size && $size == 'sm' ? ' input-group-sm' : $group_size;
303
+
304
+                if ( $args['input_group_left'] ) {
305
+                    $output = self::wrap( array(
306
+                        'content'                 => $output,
307
+                        'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 . $group_size : 'input-group' . $group_size,
308
+                        'input_group_left'        => $args['input_group_left'],
309
+                        'input_group_left_inside' => $args['input_group_left_inside']
310
+                    ) );
311
+                }
312
+                if ( $args['input_group_right'] ) {
313
+                    $output = self::wrap( array(
314
+                        'content'                  => $output,
315
+                        'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 . $group_size : 'input-group' . $group_size,
316
+                        'input_group_right'        => $args['input_group_right'],
317
+                        'input_group_right_inside' => $args['input_group_right_inside']
318
+                    ) );
319
+                }
320
+
321
+            }
322
+
323
+            if ( ! $label_after ) {
324
+                $output .= $help_text;
325
+            }
326
+
327
+
328
+            if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
329
+                $output = self::wrap( array(
330
+                    'content' => $output,
331
+                    'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
332
+                ) );
333
+            }
334
+
335
+            if ( ! $label_after ) {
336
+                $output = $label . $output;
337
+            }
338
+
339
+            // wrap
340
+            if ( ! $args['no_wrap'] ) {
341
+                $form_group_class = $args['label_type'] == 'floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group';
342
+                $wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
343
+                $wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
344
+                $output           = self::wrap( array(
345
+                    'content'         => $output,
346
+                    'class'           => $wrap_class,
347
+                    'element_require' => $args['element_require'],
348
+                    'argument_id'     => $args['id'],
349
+                    'wrap_attributes' => $args['wrap_attributes'],
350
+                ) );
351
+            }
352
+        }
353
+
354
+        return $output;
355
+    }
356
+
357
+    public static function label( $args = array(), $type = '' ) {
358
+        //<label for="exampleInputEmail1">Email address</label>
359
+        $defaults = array(
360
+            'title'      => 'div',
361
+            'for'        => '',
362
+            'class'      => '',
363
+            'label_type' => '', // empty = hidden, top, horizontal
364
+            'label_col'  => '',
365
+        );
366
+
367
+        /**
368
+         * Parse incoming $args into an array and merge it with $defaults
369
+         */
370
+        $args   = wp_parse_args( $args, $defaults );
371
+        $output = '';
372
+
373
+        if ( $args['title'] ) {
374
+
375
+            // maybe hide labels //@todo set a global option for visibility class
376
+            if ( $type == 'file' || $type == 'checkbox' || $type == 'radio' || ! empty( $args['label_type'] ) ) {
377
+                $class = $args['class'];
378
+            } else {
379
+                $class = 'sr-only ' . $args['class'];
380
+            }
381
+
382
+            // maybe horizontal
383
+            if ( $args['label_type'] == 'horizontal' && $type != 'checkbox' ) {
384
+                $class .= ' ' . AUI_Component_Helper::get_column_class( $args['label_col'], 'label' ) . ' col-form-label';
385
+            }
386
+
387
+            // open
388
+            $output .= '<label ';
389
+
390
+            // for
391
+            if ( ! empty( $args['for'] ) ) {
392
+                $output .= ' for="' . esc_attr( $args['for'] ) . '" ';
393
+            }
394
+
395
+            // class
396
+            $class = $class ? AUI_Component_Helper::esc_classes( $class ) : '';
397
+            $output .= ' class="' . $class . '" ';
398
+
399
+            // close
400
+            $output .= '>';
401
+
402
+
403
+            // title, don't escape fully as can contain html
404
+            if ( ! empty( $args['title'] ) ) {
405
+                $output .= wp_kses_post( $args['title'] );
406
+            }
407
+
408
+            // close wrap
409
+            $output .= '</label>';
410
+
411
+
412
+        }
413
+
414
+
415
+        return $output;
416
+    }
417
+
418
+    /**
419
+     * Wrap some content in a HTML wrapper.
420
+     *
421
+     * @param array $args
422
+     *
423
+     * @return string
424
+     */
425
+    public static function wrap( $args = array() ) {
426
+        $defaults = array(
427
+            'type'                     => 'div',
428
+            'class'                    => 'form-group',
429
+            'content'                  => '',
430
+            'input_group_left'         => '',
431
+            'input_group_right'        => '',
432
+            'input_group_left_inside'  => false,
433
+            'input_group_right_inside' => false,
434
+            'element_require'          => '',
435
+            'argument_id'              => '',
436
+            'wrap_attributes'          => array()
437
+        );
438
+
439
+        /**
440
+         * Parse incoming $args into an array and merge it with $defaults
441
+         */
442
+        $args   = wp_parse_args( $args, $defaults );
443
+        $output = '';
444
+        if ( $args['type'] ) {
445
+
446
+            // open
447
+            $output .= '<' . sanitize_html_class( $args['type'] );
448
+
449
+            // element require
450
+            if ( ! empty( $args['element_require'] ) ) {
451
+                $output .= AUI_Component_Helper::element_require( $args['element_require'] );
452
+                $args['class'] .= " aui-conditional-field";
453
+            }
454
+
455
+            // argument_id
456
+            if ( ! empty( $args['argument_id'] ) ) {
457
+                $output .= ' data-argument="' . esc_attr( $args['argument_id'] ) . '"';
458
+            }
459
+
460
+            // class
461
+            $class = ! empty( $args['class'] ) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
462
+            $output .= ' class="' . $class . '" ';
463
+
464
+            // Attributes
465
+            if ( ! empty( $args['wrap_attributes'] ) ) {
466
+                $output .= AUI_Component_Helper::extra_attributes( $args['wrap_attributes'] );
467
+            }
468
+
469
+            // close wrap
470
+            $output .= ' >';
471
+
472
+
473
+            // Input group left
474
+            if ( ! empty( $args['input_group_left'] ) ) {
475
+                $position_class   = ! empty( $args['input_group_left_inside'] ) ? 'position-absolute h-100' : '';
476
+                $input_group_left = strpos( $args['input_group_left'], '<' ) !== false ? $args['input_group_left'] : '<span class="input-group-text">' . $args['input_group_left'] . '</span>';
477
+                $output .= '<div class="input-group-prepend ' . $position_class . '">' . $input_group_left . '</div>';
478
+            }
479
+
480
+            // content
481
+            $output .= $args['content'];
482
+
483
+            // Input group right
484
+            if ( ! empty( $args['input_group_right'] ) ) {
485
+                $position_class    = ! empty( $args['input_group_right_inside'] ) ? 'position-absolute h-100' : '';
486
+                $input_group_right = strpos( $args['input_group_right'], '<' ) !== false ? $args['input_group_right'] : '<span class="input-group-text">' . $args['input_group_right'] . '</span>';
487
+                $output .= '<div class="input-group-append ' . $position_class . '" style="top:0;right:0;">' . $input_group_right . '</div>';
488
+            }
489
+
490
+
491
+            // close wrap
492
+            $output .= '</' . sanitize_html_class( $args['type'] ) . '>';
493
+
494
+
495
+        } else {
496
+            $output = $args['content'];
497
+        }
498
+
499
+        return $output;
500
+    }
501
+
502
+    /**
503
+     * Build the component.
504
+     *
505
+     * @param array $args
506
+     *
507
+     * @return string The rendered component.
508
+     */
509
+    public static function textarea( $args = array() ) {
510
+        $defaults = array(
511
+            'name'               => '',
512
+            'class'              => '',
513
+            'wrap_class'         => '',
514
+            'id'                 => '',
515
+            'placeholder'        => '',
516
+            'title'              => '',
517
+            'value'              => '',
518
+            'required'           => false,
519
+            'label'              => '',
520
+            'label_after'        => false,
521
+            'label_class'        => '',
522
+            'label_type'         => '',
523
+            'label_col'          => '',
524
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
525
+            'input_group_right'        => '',
526
+            'input_group_left'         => '',
527
+            'input_group_right_inside' => false,
528
+            'help_text'          => '',
529
+            'validation_text'    => '',
530
+            'validation_pattern' => '',
531
+            'no_wrap'            => false,
532
+            'rows'               => '',
533
+            'wysiwyg'            => false,
534
+            'allow_tags'         => false,
535
+            // Allow HTML tags
536
+            'element_require'    => '',
537
+            // [%element_id%] == "1"
538
+            'extra_attributes'   => array(),
539
+            // an array of extra attributes
540
+            'wrap_attributes'    => array(),
541
+        );
542
+
543
+        /**
544
+         * Parse incoming $args into an array and merge it with $defaults
545
+         */
546
+        $args   = wp_parse_args( $args, $defaults );
547
+        $output = '';
548
+
549
+        // hidden label option needs to be empty
550
+        $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
551
+
552
+        // floating labels don't work with wysiwyg so set it as top
553
+        if ( $args['label_type'] == 'floating' && ! empty( $args['wysiwyg'] ) ) {
554
+            $args['label_type'] = 'top';
555
+        }
556
+
557
+        $label_after = $args['label_after'];
558
+
559
+        // floating labels need label after
560
+        if ( $args['label_type'] == 'floating' && empty( $args['wysiwyg'] ) ) {
561
+            $label_after         = true;
562
+            $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
563
+        }
564
+
565
+        // label
566
+        if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
567
+        } elseif ( ! empty( $args['label'] ) && ! $label_after ) {
568
+            $label_args = array(
569
+                'title'      => $args['label'],
570
+                'for'        => $args['id'],
571
+                'class'      => $args['label_class'] . " ",
572
+                'label_type' => $args['label_type'],
573
+                'label_col'  => $args['label_col']
574
+            );
575
+            $output .= self::label( $label_args );
576
+        }
577
+
578
+        // maybe horizontal label
579
+        if ( $args['label_type'] == 'horizontal' ) {
580
+            $input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
581
+            $output .= '<div class="' . $input_col . '">';
582
+        }
583
+
584
+        if ( ! empty( $args['wysiwyg'] ) ) {
585
+            ob_start();
586
+            $content   = $args['value'];
587
+            $editor_id = ! empty( $args['id'] ) ? sanitize_html_class( $args['id'] ) : 'wp_editor';
588
+            $settings  = array(
589
+                'textarea_rows' => ! empty( absint( $args['rows'] ) ) ? absint( $args['rows'] ) : 4,
590
+                'quicktags'     => false,
591
+                'media_buttons' => false,
592
+                'editor_class'  => 'form-control',
593
+                'textarea_name' => ! empty( $args['name'] ) ? sanitize_html_class( $args['name'] ) : sanitize_html_class( $args['id'] ),
594
+                'teeny'         => true,
595
+            );
596
+
597
+            // maybe set settings if array
598
+            if ( is_array( $args['wysiwyg'] ) ) {
599
+                $settings = wp_parse_args( $args['wysiwyg'], $settings );
600
+            }
601
+
602
+            wp_editor( $content, $editor_id, $settings );
603
+            $output .= ob_get_clean();
604
+        } else {
605
+
606
+            // open
607
+            $output .= '<textarea ';
608
+
609
+            // name
610
+            if ( ! empty( $args['name'] ) ) {
611
+                $output .= ' name="' . esc_attr( $args['name'] ) . '" ';
612
+            }
613
+
614
+            // id
615
+            if ( ! empty( $args['id'] ) ) {
616
+                $output .= ' id="' . sanitize_html_class( $args['id'] ) . '" ';
617
+            }
618
+
619
+            // placeholder
620
+            if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] ) {
621
+                $output .= ' placeholder="' . esc_attr( $args['placeholder'] ) . '" ';
622
+            }
623
+
624
+            // title
625
+            if ( ! empty( $args['title'] ) ) {
626
+                $output .= ' title="' . esc_attr( $args['title'] ) . '" ';
627
+            }
628
+
629
+            // validation text
630
+            if ( ! empty( $args['validation_text'] ) ) {
631
+                $output .= ' oninvalid="setCustomValidity(\'' . esc_attr( $args['validation_text'] ) . '\')" ';
632
+                $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
633
+            }
634
+
635
+            // validation_pattern
636
+            if ( ! empty( $args['validation_pattern'] ) ) {
637
+                $output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
638
+            }
639
+
640
+            // required
641
+            if ( ! empty( $args['required'] ) ) {
642
+                $output .= ' required ';
643
+            }
644
+
645
+            // rows
646
+            if ( ! empty( $args['rows'] ) ) {
647
+                $output .= ' rows="' . absint( $args['rows'] ) . '" ';
648
+            }
649
+
650
+
651
+            // class
652
+            $class = ! empty( $args['class'] ) ? $args['class'] : '';
653
+            $output .= ' class="form-control ' . $class . '" ';
654
+
655
+            // extra attributes
656
+            if ( ! empty( $args['extra_attributes'] ) ) {
657
+                $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
658
+            }
659
+
660
+            // close tag
661
+            $output .= ' >';
662
+
663
+            // value
664
+            if ( ! empty( $args['value'] ) ) {
665
+                if ( ! empty( $args['allow_tags'] ) ) {
666
+                    $output .= AUI_Component_Helper::sanitize_html_field( $args['value'], $args ); // Sanitize HTML.
667
+                } else {
668
+                    $output .= AUI_Component_Helper::sanitize_textarea_field( $args['value'] );
669
+                }
670
+            }
671
+
672
+            // closing tag
673
+            $output .= '</textarea>';
674
+
675
+
676
+            // input group wraps
677
+            if ( $args['input_group_left'] || $args['input_group_right'] ) {
678
+                $w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
679
+                if ( $args['input_group_left'] ) {
680
+                    $output = self::wrap( array(
681
+                        'content'                 => $output,
682
+                        'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
683
+                        'input_group_left'        => $args['input_group_left'],
684
+                        'input_group_left_inside' => $args['input_group_left_inside']
685
+                    ) );
686
+                }
687
+                if ( $args['input_group_right'] ) {
688
+                    $output = self::wrap( array(
689
+                        'content'                  => $output,
690
+                        'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
691
+                        'input_group_right'        => $args['input_group_right'],
692
+                        'input_group_right_inside' => $args['input_group_right_inside']
693
+                    ) );
694
+                }
695
+
696
+            }
697
+
698
+
699
+        }
700
+
701
+        if ( ! empty( $args['label'] ) && $label_after ) {
702
+            $label_args = array(
703
+                'title'      => $args['label'],
704
+                'for'        => $args['id'],
705
+                'class'      => $args['label_class'] . " ",
706
+                'label_type' => $args['label_type'],
707
+                'label_col'  => $args['label_col']
708
+            );
709
+            $output .= self::label( $label_args );
710
+        }
711
+
712
+        // help text
713
+        if ( ! empty( $args['help_text'] ) ) {
714
+            $output .= AUI_Component_Helper::help_text( $args['help_text'] );
715
+        }
716
+
717
+        // maybe horizontal label
718
+        if ( $args['label_type'] == 'horizontal' ) {
719
+            $output .= '</div>';
720
+        }
721
+
722
+
723
+        // wrap
724
+        if ( ! $args['no_wrap'] ) {
725
+            $form_group_class = $args['label_type'] == 'floating' ? 'form-label-group' : 'form-group';
726
+            $wrap_class       = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
727
+            $wrap_class       = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
728
+            $output           = self::wrap( array(
729
+                'content'         => $output,
730
+                'class'           => $wrap_class,
731
+                'element_require' => $args['element_require'],
732
+                'argument_id'     => $args['id'],
733
+                'wrap_attributes' => $args['wrap_attributes'],
734
+            ) );
735
+        }
736
+
737
+
738
+        return $output;
739
+    }
740
+
741
+    /**
742
+     * Build the component.
743
+     *
744
+     * @param array $args
745
+     *
746
+     * @return string The rendered component.
747
+     */
748
+    public static function select( $args = array() ) {
749
+        $defaults = array(
750
+            'class'            => '',
751
+            'wrap_class'       => '',
752
+            'id'               => '',
753
+            'title'            => '',
754
+            'value'            => '',
755
+            // can be an array or a string
756
+            'required'         => false,
757
+            'label'            => '',
758
+            'label_after'      => false,
759
+            'label_type'       => '',
760
+            'label_col'        => '',
761
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
762
+            'label_class'      => '',
763
+            'help_text'        => '',
764
+            'placeholder'      => '',
765
+            'options'          => array(),
766
+            // array or string
767
+            'icon'             => '',
768
+            'multiple'         => false,
769
+            'select2'          => false,
770
+            'no_wrap'          => false,
771
+            'input_group_right' => '',
772
+            'input_group_left' => '',
773
+            'input_group_right_inside' => false, // forces the input group inside the input
774
+            'input_group_left_inside' => false, // forces the input group inside the input
775
+            'element_require'  => '',
776
+            // [%element_id%] == "1"
777
+            'extra_attributes' => array(),
778
+            // an array of extra attributes
779
+            'wrap_attributes'  => array(),
780
+        );
781
+
782
+        /**
783
+         * Parse incoming $args into an array and merge it with $defaults
784
+         */
785
+        $args   = wp_parse_args( $args, $defaults );
786
+        $output = '';
787
+
788
+        // for now lets hide floating labels
789
+        if ( $args['label_type'] == 'floating' ) {
790
+            $args['label_type'] = 'hidden';
791
+        }
792
+
793
+        // hidden label option needs to be empty
794
+        $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
795
+
796
+
797
+        $label_after = $args['label_after'];
798
+
799
+        // floating labels need label after
800
+        if ( $args['label_type'] == 'floating' ) {
801
+            $label_after         = true;
802
+            $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
803
+        }
804
+
805
+        // Maybe setup select2
806
+        $is_select2 = false;
807
+        if ( ! empty( $args['select2'] ) ) {
808
+            $args['class'] .= ' aui-select2';
809
+            $is_select2 = true;
810
+        } elseif ( strpos( $args['class'], 'aui-select2' ) !== false ) {
811
+            $is_select2 = true;
812
+        }
813
+
814
+        // select2 tags
815
+        if ( ! empty( $args['select2'] ) && $args['select2'] === 'tags' ) { // triple equals needed here for some reason
816
+            $args['data-tags']             = 'true';
817
+            $args['data-token-separators'] = "[',']";
818
+            $args['multiple']              = true;
819
+        }
820
+
821
+        // select2 placeholder
822
+        if ( $is_select2 && isset( $args['placeholder'] ) && '' != $args['placeholder'] && empty( $args['data-placeholder'] ) ) {
823
+            $args['data-placeholder'] = esc_attr( $args['placeholder'] );
824
+            $args['data-allow-clear'] = isset( $args['data-allow-clear'] ) ? (bool) $args['data-allow-clear'] : true;
825
+        }
826
+
827
+
828
+
829
+        // maybe horizontal label
830 830
 //		if ( $args['label_type'] == 'horizontal' ) {
831 831
 //			$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
832 832
 //			$output .= '<div class="' . $input_col . '">';
833 833
 //		}
834 834
 
835
-		// Set hidden input to save empty value for multiselect.
836
-		if ( ! empty( $args['multiple'] ) && ! empty( $args['name'] ) ) {
837
-			$output .= '<input type="hidden" ' . AUI_Component_Helper::name( $args['name'] ) . ' value=""/>';
838
-		}
839
-
840
-		// open/type
841
-		$output .= '<select ';
842
-
843
-		// style
844
-		if ( $is_select2 && !($args['input_group_left'] || $args['input_group_right'])) {
845
-			$output .= " style='width:100%;' ";
846
-		}
847
-
848
-		// element require
849
-		if ( ! empty( $args['element_require'] ) ) {
850
-			$output .= AUI_Component_Helper::element_require( $args['element_require'] );
851
-			$args['class'] .= " aui-conditional-field";
852
-		}
853
-
854
-		// class
855
-		$class = ! empty( $args['class'] ) ? $args['class'] : '';
856
-		$output .= AUI_Component_Helper::class_attr( 'custom-select ' . $class );
857
-
858
-		// name
859
-		if ( ! empty( $args['name'] ) ) {
860
-			$output .= AUI_Component_Helper::name( $args['name'], $args['multiple'] );
861
-		}
862
-
863
-		// id
864
-		if ( ! empty( $args['id'] ) ) {
865
-			$output .= AUI_Component_Helper::id( $args['id'] );
866
-		}
867
-
868
-		// title
869
-		if ( ! empty( $args['title'] ) ) {
870
-			$output .= AUI_Component_Helper::title( $args['title'] );
871
-		}
872
-
873
-		// data-attributes
874
-		$output .= AUI_Component_Helper::data_attributes( $args );
875
-
876
-		// aria-attributes
877
-		$output .= AUI_Component_Helper::aria_attributes( $args );
878
-
879
-		// extra attributes
880
-		if ( ! empty( $args['extra_attributes'] ) ) {
881
-			$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
882
-		}
883
-
884
-		// required
885
-		if ( ! empty( $args['required'] ) ) {
886
-			$output .= ' required ';
887
-		}
888
-
889
-		// multiple
890
-		if ( ! empty( $args['multiple'] ) ) {
891
-			$output .= ' multiple ';
892
-		}
893
-
894
-		// close opening tag
895
-		$output .= ' >';
896
-
897
-		// placeholder
898
-		if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] && ! $is_select2 ) {
899
-			$output .= '<option value="" disabled selected hidden>' . esc_attr( $args['placeholder'] ) . '</option>';
900
-		} elseif ( $is_select2 && ! empty( $args['placeholder'] ) ) {
901
-			$output .= "<option></option>"; // select2 needs an empty select to fill the placeholder
902
-		}
903
-
904
-		// Options
905
-		if ( ! empty( $args['options'] ) ) {
906
-
907
-			if ( ! is_array( $args['options'] ) ) {
908
-				$output .= $args['options']; // not the preferred way but an option
909
-			} else {
910
-				foreach ( $args['options'] as $val => $name ) {
911
-					$selected = '';
912
-					if ( is_array( $name ) ) {
913
-						if ( isset( $name['optgroup'] ) && ( $name['optgroup'] == 'start' || $name['optgroup'] == 'end' ) ) {
914
-							$option_label = isset( $name['label'] ) ? $name['label'] : '';
915
-
916
-							$output .= $name['optgroup'] == 'start' ? '<optgroup label="' . esc_attr( $option_label ) . '">' : '</optgroup>';
917
-						} else {
918
-							$option_label = isset( $name['label'] ) ? $name['label'] : '';
919
-							$option_value = isset( $name['value'] ) ? $name['value'] : '';
920
-							$extra_attributes = !empty($name['extra_attributes']) ? AUI_Component_Helper::extra_attributes( $name['extra_attributes'] ) : '';
921
-							if ( ! empty( $args['multiple'] ) && ! empty( $args['value'] ) && is_array( $args['value'] ) ) {
922
-								$selected = in_array( $option_value, stripslashes_deep( $args['value'] ) ) ? "selected" : "";
923
-							} elseif ( ! empty( $args['value'] ) ) {
924
-								$selected = selected( $option_value, stripslashes_deep( $args['value'] ), false );
925
-							} elseif ( empty( $args['value'] ) && $args['value'] === $option_value ) {
926
-								$selected = selected( $option_value, $args['value'], false );
927
-							}
928
-
929
-							$output .= '<option value="' . esc_attr( $option_value ) . '" ' . $selected . ' '.$extra_attributes .'>' . $option_label . '</option>';
930
-						}
931
-					} else {
932
-						if ( ! empty( $args['value'] ) ) {
933
-							if ( is_array( $args['value'] ) ) {
934
-								$selected = in_array( $val, $args['value'] ) ? 'selected="selected"' : '';
935
-							} elseif ( ! empty( $args['value'] ) ) {
936
-								$selected = selected( $args['value'], $val, false );
937
-							}
938
-						} elseif ( $args['value'] === $val ) {
939
-							$selected = selected( $args['value'], $val, false );
940
-						}
941
-						$output .= '<option value="' . esc_attr( $val ) . '" ' . $selected . '>' . esc_attr( $name ) . '</option>';
942
-					}
943
-				}
944
-			}
945
-
946
-		}
947
-
948
-		// closing tag
949
-		$output .= '</select>';
950
-
951
-		$label = '';
952
-		$help_text = '';
953
-		// label
954
-		if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
955
-		} elseif ( ! empty( $args['label'] ) && ! $label_after ) {
956
-			$label_args = array(
957
-				'title'      => $args['label'],
958
-				'for'        => $args['id'],
959
-				'class'      => $args['label_class'] . " ",
960
-				'label_type' => $args['label_type'],
961
-				'label_col'  => $args['label_col']
962
-			);
963
-			$label = self::label( $label_args );
964
-		}
965
-
966
-		// help text
967
-		if ( ! empty( $args['help_text'] ) ) {
968
-			$help_text = AUI_Component_Helper::help_text( $args['help_text'] );
969
-		}
970
-
971
-		// input group wraps
972
-		if ( $args['input_group_left'] || $args['input_group_right'] ) {
973
-			$w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
974
-			if ( $args['input_group_left'] ) {
975
-				$output = self::wrap( array(
976
-					'content'                 => $output,
977
-					'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
978
-					'input_group_left'        => $args['input_group_left'],
979
-					'input_group_left_inside' => $args['input_group_left_inside']
980
-				) );
981
-			}
982
-			if ( $args['input_group_right'] ) {
983
-				$output = self::wrap( array(
984
-					'content'                  => $output,
985
-					'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
986
-					'input_group_right'        => $args['input_group_right'],
987
-					'input_group_right_inside' => $args['input_group_right_inside']
988
-				) );
989
-			}
990
-
991
-		}
992
-
993
-		if ( ! $label_after ) {
994
-			$output .= $help_text;
995
-		}
996
-
997
-
998
-		if ( $args['label_type'] == 'horizontal' ) {
999
-			$output = self::wrap( array(
1000
-				'content' => $output,
1001
-				'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
1002
-			) );
1003
-		}
1004
-
1005
-		if ( ! $label_after ) {
1006
-			$output = $label . $output;
1007
-		}
1008
-
1009
-		// maybe horizontal label
835
+        // Set hidden input to save empty value for multiselect.
836
+        if ( ! empty( $args['multiple'] ) && ! empty( $args['name'] ) ) {
837
+            $output .= '<input type="hidden" ' . AUI_Component_Helper::name( $args['name'] ) . ' value=""/>';
838
+        }
839
+
840
+        // open/type
841
+        $output .= '<select ';
842
+
843
+        // style
844
+        if ( $is_select2 && !($args['input_group_left'] || $args['input_group_right'])) {
845
+            $output .= " style='width:100%;' ";
846
+        }
847
+
848
+        // element require
849
+        if ( ! empty( $args['element_require'] ) ) {
850
+            $output .= AUI_Component_Helper::element_require( $args['element_require'] );
851
+            $args['class'] .= " aui-conditional-field";
852
+        }
853
+
854
+        // class
855
+        $class = ! empty( $args['class'] ) ? $args['class'] : '';
856
+        $output .= AUI_Component_Helper::class_attr( 'custom-select ' . $class );
857
+
858
+        // name
859
+        if ( ! empty( $args['name'] ) ) {
860
+            $output .= AUI_Component_Helper::name( $args['name'], $args['multiple'] );
861
+        }
862
+
863
+        // id
864
+        if ( ! empty( $args['id'] ) ) {
865
+            $output .= AUI_Component_Helper::id( $args['id'] );
866
+        }
867
+
868
+        // title
869
+        if ( ! empty( $args['title'] ) ) {
870
+            $output .= AUI_Component_Helper::title( $args['title'] );
871
+        }
872
+
873
+        // data-attributes
874
+        $output .= AUI_Component_Helper::data_attributes( $args );
875
+
876
+        // aria-attributes
877
+        $output .= AUI_Component_Helper::aria_attributes( $args );
878
+
879
+        // extra attributes
880
+        if ( ! empty( $args['extra_attributes'] ) ) {
881
+            $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
882
+        }
883
+
884
+        // required
885
+        if ( ! empty( $args['required'] ) ) {
886
+            $output .= ' required ';
887
+        }
888
+
889
+        // multiple
890
+        if ( ! empty( $args['multiple'] ) ) {
891
+            $output .= ' multiple ';
892
+        }
893
+
894
+        // close opening tag
895
+        $output .= ' >';
896
+
897
+        // placeholder
898
+        if ( isset( $args['placeholder'] ) && '' != $args['placeholder'] && ! $is_select2 ) {
899
+            $output .= '<option value="" disabled selected hidden>' . esc_attr( $args['placeholder'] ) . '</option>';
900
+        } elseif ( $is_select2 && ! empty( $args['placeholder'] ) ) {
901
+            $output .= "<option></option>"; // select2 needs an empty select to fill the placeholder
902
+        }
903
+
904
+        // Options
905
+        if ( ! empty( $args['options'] ) ) {
906
+
907
+            if ( ! is_array( $args['options'] ) ) {
908
+                $output .= $args['options']; // not the preferred way but an option
909
+            } else {
910
+                foreach ( $args['options'] as $val => $name ) {
911
+                    $selected = '';
912
+                    if ( is_array( $name ) ) {
913
+                        if ( isset( $name['optgroup'] ) && ( $name['optgroup'] == 'start' || $name['optgroup'] == 'end' ) ) {
914
+                            $option_label = isset( $name['label'] ) ? $name['label'] : '';
915
+
916
+                            $output .= $name['optgroup'] == 'start' ? '<optgroup label="' . esc_attr( $option_label ) . '">' : '</optgroup>';
917
+                        } else {
918
+                            $option_label = isset( $name['label'] ) ? $name['label'] : '';
919
+                            $option_value = isset( $name['value'] ) ? $name['value'] : '';
920
+                            $extra_attributes = !empty($name['extra_attributes']) ? AUI_Component_Helper::extra_attributes( $name['extra_attributes'] ) : '';
921
+                            if ( ! empty( $args['multiple'] ) && ! empty( $args['value'] ) && is_array( $args['value'] ) ) {
922
+                                $selected = in_array( $option_value, stripslashes_deep( $args['value'] ) ) ? "selected" : "";
923
+                            } elseif ( ! empty( $args['value'] ) ) {
924
+                                $selected = selected( $option_value, stripslashes_deep( $args['value'] ), false );
925
+                            } elseif ( empty( $args['value'] ) && $args['value'] === $option_value ) {
926
+                                $selected = selected( $option_value, $args['value'], false );
927
+                            }
928
+
929
+                            $output .= '<option value="' . esc_attr( $option_value ) . '" ' . $selected . ' '.$extra_attributes .'>' . $option_label . '</option>';
930
+                        }
931
+                    } else {
932
+                        if ( ! empty( $args['value'] ) ) {
933
+                            if ( is_array( $args['value'] ) ) {
934
+                                $selected = in_array( $val, $args['value'] ) ? 'selected="selected"' : '';
935
+                            } elseif ( ! empty( $args['value'] ) ) {
936
+                                $selected = selected( $args['value'], $val, false );
937
+                            }
938
+                        } elseif ( $args['value'] === $val ) {
939
+                            $selected = selected( $args['value'], $val, false );
940
+                        }
941
+                        $output .= '<option value="' . esc_attr( $val ) . '" ' . $selected . '>' . esc_attr( $name ) . '</option>';
942
+                    }
943
+                }
944
+            }
945
+
946
+        }
947
+
948
+        // closing tag
949
+        $output .= '</select>';
950
+
951
+        $label = '';
952
+        $help_text = '';
953
+        // label
954
+        if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
955
+        } elseif ( ! empty( $args['label'] ) && ! $label_after ) {
956
+            $label_args = array(
957
+                'title'      => $args['label'],
958
+                'for'        => $args['id'],
959
+                'class'      => $args['label_class'] . " ",
960
+                'label_type' => $args['label_type'],
961
+                'label_col'  => $args['label_col']
962
+            );
963
+            $label = self::label( $label_args );
964
+        }
965
+
966
+        // help text
967
+        if ( ! empty( $args['help_text'] ) ) {
968
+            $help_text = AUI_Component_Helper::help_text( $args['help_text'] );
969
+        }
970
+
971
+        // input group wraps
972
+        if ( $args['input_group_left'] || $args['input_group_right'] ) {
973
+            $w100 = strpos( $args['class'], 'w-100' ) !== false ? ' w-100' : '';
974
+            if ( $args['input_group_left'] ) {
975
+                $output = self::wrap( array(
976
+                    'content'                 => $output,
977
+                    'class'                   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
978
+                    'input_group_left'        => $args['input_group_left'],
979
+                    'input_group_left_inside' => $args['input_group_left_inside']
980
+                ) );
981
+            }
982
+            if ( $args['input_group_right'] ) {
983
+                $output = self::wrap( array(
984
+                    'content'                  => $output,
985
+                    'class'                    => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
986
+                    'input_group_right'        => $args['input_group_right'],
987
+                    'input_group_right_inside' => $args['input_group_right_inside']
988
+                ) );
989
+            }
990
+
991
+        }
992
+
993
+        if ( ! $label_after ) {
994
+            $output .= $help_text;
995
+        }
996
+
997
+
998
+        if ( $args['label_type'] == 'horizontal' ) {
999
+            $output = self::wrap( array(
1000
+                'content' => $output,
1001
+                'class'   => AUI_Component_Helper::get_column_class( $args['label_col'], 'input' )
1002
+            ) );
1003
+        }
1004
+
1005
+        if ( ! $label_after ) {
1006
+            $output = $label . $output;
1007
+        }
1008
+
1009
+        // maybe horizontal label
1010 1010
 //		if ( $args['label_type'] == 'horizontal' ) {
1011 1011
 //			$output .= '</div>';
1012 1012
 //		}
1013 1013
 
1014 1014
 
1015
-		// wrap
1016
-		if ( ! $args['no_wrap'] ) {
1017
-			$wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
1018
-			$wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
1019
-			$output     = self::wrap( array(
1020
-				'content'         => $output,
1021
-				'class'           => $wrap_class,
1022
-				'element_require' => $args['element_require'],
1023
-				'argument_id'     => $args['id'],
1024
-				'wrap_attributes' => $args['wrap_attributes'],
1025
-			) );
1026
-		}
1027
-
1028
-
1029
-		return $output;
1030
-	}
1031
-
1032
-	/**
1033
-	 * Build the component.
1034
-	 *
1035
-	 * @param array $args
1036
-	 *
1037
-	 * @return string The rendered component.
1038
-	 */
1039
-	public static function radio( $args = array() ) {
1040
-		$defaults = array(
1041
-			'class'            => '',
1042
-			'wrap_class'       => '',
1043
-			'id'               => '',
1044
-			'title'            => '',
1045
-			'horizontal'       => false,
1046
-			// sets the lable horizontal
1047
-			'value'            => '',
1048
-			'label'            => '',
1049
-			'label_class'      => '',
1050
-			'label_type'       => '',
1051
-			'label_col'        => '',
1052
-			// sets the label type, default: hidden. Options: hidden, top, horizontal, floating
1053
-			'help_text'        => '',
1054
-			'inline'           => true,
1055
-			'required'         => false,
1056
-			'options'          => array(),
1057
-			'icon'             => '',
1058
-			'no_wrap'          => false,
1059
-			'element_require'  => '',
1060
-			// [%element_id%] == "1"
1061
-			'extra_attributes' => array(),
1062
-			// an array of extra attributes
1063
-			'wrap_attributes'  => array()
1064
-		);
1065
-
1066
-		/**
1067
-		 * Parse incoming $args into an array and merge it with $defaults
1068
-		 */
1069
-		$args = wp_parse_args( $args, $defaults );
1070
-
1071
-		// for now lets use horizontal for floating
1072
-		if ( $args['label_type'] == 'floating' ) {
1073
-			$args['label_type'] = 'horizontal';
1074
-		}
1075
-
1076
-		$label_args = array(
1077
-			'title'      => $args['label'],
1078
-			'class'      => $args['label_class'] . " pt-0 ",
1079
-			'label_type' => $args['label_type'],
1080
-			'label_col'  => $args['label_col']
1081
-		);
1082
-
1083
-		$output = '';
1084
-
1085
-
1086
-		// label before
1087
-		if ( ! empty( $args['label'] ) ) {
1088
-			$output .= self::label( $label_args, 'radio' );
1089
-		}
1090
-
1091
-		// maybe horizontal label
1092
-		if ( $args['label_type'] == 'horizontal' ) {
1093
-			$input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
1094
-			$output .= '<div class="' . $input_col . '">';
1095
-		}
1096
-
1097
-		if ( ! empty( $args['options'] ) ) {
1098
-			$count = 0;
1099
-			foreach ( $args['options'] as $value => $label ) {
1100
-				$option_args            = $args;
1101
-				$option_args['value']   = $value;
1102
-				$option_args['label']   = $label;
1103
-				$option_args['checked'] = $value == $args['value'] ? true : false;
1104
-				$output .= self::radio_option( $option_args, $count );
1105
-				$count ++;
1106
-			}
1107
-		}
1108
-
1109
-		// help text
1110
-		$help_text = ! empty( $args['help_text'] ) ? AUI_Component_Helper::help_text( $args['help_text'] ) : '';
1111
-		$output .= $help_text;
1112
-
1113
-		// maybe horizontal label
1114
-		if ( $args['label_type'] == 'horizontal' ) {
1115
-			$output .= '</div>';
1116
-		}
1117
-
1118
-		// wrap
1119
-		$wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
1120
-		$wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
1121
-		$output     = self::wrap( array(
1122
-			'content'         => $output,
1123
-			'class'           => $wrap_class,
1124
-			'element_require' => $args['element_require'],
1125
-			'argument_id'     => $args['id'],
1126
-			'wrap_attributes' => $args['wrap_attributes'],
1127
-		) );
1128
-
1129
-
1130
-		return $output;
1131
-	}
1132
-
1133
-	/**
1134
-	 * Build the component.
1135
-	 *
1136
-	 * @param array $args
1137
-	 *
1138
-	 * @return string The rendered component.
1139
-	 */
1140
-	public static function radio_option( $args = array(), $count = '' ) {
1141
-		$defaults = array(
1142
-			'class'            => '',
1143
-			'id'               => '',
1144
-			'title'            => '',
1145
-			'value'            => '',
1146
-			'required'         => false,
1147
-			'inline'           => true,
1148
-			'label'            => '',
1149
-			'options'          => array(),
1150
-			'icon'             => '',
1151
-			'no_wrap'          => false,
1152
-			'extra_attributes' => array() // an array of extra attributes
1153
-		);
1154
-
1155
-		/**
1156
-		 * Parse incoming $args into an array and merge it with $defaults
1157
-		 */
1158
-		$args = wp_parse_args( $args, $defaults );
1159
-
1160
-		$output = '';
1161
-
1162
-		// open/type
1163
-		$output .= '<input type="radio"';
1164
-
1165
-		// class
1166
-		$output .= ' class="form-check-input" ';
1167
-
1168
-		// name
1169
-		if ( ! empty( $args['name'] ) ) {
1170
-			$output .= AUI_Component_Helper::name( $args['name'] );
1171
-		}
1172
-
1173
-		// id
1174
-		if ( ! empty( $args['id'] ) ) {
1175
-			$output .= AUI_Component_Helper::id( $args['id'] . $count );
1176
-		}
1177
-
1178
-		// title
1179
-		if ( ! empty( $args['title'] ) ) {
1180
-			$output .= AUI_Component_Helper::title( $args['title'] );
1181
-		}
1182
-
1183
-		// value
1184
-		if ( isset( $args['value'] ) ) {
1185
-			$output .= AUI_Component_Helper::value( $args['value'] );
1186
-		}
1187
-
1188
-		// checked, for radio and checkboxes
1189
-		if ( $args['checked'] ) {
1190
-			$output .= ' checked ';
1191
-		}
1192
-
1193
-		// data-attributes
1194
-		$output .= AUI_Component_Helper::data_attributes( $args );
1195
-
1196
-		// aria-attributes
1197
-		$output .= AUI_Component_Helper::aria_attributes( $args );
1198
-
1199
-		// extra attributes
1200
-		if ( ! empty( $args['extra_attributes'] ) ) {
1201
-			$output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
1202
-		}
1203
-
1204
-		// required
1205
-		if ( ! empty( $args['required'] ) ) {
1206
-			$output .= ' required ';
1207
-		}
1208
-
1209
-		// close opening tag
1210
-		$output .= ' >';
1211
-
1212
-		// label
1213
-		if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
1214
-		} elseif ( ! empty( $args['label'] ) ) {
1215
-			$output .= self::label( array(
1216
-				'title' => $args['label'],
1217
-				'for'   => $args['id'] . $count,
1218
-				'class' => 'form-check-label'
1219
-			), 'radio' );
1220
-		}
1221
-
1222
-		// wrap
1223
-		if ( ! $args['no_wrap'] ) {
1224
-			$wrap_class = $args['inline'] ? 'form-check form-check-inline' : 'form-check';
1225
-
1226
-			// Unique wrap class
1227
-			$uniq_class = 'fwrap';
1228
-			if ( ! empty( $args['name'] ) ) {
1229
-				$uniq_class .= '-' . $args['name'];
1230
-			} else if ( ! empty( $args['id'] ) ) {
1231
-				$uniq_class .= '-' . $args['id'];
1232
-			}
1233
-
1234
-			if ( isset( $args['value'] ) || $args['value'] !== "" ) {
1235
-				$uniq_class .= '-' . $args['value'];
1236
-			} else {
1237
-				$uniq_class .= '-' . $count;
1238
-			}
1239
-			$wrap_class .= ' ' . sanitize_html_class( $uniq_class );
1240
-
1241
-			$output = self::wrap( array(
1242
-				'content' => $output,
1243
-				'class'   => $wrap_class
1244
-			) );
1245
-		}
1246
-
1247
-		return $output;
1248
-	}
1015
+        // wrap
1016
+        if ( ! $args['no_wrap'] ) {
1017
+            $wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
1018
+            $wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
1019
+            $output     = self::wrap( array(
1020
+                'content'         => $output,
1021
+                'class'           => $wrap_class,
1022
+                'element_require' => $args['element_require'],
1023
+                'argument_id'     => $args['id'],
1024
+                'wrap_attributes' => $args['wrap_attributes'],
1025
+            ) );
1026
+        }
1027
+
1028
+
1029
+        return $output;
1030
+    }
1031
+
1032
+    /**
1033
+     * Build the component.
1034
+     *
1035
+     * @param array $args
1036
+     *
1037
+     * @return string The rendered component.
1038
+     */
1039
+    public static function radio( $args = array() ) {
1040
+        $defaults = array(
1041
+            'class'            => '',
1042
+            'wrap_class'       => '',
1043
+            'id'               => '',
1044
+            'title'            => '',
1045
+            'horizontal'       => false,
1046
+            // sets the lable horizontal
1047
+            'value'            => '',
1048
+            'label'            => '',
1049
+            'label_class'      => '',
1050
+            'label_type'       => '',
1051
+            'label_col'        => '',
1052
+            // sets the label type, default: hidden. Options: hidden, top, horizontal, floating
1053
+            'help_text'        => '',
1054
+            'inline'           => true,
1055
+            'required'         => false,
1056
+            'options'          => array(),
1057
+            'icon'             => '',
1058
+            'no_wrap'          => false,
1059
+            'element_require'  => '',
1060
+            // [%element_id%] == "1"
1061
+            'extra_attributes' => array(),
1062
+            // an array of extra attributes
1063
+            'wrap_attributes'  => array()
1064
+        );
1065
+
1066
+        /**
1067
+         * Parse incoming $args into an array and merge it with $defaults
1068
+         */
1069
+        $args = wp_parse_args( $args, $defaults );
1070
+
1071
+        // for now lets use horizontal for floating
1072
+        if ( $args['label_type'] == 'floating' ) {
1073
+            $args['label_type'] = 'horizontal';
1074
+        }
1075
+
1076
+        $label_args = array(
1077
+            'title'      => $args['label'],
1078
+            'class'      => $args['label_class'] . " pt-0 ",
1079
+            'label_type' => $args['label_type'],
1080
+            'label_col'  => $args['label_col']
1081
+        );
1082
+
1083
+        $output = '';
1084
+
1085
+
1086
+        // label before
1087
+        if ( ! empty( $args['label'] ) ) {
1088
+            $output .= self::label( $label_args, 'radio' );
1089
+        }
1090
+
1091
+        // maybe horizontal label
1092
+        if ( $args['label_type'] == 'horizontal' ) {
1093
+            $input_col = AUI_Component_Helper::get_column_class( $args['label_col'], 'input' );
1094
+            $output .= '<div class="' . $input_col . '">';
1095
+        }
1096
+
1097
+        if ( ! empty( $args['options'] ) ) {
1098
+            $count = 0;
1099
+            foreach ( $args['options'] as $value => $label ) {
1100
+                $option_args            = $args;
1101
+                $option_args['value']   = $value;
1102
+                $option_args['label']   = $label;
1103
+                $option_args['checked'] = $value == $args['value'] ? true : false;
1104
+                $output .= self::radio_option( $option_args, $count );
1105
+                $count ++;
1106
+            }
1107
+        }
1108
+
1109
+        // help text
1110
+        $help_text = ! empty( $args['help_text'] ) ? AUI_Component_Helper::help_text( $args['help_text'] ) : '';
1111
+        $output .= $help_text;
1112
+
1113
+        // maybe horizontal label
1114
+        if ( $args['label_type'] == 'horizontal' ) {
1115
+            $output .= '</div>';
1116
+        }
1117
+
1118
+        // wrap
1119
+        $wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
1120
+        $wrap_class = ! empty( $args['wrap_class'] ) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
1121
+        $output     = self::wrap( array(
1122
+            'content'         => $output,
1123
+            'class'           => $wrap_class,
1124
+            'element_require' => $args['element_require'],
1125
+            'argument_id'     => $args['id'],
1126
+            'wrap_attributes' => $args['wrap_attributes'],
1127
+        ) );
1128
+
1129
+
1130
+        return $output;
1131
+    }
1132
+
1133
+    /**
1134
+     * Build the component.
1135
+     *
1136
+     * @param array $args
1137
+     *
1138
+     * @return string The rendered component.
1139
+     */
1140
+    public static function radio_option( $args = array(), $count = '' ) {
1141
+        $defaults = array(
1142
+            'class'            => '',
1143
+            'id'               => '',
1144
+            'title'            => '',
1145
+            'value'            => '',
1146
+            'required'         => false,
1147
+            'inline'           => true,
1148
+            'label'            => '',
1149
+            'options'          => array(),
1150
+            'icon'             => '',
1151
+            'no_wrap'          => false,
1152
+            'extra_attributes' => array() // an array of extra attributes
1153
+        );
1154
+
1155
+        /**
1156
+         * Parse incoming $args into an array and merge it with $defaults
1157
+         */
1158
+        $args = wp_parse_args( $args, $defaults );
1159
+
1160
+        $output = '';
1161
+
1162
+        // open/type
1163
+        $output .= '<input type="radio"';
1164
+
1165
+        // class
1166
+        $output .= ' class="form-check-input" ';
1167
+
1168
+        // name
1169
+        if ( ! empty( $args['name'] ) ) {
1170
+            $output .= AUI_Component_Helper::name( $args['name'] );
1171
+        }
1172
+
1173
+        // id
1174
+        if ( ! empty( $args['id'] ) ) {
1175
+            $output .= AUI_Component_Helper::id( $args['id'] . $count );
1176
+        }
1177
+
1178
+        // title
1179
+        if ( ! empty( $args['title'] ) ) {
1180
+            $output .= AUI_Component_Helper::title( $args['title'] );
1181
+        }
1182
+
1183
+        // value
1184
+        if ( isset( $args['value'] ) ) {
1185
+            $output .= AUI_Component_Helper::value( $args['value'] );
1186
+        }
1187
+
1188
+        // checked, for radio and checkboxes
1189
+        if ( $args['checked'] ) {
1190
+            $output .= ' checked ';
1191
+        }
1192
+
1193
+        // data-attributes
1194
+        $output .= AUI_Component_Helper::data_attributes( $args );
1195
+
1196
+        // aria-attributes
1197
+        $output .= AUI_Component_Helper::aria_attributes( $args );
1198
+
1199
+        // extra attributes
1200
+        if ( ! empty( $args['extra_attributes'] ) ) {
1201
+            $output .= AUI_Component_Helper::extra_attributes( $args['extra_attributes'] );
1202
+        }
1203
+
1204
+        // required
1205
+        if ( ! empty( $args['required'] ) ) {
1206
+            $output .= ' required ';
1207
+        }
1208
+
1209
+        // close opening tag
1210
+        $output .= ' >';
1211
+
1212
+        // label
1213
+        if ( ! empty( $args['label'] ) && is_array( $args['label'] ) ) {
1214
+        } elseif ( ! empty( $args['label'] ) ) {
1215
+            $output .= self::label( array(
1216
+                'title' => $args['label'],
1217
+                'for'   => $args['id'] . $count,
1218
+                'class' => 'form-check-label'
1219
+            ), 'radio' );
1220
+        }
1221
+
1222
+        // wrap
1223
+        if ( ! $args['no_wrap'] ) {
1224
+            $wrap_class = $args['inline'] ? 'form-check form-check-inline' : 'form-check';
1225
+
1226
+            // Unique wrap class
1227
+            $uniq_class = 'fwrap';
1228
+            if ( ! empty( $args['name'] ) ) {
1229
+                $uniq_class .= '-' . $args['name'];
1230
+            } else if ( ! empty( $args['id'] ) ) {
1231
+                $uniq_class .= '-' . $args['id'];
1232
+            }
1233
+
1234
+            if ( isset( $args['value'] ) || $args['value'] !== "" ) {
1235
+                $uniq_class .= '-' . $args['value'];
1236
+            } else {
1237
+                $uniq_class .= '-' . $count;
1238
+            }
1239
+            $wrap_class .= ' ' . sanitize_html_class( $uniq_class );
1240
+
1241
+            $output = self::wrap( array(
1242
+                'content' => $output,
1243
+                'class'   => $wrap_class
1244
+            ) );
1245
+        }
1246
+
1247
+        return $output;
1248
+    }
1249 1249
 
1250 1250
 }
1251 1251
\ No newline at end of file
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php 1 patch
Indentation   +1220 added lines, -1220 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * Bail if we are not in WP.
14 14
  */
15 15
 if ( ! defined( 'ABSPATH' ) ) {
16
-	exit;
16
+    exit;
17 17
 }
18 18
 
19 19
 /**
@@ -21,273 +21,273 @@  discard block
 block discarded – undo
21 21
  */
22 22
 if ( ! class_exists( 'AyeCode_UI_Settings' ) ) {
23 23
 
24
-	/**
25
-	 * A Class to be able to change settings for Font Awesome.
26
-	 *
27
-	 * Class AyeCode_UI_Settings
28
-	 * @ver 1.0.0
29
-	 * @todo decide how to implement textdomain
30
-	 */
31
-	class AyeCode_UI_Settings {
32
-
33
-		/**
34
-		 * Class version version.
35
-		 *
36
-		 * @var string
37
-		 */
38
-		public $version = '0.1.72';
39
-
40
-		/**
41
-		 * Class textdomain.
42
-		 *
43
-		 * @var string
44
-		 */
45
-		public $textdomain = 'aui';
46
-
47
-		/**
48
-		 * Latest version of Bootstrap at time of publish published.
49
-		 *
50
-		 * @var string
51
-		 */
52
-		public $latest = "4.5.3";
53
-
54
-		/**
55
-		 * Current version of select2 being used.
56
-		 *
57
-		 * @var string
58
-		 */
59
-		public $select2_version = "4.0.11";
60
-
61
-		/**
62
-		 * The title.
63
-		 *
64
-		 * @var string
65
-		 */
66
-		public $name = 'AyeCode UI';
67
-
68
-		/**
69
-		 * The relative url to the assets.
70
-		 *
71
-		 * @var string
72
-		 */
73
-		public $url = '';
74
-
75
-		/**
76
-		 * Holds the settings values.
77
-		 *
78
-		 * @var array
79
-		 */
80
-		private $settings;
81
-
82
-		/**
83
-		 * AyeCode_UI_Settings instance.
84
-		 *
85
-		 * @access private
86
-		 * @since  1.0.0
87
-		 * @var    AyeCode_UI_Settings There can be only one!
88
-		 */
89
-		private static $instance = null;
90
-
91
-		/**
92
-		 * Main AyeCode_UI_Settings Instance.
93
-		 *
94
-		 * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded.
95
-		 *
96
-		 * @since 1.0.0
97
-		 * @static
98
-		 * @return AyeCode_UI_Settings - Main instance.
99
-		 */
100
-		public static function instance() {
101
-			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
102
-
103
-				self::$instance = new AyeCode_UI_Settings;
104
-
105
-				add_action( 'init', array( self::$instance, 'init' ) ); // set settings
106
-
107
-				if ( is_admin() ) {
108
-					add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
-					add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
110
-
111
-					// Maybe show example page
112
-					add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
113
-				}
24
+    /**
25
+     * A Class to be able to change settings for Font Awesome.
26
+     *
27
+     * Class AyeCode_UI_Settings
28
+     * @ver 1.0.0
29
+     * @todo decide how to implement textdomain
30
+     */
31
+    class AyeCode_UI_Settings {
32
+
33
+        /**
34
+         * Class version version.
35
+         *
36
+         * @var string
37
+         */
38
+        public $version = '0.1.72';
39
+
40
+        /**
41
+         * Class textdomain.
42
+         *
43
+         * @var string
44
+         */
45
+        public $textdomain = 'aui';
46
+
47
+        /**
48
+         * Latest version of Bootstrap at time of publish published.
49
+         *
50
+         * @var string
51
+         */
52
+        public $latest = "4.5.3";
53
+
54
+        /**
55
+         * Current version of select2 being used.
56
+         *
57
+         * @var string
58
+         */
59
+        public $select2_version = "4.0.11";
60
+
61
+        /**
62
+         * The title.
63
+         *
64
+         * @var string
65
+         */
66
+        public $name = 'AyeCode UI';
67
+
68
+        /**
69
+         * The relative url to the assets.
70
+         *
71
+         * @var string
72
+         */
73
+        public $url = '';
74
+
75
+        /**
76
+         * Holds the settings values.
77
+         *
78
+         * @var array
79
+         */
80
+        private $settings;
81
+
82
+        /**
83
+         * AyeCode_UI_Settings instance.
84
+         *
85
+         * @access private
86
+         * @since  1.0.0
87
+         * @var    AyeCode_UI_Settings There can be only one!
88
+         */
89
+        private static $instance = null;
90
+
91
+        /**
92
+         * Main AyeCode_UI_Settings Instance.
93
+         *
94
+         * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded.
95
+         *
96
+         * @since 1.0.0
97
+         * @static
98
+         * @return AyeCode_UI_Settings - Main instance.
99
+         */
100
+        public static function instance() {
101
+            if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
102
+
103
+                self::$instance = new AyeCode_UI_Settings;
104
+
105
+                add_action( 'init', array( self::$instance, 'init' ) ); // set settings
106
+
107
+                if ( is_admin() ) {
108
+                    add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
+                    add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
110
+
111
+                    // Maybe show example page
112
+                    add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
113
+                }
114 114
 
115
-				add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
115
+                add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
116 116
 
117
-				do_action( 'ayecode_ui_settings_loaded' );
118
-			}
117
+                do_action( 'ayecode_ui_settings_loaded' );
118
+            }
119 119
 
120
-			return self::$instance;
121
-		}
120
+            return self::$instance;
121
+        }
122 122
 
123
-		/**
124
-		 * Setup some constants.
125
-		 */
126
-		public function constants(){
127
-			define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
-			define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
-			if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
-			if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
-		}
123
+        /**
124
+         * Setup some constants.
125
+         */
126
+        public function constants(){
127
+            define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
+            define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
+            if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
+            if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
+        }
132 132
 
133
-		/**
134
-		 * Initiate the settings and add the required action hooks.
135
-		 */
136
-		public function init() {
137
-
138
-			// Maybe fix settings
139
-			if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) {
140
-				$db_settings = get_option( 'ayecode-ui-settings' );
141
-				if ( ! empty( $db_settings ) ) {
142
-					$db_settings['css_backend'] = 'compatibility';
143
-					$db_settings['js_backend'] = 'core-popper';
144
-					update_option( 'ayecode-ui-settings', $db_settings );
145
-					wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true"));
146
-				}
147
-			}
133
+        /**
134
+         * Initiate the settings and add the required action hooks.
135
+         */
136
+        public function init() {
137
+
138
+            // Maybe fix settings
139
+            if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) {
140
+                $db_settings = get_option( 'ayecode-ui-settings' );
141
+                if ( ! empty( $db_settings ) ) {
142
+                    $db_settings['css_backend'] = 'compatibility';
143
+                    $db_settings['js_backend'] = 'core-popper';
144
+                    update_option( 'ayecode-ui-settings', $db_settings );
145
+                    wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true"));
146
+                }
147
+            }
148 148
 
149
-			$this->constants();
150
-			$this->settings = $this->get_settings();
151
-			$this->url = $this->get_url();
149
+            $this->constants();
150
+            $this->settings = $this->get_settings();
151
+            $this->url = $this->get_url();
152
+
153
+            /**
154
+             * Maybe load CSS
155
+             *
156
+             * We load super early in case there is a theme version that might change the colors
157
+             */
158
+            if ( $this->settings['css'] ) {
159
+                $priority = $this->is_bs3_compat() ? 100 : 1;
160
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority );
161
+            }
162
+            if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
163
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
164
+            }
152 165
 
153
-			/**
154
-			 * Maybe load CSS
155
-			 *
156
-			 * We load super early in case there is a theme version that might change the colors
157
-			 */
158
-			if ( $this->settings['css'] ) {
159
-				$priority = $this->is_bs3_compat() ? 100 : 1;
160
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority );
161
-			}
162
-			if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
163
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
164
-			}
165
-
166
-			// maybe load JS
167
-			if ( $this->settings['js'] ) {
168
-				$priority = $this->is_bs3_compat() ? 100 : 1;
169
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
170
-			}
171
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
172
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
173
-			}
174
-
175
-			// Maybe set the HTML font size
176
-			if ( $this->settings['html_font_size'] ) {
177
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
178
-			}
179
-
180
-			// Maybe show backend style error
181
-			if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){
182
-				add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) );
183
-			}
166
+            // maybe load JS
167
+            if ( $this->settings['js'] ) {
168
+                $priority = $this->is_bs3_compat() ? 100 : 1;
169
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
170
+            }
171
+            if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
172
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
173
+            }
184 174
 
185
-		}
175
+            // Maybe set the HTML font size
176
+            if ( $this->settings['html_font_size'] ) {
177
+                add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
178
+            }
186 179
 
187
-		/**
188
-		 * Show admin notice if backend scripts not loaded.
189
-		 */
190
-		public function show_admin_style_notice(){
191
-			$fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin'));
192
-			$button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>';
193
-			$message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button;
194
-			echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>';
195
-		}
180
+            // Maybe show backend style error
181
+            if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){
182
+                add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) );
183
+            }
196 184
 
197
-		/**
198
-		 * Check if we should load the admin scripts or not.
199
-		 *
200
-		 * @return bool
201
-		 */
202
-		public function load_admin_scripts(){
203
-			$result = true;
204
-
205
-			// check if specifically disabled
206
-			if(!empty($this->settings['disable_admin'])){
207
-				$url_parts = explode("\n",$this->settings['disable_admin']);
208
-				foreach($url_parts as $part){
209
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
210
-						return false; // return early, no point checking further
211
-					}
212
-				}
213
-			}
185
+        }
214 186
 
215
-			return $result;
216
-		}
187
+        /**
188
+         * Show admin notice if backend scripts not loaded.
189
+         */
190
+        public function show_admin_style_notice(){
191
+            $fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin'));
192
+            $button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>';
193
+            $message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button;
194
+            echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>';
195
+        }
217 196
 
218
-		/**
219
-		 * Add a html font size to the footer.
220
-		 */
221
-		public function html_font_size(){
222
-			$this->settings = $this->get_settings();
223
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
224
-		}
197
+        /**
198
+         * Check if we should load the admin scripts or not.
199
+         *
200
+         * @return bool
201
+         */
202
+        public function load_admin_scripts(){
203
+            $result = true;
204
+
205
+            // check if specifically disabled
206
+            if(!empty($this->settings['disable_admin'])){
207
+                $url_parts = explode("\n",$this->settings['disable_admin']);
208
+                foreach($url_parts as $part){
209
+                    if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
210
+                        return false; // return early, no point checking further
211
+                    }
212
+                }
213
+            }
214
+
215
+            return $result;
216
+        }
217
+
218
+        /**
219
+         * Add a html font size to the footer.
220
+         */
221
+        public function html_font_size(){
222
+            $this->settings = $this->get_settings();
223
+            echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
224
+        }
225 225
 
226
-		/**
227
-		 * Check if the current admin screen should load scripts.
228
-		 * 
229
-		 * @return bool
230
-		 */
231
-		public function is_aui_screen(){
226
+        /**
227
+         * Check if the current admin screen should load scripts.
228
+         * 
229
+         * @return bool
230
+         */
231
+        public function is_aui_screen(){
232 232
 //			echo '###';exit;
233
-			$load = false;
234
-			// check if we should load or not
235
-			if ( is_admin() ) {
236
-				// Only enable on set pages
237
-				$aui_screens = array(
238
-					'page',
239
-					'post',
240
-					'settings_page_ayecode-ui-settings',
241
-					'appearance_page_gutenberg-widgets',
242
-					'widgets',
243
-					'ayecode-ui-settings',
244
-					'site-editor'
245
-				);
246
-				$screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
247
-
248
-				$screen = get_current_screen();
233
+            $load = false;
234
+            // check if we should load or not
235
+            if ( is_admin() ) {
236
+                // Only enable on set pages
237
+                $aui_screens = array(
238
+                    'page',
239
+                    'post',
240
+                    'settings_page_ayecode-ui-settings',
241
+                    'appearance_page_gutenberg-widgets',
242
+                    'widgets',
243
+                    'ayecode-ui-settings',
244
+                    'site-editor'
245
+                );
246
+                $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
247
+
248
+                $screen = get_current_screen();
249 249
 
250 250
 //				echo '###'.$screen->id;
251 251
 
252
-				// check if we are on a AUI screen
253
-				if ( $screen && in_array( $screen->id, $screen_ids ) ) {
254
-					$load = true;
255
-				}
252
+                // check if we are on a AUI screen
253
+                if ( $screen && in_array( $screen->id, $screen_ids ) ) {
254
+                    $load = true;
255
+                }
256 256
 
257
-				//load for widget previews in WP 5.8
258
-				if( !empty($_REQUEST['legacy-widget-preview'])){
259
-					$load = true;
260
-				}
261
-			}
257
+                //load for widget previews in WP 5.8
258
+                if( !empty($_REQUEST['legacy-widget-preview'])){
259
+                    $load = true;
260
+                }
261
+            }
262 262
 
263
-			return apply_filters( 'aui_load_on_admin' , $load );
264
-		}
263
+            return apply_filters( 'aui_load_on_admin' , $load );
264
+        }
265 265
 
266
-		/**
267
-		 * Adds the styles.
268
-		 */
269
-		public function enqueue_style() {
266
+        /**
267
+         * Adds the styles.
268
+         */
269
+        public function enqueue_style() {
270 270
 
271 271
 
272
-			if( is_admin() && !$this->is_aui_screen()){
273
-				// don't add wp-admin scripts if not requested to
274
-			}else{
275
-				$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
272
+            if( is_admin() && !$this->is_aui_screen()){
273
+                // don't add wp-admin scripts if not requested to
274
+            }else{
275
+                $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
276 276
 
277
-				$rtl = is_rtl() ? '-rtl' : '';
277
+                $rtl = is_rtl() ? '-rtl' : '';
278 278
 
279
-				if($this->settings[$css_setting]){
280
-					$compatibility = $this->settings[$css_setting]=='core' ? false : true;
281
-					$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
282
-					wp_register_style( 'ayecode-ui', $url, array(), $this->version );
283
-					wp_enqueue_style( 'ayecode-ui' );
279
+                if($this->settings[$css_setting]){
280
+                    $compatibility = $this->settings[$css_setting]=='core' ? false : true;
281
+                    $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
282
+                    wp_register_style( 'ayecode-ui', $url, array(), $this->version );
283
+                    wp_enqueue_style( 'ayecode-ui' );
284 284
 
285
-					// flatpickr
286
-					wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version );
285
+                    // flatpickr
286
+                    wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version );
287 287
 
288
-					// fix some wp-admin issues
289
-					if(is_admin()){
290
-						$custom_css = "
288
+                    // fix some wp-admin issues
289
+                    if(is_admin()){
290
+                        $custom_css = "
291 291
                 body{
292 292
                     background-color: #f1f1f1;
293 293
                     font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;
@@ -333,35 +333,35 @@  discard block
 block discarded – undo
333 333
 				}
334 334
                 ";
335 335
 
336
-						// @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
337
-						$custom_css .= "
336
+                        // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
337
+                        $custom_css .= "
338 338
 						.edit-post-sidebar input[type=color].components-text-control__input{
339 339
 						    padding: 0;
340 340
 						}
341 341
 					";
342
-						wp_add_inline_style( 'ayecode-ui', $custom_css );
343
-					}
342
+                        wp_add_inline_style( 'ayecode-ui', $custom_css );
343
+                    }
344 344
 
345
-					// custom changes
346
-					wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
345
+                    // custom changes
346
+                    wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
347 347
 
348
-				}
349
-			}
348
+                }
349
+            }
350 350
 
351 351
 
352
-		}
352
+        }
353 353
 
354
-		/**
355
-		 * Get inline script used if bootstrap enqueued
356
-		 *
357
-		 * If this remains small then its best to use this than to add another JS file.
358
-		 */
359
-		public function inline_script() {
360
-			// Flatpickr calendar locale
361
-			$flatpickr_locale = self::flatpickr_locale();
362
-
363
-			ob_start();
364
-			?>
354
+        /**
355
+         * Get inline script used if bootstrap enqueued
356
+         *
357
+         * If this remains small then its best to use this than to add another JS file.
358
+         */
359
+        public function inline_script() {
360
+            // Flatpickr calendar locale
361
+            $flatpickr_locale = self::flatpickr_locale();
362
+
363
+            ob_start();
364
+            ?>
365 365
 			<script>
366 366
 				/**
367 367
 				 * An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
@@ -1199,29 +1199,29 @@  discard block
 block discarded – undo
1199 1199
 				}
1200 1200
 			</script>
1201 1201
 			<?php
1202
-			$output = ob_get_clean();
1202
+            $output = ob_get_clean();
1203 1203
 
1204 1204
 
1205 1205
 
1206
-			/*
1206
+            /*
1207 1207
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1208 1208
 			 */
1209
-			return str_replace( array(
1210
-				'<script>',
1211
-				'</script>'
1212
-			), '', self::minify_js($output) );
1213
-		}
1209
+            return str_replace( array(
1210
+                '<script>',
1211
+                '</script>'
1212
+            ), '', self::minify_js($output) );
1213
+        }
1214 1214
 
1215 1215
 
1216
-		/**
1217
-		 * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1218
-		 *
1219
-		 * @TODO we may need this when other conflicts arrise.
1220
-		 * @return mixed
1221
-		 */
1222
-		public static function bs3_compat_js() {
1223
-			ob_start();
1224
-			?>
1216
+        /**
1217
+         * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1218
+         *
1219
+         * @TODO we may need this when other conflicts arrise.
1220
+         * @return mixed
1221
+         */
1222
+        public static function bs3_compat_js() {
1223
+            ob_start();
1224
+            ?>
1225 1225
 			<script>
1226 1226
 				<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?>
1227 1227
 				/* With Avada builder */
@@ -1229,20 +1229,20 @@  discard block
 block discarded – undo
1229 1229
 				<?php } ?>
1230 1230
 			</script>
1231 1231
 			<?php
1232
-			return str_replace( array(
1233
-				'<script>',
1234
-				'</script>'
1235
-			), '', ob_get_clean());
1236
-		}
1232
+            return str_replace( array(
1233
+                '<script>',
1234
+                '</script>'
1235
+            ), '', ob_get_clean());
1236
+        }
1237 1237
 
1238
-		/**
1239
-		 * Get inline script used if bootstrap file browser enqueued.
1240
-		 *
1241
-		 * If this remains small then its best to use this than to add another JS file.
1242
-		 */
1243
-		public function inline_script_file_browser(){
1244
-			ob_start();
1245
-			?>
1238
+        /**
1239
+         * Get inline script used if bootstrap file browser enqueued.
1240
+         *
1241
+         * If this remains small then its best to use this than to add another JS file.
1242
+         */
1243
+        public function inline_script_file_browser(){
1244
+            ob_start();
1245
+            ?>
1246 1246
 			<script>
1247 1247
 				// run on doc ready
1248 1248
 				jQuery(document).ready(function () {
@@ -1250,203 +1250,203 @@  discard block
 block discarded – undo
1250 1250
 				});
1251 1251
 			</script>
1252 1252
 			<?php
1253
-			$output = ob_get_clean();
1253
+            $output = ob_get_clean();
1254 1254
 
1255
-			/*
1255
+            /*
1256 1256
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1257 1257
 			 */
1258
-			return str_replace( array(
1259
-				'<script>',
1260
-				'</script>'
1261
-			), '', $output );
1262
-		}
1258
+            return str_replace( array(
1259
+                '<script>',
1260
+                '</script>'
1261
+            ), '', $output );
1262
+        }
1263 1263
 
1264
-		/**
1265
-		 * Adds the Font Awesome JS.
1266
-		 */
1267
-		public function enqueue_scripts() {
1264
+        /**
1265
+         * Adds the Font Awesome JS.
1266
+         */
1267
+        public function enqueue_scripts() {
1268 1268
 
1269
-			if( is_admin() && !$this->is_aui_screen()){
1270
-				// don't add wp-admin scripts if not requested to
1271
-			}else {
1269
+            if( is_admin() && !$this->is_aui_screen()){
1270
+                // don't add wp-admin scripts if not requested to
1271
+            }else {
1272 1272
 
1273
-				$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1273
+                $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1274 1274
 
1275
-				// select2
1276
-				wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1275
+                // select2
1276
+                wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1277 1277
 
1278
-				// flatpickr
1279
-				wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version );
1278
+                // flatpickr
1279
+                wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version );
1280 1280
 
1281
-				// flatpickr
1282
-				wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version );
1281
+                // flatpickr
1282
+                wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version );
1283 1283
 				
1284
-				// Bootstrap file browser
1285
-				wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1286
-				wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1287
-
1288
-				$load_inline = false;
1289
-
1290
-				if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1291
-					// Bootstrap bundle
1292
-					$url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1293
-					wp_register_script( 'bootstrap-js-bundle', $url, array(
1294
-						'select2',
1295
-						'jquery'
1296
-					), $this->version, $this->is_bs3_compat() );
1297
-					// if in admin then add to footer for compatibility.
1298
-					is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1299
-					$script = $this->inline_script();
1300
-					wp_add_inline_script( 'bootstrap-js-bundle', $script );
1301
-				} elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1302
-					$url = $this->url . 'assets/js/popper.min.js';
1303
-					wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version );
1304
-					wp_enqueue_script( 'bootstrap-js-popper' );
1305
-					$load_inline = true;
1306
-				} else {
1307
-					$load_inline = true;
1308
-				}
1284
+                // Bootstrap file browser
1285
+                wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1286
+                wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1287
+
1288
+                $load_inline = false;
1289
+
1290
+                if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1291
+                    // Bootstrap bundle
1292
+                    $url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1293
+                    wp_register_script( 'bootstrap-js-bundle', $url, array(
1294
+                        'select2',
1295
+                        'jquery'
1296
+                    ), $this->version, $this->is_bs3_compat() );
1297
+                    // if in admin then add to footer for compatibility.
1298
+                    is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1299
+                    $script = $this->inline_script();
1300
+                    wp_add_inline_script( 'bootstrap-js-bundle', $script );
1301
+                } elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1302
+                    $url = $this->url . 'assets/js/popper.min.js';
1303
+                    wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version );
1304
+                    wp_enqueue_script( 'bootstrap-js-popper' );
1305
+                    $load_inline = true;
1306
+                } else {
1307
+                    $load_inline = true;
1308
+                }
1309 1309
 
1310
-				// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1311
-				if ( $load_inline ) {
1312
-					wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1313
-					wp_enqueue_script( 'bootstrap-dummy' );
1314
-					$script = $this->inline_script();
1315
-					wp_add_inline_script( 'bootstrap-dummy', $script );
1316
-				}
1317
-			}
1310
+                // Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1311
+                if ( $load_inline ) {
1312
+                    wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1313
+                    wp_enqueue_script( 'bootstrap-dummy' );
1314
+                    $script = $this->inline_script();
1315
+                    wp_add_inline_script( 'bootstrap-dummy', $script );
1316
+                }
1317
+            }
1318 1318
 
1319
-		}
1319
+        }
1320 1320
 
1321
-		/**
1322
-		 * Enqueue flatpickr if called.
1323
-		 */
1324
-		public function enqueue_flatpickr(){
1325
-			wp_enqueue_style( 'flatpickr' );
1326
-			wp_enqueue_script( 'flatpickr' );
1327
-		}
1321
+        /**
1322
+         * Enqueue flatpickr if called.
1323
+         */
1324
+        public function enqueue_flatpickr(){
1325
+            wp_enqueue_style( 'flatpickr' );
1326
+            wp_enqueue_script( 'flatpickr' );
1327
+        }
1328 1328
 
1329
-		/**
1330
-		 * Enqueue iconpicker if called.
1331
-		 */
1332
-		public function enqueue_iconpicker(){
1333
-			wp_enqueue_style( 'iconpicker' );
1334
-			wp_enqueue_script( 'iconpicker' );
1335
-		}
1329
+        /**
1330
+         * Enqueue iconpicker if called.
1331
+         */
1332
+        public function enqueue_iconpicker(){
1333
+            wp_enqueue_style( 'iconpicker' );
1334
+            wp_enqueue_script( 'iconpicker' );
1335
+        }
1336 1336
 
1337
-		/**
1338
-		 * Get the url path to the current folder.
1339
-		 *
1340
-		 * @return string
1341
-		 */
1342
-		public function get_url() {
1337
+        /**
1338
+         * Get the url path to the current folder.
1339
+         *
1340
+         * @return string
1341
+         */
1342
+        public function get_url() {
1343 1343
 
1344
-			$url = '';
1345
-			// check if we are inside a plugin
1346
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1344
+            $url = '';
1345
+            // check if we are inside a plugin
1346
+            $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1347 1347
 
1348
-			// add check in-case user has changed wp-content dir name.
1349
-			$wp_content_folder_name = basename(WP_CONTENT_DIR);
1350
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1351
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
1348
+            // add check in-case user has changed wp-content dir name.
1349
+            $wp_content_folder_name = basename(WP_CONTENT_DIR);
1350
+            $dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1351
+            $url_parts = explode("/$wp_content_folder_name/",plugins_url());
1352 1352
 
1353
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1354
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1355
-			}
1353
+            if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1354
+                $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1355
+            }
1356 1356
 
1357
-			return $url;
1358
-		}
1357
+            return $url;
1358
+        }
1359 1359
 
1360
-		/**
1361
-		 * Register the database settings with WordPress.
1362
-		 */
1363
-		public function register_settings() {
1364
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1365
-		}
1360
+        /**
1361
+         * Register the database settings with WordPress.
1362
+         */
1363
+        public function register_settings() {
1364
+            register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1365
+        }
1366 1366
 
1367
-		/**
1368
-		 * Add the WordPress settings menu item.
1369
-		 * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1370
-		 */
1371
-		public function menu_item() {
1372
-			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1373
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1374
-				$this,
1375
-				'settings_page'
1376
-			) );
1377
-		}
1367
+        /**
1368
+         * Add the WordPress settings menu item.
1369
+         * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1370
+         */
1371
+        public function menu_item() {
1372
+            $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1373
+            call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1374
+                $this,
1375
+                'settings_page'
1376
+            ) );
1377
+        }
1378 1378
 
1379
-		/**
1380
-		 * Get a list of themes and their default JS settings.
1381
-		 *
1382
-		 * @return array
1383
-		 */
1384
-		public function theme_js_settings(){
1385
-			return array(
1386
-				'ayetheme' => 'popper',
1387
-				'listimia' => 'required',
1388
-				'listimia_backend' => 'core-popper',
1389
-				//'avada'    => 'required', // removed as we now add compatibility
1390
-			);
1391
-		}
1379
+        /**
1380
+         * Get a list of themes and their default JS settings.
1381
+         *
1382
+         * @return array
1383
+         */
1384
+        public function theme_js_settings(){
1385
+            return array(
1386
+                'ayetheme' => 'popper',
1387
+                'listimia' => 'required',
1388
+                'listimia_backend' => 'core-popper',
1389
+                //'avada'    => 'required', // removed as we now add compatibility
1390
+            );
1391
+        }
1392 1392
 
1393
-		/**
1394
-		 * Get the current Font Awesome output settings.
1395
-		 *
1396
-		 * @return array The array of settings.
1397
-		 */
1398
-		public function get_settings() {
1399
-
1400
-			$db_settings = get_option( 'ayecode-ui-settings' );
1401
-			$js_default = 'core-popper';
1402
-			$js_default_backend = $js_default;
1403
-
1404
-			// maybe set defaults (if no settings set)
1405
-			if(empty($db_settings)){
1406
-				$active_theme = strtolower( get_template() ); // active parent theme.
1407
-				$theme_js_settings = self::theme_js_settings();
1408
-				if(isset($theme_js_settings[$active_theme])){
1409
-					$js_default = $theme_js_settings[$active_theme];
1410
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1411
-				}
1412
-			}
1413
-
1414
-			$defaults = array(
1415
-				'css'       => 'compatibility', // core, compatibility
1416
-				'js'        => $js_default, // js to load, core-popper, popper
1417
-				'html_font_size'        => '16', // js to load, core-popper, popper
1418
-				'css_backend'       => 'compatibility', // core, compatibility
1419
-				'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1420
-				'disable_admin'     =>  '', // URL snippets to disable loading on admin
1421
-			);
1422
-
1423
-			$settings = wp_parse_args( $db_settings, $defaults );
1424
-
1425
-			/**
1426
-			 * Filter the Bootstrap settings.
1427
-			 *
1428
-			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1429
-			 */
1430
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1431
-		}
1393
+        /**
1394
+         * Get the current Font Awesome output settings.
1395
+         *
1396
+         * @return array The array of settings.
1397
+         */
1398
+        public function get_settings() {
1399
+
1400
+            $db_settings = get_option( 'ayecode-ui-settings' );
1401
+            $js_default = 'core-popper';
1402
+            $js_default_backend = $js_default;
1403
+
1404
+            // maybe set defaults (if no settings set)
1405
+            if(empty($db_settings)){
1406
+                $active_theme = strtolower( get_template() ); // active parent theme.
1407
+                $theme_js_settings = self::theme_js_settings();
1408
+                if(isset($theme_js_settings[$active_theme])){
1409
+                    $js_default = $theme_js_settings[$active_theme];
1410
+                    $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1411
+                }
1412
+            }
1413
+
1414
+            $defaults = array(
1415
+                'css'       => 'compatibility', // core, compatibility
1416
+                'js'        => $js_default, // js to load, core-popper, popper
1417
+                'html_font_size'        => '16', // js to load, core-popper, popper
1418
+                'css_backend'       => 'compatibility', // core, compatibility
1419
+                'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1420
+                'disable_admin'     =>  '', // URL snippets to disable loading on admin
1421
+            );
1422
+
1423
+            $settings = wp_parse_args( $db_settings, $defaults );
1424
+
1425
+            /**
1426
+             * Filter the Bootstrap settings.
1427
+             *
1428
+             * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1429
+             */
1430
+            return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1431
+        }
1432 1432
 
1433 1433
 
1434
-		/**
1435
-		 * The settings page html output.
1436
-		 */
1437
-		public function settings_page() {
1438
-			if ( ! current_user_can( 'manage_options' ) ) {
1439
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1440
-			}
1441
-			?>
1434
+        /**
1435
+         * The settings page html output.
1436
+         */
1437
+        public function settings_page() {
1438
+            if ( ! current_user_can( 'manage_options' ) ) {
1439
+                wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1440
+            }
1441
+            ?>
1442 1442
 			<div class="wrap">
1443 1443
 				<h1><?php echo $this->name; ?></h1>
1444 1444
 				<p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p>
1445 1445
 				<form method="post" action="options.php">
1446 1446
 					<?php
1447
-					settings_fields( 'ayecode-ui-settings' );
1448
-					do_settings_sections( 'ayecode-ui-settings' );
1449
-					?>
1447
+                    settings_fields( 'ayecode-ui-settings' );
1448
+                    do_settings_sections( 'ayecode-ui-settings' );
1449
+                    ?>
1450 1450
 
1451 1451
 					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
1452 1452
 					<table class="form-table wpbs-table-settings">
@@ -1526,60 +1526,60 @@  discard block
 block discarded – undo
1526 1526
 					</table>
1527 1527
 
1528 1528
 					<?php
1529
-					submit_button();
1530
-					?>
1529
+                    submit_button();
1530
+                    ?>
1531 1531
 				</form>
1532 1532
 
1533 1533
 				<div id="wpbs-version"><?php echo $this->version; ?></div>
1534 1534
 			</div>
1535 1535
 
1536 1536
 			<?php
1537
-		}
1537
+        }
1538 1538
 
1539
-		public function customizer_settings($wp_customize){
1540
-			$wp_customize->add_section('aui_settings', array(
1541
-				'title'    => __('AyeCode UI','aui'),
1542
-				'priority' => 120,
1543
-			));
1544
-
1545
-			//  =============================
1546
-			//  = Color Picker              =
1547
-			//  =============================
1548
-			$wp_customize->add_setting('aui_options[color_primary]', array(
1549
-				'default'           => AUI_PRIMARY_COLOR,
1550
-				'sanitize_callback' => 'sanitize_hex_color',
1551
-				'capability'        => 'edit_theme_options',
1552
-				'type'              => 'option',
1553
-				'transport'         => 'refresh',
1554
-			));
1555
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1556
-				'label'    => __('Primary Color','aui'),
1557
-				'section'  => 'aui_settings',
1558
-				'settings' => 'aui_options[color_primary]',
1559
-			)));
1560
-
1561
-			$wp_customize->add_setting('aui_options[color_secondary]', array(
1562
-				'default'           => '#6c757d',
1563
-				'sanitize_callback' => 'sanitize_hex_color',
1564
-				'capability'        => 'edit_theme_options',
1565
-				'type'              => 'option',
1566
-				'transport'         => 'refresh',
1567
-			));
1568
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1569
-				'label'    => __('Secondary Color','aui'),
1570
-				'section'  => 'aui_settings',
1571
-				'settings' => 'aui_options[color_secondary]',
1572
-			)));
1573
-		}
1539
+        public function customizer_settings($wp_customize){
1540
+            $wp_customize->add_section('aui_settings', array(
1541
+                'title'    => __('AyeCode UI','aui'),
1542
+                'priority' => 120,
1543
+            ));
1544
+
1545
+            //  =============================
1546
+            //  = Color Picker              =
1547
+            //  =============================
1548
+            $wp_customize->add_setting('aui_options[color_primary]', array(
1549
+                'default'           => AUI_PRIMARY_COLOR,
1550
+                'sanitize_callback' => 'sanitize_hex_color',
1551
+                'capability'        => 'edit_theme_options',
1552
+                'type'              => 'option',
1553
+                'transport'         => 'refresh',
1554
+            ));
1555
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1556
+                'label'    => __('Primary Color','aui'),
1557
+                'section'  => 'aui_settings',
1558
+                'settings' => 'aui_options[color_primary]',
1559
+            )));
1560
+
1561
+            $wp_customize->add_setting('aui_options[color_secondary]', array(
1562
+                'default'           => '#6c757d',
1563
+                'sanitize_callback' => 'sanitize_hex_color',
1564
+                'capability'        => 'edit_theme_options',
1565
+                'type'              => 'option',
1566
+                'transport'         => 'refresh',
1567
+            ));
1568
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1569
+                'label'    => __('Secondary Color','aui'),
1570
+                'section'  => 'aui_settings',
1571
+                'settings' => 'aui_options[color_secondary]',
1572
+            )));
1573
+        }
1574 1574
 
1575
-		/**
1576
-		 * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1577
-		 *
1578
-		 * @return mixed
1579
-		 */
1580
-		public static function bs3_compat_css() {
1581
-			ob_start();
1582
-			?>
1575
+        /**
1576
+         * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1577
+         *
1578
+         * @return mixed
1579
+         */
1580
+        public static function bs3_compat_css() {
1581
+            ob_start();
1582
+            ?>
1583 1583
 			<style>
1584 1584
 			/* Bootstrap 3 compatibility */
1585 1585
 			body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;}
@@ -1608,583 +1608,583 @@  discard block
 block discarded – undo
1608 1608
 			<?php } ?>
1609 1609
 			</style>
1610 1610
 			<?php
1611
-			return str_replace( array(
1612
-				'<style>',
1613
-				'</style>'
1614
-			), '', self::minify_css( ob_get_clean() ) );
1615
-		}
1611
+            return str_replace( array(
1612
+                '<style>',
1613
+                '</style>'
1614
+            ), '', self::minify_css( ob_get_clean() ) );
1615
+        }
1616 1616
 
1617 1617
 
1618
-		public static function custom_css($compatibility = true) {
1619
-			$settings = get_option('aui_options');
1618
+        public static function custom_css($compatibility = true) {
1619
+            $settings = get_option('aui_options');
1620 1620
 
1621
-			ob_start();
1621
+            ob_start();
1622 1622
 
1623
-			$primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1624
-			$secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1625
-				//AUI_PRIMARY_COLOR_ORIGINAL
1626
-			?>
1623
+            $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1624
+            $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1625
+                //AUI_PRIMARY_COLOR_ORIGINAL
1626
+            ?>
1627 1627
 			<style>
1628 1628
 				<?php
1629 1629
 
1630
-					// BS v3 compat
1631
-					if( self::is_bs3_compat() ){
1632
-					    echo self::bs3_compat_css();
1633
-					}
1630
+                    // BS v3 compat
1631
+                    if( self::is_bs3_compat() ){
1632
+                        echo self::bs3_compat_css();
1633
+                    }
1634 1634
 
1635
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1636
-						echo self::css_primary($primary_color,$compatibility);
1637
-					}
1635
+                    if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1636
+                        echo self::css_primary($primary_color,$compatibility);
1637
+                    }
1638 1638
 
1639
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1640
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1641
-					}
1639
+                    if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1640
+                        echo self::css_secondary($settings['color_secondary'],$compatibility);
1641
+                    }
1642 1642
 
1643
-					// Set admin bar z-index lower when modal is open.
1644
-					echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1643
+                    // Set admin bar z-index lower when modal is open.
1644
+                    echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1645 1645
 
1646
-					if(is_admin()){
1647
-						echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}';
1648
-					}
1646
+                    if(is_admin()){
1647
+                        echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}';
1648
+                    }
1649 1649
                 ?>
1650 1650
 			</style>
1651 1651
 			<?php
1652 1652
 
1653 1653
 
1654
-			/*
1654
+            /*
1655 1655
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1656 1656
 			 */
1657
-			return str_replace( array(
1658
-				'<style>',
1659
-				'</style>'
1660
-			), '', self::minify_css( ob_get_clean() ) );
1661
-		}
1657
+            return str_replace( array(
1658
+                '<style>',
1659
+                '</style>'
1660
+            ), '', self::minify_css( ob_get_clean() ) );
1661
+        }
1662 1662
 
1663
-		/**
1664
-		 * Check if we should add booststrap 3 compatibility changes.
1665
-		 *
1666
-		 * @return bool
1667
-		 */
1668
-		public static function is_bs3_compat(){
1669
-			return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1670
-		}
1663
+        /**
1664
+         * Check if we should add booststrap 3 compatibility changes.
1665
+         *
1666
+         * @return bool
1667
+         */
1668
+        public static function is_bs3_compat(){
1669
+            return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1670
+        }
1671 1671
 
1672
-		public static function css_primary($color_code,$compatibility){;
1673
-			$color_code = sanitize_hex_color($color_code);
1674
-			if(!$color_code){return '';}
1675
-			/**
1676
-			 * c = color, b = background color, o = border-color, f = fill
1677
-			 */
1678
-			$selectors = array(
1679
-				'a' => array('c'),
1680
-				'.btn-primary' => array('b','o'),
1681
-				'.btn-primary.disabled' => array('b','o'),
1682
-				'.btn-primary:disabled' => array('b','o'),
1683
-				'.btn-outline-primary' => array('c','o'),
1684
-				'.btn-outline-primary:hover' => array('b','o'),
1685
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1686
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1687
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1688
-				'.btn-link' => array('c'),
1689
-				'.dropdown-item.active' => array('b'),
1690
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1691
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1672
+        public static function css_primary($color_code,$compatibility){;
1673
+            $color_code = sanitize_hex_color($color_code);
1674
+            if(!$color_code){return '';}
1675
+            /**
1676
+             * c = color, b = background color, o = border-color, f = fill
1677
+             */
1678
+            $selectors = array(
1679
+                'a' => array('c'),
1680
+                '.btn-primary' => array('b','o'),
1681
+                '.btn-primary.disabled' => array('b','o'),
1682
+                '.btn-primary:disabled' => array('b','o'),
1683
+                '.btn-outline-primary' => array('c','o'),
1684
+                '.btn-outline-primary:hover' => array('b','o'),
1685
+                '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1686
+                '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1687
+                '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1688
+                '.btn-link' => array('c'),
1689
+                '.dropdown-item.active' => array('b'),
1690
+                '.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1691
+                '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1692 1692
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1693 1693
 //				'.custom-range::-moz-range-thumb' => array('b'),
1694 1694
 //				'.custom-range::-ms-thumb' => array('b'),
1695
-				'.nav-pills .nav-link.active' => array('b'),
1696
-				'.nav-pills .show>.nav-link' => array('b'),
1697
-				'.page-link' => array('c'),
1698
-				'.page-item.active .page-link' => array('b','o'),
1699
-				'.badge-primary' => array('b'),
1700
-				'.alert-primary' => array('b','o'),
1701
-				'.progress-bar' => array('b'),
1702
-				'.list-group-item.active' => array('b','o'),
1703
-				'.bg-primary' => array('b','f'),
1704
-				'.btn-link.btn-primary' => array('c'),
1705
-				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1706
-			);
1707
-
1708
-			$important_selectors = array(
1709
-				'.bg-primary' => array('b','f'),
1710
-				'.border-primary' => array('o'),
1711
-				'.text-primary' => array('c'),
1712
-			);
1713
-
1714
-			$color = array();
1715
-			$color_i = array();
1716
-			$background = array();
1717
-			$background_i = array();
1718
-			$border = array();
1719
-			$border_i = array();
1720
-			$fill = array();
1721
-			$fill_i = array();
1722
-
1723
-			$output = '';
1724
-
1725
-			// build rules into each type
1726
-			foreach($selectors as $selector => $types){
1727
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1728
-				$types = array_combine($types,$types);
1729
-				if(isset($types['c'])){$color[] = $selector;}
1730
-				if(isset($types['b'])){$background[] = $selector;}
1731
-				if(isset($types['o'])){$border[] = $selector;}
1732
-				if(isset($types['f'])){$fill[] = $selector;}
1733
-			}
1734
-
1735
-			// build rules into each type
1736
-			foreach($important_selectors as $selector => $types){
1737
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1738
-				$types = array_combine($types,$types);
1739
-				if(isset($types['c'])){$color_i[] = $selector;}
1740
-				if(isset($types['b'])){$background_i[] = $selector;}
1741
-				if(isset($types['o'])){$border_i[] = $selector;}
1742
-				if(isset($types['f'])){$fill_i[] = $selector;}
1743
-			}
1744
-
1745
-			// add any color rules
1746
-			if(!empty($color)){
1747
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1748
-			}
1749
-			if(!empty($color_i)){
1750
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1751
-			}
1752
-
1753
-			// add any background color rules
1754
-			if(!empty($background)){
1755
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1756
-			}
1757
-			if(!empty($background_i)){
1758
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1759
-			}
1760
-
1761
-			// add any border color rules
1762
-			if(!empty($border)){
1763
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1764
-			}
1765
-			if(!empty($border_i)){
1766
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1767
-			}
1768
-
1769
-			// add any fill color rules
1770
-			if(!empty($fill)){
1771
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1772
-			}
1773
-			if(!empty($fill_i)){
1774
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1775
-			}
1776
-
1777
-
1778
-			$prefix = $compatibility ? ".bsui " : "";
1779
-
1780
-			// darken
1781
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1782
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1783
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1784
-
1785
-			// lighten
1786
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1787
-
1788
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1789
-			$op_25 = $color_code."40"; // 25% opacity
1790
-
1791
-
1792
-			// button states
1793
-			$output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1794
-			$output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1795
-			$output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1796
-			$output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
1797
-
1798
-
1799
-			// dropdown's
1800
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1801
-
1802
-
1803
-			// input states
1804
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1805
-
1806
-			// page link
1807
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1808
-
1809
-			return $output;
1810
-		}
1695
+                '.nav-pills .nav-link.active' => array('b'),
1696
+                '.nav-pills .show>.nav-link' => array('b'),
1697
+                '.page-link' => array('c'),
1698
+                '.page-item.active .page-link' => array('b','o'),
1699
+                '.badge-primary' => array('b'),
1700
+                '.alert-primary' => array('b','o'),
1701
+                '.progress-bar' => array('b'),
1702
+                '.list-group-item.active' => array('b','o'),
1703
+                '.bg-primary' => array('b','f'),
1704
+                '.btn-link.btn-primary' => array('c'),
1705
+                '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1706
+            );
1707
+
1708
+            $important_selectors = array(
1709
+                '.bg-primary' => array('b','f'),
1710
+                '.border-primary' => array('o'),
1711
+                '.text-primary' => array('c'),
1712
+            );
1713
+
1714
+            $color = array();
1715
+            $color_i = array();
1716
+            $background = array();
1717
+            $background_i = array();
1718
+            $border = array();
1719
+            $border_i = array();
1720
+            $fill = array();
1721
+            $fill_i = array();
1722
+
1723
+            $output = '';
1724
+
1725
+            // build rules into each type
1726
+            foreach($selectors as $selector => $types){
1727
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1728
+                $types = array_combine($types,$types);
1729
+                if(isset($types['c'])){$color[] = $selector;}
1730
+                if(isset($types['b'])){$background[] = $selector;}
1731
+                if(isset($types['o'])){$border[] = $selector;}
1732
+                if(isset($types['f'])){$fill[] = $selector;}
1733
+            }
1811 1734
 
1812
-		public static function css_secondary($color_code,$compatibility){;
1813
-			$color_code = sanitize_hex_color($color_code);
1814
-			if(!$color_code){return '';}
1815
-			/**
1816
-			 * c = color, b = background color, o = border-color, f = fill
1817
-			 */
1818
-			$selectors = array(
1819
-				'.btn-secondary' => array('b','o'),
1820
-				'.btn-secondary.disabled' => array('b','o'),
1821
-				'.btn-secondary:disabled' => array('b','o'),
1822
-				'.btn-outline-secondary' => array('c','o'),
1823
-				'.btn-outline-secondary:hover' => array('b','o'),
1824
-				'.btn-outline-secondary.disabled' => array('c'),
1825
-				'.btn-outline-secondary:disabled' => array('c'),
1826
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1827
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1828
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1829
-				'.badge-secondary' => array('b'),
1830
-				'.alert-secondary' => array('b','o'),
1831
-				'.btn-link.btn-secondary' => array('c'),
1832
-			);
1833
-
1834
-			$important_selectors = array(
1835
-				'.bg-secondary' => array('b','f'),
1836
-				'.border-secondary' => array('o'),
1837
-				'.text-secondary' => array('c'),
1838
-			);
1839
-
1840
-			$color = array();
1841
-			$color_i = array();
1842
-			$background = array();
1843
-			$background_i = array();
1844
-			$border = array();
1845
-			$border_i = array();
1846
-			$fill = array();
1847
-			$fill_i = array();
1848
-
1849
-			$output = '';
1850
-
1851
-			// build rules into each type
1852
-			foreach($selectors as $selector => $types){
1853
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1854
-				$types = array_combine($types,$types);
1855
-				if(isset($types['c'])){$color[] = $selector;}
1856
-				if(isset($types['b'])){$background[] = $selector;}
1857
-				if(isset($types['o'])){$border[] = $selector;}
1858
-				if(isset($types['f'])){$fill[] = $selector;}
1859
-			}
1860
-
1861
-			// build rules into each type
1862
-			foreach($important_selectors as $selector => $types){
1863
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1864
-				$types = array_combine($types,$types);
1865
-				if(isset($types['c'])){$color_i[] = $selector;}
1866
-				if(isset($types['b'])){$background_i[] = $selector;}
1867
-				if(isset($types['o'])){$border_i[] = $selector;}
1868
-				if(isset($types['f'])){$fill_i[] = $selector;}
1869
-			}
1870
-
1871
-			// add any color rules
1872
-			if(!empty($color)){
1873
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1874
-			}
1875
-			if(!empty($color_i)){
1876
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1877
-			}
1878
-
1879
-			// add any background color rules
1880
-			if(!empty($background)){
1881
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1882
-			}
1883
-			if(!empty($background_i)){
1884
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1885
-			}
1886
-
1887
-			// add any border color rules
1888
-			if(!empty($border)){
1889
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1890
-			}
1891
-			if(!empty($border_i)){
1892
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1893
-			}
1894
-
1895
-			// add any fill color rules
1896
-			if(!empty($fill)){
1897
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1898
-			}
1899
-			if(!empty($fill_i)){
1900
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1901
-			}
1902
-
1903
-
1904
-			$prefix = $compatibility ? ".bsui " : "";
1905
-
1906
-			// darken
1907
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1908
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1909
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1910
-
1911
-			// lighten
1912
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1913
-
1914
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1915
-			$op_25 = $color_code."40"; // 25% opacity
1916
-
1917
-
1918
-			// button states
1919
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1920
-			$output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1921
-			$output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1922
-			$output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
1923
-
1924
-
1925
-			return $output;
1926
-		}
1735
+            // build rules into each type
1736
+            foreach($important_selectors as $selector => $types){
1737
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1738
+                $types = array_combine($types,$types);
1739
+                if(isset($types['c'])){$color_i[] = $selector;}
1740
+                if(isset($types['b'])){$background_i[] = $selector;}
1741
+                if(isset($types['o'])){$border_i[] = $selector;}
1742
+                if(isset($types['f'])){$fill_i[] = $selector;}
1743
+            }
1927 1744
 
1928
-		/**
1929
-		 * Increases or decreases the brightness of a color by a percentage of the current brightness.
1930
-		 *
1931
-		 * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1932
-		 * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1933
-		 *
1934
-		 * @return  string
1935
-		 */
1936
-		public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1937
-			$hexCode = ltrim($hexCode, '#');
1745
+            // add any color rules
1746
+            if(!empty($color)){
1747
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1748
+            }
1749
+            if(!empty($color_i)){
1750
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1751
+            }
1938 1752
 
1939
-			if (strlen($hexCode) == 3) {
1940
-				$hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1941
-			}
1753
+            // add any background color rules
1754
+            if(!empty($background)){
1755
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1756
+            }
1757
+            if(!empty($background_i)){
1758
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1759
+            }
1942 1760
 
1943
-			$hexCode = array_map('hexdec', str_split($hexCode, 2));
1761
+            // add any border color rules
1762
+            if(!empty($border)){
1763
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1764
+            }
1765
+            if(!empty($border_i)){
1766
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1767
+            }
1944 1768
 
1945
-			foreach ($hexCode as & $color) {
1946
-				$adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1947
-				$adjustAmount = ceil($adjustableLimit * $adjustPercent);
1769
+            // add any fill color rules
1770
+            if(!empty($fill)){
1771
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1772
+            }
1773
+            if(!empty($fill_i)){
1774
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1775
+            }
1948 1776
 
1949
-				$color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1950
-			}
1951 1777
 
1952
-			return '#' . implode($hexCode);
1953
-		}
1778
+            $prefix = $compatibility ? ".bsui " : "";
1954 1779
 
1955
-		/**
1956
-		 * Check if we should display examples.
1957
-		 */
1958
-		public function maybe_show_examples(){
1959
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1960
-				echo "<head>";
1961
-				wp_head();
1962
-				echo "</head>";
1963
-				echo "<body>";
1964
-				echo $this->get_examples();
1965
-				echo "</body>";
1966
-				exit;
1967
-			}
1968
-		}
1780
+            // darken
1781
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1782
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1783
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1969 1784
 
1970
-		/**
1971
-		 * Get developer examples.
1972
-		 *
1973
-		 * @return string
1974
-		 */
1975
-		public function get_examples(){
1976
-			$output = '';
1977
-
1978
-
1979
-			// open form
1980
-			$output .= "<form class='p-5 m-5 border rounded'>";
1981
-
1982
-			// input example
1983
-			$output .= aui()->input(array(
1984
-				'type'  =>  'text',
1985
-				'id'    =>  'text-example',
1986
-				'name'    =>  'text-example',
1987
-				'placeholder'   => 'text placeholder',
1988
-				'title'   => 'Text input example',
1989
-				'value' =>  '',
1990
-				'required'  => false,
1991
-				'help_text' => 'help text',
1992
-				'label' => 'Text input example label'
1993
-			));
1994
-
1995
-			// input example
1996
-			$output .= aui()->input(array(
1997
-				'type'  =>  'url',
1998
-				'id'    =>  'text-example2',
1999
-				'name'    =>  'text-example',
2000
-				'placeholder'   => 'url placeholder',
2001
-				'title'   => 'Text input example',
2002
-				'value' =>  '',
2003
-				'required'  => false,
2004
-				'help_text' => 'help text',
2005
-				'label' => 'Text input example label'
2006
-			));
2007
-
2008
-			// checkbox example
2009
-			$output .= aui()->input(array(
2010
-				'type'  =>  'checkbox',
2011
-				'id'    =>  'checkbox-example',
2012
-				'name'    =>  'checkbox-example',
2013
-				'placeholder'   => 'checkbox-example',
2014
-				'title'   => 'Checkbox example',
2015
-				'value' =>  '1',
2016
-				'checked'   => true,
2017
-				'required'  => false,
2018
-				'help_text' => 'help text',
2019
-				'label' => 'Checkbox checked'
2020
-			));
2021
-
2022
-			// checkbox example
2023
-			$output .= aui()->input(array(
2024
-				'type'  =>  'checkbox',
2025
-				'id'    =>  'checkbox-example2',
2026
-				'name'    =>  'checkbox-example2',
2027
-				'placeholder'   => 'checkbox-example',
2028
-				'title'   => 'Checkbox example',
2029
-				'value' =>  '1',
2030
-				'checked'   => false,
2031
-				'required'  => false,
2032
-				'help_text' => 'help text',
2033
-				'label' => 'Checkbox un-checked'
2034
-			));
2035
-
2036
-			// switch example
2037
-			$output .= aui()->input(array(
2038
-				'type'  =>  'checkbox',
2039
-				'id'    =>  'switch-example',
2040
-				'name'    =>  'switch-example',
2041
-				'placeholder'   => 'checkbox-example',
2042
-				'title'   => 'Switch example',
2043
-				'value' =>  '1',
2044
-				'checked'   => true,
2045
-				'switch'    => true,
2046
-				'required'  => false,
2047
-				'help_text' => 'help text',
2048
-				'label' => 'Switch on'
2049
-			));
2050
-
2051
-			// switch example
2052
-			$output .= aui()->input(array(
2053
-				'type'  =>  'checkbox',
2054
-				'id'    =>  'switch-example2',
2055
-				'name'    =>  'switch-example2',
2056
-				'placeholder'   => 'checkbox-example',
2057
-				'title'   => 'Switch example',
2058
-				'value' =>  '1',
2059
-				'checked'   => false,
2060
-				'switch'    => true,
2061
-				'required'  => false,
2062
-				'help_text' => 'help text',
2063
-				'label' => 'Switch off'
2064
-			));
2065
-
2066
-			// close form
2067
-			$output .= "</form>";
2068
-
2069
-			return $output;
2070
-		}
1785
+            // lighten
1786
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
2071 1787
 
2072
-		/**
2073
-		 * Calendar params.
2074
-		 *
2075
-		 * @since 0.1.44
2076
-		 *
2077
-		 * @return array Calendar params.
2078
-		 */
2079
-		public static function calendar_params() {
2080
-			$params = array(
2081
-				'month_long_1' => __( 'January', 'aui' ),
2082
-				'month_long_2' => __( 'February', 'aui' ),
2083
-				'month_long_3' => __( 'March', 'aui' ),
2084
-				'month_long_4' => __( 'April', 'aui' ),
2085
-				'month_long_5' => __( 'May', 'aui' ),
2086
-				'month_long_6' => __( 'June', 'aui' ),
2087
-				'month_long_7' => __( 'July', 'aui' ),
2088
-				'month_long_8' => __( 'August', 'aui' ),
2089
-				'month_long_9' => __( 'September', 'aui' ),
2090
-				'month_long_10' => __( 'October', 'aui' ),
2091
-				'month_long_11' => __( 'November', 'aui' ),
2092
-				'month_long_12' => __( 'December', 'aui' ),
2093
-				'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
2094
-				'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
2095
-				'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
2096
-				'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
2097
-				'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
2098
-				'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
2099
-				'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
2100
-				'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
2101
-				'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
2102
-				'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
2103
-				'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
2104
-				'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
2105
-				'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
2106
-				'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
2107
-				'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
2108
-				'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
2109
-				'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
2110
-				'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
2111
-				'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
2112
-				'day_s2_1' => __( 'Su', 'aui' ),
2113
-				'day_s2_2' => __( 'Mo', 'aui' ),
2114
-				'day_s2_3' => __( 'Tu', 'aui' ),
2115
-				'day_s2_4' => __( 'We', 'aui' ),
2116
-				'day_s2_5' => __( 'Th', 'aui' ),
2117
-				'day_s2_6' => __( 'Fr', 'aui' ),
2118
-				'day_s2_7' => __( 'Sa', 'aui' ),
2119
-				'day_s3_1' => __( 'Sun', 'aui' ),
2120
-				'day_s3_2' => __( 'Mon', 'aui' ),
2121
-				'day_s3_3' => __( 'Tue', 'aui' ),
2122
-				'day_s3_4' => __( 'Wed', 'aui' ),
2123
-				'day_s3_5' => __( 'Thu', 'aui' ),
2124
-				'day_s3_6' => __( 'Fri', 'aui' ),
2125
-				'day_s3_7' => __( 'Sat', 'aui' ),
2126
-				'day_s5_1' => __( 'Sunday', 'aui' ),
2127
-				'day_s5_2' => __( 'Monday', 'aui' ),
2128
-				'day_s5_3' => __( 'Tuesday', 'aui' ),
2129
-				'day_s5_4' => __( 'Wednesday', 'aui' ),
2130
-				'day_s5_5' => __( 'Thursday', 'aui' ),
2131
-				'day_s5_6' => __( 'Friday', 'aui' ),
2132
-				'day_s5_7' => __( 'Saturday', 'aui' ),
2133
-				'am_lower' => __( 'am', 'aui' ),
2134
-				'pm_lower' => __( 'pm', 'aui' ),
2135
-				'am_upper' => __( 'AM', 'aui' ),
2136
-				'pm_upper' => __( 'PM', 'aui' ),
2137
-				'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
2138
-				'time_24hr' => false,
2139
-				'year' => __( 'Year', 'aui' ),
2140
-				'hour' => __( 'Hour', 'aui' ),
2141
-				'minute' => __( 'Minute', 'aui' ),
2142
-				'weekAbbreviation' => __( 'Wk', 'aui' ),
2143
-				'rangeSeparator' => __( ' to ', 'aui' ),
2144
-				'scrollTitle' => __( 'Scroll to increment', 'aui' ),
2145
-				'toggleTitle' => __( 'Click to toggle', 'aui' )
2146
-			);
2147
-
2148
-			return apply_filters( 'ayecode_ui_calendar_params', $params );
2149
-		}
1788
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1789
+            $op_25 = $color_code."40"; // 25% opacity
2150 1790
 
2151
-		/**
2152
-		 * Flatpickr calendar localize.
2153
-		 *
2154
-		 * @since 0.1.44
2155
-		 *
2156
-		 * @return string Calendar locale.
2157
-		 */
2158
-		public static function flatpickr_locale() {
2159
-			$params = self::calendar_params();
2160
-
2161
-			if ( is_string( $params ) ) {
2162
-				$params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
2163
-			} else {
2164
-				foreach ( (array) $params as $key => $value ) {
2165
-					if ( ! is_scalar( $value ) ) {
2166
-						continue;
2167
-					}
2168 1791
 
2169
-					$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2170
-				}
2171
-			}
1792
+            // button states
1793
+            $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1794
+            $output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1795
+            $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1796
+            $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
1797
+
1798
+
1799
+            // dropdown's
1800
+            $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1801
+
1802
+
1803
+            // input states
1804
+            $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1805
+
1806
+            // page link
1807
+            $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1808
+
1809
+            return $output;
1810
+        }
1811
+
1812
+        public static function css_secondary($color_code,$compatibility){;
1813
+            $color_code = sanitize_hex_color($color_code);
1814
+            if(!$color_code){return '';}
1815
+            /**
1816
+             * c = color, b = background color, o = border-color, f = fill
1817
+             */
1818
+            $selectors = array(
1819
+                '.btn-secondary' => array('b','o'),
1820
+                '.btn-secondary.disabled' => array('b','o'),
1821
+                '.btn-secondary:disabled' => array('b','o'),
1822
+                '.btn-outline-secondary' => array('c','o'),
1823
+                '.btn-outline-secondary:hover' => array('b','o'),
1824
+                '.btn-outline-secondary.disabled' => array('c'),
1825
+                '.btn-outline-secondary:disabled' => array('c'),
1826
+                '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1827
+                '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1828
+                '.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1829
+                '.badge-secondary' => array('b'),
1830
+                '.alert-secondary' => array('b','o'),
1831
+                '.btn-link.btn-secondary' => array('c'),
1832
+            );
1833
+
1834
+            $important_selectors = array(
1835
+                '.bg-secondary' => array('b','f'),
1836
+                '.border-secondary' => array('o'),
1837
+                '.text-secondary' => array('c'),
1838
+            );
1839
+
1840
+            $color = array();
1841
+            $color_i = array();
1842
+            $background = array();
1843
+            $background_i = array();
1844
+            $border = array();
1845
+            $border_i = array();
1846
+            $fill = array();
1847
+            $fill_i = array();
1848
+
1849
+            $output = '';
1850
+
1851
+            // build rules into each type
1852
+            foreach($selectors as $selector => $types){
1853
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1854
+                $types = array_combine($types,$types);
1855
+                if(isset($types['c'])){$color[] = $selector;}
1856
+                if(isset($types['b'])){$background[] = $selector;}
1857
+                if(isset($types['o'])){$border[] = $selector;}
1858
+                if(isset($types['f'])){$fill[] = $selector;}
1859
+            }
1860
+
1861
+            // build rules into each type
1862
+            foreach($important_selectors as $selector => $types){
1863
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1864
+                $types = array_combine($types,$types);
1865
+                if(isset($types['c'])){$color_i[] = $selector;}
1866
+                if(isset($types['b'])){$background_i[] = $selector;}
1867
+                if(isset($types['o'])){$border_i[] = $selector;}
1868
+                if(isset($types['f'])){$fill_i[] = $selector;}
1869
+            }
1870
+
1871
+            // add any color rules
1872
+            if(!empty($color)){
1873
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1874
+            }
1875
+            if(!empty($color_i)){
1876
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1877
+            }
1878
+
1879
+            // add any background color rules
1880
+            if(!empty($background)){
1881
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1882
+            }
1883
+            if(!empty($background_i)){
1884
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1885
+            }
1886
+
1887
+            // add any border color rules
1888
+            if(!empty($border)){
1889
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1890
+            }
1891
+            if(!empty($border_i)){
1892
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1893
+            }
1894
+
1895
+            // add any fill color rules
1896
+            if(!empty($fill)){
1897
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1898
+            }
1899
+            if(!empty($fill_i)){
1900
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1901
+            }
1902
+
1903
+
1904
+            $prefix = $compatibility ? ".bsui " : "";
1905
+
1906
+            // darken
1907
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1908
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1909
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1910
+
1911
+            // lighten
1912
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1913
+
1914
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1915
+            $op_25 = $color_code."40"; // 25% opacity
2172 1916
 
2173
-			$day_s3 = array();
2174
-			$day_s5 = array();
2175 1917
 
2176
-			for ( $i = 1; $i <= 7; $i ++ ) {
2177
-				$day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
2178
-				$day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
2179
-			}
1918
+            // button states
1919
+            $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1920
+            $output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1921
+            $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10.";    border-color: ".$darker_125.";} ";
1922
+            $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} ";
2180 1923
 
2181
-			$month_s = array();
2182
-			$month_long = array();
2183 1924
 
2184
-			for ( $i = 1; $i <= 12; $i ++ ) {
2185
-				$month_s[] = addslashes( $params[ 'month_s_' . $i ] );
2186
-				$month_long[] = addslashes( $params[ 'month_long_' . $i ] );
2187
-			}
1925
+            return $output;
1926
+        }
1927
+
1928
+        /**
1929
+         * Increases or decreases the brightness of a color by a percentage of the current brightness.
1930
+         *
1931
+         * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1932
+         * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1933
+         *
1934
+         * @return  string
1935
+         */
1936
+        public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1937
+            $hexCode = ltrim($hexCode, '#');
1938
+
1939
+            if (strlen($hexCode) == 3) {
1940
+                $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1941
+            }
1942
+
1943
+            $hexCode = array_map('hexdec', str_split($hexCode, 2));
1944
+
1945
+            foreach ($hexCode as & $color) {
1946
+                $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1947
+                $adjustAmount = ceil($adjustableLimit * $adjustPercent);
1948
+
1949
+                $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1950
+            }
1951
+
1952
+            return '#' . implode($hexCode);
1953
+        }
1954
+
1955
+        /**
1956
+         * Check if we should display examples.
1957
+         */
1958
+        public function maybe_show_examples(){
1959
+            if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1960
+                echo "<head>";
1961
+                wp_head();
1962
+                echo "</head>";
1963
+                echo "<body>";
1964
+                echo $this->get_examples();
1965
+                echo "</body>";
1966
+                exit;
1967
+            }
1968
+        }
1969
+
1970
+        /**
1971
+         * Get developer examples.
1972
+         *
1973
+         * @return string
1974
+         */
1975
+        public function get_examples(){
1976
+            $output = '';
1977
+
1978
+
1979
+            // open form
1980
+            $output .= "<form class='p-5 m-5 border rounded'>";
1981
+
1982
+            // input example
1983
+            $output .= aui()->input(array(
1984
+                'type'  =>  'text',
1985
+                'id'    =>  'text-example',
1986
+                'name'    =>  'text-example',
1987
+                'placeholder'   => 'text placeholder',
1988
+                'title'   => 'Text input example',
1989
+                'value' =>  '',
1990
+                'required'  => false,
1991
+                'help_text' => 'help text',
1992
+                'label' => 'Text input example label'
1993
+            ));
1994
+
1995
+            // input example
1996
+            $output .= aui()->input(array(
1997
+                'type'  =>  'url',
1998
+                'id'    =>  'text-example2',
1999
+                'name'    =>  'text-example',
2000
+                'placeholder'   => 'url placeholder',
2001
+                'title'   => 'Text input example',
2002
+                'value' =>  '',
2003
+                'required'  => false,
2004
+                'help_text' => 'help text',
2005
+                'label' => 'Text input example label'
2006
+            ));
2007
+
2008
+            // checkbox example
2009
+            $output .= aui()->input(array(
2010
+                'type'  =>  'checkbox',
2011
+                'id'    =>  'checkbox-example',
2012
+                'name'    =>  'checkbox-example',
2013
+                'placeholder'   => 'checkbox-example',
2014
+                'title'   => 'Checkbox example',
2015
+                'value' =>  '1',
2016
+                'checked'   => true,
2017
+                'required'  => false,
2018
+                'help_text' => 'help text',
2019
+                'label' => 'Checkbox checked'
2020
+            ));
2021
+
2022
+            // checkbox example
2023
+            $output .= aui()->input(array(
2024
+                'type'  =>  'checkbox',
2025
+                'id'    =>  'checkbox-example2',
2026
+                'name'    =>  'checkbox-example2',
2027
+                'placeholder'   => 'checkbox-example',
2028
+                'title'   => 'Checkbox example',
2029
+                'value' =>  '1',
2030
+                'checked'   => false,
2031
+                'required'  => false,
2032
+                'help_text' => 'help text',
2033
+                'label' => 'Checkbox un-checked'
2034
+            ));
2035
+
2036
+            // switch example
2037
+            $output .= aui()->input(array(
2038
+                'type'  =>  'checkbox',
2039
+                'id'    =>  'switch-example',
2040
+                'name'    =>  'switch-example',
2041
+                'placeholder'   => 'checkbox-example',
2042
+                'title'   => 'Switch example',
2043
+                'value' =>  '1',
2044
+                'checked'   => true,
2045
+                'switch'    => true,
2046
+                'required'  => false,
2047
+                'help_text' => 'help text',
2048
+                'label' => 'Switch on'
2049
+            ));
2050
+
2051
+            // switch example
2052
+            $output .= aui()->input(array(
2053
+                'type'  =>  'checkbox',
2054
+                'id'    =>  'switch-example2',
2055
+                'name'    =>  'switch-example2',
2056
+                'placeholder'   => 'checkbox-example',
2057
+                'title'   => 'Switch example',
2058
+                'value' =>  '1',
2059
+                'checked'   => false,
2060
+                'switch'    => true,
2061
+                'required'  => false,
2062
+                'help_text' => 'help text',
2063
+                'label' => 'Switch off'
2064
+            ));
2065
+
2066
+            // close form
2067
+            $output .= "</form>";
2068
+
2069
+            return $output;
2070
+        }
2071
+
2072
+        /**
2073
+         * Calendar params.
2074
+         *
2075
+         * @since 0.1.44
2076
+         *
2077
+         * @return array Calendar params.
2078
+         */
2079
+        public static function calendar_params() {
2080
+            $params = array(
2081
+                'month_long_1' => __( 'January', 'aui' ),
2082
+                'month_long_2' => __( 'February', 'aui' ),
2083
+                'month_long_3' => __( 'March', 'aui' ),
2084
+                'month_long_4' => __( 'April', 'aui' ),
2085
+                'month_long_5' => __( 'May', 'aui' ),
2086
+                'month_long_6' => __( 'June', 'aui' ),
2087
+                'month_long_7' => __( 'July', 'aui' ),
2088
+                'month_long_8' => __( 'August', 'aui' ),
2089
+                'month_long_9' => __( 'September', 'aui' ),
2090
+                'month_long_10' => __( 'October', 'aui' ),
2091
+                'month_long_11' => __( 'November', 'aui' ),
2092
+                'month_long_12' => __( 'December', 'aui' ),
2093
+                'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
2094
+                'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
2095
+                'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
2096
+                'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
2097
+                'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
2098
+                'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
2099
+                'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
2100
+                'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
2101
+                'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
2102
+                'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
2103
+                'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
2104
+                'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
2105
+                'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
2106
+                'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
2107
+                'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
2108
+                'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
2109
+                'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
2110
+                'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
2111
+                'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
2112
+                'day_s2_1' => __( 'Su', 'aui' ),
2113
+                'day_s2_2' => __( 'Mo', 'aui' ),
2114
+                'day_s2_3' => __( 'Tu', 'aui' ),
2115
+                'day_s2_4' => __( 'We', 'aui' ),
2116
+                'day_s2_5' => __( 'Th', 'aui' ),
2117
+                'day_s2_6' => __( 'Fr', 'aui' ),
2118
+                'day_s2_7' => __( 'Sa', 'aui' ),
2119
+                'day_s3_1' => __( 'Sun', 'aui' ),
2120
+                'day_s3_2' => __( 'Mon', 'aui' ),
2121
+                'day_s3_3' => __( 'Tue', 'aui' ),
2122
+                'day_s3_4' => __( 'Wed', 'aui' ),
2123
+                'day_s3_5' => __( 'Thu', 'aui' ),
2124
+                'day_s3_6' => __( 'Fri', 'aui' ),
2125
+                'day_s3_7' => __( 'Sat', 'aui' ),
2126
+                'day_s5_1' => __( 'Sunday', 'aui' ),
2127
+                'day_s5_2' => __( 'Monday', 'aui' ),
2128
+                'day_s5_3' => __( 'Tuesday', 'aui' ),
2129
+                'day_s5_4' => __( 'Wednesday', 'aui' ),
2130
+                'day_s5_5' => __( 'Thursday', 'aui' ),
2131
+                'day_s5_6' => __( 'Friday', 'aui' ),
2132
+                'day_s5_7' => __( 'Saturday', 'aui' ),
2133
+                'am_lower' => __( 'am', 'aui' ),
2134
+                'pm_lower' => __( 'pm', 'aui' ),
2135
+                'am_upper' => __( 'AM', 'aui' ),
2136
+                'pm_upper' => __( 'PM', 'aui' ),
2137
+                'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
2138
+                'time_24hr' => false,
2139
+                'year' => __( 'Year', 'aui' ),
2140
+                'hour' => __( 'Hour', 'aui' ),
2141
+                'minute' => __( 'Minute', 'aui' ),
2142
+                'weekAbbreviation' => __( 'Wk', 'aui' ),
2143
+                'rangeSeparator' => __( ' to ', 'aui' ),
2144
+                'scrollTitle' => __( 'Scroll to increment', 'aui' ),
2145
+                'toggleTitle' => __( 'Click to toggle', 'aui' )
2146
+            );
2147
+
2148
+            return apply_filters( 'ayecode_ui_calendar_params', $params );
2149
+        }
2150
+
2151
+        /**
2152
+         * Flatpickr calendar localize.
2153
+         *
2154
+         * @since 0.1.44
2155
+         *
2156
+         * @return string Calendar locale.
2157
+         */
2158
+        public static function flatpickr_locale() {
2159
+            $params = self::calendar_params();
2160
+
2161
+            if ( is_string( $params ) ) {
2162
+                $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
2163
+            } else {
2164
+                foreach ( (array) $params as $key => $value ) {
2165
+                    if ( ! is_scalar( $value ) ) {
2166
+                        continue;
2167
+                    }
2168
+
2169
+                    $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2170
+                }
2171
+            }
2172
+
2173
+            $day_s3 = array();
2174
+            $day_s5 = array();
2175
+
2176
+            for ( $i = 1; $i <= 7; $i ++ ) {
2177
+                $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
2178
+                $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
2179
+            }
2180
+
2181
+            $month_s = array();
2182
+            $month_long = array();
2183
+
2184
+            for ( $i = 1; $i <= 12; $i ++ ) {
2185
+                $month_s[] = addslashes( $params[ 'month_s_' . $i ] );
2186
+                $month_long[] = addslashes( $params[ 'month_long_' . $i ] );
2187
+            }
2188 2188
 
2189 2189
 ob_start();
2190 2190
 if ( 0 ) { ?><script><?php } ?>
@@ -2226,189 +2226,189 @@  discard block
 block discarded – undo
2226 2226
 }
2227 2227
 <?php if ( 0 ) { ?></script><?php } ?>
2228 2228
 <?php
2229
-			$locale = ob_get_clean();
2229
+            $locale = ob_get_clean();
2230 2230
 
2231
-			return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2232
-		}
2231
+            return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2232
+        }
2233 2233
 
2234
-		/**
2235
-		 * Select2 JS params.
2236
-		 *
2237
-		 * @since 0.1.44
2238
-		 *
2239
-		 * @return array Select2 JS params.
2240
-		 */
2241
-		public static function select2_params() {
2242
-			$params = array(
2243
-				'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2244
-				'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2245
-				'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2246
-				'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2247
-				'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2248
-				'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2249
-				'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2250
-				'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2251
-				'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2252
-				'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2253
-				'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2254
-			);
2255
-
2256
-			return apply_filters( 'ayecode_ui_select2_params', $params );
2257
-		}
2234
+        /**
2235
+         * Select2 JS params.
2236
+         *
2237
+         * @since 0.1.44
2238
+         *
2239
+         * @return array Select2 JS params.
2240
+         */
2241
+        public static function select2_params() {
2242
+            $params = array(
2243
+                'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2244
+                'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2245
+                'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2246
+                'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2247
+                'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2248
+                'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2249
+                'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2250
+                'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2251
+                'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2252
+                'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2253
+                'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2254
+            );
2255
+
2256
+            return apply_filters( 'ayecode_ui_select2_params', $params );
2257
+        }
2258 2258
 
2259
-		/**
2260
-		 * Select2 JS localize.
2261
-		 *
2262
-		 * @since 0.1.44
2263
-		 *
2264
-		 * @return string Select2 JS locale.
2265
-		 */
2266
-		public static function select2_locale() {
2267
-			$params = self::select2_params();
2268
-
2269
-			foreach ( (array) $params as $key => $value ) {
2270
-				if ( ! is_scalar( $value ) ) {
2271
-					continue;
2272
-				}
2259
+        /**
2260
+         * Select2 JS localize.
2261
+         *
2262
+         * @since 0.1.44
2263
+         *
2264
+         * @return string Select2 JS locale.
2265
+         */
2266
+        public static function select2_locale() {
2267
+            $params = self::select2_params();
2268
+
2269
+            foreach ( (array) $params as $key => $value ) {
2270
+                if ( ! is_scalar( $value ) ) {
2271
+                    continue;
2272
+                }
2273 2273
 
2274
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2275
-			}
2274
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2275
+            }
2276 2276
 
2277
-			$locale = json_encode( $params );
2277
+            $locale = json_encode( $params );
2278 2278
 
2279
-			return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2280
-		}
2279
+            return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2280
+        }
2281 2281
 
2282
-		/**
2283
-		 * Time ago JS localize.
2284
-		 *
2285
-		 * @since 0.1.47
2286
-		 *
2287
-		 * @return string Time ago JS locale.
2288
-		 */
2289
-		public static function timeago_locale() {
2290
-			$params = array(
2291
-				'prefix_ago' => '',
2292
-				'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2293
-				'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2294
-				'suffix_after' => '',
2295
-				'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2296
-				'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2297
-				'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2298
-				'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2299
-				'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2300
-				'day' => _x( 'a day', 'time ago', 'aui' ),
2301
-				'days' => _x( '%d days', 'time ago', 'aui' ),
2302
-				'month' => _x( 'about a month', 'time ago', 'aui' ),
2303
-				'months' => _x( '%d months', 'time ago', 'aui' ),
2304
-				'year' => _x( 'about a year', 'time ago', 'aui' ),
2305
-				'years' => _x( '%d years', 'time ago', 'aui' ),
2306
-			);
2307
-
2308
-			$params = apply_filters( 'ayecode_ui_timeago_params', $params );
2309
-
2310
-			foreach ( (array) $params as $key => $value ) {
2311
-				if ( ! is_scalar( $value ) ) {
2312
-					continue;
2313
-				}
2282
+        /**
2283
+         * Time ago JS localize.
2284
+         *
2285
+         * @since 0.1.47
2286
+         *
2287
+         * @return string Time ago JS locale.
2288
+         */
2289
+        public static function timeago_locale() {
2290
+            $params = array(
2291
+                'prefix_ago' => '',
2292
+                'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2293
+                'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2294
+                'suffix_after' => '',
2295
+                'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2296
+                'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2297
+                'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2298
+                'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2299
+                'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2300
+                'day' => _x( 'a day', 'time ago', 'aui' ),
2301
+                'days' => _x( '%d days', 'time ago', 'aui' ),
2302
+                'month' => _x( 'about a month', 'time ago', 'aui' ),
2303
+                'months' => _x( '%d months', 'time ago', 'aui' ),
2304
+                'year' => _x( 'about a year', 'time ago', 'aui' ),
2305
+                'years' => _x( '%d years', 'time ago', 'aui' ),
2306
+            );
2307
+
2308
+            $params = apply_filters( 'ayecode_ui_timeago_params', $params );
2309
+
2310
+            foreach ( (array) $params as $key => $value ) {
2311
+                if ( ! is_scalar( $value ) ) {
2312
+                    continue;
2313
+                }
2314 2314
 
2315
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2316
-			}
2315
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2316
+            }
2317 2317
 
2318
-			$locale = json_encode( $params );
2318
+            $locale = json_encode( $params );
2319 2319
 
2320
-			return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2321
-		}
2320
+            return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2321
+        }
2322 2322
 
2323
-		/**
2324
-		 * JavaScript Minifier
2325
-		 *
2326
-		 * @param $input
2327
-		 *
2328
-		 * @return mixed
2329
-		 */
2330
-		public static function minify_js($input) {
2331
-			if(trim($input) === "") return $input;
2332
-			return preg_replace(
2333
-				array(
2334
-					// Remove comment(s)
2335
-					'#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2336
-					// Remove white-space(s) outside the string and regex
2337
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2338
-					// Remove the last semicolon
2339
-					'#;+\}#',
2340
-					// Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2341
-					'#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2342
-					// --ibid. From `foo['bar']` to `foo.bar`
2343
-					'#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2344
-				),
2345
-				array(
2346
-					'$1',
2347
-					'$1$2',
2348
-					'}',
2349
-					'$1$3',
2350
-					'$1.$3'
2351
-				),
2352
-				$input);
2353
-		}
2323
+        /**
2324
+         * JavaScript Minifier
2325
+         *
2326
+         * @param $input
2327
+         *
2328
+         * @return mixed
2329
+         */
2330
+        public static function minify_js($input) {
2331
+            if(trim($input) === "") return $input;
2332
+            return preg_replace(
2333
+                array(
2334
+                    // Remove comment(s)
2335
+                    '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2336
+                    // Remove white-space(s) outside the string and regex
2337
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2338
+                    // Remove the last semicolon
2339
+                    '#;+\}#',
2340
+                    // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2341
+                    '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2342
+                    // --ibid. From `foo['bar']` to `foo.bar`
2343
+                    '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2344
+                ),
2345
+                array(
2346
+                    '$1',
2347
+                    '$1$2',
2348
+                    '}',
2349
+                    '$1$3',
2350
+                    '$1.$3'
2351
+                ),
2352
+                $input);
2353
+        }
2354 2354
 
2355
-		/**
2356
-		 * Minify CSS
2357
-		 *
2358
-		 * @param $input
2359
-		 *
2360
-		 * @return mixed
2361
-		 */
2362
-		public static function minify_css($input) {
2363
-			if(trim($input) === "") return $input;
2364
-			return preg_replace(
2365
-				array(
2366
-					// Remove comment(s)
2367
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2368
-					// Remove unused white-space(s)
2369
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2370
-					// Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2371
-					'#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2372
-					// Replace `:0 0 0 0` with `:0`
2373
-					'#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2374
-					// Replace `background-position:0` with `background-position:0 0`
2375
-					'#(background-position):0(?=[;\}])#si',
2376
-					// Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2377
-					'#(?<=[\s:,\-])0+\.(\d+)#s',
2378
-					// Minify string value
2379
-					'#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2380
-					'#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2381
-					// Minify HEX color code
2382
-					'#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2383
-					// Replace `(border|outline):none` with `(border|outline):0`
2384
-					'#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2385
-					// Remove empty selector(s)
2386
-					'#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2387
-				),
2388
-				array(
2389
-					'$1',
2390
-					'$1$2$3$4$5$6$7',
2391
-					'$1',
2392
-					':0',
2393
-					'$1:0 0',
2394
-					'.$1',
2395
-					'$1$3',
2396
-					'$1$2$4$5',
2397
-					'$1$2$3',
2398
-					'$1:0',
2399
-					'$1$2'
2400
-				),
2401
-				$input);
2402
-		}
2355
+        /**
2356
+         * Minify CSS
2357
+         *
2358
+         * @param $input
2359
+         *
2360
+         * @return mixed
2361
+         */
2362
+        public static function minify_css($input) {
2363
+            if(trim($input) === "") return $input;
2364
+            return preg_replace(
2365
+                array(
2366
+                    // Remove comment(s)
2367
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2368
+                    // Remove unused white-space(s)
2369
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2370
+                    // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2371
+                    '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2372
+                    // Replace `:0 0 0 0` with `:0`
2373
+                    '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2374
+                    // Replace `background-position:0` with `background-position:0 0`
2375
+                    '#(background-position):0(?=[;\}])#si',
2376
+                    // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2377
+                    '#(?<=[\s:,\-])0+\.(\d+)#s',
2378
+                    // Minify string value
2379
+                    '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2380
+                    '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2381
+                    // Minify HEX color code
2382
+                    '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2383
+                    // Replace `(border|outline):none` with `(border|outline):0`
2384
+                    '#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2385
+                    // Remove empty selector(s)
2386
+                    '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2387
+                ),
2388
+                array(
2389
+                    '$1',
2390
+                    '$1$2$3$4$5$6$7',
2391
+                    '$1',
2392
+                    ':0',
2393
+                    '$1:0 0',
2394
+                    '.$1',
2395
+                    '$1$3',
2396
+                    '$1$2$4$5',
2397
+                    '$1$2$3',
2398
+                    '$1:0',
2399
+                    '$1$2'
2400
+                ),
2401
+                $input);
2402
+        }
2403 2403
 
2404
-		/**
2405
-		 * Get the conditional fields JavaScript.
2406
-		 *
2407
-		 * @return mixed
2408
-		 */
2409
-		public function conditional_fields_js() {
2410
-			ob_start();
2411
-			?>
2404
+        /**
2405
+         * Get the conditional fields JavaScript.
2406
+         *
2407
+         * @return mixed
2408
+         */
2409
+        public function conditional_fields_js() {
2410
+            ob_start();
2411
+            ?>
2412 2412
 <script>
2413 2413
 /**
2414 2414
  * Conditional Fields
@@ -2912,14 +2912,14 @@  discard block
 block discarded – undo
2912 2912
 <?php do_action( 'aui_conditional_fields_js', $this ); ?>
2913 2913
 </script>
2914 2914
 			<?php
2915
-			$output = ob_get_clean();
2915
+            $output = ob_get_clean();
2916 2916
 
2917
-			return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2918
-		}
2919
-	}
2917
+            return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2918
+        }
2919
+    }
2920 2920
 
2921
-	/**
2922
-	 * Run the class if found.
2923
-	 */
2924
-	AyeCode_UI_Settings::instance();
2921
+    /**
2922
+     * Run the class if found.
2923
+     */
2924
+    AyeCode_UI_Settings::instance();
2925 2925
 }
2926 2926
\ No newline at end of file
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/class-aui.php 1 patch
Indentation   +295 added lines, -295 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! defined( 'ABSPATH' ) ) {
4
-	exit; // Exit if accessed directly
4
+    exit; // Exit if accessed directly
5 5
 }
6 6
 
7 7
 /**
@@ -11,299 +11,299 @@  discard block
 block discarded – undo
11 11
  */
12 12
 class AUI {
13 13
 
14
-	/**
15
-	 * Holds the class instance.
16
-	 *
17
-	 * @since 1.0.0
18
-	 * @var null
19
-	 */
20
-	private static $instance = null;
21
-
22
-	/**
23
-	 * Holds the current AUI version number.
24
-	 *
25
-	 * @var string $ver The current version number.
26
-	 */
27
-	public static $ver = '0.1.72';
28
-
29
-	public static $options = null;
30
-
31
-	/**
32
-	 * There can be only one.
33
-	 *
34
-	 * @since 1.0.0
35
-	 * @return AUI|null
36
-	 */
37
-	public static function instance() {
38
-		if ( self::$instance == null ) {
39
-			self::$instance = new AUI();
40
-		}
41
-
42
-		return self::$instance;
43
-	}
44
-
45
-	/**
46
-	 * AUI constructor.
47
-	 *
48
-	 * @since 1.0.0
49
-	 */
50
-	private function __construct() {
51
-		if ( function_exists( "__autoload" ) ) {
52
-			spl_autoload_register( "__autoload" );
53
-		}
54
-		spl_autoload_register( array( $this, 'autoload' ) );
55
-
56
-		// load options
57
-		self::$options = get_option('aui_options');
58
-	}
59
-
60
-	/**
61
-	 * Autoload any components on the fly.
62
-	 *
63
-	 * @since 1.0.0
64
-	 *
65
-	 * @param $classname
66
-	 */
67
-	private function autoload( $classname ) {
68
-		$class     = str_replace( '_', '-', strtolower( $classname ) );
69
-		$file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php';
70
-		if ( $file_path && is_readable( $file_path ) ) {
71
-			include_once( $file_path );
72
-		}
73
-	}
74
-
75
-	/**
76
-	 * Get the AUI options.
77
-	 *
78
-	 * @param $option
79
-	 *
80
-	 * @return string|void
81
-	 */
82
-	public function get_option( $option ){
83
-		$result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : '';
84
-
85
-		if ( ! $result && $option) {
86
-			if( $option == 'color_primary' ){
87
-				$result = AUI_PRIMARY_COLOR;
88
-			}elseif( $option == 'color_secondary' ){
89
-				$result = AUI_SECONDARY_COLOR;
90
-			}
91
-		}
92
-		return $result;
93
-	}
94
-
95
-	public function render( $items = array(), $echo = false ) {
96
-		$output = '';
97
-
98
-		if ( ! empty( $items ) ) {
99
-			foreach ( $items as $args ) {
100
-				$render = isset( $args['render'] ) ? $args['render'] : '';
101
-				if ( $render && method_exists( __CLASS__, $render ) ) {
102
-					$output .= $this->$render( $args );
103
-				}
104
-			}
105
-		}
106
-
107
-		if ( $echo ) {
108
-			echo $output;
109
-		}else{
110
-			return $output;
111
-		}
112
-
113
-	}
114
-
115
-	/**
116
-	 * Render and return a bootstrap alert component.
117
-	 *
118
-	 * @since 1.0.0
119
-	 *
120
-	 * @param array $args The function arguments.
121
-	 * @param bool  $echo If we should return or echo.
122
-	 *
123
-	 * @return string The rendered component.
124
-	 */
125
-	public function alert( $args = array(), $echo = false ) {
126
-		$output = AUI_Component_Alert::get( $args );
127
-
128
-		if ( $echo ) {
129
-			echo $output;
130
-		}else{
131
-			return $output;
132
-		}
133
-	}
134
-
135
-	/**
136
-	 * Render and return a bootstrap input component.
137
-	 *
138
-	 * @since 1.0.0
139
-	 *
140
-	 * @param array $args The function arguments.
141
-	 * @param bool  $echo If we should return or echo.
142
-	 *
143
-	 * @return string The rendered component.
144
-	 */
145
-	public function input( $args = array(), $echo = false ) {
146
-		$output = AUI_Component_Input::input( $args );
147
-
148
-		if ( $echo ) {
149
-			echo $output;
150
-		}else{
151
-			return $output;
152
-		}
153
-	}
154
-
155
-	/**
156
-	 * Render and return a bootstrap textarea component.
157
-	 *
158
-	 * @since 1.0.0
159
-	 *
160
-	 * @param array $args The function arguments.
161
-	 * @param bool  $echo If we should return or echo.
162
-	 *
163
-	 * @return string The rendered component.
164
-	 */
165
-	public function textarea( $args = array(), $echo = false ) {
166
-		$output = AUI_Component_Input::textarea( $args );
167
-
168
-		if ( $echo ) {
169
-			echo $output;
170
-		}else{
171
-			return $output;
172
-		}
173
-	}
174
-
175
-	/**
176
-	 * Render and return a bootstrap button component.
177
-	 *
178
-	 * @since 1.0.0
179
-	 *
180
-	 * @param array $args The function arguments.
181
-	 * @param bool  $echo If we should return or echo.
182
-	 *
183
-	 * @return string The rendered component.
184
-	 */
185
-	public function button( $args = array(), $echo = false ) {
186
-		$output = AUI_Component_Button::get( $args );
187
-
188
-		if ( $echo ) {
189
-			echo $output;
190
-		}else{
191
-			return $output;
192
-		}
193
-	}
194
-
195
-	/**
196
-	 * Render and return a bootstrap button component.
197
-	 *
198
-	 * @since 1.0.0
199
-	 *
200
-	 * @param array $args The function arguments.
201
-	 * @param bool  $echo If we should return or echo.
202
-	 *
203
-	 * @return string The rendered component.
204
-	 */
205
-	public function badge( $args = array(), $echo = false ) {
206
-		$defaults = array(
207
-			'class' => 'badge badge-primary align-middle',
208
-		);
209
-
210
-		// maybe set type.
211
-		if ( empty( $args['href'] ) ) {
212
-			$defaults['type'] = 'badge';
213
-		}
214
-
215
-		/**
216
-		 * Parse incoming $args into an array and merge it with $defaults
217
-		 */
218
-		$args = wp_parse_args( $args, $defaults );
219
-
220
-		$output = AUI_Component_Button::get( $args );
221
-
222
-		if ( $echo ) {
223
-			echo $output;
224
-		}else{
225
-			return $output;
226
-		}
227
-	}
228
-
229
-	/**
230
-	 * Render and return a bootstrap dropdown component.
231
-	 *
232
-	 * @since 1.0.0
233
-	 *
234
-	 * @param array $args The function arguments.
235
-	 * @param bool  $echo If we should return or echo.
236
-	 *
237
-	 * @return string The rendered component.
238
-	 */
239
-	public function dropdown( $args = array(), $echo = false ) {
240
-		$output = AUI_Component_Dropdown::get( $args );
241
-
242
-		if ( $echo ) {
243
-			echo $output;
244
-		}else{
245
-			return $output;
246
-		}
247
-	}
248
-
249
-	/**
250
-	 * Render and return a bootstrap select component.
251
-	 *
252
-	 * @since 1.0.0
253
-	 *
254
-	 * @param array $args The function arguments.
255
-	 * @param bool  $echo If we should return or echo.
256
-	 *
257
-	 * @return string The rendered component.
258
-	 */
259
-	public function select( $args = array(), $echo = false ) {
260
-		$output = AUI_Component_Input::select( $args );
261
-
262
-		if ( $echo ) {
263
-			echo $output;
264
-		}else{
265
-			return $output;
266
-		}
267
-	}
268
-
269
-	/**
270
-	 * Render and return a bootstrap radio component.
271
-	 *
272
-	 * @since 1.0.0
273
-	 *
274
-	 * @param array $args The function arguments.
275
-	 * @param bool  $echo If we should return or echo.
276
-	 *
277
-	 * @return string The rendered component.
278
-	 */
279
-	public function radio( $args = array(), $echo = false ) {
280
-		$output = AUI_Component_Input::radio( $args );
281
-
282
-		if ( $echo ) {
283
-			echo $output;
284
-		}else{
285
-			return $output;
286
-		}
287
-	}
288
-
289
-	/**
290
-	 * Render and return a bootstrap pagination component.
291
-	 *
292
-	 * @since 1.0.0
293
-	 *
294
-	 * @param array $args The function arguments.
295
-	 * @param bool  $echo If we should return or echo.
296
-	 *
297
-	 * @return string The rendered component.
298
-	 */
299
-	public function pagination( $args = array(), $echo = false ) {
300
-		$output = AUI_Component_Pagination::get( $args );
301
-
302
-		if ( $echo ) {
303
-			echo $output;
304
-		}else{
305
-			return $output;
306
-		}
307
-	}
14
+    /**
15
+     * Holds the class instance.
16
+     *
17
+     * @since 1.0.0
18
+     * @var null
19
+     */
20
+    private static $instance = null;
21
+
22
+    /**
23
+     * Holds the current AUI version number.
24
+     *
25
+     * @var string $ver The current version number.
26
+     */
27
+    public static $ver = '0.1.72';
28
+
29
+    public static $options = null;
30
+
31
+    /**
32
+     * There can be only one.
33
+     *
34
+     * @since 1.0.0
35
+     * @return AUI|null
36
+     */
37
+    public static function instance() {
38
+        if ( self::$instance == null ) {
39
+            self::$instance = new AUI();
40
+        }
41
+
42
+        return self::$instance;
43
+    }
44
+
45
+    /**
46
+     * AUI constructor.
47
+     *
48
+     * @since 1.0.0
49
+     */
50
+    private function __construct() {
51
+        if ( function_exists( "__autoload" ) ) {
52
+            spl_autoload_register( "__autoload" );
53
+        }
54
+        spl_autoload_register( array( $this, 'autoload' ) );
55
+
56
+        // load options
57
+        self::$options = get_option('aui_options');
58
+    }
59
+
60
+    /**
61
+     * Autoload any components on the fly.
62
+     *
63
+     * @since 1.0.0
64
+     *
65
+     * @param $classname
66
+     */
67
+    private function autoload( $classname ) {
68
+        $class     = str_replace( '_', '-', strtolower( $classname ) );
69
+        $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php';
70
+        if ( $file_path && is_readable( $file_path ) ) {
71
+            include_once( $file_path );
72
+        }
73
+    }
74
+
75
+    /**
76
+     * Get the AUI options.
77
+     *
78
+     * @param $option
79
+     *
80
+     * @return string|void
81
+     */
82
+    public function get_option( $option ){
83
+        $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : '';
84
+
85
+        if ( ! $result && $option) {
86
+            if( $option == 'color_primary' ){
87
+                $result = AUI_PRIMARY_COLOR;
88
+            }elseif( $option == 'color_secondary' ){
89
+                $result = AUI_SECONDARY_COLOR;
90
+            }
91
+        }
92
+        return $result;
93
+    }
94
+
95
+    public function render( $items = array(), $echo = false ) {
96
+        $output = '';
97
+
98
+        if ( ! empty( $items ) ) {
99
+            foreach ( $items as $args ) {
100
+                $render = isset( $args['render'] ) ? $args['render'] : '';
101
+                if ( $render && method_exists( __CLASS__, $render ) ) {
102
+                    $output .= $this->$render( $args );
103
+                }
104
+            }
105
+        }
106
+
107
+        if ( $echo ) {
108
+            echo $output;
109
+        }else{
110
+            return $output;
111
+        }
112
+
113
+    }
114
+
115
+    /**
116
+     * Render and return a bootstrap alert component.
117
+     *
118
+     * @since 1.0.0
119
+     *
120
+     * @param array $args The function arguments.
121
+     * @param bool  $echo If we should return or echo.
122
+     *
123
+     * @return string The rendered component.
124
+     */
125
+    public function alert( $args = array(), $echo = false ) {
126
+        $output = AUI_Component_Alert::get( $args );
127
+
128
+        if ( $echo ) {
129
+            echo $output;
130
+        }else{
131
+            return $output;
132
+        }
133
+    }
134
+
135
+    /**
136
+     * Render and return a bootstrap input component.
137
+     *
138
+     * @since 1.0.0
139
+     *
140
+     * @param array $args The function arguments.
141
+     * @param bool  $echo If we should return or echo.
142
+     *
143
+     * @return string The rendered component.
144
+     */
145
+    public function input( $args = array(), $echo = false ) {
146
+        $output = AUI_Component_Input::input( $args );
147
+
148
+        if ( $echo ) {
149
+            echo $output;
150
+        }else{
151
+            return $output;
152
+        }
153
+    }
154
+
155
+    /**
156
+     * Render and return a bootstrap textarea component.
157
+     *
158
+     * @since 1.0.0
159
+     *
160
+     * @param array $args The function arguments.
161
+     * @param bool  $echo If we should return or echo.
162
+     *
163
+     * @return string The rendered component.
164
+     */
165
+    public function textarea( $args = array(), $echo = false ) {
166
+        $output = AUI_Component_Input::textarea( $args );
167
+
168
+        if ( $echo ) {
169
+            echo $output;
170
+        }else{
171
+            return $output;
172
+        }
173
+    }
174
+
175
+    /**
176
+     * Render and return a bootstrap button component.
177
+     *
178
+     * @since 1.0.0
179
+     *
180
+     * @param array $args The function arguments.
181
+     * @param bool  $echo If we should return or echo.
182
+     *
183
+     * @return string The rendered component.
184
+     */
185
+    public function button( $args = array(), $echo = false ) {
186
+        $output = AUI_Component_Button::get( $args );
187
+
188
+        if ( $echo ) {
189
+            echo $output;
190
+        }else{
191
+            return $output;
192
+        }
193
+    }
194
+
195
+    /**
196
+     * Render and return a bootstrap button component.
197
+     *
198
+     * @since 1.0.0
199
+     *
200
+     * @param array $args The function arguments.
201
+     * @param bool  $echo If we should return or echo.
202
+     *
203
+     * @return string The rendered component.
204
+     */
205
+    public function badge( $args = array(), $echo = false ) {
206
+        $defaults = array(
207
+            'class' => 'badge badge-primary align-middle',
208
+        );
209
+
210
+        // maybe set type.
211
+        if ( empty( $args['href'] ) ) {
212
+            $defaults['type'] = 'badge';
213
+        }
214
+
215
+        /**
216
+         * Parse incoming $args into an array and merge it with $defaults
217
+         */
218
+        $args = wp_parse_args( $args, $defaults );
219
+
220
+        $output = AUI_Component_Button::get( $args );
221
+
222
+        if ( $echo ) {
223
+            echo $output;
224
+        }else{
225
+            return $output;
226
+        }
227
+    }
228
+
229
+    /**
230
+     * Render and return a bootstrap dropdown component.
231
+     *
232
+     * @since 1.0.0
233
+     *
234
+     * @param array $args The function arguments.
235
+     * @param bool  $echo If we should return or echo.
236
+     *
237
+     * @return string The rendered component.
238
+     */
239
+    public function dropdown( $args = array(), $echo = false ) {
240
+        $output = AUI_Component_Dropdown::get( $args );
241
+
242
+        if ( $echo ) {
243
+            echo $output;
244
+        }else{
245
+            return $output;
246
+        }
247
+    }
248
+
249
+    /**
250
+     * Render and return a bootstrap select component.
251
+     *
252
+     * @since 1.0.0
253
+     *
254
+     * @param array $args The function arguments.
255
+     * @param bool  $echo If we should return or echo.
256
+     *
257
+     * @return string The rendered component.
258
+     */
259
+    public function select( $args = array(), $echo = false ) {
260
+        $output = AUI_Component_Input::select( $args );
261
+
262
+        if ( $echo ) {
263
+            echo $output;
264
+        }else{
265
+            return $output;
266
+        }
267
+    }
268
+
269
+    /**
270
+     * Render and return a bootstrap radio component.
271
+     *
272
+     * @since 1.0.0
273
+     *
274
+     * @param array $args The function arguments.
275
+     * @param bool  $echo If we should return or echo.
276
+     *
277
+     * @return string The rendered component.
278
+     */
279
+    public function radio( $args = array(), $echo = false ) {
280
+        $output = AUI_Component_Input::radio( $args );
281
+
282
+        if ( $echo ) {
283
+            echo $output;
284
+        }else{
285
+            return $output;
286
+        }
287
+    }
288
+
289
+    /**
290
+     * Render and return a bootstrap pagination component.
291
+     *
292
+     * @since 1.0.0
293
+     *
294
+     * @param array $args The function arguments.
295
+     * @param bool  $echo If we should return or echo.
296
+     *
297
+     * @return string The rendered component.
298
+     */
299
+    public function pagination( $args = array(), $echo = false ) {
300
+        $output = AUI_Component_Pagination::get( $args );
301
+
302
+        if ( $echo ) {
303
+            echo $output;
304
+        }else{
305
+            return $output;
306
+        }
307
+    }
308 308
 
309 309
 }
310 310
\ No newline at end of file
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/example-plugin.php 1 patch
Indentation   +193 added lines, -193 removed lines patch added patch discarded remove patch
@@ -16,202 +16,202 @@
 block discarded – undo
16 16
 
17 17
 // If this file is called directly, abort.
18 18
 if ( ! defined( 'WPINC' ) ) {
19
-	die;
19
+    die;
20 20
 }
21 21
 
22 22
 class AyeCode_UI_Plugin {
23 23
 
24
-	/**
25
-	 * AUI Plugin constructor.
26
-	 *
27
-	 * @since 1.0.0
28
-	 */
29
-	public function __construct() {
30
-
31
-		// load AUI
32
-		require_once( dirname( __FILE__ ) . '/ayecode-ui-loader.php' );
33
-
34
-		// Maybe show example page
35
-		add_action( 'template_redirect', array( $this,'maybe_show_examples' ) );
36
-	}
37
-
38
-	public function maybe_show_examples(){
39
-		if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
40
-			echo "<head>";
41
-			wp_head();
42
-			echo "</head>";
43
-			echo "<body class='bsui'>";
44
-			echo $this->get_examples();
45
-			wp_footer();
46
-			echo "</body>";
47
-			exit;
48
-		}
49
-	}
50
-
51
-	public function get_examples(){
52
-		$output = '';
53
-
54
-
55
-		// open form
56
-		$output .= "<form class='p-5 m-5 border rounded'>";
57
-
58
-		$output .= aui()->input(
59
-			array(
60
-				'type'             => 'datepicker',
61
-				'id'               => 'wpinv_discount_start',
62
-				'size'             => 'sm',
63
-				'name'             => 'wpinv_discount_start',
64
-				'label'            => __( 'Start Date', 'invoicing' ),
65
-				'placeholder'      => 'YYYY-MM-DD 00:00',
66
-				'value'            => '',
67
-				'extra_attributes' => array(
68
-					'data-enable-time' => 'true',
69
-					'data-time_24hr'   => 'true',
70
-					'data-allow-input' => 'true',
71
-				),
72
-			),
73
-		);
74
-
75
-		$output .= aui()->input(
76
-			array(
77
-				'type'             => 'datepicker',
78
-				'id'               => 'wpinv_discount_start',
79
-				//'size'             => 'smx',
80
-				'name'             => 'wpinv_discount_start',
81
-				'label'            => __( 'Start Date', 'invoicing' ),
82
-				'placeholder'      => 'YYYY-MM-DD 00:00',
83
-				'value'            => '',
84
-				'extra_attributes' => array(
85
-					'data-enable-time' => 'true',
86
-					'data-time_24hr'   => 'true',
87
-					'data-allow-input' => 'true',
88
-				),
89
-			),
90
-		);
91
-		$output .= aui()->input(
92
-			array(
93
-				'type'             => 'datepicker',
94
-				'id'               => 'wpinv_discount_start',
95
-				'size'             => 'lg',
96
-				'name'             => 'wpinv_discount_start',
97
-				'label'            => __( 'Start Date', 'invoicing' ),
98
-				'placeholder'      => 'YYYY-MM-DD 00:00',
99
-				'value'            => '',
100
-				'extra_attributes' => array(
101
-					'data-enable-time' => 'true',
102
-					'data-time_24hr'   => 'true',
103
-					//'data-allow-input' => 'true',
104
-				),
105
-			)
106
-		);
107
-
108
-
109
-		// input example
110
-		$output .= aui()->input(array(
111
-			'type'  =>  'text',
112
-			'id'    =>  'text-example',
113
-			'size'             => 'sm',
114
-			//'clear_icon'    => true,
115
-			'name'    =>  'text-example',
116
-			'placeholder'   => 'text placeholder',
117
-			'title'   => 'Text input example',
118
-			'value' =>  '',
119
-			'required'  => false,
120
-			'help_text' => 'help text',
121
-			'label' => 'Text input example label',
122
-			'label_type' => 'top'
123
-		));
124
-
125
-		$output .= aui()->input(array(
126
-			'type'  =>  'search',
127
-			'id'    =>  'text-example',
128
-			'size'             => 'sm',
129
-			//'clear_icon'    => true,
130
-			'name'    =>  'text-example',
131
-			'placeholder'   => 'text placeholder',
132
-			'title'   => 'Text input example',
133
-			'value' =>  '',
134
-			'required'  => false,
135
-			'help_text' => 'help text',
136
-			'label' => 'Text input example label',
137
-			'label_type' => 'top'
138
-		));
139
-
140
-		// input example
141
-		$output .= aui()->input(array(
142
-			'type'  =>  'url',
143
-			'id'    =>  'text-example2',
144
-			'name'    =>  'text-example',
145
-			'placeholder'   => 'url placeholder',
146
-			'title'   => 'Text input example',
147
-			'value' =>  '',
148
-			'required'  => false,
149
-			'help_text' => 'help text',
150
-			'label' => 'Text input example label'
151
-		));
152
-
153
-		// checkbox example
154
-		$output .= aui()->input(array(
155
-			'type'  =>  'checkbox',
156
-			'id'    =>  'checkbox-example',
157
-			'name'    =>  'checkbox-example',
158
-			'placeholder'   => 'checkbox-example',
159
-			'title'   => 'Checkbox example',
160
-			'value' =>  '1',
161
-			'checked'   => true,
162
-			'required'  => false,
163
-			'help_text' => 'help text',
164
-			'label' => 'Checkbox checked'
165
-		));
166
-
167
-		// checkbox example
168
-		$output .= aui()->input(array(
169
-			'type'  =>  'checkbox',
170
-			'id'    =>  'checkbox-example2',
171
-			'name'    =>  'checkbox-example2',
172
-			'placeholder'   => 'checkbox-example',
173
-			'title'   => 'Checkbox example',
174
-			'value' =>  '1',
175
-			'checked'   => false,
176
-			'required'  => false,
177
-			'help_text' => 'help text',
178
-			'label' => 'Checkbox un-checked'
179
-		));
180
-
181
-		// switch example
182
-		$output .= aui()->input(array(
183
-			'type'  =>  'checkbox',
184
-			'id'    =>  'switch-example',
185
-			'name'    =>  'switch-example',
186
-			'placeholder'   => 'checkbox-example',
187
-			'title'   => 'Switch example',
188
-			'value' =>  '1',
189
-			'checked'   => true,
190
-			'switch'    => true,
191
-			'required'  => false,
192
-			'help_text' => 'help text',
193
-			'label' => 'Switch on'
194
-		));
195
-
196
-		// switch example
197
-		$output .= aui()->input(array(
198
-			'type'  =>  'checkbox',
199
-			'id'    =>  'switch-example2',
200
-			'name'    =>  'switch-example2',
201
-			'placeholder'   => 'checkbox-example',
202
-			'title'   => 'Switch example',
203
-			'value' =>  '1',
204
-			'checked'   => false,
205
-			'switch'    => true,
206
-			'required'  => false,
207
-			'help_text' => 'help text',
208
-			'label' => 'Switch off'
209
-		));
210
-
211
-		// close form
212
-		$output .= "</form>";
213
-
214
-		return $output;
215
-	}
24
+    /**
25
+     * AUI Plugin constructor.
26
+     *
27
+     * @since 1.0.0
28
+     */
29
+    public function __construct() {
30
+
31
+        // load AUI
32
+        require_once( dirname( __FILE__ ) . '/ayecode-ui-loader.php' );
33
+
34
+        // Maybe show example page
35
+        add_action( 'template_redirect', array( $this,'maybe_show_examples' ) );
36
+    }
37
+
38
+    public function maybe_show_examples(){
39
+        if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
40
+            echo "<head>";
41
+            wp_head();
42
+            echo "</head>";
43
+            echo "<body class='bsui'>";
44
+            echo $this->get_examples();
45
+            wp_footer();
46
+            echo "</body>";
47
+            exit;
48
+        }
49
+    }
50
+
51
+    public function get_examples(){
52
+        $output = '';
53
+
54
+
55
+        // open form
56
+        $output .= "<form class='p-5 m-5 border rounded'>";
57
+
58
+        $output .= aui()->input(
59
+            array(
60
+                'type'             => 'datepicker',
61
+                'id'               => 'wpinv_discount_start',
62
+                'size'             => 'sm',
63
+                'name'             => 'wpinv_discount_start',
64
+                'label'            => __( 'Start Date', 'invoicing' ),
65
+                'placeholder'      => 'YYYY-MM-DD 00:00',
66
+                'value'            => '',
67
+                'extra_attributes' => array(
68
+                    'data-enable-time' => 'true',
69
+                    'data-time_24hr'   => 'true',
70
+                    'data-allow-input' => 'true',
71
+                ),
72
+            ),
73
+        );
74
+
75
+        $output .= aui()->input(
76
+            array(
77
+                'type'             => 'datepicker',
78
+                'id'               => 'wpinv_discount_start',
79
+                //'size'             => 'smx',
80
+                'name'             => 'wpinv_discount_start',
81
+                'label'            => __( 'Start Date', 'invoicing' ),
82
+                'placeholder'      => 'YYYY-MM-DD 00:00',
83
+                'value'            => '',
84
+                'extra_attributes' => array(
85
+                    'data-enable-time' => 'true',
86
+                    'data-time_24hr'   => 'true',
87
+                    'data-allow-input' => 'true',
88
+                ),
89
+            ),
90
+        );
91
+        $output .= aui()->input(
92
+            array(
93
+                'type'             => 'datepicker',
94
+                'id'               => 'wpinv_discount_start',
95
+                'size'             => 'lg',
96
+                'name'             => 'wpinv_discount_start',
97
+                'label'            => __( 'Start Date', 'invoicing' ),
98
+                'placeholder'      => 'YYYY-MM-DD 00:00',
99
+                'value'            => '',
100
+                'extra_attributes' => array(
101
+                    'data-enable-time' => 'true',
102
+                    'data-time_24hr'   => 'true',
103
+                    //'data-allow-input' => 'true',
104
+                ),
105
+            )
106
+        );
107
+
108
+
109
+        // input example
110
+        $output .= aui()->input(array(
111
+            'type'  =>  'text',
112
+            'id'    =>  'text-example',
113
+            'size'             => 'sm',
114
+            //'clear_icon'    => true,
115
+            'name'    =>  'text-example',
116
+            'placeholder'   => 'text placeholder',
117
+            'title'   => 'Text input example',
118
+            'value' =>  '',
119
+            'required'  => false,
120
+            'help_text' => 'help text',
121
+            'label' => 'Text input example label',
122
+            'label_type' => 'top'
123
+        ));
124
+
125
+        $output .= aui()->input(array(
126
+            'type'  =>  'search',
127
+            'id'    =>  'text-example',
128
+            'size'             => 'sm',
129
+            //'clear_icon'    => true,
130
+            'name'    =>  'text-example',
131
+            'placeholder'   => 'text placeholder',
132
+            'title'   => 'Text input example',
133
+            'value' =>  '',
134
+            'required'  => false,
135
+            'help_text' => 'help text',
136
+            'label' => 'Text input example label',
137
+            'label_type' => 'top'
138
+        ));
139
+
140
+        // input example
141
+        $output .= aui()->input(array(
142
+            'type'  =>  'url',
143
+            'id'    =>  'text-example2',
144
+            'name'    =>  'text-example',
145
+            'placeholder'   => 'url placeholder',
146
+            'title'   => 'Text input example',
147
+            'value' =>  '',
148
+            'required'  => false,
149
+            'help_text' => 'help text',
150
+            'label' => 'Text input example label'
151
+        ));
152
+
153
+        // checkbox example
154
+        $output .= aui()->input(array(
155
+            'type'  =>  'checkbox',
156
+            'id'    =>  'checkbox-example',
157
+            'name'    =>  'checkbox-example',
158
+            'placeholder'   => 'checkbox-example',
159
+            'title'   => 'Checkbox example',
160
+            'value' =>  '1',
161
+            'checked'   => true,
162
+            'required'  => false,
163
+            'help_text' => 'help text',
164
+            'label' => 'Checkbox checked'
165
+        ));
166
+
167
+        // checkbox example
168
+        $output .= aui()->input(array(
169
+            'type'  =>  'checkbox',
170
+            'id'    =>  'checkbox-example2',
171
+            'name'    =>  'checkbox-example2',
172
+            'placeholder'   => 'checkbox-example',
173
+            'title'   => 'Checkbox example',
174
+            'value' =>  '1',
175
+            'checked'   => false,
176
+            'required'  => false,
177
+            'help_text' => 'help text',
178
+            'label' => 'Checkbox un-checked'
179
+        ));
180
+
181
+        // switch example
182
+        $output .= aui()->input(array(
183
+            'type'  =>  'checkbox',
184
+            'id'    =>  'switch-example',
185
+            'name'    =>  'switch-example',
186
+            'placeholder'   => 'checkbox-example',
187
+            'title'   => 'Switch example',
188
+            'value' =>  '1',
189
+            'checked'   => true,
190
+            'switch'    => true,
191
+            'required'  => false,
192
+            'help_text' => 'help text',
193
+            'label' => 'Switch on'
194
+        ));
195
+
196
+        // switch example
197
+        $output .= aui()->input(array(
198
+            'type'  =>  'checkbox',
199
+            'id'    =>  'switch-example2',
200
+            'name'    =>  'switch-example2',
201
+            'placeholder'   => 'checkbox-example',
202
+            'title'   => 'Switch example',
203
+            'value' =>  '1',
204
+            'checked'   => false,
205
+            'switch'    => true,
206
+            'required'  => false,
207
+            'help_text' => 'help text',
208
+            'label' => 'Switch off'
209
+        ));
210
+
211
+        // close form
212
+        $output .= "</form>";
213
+
214
+        return $output;
215
+    }
216 216
 }
217 217
 new AyeCode_UI_Plugin();
218 218
\ No newline at end of file
Please login to merge, or discard this patch.
includes/gateways/class-getpaid-paypal-gateway-ipn-handler.php 1 patch
Indentation   +391 added lines, -391 removed lines patch added patch discarded remove patch
@@ -12,473 +12,473 @@
 block discarded – undo
12 12
  */
13 13
 class GetPaid_Paypal_Gateway_IPN_Handler {
14 14
 
15
-	/**
16
-	 * Payment method id.
17
-	 *
18
-	 * @var string
19
-	 */
20
-	protected $id = 'paypal';
21
-
22
-	/**
23
-	 * Payment method object.
24
-	 *
25
-	 * @var GetPaid_Paypal_Gateway
26
-	 */
27
-	protected $gateway;
28
-
29
-	/**
30
-	 * Class constructor.
31
-	 *
32
-	 * @param GetPaid_Paypal_Gateway $gateway
33
-	 */
34
-	public function __construct( $gateway ) {
35
-		$this->gateway = $gateway;
36
-		$this->verify_ipn();
37
-	}
38
-
39
-	/**
40
-	 * Processes ipns and marks payments as complete.
41
-	 *
42
-	 * @return void
43
-	 */
44
-	public function verify_ipn() {
45
-
46
-		wpinv_error_log( 'GetPaid PayPal IPN Handler', false );
47
-
48
-		// Validate the IPN.
49
-		if ( empty( $_POST ) || ! $this->validate_ipn() ) {
50
-			wp_die( 'PayPal IPN Request Failure', 500 );
51
-		}
52
-
53
-		// Process the IPN.
54
-		$posted  = wp_unslash( $_POST );
55
-		$invoice = $this->get_ipn_invoice( $posted );
56
-
57
-		// Abort if it was not paid by our gateway.
58
-		if ( $this->id != $invoice->get_gateway() ) {
59
-			wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false );
60
-			wp_die( 'Invoice not paid via PayPal', 200 );
61
-		}
62
-
63
-		$posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : '';
64
-		$posted['txn_type']       = sanitize_key( strtolower( $posted['txn_type'] ) );
65
-
66
-		wpinv_error_log( 'Payment status:' . $posted['payment_status'], false );
67
-		wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false );
68
-
69
-		if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) {
70
-			call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted );
71
-			wpinv_error_log( 'Done processing IPN', false );
72
-			wp_die( 'Processed', 200 );
73
-		}
74
-
75
-		wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false );
76
-		wp_die( 'Unsupported IPN type', 200 );
77
-
78
-	}
79
-
80
-	/**
81
-	 * Retrieves IPN Invoice.
82
-	 *
83
-	 * @param array $posted
84
-	 * @return WPInv_Invoice
85
-	 */
86
-	protected function get_ipn_invoice( $posted ) {
87
-
88
-		wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false );
89
-
90
-		if ( ! empty( $posted['custom'] ) ) {
91
-			$invoice = new WPInv_Invoice( $posted['custom'] );
92
-
93
-			if ( $invoice->exists() ) {
94
-				wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false );
95
-				return $invoice;
96
-			}
97
-		}
98
-
99
-		wpinv_error_log( 'Could not retrieve the associated invoice.', false );
100
-		wp_die( 'Could not retrieve the associated invoice.', 200 );
101
-	}
102
-
103
-	/**
104
-	 * Check PayPal IPN validity.
105
-	 */
106
-	protected function validate_ipn() {
107
-
108
-		wpinv_error_log( 'Validating PayPal IPN response', false );
109
-
110
-		// Retrieve the associated invoice.
111
-		$posted  = wp_unslash( $_POST );
112
-		$invoice = $this->get_ipn_invoice( $posted );
113
-
114
-		if ( $this->gateway->is_sandbox( $invoice ) ) {
115
-			wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false );
116
-		}
117
-
118
-		// Validate the IPN.
119
-		$posted['cmd'] = '_notify-validate';
120
-
121
-		// Send back post vars to paypal.
122
-		$params = array(
123
-			'body'        => $posted,
124
-			'timeout'     => 60,
125
-			'httpversion' => '1.1',
126
-			'compress'    => false,
127
-			'decompress'  => false,
128
-			'user-agent'  => 'GetPaid/' . WPINV_VERSION,
129
-		);
130
-
131
-		// Post back to get a response.
132
-		$response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params );
133
-
134
-		// Check to see if the request was valid.
135
-		if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) {
136
-			wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false );
137
-			return true;
138
-		}
139
-
140
-		if ( is_wp_error( $response ) ) {
141
-			wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' );
142
-			return false;
143
-		}
144
-
145
-		wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' );
146
-		return false;
147
-
148
-	}
149
-
150
-	/**
151
-	 * Check currency from IPN matches the invoice.
152
-	 *
153
-	 * @param WPInv_Invoice $invoice          Invoice object.
154
-	 * @param string   $currency currency to validate.
155
-	 */
156
-	protected function validate_ipn_currency( $invoice, $currency ) {
15
+    /**
16
+     * Payment method id.
17
+     *
18
+     * @var string
19
+     */
20
+    protected $id = 'paypal';
21
+
22
+    /**
23
+     * Payment method object.
24
+     *
25
+     * @var GetPaid_Paypal_Gateway
26
+     */
27
+    protected $gateway;
28
+
29
+    /**
30
+     * Class constructor.
31
+     *
32
+     * @param GetPaid_Paypal_Gateway $gateway
33
+     */
34
+    public function __construct( $gateway ) {
35
+        $this->gateway = $gateway;
36
+        $this->verify_ipn();
37
+    }
38
+
39
+    /**
40
+     * Processes ipns and marks payments as complete.
41
+     *
42
+     * @return void
43
+     */
44
+    public function verify_ipn() {
45
+
46
+        wpinv_error_log( 'GetPaid PayPal IPN Handler', false );
47
+
48
+        // Validate the IPN.
49
+        if ( empty( $_POST ) || ! $this->validate_ipn() ) {
50
+            wp_die( 'PayPal IPN Request Failure', 500 );
51
+        }
52
+
53
+        // Process the IPN.
54
+        $posted  = wp_unslash( $_POST );
55
+        $invoice = $this->get_ipn_invoice( $posted );
56
+
57
+        // Abort if it was not paid by our gateway.
58
+        if ( $this->id != $invoice->get_gateway() ) {
59
+            wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false );
60
+            wp_die( 'Invoice not paid via PayPal', 200 );
61
+        }
62
+
63
+        $posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : '';
64
+        $posted['txn_type']       = sanitize_key( strtolower( $posted['txn_type'] ) );
65
+
66
+        wpinv_error_log( 'Payment status:' . $posted['payment_status'], false );
67
+        wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false );
68
+
69
+        if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) {
70
+            call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted );
71
+            wpinv_error_log( 'Done processing IPN', false );
72
+            wp_die( 'Processed', 200 );
73
+        }
74
+
75
+        wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false );
76
+        wp_die( 'Unsupported IPN type', 200 );
77
+
78
+    }
79
+
80
+    /**
81
+     * Retrieves IPN Invoice.
82
+     *
83
+     * @param array $posted
84
+     * @return WPInv_Invoice
85
+     */
86
+    protected function get_ipn_invoice( $posted ) {
87
+
88
+        wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false );
89
+
90
+        if ( ! empty( $posted['custom'] ) ) {
91
+            $invoice = new WPInv_Invoice( $posted['custom'] );
92
+
93
+            if ( $invoice->exists() ) {
94
+                wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false );
95
+                return $invoice;
96
+            }
97
+        }
98
+
99
+        wpinv_error_log( 'Could not retrieve the associated invoice.', false );
100
+        wp_die( 'Could not retrieve the associated invoice.', 200 );
101
+    }
102
+
103
+    /**
104
+     * Check PayPal IPN validity.
105
+     */
106
+    protected function validate_ipn() {
107
+
108
+        wpinv_error_log( 'Validating PayPal IPN response', false );
109
+
110
+        // Retrieve the associated invoice.
111
+        $posted  = wp_unslash( $_POST );
112
+        $invoice = $this->get_ipn_invoice( $posted );
113
+
114
+        if ( $this->gateway->is_sandbox( $invoice ) ) {
115
+            wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false );
116
+        }
117
+
118
+        // Validate the IPN.
119
+        $posted['cmd'] = '_notify-validate';
120
+
121
+        // Send back post vars to paypal.
122
+        $params = array(
123
+            'body'        => $posted,
124
+            'timeout'     => 60,
125
+            'httpversion' => '1.1',
126
+            'compress'    => false,
127
+            'decompress'  => false,
128
+            'user-agent'  => 'GetPaid/' . WPINV_VERSION,
129
+        );
130
+
131
+        // Post back to get a response.
132
+        $response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params );
133
+
134
+        // Check to see if the request was valid.
135
+        if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) {
136
+            wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false );
137
+            return true;
138
+        }
139
+
140
+        if ( is_wp_error( $response ) ) {
141
+            wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' );
142
+            return false;
143
+        }
144
+
145
+        wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' );
146
+        return false;
147
+
148
+    }
149
+
150
+    /**
151
+     * Check currency from IPN matches the invoice.
152
+     *
153
+     * @param WPInv_Invoice $invoice          Invoice object.
154
+     * @param string   $currency currency to validate.
155
+     */
156
+    protected function validate_ipn_currency( $invoice, $currency ) {
157 157
 
158
-		if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) {
158
+        if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) {
159 159
 
160
-			/* translators: %s: currency code. */
161
-			$invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) );
160
+            /* translators: %s: currency code. */
161
+            $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) );
162 162
 
163
-			wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true );
164
-		}
163
+            wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true );
164
+        }
165 165
 
166
-		wpinv_error_log( $currency, 'Validated IPN Currency', false );
167
-	}
166
+        wpinv_error_log( $currency, 'Validated IPN Currency', false );
167
+    }
168 168
 
169
-	/**
170
-	 * Check payment amount from IPN matches the invoice.
171
-	 *
172
-	 * @param WPInv_Invoice $invoice          Invoice object.
173
-	 * @param float   $amount amount to validate.
174
-	 */
175
-	protected function validate_ipn_amount( $invoice, $amount ) {
176
-		if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) {
169
+    /**
170
+     * Check payment amount from IPN matches the invoice.
171
+     *
172
+     * @param WPInv_Invoice $invoice          Invoice object.
173
+     * @param float   $amount amount to validate.
174
+     */
175
+    protected function validate_ipn_amount( $invoice, $amount ) {
176
+        if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) {
177 177
 
178
-			/* translators: %s: Amount. */
179
-			$invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) );
178
+            /* translators: %s: Amount. */
179
+            $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) );
180 180
 
181
-			wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true );
182
-		}
181
+            wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true );
182
+        }
183 183
 
184
-		wpinv_error_log( $amount, 'Validated IPN Amount', false );
185
-	}
184
+        wpinv_error_log( $amount, 'Validated IPN Amount', false );
185
+    }
186 186
 
187
-	/**
188
-	 * Verify receiver email from PayPal.
189
-	 *
190
-	 * @param WPInv_Invoice $invoice          Invoice object.
191
-	 * @param string   $receiver_email Email to validate.
192
-	 */
193
-	protected function validate_ipn_receiver_email( $invoice, $receiver_email ) {
194
-		$paypal_email = wpinv_get_option( 'paypal_email' );
187
+    /**
188
+     * Verify receiver email from PayPal.
189
+     *
190
+     * @param WPInv_Invoice $invoice          Invoice object.
191
+     * @param string   $receiver_email Email to validate.
192
+     */
193
+    protected function validate_ipn_receiver_email( $invoice, $receiver_email ) {
194
+        $paypal_email = wpinv_get_option( 'paypal_email' );
195 195
 
196
-		if ( strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) {
197
-			wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" );
196
+        if ( strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) {
197
+            wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" );
198 198
 
199
-			/* translators: %s: email address . */
200
-			$invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) );
199
+            /* translators: %s: email address . */
200
+            $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) );
201 201
 
202
-			return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true );
203
-		}
202
+            return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true );
203
+        }
204 204
 
205
-		wpinv_error_log( 'Validated PayPal Email', false );
206
-	}
205
+        wpinv_error_log( 'Validated PayPal Email', false );
206
+    }
207 207
 
208
-	/**
209
-	 * Handles one time payments.
210
-	 *
211
-	 * @param WPInv_Invoice $invoice  Invoice object.
212
-	 * @param array    $posted Posted data.
213
-	 */
214
-	protected function ipn_txn_web_accept( $invoice, $posted ) {
208
+    /**
209
+     * Handles one time payments.
210
+     *
211
+     * @param WPInv_Invoice $invoice  Invoice object.
212
+     * @param array    $posted Posted data.
213
+     */
214
+    protected function ipn_txn_web_accept( $invoice, $posted ) {
215 215
 
216
-		// Collect payment details
217
-		$payment_status = strtolower( $posted['payment_status'] );
218
-		$business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] );
216
+        // Collect payment details
217
+        $payment_status = strtolower( $posted['payment_status'] );
218
+        $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] );
219 219
 
220
-		$this->validate_ipn_receiver_email( $invoice, $business_email );
221
-		$this->validate_ipn_currency( $invoice, $posted['mc_currency'] );
220
+        $this->validate_ipn_receiver_email( $invoice, $business_email );
221
+        $this->validate_ipn_currency( $invoice, $posted['mc_currency'] );
222 222
 
223
-		// Update the transaction id.
224
-		if ( ! empty( $posted['txn_id'] ) ) {
225
-			$invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) );
226
-			$invoice->save();
227
-		}
223
+        // Update the transaction id.
224
+        if ( ! empty( $posted['txn_id'] ) ) {
225
+            $invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) );
226
+            $invoice->save();
227
+        }
228 228
 
229
-		$invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) );
229
+        $invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) );
230 230
 
231
-		// Process a refund.
232
-		if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) {
231
+        // Process a refund.
232
+        if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) {
233 233
 
234
-			update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 );
234
+            update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 );
235 235
 
236
-			if ( ! $invoice->is_refunded() ) {
237
-				$invoice->update_status( 'wpi-refunded', $posted['reason_code'] );
238
-			}
236
+            if ( ! $invoice->is_refunded() ) {
237
+                $invoice->update_status( 'wpi-refunded', $posted['reason_code'] );
238
+            }
239 239
 
240
-			return wpinv_error_log( $posted['reason_code'], false );
241
-		}
240
+            return wpinv_error_log( $posted['reason_code'], false );
241
+        }
242 242
 
243
-		// Process payments.
244
-		if ( $payment_status == 'completed' ) {
243
+        // Process payments.
244
+        if ( $payment_status == 'completed' ) {
245 245
 
246
-			if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) {
247
-				return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false );
248
-			}
246
+            if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) {
247
+                return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false );
248
+            }
249 249
 
250
-			$this->validate_ipn_amount( $invoice, $posted['mc_gross'] );
250
+            $this->validate_ipn_amount( $invoice, $posted['mc_gross'] );
251 251
 
252
-			$note = '';
252
+            $note = '';
253 253
 
254
-			if ( ! empty( $posted['mc_fee'] ) ) {
255
-				$note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) );
256
-			}
254
+            if ( ! empty( $posted['mc_fee'] ) ) {
255
+                $note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) );
256
+            }
257 257
 
258
-			if ( ! empty( $posted['payer_status'] ) ) {
259
-				$note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) );
260
-			}
258
+            if ( ! empty( $posted['payer_status'] ) ) {
259
+                $note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) );
260
+            }
261 261
 
262
-			$invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) );
263
-			return wpinv_error_log( 'Invoice marked as paid.', false );
262
+            $invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) );
263
+            return wpinv_error_log( 'Invoice marked as paid.', false );
264 264
 
265
-		}
265
+        }
266 266
 
267
-		// Pending payments.
268
-		if ( $payment_status == 'pending' ) {
267
+        // Pending payments.
268
+        if ( $payment_status == 'pending' ) {
269 269
 
270
-			/* translators: %s: pending reason. */
271
-			$invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) );
270
+            /* translators: %s: pending reason. */
271
+            $invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) );
272 272
 
273
-			return wpinv_error_log( 'Invoice marked as "payment held".', false );
274
-		}
273
+            return wpinv_error_log( 'Invoice marked as "payment held".', false );
274
+        }
275 275
 
276
-		/* translators: %s: payment status. */
277
-		$invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) );
276
+        /* translators: %s: payment status. */
277
+        $invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) );
278 278
 
279
-	}
279
+    }
280 280
 
281
-	/**
282
-	 * Handles one time payments.
283
-	 *
284
-	 * @param WPInv_Invoice $invoice  Invoice object.
285
-	 * @param array    $posted Posted data.
286
-	 */
287
-	protected function ipn_txn_cart( $invoice, $posted ) {
288
-		$this->ipn_txn_web_accept( $invoice, $posted );
289
-	}
281
+    /**
282
+     * Handles one time payments.
283
+     *
284
+     * @param WPInv_Invoice $invoice  Invoice object.
285
+     * @param array    $posted Posted data.
286
+     */
287
+    protected function ipn_txn_cart( $invoice, $posted ) {
288
+        $this->ipn_txn_web_accept( $invoice, $posted );
289
+    }
290 290
 
291
-	/**
292
-	 * Handles subscription sign ups.
293
-	 *
294
-	 * @param WPInv_Invoice $invoice  Invoice object.
295
-	 * @param array    $posted Posted data.
296
-	 */
297
-	protected function ipn_txn_subscr_signup( $invoice, $posted ) {
291
+    /**
292
+     * Handles subscription sign ups.
293
+     *
294
+     * @param WPInv_Invoice $invoice  Invoice object.
295
+     * @param array    $posted Posted data.
296
+     */
297
+    protected function ipn_txn_subscr_signup( $invoice, $posted ) {
298 298
 
299
-		wpinv_error_log( 'Processing subscription signup', false );
299
+        wpinv_error_log( 'Processing subscription signup', false );
300 300
 
301
-		// Make sure the invoice has a subscription.
302
-		$subscription = getpaid_get_invoice_subscription( $invoice );
301
+        // Make sure the invoice has a subscription.
302
+        $subscription = getpaid_get_invoice_subscription( $invoice );
303 303
 
304
-		if ( empty( $subscription ) ) {
305
-			return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
306
-		}
304
+        if ( empty( $subscription ) ) {
305
+            return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
306
+        }
307 307
 
308
-		wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false );
308
+        wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false );
309 309
 
310
-		// Validate the IPN.
311
-		$business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] );
312
-		$this->validate_ipn_receiver_email( $invoice, $business_email );
313
-		$this->validate_ipn_currency( $invoice, $posted['mc_currency'] );
310
+        // Validate the IPN.
311
+        $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] );
312
+        $this->validate_ipn_receiver_email( $invoice, $business_email );
313
+        $this->validate_ipn_currency( $invoice, $posted['mc_currency'] );
314 314
 
315
-		// Activate the subscription.
316
-		$duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() );
317
-		$subscription->set_date_created( current_time( 'mysql' ) );
318
-		$subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) );
319
-		$subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) );
320
-		$subscription->activate();
315
+        // Activate the subscription.
316
+        $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() );
317
+        $subscription->set_date_created( current_time( 'mysql' ) );
318
+        $subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) );
319
+        $subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) );
320
+        $subscription->activate();
321 321
 
322
-		// Set the transaction id.
323
-		if ( ! empty( $posted['txn_id'] ) ) {
324
-			$invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true );
325
-			$invoice->set_transaction_id( $posted['txn_id'] );
326
-		}
322
+        // Set the transaction id.
323
+        if ( ! empty( $posted['txn_id'] ) ) {
324
+            $invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true );
325
+            $invoice->set_transaction_id( $posted['txn_id'] );
326
+        }
327 327
 
328
-		// Update the payment status.
329
-		$invoice->mark_paid();
328
+        // Update the payment status.
329
+        $invoice->mark_paid();
330 330
 
331
-		$invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true );
331
+        $invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true );
332 332
 
333
-		wpinv_error_log( 'Subscription started.', false );
334
-	}
333
+        wpinv_error_log( 'Subscription started.', false );
334
+    }
335 335
 
336
-	/**
337
-	 * Handles subscription renewals.
338
-	 *
339
-	 * @param WPInv_Invoice $invoice  Invoice object.
340
-	 * @param array    $posted Posted data.
341
-	 */
342
-	protected function ipn_txn_subscr_payment( $invoice, $posted ) {
336
+    /**
337
+     * Handles subscription renewals.
338
+     *
339
+     * @param WPInv_Invoice $invoice  Invoice object.
340
+     * @param array    $posted Posted data.
341
+     */
342
+    protected function ipn_txn_subscr_payment( $invoice, $posted ) {
343 343
 
344
-		// Make sure the invoice has a subscription.
345
-		$subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
344
+        // Make sure the invoice has a subscription.
345
+        $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
346 346
 
347
-		if ( empty( $subscription ) ) {
348
-			return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
349
-		}
347
+        if ( empty( $subscription ) ) {
348
+            return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
349
+        }
350 350
 
351
-		wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false );
351
+        wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false );
352 352
 
353
-		// PayPal sends a subscr_payment for the first payment too.
354
-		$date_completed = getpaid_format_date( $invoice->get_date_completed() );
355
-		$date_created   = getpaid_format_date( $invoice->get_date_created() );
356
-		$today_date     = getpaid_format_date( current_time( 'mysql' ) );
357
-		$payment_date   = getpaid_format_date( $posted['payment_date'] );
358
-		$subscribe_date = getpaid_format_date( $subscription->get_date_created() );
359
-		$dates          = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) );
353
+        // PayPal sends a subscr_payment for the first payment too.
354
+        $date_completed = getpaid_format_date( $invoice->get_date_completed() );
355
+        $date_created   = getpaid_format_date( $invoice->get_date_created() );
356
+        $today_date     = getpaid_format_date( current_time( 'mysql' ) );
357
+        $payment_date   = getpaid_format_date( $posted['payment_date'] );
358
+        $subscribe_date = getpaid_format_date( $subscription->get_date_created() );
359
+        $dates          = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) );
360 360
 
361
-		foreach ( $dates as $date ) {
361
+        foreach ( $dates as $date ) {
362 362
 
363
-			if ( $date !== $today_date && $date !== $payment_date ) {
364
-				continue;
365
-			}
363
+            if ( $date !== $today_date && $date !== $payment_date ) {
364
+                continue;
365
+            }
366 366
 
367
-			if ( ! empty( $posted['txn_id'] ) ) {
368
-				$invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) );
369
-				$invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), sanitize_text_field( $posted['txn_id'] ) ), false, false, true );
370
-			}
367
+            if ( ! empty( $posted['txn_id'] ) ) {
368
+                $invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) );
369
+                $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), sanitize_text_field( $posted['txn_id'] ) ), false, false, true );
370
+            }
371 371
 
372
-			return $invoice->mark_paid();
373
-
374
-		}
372
+            return $invoice->mark_paid();
373
+
374
+        }
375 375
 
376
-		wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false );
377
-
378
-		// Abort if the payment is already recorded.
379
-		if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) {
380
-			return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] . ' has already been processed', false );
381
-		}
382
-
383
-		$args = array(
384
-			'transaction_id' => $posted['txn_id'],
385
-			'gateway'        => $this->id,
386
-		);
387
-
388
-		$invoice = wpinv_get_invoice( $subscription->add_payment( $args ) );
376
+        wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false );
377
+
378
+        // Abort if the payment is already recorded.
379
+        if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) {
380
+            return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] . ' has already been processed', false );
381
+        }
382
+
383
+        $args = array(
384
+            'transaction_id' => $posted['txn_id'],
385
+            'gateway'        => $this->id,
386
+        );
387
+
388
+        $invoice = wpinv_get_invoice( $subscription->add_payment( $args ) );
389 389
 
390
-		if ( empty( $invoice ) ) {
391
-			return;
392
-		}
390
+        if ( empty( $invoice ) ) {
391
+            return;
392
+        }
393 393
 
394
-		$invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true );
395
-		$invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true );
394
+        $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true );
395
+        $invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true );
396 396
 
397
-		$subscription->renew();
398
-		wpinv_error_log( 'Subscription renewed.', false );
397
+        $subscription->renew();
398
+        wpinv_error_log( 'Subscription renewed.', false );
399 399
 
400
-	}
400
+    }
401 401
 
402
-	/**
403
-	 * Handles subscription cancelations.
404
-	 *
405
-	 * @param WPInv_Invoice $invoice  Invoice object.
406
-	 */
407
-	protected function ipn_txn_subscr_cancel( $invoice ) {
402
+    /**
403
+     * Handles subscription cancelations.
404
+     *
405
+     * @param WPInv_Invoice $invoice  Invoice object.
406
+     */
407
+    protected function ipn_txn_subscr_cancel( $invoice ) {
408 408
 
409
-		// Make sure the invoice has a subscription.
410
-		$subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
411
-
412
-		if ( empty( $subscription ) ) {
413
-			return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
414
-		}
415
-
416
-		wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false );
417
-		$subscription->cancel();
418
-		wpinv_error_log( 'Subscription cancelled.', false );
409
+        // Make sure the invoice has a subscription.
410
+        $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
411
+
412
+        if ( empty( $subscription ) ) {
413
+            return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
414
+        }
415
+
416
+        wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false );
417
+        $subscription->cancel();
418
+        wpinv_error_log( 'Subscription cancelled.', false );
419 419
 
420
-	}
420
+    }
421 421
 
422
-	/**
423
-	 * Handles subscription completions.
424
-	 *
425
-	 * @param WPInv_Invoice $invoice  Invoice object.
426
-	 * @param array    $posted Posted data.
427
-	 */
428
-	protected function ipn_txn_subscr_eot( $invoice ) {
422
+    /**
423
+     * Handles subscription completions.
424
+     *
425
+     * @param WPInv_Invoice $invoice  Invoice object.
426
+     * @param array    $posted Posted data.
427
+     */
428
+    protected function ipn_txn_subscr_eot( $invoice ) {
429 429
 
430
-		// Make sure the invoice has a subscription.
431
-		$subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
430
+        // Make sure the invoice has a subscription.
431
+        $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
432 432
 
433
-		if ( empty( $subscription ) ) {
434
-			return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
435
-		}
433
+        if ( empty( $subscription ) ) {
434
+            return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
435
+        }
436 436
 
437
-		wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false );
438
-		$subscription->complete();
439
-		wpinv_error_log( 'Subscription completed.', false );
437
+        wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false );
438
+        $subscription->complete();
439
+        wpinv_error_log( 'Subscription completed.', false );
440 440
 
441
-	}
441
+    }
442 442
 
443
-	/**
444
-	 * Handles subscription fails.
445
-	 *
446
-	 * @param WPInv_Invoice $invoice  Invoice object.
447
-	 * @param array    $posted Posted data.
448
-	 */
449
-	protected function ipn_txn_subscr_failed( $invoice ) {
443
+    /**
444
+     * Handles subscription fails.
445
+     *
446
+     * @param WPInv_Invoice $invoice  Invoice object.
447
+     * @param array    $posted Posted data.
448
+     */
449
+    protected function ipn_txn_subscr_failed( $invoice ) {
450 450
 
451
-		// Make sure the invoice has a subscription.
452
-		$subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
451
+        // Make sure the invoice has a subscription.
452
+        $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
453 453
 
454
-		if ( empty( $subscription ) ) {
455
-			return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
456
-		}
454
+        if ( empty( $subscription ) ) {
455
+            return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
456
+        }
457 457
 
458
-		wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false );
459
-		$subscription->failing();
460
-		wpinv_error_log( 'Subscription marked as failing.', false );
458
+        wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false );
459
+        $subscription->failing();
460
+        wpinv_error_log( 'Subscription marked as failing.', false );
461 461
 
462
-	}
462
+    }
463 463
 
464
-	/**
465
-	 * Handles subscription suspensions.
466
-	 *
467
-	 * @param WPInv_Invoice $invoice  Invoice object.
468
-	 * @param array    $posted Posted data.
469
-	 */
470
-	protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) {
464
+    /**
465
+     * Handles subscription suspensions.
466
+     *
467
+     * @param WPInv_Invoice $invoice  Invoice object.
468
+     * @param array    $posted Posted data.
469
+     */
470
+    protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) {
471 471
 
472
-		// Make sure the invoice has a subscription.
473
-		$subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
472
+        // Make sure the invoice has a subscription.
473
+        $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice );
474 474
 
475
-		if ( empty( $subscription ) ) {
476
-			return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
477
-		}
478
-
479
-		wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false );
480
-		$subscription->cancel();
481
-		wpinv_error_log( 'Subscription cancelled.', false );
482
-	}
475
+        if ( empty( $subscription ) ) {
476
+            return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false );
477
+        }
478
+
479
+        wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false );
480
+        $subscription->cancel();
481
+        wpinv_error_log( 'Subscription cancelled.', false );
482
+    }
483 483
 
484 484
 }
Please login to merge, or discard this patch.
invoicing.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,16 +19,16 @@  discard block
 block discarded – undo
19 19
 
20 20
 // Define constants.
21 21
 if ( ! defined( 'WPINV_PLUGIN_FILE' ) ) {
22
-	define( 'WPINV_PLUGIN_FILE', __FILE__ );
22
+    define( 'WPINV_PLUGIN_FILE', __FILE__ );
23 23
 }
24 24
 
25 25
 if ( ! defined( 'WPINV_VERSION' ) ) {
26
-	define( 'WPINV_VERSION', '2.6.14' );
26
+    define( 'WPINV_VERSION', '2.6.14' );
27 27
 }
28 28
 
29 29
 // Include the main Invoicing class.
30 30
 if ( ! class_exists( 'WPInv_Plugin', false ) ) {
31
-	require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php';
31
+    require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php';
32 32
 }
33 33
 
34 34
 /**
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $GLOBALS['invoicing'] = new WPInv_Plugin();
44 44
     }
45 45
 
46
-	return $GLOBALS['invoicing'];
46
+    return $GLOBALS['invoicing'];
47 47
 }
48 48
 
49 49
 /**
Please login to merge, or discard this patch.
vendor/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php 1 patch
Indentation   +433 added lines, -433 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * Bail if we are not in WP.
14 14
  */
15 15
 if ( ! defined( 'ABSPATH' ) ) {
16
-	exit;
16
+    exit;
17 17
 }
18 18
 
19 19
 /**
@@ -21,308 +21,308 @@  discard block
 block discarded – undo
21 21
  */
22 22
 if ( ! class_exists( 'WP_Font_Awesome_Settings' ) ) {
23 23
 
24
-	/**
25
-	 * A Class to be able to change settings for Font Awesome.
26
-	 *
27
-	 * Class WP_Font_Awesome_Settings
28
-	 * @since 1.0.10 Now able to pass wp.org theme check.
29
-	 * @since 1.0.11 Font Awesome Pro now supported.
30
-	 * @since 1.0.11 Font Awesome Kits now supported.
31
-	 * @since 1.0.13 RTL language support added.
32
-	 * @since 1.0.14 Warning added for v6 pro requires kit and will now not work if official FA plugin installed.
33
-	 * @ver 1.0.14
34
-	 * @todo decide how to implement textdomain
35
-	 */
36
-	class WP_Font_Awesome_Settings {
37
-
38
-		/**
39
-		 * Class version version.
40
-		 *
41
-		 * @var string
42
-		 */
43
-		public $version = '1.0.14';
44
-
45
-		/**
46
-		 * Class textdomain.
47
-		 *
48
-		 * @var string
49
-		 */
50
-		public $textdomain = 'font-awesome-settings';
51
-
52
-		/**
53
-		 * Latest version of Font Awesome at time of publish published.
54
-		 *
55
-		 * @var string
56
-		 */
57
-		public $latest = "5.8.2";
58
-
59
-		/**
60
-		 * The title.
61
-		 *
62
-		 * @var string
63
-		 */
64
-		public $name = 'Font Awesome';
65
-
66
-		/**
67
-		 * Holds the settings values.
68
-		 *
69
-		 * @var array
70
-		 */
71
-		private $settings;
72
-
73
-		/**
74
-		 * WP_Font_Awesome_Settings instance.
75
-		 *
76
-		 * @access private
77
-		 * @since  1.0.0
78
-		 * @var    WP_Font_Awesome_Settings There can be only one!
79
-		 */
80
-		private static $instance = null;
81
-
82
-		/**
83
-		 * Main WP_Font_Awesome_Settings Instance.
84
-		 *
85
-		 * Ensures only one instance of WP_Font_Awesome_Settings is loaded or can be loaded.
86
-		 *
87
-		 * @since 1.0.0
88
-		 * @static
89
-		 * @return WP_Font_Awesome_Settings - Main instance.
90
-		 */
91
-		public static function instance() {
92
-			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WP_Font_Awesome_Settings ) ) {
93
-				self::$instance = new WP_Font_Awesome_Settings;
94
-
95
-				add_action( 'init', array( self::$instance, 'init' ) ); // set settings
96
-
97
-				if ( is_admin() ) {
98
-					add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
99
-					add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
100
-					add_action( 'admin_notices', array( self::$instance, 'admin_notices' ) );
101
-				}
102
-
103
-				do_action( 'wp_font_awesome_settings_loaded' );
104
-			}
105
-
106
-			return self::$instance;
107
-		}
108
-
109
-		/**
110
-		 * Initiate the settings and add the required action hooks.
111
-		 *
112
-		 * @since 1.0.8 Settings name wrong - FIXED
113
-		 */
114
-		public function init() {
115
-			$this->settings = $this->get_settings();
116
-
117
-			// check if the official plugin is active and use that instead if so.
118
-			if ( ! defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
119
-
120
-				if ( $this->settings['type'] == 'CSS' ) {
121
-
122
-					if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) {
123
-						add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 );
124
-					}
125
-
126
-					if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) {
127
-						add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 );
128
-					}
129
-
130
-				} else {
131
-
132
-					if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) {
133
-						add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 );
134
-					}
135
-
136
-					if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) {
137
-						add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 );
138
-					}
139
-				}
140
-
141
-				// remove font awesome if set to do so
142
-				if ( $this->settings['dequeue'] == '1' ) {
143
-					add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 );
144
-				}
145
-			}
146
-
147
-		}
148
-
149
-		/**
150
-		 * Adds the Font Awesome styles.
151
-		 */
152
-		public function enqueue_style() {
153
-			// build url
154
-			$url = $this->get_url();
155
-
156
-			wp_deregister_style( 'font-awesome' ); // deregister in case its already there
157
-			wp_register_style( 'font-awesome', $url, array(), null );
158
-			wp_enqueue_style( 'font-awesome' );
159
-
160
-			// RTL language support CSS.
161
-			if ( is_rtl() ) {
162
-				wp_add_inline_style( 'font-awesome', $this->rtl_inline_css() );
163
-			}
164
-
165
-			if ( $this->settings['shims'] ) {
166
-				$url = $this->get_url( true );
167
-				wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there
168
-				wp_register_style( 'font-awesome-shims', $url, array(), null );
169
-				wp_enqueue_style( 'font-awesome-shims' );
170
-			}
171
-		}
172
-
173
-		/**
174
-		 * Adds the Font Awesome JS.
175
-		 */
176
-		public function enqueue_scripts() {
177
-			// build url
178
-			$url = $this->get_url();
179
-
180
-			$deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script';
181
-			call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there
182
-			wp_register_script( 'font-awesome', $url, array(), null );
183
-			wp_enqueue_script( 'font-awesome' );
184
-
185
-			if ( $this->settings['shims'] ) {
186
-				$url = $this->get_url( true );
187
-				call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there
188
-				wp_register_script( 'font-awesome-shims', $url, array(), null );
189
-				wp_enqueue_script( 'font-awesome-shims' );
190
-			}
191
-		}
192
-
193
-		/**
194
-		 * Get the url of the Font Awesome files.
195
-		 *
196
-		 * @param bool $shims If this is a shim file or not.
197
-		 *
198
-		 * @return string The url to the file.
199
-		 */
200
-		public function get_url( $shims = false ) {
201
-			$script  = $shims ? 'v4-shims' : 'all';
202
-			$sub     = $this->settings['pro'] ? 'pro' : 'use';
203
-			$type    = $this->settings['type'];
204
-			$version = $this->settings['version'];
205
-			$kit_url = $this->settings['kit-url'] ? esc_url( $this->settings['kit-url'] ) : '';
206
-			$url     = '';
207
-
208
-			if ( $type == 'KIT' && $kit_url ) {
209
-				if ( $shims ) {
210
-					// if its a kit then we don't add shims here
211
-					return '';
212
-				}
213
-				$url .= $kit_url; // CDN
214
-				$url .= "?wpfas=true"; // set our var so our version is not removed
215
-			} else {
216
-				$url .= "https://$sub.fontawesome.com/releases/"; // CDN
217
-				$url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version
218
-				$url .= $type == 'CSS' ? 'css/' : 'js/'; // type
219
-				$url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type
220
-				$url .= "?wpfas=true"; // set our var so our version is not removed
221
-			}
222
-
223
-			return $url;
224
-		}
225
-
226
-		/**
227
-		 * Try and remove any other versions of Font Awesome added by other plugins/themes.
228
-		 *
229
-		 * Uses the clean_url filter to try and remove any other Font Awesome files added, it can also add pseudo-elements flag for the JS version.
230
-		 *
231
-		 * @param $url
232
-		 * @param $original_url
233
-		 * @param $_context
234
-		 *
235
-		 * @return string The filtered url.
236
-		 */
237
-		public function remove_font_awesome( $url, $original_url, $_context ) {
238
-
239
-			if ( $_context == 'display'
240
-			     && ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false )
241
-			     && ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false )
242
-			) {// it's a font-awesome-url (probably)
243
-
244
-				if ( strstr( $url, "wpfas=true" ) !== false ) {
245
-					if ( $this->settings['type'] == 'JS' ) {
246
-						if ( $this->settings['js-pseudo'] ) {
247
-							$url .= "' data-search-pseudo-elements defer='defer";
248
-						} else {
249
-							$url .= "' defer='defer";
250
-						}
251
-					}
252
-				} else {
253
-					$url = ''; // removing the url removes the file
254
-				}
255
-
256
-			}
257
-
258
-			return $url;
259
-		}
260
-
261
-		/**
262
-		 * Register the database settings with WordPress.
263
-		 */
264
-		public function register_settings() {
265
-			register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' );
266
-		}
267
-
268
-		/**
269
-		 * Add the WordPress settings menu item.
270
-		 * @since 1.0.10 Calling function name direct will fail theme check so we don't.
271
-		 */
272
-		public function menu_item() {
273
-			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
274
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array(
275
-				$this,
276
-				'settings_page'
277
-			) );
278
-		}
279
-
280
-		/**
281
-		 * Get the current Font Awesome output settings.
282
-		 *
283
-		 * @return array The array of settings.
284
-		 */
285
-		public function get_settings() {
286
-
287
-			$db_settings = get_option( 'wp-font-awesome-settings' );
288
-
289
-			$defaults = array(
290
-				'type'      => 'CSS', // type to use, CSS or JS or KIT
291
-				'version'   => '', // latest
292
-				'enqueue'   => '', // front and backend
293
-				'shims'     => '0', // default OFF now in 2020
294
-				'js-pseudo' => '0', // if the pseudo elements flag should be set (CPU intensive)
295
-				'dequeue'   => '0', // if we should try to remove other versions added by other plugins/themes
296
-				'pro'       => '0', // if pro CDN url should be used
297
-				'kit-url'   => '', // the kit url
298
-			);
299
-
300
-			$settings = wp_parse_args( $db_settings, $defaults );
301
-
302
-			/**
303
-			 * Filter the Font Awesome settings.
304
-			 *
305
-			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
306
-			 */
307
-			return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults );
308
-		}
309
-
310
-
311
-		/**
312
-		 * The settings page html output.
313
-		 */
314
-		public function settings_page() {
315
-			if ( ! current_user_can( 'manage_options' ) ) {
316
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) );
317
-			}
318
-
319
-			// a hidden way to force the update of the version number via api instead of waiting the 48 hours
320
-			if ( isset( $_REQUEST['force-version-check'] ) ) {
321
-				$this->get_latest_version( $force_api = true );
322
-			}
323
-
324
-			if ( ! defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
325
-				?>
24
+    /**
25
+     * A Class to be able to change settings for Font Awesome.
26
+     *
27
+     * Class WP_Font_Awesome_Settings
28
+     * @since 1.0.10 Now able to pass wp.org theme check.
29
+     * @since 1.0.11 Font Awesome Pro now supported.
30
+     * @since 1.0.11 Font Awesome Kits now supported.
31
+     * @since 1.0.13 RTL language support added.
32
+     * @since 1.0.14 Warning added for v6 pro requires kit and will now not work if official FA plugin installed.
33
+     * @ver 1.0.14
34
+     * @todo decide how to implement textdomain
35
+     */
36
+    class WP_Font_Awesome_Settings {
37
+
38
+        /**
39
+         * Class version version.
40
+         *
41
+         * @var string
42
+         */
43
+        public $version = '1.0.14';
44
+
45
+        /**
46
+         * Class textdomain.
47
+         *
48
+         * @var string
49
+         */
50
+        public $textdomain = 'font-awesome-settings';
51
+
52
+        /**
53
+         * Latest version of Font Awesome at time of publish published.
54
+         *
55
+         * @var string
56
+         */
57
+        public $latest = "5.8.2";
58
+
59
+        /**
60
+         * The title.
61
+         *
62
+         * @var string
63
+         */
64
+        public $name = 'Font Awesome';
65
+
66
+        /**
67
+         * Holds the settings values.
68
+         *
69
+         * @var array
70
+         */
71
+        private $settings;
72
+
73
+        /**
74
+         * WP_Font_Awesome_Settings instance.
75
+         *
76
+         * @access private
77
+         * @since  1.0.0
78
+         * @var    WP_Font_Awesome_Settings There can be only one!
79
+         */
80
+        private static $instance = null;
81
+
82
+        /**
83
+         * Main WP_Font_Awesome_Settings Instance.
84
+         *
85
+         * Ensures only one instance of WP_Font_Awesome_Settings is loaded or can be loaded.
86
+         *
87
+         * @since 1.0.0
88
+         * @static
89
+         * @return WP_Font_Awesome_Settings - Main instance.
90
+         */
91
+        public static function instance() {
92
+            if ( ! isset( self::$instance ) && ! ( self::$instance instanceof WP_Font_Awesome_Settings ) ) {
93
+                self::$instance = new WP_Font_Awesome_Settings;
94
+
95
+                add_action( 'init', array( self::$instance, 'init' ) ); // set settings
96
+
97
+                if ( is_admin() ) {
98
+                    add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
99
+                    add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
100
+                    add_action( 'admin_notices', array( self::$instance, 'admin_notices' ) );
101
+                }
102
+
103
+                do_action( 'wp_font_awesome_settings_loaded' );
104
+            }
105
+
106
+            return self::$instance;
107
+        }
108
+
109
+        /**
110
+         * Initiate the settings and add the required action hooks.
111
+         *
112
+         * @since 1.0.8 Settings name wrong - FIXED
113
+         */
114
+        public function init() {
115
+            $this->settings = $this->get_settings();
116
+
117
+            // check if the official plugin is active and use that instead if so.
118
+            if ( ! defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
119
+
120
+                if ( $this->settings['type'] == 'CSS' ) {
121
+
122
+                    if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) {
123
+                        add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 );
124
+                    }
125
+
126
+                    if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) {
127
+                        add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 5000 );
128
+                    }
129
+
130
+                } else {
131
+
132
+                    if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'frontend' ) {
133
+                        add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 );
134
+                    }
135
+
136
+                    if ( $this->settings['enqueue'] == '' || $this->settings['enqueue'] == 'backend' ) {
137
+                        add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 5000 );
138
+                    }
139
+                }
140
+
141
+                // remove font awesome if set to do so
142
+                if ( $this->settings['dequeue'] == '1' ) {
143
+                    add_action( 'clean_url', array( $this, 'remove_font_awesome' ), 5000, 3 );
144
+                }
145
+            }
146
+
147
+        }
148
+
149
+        /**
150
+         * Adds the Font Awesome styles.
151
+         */
152
+        public function enqueue_style() {
153
+            // build url
154
+            $url = $this->get_url();
155
+
156
+            wp_deregister_style( 'font-awesome' ); // deregister in case its already there
157
+            wp_register_style( 'font-awesome', $url, array(), null );
158
+            wp_enqueue_style( 'font-awesome' );
159
+
160
+            // RTL language support CSS.
161
+            if ( is_rtl() ) {
162
+                wp_add_inline_style( 'font-awesome', $this->rtl_inline_css() );
163
+            }
164
+
165
+            if ( $this->settings['shims'] ) {
166
+                $url = $this->get_url( true );
167
+                wp_deregister_style( 'font-awesome-shims' ); // deregister in case its already there
168
+                wp_register_style( 'font-awesome-shims', $url, array(), null );
169
+                wp_enqueue_style( 'font-awesome-shims' );
170
+            }
171
+        }
172
+
173
+        /**
174
+         * Adds the Font Awesome JS.
175
+         */
176
+        public function enqueue_scripts() {
177
+            // build url
178
+            $url = $this->get_url();
179
+
180
+            $deregister_function = 'wp' . '_' . 'deregister' . '_' . 'script';
181
+            call_user_func( $deregister_function, 'font-awesome' ); // deregister in case its already there
182
+            wp_register_script( 'font-awesome', $url, array(), null );
183
+            wp_enqueue_script( 'font-awesome' );
184
+
185
+            if ( $this->settings['shims'] ) {
186
+                $url = $this->get_url( true );
187
+                call_user_func( $deregister_function, 'font-awesome-shims' ); // deregister in case its already there
188
+                wp_register_script( 'font-awesome-shims', $url, array(), null );
189
+                wp_enqueue_script( 'font-awesome-shims' );
190
+            }
191
+        }
192
+
193
+        /**
194
+         * Get the url of the Font Awesome files.
195
+         *
196
+         * @param bool $shims If this is a shim file or not.
197
+         *
198
+         * @return string The url to the file.
199
+         */
200
+        public function get_url( $shims = false ) {
201
+            $script  = $shims ? 'v4-shims' : 'all';
202
+            $sub     = $this->settings['pro'] ? 'pro' : 'use';
203
+            $type    = $this->settings['type'];
204
+            $version = $this->settings['version'];
205
+            $kit_url = $this->settings['kit-url'] ? esc_url( $this->settings['kit-url'] ) : '';
206
+            $url     = '';
207
+
208
+            if ( $type == 'KIT' && $kit_url ) {
209
+                if ( $shims ) {
210
+                    // if its a kit then we don't add shims here
211
+                    return '';
212
+                }
213
+                $url .= $kit_url; // CDN
214
+                $url .= "?wpfas=true"; // set our var so our version is not removed
215
+            } else {
216
+                $url .= "https://$sub.fontawesome.com/releases/"; // CDN
217
+                $url .= ! empty( $version ) ? "v" . $version . '/' : "v" . $this->get_latest_version() . '/'; // version
218
+                $url .= $type == 'CSS' ? 'css/' : 'js/'; // type
219
+                $url .= $type == 'CSS' ? $script . '.css' : $script . '.js'; // type
220
+                $url .= "?wpfas=true"; // set our var so our version is not removed
221
+            }
222
+
223
+            return $url;
224
+        }
225
+
226
+        /**
227
+         * Try and remove any other versions of Font Awesome added by other plugins/themes.
228
+         *
229
+         * Uses the clean_url filter to try and remove any other Font Awesome files added, it can also add pseudo-elements flag for the JS version.
230
+         *
231
+         * @param $url
232
+         * @param $original_url
233
+         * @param $_context
234
+         *
235
+         * @return string The filtered url.
236
+         */
237
+        public function remove_font_awesome( $url, $original_url, $_context ) {
238
+
239
+            if ( $_context == 'display'
240
+                 && ( strstr( $url, "fontawesome" ) !== false || strstr( $url, "font-awesome" ) !== false )
241
+                 && ( strstr( $url, ".js" ) !== false || strstr( $url, ".css" ) !== false )
242
+            ) {// it's a font-awesome-url (probably)
243
+
244
+                if ( strstr( $url, "wpfas=true" ) !== false ) {
245
+                    if ( $this->settings['type'] == 'JS' ) {
246
+                        if ( $this->settings['js-pseudo'] ) {
247
+                            $url .= "' data-search-pseudo-elements defer='defer";
248
+                        } else {
249
+                            $url .= "' defer='defer";
250
+                        }
251
+                    }
252
+                } else {
253
+                    $url = ''; // removing the url removes the file
254
+                }
255
+
256
+            }
257
+
258
+            return $url;
259
+        }
260
+
261
+        /**
262
+         * Register the database settings with WordPress.
263
+         */
264
+        public function register_settings() {
265
+            register_setting( 'wp-font-awesome-settings', 'wp-font-awesome-settings' );
266
+        }
267
+
268
+        /**
269
+         * Add the WordPress settings menu item.
270
+         * @since 1.0.10 Calling function name direct will fail theme check so we don't.
271
+         */
272
+        public function menu_item() {
273
+            $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
274
+            call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'wp-font-awesome-settings', array(
275
+                $this,
276
+                'settings_page'
277
+            ) );
278
+        }
279
+
280
+        /**
281
+         * Get the current Font Awesome output settings.
282
+         *
283
+         * @return array The array of settings.
284
+         */
285
+        public function get_settings() {
286
+
287
+            $db_settings = get_option( 'wp-font-awesome-settings' );
288
+
289
+            $defaults = array(
290
+                'type'      => 'CSS', // type to use, CSS or JS or KIT
291
+                'version'   => '', // latest
292
+                'enqueue'   => '', // front and backend
293
+                'shims'     => '0', // default OFF now in 2020
294
+                'js-pseudo' => '0', // if the pseudo elements flag should be set (CPU intensive)
295
+                'dequeue'   => '0', // if we should try to remove other versions added by other plugins/themes
296
+                'pro'       => '0', // if pro CDN url should be used
297
+                'kit-url'   => '', // the kit url
298
+            );
299
+
300
+            $settings = wp_parse_args( $db_settings, $defaults );
301
+
302
+            /**
303
+             * Filter the Font Awesome settings.
304
+             *
305
+             * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
306
+             */
307
+            return $this->settings = apply_filters( 'wp-font-awesome-settings', $settings, $db_settings, $defaults );
308
+        }
309
+
310
+
311
+        /**
312
+         * The settings page html output.
313
+         */
314
+        public function settings_page() {
315
+            if ( ! current_user_can( 'manage_options' ) ) {
316
+                wp_die( __( 'You do not have sufficient permissions to access this page.', 'font-awesome-settings' ) );
317
+            }
318
+
319
+            // a hidden way to force the update of the version number via api instead of waiting the 48 hours
320
+            if ( isset( $_REQUEST['force-version-check'] ) ) {
321
+                $this->get_latest_version( $force_api = true );
322
+            }
323
+
324
+            if ( ! defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
325
+                ?>
326 326
                 <style>
327 327
                     .wpfas-kit-show {
328 328
                         display: none;
@@ -340,10 +340,10 @@  discard block
 block discarded – undo
340 340
                     <h1><?php echo $this->name; ?></h1>
341 341
                     <form method="post" action="options.php" class="fas-settings-form">
342 342
 						<?php
343
-						settings_fields( 'wp-font-awesome-settings' );
344
-						do_settings_sections( 'wp-font-awesome-settings' );
345
-						$kit_set = $this->settings['type'] == 'KIT' ? 'wpfas-kit-set' : '';
346
-						?>
343
+                        settings_fields( 'wp-font-awesome-settings' );
344
+                        do_settings_sections( 'wp-font-awesome-settings' );
345
+                        $kit_set = $this->settings['type'] == 'KIT' ? 'wpfas-kit-set' : '';
346
+                        ?>
347 347
                         <table class="form-table wpfas-table-settings <?php echo esc_attr( $kit_set ); ?>">
348 348
                             <tr valign="top">
349 349
                                 <th scope="row"><label
@@ -369,12 +369,12 @@  discard block
 block discarded – undo
369 369
                                            value="<?php echo esc_attr( $this->settings['kit-url'] ); ?>"
370 370
                                            placeholder="<?php echo 'https://kit.font';echo 'awesome.com/123abc.js'; // this won't pass theme check :(?>"/>
371 371
                                     <span><?php
372
-										echo sprintf(
373
-											__( 'Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings' ),
374
-											'<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/kits"><i class="fas fa-external-link-alt"></i>',
375
-											'</a>'
376
-										);
377
-										?></span>
372
+                                        echo sprintf(
373
+                                            __( 'Requires a free account with Font Awesome. %sGet kit url%s', 'font-awesome-settings' ),
374
+                                            '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/kits"><i class="fas fa-external-link-alt"></i>',
375
+                                            '</a>'
376
+                                        );
377
+                                        ?></span>
378 378
                                 </td>
379 379
                             </tr>
380 380
 
@@ -443,14 +443,14 @@  discard block
 block discarded – undo
443 443
                                     <input type="checkbox" name="wp-font-awesome-settings[pro]"
444 444
                                            value="1" <?php checked( $this->settings['pro'], '1' ); ?> id="wpfas-pro"/>
445 445
                                     <span><?php
446
-										echo sprintf(
447
-											__( 'Requires a subscription. %sLearn more%s  %sManage my allowed domains%s', 'font-awesome-settings' ),
448
-											'<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/referral?a=c9b89e1418">',
449
-											' <i class="fas fa-external-link-alt"></i></a>',
450
-											'<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/account/cdn">',
451
-											' <i class="fas fa-external-link-alt"></i></a>'
452
-										);
453
-										?></span>
446
+                                        echo sprintf(
447
+                                            __( 'Requires a subscription. %sLearn more%s  %sManage my allowed domains%s', 'font-awesome-settings' ),
448
+                                            '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/referral?a=c9b89e1418">',
449
+                                            ' <i class="fas fa-external-link-alt"></i></a>',
450
+                                            '<a rel="noopener noreferrer" target="_blank" href="https://fontawesome.com/account/cdn">',
451
+                                            ' <i class="fas fa-external-link-alt"></i></a>'
452
+                                        );
453
+                                        ?></span>
454 454
                                 </td>
455 455
                             </tr>
456 456
 
@@ -494,8 +494,8 @@  discard block
 block discarded – undo
494 494
                         </table>
495 495
                         <div class="fas-buttons">
496 496
 							<?php
497
-							submit_button();
498
-							?>
497
+                            submit_button();
498
+                            ?>
499 499
                             <p class="submit"><a href="https://fontawesome.com/referral?a=c9b89e1418" class="button button-secondary"><?php _e('Get 14,000+ more icons with Font Awesome Pro','font-awesome-settings'); ?> <i class="fas fa-external-link-alt"></i></a></p>
500 500
 
501 501
                         </div>
@@ -519,126 +519,126 @@  discard block
 block discarded – undo
519 519
                     }
520 520
                 </style>
521 521
 				<?php
522
-			}
523
-		}
524
-
525
-		/**
526
-		 * Check a version number is valid and if so return it or else return an empty string.
527
-		 *
528
-		 * @param $version string The version number to check.
529
-		 *
530
-		 * @since 1.0.6
531
-		 *
532
-		 * @return string Either a valid version number or an empty string.
533
-		 */
534
-		public function validate_version_number( $version ) {
535
-
536
-			if ( version_compare( $version, '0.0.1', '>=' ) >= 0 ) {
537
-				// valid
538
-			} else {
539
-				$version = '';// not validated
540
-			}
541
-
542
-			return $version;
543
-		}
544
-
545
-
546
-		/**
547
-		 * Get the latest version of Font Awesome.
548
-		 *
549
-		 * We check for a cached version and if none we will check for a live version via API and then cache it for 48 hours.
550
-		 *
551
-		 * @since 1.0.7
552
-		 * @return mixed|string The latest version number found.
553
-		 */
554
-		public function get_latest_version( $force_api = false ) {
555
-			$latest_version = $this->latest;
556
-
557
-			$cache = get_transient( 'wp-font-awesome-settings-version' );
558
-
559
-			if ( $cache === false || $force_api ) { // its not set
560
-				$api_ver = $this->get_latest_version_from_api();
561
-				if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) {
562
-					$latest_version = $api_ver;
563
-					set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS );
564
-				}
565
-			} elseif ( $this->validate_version_number( $cache ) ) {
566
-				if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) {
567
-					$latest_version = $cache;
568
-				}
569
-			}
570
-
571
-			return $latest_version;
572
-		}
573
-
574
-		/**
575
-		 * Get the latest Font Awesome version from the github API.
576
-		 *
577
-		 * @since 1.0.7
578
-		 * @return string The latest version number or `0` on API fail.
579
-		 */
580
-		public function get_latest_version_from_api() {
581
-			$version  = "0";
582
-			$response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" );
583
-			if ( ! is_wp_error( $response ) && is_array( $response ) ) {
584
-				$api_response = json_decode( wp_remote_retrieve_body( $response ), true );
585
-				if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) {
586
-					$version = $api_response['tag_name'];
587
-				}
588
-			}
589
-
590
-			return $version;
591
-		}
592
-
593
-		/**
594
-		 * Inline CSS for RTL language support.
595
-		 *
596
-		 * @since 1.0.13
597
-		 * @return string Inline CSS.
598
-		 */
599
-		public function rtl_inline_css() {
600
-			$inline_css = '[dir=rtl] .fa-address,[dir=rtl] .fa-address-card,[dir=rtl] .fa-adjust,[dir=rtl] .fa-alarm-clock,[dir=rtl] .fa-align-left,[dir=rtl] .fa-align-right,[dir=rtl] .fa-analytics,[dir=rtl] .fa-angle-double-left,[dir=rtl] .fa-angle-double-right,[dir=rtl] .fa-angle-left,[dir=rtl] .fa-angle-right,[dir=rtl] .fa-arrow-alt-circle-left,[dir=rtl] .fa-arrow-alt-circle-right,[dir=rtl] .fa-arrow-alt-from-left,[dir=rtl] .fa-arrow-alt-from-right,[dir=rtl] .fa-arrow-alt-left,[dir=rtl] .fa-arrow-alt-right,[dir=rtl] .fa-arrow-alt-square-left,[dir=rtl] .fa-arrow-alt-square-right,[dir=rtl] .fa-arrow-alt-to-left,[dir=rtl] .fa-arrow-alt-to-right,[dir=rtl] .fa-arrow-circle-left,[dir=rtl] .fa-arrow-circle-right,[dir=rtl] .fa-arrow-from-left,[dir=rtl] .fa-arrow-from-right,[dir=rtl] .fa-arrow-left,[dir=rtl] .fa-arrow-right,[dir=rtl] .fa-arrow-square-left,[dir=rtl] .fa-arrow-square-right,[dir=rtl] .fa-arrow-to-left,[dir=rtl] .fa-arrow-to-right,[dir=rtl] .fa-balance-scale-left,[dir=rtl] .fa-balance-scale-right,[dir=rtl] .fa-bed,[dir=rtl] .fa-bed-bunk,[dir=rtl] .fa-bed-empty,[dir=rtl] .fa-border-left,[dir=rtl] .fa-border-right,[dir=rtl] .fa-calendar-check,[dir=rtl] .fa-caret-circle-left,[dir=rtl] .fa-caret-circle-right,[dir=rtl] .fa-caret-left,[dir=rtl] .fa-caret-right,[dir=rtl] .fa-caret-square-left,[dir=rtl] .fa-caret-square-right,[dir=rtl] .fa-cart-arrow-down,[dir=rtl] .fa-cart-plus,[dir=rtl] .fa-chart-area,[dir=rtl] .fa-chart-bar,[dir=rtl] .fa-chart-line,[dir=rtl] .fa-chart-line-down,[dir=rtl] .fa-chart-network,[dir=rtl] .fa-chart-pie,[dir=rtl] .fa-chart-pie-alt,[dir=rtl] .fa-chart-scatter,[dir=rtl] .fa-check-circle,[dir=rtl] .fa-check-square,[dir=rtl] .fa-chevron-circle-left,[dir=rtl] .fa-chevron-circle-right,[dir=rtl] .fa-chevron-double-left,[dir=rtl] .fa-chevron-double-right,[dir=rtl] .fa-chevron-left,[dir=rtl] .fa-chevron-right,[dir=rtl] .fa-chevron-square-left,[dir=rtl] .fa-chevron-square-right,[dir=rtl] .fa-clock,[dir=rtl] .fa-file,[dir=rtl] .fa-file-alt,[dir=rtl] .fa-file-archive,[dir=rtl] .fa-file-audio,[dir=rtl] .fa-file-chart-line,[dir=rtl] .fa-file-chart-pie,[dir=rtl] .fa-file-code,[dir=rtl] .fa-file-excel,[dir=rtl] .fa-file-image,[dir=rtl] .fa-file-pdf,[dir=rtl] .fa-file-powerpoint,[dir=rtl] .fa-file-video,[dir=rtl] .fa-file-word,[dir=rtl] .fa-flag,[dir=rtl] .fa-folder,[dir=rtl] .fa-folder-open,[dir=rtl] .fa-hand-lizard,[dir=rtl] .fa-hand-point-down,[dir=rtl] .fa-hand-point-left,[dir=rtl] .fa-hand-point-right,[dir=rtl] .fa-hand-point-up,[dir=rtl] .fa-hand-scissors,[dir=rtl] .fa-image,[dir=rtl] .fa-long-arrow-alt-left,[dir=rtl] .fa-long-arrow-alt-right,[dir=rtl] .fa-long-arrow-left,[dir=rtl] .fa-long-arrow-right,[dir=rtl] .fa-luggage-cart,[dir=rtl] .fa-moon,[dir=rtl] .fa-pencil,[dir=rtl] .fa-pencil-alt,[dir=rtl] .fa-play-circle,[dir=rtl] .fa-project-diagram,[dir=rtl] .fa-quote-left,[dir=rtl] .fa-quote-right,[dir=rtl] .fa-shopping-cart,[dir=rtl] .fa-thumbs-down,[dir=rtl] .fa-thumbs-up,[dir=rtl] .fa-user-chart{filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);transform:scale(-1,1)}[dir=rtl] .fa-spin{animation-direction:reverse}';
601
-
602
-			return $inline_css;
603
-		}
604
-
605
-		/**
606
-		 * Show any warnings as an admin notice.
607
-		 *
608
-		 * @return void
609
-		 */
610
-		public function admin_notices(){
611
-			$settings = $this->settings;
612
-
613
-			if ( defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
614
-
615
-				if ( ! empty( $_REQUEST['page'] ) && $_REQUEST['page'] == 'wp-font-awesome-settings' ) {
616
-					?>
522
+            }
523
+        }
524
+
525
+        /**
526
+         * Check a version number is valid and if so return it or else return an empty string.
527
+         *
528
+         * @param $version string The version number to check.
529
+         *
530
+         * @since 1.0.6
531
+         *
532
+         * @return string Either a valid version number or an empty string.
533
+         */
534
+        public function validate_version_number( $version ) {
535
+
536
+            if ( version_compare( $version, '0.0.1', '>=' ) >= 0 ) {
537
+                // valid
538
+            } else {
539
+                $version = '';// not validated
540
+            }
541
+
542
+            return $version;
543
+        }
544
+
545
+
546
+        /**
547
+         * Get the latest version of Font Awesome.
548
+         *
549
+         * We check for a cached version and if none we will check for a live version via API and then cache it for 48 hours.
550
+         *
551
+         * @since 1.0.7
552
+         * @return mixed|string The latest version number found.
553
+         */
554
+        public function get_latest_version( $force_api = false ) {
555
+            $latest_version = $this->latest;
556
+
557
+            $cache = get_transient( 'wp-font-awesome-settings-version' );
558
+
559
+            if ( $cache === false || $force_api ) { // its not set
560
+                $api_ver = $this->get_latest_version_from_api();
561
+                if ( version_compare( $api_ver, $this->latest, '>=' ) >= 0 ) {
562
+                    $latest_version = $api_ver;
563
+                    set_transient( 'wp-font-awesome-settings-version', $api_ver, 48 * HOUR_IN_SECONDS );
564
+                }
565
+            } elseif ( $this->validate_version_number( $cache ) ) {
566
+                if ( version_compare( $cache, $this->latest, '>=' ) >= 0 ) {
567
+                    $latest_version = $cache;
568
+                }
569
+            }
570
+
571
+            return $latest_version;
572
+        }
573
+
574
+        /**
575
+         * Get the latest Font Awesome version from the github API.
576
+         *
577
+         * @since 1.0.7
578
+         * @return string The latest version number or `0` on API fail.
579
+         */
580
+        public function get_latest_version_from_api() {
581
+            $version  = "0";
582
+            $response = wp_remote_get( "https://api.github.com/repos/FortAwesome/Font-Awesome/releases/latest" );
583
+            if ( ! is_wp_error( $response ) && is_array( $response ) ) {
584
+                $api_response = json_decode( wp_remote_retrieve_body( $response ), true );
585
+                if ( isset( $api_response['tag_name'] ) && version_compare( $api_response['tag_name'], $this->latest, '>=' ) >= 0 && empty( $api_response['prerelease'] ) ) {
586
+                    $version = $api_response['tag_name'];
587
+                }
588
+            }
589
+
590
+            return $version;
591
+        }
592
+
593
+        /**
594
+         * Inline CSS for RTL language support.
595
+         *
596
+         * @since 1.0.13
597
+         * @return string Inline CSS.
598
+         */
599
+        public function rtl_inline_css() {
600
+            $inline_css = '[dir=rtl] .fa-address,[dir=rtl] .fa-address-card,[dir=rtl] .fa-adjust,[dir=rtl] .fa-alarm-clock,[dir=rtl] .fa-align-left,[dir=rtl] .fa-align-right,[dir=rtl] .fa-analytics,[dir=rtl] .fa-angle-double-left,[dir=rtl] .fa-angle-double-right,[dir=rtl] .fa-angle-left,[dir=rtl] .fa-angle-right,[dir=rtl] .fa-arrow-alt-circle-left,[dir=rtl] .fa-arrow-alt-circle-right,[dir=rtl] .fa-arrow-alt-from-left,[dir=rtl] .fa-arrow-alt-from-right,[dir=rtl] .fa-arrow-alt-left,[dir=rtl] .fa-arrow-alt-right,[dir=rtl] .fa-arrow-alt-square-left,[dir=rtl] .fa-arrow-alt-square-right,[dir=rtl] .fa-arrow-alt-to-left,[dir=rtl] .fa-arrow-alt-to-right,[dir=rtl] .fa-arrow-circle-left,[dir=rtl] .fa-arrow-circle-right,[dir=rtl] .fa-arrow-from-left,[dir=rtl] .fa-arrow-from-right,[dir=rtl] .fa-arrow-left,[dir=rtl] .fa-arrow-right,[dir=rtl] .fa-arrow-square-left,[dir=rtl] .fa-arrow-square-right,[dir=rtl] .fa-arrow-to-left,[dir=rtl] .fa-arrow-to-right,[dir=rtl] .fa-balance-scale-left,[dir=rtl] .fa-balance-scale-right,[dir=rtl] .fa-bed,[dir=rtl] .fa-bed-bunk,[dir=rtl] .fa-bed-empty,[dir=rtl] .fa-border-left,[dir=rtl] .fa-border-right,[dir=rtl] .fa-calendar-check,[dir=rtl] .fa-caret-circle-left,[dir=rtl] .fa-caret-circle-right,[dir=rtl] .fa-caret-left,[dir=rtl] .fa-caret-right,[dir=rtl] .fa-caret-square-left,[dir=rtl] .fa-caret-square-right,[dir=rtl] .fa-cart-arrow-down,[dir=rtl] .fa-cart-plus,[dir=rtl] .fa-chart-area,[dir=rtl] .fa-chart-bar,[dir=rtl] .fa-chart-line,[dir=rtl] .fa-chart-line-down,[dir=rtl] .fa-chart-network,[dir=rtl] .fa-chart-pie,[dir=rtl] .fa-chart-pie-alt,[dir=rtl] .fa-chart-scatter,[dir=rtl] .fa-check-circle,[dir=rtl] .fa-check-square,[dir=rtl] .fa-chevron-circle-left,[dir=rtl] .fa-chevron-circle-right,[dir=rtl] .fa-chevron-double-left,[dir=rtl] .fa-chevron-double-right,[dir=rtl] .fa-chevron-left,[dir=rtl] .fa-chevron-right,[dir=rtl] .fa-chevron-square-left,[dir=rtl] .fa-chevron-square-right,[dir=rtl] .fa-clock,[dir=rtl] .fa-file,[dir=rtl] .fa-file-alt,[dir=rtl] .fa-file-archive,[dir=rtl] .fa-file-audio,[dir=rtl] .fa-file-chart-line,[dir=rtl] .fa-file-chart-pie,[dir=rtl] .fa-file-code,[dir=rtl] .fa-file-excel,[dir=rtl] .fa-file-image,[dir=rtl] .fa-file-pdf,[dir=rtl] .fa-file-powerpoint,[dir=rtl] .fa-file-video,[dir=rtl] .fa-file-word,[dir=rtl] .fa-flag,[dir=rtl] .fa-folder,[dir=rtl] .fa-folder-open,[dir=rtl] .fa-hand-lizard,[dir=rtl] .fa-hand-point-down,[dir=rtl] .fa-hand-point-left,[dir=rtl] .fa-hand-point-right,[dir=rtl] .fa-hand-point-up,[dir=rtl] .fa-hand-scissors,[dir=rtl] .fa-image,[dir=rtl] .fa-long-arrow-alt-left,[dir=rtl] .fa-long-arrow-alt-right,[dir=rtl] .fa-long-arrow-left,[dir=rtl] .fa-long-arrow-right,[dir=rtl] .fa-luggage-cart,[dir=rtl] .fa-moon,[dir=rtl] .fa-pencil,[dir=rtl] .fa-pencil-alt,[dir=rtl] .fa-play-circle,[dir=rtl] .fa-project-diagram,[dir=rtl] .fa-quote-left,[dir=rtl] .fa-quote-right,[dir=rtl] .fa-shopping-cart,[dir=rtl] .fa-thumbs-down,[dir=rtl] .fa-thumbs-up,[dir=rtl] .fa-user-chart{filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);transform:scale(-1,1)}[dir=rtl] .fa-spin{animation-direction:reverse}';
601
+
602
+            return $inline_css;
603
+        }
604
+
605
+        /**
606
+         * Show any warnings as an admin notice.
607
+         *
608
+         * @return void
609
+         */
610
+        public function admin_notices(){
611
+            $settings = $this->settings;
612
+
613
+            if ( defined( 'FONTAWESOME_PLUGIN_FILE' ) ) {
614
+
615
+                if ( ! empty( $_REQUEST['page'] ) && $_REQUEST['page'] == 'wp-font-awesome-settings' ) {
616
+                    ?>
617 617
                     <div class="notice  notice-error is-dismissible">
618 618
                         <p><?php _e( 'The Official Font Awesome Plugin is active, please adjust your settings there.', 'font-awesome-settings' ); ?></p>
619 619
                     </div>
620 620
 					<?php
621
-				}
621
+                }
622 622
 
623
-			}else{
624
-				if ( ! empty( $settings ) ) {
625
-					if ( $settings['type'] != 'KIT' && $settings['pro'] && ( $settings['version'] == '' || version_compare( $settings['version'], '6', '>=' ) ) ) {
626
-						$link = admin_url('options-general.php?page=wp-font-awesome-settings');
627
-						?>
623
+            }else{
624
+                if ( ! empty( $settings ) ) {
625
+                    if ( $settings['type'] != 'KIT' && $settings['pro'] && ( $settings['version'] == '' || version_compare( $settings['version'], '6', '>=' ) ) ) {
626
+                        $link = admin_url('options-general.php?page=wp-font-awesome-settings');
627
+                        ?>
628 628
                         <div class="notice  notice-error is-dismissible">
629 629
                             <p><?php echo sprintf( __( 'Font Awesome Pro v6 requires the use of a kit, please setup your kit in %ssettings.%s', 'font-awesome-settings' ),"<a href='". esc_url_raw( $link )."'>","</a>" ); ?></p>
630 630
                         </div>
631 631
 						<?php
632
-					}
633
-				}
634
-			}
632
+                    }
633
+                }
634
+            }
635 635
 
636
-		}
636
+        }
637 637
 
638
-	}
638
+    }
639 639
 
640
-	/**
641
-	 * Run the class if found.
642
-	 */
643
-	WP_Font_Awesome_Settings::instance();
640
+    /**
641
+     * Run the class if found.
642
+     */
643
+    WP_Font_Awesome_Settings::instance();
644 644
 }
645 645
\ No newline at end of file
Please login to merge, or discard this patch.