Passed
Push — master ( c5e685...72070d )
by Brian
15:09
created
templates/payment-forms/elements/billing_email.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -7,16 +7,16 @@  discard block
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 $value = '';
13 13
 $class = '';
14 14
 
15
-if ( is_user_logged_in() ) {
15
+if (is_user_logged_in()) {
16 16
     $user  = wp_get_current_user();
17
-    $value = sanitize_email( $user->user_email );
17
+    $value = sanitize_email($user->user_email);
18 18
 
19
-    if ( ! empty( $hide_billing_email ) ) {
19
+    if (!empty($hide_billing_email)) {
20 20
         $class = 'd-none';
21 21
     }
22 22
 
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
 echo aui()->input(
28 28
     array(
29 29
         'name'       => 'billing_email',
30
-        'id'         => esc_attr( $id ) . uniqid( '_' ),
31
-        'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ),
32
-        'required'   => ! empty( $required ),
33
-        'label'      => empty( $label ) ? '' : wp_kses_post( $label ) . '<span class="text-danger"> *</span>',
30
+        'id'         => esc_attr($id) . uniqid('_'),
31
+        'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder),
32
+        'required'   => !empty($required),
33
+        'label'      => empty($label) ? '' : wp_kses_post($label) . '<span class="text-danger"> *</span>',
34 34
         'label_type' => 'vertical',
35
-        'help_text'  => empty( $description ) ? '' : wp_kses_post( $description ),
35
+        'help_text'  => empty($description) ? '' : wp_kses_post($description),
36 36
         'type'       => 'email',
37 37
         'value'      => $value,
38 38
     )
Please login to merge, or discard this patch.
templates/payment-forms/elements/textarea.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -7,22 +7,22 @@
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12
-$label = empty( $label ) ? '' : wp_kses_post( $label );
12
+$label = empty($label) ? '' : wp_kses_post($label);
13 13
 
14
-if ( ! empty( $required ) ) {
14
+if (!empty($required)) {
15 15
     $label .= "<span class='text-danger'> *</span>";
16 16
 }
17 17
 
18 18
 echo aui()->textarea(
19 19
     array(
20
-        'name'       => esc_attr( $id ),
21
-        'id'         => esc_attr( $id ) . uniqid( '_' ),
22
-        'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ),
23
-        'required'   => ! empty( $required ),
20
+        'name'       => esc_attr($id),
21
+        'id'         => esc_attr($id) . uniqid('_'),
22
+        'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder),
23
+        'required'   => !empty($required),
24 24
         'label'      => $label,
25 25
         'label_type' => 'vertical',
26
-        'help_text'  => empty( $description ) ? '' : wp_kses_post( $description ),
26
+        'help_text'  => empty($description) ? '' : wp_kses_post($description),
27 27
     )
28 28
 );
Please login to merge, or discard this patch.
templates/payment-forms/elements/checkbox.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -7,22 +7,22 @@
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12
-$label = empty( $label ) ? '' : wp_kses_post( $label );
12
+$label = empty($label) ? '' : wp_kses_post($label);
13 13
 
14
-if ( ! empty( $required ) ) {
14
+if (!empty($required)) {
15 15
     $label .= "<span class='text-danger'> *</span>";
16 16
 }
17 17
 
18 18
 echo aui()->input(
19 19
     array(
20 20
         'type'       => 'checkbox',
21
-        'name'       => esc_attr( $id ),
22
-        'id'         => esc_attr( $id ) . uniqid( '_' ),
23
-        'required'   => ! empty( $required ),
21
+        'name'       => esc_attr($id),
22
+        'id'         => esc_attr($id) . uniqid('_'),
23
+        'required'   => !empty($required),
24 24
         'label'      => $label,
25
-        'value'      => esc_attr__( 'Yes', 'invoicing' ),
26
-        'help_text'  => empty( $description ) ? '' : wp_kses_post( $description ),
25
+        'value'      => esc_attr__('Yes', 'invoicing'),
26
+        'help_text'  => empty($description) ? '' : wp_kses_post($description),
27 27
     )
28 28
 );
Please login to merge, or discard this patch.
includes/gateways/class-getpaid-payment-gateway.php 2 patches
Indentation   +572 added lines, -572 removed lines patch added patch discarded remove patch
@@ -13,449 +13,449 @@  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
-		$this->enabled = wpinv_is_gateway_active( $this->id );
141
-
142
-		// Register gateway.
143
-		add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) );
144
-
145
-		// Enable Subscriptions.
146
-		if ( $this->supports( 'subscription' ) ) {
147
-			add_filter( "wpinv_{$this->id}_support_subscription", '__return_true' );
148
-		}
149
-
150
-		// Enable sandbox.
151
-		if ( $this->supports( 'sandbox' ) ) {
152
-			add_filter( "wpinv_{$this->id}_supports_sandbox", '__return_true' );
153
-		}
154
-
155
-		// Gateway settings.
156
-		add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) );
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
+        $this->enabled = wpinv_is_gateway_active( $this->id );
141
+
142
+        // Register gateway.
143
+        add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) );
144
+
145
+        // Enable Subscriptions.
146
+        if ( $this->supports( 'subscription' ) ) {
147
+            add_filter( "wpinv_{$this->id}_support_subscription", '__return_true' );
148
+        }
149
+
150
+        // Enable sandbox.
151
+        if ( $this->supports( 'sandbox' ) ) {
152
+            add_filter( "wpinv_{$this->id}_supports_sandbox", '__return_true' );
153
+        }
154
+
155
+        // Gateway settings.
156
+        add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) );
157 157
 		
158 158
 
159
-		// Gateway checkout fiellds.
160
-		add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 );
161
-
162
-		// Process payment.
163
-		add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 );
159
+        // Gateway checkout fiellds.
160
+        add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 );
161
+
162
+        // Process payment.
163
+        add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 );
164
+
165
+        // Change the checkout button text.
166
+        if ( ! empty( $this->checkout_button_text ) ) {
167
+            add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) );
168
+        }
169
+
170
+        // Check if a gateway is valid for a given currency.
171
+        add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 );
172
+
173
+        // Generate the transaction url.
174
+        add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 );
175
+
176
+        // Generate the subscription url.
177
+        add_filter( "getpaid_gateway_{$this->id}_subscription_url", array( $this, 'filter_subscription_url' ), 10, 2 );
178
+
179
+        // Confirm payments.
180
+        add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 );
181
+
182
+        // Verify IPNs.
183
+        add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) );
184
+
185
+    }
186
+
187
+    /**
188
+     * Checks if this gateway is a given gateway.
189
+     *
190
+     * @since 1.0.19
191
+     * @return bool
192
+     */
193
+    public function is( $gateway ) {
194
+        return $gateway == $this->id;
195
+    }
196
+
197
+    /**
198
+     * Returns a users saved tokens for this gateway.
199
+     *
200
+     * @since 1.0.19
201
+     * @return array
202
+     */
203
+    public function get_tokens( $sandbox = null ) {
204
+
205
+        if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) {
206
+            $tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true );
207
+
208
+            if ( is_array( $tokens ) ) {
209
+                $this->tokens = $tokens;
210
+            }
211
+
212
+        }
213
+
214
+        if ( ! is_bool( $sandbox ) ) {
215
+            return $this->tokens;
216
+        }
217
+
218
+        $args = array( 'type' => $sandbox ? 'sandbox' : 'live' );
219
+        return wp_list_filter( $this->tokens, $args );
220
+
221
+    }
222
+
223
+    /**
224
+     * Saves a token for this gateway.
225
+     *
226
+     * @since 1.0.19
227
+     */
228
+    public function save_token( $token ) {
229
+
230
+        $tokens   = $this->get_tokens();
231
+        $tokens[] = $token;
232
+
233
+        update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens );
234
+
235
+        $this->tokens = $tokens;
236
+
237
+    }
238
+
239
+    /**
240
+     * Return the title for admin screens.
241
+     *
242
+     * @return string
243
+     */
244
+    public function get_method_title() {
245
+        return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this );
246
+    }
247
+
248
+    /**
249
+     * Return the description for admin screens.
250
+     *
251
+     * @return string
252
+     */
253
+    public function get_method_description() {
254
+        return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this );
255
+    }
256
+
257
+    /**
258
+     * Get the success url.
259
+     *
260
+     * @param WPInv_Invoice $invoice Invoice object.
261
+     * @return string
262
+     */
263
+    public function get_return_url( $invoice ) {
264
+
265
+        // Payment success url
266
+        $return_url = add_query_arg(
267
+            array(
268
+                'payment-confirm' => $this->id,
269
+                'invoice_key'     => $invoice->get_key(),
270
+                'utm_nooverride'  => 1
271
+            ),
272
+            wpinv_get_success_page_uri()
273
+        );
274
+
275
+        return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this );
276
+    }
277
+
278
+    /**
279
+     * Confirms payments when rendering the success page.
280
+     *
281
+     * @param string $content Success page content.
282
+     * @return string
283
+     */
284
+    public function confirm_payment( $content ) {
285
+
286
+        // Retrieve the invoice.
287
+        $invoice_id = getpaid_get_current_invoice_id();
288
+        $invoice    = wpinv_get_invoice( $invoice_id );
289
+
290
+        // Ensure that it exists and that it is pending payment.
291
+        if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) {
292
+            return $content;
293
+        }
294
+
295
+        // Can the user view this invoice??
296
+        if ( ! wpinv_user_can_view_invoice( $invoice ) ) {
297
+            return $content;
298
+        }
299
+
300
+        // Show payment processing indicator.
301
+        return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) );
302
+    }
303
+
304
+    /**
305
+     * Processes ipns and marks payments as complete.
306
+     *
307
+     * @return void
308
+     */
309
+    public function verify_ipn() {}
310
+
311
+    /**
312
+     * Get a link to the transaction on the 3rd party gateway site (if applicable).
313
+     *
314
+     * @param string $transaction_url transaction url.
315
+     * @param WPInv_Invoice $invoice Invoice object.
316
+     * @return string transaction URL, or empty string.
317
+     */
318
+    public function filter_transaction_url( $transaction_url, $invoice ) {
319
+
320
+        $transaction_id  = $invoice->get_transaction_id();
321
+
322
+        if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) {
323
+            $transaction_url = sprintf( $this->view_transaction_url, $transaction_id );
324
+            $replace         = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
325
+            $transaction_url = str_replace( '{sandbox}', $replace, $transaction_url );
326
+        }
327
+
328
+        return $transaction_url;
329
+    }
330
+
331
+    /**
332
+     * Get a link to the subscription on the 3rd party gateway site (if applicable).
333
+     *
334
+     * @param string $subscription_url transaction url.
335
+     * @param WPInv_Invoice $invoice Invoice object.
336
+     * @return string subscription URL, or empty string.
337
+     */
338
+    public function filter_subscription_url( $subscription_url, $invoice ) {
339
+
340
+        $profile_id      = $invoice->get_subscription_id();
341
+
342
+        if ( ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) {
343
+
344
+            $subscription_url = sprintf( $this->view_subscription_url, $profile_id );
345
+            $replace          = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
346
+            $subscription_url = str_replace( '{sandbox}', $replace, $subscription_url );
347
+
348
+        }
349
+
350
+        return $subscription_url;
351
+    }
352
+
353
+    /**
354
+     * Check if the gateway is available for use.
355
+     *
356
+     * @return bool
357
+     */
358
+    public function is_available() {
359
+        return ! empty( $this->enabled );
360
+    }
361
+
362
+    /**
363
+     * Return the gateway's title.
364
+     *
365
+     * @return string
366
+     */
367
+    public function get_title() {
368
+        return apply_filters( 'getpaid_gateway_title', $this->title, $this );
369
+    }
370
+
371
+    /**
372
+     * Return the gateway's description.
373
+     *
374
+     * @return string
375
+     */
376
+    public function get_description() {
377
+        return apply_filters( 'getpaid_gateway_description', $this->description, $this );
378
+    }
379
+
380
+    /**
381
+     * Process Payment.
382
+     *
383
+     *
384
+     * @param WPInv_Invoice $invoice Invoice.
385
+     * @param array $submission_data Posted checkout fields.
386
+     * @param GetPaid_Payment_Form_Submission $submission Checkout submission.
387
+     * @return void
388
+     */
389
+    public function process_payment( $invoice, $submission_data, $submission ) {
390
+        // Process the payment then either redirect to the success page or the gateway.
391
+        do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission );
392
+    }
393
+
394
+    /**
395
+     * Process refund.
396
+     *
397
+     * If the gateway declares 'refunds' support, this will allow it to refund.
398
+     * a passed in amount.
399
+     *
400
+     * @param WPInv_Invoice $invoice Invoice.
401
+     * @param  float  $amount Refund amount.
402
+     * @param  string $reason Refund reason.
403
+     * @return WP_Error|bool True or false based on success, or a WP_Error object.
404
+     */
405
+    public function process_refund( $invoice, $amount = null, $reason = '' ) {
406
+        return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason );
407
+    }
408
+
409
+    /**
410
+     * Displays the payment fields, credit cards etc.
411
+     * 
412
+     * @param int $invoice_id 0 or invoice id.
413
+     * @param GetPaid_Payment_Form $form Current payment form.
414
+     */
415
+    public function payment_fields( $invoice_id, $form ) {
416
+        do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form );
417
+    }
418
+
419
+    /**
420
+     * Filters the gateway settings.
421
+     * 
422
+     * @param array $admin_settings
423
+     */
424
+    public function admin_settings( $admin_settings ) {
425
+        return $admin_settings;
426
+    }
427
+
428
+    /**
429
+     * Retrieves the value of a gateway setting.
430
+     * 
431
+     * @param string $option
432
+     */
433
+    public function get_option( $option, $default = false ) {
434
+        return wpinv_get_option( $this->id . '_' . $option, $default );
435
+    }
436
+
437
+    /**
438
+     * Check if a gateway supports a given feature.
439
+     *
440
+     * Gateways should override this to declare support (or lack of support) for a feature.
441
+     * For backward compatibility, gateways support 'products' by default, but nothing else.
442
+     *
443
+     * @param string $feature string The name of a feature to test support for.
444
+     * @return bool True if the gateway supports the feature, false otherwise.
445
+     * @since 1.0.19
446
+     */
447
+    public function supports( $feature ) {
448
+        return apply_filters( 'getpaid_payment_gateway_supports', in_array( $feature, $this->supports ), $feature, $this );
449
+    }
164 450
 
165
-		// Change the checkout button text.
166
-		if ( ! empty( $this->checkout_button_text ) ) {
167
-			add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) );
168
-		}
169
-
170
-		// Check if a gateway is valid for a given currency.
171
-		add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 );
172
-
173
-		// Generate the transaction url.
174
-		add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 );
175
-
176
-		// Generate the subscription url.
177
-		add_filter( "getpaid_gateway_{$this->id}_subscription_url", array( $this, 'filter_subscription_url' ), 10, 2 );
178
-
179
-		// Confirm payments.
180
-		add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 );
181
-
182
-		// Verify IPNs.
183
-		add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) );
184
-
185
-	}
186
-
187
-	/**
188
-	 * Checks if this gateway is a given gateway.
189
-	 *
190
-	 * @since 1.0.19
191
-	 * @return bool
192
-	 */
193
-	public function is( $gateway ) {
194
-		return $gateway == $this->id;
195
-	}
196
-
197
-	/**
198
-	 * Returns a users saved tokens for this gateway.
199
-	 *
200
-	 * @since 1.0.19
201
-	 * @return array
202
-	 */
203
-	public function get_tokens( $sandbox = null ) {
204
-
205
-		if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) {
206
-			$tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true );
207
-
208
-			if ( is_array( $tokens ) ) {
209
-				$this->tokens = $tokens;
210
-			}
211
-
212
-		}
213
-
214
-		if ( ! is_bool( $sandbox ) ) {
215
-			return $this->tokens;
216
-		}
217
-
218
-		$args = array( 'type' => $sandbox ? 'sandbox' : 'live' );
219
-		return wp_list_filter( $this->tokens, $args );
220
-
221
-	}
222
-
223
-	/**
224
-	 * Saves a token for this gateway.
225
-	 *
226
-	 * @since 1.0.19
227
-	 */
228
-	public function save_token( $token ) {
229
-
230
-		$tokens   = $this->get_tokens();
231
-		$tokens[] = $token;
232
-
233
-		update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens );
234
-
235
-		$this->tokens = $tokens;
236
-
237
-	}
238
-
239
-	/**
240
-	 * Return the title for admin screens.
241
-	 *
242
-	 * @return string
243
-	 */
244
-	public function get_method_title() {
245
-		return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this );
246
-	}
247
-
248
-	/**
249
-	 * Return the description for admin screens.
250
-	 *
251
-	 * @return string
252
-	 */
253
-	public function get_method_description() {
254
-		return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this );
255
-	}
256
-
257
-	/**
258
-	 * Get the success url.
259
-	 *
260
-	 * @param WPInv_Invoice $invoice Invoice object.
261
-	 * @return string
262
-	 */
263
-	public function get_return_url( $invoice ) {
264
-
265
-		// Payment success url
266
-		$return_url = add_query_arg(
267
-			array(
268
-				'payment-confirm' => $this->id,
269
-				'invoice_key'     => $invoice->get_key(),
270
-				'utm_nooverride'  => 1
271
-			),
272
-			wpinv_get_success_page_uri()
273
-		);
274
-
275
-		return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this );
276
-	}
277
-
278
-	/**
279
-	 * Confirms payments when rendering the success page.
280
-	 *
281
-	 * @param string $content Success page content.
282
-	 * @return string
283
-	 */
284
-	public function confirm_payment( $content ) {
285
-
286
-		// Retrieve the invoice.
287
-		$invoice_id = getpaid_get_current_invoice_id();
288
-		$invoice    = wpinv_get_invoice( $invoice_id );
289
-
290
-		// Ensure that it exists and that it is pending payment.
291
-		if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) {
292
-			return $content;
293
-		}
294
-
295
-		// Can the user view this invoice??
296
-		if ( ! wpinv_user_can_view_invoice( $invoice ) ) {
297
-			return $content;
298
-		}
299
-
300
-		// Show payment processing indicator.
301
-		return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) );
302
-	}
303
-
304
-	/**
305
-	 * Processes ipns and marks payments as complete.
306
-	 *
307
-	 * @return void
308
-	 */
309
-	public function verify_ipn() {}
310
-
311
-	/**
312
-	 * Get a link to the transaction on the 3rd party gateway site (if applicable).
313
-	 *
314
-	 * @param string $transaction_url transaction url.
315
-	 * @param WPInv_Invoice $invoice Invoice object.
316
-	 * @return string transaction URL, or empty string.
317
-	 */
318
-	public function filter_transaction_url( $transaction_url, $invoice ) {
319
-
320
-		$transaction_id  = $invoice->get_transaction_id();
321
-
322
-		if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) {
323
-			$transaction_url = sprintf( $this->view_transaction_url, $transaction_id );
324
-			$replace         = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
325
-			$transaction_url = str_replace( '{sandbox}', $replace, $transaction_url );
326
-		}
327
-
328
-		return $transaction_url;
329
-	}
330
-
331
-	/**
332
-	 * Get a link to the subscription on the 3rd party gateway site (if applicable).
333
-	 *
334
-	 * @param string $subscription_url transaction url.
335
-	 * @param WPInv_Invoice $invoice Invoice object.
336
-	 * @return string subscription URL, or empty string.
337
-	 */
338
-	public function filter_subscription_url( $subscription_url, $invoice ) {
339
-
340
-		$profile_id      = $invoice->get_subscription_id();
341
-
342
-		if ( ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) {
343
-
344
-			$subscription_url = sprintf( $this->view_subscription_url, $profile_id );
345
-			$replace          = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
346
-			$subscription_url = str_replace( '{sandbox}', $replace, $subscription_url );
347
-
348
-		}
349
-
350
-		return $subscription_url;
351
-	}
352
-
353
-	/**
354
-	 * Check if the gateway is available for use.
355
-	 *
356
-	 * @return bool
357
-	 */
358
-	public function is_available() {
359
-		return ! empty( $this->enabled );
360
-	}
361
-
362
-	/**
363
-	 * Return the gateway's title.
364
-	 *
365
-	 * @return string
366
-	 */
367
-	public function get_title() {
368
-		return apply_filters( 'getpaid_gateway_title', $this->title, $this );
369
-	}
370
-
371
-	/**
372
-	 * Return the gateway's description.
373
-	 *
374
-	 * @return string
375
-	 */
376
-	public function get_description() {
377
-		return apply_filters( 'getpaid_gateway_description', $this->description, $this );
378
-	}
379
-
380
-	/**
381
-	 * Process Payment.
382
-	 *
383
-	 *
384
-	 * @param WPInv_Invoice $invoice Invoice.
385
-	 * @param array $submission_data Posted checkout fields.
386
-	 * @param GetPaid_Payment_Form_Submission $submission Checkout submission.
387
-	 * @return void
388
-	 */
389
-	public function process_payment( $invoice, $submission_data, $submission ) {
390
-		// Process the payment then either redirect to the success page or the gateway.
391
-		do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission );
392
-	}
393
-
394
-	/**
395
-	 * Process refund.
396
-	 *
397
-	 * If the gateway declares 'refunds' support, this will allow it to refund.
398
-	 * a passed in amount.
399
-	 *
400
-	 * @param WPInv_Invoice $invoice Invoice.
401
-	 * @param  float  $amount Refund amount.
402
-	 * @param  string $reason Refund reason.
403
-	 * @return WP_Error|bool True or false based on success, or a WP_Error object.
404
-	 */
405
-	public function process_refund( $invoice, $amount = null, $reason = '' ) {
406
-		return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason );
407
-	}
408
-
409
-	/**
410
-	 * Displays the payment fields, credit cards etc.
411
-	 * 
412
-	 * @param int $invoice_id 0 or invoice id.
413
-	 * @param GetPaid_Payment_Form $form Current payment form.
414
-	 */
415
-	public function payment_fields( $invoice_id, $form ) {
416
-		do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form );
417
-	}
418
-
419
-	/**
420
-	 * Filters the gateway settings.
421
-	 * 
422
-	 * @param array $admin_settings
423
-	 */
424
-	public function admin_settings( $admin_settings ) {
425
-		return $admin_settings;
426
-	}
427
-
428
-	/**
429
-	 * Retrieves the value of a gateway setting.
430
-	 * 
431
-	 * @param string $option
432
-	 */
433
-	public function get_option( $option, $default = false ) {
434
-		return wpinv_get_option( $this->id . '_' . $option, $default );
435
-	}
436
-
437
-	/**
438
-	 * Check if a gateway supports a given feature.
439
-	 *
440
-	 * Gateways should override this to declare support (or lack of support) for a feature.
441
-	 * For backward compatibility, gateways support 'products' by default, but nothing else.
442
-	 *
443
-	 * @param string $feature string The name of a feature to test support for.
444
-	 * @return bool True if the gateway supports the feature, false otherwise.
445
-	 * @since 1.0.19
446
-	 */
447
-	public function supports( $feature ) {
448
-		return apply_filters( 'getpaid_payment_gateway_supports', in_array( $feature, $this->supports ), $feature, $this );
449
-	}
450
-
451
-	/**
452
-	 * Returns the credit card form html.
453
-	 * 
454
-	 * @param bool $save whether or not to display the save button.
455
-	 */
451
+    /**
452
+     * Returns the credit card form html.
453
+     * 
454
+     * @param bool $save whether or not to display the save button.
455
+     */
456 456
     public function get_cc_form( $save = false ) {
457 457
 
458
-		ob_start();
458
+        ob_start();
459 459
 
460 460
         $id_prefix = esc_attr( uniqid( $this->id ) );
461 461
 
@@ -561,175 +561,175 @@  discard block
 block discarded – undo
561 561
 					
562 562
 					<?php
563 563
 
564
-						if ( $save ) {
565
-							echo $this->save_payment_method_checkbox();
566
-						}
564
+                        if ( $save ) {
565
+                            echo $this->save_payment_method_checkbox();
566
+                        }
567 567
 
568
-					?>
568
+                    ?>
569 569
                 </div>
570 570
 
571 571
             </div>
572 572
 		<?php
573 573
 		
574
-		return ob_get_clean();
574
+        return ob_get_clean();
575 575
 
576 576
     }
577 577
 
578
-	/**
579
-	 * Displays a new payment method entry form.
580
-	 *
581
-	 * @since 1.0.19
582
-	 */
583
-	public function new_payment_method_entry( $form ) {
584
-		echo "<div class='getpaid-new-payment-method-form' style='display:none;'>$form</div>";
585
-	}
586
-
587
-	/**
588
-	 * Grab and display our saved payment methods.
589
-	 *
590
-	 * @since 1.0.19
591
-	 */
592
-	public function saved_payment_methods() {
593
-		$html = '<ul class="getpaid-saved-payment-methods m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">';
594
-
595
-		foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) {
596
-			$html .= $this->get_saved_payment_method_option_html( $token );
597
-		}
598
-
599
-		$html .= $this->get_new_payment_method_option_html();
600
-		$html .= '</ul>';
601
-
602
-		echo apply_filters( 'getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this );
603
-	}
604
-
605
-	/**
606
-	 * Gets saved payment method HTML from a token.
607
-	 *
608
-	 * @since 1.0.19
609
-	 * @param  array $token Payment Token.
610
-	 * @return string Generated payment method HTML
611
-	 */
612
-	public function get_saved_payment_method_option_html( $token ) {
613
-
614
-		return sprintf(
615
-			'<li class="getpaid-payment-method form-group">
578
+    /**
579
+     * Displays a new payment method entry form.
580
+     *
581
+     * @since 1.0.19
582
+     */
583
+    public function new_payment_method_entry( $form ) {
584
+        echo "<div class='getpaid-new-payment-method-form' style='display:none;'>$form</div>";
585
+    }
586
+
587
+    /**
588
+     * Grab and display our saved payment methods.
589
+     *
590
+     * @since 1.0.19
591
+     */
592
+    public function saved_payment_methods() {
593
+        $html = '<ul class="getpaid-saved-payment-methods m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">';
594
+
595
+        foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) {
596
+            $html .= $this->get_saved_payment_method_option_html( $token );
597
+        }
598
+
599
+        $html .= $this->get_new_payment_method_option_html();
600
+        $html .= '</ul>';
601
+
602
+        echo apply_filters( 'getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this );
603
+    }
604
+
605
+    /**
606
+     * Gets saved payment method HTML from a token.
607
+     *
608
+     * @since 1.0.19
609
+     * @param  array $token Payment Token.
610
+     * @return string Generated payment method HTML
611
+     */
612
+    public function get_saved_payment_method_option_html( $token ) {
613
+
614
+        return sprintf(
615
+            '<li class="getpaid-payment-method form-group">
616 616
 				<label>
617 617
 					<input name="getpaid-%1$s-payment-method" type="radio" value="%2$s" style="width:auto;" class="getpaid-saved-payment-method-token-input" %4$s />
618 618
 					<span>%3$s</span>
619 619
 				</label>
620 620
 			</li>',
621
-			esc_attr( $this->id ),
622
-			esc_attr( $token['id'] ),
623
-			esc_html( $token['name'] ),
624
-			checked( empty( $token['default'] ), false, false )
625
-		);
621
+            esc_attr( $this->id ),
622
+            esc_attr( $token['id'] ),
623
+            esc_html( $token['name'] ),
624
+            checked( empty( $token['default'] ), false, false )
625
+        );
626 626
 
627
-	}
627
+    }
628 628
 
629
-	/**
630
-	 * Displays a radio button for entering a new payment method (new CC details) instead of using a saved method.
631
-	 *
632
-	 * @since 1.0.19
633
-	 */
634
-	public function get_new_payment_method_option_html() {
629
+    /**
630
+     * Displays a radio button for entering a new payment method (new CC details) instead of using a saved method.
631
+     *
632
+     * @since 1.0.19
633
+     */
634
+    public function get_new_payment_method_option_html() {
635 635
 
636
-		$label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this );
636
+        $label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this );
637 637
 
638
-		return sprintf(
639
-			'<li class="getpaid-new-payment-method">
638
+        return sprintf(
639
+            '<li class="getpaid-new-payment-method">
640 640
 				<label>
641 641
 					<input name="getpaid-%1$s-payment-method" type="radio" value="new" style="width:auto;" />
642 642
 					<span>%2$s</span>
643 643
 				</label>
644 644
 			</li>',
645
-			esc_attr( $this->id ),
646
-			esc_html( $label )
647
-		);
645
+            esc_attr( $this->id ),
646
+            esc_html( $label )
647
+        );
648 648
 
649
-	}
649
+    }
650 650
 
651
-	/**
652
-	 * Outputs a checkbox for saving a new payment method to the database.
653
-	 *
654
-	 * @since 1.0.19
655
-	 */
656
-	public function save_payment_method_checkbox() {
651
+    /**
652
+     * Outputs a checkbox for saving a new payment method to the database.
653
+     *
654
+     * @since 1.0.19
655
+     */
656
+    public function save_payment_method_checkbox() {
657 657
 
658
-		return sprintf(
659
-			'<p class="form-group getpaid-save-payment-method">
658
+        return sprintf(
659
+            '<p class="form-group getpaid-save-payment-method">
660 660
 				<label>
661 661
 					<input name="getpaid-%1$s-new-payment-method" type="checkbox" value="true" style="width:auto;" />
662 662
 					<span>%2$s</span>
663 663
 				</label>
664 664
 			</p>',
665
-			esc_attr( $this->id ),
666
-			esc_html__( 'Save payment method', 'invoicing' )
667
-		);
665
+            esc_attr( $this->id ),
666
+            esc_html__( 'Save payment method', 'invoicing' )
667
+        );
668 668
 
669
-	}
669
+    }
670 670
 
671
-	/**
672
-	 * Registers the gateway.
673
-	 *
674
-	 * @return array
675
-	 */
676
-	public function register_gateway( $gateways ) {
671
+    /**
672
+     * Registers the gateway.
673
+     *
674
+     * @return array
675
+     */
676
+    public function register_gateway( $gateways ) {
677 677
 
678
-		$gateways[ $this->id ] = array(
678
+        $gateways[ $this->id ] = array(
679 679
 
680
-			'admin_label'    => $this->method_title,
680
+            'admin_label'    => $this->method_title,
681 681
             'checkout_label' => $this->title,
682
-			'ordering'       => $this->order,
683
-
684
-		);
685
-
686
-		return $gateways;
687
-
688
-	}
689
-
690
-	/**
691
-	 * Checks whether or not this is a sandbox request.
692
-	 *
693
-	 * @param  WPInv_Invoice|null $invoice Invoice object or null.
694
-	 * @return bool
695
-	 */
696
-	public function is_sandbox( $invoice = null ) {
697
-
698
-		if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) {
699
-			return $invoice->get_mode() == 'test';
700
-		}
701
-
702
-		return wpinv_is_test_mode( $this->id );
703
-
704
-	}
705
-
706
-	/**
707
-	 * Renames the checkout button
708
-	 *
709
-	 * @return string
710
-	 */
711
-	public function rename_checkout_button() {
712
-		return $this->checkout_button_text;
713
-	}
714
-
715
-	/**
716
-	 * Validate gateway currency
717
-	 *
718
-	 * @return bool
719
-	 */
720
-	public function validate_currency( $validation, $currency ) {
721
-
722
-		// Required currencies.
723
-		if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) {
724
-			return false;
725
-		}
726
-
727
-		// Excluded currencies.
728
-		if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) {
729
-			return false;
730
-		}
731
-
732
-		return $validation;
733
-	}
682
+            'ordering'       => $this->order,
683
+
684
+        );
685
+
686
+        return $gateways;
687
+
688
+    }
689
+
690
+    /**
691
+     * Checks whether or not this is a sandbox request.
692
+     *
693
+     * @param  WPInv_Invoice|null $invoice Invoice object or null.
694
+     * @return bool
695
+     */
696
+    public function is_sandbox( $invoice = null ) {
697
+
698
+        if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) {
699
+            return $invoice->get_mode() == 'test';
700
+        }
701
+
702
+        return wpinv_is_test_mode( $this->id );
703
+
704
+    }
705
+
706
+    /**
707
+     * Renames the checkout button
708
+     *
709
+     * @return string
710
+     */
711
+    public function rename_checkout_button() {
712
+        return $this->checkout_button_text;
713
+    }
714
+
715
+    /**
716
+     * Validate gateway currency
717
+     *
718
+     * @return bool
719
+     */
720
+    public function validate_currency( $validation, $currency ) {
721
+
722
+        // Required currencies.
723
+        if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) {
724
+            return false;
725
+        }
726
+
727
+        // Excluded currencies.
728
+        if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) {
729
+            return false;
730
+        }
731
+
732
+        return $validation;
733
+    }
734 734
 
735 735
 }
Please login to merge, or discard this patch.
Spacing   +117 added lines, -117 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  *
5 5
  */
6 6
 
7
-defined( 'ABSPATH' ) || exit;
7
+defined('ABSPATH') || exit;
8 8
 
9 9
 /**
10 10
  * Abstaract Payment Gateway class.
@@ -137,50 +137,50 @@  discard block
 block discarded – undo
137 137
 	 * Class constructor.
138 138
 	 */
139 139
 	public function __construct() {
140
-		$this->enabled = wpinv_is_gateway_active( $this->id );
140
+		$this->enabled = wpinv_is_gateway_active($this->id);
141 141
 
142 142
 		// Register gateway.
143
-		add_filter( 'wpinv_payment_gateways', array( $this, 'register_gateway' ) );
143
+		add_filter('wpinv_payment_gateways', array($this, 'register_gateway'));
144 144
 
145 145
 		// Enable Subscriptions.
146
-		if ( $this->supports( 'subscription' ) ) {
147
-			add_filter( "wpinv_{$this->id}_support_subscription", '__return_true' );
146
+		if ($this->supports('subscription')) {
147
+			add_filter("wpinv_{$this->id}_support_subscription", '__return_true');
148 148
 		}
149 149
 
150 150
 		// Enable sandbox.
151
-		if ( $this->supports( 'sandbox' ) ) {
152
-			add_filter( "wpinv_{$this->id}_supports_sandbox", '__return_true' );
151
+		if ($this->supports('sandbox')) {
152
+			add_filter("wpinv_{$this->id}_supports_sandbox", '__return_true');
153 153
 		}
154 154
 
155 155
 		// Gateway settings.
156
-		add_filter( "wpinv_gateway_settings_{$this->id}", array( $this, 'admin_settings' ) );
156
+		add_filter("wpinv_gateway_settings_{$this->id}", array($this, 'admin_settings'));
157 157
 		
158 158
 
159 159
 		// Gateway checkout fiellds.
160
-		add_action( "wpinv_{$this->id}_cc_form", array( $this, 'payment_fields' ), 10, 2 );
160
+		add_action("wpinv_{$this->id}_cc_form", array($this, 'payment_fields'), 10, 2);
161 161
 
162 162
 		// Process payment.
163
-		add_action( "getpaid_gateway_{$this->id}", array( $this, 'process_payment' ), 10, 3 );
163
+		add_action("getpaid_gateway_{$this->id}", array($this, 'process_payment'), 10, 3);
164 164
 
165 165
 		// Change the checkout button text.
166
-		if ( ! empty( $this->checkout_button_text ) ) {
167
-			add_filter( "getpaid_gateway_{$this->id}_checkout_button_label", array( $this, 'rename_checkout_button' ) );
166
+		if (!empty($this->checkout_button_text)) {
167
+			add_filter("getpaid_gateway_{$this->id}_checkout_button_label", array($this, 'rename_checkout_button'));
168 168
 		}
169 169
 
170 170
 		// Check if a gateway is valid for a given currency.
171
-		add_filter( "getpaid_gateway_{$this->id}_is_valid_for_currency", array( $this, 'validate_currency' ), 10, 2 );
171
+		add_filter("getpaid_gateway_{$this->id}_is_valid_for_currency", array($this, 'validate_currency'), 10, 2);
172 172
 
173 173
 		// Generate the transaction url.
174
-		add_filter( "getpaid_gateway_{$this->id}_transaction_url", array( $this, 'filter_transaction_url' ), 10, 2 );
174
+		add_filter("getpaid_gateway_{$this->id}_transaction_url", array($this, 'filter_transaction_url'), 10, 2);
175 175
 
176 176
 		// Generate the subscription url.
177
-		add_filter( "getpaid_gateway_{$this->id}_subscription_url", array( $this, 'filter_subscription_url' ), 10, 2 );
177
+		add_filter("getpaid_gateway_{$this->id}_subscription_url", array($this, 'filter_subscription_url'), 10, 2);
178 178
 
179 179
 		// Confirm payments.
180
-		add_filter( "wpinv_payment_confirm_{$this->id}", array( $this, 'confirm_payment' ), 10, 2 );
180
+		add_filter("wpinv_payment_confirm_{$this->id}", array($this, 'confirm_payment'), 10, 2);
181 181
 
182 182
 		// Verify IPNs.
183
-		add_action( "wpinv_verify_{$this->id}_ipn", array( $this, 'verify_ipn' ) );
183
+		add_action("wpinv_verify_{$this->id}_ipn", array($this, 'verify_ipn'));
184 184
 
185 185
 	}
186 186
 
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 	 * @since 1.0.19
191 191
 	 * @return bool
192 192
 	 */
193
-	public function is( $gateway ) {
193
+	public function is($gateway) {
194 194
 		return $gateway == $this->id;
195 195
 	}
196 196
 
@@ -200,23 +200,23 @@  discard block
 block discarded – undo
200 200
 	 * @since 1.0.19
201 201
 	 * @return array
202 202
 	 */
203
-	public function get_tokens( $sandbox = null ) {
203
+	public function get_tokens($sandbox = null) {
204 204
 
205
-		if ( is_user_logged_in() && $this->supports( 'tokens' ) && 0 == count( $this->tokens ) ) {
206
-			$tokens = get_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", true );
205
+		if (is_user_logged_in() && $this->supports('tokens') && 0 == count($this->tokens)) {
206
+			$tokens = get_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", true);
207 207
 
208
-			if ( is_array( $tokens ) ) {
208
+			if (is_array($tokens)) {
209 209
 				$this->tokens = $tokens;
210 210
 			}
211 211
 
212 212
 		}
213 213
 
214
-		if ( ! is_bool( $sandbox ) ) {
214
+		if (!is_bool($sandbox)) {
215 215
 			return $this->tokens;
216 216
 		}
217 217
 
218
-		$args = array( 'type' => $sandbox ? 'sandbox' : 'live' );
219
-		return wp_list_filter( $this->tokens, $args );
218
+		$args = array('type' => $sandbox ? 'sandbox' : 'live');
219
+		return wp_list_filter($this->tokens, $args);
220 220
 
221 221
 	}
222 222
 
@@ -225,12 +225,12 @@  discard block
 block discarded – undo
225 225
 	 *
226 226
 	 * @since 1.0.19
227 227
 	 */
228
-	public function save_token( $token ) {
228
+	public function save_token($token) {
229 229
 
230 230
 		$tokens   = $this->get_tokens();
231 231
 		$tokens[] = $token;
232 232
 
233
-		update_user_meta( get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens );
233
+		update_user_meta(get_current_user_id(), "getpaid_{$this->id}_tokens", $tokens);
234 234
 
235 235
 		$this->tokens = $tokens;
236 236
 
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
 	 * @return string
243 243
 	 */
244 244
 	public function get_method_title() {
245
-		return apply_filters( 'getpaid_gateway_method_title', $this->method_title, $this );
245
+		return apply_filters('getpaid_gateway_method_title', $this->method_title, $this);
246 246
 	}
247 247
 
248 248
 	/**
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 	 * @return string
252 252
 	 */
253 253
 	public function get_method_description() {
254
-		return apply_filters( 'getpaid_gateway_method_description', $this->method_description, $this );
254
+		return apply_filters('getpaid_gateway_method_description', $this->method_description, $this);
255 255
 	}
256 256
 
257 257
 	/**
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	 * @param WPInv_Invoice $invoice Invoice object.
261 261
 	 * @return string
262 262
 	 */
263
-	public function get_return_url( $invoice ) {
263
+	public function get_return_url($invoice) {
264 264
 
265 265
 		// Payment success url
266 266
 		$return_url = add_query_arg(
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
 			wpinv_get_success_page_uri()
273 273
 		);
274 274
 
275
-		return apply_filters( 'getpaid_gateway_success_url', $return_url, $invoice, $this );
275
+		return apply_filters('getpaid_gateway_success_url', $return_url, $invoice, $this);
276 276
 	}
277 277
 
278 278
 	/**
@@ -281,24 +281,24 @@  discard block
 block discarded – undo
281 281
 	 * @param string $content Success page content.
282 282
 	 * @return string
283 283
 	 */
284
-	public function confirm_payment( $content ) {
284
+	public function confirm_payment($content) {
285 285
 
286 286
 		// Retrieve the invoice.
287 287
 		$invoice_id = getpaid_get_current_invoice_id();
288
-		$invoice    = wpinv_get_invoice( $invoice_id );
288
+		$invoice    = wpinv_get_invoice($invoice_id);
289 289
 
290 290
 		// Ensure that it exists and that it is pending payment.
291
-		if ( empty( $invoice_id ) || ! $invoice->needs_payment() ) {
291
+		if (empty($invoice_id) || !$invoice->needs_payment()) {
292 292
 			return $content;
293 293
 		}
294 294
 
295 295
 		// Can the user view this invoice??
296
-		if ( ! wpinv_user_can_view_invoice( $invoice ) ) {
296
+		if (!wpinv_user_can_view_invoice($invoice)) {
297 297
 			return $content;
298 298
 		}
299 299
 
300 300
 		// Show payment processing indicator.
301
-		return wpinv_get_template_html( 'wpinv-payment-processing.php', compact( 'invoice' ) );
301
+		return wpinv_get_template_html('wpinv-payment-processing.php', compact('invoice'));
302 302
 	}
303 303
 
304 304
 	/**
@@ -315,14 +315,14 @@  discard block
 block discarded – undo
315 315
 	 * @param WPInv_Invoice $invoice Invoice object.
316 316
 	 * @return string transaction URL, or empty string.
317 317
 	 */
318
-	public function filter_transaction_url( $transaction_url, $invoice ) {
318
+	public function filter_transaction_url($transaction_url, $invoice) {
319 319
 
320
-		$transaction_id  = $invoice->get_transaction_id();
320
+		$transaction_id = $invoice->get_transaction_id();
321 321
 
322
-		if ( ! empty( $this->view_transaction_url ) && ! empty( $transaction_id ) ) {
323
-			$transaction_url = sprintf( $this->view_transaction_url, $transaction_id );
324
-			$replace         = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
325
-			$transaction_url = str_replace( '{sandbox}', $replace, $transaction_url );
322
+		if (!empty($this->view_transaction_url) && !empty($transaction_id)) {
323
+			$transaction_url = sprintf($this->view_transaction_url, $transaction_id);
324
+			$replace         = $this->is_sandbox($invoice) ? 'sandbox' : '';
325
+			$transaction_url = str_replace('{sandbox}', $replace, $transaction_url);
326 326
 		}
327 327
 
328 328
 		return $transaction_url;
@@ -335,15 +335,15 @@  discard block
 block discarded – undo
335 335
 	 * @param WPInv_Invoice $invoice Invoice object.
336 336
 	 * @return string subscription URL, or empty string.
337 337
 	 */
338
-	public function filter_subscription_url( $subscription_url, $invoice ) {
338
+	public function filter_subscription_url($subscription_url, $invoice) {
339 339
 
340
-		$profile_id      = $invoice->get_subscription_id();
340
+		$profile_id = $invoice->get_subscription_id();
341 341
 
342
-		if ( ! empty( $this->view_subscription_url ) && ! empty( $profile_id ) ) {
342
+		if (!empty($this->view_subscription_url) && !empty($profile_id)) {
343 343
 
344
-			$subscription_url = sprintf( $this->view_subscription_url, $profile_id );
345
-			$replace          = $this->is_sandbox( $invoice ) ? 'sandbox' : '';
346
-			$subscription_url = str_replace( '{sandbox}', $replace, $subscription_url );
344
+			$subscription_url = sprintf($this->view_subscription_url, $profile_id);
345
+			$replace          = $this->is_sandbox($invoice) ? 'sandbox' : '';
346
+			$subscription_url = str_replace('{sandbox}', $replace, $subscription_url);
347 347
 
348 348
 		}
349 349
 
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
 	 * @return bool
357 357
 	 */
358 358
 	public function is_available() {
359
-		return ! empty( $this->enabled );
359
+		return !empty($this->enabled);
360 360
 	}
361 361
 
362 362
 	/**
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
 	 * @return string
366 366
 	 */
367 367
 	public function get_title() {
368
-		return apply_filters( 'getpaid_gateway_title', $this->title, $this );
368
+		return apply_filters('getpaid_gateway_title', $this->title, $this);
369 369
 	}
370 370
 
371 371
 	/**
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 	 * @return string
375 375
 	 */
376 376
 	public function get_description() {
377
-		return apply_filters( 'getpaid_gateway_description', $this->description, $this );
377
+		return apply_filters('getpaid_gateway_description', $this->description, $this);
378 378
 	}
379 379
 
380 380
 	/**
@@ -386,9 +386,9 @@  discard block
 block discarded – undo
386 386
 	 * @param GetPaid_Payment_Form_Submission $submission Checkout submission.
387 387
 	 * @return void
388 388
 	 */
389
-	public function process_payment( $invoice, $submission_data, $submission ) {
389
+	public function process_payment($invoice, $submission_data, $submission) {
390 390
 		// Process the payment then either redirect to the success page or the gateway.
391
-		do_action( 'getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission );
391
+		do_action('getpaid_process_invoice_payment_' . $this->id, $invoice, $submission_data, $submission);
392 392
 	}
393 393
 
394 394
 	/**
@@ -402,8 +402,8 @@  discard block
 block discarded – undo
402 402
 	 * @param  string $reason Refund reason.
403 403
 	 * @return WP_Error|bool True or false based on success, or a WP_Error object.
404 404
 	 */
405
-	public function process_refund( $invoice, $amount = null, $reason = '' ) {
406
-		return apply_filters( 'getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason );
405
+	public function process_refund($invoice, $amount = null, $reason = '') {
406
+		return apply_filters('getpaid_process_invoice_refund_' . $this->id, false, $invoice, $amount, $reason);
407 407
 	}
408 408
 
409 409
 	/**
@@ -412,8 +412,8 @@  discard block
 block discarded – undo
412 412
 	 * @param int $invoice_id 0 or invoice id.
413 413
 	 * @param GetPaid_Payment_Form $form Current payment form.
414 414
 	 */
415
-	public function payment_fields( $invoice_id, $form ) {
416
-		do_action( 'getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form );
415
+	public function payment_fields($invoice_id, $form) {
416
+		do_action('getpaid_getpaid_gateway_payment_fields_' . $this->id, $invoice_id, $form);
417 417
 	}
418 418
 
419 419
 	/**
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
 	 * 
422 422
 	 * @param array $admin_settings
423 423
 	 */
424
-	public function admin_settings( $admin_settings ) {
424
+	public function admin_settings($admin_settings) {
425 425
 		return $admin_settings;
426 426
 	}
427 427
 
@@ -430,8 +430,8 @@  discard block
 block discarded – undo
430 430
 	 * 
431 431
 	 * @param string $option
432 432
 	 */
433
-	public function get_option( $option, $default = false ) {
434
-		return wpinv_get_option( $this->id . '_' . $option, $default );
433
+	public function get_option($option, $default = false) {
434
+		return wpinv_get_option($this->id . '_' . $option, $default);
435 435
 	}
436 436
 
437 437
 	/**
@@ -444,8 +444,8 @@  discard block
 block discarded – undo
444 444
 	 * @return bool True if the gateway supports the feature, false otherwise.
445 445
 	 * @since 1.0.19
446 446
 	 */
447
-	public function supports( $feature ) {
448
-		return apply_filters( 'getpaid_payment_gateway_supports', in_array( $feature, $this->supports ), $feature, $this );
447
+	public function supports($feature) {
448
+		return apply_filters('getpaid_payment_gateway_supports', in_array($feature, $this->supports), $feature, $this);
449 449
 	}
450 450
 
451 451
 	/**
@@ -453,36 +453,36 @@  discard block
 block discarded – undo
453 453
 	 * 
454 454
 	 * @param bool $save whether or not to display the save button.
455 455
 	 */
456
-    public function get_cc_form( $save = false ) {
456
+    public function get_cc_form($save = false) {
457 457
 
458 458
 		ob_start();
459 459
 
460
-        $id_prefix = esc_attr( uniqid( $this->id ) );
460
+        $id_prefix = esc_attr(uniqid($this->id));
461 461
 
462 462
         $months = array(
463
-            '01' => __( 'January', 'invoicing' ),
464
-            '02' => __( 'February', 'invoicing' ),
465
-            '03' => __( 'March', 'invoicing' ),
466
-            '04' => __( 'April', 'invoicing' ),
467
-            '05' => __( 'May', 'invoicing' ),
468
-            '06' => __( 'June', 'invoicing' ),
469
-            '07' => __( 'July', 'invoicing' ),
470
-            '08' => __( 'August', 'invoicing' ),
471
-            '09' => __( 'September', 'invoicing' ),
472
-            '10' => __( 'October', 'invoicing' ),
473
-            '11' => __( 'November', 'invoicing' ),
474
-            '12' => __( 'December', 'invoicing' ),
463
+            '01' => __('January', 'invoicing'),
464
+            '02' => __('February', 'invoicing'),
465
+            '03' => __('March', 'invoicing'),
466
+            '04' => __('April', 'invoicing'),
467
+            '05' => __('May', 'invoicing'),
468
+            '06' => __('June', 'invoicing'),
469
+            '07' => __('July', 'invoicing'),
470
+            '08' => __('August', 'invoicing'),
471
+            '09' => __('September', 'invoicing'),
472
+            '10' => __('October', 'invoicing'),
473
+            '11' => __('November', 'invoicing'),
474
+            '12' => __('December', 'invoicing'),
475 475
         );
476 476
 
477
-        $year  = (int) date( 'Y', current_time( 'timestamp' ) );
477
+        $year  = (int) date('Y', current_time('timestamp'));
478 478
         $years = array();
479 479
 
480
-        for ( $i = 0; $i <= 10; $i++ ) {
481
-            $years[ $year + $i ] = $year + $i;
480
+        for ($i = 0; $i <= 10; $i++) {
481
+            $years[$year + $i] = $year + $i;
482 482
         }
483 483
 
484 484
         ?>
485
-            <div class="<?php echo esc_attr( $this->id );?>-cc-form getpaid-cc-form card  mt-4">
485
+            <div class="<?php echo esc_attr($this->id); ?>-cc-form getpaid-cc-form card  mt-4">
486 486
 
487 487
 
488 488
                 <div class="card-body">
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
                                     array(
497 497
                                         'name'              => $this->id . '[cc_number]',
498 498
                                         'id'                => "$id_prefix-cc-number",
499
-                                        'label'             => __( 'Card number', 'invoicing' ),
499
+                                        'label'             => __('Card number', 'invoicing'),
500 500
                                         'label_type'        => 'vertical',
501 501
                                         'input_group_left'  => '<span class="input-group-text"><i class="fa fa-credit-card"></i></span>',
502 502
                                     )
@@ -507,17 +507,17 @@  discard block
 block discarded – undo
507 507
 
508 508
                         <div class="col-12 col-sm-4">
509 509
                             <div class="form-group">
510
-                                <label><?php _e( 'Expiration', 'invoicing' ); ?></label>
510
+                                <label><?php _e('Expiration', 'invoicing'); ?></label>
511 511
                                 <div class="form-row">
512 512
 
513 513
                                     <div class="col">
514
-                                        <select class="form-control" name="<?php echo esc_attr( $this->id );?>[cc_expire_month]">
515
-                                            <option disabled selected="selected"><?php _e( 'MM', 'invoicing' ); ?></option>
514
+                                        <select class="form-control" name="<?php echo esc_attr($this->id); ?>[cc_expire_month]">
515
+                                            <option disabled selected="selected"><?php _e('MM', 'invoicing'); ?></option>
516 516
 
517 517
                                             <?php
518
-                                                foreach ( $months as $key => $month ) {
519
-                                                    $key   = esc_attr( $key );
520
-                                                    $month = wpinv_clean( $month );
518
+                                                foreach ($months as $key => $month) {
519
+                                                    $key   = esc_attr($key);
520
+                                                    $month = wpinv_clean($month);
521 521
                                                     echo "<option value='$key'>$month</option>" . PHP_EOL;
522 522
                                                 }
523 523
                                             ?>
@@ -526,13 +526,13 @@  discard block
 block discarded – undo
526 526
                                     </div>
527 527
 
528 528
                                     <div class="col">
529
-                                        <select class="form-control" name="<?php echo esc_attr( $this->id );?>[cc_expire_year]">
530
-                                            <option disabled selected="selected"><?php _e( 'YY', 'invoicing' ); ?></option>
529
+                                        <select class="form-control" name="<?php echo esc_attr($this->id); ?>[cc_expire_year]">
530
+                                            <option disabled selected="selected"><?php _e('YY', 'invoicing'); ?></option>
531 531
 
532 532
                                             <?php
533
-                                                foreach ( $years as $key => $year ) {
534
-                                                    $key   = esc_attr( $key );
535
-                                                    $year  = wpinv_clean( $year );
533
+                                                foreach ($years as $key => $year) {
534
+                                                    $key   = esc_attr($key);
535
+                                                    $year  = wpinv_clean($year);
536 536
                                                     echo "<option value='$key'>$year</option>" . PHP_EOL;
537 537
                                                 }
538 538
                                             ?>
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
                                     array(
551 551
                                         'name'              => $this->id . '[cc_cvv2]',
552 552
                                         'id'                => "$id_prefix-cc-cvv2",
553
-                                        'label'             => __( 'CCV', 'invoicing' ),
553
+                                        'label'             => __('CCV', 'invoicing'),
554 554
                                         'label_type'        => 'vertical',
555 555
                                     )
556 556
                                 );
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
 					
562 562
 					<?php
563 563
 
564
-						if ( $save ) {
564
+						if ($save) {
565 565
 							echo $this->save_payment_method_checkbox();
566 566
 						}
567 567
 
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
 	 *
581 581
 	 * @since 1.0.19
582 582
 	 */
583
-	public function new_payment_method_entry( $form ) {
583
+	public function new_payment_method_entry($form) {
584 584
 		echo "<div class='getpaid-new-payment-method-form' style='display:none;'>$form</div>";
585 585
 	}
586 586
 
@@ -590,16 +590,16 @@  discard block
 block discarded – undo
590 590
 	 * @since 1.0.19
591 591
 	 */
592 592
 	public function saved_payment_methods() {
593
-		$html = '<ul class="getpaid-saved-payment-methods m-0 mt-2" data-count="' . esc_attr( count( $this->get_tokens( $this->is_sandbox() ) ) ) . '">';
593
+		$html = '<ul class="getpaid-saved-payment-methods m-0 mt-2" data-count="' . esc_attr(count($this->get_tokens($this->is_sandbox()))) . '">';
594 594
 
595
-		foreach ( $this->get_tokens( $this->is_sandbox() ) as $token ) {
596
-			$html .= $this->get_saved_payment_method_option_html( $token );
595
+		foreach ($this->get_tokens($this->is_sandbox()) as $token) {
596
+			$html .= $this->get_saved_payment_method_option_html($token);
597 597
 		}
598 598
 
599 599
 		$html .= $this->get_new_payment_method_option_html();
600 600
 		$html .= '</ul>';
601 601
 
602
-		echo apply_filters( 'getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this );
602
+		echo apply_filters('getpaid_payment_gateway_form_saved_payment_methods_html', $html, $this);
603 603
 	}
604 604
 
605 605
 	/**
@@ -609,7 +609,7 @@  discard block
 block discarded – undo
609 609
 	 * @param  array $token Payment Token.
610 610
 	 * @return string Generated payment method HTML
611 611
 	 */
612
-	public function get_saved_payment_method_option_html( $token ) {
612
+	public function get_saved_payment_method_option_html($token) {
613 613
 
614 614
 		return sprintf(
615 615
 			'<li class="getpaid-payment-method form-group">
@@ -618,10 +618,10 @@  discard block
 block discarded – undo
618 618
 					<span>%3$s</span>
619 619
 				</label>
620 620
 			</li>',
621
-			esc_attr( $this->id ),
622
-			esc_attr( $token['id'] ),
623
-			esc_html( $token['name'] ),
624
-			checked( empty( $token['default'] ), false, false )
621
+			esc_attr($this->id),
622
+			esc_attr($token['id']),
623
+			esc_html($token['name']),
624
+			checked(empty($token['default']), false, false)
625 625
 		);
626 626
 
627 627
 	}
@@ -633,7 +633,7 @@  discard block
 block discarded – undo
633 633
 	 */
634 634
 	public function get_new_payment_method_option_html() {
635 635
 
636
-		$label = apply_filters( 'getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __( 'Use a new payment method', 'invoicing' ), $this );
636
+		$label = apply_filters('getpaid_new_payment_method_label', $this->new_method_label ? $this->new_method_label : __('Use a new payment method', 'invoicing'), $this);
637 637
 
638 638
 		return sprintf(
639 639
 			'<li class="getpaid-new-payment-method">
@@ -642,8 +642,8 @@  discard block
 block discarded – undo
642 642
 					<span>%2$s</span>
643 643
 				</label>
644 644
 			</li>',
645
-			esc_attr( $this->id ),
646
-			esc_html( $label )
645
+			esc_attr($this->id),
646
+			esc_html($label)
647 647
 		);
648 648
 
649 649
 	}
@@ -662,8 +662,8 @@  discard block
 block discarded – undo
662 662
 					<span>%2$s</span>
663 663
 				</label>
664 664
 			</p>',
665
-			esc_attr( $this->id ),
666
-			esc_html__( 'Save payment method', 'invoicing' )
665
+			esc_attr($this->id),
666
+			esc_html__('Save payment method', 'invoicing')
667 667
 		);
668 668
 
669 669
 	}
@@ -673,9 +673,9 @@  discard block
 block discarded – undo
673 673
 	 *
674 674
 	 * @return array
675 675
 	 */
676
-	public function register_gateway( $gateways ) {
676
+	public function register_gateway($gateways) {
677 677
 
678
-		$gateways[ $this->id ] = array(
678
+		$gateways[$this->id] = array(
679 679
 
680 680
 			'admin_label'    => $this->method_title,
681 681
             'checkout_label' => $this->title,
@@ -693,13 +693,13 @@  discard block
 block discarded – undo
693 693
 	 * @param  WPInv_Invoice|null $invoice Invoice object or null.
694 694
 	 * @return bool
695 695
 	 */
696
-	public function is_sandbox( $invoice = null ) {
696
+	public function is_sandbox($invoice = null) {
697 697
 
698
-		if ( ! empty( $invoice ) && ! $invoice->needs_payment() ) {
698
+		if (!empty($invoice) && !$invoice->needs_payment()) {
699 699
 			return $invoice->get_mode() == 'test';
700 700
 		}
701 701
 
702
-		return wpinv_is_test_mode( $this->id );
702
+		return wpinv_is_test_mode($this->id);
703 703
 
704 704
 	}
705 705
 
@@ -717,15 +717,15 @@  discard block
 block discarded – undo
717 717
 	 *
718 718
 	 * @return bool
719 719
 	 */
720
-	public function validate_currency( $validation, $currency ) {
720
+	public function validate_currency($validation, $currency) {
721 721
 
722 722
 		// Required currencies.
723
-		if ( ! empty( $this->currencies ) && ! in_array( $currency, $this->currencies ) ) {
723
+		if (!empty($this->currencies) && !in_array($currency, $this->currencies)) {
724 724
 			return false;
725 725
 		}
726 726
 
727 727
 		// Excluded currencies.
728
-		if ( ! empty( $this->exclude_currencies ) && in_array( $currency, $this->exclude_currencies ) ) {
728
+		if (!empty($this->exclude_currencies) && in_array($currency, $this->exclude_currencies)) {
729 729
 			return false;
730 730
 		}
731 731
 
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php 3 patches
Indentation   +853 added lines, -853 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,199 +21,199 @@  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 = '1.0.1';
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.3.1";
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 = '1.0.1';
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.3.1";
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' ));
116
-
117
-				do_action( 'ayecode_ui_settings_loaded' );
118
-			}
119
-
120
-			return self::$instance;
121
-		}
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
-		}
132
-
133
-		/**
134
-		 * Initiate the settings and add the required action hooks.
135
-		 */
136
-		public function init() {
137
-			$this->constants();
138
-			$this->settings = $this->get_settings();
139
-			$this->url = $this->get_url();
140
-
141
-			/**
142
-			 * Maybe load CSS
143
-			 *
144
-			 * We load super early in case there is a theme version that might change the colors
145
-			 */
146
-			if ( $this->settings['css'] ) {
147
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
148
-			}
149
-			if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
150
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
151
-			}
152
-
153
-			// maybe load JS
154
-			if ( $this->settings['js'] ) {
155
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
156
-			}
157
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
158
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
159
-			}
160
-
161
-			// Maybe set the HTML font size
162
-			if ( $this->settings['html_font_size'] ) {
163
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
164
-			}
165
-
166
-
167
-		}
168
-
169
-		/**
170
-		 * Check if we should load the admin scripts or not.
171
-		 *
172
-		 * @return bool
173
-		 */
174
-		public function load_admin_scripts(){
175
-			$result = true;
176
-
177
-			if(!empty($this->settings['disable_admin'])){
178
-				$url_parts = explode("\n",$this->settings['disable_admin']);
179
-				foreach($url_parts as $part){
180
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
181
-						return false; // return early, no point checking further
182
-					}
183
-				}
184
-			}
115
+                add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
116
+
117
+                do_action( 'ayecode_ui_settings_loaded' );
118
+            }
119
+
120
+            return self::$instance;
121
+        }
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
+        }
132
+
133
+        /**
134
+         * Initiate the settings and add the required action hooks.
135
+         */
136
+        public function init() {
137
+            $this->constants();
138
+            $this->settings = $this->get_settings();
139
+            $this->url = $this->get_url();
140
+
141
+            /**
142
+             * Maybe load CSS
143
+             *
144
+             * We load super early in case there is a theme version that might change the colors
145
+             */
146
+            if ( $this->settings['css'] ) {
147
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
148
+            }
149
+            if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
150
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
151
+            }
152
+
153
+            // maybe load JS
154
+            if ( $this->settings['js'] ) {
155
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
156
+            }
157
+            if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
158
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
159
+            }
160
+
161
+            // Maybe set the HTML font size
162
+            if ( $this->settings['html_font_size'] ) {
163
+                add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
164
+            }
165
+
166
+
167
+        }
168
+
169
+        /**
170
+         * Check if we should load the admin scripts or not.
171
+         *
172
+         * @return bool
173
+         */
174
+        public function load_admin_scripts(){
175
+            $result = true;
176
+
177
+            if(!empty($this->settings['disable_admin'])){
178
+                $url_parts = explode("\n",$this->settings['disable_admin']);
179
+                foreach($url_parts as $part){
180
+                    if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
181
+                        return false; // return early, no point checking further
182
+                    }
183
+                }
184
+            }
185 185
 
186
-			return $result;
187
-		}
186
+            return $result;
187
+        }
188 188
 
189
-		/**
190
-		 * Add a html font size to the footer.
191
-		 */
192
-		public function html_font_size(){
193
-			$this->settings = $this->get_settings();
194
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
195
-		}
189
+        /**
190
+         * Add a html font size to the footer.
191
+         */
192
+        public function html_font_size(){
193
+            $this->settings = $this->get_settings();
194
+            echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
195
+        }
196 196
 
197
-		/**
198
-		 * Adds the Font Awesome styles.
199
-		 */
200
-		public function enqueue_style() {
197
+        /**
198
+         * Adds the Font Awesome styles.
199
+         */
200
+        public function enqueue_style() {
201 201
 
202
-			$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
202
+            $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
203 203
 
204
-			if($this->settings[$css_setting]){
205
-				$compatibility = $this->settings[$css_setting]=='core' ? false : true;
206
-				$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui.css' : $this->url.'assets/css/ayecode-ui-compatibility.css';
207
-				wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
208
-				wp_enqueue_style( 'ayecode-ui' );
204
+            if($this->settings[$css_setting]){
205
+                $compatibility = $this->settings[$css_setting]=='core' ? false : true;
206
+                $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui.css' : $this->url.'assets/css/ayecode-ui-compatibility.css';
207
+                wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
208
+                wp_enqueue_style( 'ayecode-ui' );
209 209
 
210
-				// flatpickr
211
-				wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
210
+                // flatpickr
211
+                wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
212 212
 
213 213
 
214
-				// fix some wp-admin issues
215
-				if(is_admin()){
216
-					$custom_css = "
214
+                // fix some wp-admin issues
215
+                if(is_admin()){
216
+                    $custom_css = "
217 217
                 body{
218 218
                     background-color: #f1f1f1;
219 219
                     font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;
@@ -249,29 +249,29 @@  discard block
 block discarded – undo
249 249
 				}
250 250
                 ";
251 251
 
252
-					// @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
253
-					$custom_css .= "
252
+                    // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
253
+                    $custom_css .= "
254 254
 						.edit-post-sidebar input[type=color].components-text-control__input{
255 255
 						    padding: 0;
256 256
 						}
257 257
 					";
258
-					wp_add_inline_style( 'ayecode-ui', $custom_css );
259
-				}
258
+                    wp_add_inline_style( 'ayecode-ui', $custom_css );
259
+                }
260 260
 
261
-				// custom changes
262
-				wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
261
+                // custom changes
262
+                wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
263 263
 
264
-			}
265
-		}
264
+            }
265
+        }
266 266
 
267
-		/**
268
-		 * Get inline script used if bootstrap enqueued
269
-		 *
270
-		 * If this remains small then its best to use this than to add another JS file.
271
-		 */
272
-		public function inline_script(){
273
-			ob_start();
274
-			?>
267
+        /**
268
+         * Get inline script used if bootstrap enqueued
269
+         *
270
+         * If this remains small then its best to use this than to add another JS file.
271
+         */
272
+        public function inline_script(){
273
+            ob_start();
274
+            ?>
275 275
 			<script>
276 276
 				
277 277
 				/**
@@ -758,25 +758,25 @@  discard block
 block discarded – undo
758 758
 
759 759
 			</script>
760 760
 			<?php
761
-			$output = ob_get_clean();
761
+            $output = ob_get_clean();
762 762
 
763
-			/*
763
+            /*
764 764
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
765 765
 			 */
766
-			return str_replace( array(
767
-				'<script>',
768
-				'</script>'
769
-			), '', $output );
770
-		}
771
-
772
-		/**
773
-		 * Get inline script used if bootstrap file browser enqueued.
774
-		 *
775
-		 * If this remains small then its best to use this than to add another JS file.
776
-		 */
777
-		public function inline_script_file_browser(){
778
-			ob_start();
779
-			?>
766
+            return str_replace( array(
767
+                '<script>',
768
+                '</script>'
769
+            ), '', $output );
770
+        }
771
+
772
+        /**
773
+         * Get inline script used if bootstrap file browser enqueued.
774
+         *
775
+         * If this remains small then its best to use this than to add another JS file.
776
+         */
777
+        public function inline_script_file_browser(){
778
+            ob_start();
779
+            ?>
780 780
 			<script>
781 781
 				// run on doc ready
782 782
 				jQuery(document).ready(function () {
@@ -784,184 +784,184 @@  discard block
 block discarded – undo
784 784
 				});
785 785
 			</script>
786 786
 			<?php
787
-			$output = ob_get_clean();
787
+            $output = ob_get_clean();
788 788
 
789
-			/*
789
+            /*
790 790
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
791 791
 			 */
792
-			return str_replace( array(
793
-				'<script>',
794
-				'</script>'
795
-			), '', $output );
796
-		}
797
-
798
-		/**
799
-		 * Adds the Font Awesome JS.
800
-		 */
801
-		public function enqueue_scripts() {
802
-
803
-			$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
804
-
805
-			// select2
806
-			wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version );
807
-
808
-			// flatpickr
809
-			wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest );
810
-
811
-			// Bootstrap file browser
812
-			wp_register_script( 'aui-custom-file-input', $url = $this->url.'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version );
813
-			wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
814
-
815
-			$load_inline = false;
816
-
817
-			if($this->settings[$js_setting]=='core-popper'){
818
-				// Bootstrap bundle
819
-				$url = $this->url.'assets/js/bootstrap.bundle.min.js';
820
-				wp_register_script( 'bootstrap-js-bundle', $url, array('select2','jquery'), $this->latest );
821
-				// if in admin then add to footer for compatibility.
822
-				is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle');
823
-				$script = $this->inline_script();
824
-				wp_add_inline_script( 'bootstrap-js-bundle', $script );
825
-			}elseif($this->settings[$js_setting]=='popper'){
826
-				$url = $this->url.'assets/js/popper.min.js';
827
-				wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest );
828
-				wp_enqueue_script( 'bootstrap-js-popper' );
829
-				$load_inline = true;
830
-			}else{
831
-				$load_inline = true;
832
-			}
833
-
834
-			// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
835
-			if($load_inline){
836
-				wp_register_script( 'bootstrap-dummy', '',array('select2','jquery') );
837
-				wp_enqueue_script( 'bootstrap-dummy' );
838
-				$script = $this->inline_script();
839
-				wp_add_inline_script( 'bootstrap-dummy', $script  );
840
-			}
841
-
842
-		}
843
-
844
-		/**
845
-		 * Enqueue flatpickr if called.
846
-		 */
847
-		public function enqueue_flatpickr(){
848
-			wp_enqueue_style( 'flatpickr' );
849
-			wp_enqueue_script( 'flatpickr' );
850
-		}
851
-
852
-		/**
853
-		 * Get the url path to the current folder.
854
-		 *
855
-		 * @return string
856
-		 */
857
-		public function get_url() {
858
-
859
-			$url = '';
860
-			// check if we are inside a plugin
861
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
862
-
863
-			// add check in-case user has changed wp-content dir name.
864
-			$wp_content_folder_name = basename(WP_CONTENT_DIR);
865
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
866
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
867
-
868
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
869
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
870
-			}
871
-
872
-			return $url;
873
-		}
874
-
875
-		/**
876
-		 * Register the database settings with WordPress.
877
-		 */
878
-		public function register_settings() {
879
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
880
-		}
881
-
882
-		/**
883
-		 * Add the WordPress settings menu item.
884
-		 * @since 1.0.10 Calling function name direct will fail theme check so we don't.
885
-		 */
886
-		public function menu_item() {
887
-			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
888
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
889
-				$this,
890
-				'settings_page'
891
-			) );
892
-		}
893
-
894
-		/**
895
-		 * Get a list of themes and their default JS settings.
896
-		 *
897
-		 * @return array
898
-		 */
899
-		public function theme_js_settings(){
900
-			return array(
901
-				'ayetheme' => 'popper',
902
-				'listimia' => 'required',
903
-				'listimia_backend' => 'core-popper',
904
-				'avada'    => 'required',
905
-			);
906
-		}
907
-
908
-		/**
909
-		 * Get the current Font Awesome output settings.
910
-		 *
911
-		 * @return array The array of settings.
912
-		 */
913
-		public function get_settings() {
914
-
915
-			$db_settings = get_option( 'ayecode-ui-settings' );
916
-			$js_default = 'core-popper';
917
-			$js_default_backend = $js_default;
918
-
919
-			// maybe set defaults (if no settings set)
920
-			if(empty($db_settings)){
921
-				$active_theme = strtolower( get_template() ); // active parent theme.
922
-				$theme_js_settings = self::theme_js_settings();
923
-				if(isset($theme_js_settings[$active_theme])){
924
-					$js_default = $theme_js_settings[$active_theme];
925
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
926
-				}
927
-			}
928
-
929
-			$defaults = array(
930
-				'css'       => 'compatibility', // core, compatibility
931
-				'js'        => $js_default, // js to load, core-popper, popper
932
-				'html_font_size'        => '16', // js to load, core-popper, popper
933
-				'css_backend'       => 'compatibility', // core, compatibility
934
-				'js_backend'        => $js_default_backend, // js to load, core-popper, popper
935
-				'disable_admin'     =>  '', // URL snippets to disable loading on admin
936
-			);
937
-
938
-			$settings = wp_parse_args( $db_settings, $defaults );
939
-
940
-			/**
941
-			 * Filter the Bootstrap settings.
942
-			 *
943
-			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
944
-			 */
945
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
946
-		}
947
-
948
-
949
-		/**
950
-		 * The settings page html output.
951
-		 */
952
-		public function settings_page() {
953
-			if ( ! current_user_can( 'manage_options' ) ) {
954
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
955
-			}
956
-			?>
792
+            return str_replace( array(
793
+                '<script>',
794
+                '</script>'
795
+            ), '', $output );
796
+        }
797
+
798
+        /**
799
+         * Adds the Font Awesome JS.
800
+         */
801
+        public function enqueue_scripts() {
802
+
803
+            $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
804
+
805
+            // select2
806
+            wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version );
807
+
808
+            // flatpickr
809
+            wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest );
810
+
811
+            // Bootstrap file browser
812
+            wp_register_script( 'aui-custom-file-input', $url = $this->url.'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version );
813
+            wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
814
+
815
+            $load_inline = false;
816
+
817
+            if($this->settings[$js_setting]=='core-popper'){
818
+                // Bootstrap bundle
819
+                $url = $this->url.'assets/js/bootstrap.bundle.min.js';
820
+                wp_register_script( 'bootstrap-js-bundle', $url, array('select2','jquery'), $this->latest );
821
+                // if in admin then add to footer for compatibility.
822
+                is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle');
823
+                $script = $this->inline_script();
824
+                wp_add_inline_script( 'bootstrap-js-bundle', $script );
825
+            }elseif($this->settings[$js_setting]=='popper'){
826
+                $url = $this->url.'assets/js/popper.min.js';
827
+                wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest );
828
+                wp_enqueue_script( 'bootstrap-js-popper' );
829
+                $load_inline = true;
830
+            }else{
831
+                $load_inline = true;
832
+            }
833
+
834
+            // Load needed inline scripts by faking the loading of a script if the main script is not being loaded
835
+            if($load_inline){
836
+                wp_register_script( 'bootstrap-dummy', '',array('select2','jquery') );
837
+                wp_enqueue_script( 'bootstrap-dummy' );
838
+                $script = $this->inline_script();
839
+                wp_add_inline_script( 'bootstrap-dummy', $script  );
840
+            }
841
+
842
+        }
843
+
844
+        /**
845
+         * Enqueue flatpickr if called.
846
+         */
847
+        public function enqueue_flatpickr(){
848
+            wp_enqueue_style( 'flatpickr' );
849
+            wp_enqueue_script( 'flatpickr' );
850
+        }
851
+
852
+        /**
853
+         * Get the url path to the current folder.
854
+         *
855
+         * @return string
856
+         */
857
+        public function get_url() {
858
+
859
+            $url = '';
860
+            // check if we are inside a plugin
861
+            $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
862
+
863
+            // add check in-case user has changed wp-content dir name.
864
+            $wp_content_folder_name = basename(WP_CONTENT_DIR);
865
+            $dir_parts = explode("/$wp_content_folder_name/",$file_dir);
866
+            $url_parts = explode("/$wp_content_folder_name/",plugins_url());
867
+
868
+            if(!empty($url_parts[0]) && !empty($dir_parts[1])){
869
+                $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
870
+            }
871
+
872
+            return $url;
873
+        }
874
+
875
+        /**
876
+         * Register the database settings with WordPress.
877
+         */
878
+        public function register_settings() {
879
+            register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
880
+        }
881
+
882
+        /**
883
+         * Add the WordPress settings menu item.
884
+         * @since 1.0.10 Calling function name direct will fail theme check so we don't.
885
+         */
886
+        public function menu_item() {
887
+            $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
888
+            call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
889
+                $this,
890
+                'settings_page'
891
+            ) );
892
+        }
893
+
894
+        /**
895
+         * Get a list of themes and their default JS settings.
896
+         *
897
+         * @return array
898
+         */
899
+        public function theme_js_settings(){
900
+            return array(
901
+                'ayetheme' => 'popper',
902
+                'listimia' => 'required',
903
+                'listimia_backend' => 'core-popper',
904
+                'avada'    => 'required',
905
+            );
906
+        }
907
+
908
+        /**
909
+         * Get the current Font Awesome output settings.
910
+         *
911
+         * @return array The array of settings.
912
+         */
913
+        public function get_settings() {
914
+
915
+            $db_settings = get_option( 'ayecode-ui-settings' );
916
+            $js_default = 'core-popper';
917
+            $js_default_backend = $js_default;
918
+
919
+            // maybe set defaults (if no settings set)
920
+            if(empty($db_settings)){
921
+                $active_theme = strtolower( get_template() ); // active parent theme.
922
+                $theme_js_settings = self::theme_js_settings();
923
+                if(isset($theme_js_settings[$active_theme])){
924
+                    $js_default = $theme_js_settings[$active_theme];
925
+                    $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
926
+                }
927
+            }
928
+
929
+            $defaults = array(
930
+                'css'       => 'compatibility', // core, compatibility
931
+                'js'        => $js_default, // js to load, core-popper, popper
932
+                'html_font_size'        => '16', // js to load, core-popper, popper
933
+                'css_backend'       => 'compatibility', // core, compatibility
934
+                'js_backend'        => $js_default_backend, // js to load, core-popper, popper
935
+                'disable_admin'     =>  '', // URL snippets to disable loading on admin
936
+            );
937
+
938
+            $settings = wp_parse_args( $db_settings, $defaults );
939
+
940
+            /**
941
+             * Filter the Bootstrap settings.
942
+             *
943
+             * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
944
+             */
945
+            return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
946
+        }
947
+
948
+
949
+        /**
950
+         * The settings page html output.
951
+         */
952
+        public function settings_page() {
953
+            if ( ! current_user_can( 'manage_options' ) ) {
954
+                wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
955
+            }
956
+            ?>
957 957
 			<div class="wrap">
958 958
 				<h1><?php echo $this->name; ?></h1>
959 959
 				<p><?php _e("Here you can adjust settings if you are having compatibility issues.","aui");?></p>
960 960
 				<form method="post" action="options.php">
961 961
 					<?php
962
-					settings_fields( 'ayecode-ui-settings' );
963
-					do_settings_sections( 'ayecode-ui-settings' );
964
-					?>
962
+                    settings_fields( 'ayecode-ui-settings' );
963
+                    do_settings_sections( 'ayecode-ui-settings' );
964
+                    ?>
965 965
 
966 966
 					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
967 967
 					<table class="form-table wpbs-table-settings">
@@ -1041,489 +1041,489 @@  discard block
 block discarded – undo
1041 1041
 					</table>
1042 1042
 
1043 1043
 					<?php
1044
-					submit_button();
1045
-					?>
1044
+                    submit_button();
1045
+                    ?>
1046 1046
 				</form>
1047 1047
 
1048 1048
 				<div id="wpbs-version"><?php echo $this->version; ?></div>
1049 1049
 			</div>
1050 1050
 
1051 1051
 			<?php
1052
-		}
1053
-
1054
-		public function customizer_settings($wp_customize){
1055
-			$wp_customize->add_section('aui_settings', array(
1056
-				'title'    => __('AyeCode UI','aui'),
1057
-				'priority' => 120,
1058
-			));
1059
-
1060
-			//  =============================
1061
-			//  = Color Picker              =
1062
-			//  =============================
1063
-			$wp_customize->add_setting('aui_options[color_primary]', array(
1064
-				'default'           => AUI_PRIMARY_COLOR,
1065
-				'sanitize_callback' => 'sanitize_hex_color',
1066
-				'capability'        => 'edit_theme_options',
1067
-				'type'              => 'option',
1068
-				'transport'         => 'refresh',
1069
-			));
1070
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1071
-				'label'    => __('Primary Color','aui'),
1072
-				'section'  => 'aui_settings',
1073
-				'settings' => 'aui_options[color_primary]',
1074
-			)));
1075
-
1076
-			$wp_customize->add_setting('aui_options[color_secondary]', array(
1077
-				'default'           => '#6c757d',
1078
-				'sanitize_callback' => 'sanitize_hex_color',
1079
-				'capability'        => 'edit_theme_options',
1080
-				'type'              => 'option',
1081
-				'transport'         => 'refresh',
1082
-			));
1083
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1084
-				'label'    => __('Secondary Color','aui'),
1085
-				'section'  => 'aui_settings',
1086
-				'settings' => 'aui_options[color_secondary]',
1087
-			)));
1088
-		}
1089
-
1090
-
1091
-		public static function custom_css($compatibility = true) {
1092
-			$settings = get_option('aui_options');
1093
-
1094
-			ob_start();
1095
-
1096
-			$primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1097
-			$secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1098
-				//AUI_PRIMARY_COLOR_ORIGINAL
1099
-			?>
1052
+        }
1053
+
1054
+        public function customizer_settings($wp_customize){
1055
+            $wp_customize->add_section('aui_settings', array(
1056
+                'title'    => __('AyeCode UI','aui'),
1057
+                'priority' => 120,
1058
+            ));
1059
+
1060
+            //  =============================
1061
+            //  = Color Picker              =
1062
+            //  =============================
1063
+            $wp_customize->add_setting('aui_options[color_primary]', array(
1064
+                'default'           => AUI_PRIMARY_COLOR,
1065
+                'sanitize_callback' => 'sanitize_hex_color',
1066
+                'capability'        => 'edit_theme_options',
1067
+                'type'              => 'option',
1068
+                'transport'         => 'refresh',
1069
+            ));
1070
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1071
+                'label'    => __('Primary Color','aui'),
1072
+                'section'  => 'aui_settings',
1073
+                'settings' => 'aui_options[color_primary]',
1074
+            )));
1075
+
1076
+            $wp_customize->add_setting('aui_options[color_secondary]', array(
1077
+                'default'           => '#6c757d',
1078
+                'sanitize_callback' => 'sanitize_hex_color',
1079
+                'capability'        => 'edit_theme_options',
1080
+                'type'              => 'option',
1081
+                'transport'         => 'refresh',
1082
+            ));
1083
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1084
+                'label'    => __('Secondary Color','aui'),
1085
+                'section'  => 'aui_settings',
1086
+                'settings' => 'aui_options[color_secondary]',
1087
+            )));
1088
+        }
1089
+
1090
+
1091
+        public static function custom_css($compatibility = true) {
1092
+            $settings = get_option('aui_options');
1093
+
1094
+            ob_start();
1095
+
1096
+            $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1097
+            $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1098
+                //AUI_PRIMARY_COLOR_ORIGINAL
1099
+            ?>
1100 1100
 			<style>
1101 1101
 				<?php
1102
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1103
-						echo self::css_primary($primary_color,$compatibility);
1104
-					}
1102
+                    if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1103
+                        echo self::css_primary($primary_color,$compatibility);
1104
+                    }
1105 1105
 
1106
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1107
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1108
-					}
1106
+                    if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1107
+                        echo self::css_secondary($settings['color_secondary'],$compatibility);
1108
+                    }
1109 1109
                 ?>
1110 1110
 			</style>
1111 1111
 			<?php
1112 1112
 
1113 1113
 
1114
-			/*
1114
+            /*
1115 1115
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1116 1116
 			 */
1117
-			return str_replace( array(
1118
-				'<style>',
1119
-				'</style>'
1120
-			), '', ob_get_clean());
1121
-		}
1122
-
1123
-		public static function css_primary($color_code,$compatibility){;
1124
-			$color_code = sanitize_hex_color($color_code);
1125
-			if(!$color_code){return '';}
1126
-			/**
1127
-			 * c = color, b = background color, o = border-color, f = fill
1128
-			 */
1129
-			$selectors = array(
1130
-				'a' => array('c'),
1131
-				'.btn-primary' => array('b','o'),
1132
-				'.btn-primary.disabled' => array('b','o'),
1133
-				'.btn-primary:disabled' => array('b','o'),
1134
-				'.btn-outline-primary' => array('c','o'),
1135
-				'.btn-outline-primary:hover' => array('b','o'),
1136
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1137
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1138
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1139
-				'.btn-link' => array('c'),
1140
-				'.dropdown-item.active' => array('b'),
1141
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1142
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1117
+            return str_replace( array(
1118
+                '<style>',
1119
+                '</style>'
1120
+            ), '', ob_get_clean());
1121
+        }
1122
+
1123
+        public static function css_primary($color_code,$compatibility){;
1124
+            $color_code = sanitize_hex_color($color_code);
1125
+            if(!$color_code){return '';}
1126
+            /**
1127
+             * c = color, b = background color, o = border-color, f = fill
1128
+             */
1129
+            $selectors = array(
1130
+                'a' => array('c'),
1131
+                '.btn-primary' => array('b','o'),
1132
+                '.btn-primary.disabled' => array('b','o'),
1133
+                '.btn-primary:disabled' => array('b','o'),
1134
+                '.btn-outline-primary' => array('c','o'),
1135
+                '.btn-outline-primary:hover' => array('b','o'),
1136
+                '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1137
+                '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1138
+                '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1139
+                '.btn-link' => array('c'),
1140
+                '.dropdown-item.active' => array('b'),
1141
+                '.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1142
+                '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1143 1143
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1144 1144
 //				'.custom-range::-moz-range-thumb' => array('b'),
1145 1145
 //				'.custom-range::-ms-thumb' => array('b'),
1146
-				'.nav-pills .nav-link.active' => array('b'),
1147
-				'.nav-pills .show>.nav-link' => array('b'),
1148
-				'.page-link' => array('c'),
1149
-				'.page-item.active .page-link' => array('b','o'),
1150
-				'.badge-primary' => array('b'),
1151
-				'.alert-primary' => array('b','o'),
1152
-				'.progress-bar' => array('b'),
1153
-				'.list-group-item.active' => array('b','o'),
1154
-				'.bg-primary' => array('b','f'),
1155
-				'.btn-link.btn-primary' => array('c'),
1156
-				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1157
-			);
1158
-
1159
-			$important_selectors = array(
1160
-				'.bg-primary' => array('b','f'),
1161
-				'.border-primary' => array('o'),
1162
-				'.text-primary' => array('c'),
1163
-			);
1164
-
1165
-			$color = array();
1166
-			$color_i = array();
1167
-			$background = array();
1168
-			$background_i = array();
1169
-			$border = array();
1170
-			$border_i = array();
1171
-			$fill = array();
1172
-			$fill_i = array();
1173
-
1174
-			$output = '';
1175
-
1176
-			// build rules into each type
1177
-			foreach($selectors as $selector => $types){
1178
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1179
-				$types = array_combine($types,$types);
1180
-				if(isset($types['c'])){$color[] = $selector;}
1181
-				if(isset($types['b'])){$background[] = $selector;}
1182
-				if(isset($types['o'])){$border[] = $selector;}
1183
-				if(isset($types['f'])){$fill[] = $selector;}
1184
-			}
1185
-
1186
-			// build rules into each type
1187
-			foreach($important_selectors as $selector => $types){
1188
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1189
-				$types = array_combine($types,$types);
1190
-				if(isset($types['c'])){$color_i[] = $selector;}
1191
-				if(isset($types['b'])){$background_i[] = $selector;}
1192
-				if(isset($types['o'])){$border_i[] = $selector;}
1193
-				if(isset($types['f'])){$fill_i[] = $selector;}
1194
-			}
1195
-
1196
-			// add any color rules
1197
-			if(!empty($color)){
1198
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1199
-			}
1200
-			if(!empty($color_i)){
1201
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1202
-			}
1203
-
1204
-			// add any background color rules
1205
-			if(!empty($background)){
1206
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1207
-			}
1208
-			if(!empty($background_i)){
1209
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1210
-			}
1211
-
1212
-			// add any border color rules
1213
-			if(!empty($border)){
1214
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1215
-			}
1216
-			if(!empty($border_i)){
1217
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1218
-			}
1219
-
1220
-			// add any fill color rules
1221
-			if(!empty($fill)){
1222
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1223
-			}
1224
-			if(!empty($fill_i)){
1225
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1226
-			}
1227
-
1228
-
1229
-			$prefix = $compatibility ? ".bsui " : "";
1230
-
1231
-			// darken
1232
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1233
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1234
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1235
-
1236
-			// lighten
1237
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1238
-
1239
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1240
-			$op_25 = $color_code."40"; // 25% opacity
1241
-
1242
-
1243
-			// button states
1244
-			$output .= $prefix ." .btn-primary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1245
-			$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;} ";
1246
-			$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.";} ";
1247
-			$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;} ";
1248
-
1249
-
1250
-			// dropdown's
1251
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1252
-
1253
-
1254
-			// input states
1255
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1256
-
1257
-			// page link
1258
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1259
-
1260
-			return $output;
1261
-		}
1262
-
1263
-		public static function css_secondary($color_code,$compatibility){;
1264
-			$color_code = sanitize_hex_color($color_code);
1265
-			if(!$color_code){return '';}
1266
-			/**
1267
-			 * c = color, b = background color, o = border-color, f = fill
1268
-			 */
1269
-			$selectors = array(
1270
-				'.btn-secondary' => array('b','o'),
1271
-				'.btn-secondary.disabled' => array('b','o'),
1272
-				'.btn-secondary:disabled' => array('b','o'),
1273
-				'.btn-outline-secondary' => array('c','o'),
1274
-				'.btn-outline-secondary:hover' => array('b','o'),
1275
-				'.btn-outline-secondary.disabled' => array('c'),
1276
-				'.btn-outline-secondary:disabled' => array('c'),
1277
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1278
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1279
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1280
-				'.badge-secondary' => array('b'),
1281
-				'.alert-secondary' => array('b','o'),
1282
-				'.btn-link.btn-secondary' => array('c'),
1283
-			);
1284
-
1285
-			$important_selectors = array(
1286
-				'.bg-secondary' => array('b','f'),
1287
-				'.border-secondary' => array('o'),
1288
-				'.text-secondary' => array('c'),
1289
-			);
1290
-
1291
-			$color = array();
1292
-			$color_i = array();
1293
-			$background = array();
1294
-			$background_i = array();
1295
-			$border = array();
1296
-			$border_i = array();
1297
-			$fill = array();
1298
-			$fill_i = array();
1299
-
1300
-			$output = '';
1301
-
1302
-			// build rules into each type
1303
-			foreach($selectors as $selector => $types){
1304
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1305
-				$types = array_combine($types,$types);
1306
-				if(isset($types['c'])){$color[] = $selector;}
1307
-				if(isset($types['b'])){$background[] = $selector;}
1308
-				if(isset($types['o'])){$border[] = $selector;}
1309
-				if(isset($types['f'])){$fill[] = $selector;}
1310
-			}
1311
-
1312
-			// build rules into each type
1313
-			foreach($important_selectors as $selector => $types){
1314
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1315
-				$types = array_combine($types,$types);
1316
-				if(isset($types['c'])){$color_i[] = $selector;}
1317
-				if(isset($types['b'])){$background_i[] = $selector;}
1318
-				if(isset($types['o'])){$border_i[] = $selector;}
1319
-				if(isset($types['f'])){$fill_i[] = $selector;}
1320
-			}
1321
-
1322
-			// add any color rules
1323
-			if(!empty($color)){
1324
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1325
-			}
1326
-			if(!empty($color_i)){
1327
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1328
-			}
1329
-
1330
-			// add any background color rules
1331
-			if(!empty($background)){
1332
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1333
-			}
1334
-			if(!empty($background_i)){
1335
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1336
-			}
1337
-
1338
-			// add any border color rules
1339
-			if(!empty($border)){
1340
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1341
-			}
1342
-			if(!empty($border_i)){
1343
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1344
-			}
1345
-
1346
-			// add any fill color rules
1347
-			if(!empty($fill)){
1348
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1349
-			}
1350
-			if(!empty($fill_i)){
1351
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1352
-			}
1353
-
1354
-
1355
-			$prefix = $compatibility ? ".bsui " : "";
1356
-
1357
-			// darken
1358
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1359
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1360
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1361
-
1362
-			// lighten
1363
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1364
-
1365
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1366
-			$op_25 = $color_code."40"; // 25% opacity
1367
-
1368
-
1369
-			// button states
1370
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1371
-			$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;} ";
1372
-			$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.";} ";
1373
-			$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;} ";
1374
-
1375
-
1376
-			return $output;
1377
-		}
1378
-
1379
-		/**
1380
-		 * Increases or decreases the brightness of a color by a percentage of the current brightness.
1381
-		 *
1382
-		 * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1383
-		 * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1384
-		 *
1385
-		 * @return  string
1386
-		 */
1387
-		public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1388
-			$hexCode = ltrim($hexCode, '#');
1389
-
1390
-			if (strlen($hexCode) == 3) {
1391
-				$hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1392
-			}
1393
-
1394
-			$hexCode = array_map('hexdec', str_split($hexCode, 2));
1395
-
1396
-			foreach ($hexCode as & $color) {
1397
-				$adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1398
-				$adjustAmount = ceil($adjustableLimit * $adjustPercent);
1399
-
1400
-				$color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1401
-			}
1402
-
1403
-			return '#' . implode($hexCode);
1404
-		}
1405
-
1406
-		/**
1407
-		 * Check if we should display examples.
1408
-		 */
1409
-		public function maybe_show_examples(){
1410
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1411
-				echo "<head>";
1412
-				wp_head();
1413
-				echo "</head>";
1414
-				echo "<body>";
1415
-				echo $this->get_examples();
1416
-				echo "</body>";
1417
-				exit;
1418
-			}
1419
-		}
1420
-
1421
-		/**
1422
-		 * Get developer examples.
1423
-		 *
1424
-		 * @return string
1425
-		 */
1426
-		public function get_examples(){
1427
-			$output = '';
1428
-
1429
-
1430
-			// open form
1431
-			$output .= "<form class='p-5 m-5 border rounded'>";
1432
-
1433
-			// input example
1434
-			$output .= aui()->input(array(
1435
-				'type'  =>  'text',
1436
-				'id'    =>  'text-example',
1437
-				'name'    =>  'text-example',
1438
-				'placeholder'   => 'text placeholder',
1439
-				'title'   => 'Text input example',
1440
-				'value' =>  '',
1441
-				'required'  => false,
1442
-				'help_text' => 'help text',
1443
-				'label' => 'Text input example label'
1444
-			));
1445
-
1446
-			// input example
1447
-			$output .= aui()->input(array(
1448
-				'type'  =>  'url',
1449
-				'id'    =>  'text-example2',
1450
-				'name'    =>  'text-example',
1451
-				'placeholder'   => 'url placeholder',
1452
-				'title'   => 'Text input example',
1453
-				'value' =>  '',
1454
-				'required'  => false,
1455
-				'help_text' => 'help text',
1456
-				'label' => 'Text input example label'
1457
-			));
1458
-
1459
-			// checkbox example
1460
-			$output .= aui()->input(array(
1461
-				'type'  =>  'checkbox',
1462
-				'id'    =>  'checkbox-example',
1463
-				'name'    =>  'checkbox-example',
1464
-				'placeholder'   => 'checkbox-example',
1465
-				'title'   => 'Checkbox example',
1466
-				'value' =>  '1',
1467
-				'checked'   => true,
1468
-				'required'  => false,
1469
-				'help_text' => 'help text',
1470
-				'label' => 'Checkbox checked'
1471
-			));
1472
-
1473
-			// checkbox example
1474
-			$output .= aui()->input(array(
1475
-				'type'  =>  'checkbox',
1476
-				'id'    =>  'checkbox-example2',
1477
-				'name'    =>  'checkbox-example2',
1478
-				'placeholder'   => 'checkbox-example',
1479
-				'title'   => 'Checkbox example',
1480
-				'value' =>  '1',
1481
-				'checked'   => false,
1482
-				'required'  => false,
1483
-				'help_text' => 'help text',
1484
-				'label' => 'Checkbox un-checked'
1485
-			));
1486
-
1487
-			// switch example
1488
-			$output .= aui()->input(array(
1489
-				'type'  =>  'checkbox',
1490
-				'id'    =>  'switch-example',
1491
-				'name'    =>  'switch-example',
1492
-				'placeholder'   => 'checkbox-example',
1493
-				'title'   => 'Switch example',
1494
-				'value' =>  '1',
1495
-				'checked'   => true,
1496
-				'switch'    => true,
1497
-				'required'  => false,
1498
-				'help_text' => 'help text',
1499
-				'label' => 'Switch on'
1500
-			));
1501
-
1502
-			// switch example
1503
-			$output .= aui()->input(array(
1504
-				'type'  =>  'checkbox',
1505
-				'id'    =>  'switch-example2',
1506
-				'name'    =>  'switch-example2',
1507
-				'placeholder'   => 'checkbox-example',
1508
-				'title'   => 'Switch example',
1509
-				'value' =>  '1',
1510
-				'checked'   => false,
1511
-				'switch'    => true,
1512
-				'required'  => false,
1513
-				'help_text' => 'help text',
1514
-				'label' => 'Switch off'
1515
-			));
1516
-
1517
-			// close form
1518
-			$output .= "</form>";
1519
-
1520
-			return $output;
1521
-		}
1522
-
1523
-	}
1524
-
1525
-	/**
1526
-	 * Run the class if found.
1527
-	 */
1528
-	AyeCode_UI_Settings::instance();
1146
+                '.nav-pills .nav-link.active' => array('b'),
1147
+                '.nav-pills .show>.nav-link' => array('b'),
1148
+                '.page-link' => array('c'),
1149
+                '.page-item.active .page-link' => array('b','o'),
1150
+                '.badge-primary' => array('b'),
1151
+                '.alert-primary' => array('b','o'),
1152
+                '.progress-bar' => array('b'),
1153
+                '.list-group-item.active' => array('b','o'),
1154
+                '.bg-primary' => array('b','f'),
1155
+                '.btn-link.btn-primary' => array('c'),
1156
+                '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1157
+            );
1158
+
1159
+            $important_selectors = array(
1160
+                '.bg-primary' => array('b','f'),
1161
+                '.border-primary' => array('o'),
1162
+                '.text-primary' => array('c'),
1163
+            );
1164
+
1165
+            $color = array();
1166
+            $color_i = array();
1167
+            $background = array();
1168
+            $background_i = array();
1169
+            $border = array();
1170
+            $border_i = array();
1171
+            $fill = array();
1172
+            $fill_i = array();
1173
+
1174
+            $output = '';
1175
+
1176
+            // build rules into each type
1177
+            foreach($selectors as $selector => $types){
1178
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1179
+                $types = array_combine($types,$types);
1180
+                if(isset($types['c'])){$color[] = $selector;}
1181
+                if(isset($types['b'])){$background[] = $selector;}
1182
+                if(isset($types['o'])){$border[] = $selector;}
1183
+                if(isset($types['f'])){$fill[] = $selector;}
1184
+            }
1185
+
1186
+            // build rules into each type
1187
+            foreach($important_selectors as $selector => $types){
1188
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1189
+                $types = array_combine($types,$types);
1190
+                if(isset($types['c'])){$color_i[] = $selector;}
1191
+                if(isset($types['b'])){$background_i[] = $selector;}
1192
+                if(isset($types['o'])){$border_i[] = $selector;}
1193
+                if(isset($types['f'])){$fill_i[] = $selector;}
1194
+            }
1195
+
1196
+            // add any color rules
1197
+            if(!empty($color)){
1198
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1199
+            }
1200
+            if(!empty($color_i)){
1201
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1202
+            }
1203
+
1204
+            // add any background color rules
1205
+            if(!empty($background)){
1206
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1207
+            }
1208
+            if(!empty($background_i)){
1209
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1210
+            }
1211
+
1212
+            // add any border color rules
1213
+            if(!empty($border)){
1214
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1215
+            }
1216
+            if(!empty($border_i)){
1217
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1218
+            }
1219
+
1220
+            // add any fill color rules
1221
+            if(!empty($fill)){
1222
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1223
+            }
1224
+            if(!empty($fill_i)){
1225
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1226
+            }
1227
+
1228
+
1229
+            $prefix = $compatibility ? ".bsui " : "";
1230
+
1231
+            // darken
1232
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1233
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1234
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1235
+
1236
+            // lighten
1237
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1238
+
1239
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1240
+            $op_25 = $color_code."40"; // 25% opacity
1241
+
1242
+
1243
+            // button states
1244
+            $output .= $prefix ." .btn-primary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1245
+            $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;} ";
1246
+            $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.";} ";
1247
+            $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;} ";
1248
+
1249
+
1250
+            // dropdown's
1251
+            $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1252
+
1253
+
1254
+            // input states
1255
+            $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1256
+
1257
+            // page link
1258
+            $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1259
+
1260
+            return $output;
1261
+        }
1262
+
1263
+        public static function css_secondary($color_code,$compatibility){;
1264
+            $color_code = sanitize_hex_color($color_code);
1265
+            if(!$color_code){return '';}
1266
+            /**
1267
+             * c = color, b = background color, o = border-color, f = fill
1268
+             */
1269
+            $selectors = array(
1270
+                '.btn-secondary' => array('b','o'),
1271
+                '.btn-secondary.disabled' => array('b','o'),
1272
+                '.btn-secondary:disabled' => array('b','o'),
1273
+                '.btn-outline-secondary' => array('c','o'),
1274
+                '.btn-outline-secondary:hover' => array('b','o'),
1275
+                '.btn-outline-secondary.disabled' => array('c'),
1276
+                '.btn-outline-secondary:disabled' => array('c'),
1277
+                '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1278
+                '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1279
+                '.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1280
+                '.badge-secondary' => array('b'),
1281
+                '.alert-secondary' => array('b','o'),
1282
+                '.btn-link.btn-secondary' => array('c'),
1283
+            );
1284
+
1285
+            $important_selectors = array(
1286
+                '.bg-secondary' => array('b','f'),
1287
+                '.border-secondary' => array('o'),
1288
+                '.text-secondary' => array('c'),
1289
+            );
1290
+
1291
+            $color = array();
1292
+            $color_i = array();
1293
+            $background = array();
1294
+            $background_i = array();
1295
+            $border = array();
1296
+            $border_i = array();
1297
+            $fill = array();
1298
+            $fill_i = array();
1299
+
1300
+            $output = '';
1301
+
1302
+            // build rules into each type
1303
+            foreach($selectors as $selector => $types){
1304
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1305
+                $types = array_combine($types,$types);
1306
+                if(isset($types['c'])){$color[] = $selector;}
1307
+                if(isset($types['b'])){$background[] = $selector;}
1308
+                if(isset($types['o'])){$border[] = $selector;}
1309
+                if(isset($types['f'])){$fill[] = $selector;}
1310
+            }
1311
+
1312
+            // build rules into each type
1313
+            foreach($important_selectors as $selector => $types){
1314
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1315
+                $types = array_combine($types,$types);
1316
+                if(isset($types['c'])){$color_i[] = $selector;}
1317
+                if(isset($types['b'])){$background_i[] = $selector;}
1318
+                if(isset($types['o'])){$border_i[] = $selector;}
1319
+                if(isset($types['f'])){$fill_i[] = $selector;}
1320
+            }
1321
+
1322
+            // add any color rules
1323
+            if(!empty($color)){
1324
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1325
+            }
1326
+            if(!empty($color_i)){
1327
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1328
+            }
1329
+
1330
+            // add any background color rules
1331
+            if(!empty($background)){
1332
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1333
+            }
1334
+            if(!empty($background_i)){
1335
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1336
+            }
1337
+
1338
+            // add any border color rules
1339
+            if(!empty($border)){
1340
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1341
+            }
1342
+            if(!empty($border_i)){
1343
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1344
+            }
1345
+
1346
+            // add any fill color rules
1347
+            if(!empty($fill)){
1348
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1349
+            }
1350
+            if(!empty($fill_i)){
1351
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1352
+            }
1353
+
1354
+
1355
+            $prefix = $compatibility ? ".bsui " : "";
1356
+
1357
+            // darken
1358
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1359
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1360
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1361
+
1362
+            // lighten
1363
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1364
+
1365
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1366
+            $op_25 = $color_code."40"; // 25% opacity
1367
+
1368
+
1369
+            // button states
1370
+            $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1371
+            $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;} ";
1372
+            $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.";} ";
1373
+            $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;} ";
1374
+
1375
+
1376
+            return $output;
1377
+        }
1378
+
1379
+        /**
1380
+         * Increases or decreases the brightness of a color by a percentage of the current brightness.
1381
+         *
1382
+         * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1383
+         * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1384
+         *
1385
+         * @return  string
1386
+         */
1387
+        public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1388
+            $hexCode = ltrim($hexCode, '#');
1389
+
1390
+            if (strlen($hexCode) == 3) {
1391
+                $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1392
+            }
1393
+
1394
+            $hexCode = array_map('hexdec', str_split($hexCode, 2));
1395
+
1396
+            foreach ($hexCode as & $color) {
1397
+                $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1398
+                $adjustAmount = ceil($adjustableLimit * $adjustPercent);
1399
+
1400
+                $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1401
+            }
1402
+
1403
+            return '#' . implode($hexCode);
1404
+        }
1405
+
1406
+        /**
1407
+         * Check if we should display examples.
1408
+         */
1409
+        public function maybe_show_examples(){
1410
+            if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1411
+                echo "<head>";
1412
+                wp_head();
1413
+                echo "</head>";
1414
+                echo "<body>";
1415
+                echo $this->get_examples();
1416
+                echo "</body>";
1417
+                exit;
1418
+            }
1419
+        }
1420
+
1421
+        /**
1422
+         * Get developer examples.
1423
+         *
1424
+         * @return string
1425
+         */
1426
+        public function get_examples(){
1427
+            $output = '';
1428
+
1429
+
1430
+            // open form
1431
+            $output .= "<form class='p-5 m-5 border rounded'>";
1432
+
1433
+            // input example
1434
+            $output .= aui()->input(array(
1435
+                'type'  =>  'text',
1436
+                'id'    =>  'text-example',
1437
+                'name'    =>  'text-example',
1438
+                'placeholder'   => 'text placeholder',
1439
+                'title'   => 'Text input example',
1440
+                'value' =>  '',
1441
+                'required'  => false,
1442
+                'help_text' => 'help text',
1443
+                'label' => 'Text input example label'
1444
+            ));
1445
+
1446
+            // input example
1447
+            $output .= aui()->input(array(
1448
+                'type'  =>  'url',
1449
+                'id'    =>  'text-example2',
1450
+                'name'    =>  'text-example',
1451
+                'placeholder'   => 'url placeholder',
1452
+                'title'   => 'Text input example',
1453
+                'value' =>  '',
1454
+                'required'  => false,
1455
+                'help_text' => 'help text',
1456
+                'label' => 'Text input example label'
1457
+            ));
1458
+
1459
+            // checkbox example
1460
+            $output .= aui()->input(array(
1461
+                'type'  =>  'checkbox',
1462
+                'id'    =>  'checkbox-example',
1463
+                'name'    =>  'checkbox-example',
1464
+                'placeholder'   => 'checkbox-example',
1465
+                'title'   => 'Checkbox example',
1466
+                'value' =>  '1',
1467
+                'checked'   => true,
1468
+                'required'  => false,
1469
+                'help_text' => 'help text',
1470
+                'label' => 'Checkbox checked'
1471
+            ));
1472
+
1473
+            // checkbox example
1474
+            $output .= aui()->input(array(
1475
+                'type'  =>  'checkbox',
1476
+                'id'    =>  'checkbox-example2',
1477
+                'name'    =>  'checkbox-example2',
1478
+                'placeholder'   => 'checkbox-example',
1479
+                'title'   => 'Checkbox example',
1480
+                'value' =>  '1',
1481
+                'checked'   => false,
1482
+                'required'  => false,
1483
+                'help_text' => 'help text',
1484
+                'label' => 'Checkbox un-checked'
1485
+            ));
1486
+
1487
+            // switch example
1488
+            $output .= aui()->input(array(
1489
+                'type'  =>  'checkbox',
1490
+                'id'    =>  'switch-example',
1491
+                'name'    =>  'switch-example',
1492
+                'placeholder'   => 'checkbox-example',
1493
+                'title'   => 'Switch example',
1494
+                'value' =>  '1',
1495
+                'checked'   => true,
1496
+                'switch'    => true,
1497
+                'required'  => false,
1498
+                'help_text' => 'help text',
1499
+                'label' => 'Switch on'
1500
+            ));
1501
+
1502
+            // switch example
1503
+            $output .= aui()->input(array(
1504
+                'type'  =>  'checkbox',
1505
+                'id'    =>  'switch-example2',
1506
+                'name'    =>  'switch-example2',
1507
+                'placeholder'   => 'checkbox-example',
1508
+                'title'   => 'Switch example',
1509
+                'value' =>  '1',
1510
+                'checked'   => false,
1511
+                'switch'    => true,
1512
+                'required'  => false,
1513
+                'help_text' => 'help text',
1514
+                'label' => 'Switch off'
1515
+            ));
1516
+
1517
+            // close form
1518
+            $output .= "</form>";
1519
+
1520
+            return $output;
1521
+        }
1522
+
1523
+    }
1524
+
1525
+    /**
1526
+     * Run the class if found.
1527
+     */
1528
+    AyeCode_UI_Settings::instance();
1529 1529
 }
1530 1530
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +235 added lines, -235 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@  discard block
 block discarded – undo
12 12
 /**
13 13
  * Bail if we are not in WP.
14 14
  */
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if (!defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
19 19
 /**
20 20
  * Only add if the class does not already exist.
21 21
  */
22
-if ( ! class_exists( 'AyeCode_UI_Settings' ) ) {
22
+if (!class_exists('AyeCode_UI_Settings')) {
23 23
 
24 24
 	/**
25 25
 	 * A Class to be able to change settings for Font Awesome.
@@ -98,23 +98,23 @@  discard block
 block discarded – undo
98 98
 		 * @return AyeCode_UI_Settings - Main instance.
99 99
 		 */
100 100
 		public static function instance() {
101
-			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
101
+			if (!isset(self::$instance) && !(self::$instance instanceof AyeCode_UI_Settings)) {
102 102
 
103 103
 				self::$instance = new AyeCode_UI_Settings;
104 104
 
105
-				add_action( 'init', array( self::$instance, 'init' ) ); // set settings
105
+				add_action('init', array(self::$instance, 'init')); // set settings
106 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' ) );
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 110
 
111 111
 					// Maybe show example page
112
-					add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
112
+					add_action('template_redirect', array(self::$instance, 'maybe_show_examples'));
113 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' );
117
+				do_action('ayecode_ui_settings_loaded');
118 118
 			}
119 119
 
120 120
 			return self::$instance;
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 		/**
124 124
 		 * Setup some constants.
125 125
 		 */
126
-		public function constants(){
126
+		public function constants() {
127 127
 			define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128 128
 			define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129 129
 			if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
@@ -143,24 +143,24 @@  discard block
 block discarded – undo
143 143
 			 *
144 144
 			 * We load super early in case there is a theme version that might change the colors
145 145
 			 */
146
-			if ( $this->settings['css'] ) {
147
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
146
+			if ($this->settings['css']) {
147
+				add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), 1);
148 148
 			}
149
-			if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
150
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
149
+			if ($this->settings['css_backend'] && $this->load_admin_scripts()) {
150
+				add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 1);
151 151
 			}
152 152
 
153 153
 			// maybe load JS
154
-			if ( $this->settings['js'] ) {
155
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
154
+			if ($this->settings['js']) {
155
+				add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 1);
156 156
 			}
157
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
158
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
157
+			if ($this->settings['js_backend'] && $this->load_admin_scripts()) {
158
+				add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 1);
159 159
 			}
160 160
 
161 161
 			// Maybe set the HTML font size
162
-			if ( $this->settings['html_font_size'] ) {
163
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
162
+			if ($this->settings['html_font_size']) {
163
+				add_action('wp_footer', array($this, 'html_font_size'), 10);
164 164
 			}
165 165
 
166 166
 
@@ -171,13 +171,13 @@  discard block
 block discarded – undo
171 171
 		 *
172 172
 		 * @return bool
173 173
 		 */
174
-		public function load_admin_scripts(){
174
+		public function load_admin_scripts() {
175 175
 			$result = true;
176 176
 
177
-			if(!empty($this->settings['disable_admin'])){
178
-				$url_parts = explode("\n",$this->settings['disable_admin']);
179
-				foreach($url_parts as $part){
180
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
177
+			if (!empty($this->settings['disable_admin'])) {
178
+				$url_parts = explode("\n", $this->settings['disable_admin']);
179
+				foreach ($url_parts as $part) {
180
+					if (strpos($_SERVER['REQUEST_URI'], trim($part)) !== false) {
181 181
 						return false; // return early, no point checking further
182 182
 					}
183 183
 				}
@@ -189,9 +189,9 @@  discard block
 block discarded – undo
189 189
 		/**
190 190
 		 * Add a html font size to the footer.
191 191
 		 */
192
-		public function html_font_size(){
192
+		public function html_font_size() {
193 193
 			$this->settings = $this->get_settings();
194
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
194
+			echo "<style>html{font-size:" . absint($this->settings['html_font_size']) . "px;}</style>";
195 195
 		}
196 196
 
197 197
 		/**
@@ -201,18 +201,18 @@  discard block
 block discarded – undo
201 201
 
202 202
 			$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
203 203
 
204
-			if($this->settings[$css_setting]){
205
-				$compatibility = $this->settings[$css_setting]=='core' ? false : true;
206
-				$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui.css' : $this->url.'assets/css/ayecode-ui-compatibility.css';
207
-				wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
208
-				wp_enqueue_style( 'ayecode-ui' );
204
+			if ($this->settings[$css_setting]) {
205
+				$compatibility = $this->settings[$css_setting] == 'core' ? false : true;
206
+				$url = $this->settings[$css_setting] == 'core' ? $this->url . 'assets/css/ayecode-ui.css' : $this->url . 'assets/css/ayecode-ui-compatibility.css';
207
+				wp_register_style('ayecode-ui', $url, array(), $this->latest);
208
+				wp_enqueue_style('ayecode-ui');
209 209
 
210 210
 				// flatpickr
211
-				wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
211
+				wp_register_style('flatpickr', $this->url . 'assets/css/flatpickr.min.css', array(), $this->latest);
212 212
 
213 213
 
214 214
 				// fix some wp-admin issues
215
-				if(is_admin()){
215
+				if (is_admin()) {
216 216
 					$custom_css = "
217 217
                 body{
218 218
                     background-color: #f1f1f1;
@@ -255,11 +255,11 @@  discard block
 block discarded – undo
255 255
 						    padding: 0;
256 256
 						}
257 257
 					";
258
-					wp_add_inline_style( 'ayecode-ui', $custom_css );
258
+					wp_add_inline_style('ayecode-ui', $custom_css);
259 259
 				}
260 260
 
261 261
 				// custom changes
262
-				wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
262
+				wp_add_inline_style('ayecode-ui', self::custom_css($compatibility));
263 263
 
264 264
 			}
265 265
 		}
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
 		 *
270 270
 		 * If this remains small then its best to use this than to add another JS file.
271 271
 		 */
272
-		public function inline_script(){
272
+		public function inline_script() {
273 273
 			ob_start();
274 274
 			?>
275 275
 			<script>
@@ -763,10 +763,10 @@  discard block
 block discarded – undo
763 763
 			/*
764 764
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
765 765
 			 */
766
-			return str_replace( array(
766
+			return str_replace(array(
767 767
 				'<script>',
768 768
 				'</script>'
769
-			), '', $output );
769
+			), '', $output);
770 770
 		}
771 771
 
772 772
 		/**
@@ -774,7 +774,7 @@  discard block
 block discarded – undo
774 774
 		 *
775 775
 		 * If this remains small then its best to use this than to add another JS file.
776 776
 		 */
777
-		public function inline_script_file_browser(){
777
+		public function inline_script_file_browser() {
778 778
 			ob_start();
779 779
 			?>
780 780
 			<script>
@@ -789,10 +789,10 @@  discard block
 block discarded – undo
789 789
 			/*
790 790
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
791 791
 			 */
792
-			return str_replace( array(
792
+			return str_replace(array(
793 793
 				'<script>',
794 794
 				'</script>'
795
-			), '', $output );
795
+			), '', $output);
796 796
 		}
797 797
 
798 798
 		/**
@@ -803,40 +803,40 @@  discard block
 block discarded – undo
803 803
 			$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
804 804
 
805 805
 			// select2
806
-			wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version );
806
+			wp_register_script('select2', $this->url . 'assets/js/select2.min.js', array('jquery'), $this->select2_version);
807 807
 
808 808
 			// flatpickr
809
-			wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest );
809
+			wp_register_script('flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest);
810 810
 
811 811
 			// Bootstrap file browser
812
-			wp_register_script( 'aui-custom-file-input', $url = $this->url.'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version );
813
-			wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
812
+			wp_register_script('aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version);
813
+			wp_add_inline_script('aui-custom-file-input', $this->inline_script_file_browser());
814 814
 
815 815
 			$load_inline = false;
816 816
 
817
-			if($this->settings[$js_setting]=='core-popper'){
817
+			if ($this->settings[$js_setting] == 'core-popper') {
818 818
 				// Bootstrap bundle
819
-				$url = $this->url.'assets/js/bootstrap.bundle.min.js';
820
-				wp_register_script( 'bootstrap-js-bundle', $url, array('select2','jquery'), $this->latest );
819
+				$url = $this->url . 'assets/js/bootstrap.bundle.min.js';
820
+				wp_register_script('bootstrap-js-bundle', $url, array('select2', 'jquery'), $this->latest);
821 821
 				// if in admin then add to footer for compatibility.
822
-				is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle');
822
+				is_admin() ? wp_enqueue_script('bootstrap-js-bundle', '', null, null, true) : wp_enqueue_script('bootstrap-js-bundle');
823 823
 				$script = $this->inline_script();
824
-				wp_add_inline_script( 'bootstrap-js-bundle', $script );
825
-			}elseif($this->settings[$js_setting]=='popper'){
826
-				$url = $this->url.'assets/js/popper.min.js';
827
-				wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest );
828
-				wp_enqueue_script( 'bootstrap-js-popper' );
824
+				wp_add_inline_script('bootstrap-js-bundle', $script);
825
+			}elseif ($this->settings[$js_setting] == 'popper') {
826
+				$url = $this->url . 'assets/js/popper.min.js';
827
+				wp_register_script('bootstrap-js-popper', $url, array('select2', 'jquery'), $this->latest);
828
+				wp_enqueue_script('bootstrap-js-popper');
829 829
 				$load_inline = true;
830
-			}else{
830
+			} else {
831 831
 				$load_inline = true;
832 832
 			}
833 833
 
834 834
 			// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
835
-			if($load_inline){
836
-				wp_register_script( 'bootstrap-dummy', '',array('select2','jquery') );
837
-				wp_enqueue_script( 'bootstrap-dummy' );
835
+			if ($load_inline) {
836
+				wp_register_script('bootstrap-dummy', '', array('select2', 'jquery'));
837
+				wp_enqueue_script('bootstrap-dummy');
838 838
 				$script = $this->inline_script();
839
-				wp_add_inline_script( 'bootstrap-dummy', $script  );
839
+				wp_add_inline_script('bootstrap-dummy', $script);
840 840
 			}
841 841
 
842 842
 		}
@@ -844,9 +844,9 @@  discard block
 block discarded – undo
844 844
 		/**
845 845
 		 * Enqueue flatpickr if called.
846 846
 		 */
847
-		public function enqueue_flatpickr(){
848
-			wp_enqueue_style( 'flatpickr' );
849
-			wp_enqueue_script( 'flatpickr' );
847
+		public function enqueue_flatpickr() {
848
+			wp_enqueue_style('flatpickr');
849
+			wp_enqueue_script('flatpickr');
850 850
 		}
851 851
 
852 852
 		/**
@@ -858,15 +858,15 @@  discard block
 block discarded – undo
858 858
 
859 859
 			$url = '';
860 860
 			// check if we are inside a plugin
861
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
861
+			$file_dir = str_replace("/includes", "", wp_normalize_path(dirname(__FILE__)));
862 862
 
863 863
 			// add check in-case user has changed wp-content dir name.
864 864
 			$wp_content_folder_name = basename(WP_CONTENT_DIR);
865
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
866
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
865
+			$dir_parts = explode("/$wp_content_folder_name/", $file_dir);
866
+			$url_parts = explode("/$wp_content_folder_name/", plugins_url());
867 867
 
868
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
869
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
868
+			if (!empty($url_parts[0]) && !empty($dir_parts[1])) {
869
+				$url = trailingslashit($url_parts[0] . "/$wp_content_folder_name/" . $dir_parts[1]);
870 870
 			}
871 871
 
872 872
 			return $url;
@@ -876,7 +876,7 @@  discard block
 block discarded – undo
876 876
 		 * Register the database settings with WordPress.
877 877
 		 */
878 878
 		public function register_settings() {
879
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
879
+			register_setting('ayecode-ui-settings', 'ayecode-ui-settings');
880 880
 		}
881 881
 
882 882
 		/**
@@ -885,10 +885,10 @@  discard block
 block discarded – undo
885 885
 		 */
886 886
 		public function menu_item() {
887 887
 			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
888
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
888
+			call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
889 889
 				$this,
890 890
 				'settings_page'
891
-			) );
891
+			));
892 892
 		}
893 893
 
894 894
 		/**
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
 		 *
897 897
 		 * @return array
898 898
 		 */
899
-		public function theme_js_settings(){
899
+		public function theme_js_settings() {
900 900
 			return array(
901 901
 				'ayetheme' => 'popper',
902 902
 				'listimia' => 'required',
@@ -912,17 +912,17 @@  discard block
 block discarded – undo
912 912
 		 */
913 913
 		public function get_settings() {
914 914
 
915
-			$db_settings = get_option( 'ayecode-ui-settings' );
915
+			$db_settings = get_option('ayecode-ui-settings');
916 916
 			$js_default = 'core-popper';
917 917
 			$js_default_backend = $js_default;
918 918
 
919 919
 			// maybe set defaults (if no settings set)
920
-			if(empty($db_settings)){
921
-				$active_theme = strtolower( get_template() ); // active parent theme.
920
+			if (empty($db_settings)) {
921
+				$active_theme = strtolower(get_template()); // active parent theme.
922 922
 				$theme_js_settings = self::theme_js_settings();
923
-				if(isset($theme_js_settings[$active_theme])){
923
+				if (isset($theme_js_settings[$active_theme])) {
924 924
 					$js_default = $theme_js_settings[$active_theme];
925
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
925
+					$js_default_backend = isset($theme_js_settings[$active_theme . "_backend"]) ? $theme_js_settings[$active_theme . "_backend"] : $js_default;
926 926
 				}
927 927
 			}
928 928
 
@@ -935,14 +935,14 @@  discard block
 block discarded – undo
935 935
 				'disable_admin'     =>  '', // URL snippets to disable loading on admin
936 936
 			);
937 937
 
938
-			$settings = wp_parse_args( $db_settings, $defaults );
938
+			$settings = wp_parse_args($db_settings, $defaults);
939 939
 
940 940
 			/**
941 941
 			 * Filter the Bootstrap settings.
942 942
 			 *
943 943
 			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
944 944
 			 */
945
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
945
+			return $this->settings = apply_filters('ayecode-ui-settings', $settings, $db_settings, $defaults);
946 946
 		}
947 947
 
948 948
 
@@ -950,90 +950,90 @@  discard block
 block discarded – undo
950 950
 		 * The settings page html output.
951 951
 		 */
952 952
 		public function settings_page() {
953
-			if ( ! current_user_can( 'manage_options' ) ) {
954
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
953
+			if (!current_user_can('manage_options')) {
954
+				wp_die(__('You do not have sufficient permissions to access this page.', 'aui'));
955 955
 			}
956 956
 			?>
957 957
 			<div class="wrap">
958 958
 				<h1><?php echo $this->name; ?></h1>
959
-				<p><?php _e("Here you can adjust settings if you are having compatibility issues.","aui");?></p>
959
+				<p><?php _e("Here you can adjust settings if you are having compatibility issues.", "aui"); ?></p>
960 960
 				<form method="post" action="options.php">
961 961
 					<?php
962
-					settings_fields( 'ayecode-ui-settings' );
963
-					do_settings_sections( 'ayecode-ui-settings' );
962
+					settings_fields('ayecode-ui-settings');
963
+					do_settings_sections('ayecode-ui-settings');
964 964
 					?>
965 965
 
966
-					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
966
+					<h2><?php _e('Frontend', 'aui'); ?></h2>
967 967
 					<table class="form-table wpbs-table-settings">
968 968
 						<tr valign="top">
969 969
 							<th scope="row"><label
970
-									for="wpbs-css"><?php _e( 'Load CSS', 'aui' ); ?></label></th>
970
+									for="wpbs-css"><?php _e('Load CSS', 'aui'); ?></label></th>
971 971
 							<td>
972 972
 								<select name="ayecode-ui-settings[css]" id="wpbs-css">
973
-									<option	value="compatibility" <?php selected( $this->settings['css'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode', 'aui' ); ?></option>
974
-									<option value="core" <?php selected( $this->settings['css'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option>
975
-									<option	value="" <?php selected( $this->settings['css'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option>
973
+									<option	value="compatibility" <?php selected($this->settings['css'], 'compatibility'); ?>><?php _e('Compatibility Mode', 'aui'); ?></option>
974
+									<option value="core" <?php selected($this->settings['css'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option>
975
+									<option	value="" <?php selected($this->settings['css'], ''); ?>><?php _e('Disabled', 'aui'); ?></option>
976 976
 								</select>
977 977
 							</td>
978 978
 						</tr>
979 979
 
980 980
 						<tr valign="top">
981 981
 							<th scope="row"><label
982
-									for="wpbs-js"><?php _e( 'Load JS', 'aui' ); ?></label></th>
982
+									for="wpbs-js"><?php _e('Load JS', 'aui'); ?></label></th>
983 983
 							<td>
984 984
 								<select name="ayecode-ui-settings[js]" id="wpbs-js">
985
-									<option	value="core-popper" <?php selected( $this->settings['js'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option>
986
-									<option value="popper" <?php selected( $this->settings['js'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option>
987
-									<option value="required" <?php selected( $this->settings['js'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option>
988
-									<option	value="" <?php selected( $this->settings['js'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option>
985
+									<option	value="core-popper" <?php selected($this->settings['js'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option>
986
+									<option value="popper" <?php selected($this->settings['js'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option>
987
+									<option value="required" <?php selected($this->settings['js'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option>
988
+									<option	value="" <?php selected($this->settings['js'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option>
989 989
 								</select>
990 990
 							</td>
991 991
 						</tr>
992 992
 
993 993
 						<tr valign="top">
994 994
 							<th scope="row"><label
995
-									for="wpbs-font_size"><?php _e( 'HTML Font Size (px)', 'aui' ); ?></label></th>
995
+									for="wpbs-font_size"><?php _e('HTML Font Size (px)', 'aui'); ?></label></th>
996 996
 							<td>
997
-								<input type="number" name="ayecode-ui-settings[html_font_size]" id="wpbs-font_size" value="<?php echo absint( $this->settings['html_font_size']); ?>" placeholder="16" />
998
-								<p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.","aui");?></p>
997
+								<input type="number" name="ayecode-ui-settings[html_font_size]" id="wpbs-font_size" value="<?php echo absint($this->settings['html_font_size']); ?>" placeholder="16" />
998
+								<p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.", "aui"); ?></p>
999 999
 							</td>
1000 1000
 						</tr>
1001 1001
 
1002 1002
 					</table>
1003 1003
 
1004
-					<h2><?php _e( 'Backend', 'aui' ); ?> (wp-admin)</h2>
1004
+					<h2><?php _e('Backend', 'aui'); ?> (wp-admin)</h2>
1005 1005
 					<table class="form-table wpbs-table-settings">
1006 1006
 						<tr valign="top">
1007 1007
 							<th scope="row"><label
1008
-									for="wpbs-css-admin"><?php _e( 'Load CSS', 'aui' ); ?></label></th>
1008
+									for="wpbs-css-admin"><?php _e('Load CSS', 'aui'); ?></label></th>
1009 1009
 							<td>
1010 1010
 								<select name="ayecode-ui-settings[css_backend]" id="wpbs-css-admin">
1011
-									<option	value="compatibility" <?php selected( $this->settings['css_backend'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode', 'aui' ); ?></option>
1012
-									<option value="core" <?php selected( $this->settings['css_backend'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option>
1013
-									<option	value="" <?php selected( $this->settings['css_backend'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option>
1011
+									<option	value="compatibility" <?php selected($this->settings['css_backend'], 'compatibility'); ?>><?php _e('Compatibility Mode', 'aui'); ?></option>
1012
+									<option value="core" <?php selected($this->settings['css_backend'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option>
1013
+									<option	value="" <?php selected($this->settings['css_backend'], ''); ?>><?php _e('Disabled', 'aui'); ?></option>
1014 1014
 								</select>
1015 1015
 							</td>
1016 1016
 						</tr>
1017 1017
 
1018 1018
 						<tr valign="top">
1019 1019
 							<th scope="row"><label
1020
-									for="wpbs-js-admin"><?php _e( 'Load JS', 'aui' ); ?></label></th>
1020
+									for="wpbs-js-admin"><?php _e('Load JS', 'aui'); ?></label></th>
1021 1021
 							<td>
1022 1022
 								<select name="ayecode-ui-settings[js_backend]" id="wpbs-js-admin">
1023
-									<option	value="core-popper" <?php selected( $this->settings['js_backend'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option>
1024
-									<option value="popper" <?php selected( $this->settings['js_backend'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option>
1025
-									<option value="required" <?php selected( $this->settings['js_backend'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option>
1026
-									<option	value="" <?php selected( $this->settings['js_backend'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option>
1023
+									<option	value="core-popper" <?php selected($this->settings['js_backend'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option>
1024
+									<option value="popper" <?php selected($this->settings['js_backend'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option>
1025
+									<option value="required" <?php selected($this->settings['js_backend'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option>
1026
+									<option	value="" <?php selected($this->settings['js_backend'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option>
1027 1027
 								</select>
1028 1028
 							</td>
1029 1029
 						</tr>
1030 1030
 
1031 1031
 						<tr valign="top">
1032 1032
 							<th scope="row"><label
1033
-									for="wpbs-disable-admin"><?php _e( 'Disable load on URL', 'aui' ); ?></label></th>
1033
+									for="wpbs-disable-admin"><?php _e('Disable load on URL', 'aui'); ?></label></th>
1034 1034
 							<td>
1035
-								<p><?php _e( 'If you have backend conflict you can enter a partial URL argument that will disable the loading of AUI on those pages. Add each argument on a new line.', 'aui' ); ?></p>
1036
-								<textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php &#10;action=go"><?php echo $this->settings['disable_admin'];?></textarea>
1035
+								<p><?php _e('If you have backend conflict you can enter a partial URL argument that will disable the loading of AUI on those pages. Add each argument on a new line.', 'aui'); ?></p>
1036
+								<textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php &#10;action=go"><?php echo $this->settings['disable_admin']; ?></textarea>
1037 1037
 
1038 1038
 							</td>
1039 1039
 						</tr>
@@ -1051,9 +1051,9 @@  discard block
 block discarded – undo
1051 1051
 			<?php
1052 1052
 		}
1053 1053
 
1054
-		public function customizer_settings($wp_customize){
1054
+		public function customizer_settings($wp_customize) {
1055 1055
 			$wp_customize->add_section('aui_settings', array(
1056
-				'title'    => __('AyeCode UI','aui'),
1056
+				'title'    => __('AyeCode UI', 'aui'),
1057 1057
 				'priority' => 120,
1058 1058
 			));
1059 1059
 
@@ -1067,8 +1067,8 @@  discard block
 block discarded – undo
1067 1067
 				'type'              => 'option',
1068 1068
 				'transport'         => 'refresh',
1069 1069
 			));
1070
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1071
-				'label'    => __('Primary Color','aui'),
1070
+			$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1071
+				'label'    => __('Primary Color', 'aui'),
1072 1072
 				'section'  => 'aui_settings',
1073 1073
 				'settings' => 'aui_options[color_primary]',
1074 1074
 			)));
@@ -1080,8 +1080,8 @@  discard block
 block discarded – undo
1080 1080
 				'type'              => 'option',
1081 1081
 				'transport'         => 'refresh',
1082 1082
 			));
1083
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1084
-				'label'    => __('Secondary Color','aui'),
1083
+			$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1084
+				'label'    => __('Secondary Color', 'aui'),
1085 1085
 				'section'  => 'aui_settings',
1086 1086
 				'settings' => 'aui_options[color_secondary]',
1087 1087
 			)));
@@ -1099,12 +1099,12 @@  discard block
 block discarded – undo
1099 1099
 			?>
1100 1100
 			<style>
1101 1101
 				<?php
1102
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1103
-						echo self::css_primary($primary_color,$compatibility);
1102
+					if (!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL) {
1103
+						echo self::css_primary($primary_color, $compatibility);
1104 1104
 					}
1105 1105
 
1106
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1107
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1106
+					if (!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL) {
1107
+						echo self::css_secondary($settings['color_secondary'], $compatibility);
1108 1108
 					}
1109 1109
                 ?>
1110 1110
 			</style>
@@ -1114,50 +1114,50 @@  discard block
 block discarded – undo
1114 1114
 			/*
1115 1115
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1116 1116
 			 */
1117
-			return str_replace( array(
1117
+			return str_replace(array(
1118 1118
 				'<style>',
1119 1119
 				'</style>'
1120 1120
 			), '', ob_get_clean());
1121 1121
 		}
1122 1122
 
1123
-		public static function css_primary($color_code,$compatibility){;
1123
+		public static function css_primary($color_code, $compatibility) {;
1124 1124
 			$color_code = sanitize_hex_color($color_code);
1125
-			if(!$color_code){return '';}
1125
+			if (!$color_code) {return ''; }
1126 1126
 			/**
1127 1127
 			 * c = color, b = background color, o = border-color, f = fill
1128 1128
 			 */
1129 1129
 			$selectors = array(
1130 1130
 				'a' => array('c'),
1131
-				'.btn-primary' => array('b','o'),
1132
-				'.btn-primary.disabled' => array('b','o'),
1133
-				'.btn-primary:disabled' => array('b','o'),
1134
-				'.btn-outline-primary' => array('c','o'),
1135
-				'.btn-outline-primary:hover' => array('b','o'),
1136
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1137
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1138
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1131
+				'.btn-primary' => array('b', 'o'),
1132
+				'.btn-primary.disabled' => array('b', 'o'),
1133
+				'.btn-primary:disabled' => array('b', 'o'),
1134
+				'.btn-outline-primary' => array('c', 'o'),
1135
+				'.btn-outline-primary:hover' => array('b', 'o'),
1136
+				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b', 'o'),
1137
+				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b', 'o'),
1138
+				'.show>.btn-outline-primary.dropdown-toggle' => array('b', 'o'),
1139 1139
 				'.btn-link' => array('c'),
1140 1140
 				'.dropdown-item.active' => array('b'),
1141
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1142
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1141
+				'.custom-control-input:checked~.custom-control-label::before' => array('b', 'o'),
1142
+				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b', 'o'),
1143 1143
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1144 1144
 //				'.custom-range::-moz-range-thumb' => array('b'),
1145 1145
 //				'.custom-range::-ms-thumb' => array('b'),
1146 1146
 				'.nav-pills .nav-link.active' => array('b'),
1147 1147
 				'.nav-pills .show>.nav-link' => array('b'),
1148 1148
 				'.page-link' => array('c'),
1149
-				'.page-item.active .page-link' => array('b','o'),
1149
+				'.page-item.active .page-link' => array('b', 'o'),
1150 1150
 				'.badge-primary' => array('b'),
1151
-				'.alert-primary' => array('b','o'),
1151
+				'.alert-primary' => array('b', 'o'),
1152 1152
 				'.progress-bar' => array('b'),
1153
-				'.list-group-item.active' => array('b','o'),
1154
-				'.bg-primary' => array('b','f'),
1153
+				'.list-group-item.active' => array('b', 'o'),
1154
+				'.bg-primary' => array('b', 'f'),
1155 1155
 				'.btn-link.btn-primary' => array('c'),
1156 1156
 				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1157 1157
 			);
1158 1158
 
1159 1159
 			$important_selectors = array(
1160
-				'.bg-primary' => array('b','f'),
1160
+				'.bg-primary' => array('b', 'f'),
1161 1161
 				'.border-primary' => array('o'),
1162 1162
 				'.text-primary' => array('c'),
1163 1163
 			);
@@ -1174,116 +1174,116 @@  discard block
 block discarded – undo
1174 1174
 			$output = '';
1175 1175
 
1176 1176
 			// build rules into each type
1177
-			foreach($selectors as $selector => $types){
1178
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1179
-				$types = array_combine($types,$types);
1180
-				if(isset($types['c'])){$color[] = $selector;}
1181
-				if(isset($types['b'])){$background[] = $selector;}
1182
-				if(isset($types['o'])){$border[] = $selector;}
1183
-				if(isset($types['f'])){$fill[] = $selector;}
1177
+			foreach ($selectors as $selector => $types) {
1178
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1179
+				$types = array_combine($types, $types);
1180
+				if (isset($types['c'])) {$color[] = $selector; }
1181
+				if (isset($types['b'])) {$background[] = $selector; }
1182
+				if (isset($types['o'])) {$border[] = $selector; }
1183
+				if (isset($types['f'])) {$fill[] = $selector; }
1184 1184
 			}
1185 1185
 
1186 1186
 			// build rules into each type
1187
-			foreach($important_selectors as $selector => $types){
1188
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1189
-				$types = array_combine($types,$types);
1190
-				if(isset($types['c'])){$color_i[] = $selector;}
1191
-				if(isset($types['b'])){$background_i[] = $selector;}
1192
-				if(isset($types['o'])){$border_i[] = $selector;}
1193
-				if(isset($types['f'])){$fill_i[] = $selector;}
1187
+			foreach ($important_selectors as $selector => $types) {
1188
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1189
+				$types = array_combine($types, $types);
1190
+				if (isset($types['c'])) {$color_i[] = $selector; }
1191
+				if (isset($types['b'])) {$background_i[] = $selector; }
1192
+				if (isset($types['o'])) {$border_i[] = $selector; }
1193
+				if (isset($types['f'])) {$fill_i[] = $selector; }
1194 1194
 			}
1195 1195
 
1196 1196
 			// add any color rules
1197
-			if(!empty($color)){
1198
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1197
+			if (!empty($color)) {
1198
+				$output .= implode(",", $color) . "{color: $color_code;} ";
1199 1199
 			}
1200
-			if(!empty($color_i)){
1201
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1200
+			if (!empty($color_i)) {
1201
+				$output .= implode(",", $color_i) . "{color: $color_code !important;} ";
1202 1202
 			}
1203 1203
 
1204 1204
 			// add any background color rules
1205
-			if(!empty($background)){
1206
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1205
+			if (!empty($background)) {
1206
+				$output .= implode(",", $background) . "{background-color: $color_code;} ";
1207 1207
 			}
1208
-			if(!empty($background_i)){
1209
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1208
+			if (!empty($background_i)) {
1209
+				$output .= implode(",", $background_i) . "{background-color: $color_code !important;} ";
1210 1210
 			}
1211 1211
 
1212 1212
 			// add any border color rules
1213
-			if(!empty($border)){
1214
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1213
+			if (!empty($border)) {
1214
+				$output .= implode(",", $border) . "{border-color: $color_code;} ";
1215 1215
 			}
1216
-			if(!empty($border_i)){
1217
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1216
+			if (!empty($border_i)) {
1217
+				$output .= implode(",", $border_i) . "{border-color: $color_code !important;} ";
1218 1218
 			}
1219 1219
 
1220 1220
 			// add any fill color rules
1221
-			if(!empty($fill)){
1222
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1221
+			if (!empty($fill)) {
1222
+				$output .= implode(",", $fill) . "{fill: $color_code;} ";
1223 1223
 			}
1224
-			if(!empty($fill_i)){
1225
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1224
+			if (!empty($fill_i)) {
1225
+				$output .= implode(",", $fill_i) . "{fill: $color_code !important;} ";
1226 1226
 			}
1227 1227
 
1228 1228
 
1229 1229
 			$prefix = $compatibility ? ".bsui " : "";
1230 1230
 
1231 1231
 			// darken
1232
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1233
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1234
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1232
+			$darker_075 = self::css_hex_lighten_darken($color_code, "-0.075");
1233
+			$darker_10 = self::css_hex_lighten_darken($color_code, "-0.10");
1234
+			$darker_125 = self::css_hex_lighten_darken($color_code, "-0.125");
1235 1235
 
1236 1236
 			// lighten
1237
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1237
+			$lighten_25 = self::css_hex_lighten_darken($color_code, "0.25");
1238 1238
 
1239 1239
 			// opacity see https://css-tricks.com/8-digit-hex-codes/
1240
-			$op_25 = $color_code."40"; // 25% opacity
1240
+			$op_25 = $color_code . "40"; // 25% opacity
1241 1241
 
1242 1242
 
1243 1243
 			// button states
1244
-			$output .= $prefix ." .btn-primary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1245
-			$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;} ";
1246
-			$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.";} ";
1247
-			$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;} ";
1244
+			$output .= $prefix . " .btn-primary:hover{background-color: " . $darker_075 . ";    border-color: " . $darker_10 . ";} ";
1245
+			$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;} ";
1246
+			$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 . ";} ";
1247
+			$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;} ";
1248 1248
 
1249 1249
 
1250 1250
 			// dropdown's
1251
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1251
+			$output .= $prefix . " .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1252 1252
 
1253 1253
 
1254 1254
 			// input states
1255
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1255
+			$output .= $prefix . " .form-control:focus{border-color: " . $lighten_25 . ";box-shadow: 0 0 0 0.2rem $op_25;} ";
1256 1256
 
1257 1257
 			// page link
1258
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1258
+			$output .= $prefix . " .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1259 1259
 
1260 1260
 			return $output;
1261 1261
 		}
1262 1262
 
1263
-		public static function css_secondary($color_code,$compatibility){;
1263
+		public static function css_secondary($color_code, $compatibility) {;
1264 1264
 			$color_code = sanitize_hex_color($color_code);
1265
-			if(!$color_code){return '';}
1265
+			if (!$color_code) {return ''; }
1266 1266
 			/**
1267 1267
 			 * c = color, b = background color, o = border-color, f = fill
1268 1268
 			 */
1269 1269
 			$selectors = array(
1270
-				'.btn-secondary' => array('b','o'),
1271
-				'.btn-secondary.disabled' => array('b','o'),
1272
-				'.btn-secondary:disabled' => array('b','o'),
1273
-				'.btn-outline-secondary' => array('c','o'),
1274
-				'.btn-outline-secondary:hover' => array('b','o'),
1270
+				'.btn-secondary' => array('b', 'o'),
1271
+				'.btn-secondary.disabled' => array('b', 'o'),
1272
+				'.btn-secondary:disabled' => array('b', 'o'),
1273
+				'.btn-outline-secondary' => array('c', 'o'),
1274
+				'.btn-outline-secondary:hover' => array('b', 'o'),
1275 1275
 				'.btn-outline-secondary.disabled' => array('c'),
1276 1276
 				'.btn-outline-secondary:disabled' => array('c'),
1277
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1278
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1279
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1277
+				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b', 'o'),
1278
+				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b', 'o'),
1279
+				'.btn-outline-secondary.dropdown-toggle' => array('b', 'o'),
1280 1280
 				'.badge-secondary' => array('b'),
1281
-				'.alert-secondary' => array('b','o'),
1281
+				'.alert-secondary' => array('b', 'o'),
1282 1282
 				'.btn-link.btn-secondary' => array('c'),
1283 1283
 			);
1284 1284
 
1285 1285
 			$important_selectors = array(
1286
-				'.bg-secondary' => array('b','f'),
1286
+				'.bg-secondary' => array('b', 'f'),
1287 1287
 				'.border-secondary' => array('o'),
1288 1288
 				'.text-secondary' => array('c'),
1289 1289
 			);
@@ -1300,77 +1300,77 @@  discard block
 block discarded – undo
1300 1300
 			$output = '';
1301 1301
 
1302 1302
 			// build rules into each type
1303
-			foreach($selectors as $selector => $types){
1304
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1305
-				$types = array_combine($types,$types);
1306
-				if(isset($types['c'])){$color[] = $selector;}
1307
-				if(isset($types['b'])){$background[] = $selector;}
1308
-				if(isset($types['o'])){$border[] = $selector;}
1309
-				if(isset($types['f'])){$fill[] = $selector;}
1303
+			foreach ($selectors as $selector => $types) {
1304
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1305
+				$types = array_combine($types, $types);
1306
+				if (isset($types['c'])) {$color[] = $selector; }
1307
+				if (isset($types['b'])) {$background[] = $selector; }
1308
+				if (isset($types['o'])) {$border[] = $selector; }
1309
+				if (isset($types['f'])) {$fill[] = $selector; }
1310 1310
 			}
1311 1311
 
1312 1312
 			// build rules into each type
1313
-			foreach($important_selectors as $selector => $types){
1314
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1315
-				$types = array_combine($types,$types);
1316
-				if(isset($types['c'])){$color_i[] = $selector;}
1317
-				if(isset($types['b'])){$background_i[] = $selector;}
1318
-				if(isset($types['o'])){$border_i[] = $selector;}
1319
-				if(isset($types['f'])){$fill_i[] = $selector;}
1313
+			foreach ($important_selectors as $selector => $types) {
1314
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1315
+				$types = array_combine($types, $types);
1316
+				if (isset($types['c'])) {$color_i[] = $selector; }
1317
+				if (isset($types['b'])) {$background_i[] = $selector; }
1318
+				if (isset($types['o'])) {$border_i[] = $selector; }
1319
+				if (isset($types['f'])) {$fill_i[] = $selector; }
1320 1320
 			}
1321 1321
 
1322 1322
 			// add any color rules
1323
-			if(!empty($color)){
1324
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1323
+			if (!empty($color)) {
1324
+				$output .= implode(",", $color) . "{color: $color_code;} ";
1325 1325
 			}
1326
-			if(!empty($color_i)){
1327
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1326
+			if (!empty($color_i)) {
1327
+				$output .= implode(",", $color_i) . "{color: $color_code !important;} ";
1328 1328
 			}
1329 1329
 
1330 1330
 			// add any background color rules
1331
-			if(!empty($background)){
1332
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1331
+			if (!empty($background)) {
1332
+				$output .= implode(",", $background) . "{background-color: $color_code;} ";
1333 1333
 			}
1334
-			if(!empty($background_i)){
1335
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1334
+			if (!empty($background_i)) {
1335
+				$output .= implode(",", $background_i) . "{background-color: $color_code !important;} ";
1336 1336
 			}
1337 1337
 
1338 1338
 			// add any border color rules
1339
-			if(!empty($border)){
1340
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1339
+			if (!empty($border)) {
1340
+				$output .= implode(",", $border) . "{border-color: $color_code;} ";
1341 1341
 			}
1342
-			if(!empty($border_i)){
1343
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1342
+			if (!empty($border_i)) {
1343
+				$output .= implode(",", $border_i) . "{border-color: $color_code !important;} ";
1344 1344
 			}
1345 1345
 
1346 1346
 			// add any fill color rules
1347
-			if(!empty($fill)){
1348
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1347
+			if (!empty($fill)) {
1348
+				$output .= implode(",", $fill) . "{fill: $color_code;} ";
1349 1349
 			}
1350
-			if(!empty($fill_i)){
1351
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1350
+			if (!empty($fill_i)) {
1351
+				$output .= implode(",", $fill_i) . "{fill: $color_code !important;} ";
1352 1352
 			}
1353 1353
 
1354 1354
 
1355 1355
 			$prefix = $compatibility ? ".bsui " : "";
1356 1356
 
1357 1357
 			// darken
1358
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1359
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1360
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1358
+			$darker_075 = self::css_hex_lighten_darken($color_code, "-0.075");
1359
+			$darker_10 = self::css_hex_lighten_darken($color_code, "-0.10");
1360
+			$darker_125 = self::css_hex_lighten_darken($color_code, "-0.125");
1361 1361
 
1362 1362
 			// lighten
1363
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1363
+			$lighten_25 = self::css_hex_lighten_darken($color_code, "0.25");
1364 1364
 
1365 1365
 			// opacity see https://css-tricks.com/8-digit-hex-codes/
1366
-			$op_25 = $color_code."40"; // 25% opacity
1366
+			$op_25 = $color_code . "40"; // 25% opacity
1367 1367
 
1368 1368
 
1369 1369
 			// button states
1370
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1371
-			$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;} ";
1372
-			$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.";} ";
1373
-			$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;} ";
1370
+			$output .= $prefix . " .btn-secondary:hover{background-color: " . $darker_075 . ";    border-color: " . $darker_10 . ";} ";
1371
+			$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;} ";
1372
+			$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 . ";} ";
1373
+			$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;} ";
1374 1374
 
1375 1375
 
1376 1376
 			return $output;
@@ -1406,8 +1406,8 @@  discard block
 block discarded – undo
1406 1406
 		/**
1407 1407
 		 * Check if we should display examples.
1408 1408
 		 */
1409
-		public function maybe_show_examples(){
1410
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1409
+		public function maybe_show_examples() {
1410
+			if (current_user_can('manage_options') && isset($_REQUEST['preview-aui'])) {
1411 1411
 				echo "<head>";
1412 1412
 				wp_head();
1413 1413
 				echo "</head>";
@@ -1423,7 +1423,7 @@  discard block
 block discarded – undo
1423 1423
 		 *
1424 1424
 		 * @return string
1425 1425
 		 */
1426
-		public function get_examples(){
1426
+		public function get_examples() {
1427 1427
 			$output = '';
1428 1428
 
1429 1429
 
Please login to merge, or discard this patch.
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -126,8 +126,12 @@  discard block
 block discarded – undo
126 126
 		public function constants(){
127 127
 			define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128 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);
129
+			if (!defined('AUI_PRIMARY_COLOR')) {
130
+			    define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
131
+			}
132
+			if (!defined('AUI_SECONDARY_COLOR')) {
133
+			    define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
134
+			}
131 135
 		}
132 136
 
133 137
 		/**
@@ -822,12 +826,12 @@  discard block
 block discarded – undo
822 826
 				is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle');
823 827
 				$script = $this->inline_script();
824 828
 				wp_add_inline_script( 'bootstrap-js-bundle', $script );
825
-			}elseif($this->settings[$js_setting]=='popper'){
829
+			} elseif($this->settings[$js_setting]=='popper'){
826 830
 				$url = $this->url.'assets/js/popper.min.js';
827 831
 				wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest );
828 832
 				wp_enqueue_script( 'bootstrap-js-popper' );
829 833
 				$load_inline = true;
830
-			}else{
834
+			} else{
831 835
 				$load_inline = true;
832 836
 			}
833 837
 
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php 2 patches
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.33";
19
-	if(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.33";
19
+    if(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
 }
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -6,39 +6,39 @@
 block discarded – undo
6 6
 /**
7 7
  * Bail if we are not in WP.
8 8
  */
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if (!defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13 13
 /**
14 14
  * Set the version only if its the current newest while loading.
15 15
  */
16
-add_action('after_setup_theme', function () {
17
-	global $ayecode_ui_version,$ayecode_ui_file_key;
16
+add_action('after_setup_theme', function() {
17
+	global $ayecode_ui_version, $ayecode_ui_file_key;
18 18
 	$this_version = "0.1.33";
19
-	if(version_compare($this_version , $ayecode_ui_version, '>')){
20
-		$ayecode_ui_version = $this_version ;
21
-		$ayecode_ui_file_key = wp_hash( __FILE__ );
19
+	if (version_compare($this_version, $ayecode_ui_version, '>')) {
20
+		$ayecode_ui_version = $this_version;
21
+		$ayecode_ui_file_key = wp_hash(__FILE__);
22 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
-add_action('after_setup_theme', function () {
28
+add_action('after_setup_theme', function() {
29 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' );
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 33
 	}
34 34
 },1);
35 35
 
36 36
 /**
37 37
  * Add the function that calls the class.
38 38
  */
39
-if(!function_exists('aui')){
40
-	function aui(){
41
-		if(!class_exists("AUI",false)){
39
+if (!function_exists('aui')) {
40
+	function aui() {
41
+		if (!class_exists("AUI", false)) {
42 42
 			return false;
43 43
 		}
44 44
 		return AUI::instance();
Please login to merge, or discard this patch.
templates/wpinv-payment-processing.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,12 +2,12 @@  discard block
 block discarded – undo
2 2
 global $wpi_invoice;
3 3
 
4 4
 // Backwards compatibility.
5
-if ( empty( $invoice ) ) {
5
+if (empty($invoice)) {
6 6
     $invoice = $wpi_invoice;
7 7
 }
8 8
 
9 9
 $success_page_uri = wpinv_get_success_page_uri();
10
-if ( ! empty( $invoice ) ) {
10
+if (!empty($invoice)) {
11 11
     $success_page_uri = $invoice->get_receipt_url();
12 12
 }
13 13
 ?>
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
         <?php 
18 18
             echo
19 19
             wp_sprintf(
20
-                __( 'Your payment is processing. This page will reload automatically in 10 seconds. If it does not, click <a href="%s">here</a>.', 'invoicing' ),
21
-                esc_url( $success_page_uri )
20
+                __('Your payment is processing. This page will reload automatically in 10 seconds. If it does not, click <a href="%s">here</a>.', 'invoicing'),
21
+                esc_url($success_page_uri)
22 22
             );
23 23
         ?>
24 24
         <i class="fa fa-spin fa-refresh"></i>
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     <script type="text/javascript">
28 28
         setTimeout(
29 29
             function(){
30
-                window.location = '<?php echo esc_url( $success_page_uri ); ?>';
30
+                window.location = '<?php echo esc_url($success_page_uri); ?>';
31 31
             },
32 32
             10000
33 33
         );
Please login to merge, or discard this patch.
templates/payment-forms-admin/previews/items.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,14 +7,14 @@
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 ?>
13 13
 
14 14
 <div v-if='!is_default'>
15
-    <div class='alert alert-info' role='alert'><?php _e( 'Item totals will appear here. Click to set items.', 'invoicing' ) ?></div>
15
+    <div class='alert alert-info' role='alert'><?php _e('Item totals will appear here. Click to set items.', 'invoicing') ?></div>
16 16
 </div>
17 17
 
18 18
 <div v-if='is_default'>
19
-    <div class='alert alert-info' role='alert'><?php _e( 'Item totals will appear here.', 'invoicing' ) ?></div>
19
+    <div class='alert alert-info' role='alert'><?php _e('Item totals will appear here.', 'invoicing') ?></div>
20 20
 </div>
Please login to merge, or discard this patch.
templates/payment-forms/cart.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,29 +7,29 @@  discard block
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 // Cart table columns.
13 13
 $columns = array(
14
-    'name'     => __( 'Item', 'invoicing' ),
15
-    'price'    => __( 'Price', 'invoicing' ),
16
-    'quantity' => __( 'Quantity', 'invoicing' ),
17
-    'subtotal' => __( 'Subtotal', 'invoicing' ),
14
+    'name'     => __('Item', 'invoicing'),
15
+    'price'    => __('Price', 'invoicing'),
16
+    'quantity' => __('Quantity', 'invoicing'),
17
+    'subtotal' => __('Subtotal', 'invoicing'),
18 18
 );
19 19
 
20
-if ( ! empty( $form->invoice ) ) {
21
-    $columns = getpaid_invoice_item_columns( $form->invoice );
20
+if (!empty($form->invoice)) {
21
+    $columns = getpaid_invoice_item_columns($form->invoice);
22 22
 }
23 23
 
24
-$columns = apply_filters( 'getpaid_payment_form_cart_table_columns', $columns, $form );
24
+$columns = apply_filters('getpaid_payment_form_cart_table_columns', $columns, $form);
25 25
 
26 26
 ?>
27 27
     <div class="getpaid-payment-form-items-cart border form-group">
28 28
         <div class="getpaid-payment-form-items-cart-header">
29 29
             <div class="form-row">
30
-            <?php foreach ( $columns as $key => $label ) : ?>
31
-                <div class="<?php echo 'name' == $key ? 'col-12 col-sm-5' : 'col-12 col-sm' ?> getpaid-form-cart-item-<?php echo esc_attr( $key ); ?>">
32
-                    <?php echo sanitize_text_field( $label ); ?>
30
+            <?php foreach ($columns as $key => $label) : ?>
31
+                <div class="<?php echo 'name' == $key ? 'col-12 col-sm-5' : 'col-12 col-sm' ?> getpaid-form-cart-item-<?php echo esc_attr($key); ?>">
32
+                    <?php echo sanitize_text_field($label); ?>
33 33
                 </div>
34 34
             <?php endforeach; ?>
35 35
             </div>
@@ -37,12 +37,12 @@  discard block
 block discarded – undo
37 37
         <?php
38 38
 
39 39
             // Display the item totals.
40
-            foreach ( $form->get_items() as $item ) {
41
-                wpinv_get_template( 'payment-forms/cart-item.php', compact( 'form', 'item', 'columns' ) );
40
+            foreach ($form->get_items() as $item) {
41
+                wpinv_get_template('payment-forms/cart-item.php', compact('form', 'item', 'columns'));
42 42
             }
43 43
 
44 44
             // Display the cart totals.
45
-            wpinv_get_template( 'payment-forms/cart-totals.php', compact( 'form' ) );
45
+            wpinv_get_template('payment-forms/cart-totals.php', compact('form'));
46 46
 
47 47
         ?>
48 48
     </div>
Please login to merge, or discard this patch.