Passed
Push — master ( d1cbc2...7c4f48 )
by Brian
11:57
created
includes/deprecated-functions.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
  * @deprecated
247 247
  */
248 248
 function wpinv_get_payment_key( $invoice = 0 ) {
249
-	$invoice = new WPInv_Invoice( $invoice );
249
+    $invoice = new WPInv_Invoice( $invoice );
250 250
     return $invoice->get_key();
251 251
 }
252 252
 
@@ -424,7 +424,7 @@  discard block
 block discarded – undo
424 424
  * @deprecated
425 425
  */
426 426
 function wpinv_get_checkout_session() {
427
-	return false;
427
+    return false;
428 428
 }
429 429
 
430 430
 /**
@@ -1273,5 +1273,5 @@  discard block
 block discarded – undo
1273 1273
  * @deprecated
1274 1274
  */
1275 1275
 function wpinv_get_subscription( $invoice ) {
1276
-	return wpinv_get_invoice_subscription( $invoice );
1276
+    return wpinv_get_invoice_subscription( $invoice );
1277 1277
 }
Please login to merge, or discard this patch.
Spacing   +93 added lines, -93 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @package Invoicing
7 7
  */
8 8
 
9
-defined( 'ABSPATH' ) || exit;
9
+defined('ABSPATH') || exit;
10 10
 
11 11
 /**
12 12
  * @deprecated
@@ -19,48 +19,48 @@  discard block
 block discarded – undo
19 19
  * @deprecated
20 20
  */
21 21
 function wpinv_get_invoice_cart() {
22
-    return wpinv_get_invoice( getpaid_get_current_invoice_id() );
22
+    return wpinv_get_invoice(getpaid_get_current_invoice_id());
23 23
 }
24 24
 
25 25
 /**
26 26
  * @deprecated
27 27
  */
28
-function wpinv_get_invoice_description( $invoice ) {
29
-    $invoice = new WPInv_Invoice( $invoice );
28
+function wpinv_get_invoice_description($invoice) {
29
+    $invoice = new WPInv_Invoice($invoice);
30 30
     return $invoice->get_description();
31 31
 }
32 32
 
33 33
 /**
34 34
  * @deprecated
35 35
  */
36
-function wpinv_get_invoice_currency_code( $invoice ) {
37
-    $invoice = new WPInv_Invoice( $invoice );
36
+function wpinv_get_invoice_currency_code($invoice) {
37
+    $invoice = new WPInv_Invoice($invoice);
38 38
     return $invoice->get_currency();
39 39
 }
40 40
 
41 41
 /**
42 42
  * @deprecated
43 43
  */
44
-function wpinv_get_payment_user_email( $invoice ) {
45
-    $invoice = new WPInv_Invoice( $invoice );
44
+function wpinv_get_payment_user_email($invoice) {
45
+    $invoice = new WPInv_Invoice($invoice);
46 46
     return $invoice->get_email();
47 47
 }
48 48
 
49 49
 /**
50 50
  * @deprecated
51 51
  */
52
-function wpinv_get_user_id( $invoice ) {
53
-    $invoice = new WPInv_Invoice( $invoice );
52
+function wpinv_get_user_id($invoice) {
53
+    $invoice = new WPInv_Invoice($invoice);
54 54
     return $invoice->get_user_id();
55 55
 }
56 56
 
57 57
 /**
58 58
  * @deprecated
59 59
  */
60
-function wpinv_get_invoice_status( $invoice, $return_label = false ) {
61
-    $invoice = new WPInv_Invoice( $invoice );
60
+function wpinv_get_invoice_status($invoice, $return_label = false) {
61
+    $invoice = new WPInv_Invoice($invoice);
62 62
     
63
-    if ( $return_label ) {
63
+    if ($return_label) {
64 64
         return $invoice->get_status_nicename();
65 65
     }
66 66
 
@@ -70,10 +70,10 @@  discard block
 block discarded – undo
70 70
 /**
71 71
  * @deprecated
72 72
  */
73
-function wpinv_get_payment_gateway( $invoice, $return_label = false ) {
74
-    $invoice = new WPInv_Invoice( $invoice );
73
+function wpinv_get_payment_gateway($invoice, $return_label = false) {
74
+    $invoice = new WPInv_Invoice($invoice);
75 75
 
76
-    if ( $return_label ) {
76
+    if ($return_label) {
77 77
         return $invoice->get_gateway_title();
78 78
     }
79 79
 
@@ -83,75 +83,75 @@  discard block
 block discarded – undo
83 83
 /**
84 84
  * @deprecated
85 85
  */
86
-function wpinv_get_payment_gateway_name( $invoice ) {
87
-    return wpinv_get_payment_gateway( $invoice, true );
86
+function wpinv_get_payment_gateway_name($invoice) {
87
+    return wpinv_get_payment_gateway($invoice, true);
88 88
 }
89 89
 
90 90
 /**
91 91
  * @deprecated
92 92
  */
93
-function wpinv_get_payment_transaction_id( $invoice ) {
94
-    $invoice = new WPInv_Invoice( $invoice );
93
+function wpinv_get_payment_transaction_id($invoice) {
94
+    $invoice = new WPInv_Invoice($invoice);
95 95
     return $invoice->get_transaction_id();
96 96
 }
97 97
 
98 98
 /**
99 99
  * @deprecated
100 100
  */
101
-function wpinv_get_invoice_meta( $invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true ) {
102
-    $invoice = new WPInv_Invoice( $invoice_id );
103
-    return $invoice->get_meta( $meta_key, $single );
101
+function wpinv_get_invoice_meta($invoice_id = 0, $meta_key = '_wpinv_payment_meta', $single = true) {
102
+    $invoice = new WPInv_Invoice($invoice_id);
103
+    return $invoice->get_meta($meta_key, $single);
104 104
 }
105 105
 
106 106
 /**
107 107
  * @deprecated
108 108
  */
109
-function wpinv_update_invoice_meta( $invoice_id = 0, $meta_key = '', $meta_value = '' ) {
110
-    $invoice = new WPInv_Invoice( $invoice_id );
111
-    return $invoice->update_meta_data( $meta_key, $meta_value );
109
+function wpinv_update_invoice_meta($invoice_id = 0, $meta_key = '', $meta_value = '') {
110
+    $invoice = new WPInv_Invoice($invoice_id);
111
+    return $invoice->update_meta_data($meta_key, $meta_value);
112 112
 }
113 113
 
114 114
 /**
115 115
  * @deprecated
116 116
  */
117
-function wpinv_get_items( $invoice = 0 ) {
118
-    $invoice = new WPInv_Invoice( $invoice );
117
+function wpinv_get_items($invoice = 0) {
118
+    $invoice = new WPInv_Invoice($invoice);
119 119
     return $invoice->get_items();
120 120
 }
121 121
 
122 122
 /**
123 123
  * @deprecated
124 124
  */
125
-function wpinv_get_fees( $invoice = 0 ) {
126
-    $invoice = new WPInv_Invoice( $invoice );
125
+function wpinv_get_fees($invoice = 0) {
126
+    $invoice = new WPInv_Invoice($invoice);
127 127
     return $invoice->get_fees();
128 128
 }
129 129
 
130 130
 /**
131 131
  * @deprecated
132 132
  */
133
-function wpinv_get_invoice_ip( $invoice ) {
134
-    $invoice = new WPInv_Invoice( $invoice );
133
+function wpinv_get_invoice_ip($invoice) {
134
+    $invoice = new WPInv_Invoice($invoice);
135 135
     return $invoice->get_ip();
136 136
 }
137 137
 
138 138
 /**
139 139
  * @deprecated
140 140
  */
141
-function wpinv_get_invoice_user_info( $invoice ) {
142
-    $invoice = new WPInv_Invoice( $invoice );
141
+function wpinv_get_invoice_user_info($invoice) {
142
+    $invoice = new WPInv_Invoice($invoice);
143 143
     return $invoice->get_user_info();
144 144
 }
145 145
 
146 146
 /**
147 147
  * @deprecated
148 148
  */
149
-function wpinv_subtotal( $invoice = 0, $currency = false ) {
150
-    $invoice  = new WPInv_Invoice( $invoice );
149
+function wpinv_subtotal($invoice = 0, $currency = false) {
150
+    $invoice  = new WPInv_Invoice($invoice);
151 151
     $subtotal = $invoice->get_subtotal();
152 152
 
153
-    if ( $currency ) {
154
-        return wpinv_price( $subtotal, $invoice->get_currency() );
153
+    if ($currency) {
154
+        return wpinv_price($subtotal, $invoice->get_currency());
155 155
     }
156 156
 
157 157
     return $subtotal;
@@ -160,12 +160,12 @@  discard block
 block discarded – undo
160 160
 /**
161 161
  * @deprecated
162 162
  */
163
-function wpinv_tax( $invoice = 0, $currency = false ) {
164
-    $invoice  = new WPInv_Invoice( $invoice );
163
+function wpinv_tax($invoice = 0, $currency = false) {
164
+    $invoice  = new WPInv_Invoice($invoice);
165 165
     $tax      = $invoice->get_total_tax();
166 166
 
167
-    if ( $currency ) {
168
-        return wpinv_price( $tax, $invoice->get_currency() );
167
+    if ($currency) {
168
+        return wpinv_price($tax, $invoice->get_currency());
169 169
     }
170 170
 
171 171
     return $tax;
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
 /**
175 175
  * @deprecated
176 176
  */
177
-function wpinv_discount( $invoice = 0, $currency = false ) {
178
-    $invoice  = new WPInv_Invoice( $invoice );
177
+function wpinv_discount($invoice = 0, $currency = false) {
178
+    $invoice  = new WPInv_Invoice($invoice);
179 179
     $discount = $invoice->get_total_discount();
180 180
 
181
-    if ( $currency ) {
182
-        return wpinv_price( $discount, $invoice->get_currency() );
181
+    if ($currency) {
182
+        return wpinv_price($discount, $invoice->get_currency());
183 183
     }
184 184
 
185 185
     return $discount;
@@ -188,20 +188,20 @@  discard block
 block discarded – undo
188 188
 /**
189 189
  * @deprecated
190 190
  */
191
-function wpinv_discount_code( $invoice = 0 ) {
192
-    $invoice = new WPInv_Invoice( $invoice );
191
+function wpinv_discount_code($invoice = 0) {
192
+    $invoice = new WPInv_Invoice($invoice);
193 193
     return $invoice->get_discount_code();
194 194
 }
195 195
 
196 196
 /**
197 197
  * @deprecated
198 198
  */
199
-function wpinv_payment_total( $invoice = 0, $currency = false ) {
200
-    $invoice  = new WPInv_Invoice( $invoice );
199
+function wpinv_payment_total($invoice = 0, $currency = false) {
200
+    $invoice = new WPInv_Invoice($invoice);
201 201
     $total = $invoice->get_total();
202 202
 
203
-    if ( $currency ) {
204
-        return wpinv_price( $total, $invoice->get_currency() );
203
+    if ($currency) {
204
+        return wpinv_price($total, $invoice->get_currency());
205 205
     }
206 206
 
207 207
     return $total;
@@ -210,51 +210,51 @@  discard block
 block discarded – undo
210 210
 /**
211 211
  * @deprecated
212 212
  */
213
-function wpinv_get_date_created( $invoice = 0, $format = '' ) {
214
-    $invoice = new WPInv_Invoice( $invoice );
213
+function wpinv_get_date_created($invoice = 0, $format = '') {
214
+    $invoice = new WPInv_Invoice($invoice);
215 215
 
216
-    $format         = ! empty( $format ) ? $format : get_option( 'date_format' );
216
+    $format         = !empty($format) ? $format : get_option('date_format');
217 217
     $date_created   = $invoice->get_created_date();
218 218
 
219
-    return empty( $date_created ) ? date_i18n( $format, strtotime( $date_created ) ) : '';
219
+    return empty($date_created) ? date_i18n($format, strtotime($date_created)) : '';
220 220
 }
221 221
 
222 222
 /**
223 223
  * @deprecated
224 224
  */
225
-function wpinv_get_invoice_date( $invoice = 0, $format = '' ) {
226
-    wpinv_get_date_created( $invoice, $format );
225
+function wpinv_get_invoice_date($invoice = 0, $format = '') {
226
+    wpinv_get_date_created($invoice, $format);
227 227
 }
228 228
 
229 229
 /**
230 230
  * @deprecated
231 231
  */
232
-function wpinv_get_invoice_vat_number( $invoice = 0 ) {
233
-    $invoice = new WPInv_Invoice( $invoice );
232
+function wpinv_get_invoice_vat_number($invoice = 0) {
233
+    $invoice = new WPInv_Invoice($invoice);
234 234
     return $invoice->get_vat_number();
235 235
 }
236 236
 
237 237
 /**
238 238
  * @deprecated
239 239
  */
240
-function wpinv_insert_payment_note( $invoice = 0, $note = '', $user_type = false, $added_by_user = false, $system = false ) {
241
-    $invoice = new WPInv_Invoice( $invoice );
242
-    return $invoice->add_note( $note, $user_type, $added_by_user, $system );
240
+function wpinv_insert_payment_note($invoice = 0, $note = '', $user_type = false, $added_by_user = false, $system = false) {
241
+    $invoice = new WPInv_Invoice($invoice);
242
+    return $invoice->add_note($note, $user_type, $added_by_user, $system);
243 243
 }
244 244
 
245 245
 /**
246 246
  * @deprecated
247 247
  */
248
-function wpinv_get_payment_key( $invoice = 0 ) {
249
-	$invoice = new WPInv_Invoice( $invoice );
248
+function wpinv_get_payment_key($invoice = 0) {
249
+	$invoice = new WPInv_Invoice($invoice);
250 250
     return $invoice->get_key();
251 251
 }
252 252
 
253 253
 /**
254 254
  * @deprecated
255 255
  */
256
-function wpinv_get_invoice_number( $invoice = 0 ) {
257
-    $invoice = new WPInv_Invoice( $invoice );
256
+function wpinv_get_invoice_number($invoice = 0) {
257
+    $invoice = new WPInv_Invoice($invoice);
258 258
     return $invoice->get_number();
259 259
 }
260 260
 
@@ -401,9 +401,9 @@  discard block
 block discarded – undo
401 401
 /**
402 402
  * @deprecated
403 403
  */
404
-function wpinv_update_payment_status( $invoice, $new_status = 'publish' ) {    
405
-    $invoice = new WPInv_Invoice( $invoice );
406
-    return $invoice->update_status( $new_status );
404
+function wpinv_update_payment_status($invoice, $new_status = 'publish') {    
405
+    $invoice = new WPInv_Invoice($invoice);
406
+    return $invoice->update_status($new_status);
407 407
 }
408 408
 
409 409
 /**
@@ -456,22 +456,22 @@  discard block
 block discarded – undo
456 456
 /**
457 457
  * @deprecated
458 458
  */
459
-function wpinv_set_payment_transaction_id( $invoice_id = 0, $transaction_id = '' ) {
459
+function wpinv_set_payment_transaction_id($invoice_id = 0, $transaction_id = '') {
460 460
 
461 461
     // Fetch the invoice.
462
-    $invoice = new WPInv_Invoice( $invoice_id );
462
+    $invoice = new WPInv_Invoice($invoice_id);
463 463
 
464
-    if ( 0 ==  $invoice->get_id() ) {
464
+    if (0 == $invoice->get_id()) {
465 465
         return false;
466 466
     }
467 467
 
468 468
     // Prepare the transaction id.
469
-    if ( empty( $transaction_id ) ) {
469
+    if (empty($transaction_id)) {
470 470
         $transaction_id = $invoice_id;
471 471
     }
472 472
 
473 473
     // Set the transaction id;
474
-    $invoice->set_transaction_id( apply_filters( 'wpinv_set_payment_transaction_id', $transaction_id, $invoice ) );
474
+    $invoice->set_transaction_id(apply_filters('wpinv_set_payment_transaction_id', $transaction_id, $invoice));
475 475
 
476 476
     // Save the invoice.
477 477
     return $invoice->save();
@@ -484,12 +484,12 @@  discard block
 block discarded – undo
484 484
  * @param WPInv_Invoice $invoice
485 485
  * @param string $gateway
486 486
  */
487
-function wpinv_send_to_gateway( $gateway, $invoice ) {
487
+function wpinv_send_to_gateway($gateway, $invoice) {
488 488
 
489 489
     $payment_data = array(
490 490
         'invoice_id'        => $invoice->get_id(),
491 491
         'items'             => $invoice->get_cart_details(),
492
-        'cart_discounts'    => array( $invoice->get_discount_code() ),
492
+        'cart_discounts'    => array($invoice->get_discount_code()),
493 493
         'fees'              => $invoice->get_total_fees(),
494 494
         'subtotal'          => $invoice->get_subtotal(),
495 495
         'discount'          => $invoice->get_total_discount(),
@@ -497,16 +497,16 @@  discard block
 block discarded – undo
497 497
         'price'             => $invoice->get_total(),
498 498
         'invoice_key'       => $invoice->get_key(),
499 499
         'user_email'        => $invoice->get_email(),
500
-        'date'              => date( 'Y-m-d H:i:s', current_time( 'timestamp' ) ),
500
+        'date'              => date('Y-m-d H:i:s', current_time('timestamp')),
501 501
         'user_info'         => $invoice->get_user_info(),
502
-        'post_data'         => stripslashes_deep( $_POST ),
502
+        'post_data'         => stripslashes_deep($_POST),
503 503
         'cart_details'      => $invoice->get_cart_details(),
504 504
         'gateway'           => $gateway,
505 505
         'card_info'         => array(),
506 506
         'gateway_nonce'     => wp_create_nonce('wpi-gateway'),
507 507
     );
508 508
 
509
-    do_action( 'wpinv_gateway_' . $gateway, $payment_data );
509
+    do_action('wpinv_gateway_' . $gateway, $payment_data);
510 510
 }
511 511
 
512 512
 /**
@@ -519,10 +519,10 @@  discard block
 block discarded – undo
519 519
 /**
520 520
  * @deprecated
521 521
  */
522
-function wpinv_die( $message = '', $title = '', $status = 400 ) {
523
-    add_filter( 'wp_die_ajax_handler', 'wpinv_die_handler', 10, 3 );
524
-    add_filter( 'wp_die_handler', 'wpinv_die_handler', 10, 3 );
525
-    wp_die( $message, $title, array( 'response' => $status ));
522
+function wpinv_die($message = '', $title = '', $status = 400) {
523
+    add_filter('wp_die_ajax_handler', 'wpinv_die_handler', 10, 3);
524
+    add_filter('wp_die_handler', 'wpinv_die_handler', 10, 3);
525
+    wp_die($message, $title, array('response' => $status));
526 526
 }
527 527
 
528 528
 /**
@@ -640,14 +640,14 @@  discard block
 block discarded – undo
640 640
 /**
641 641
  * @deprecated
642 642
  */
643
-function wpinv_invoice_status_label( $status, $status_display = '' ) {
644
-    return empty( $status_display ) ? sanitize_text_field( $status ) : sanitize_text_field( $status_display );
643
+function wpinv_invoice_status_label($status, $status_display = '') {
644
+    return empty($status_display) ? sanitize_text_field($status) : sanitize_text_field($status_display);
645 645
 }
646 646
 
647 647
 /**
648 648
  * @deprecated
649 649
  */
650
-function wpinv_clean_invoice_number( $number ) {
650
+function wpinv_clean_invoice_number($number) {
651 651
     return $number;
652 652
 }
653 653
 
@@ -852,12 +852,12 @@  discard block
 block discarded – undo
852 852
 /**
853 853
  * @deprecated
854 854
  */
855
-function wpinv_item_show_price( $item_id = 0, $echo = true ) {
855
+function wpinv_item_show_price($item_id = 0, $echo = true) {
856 856
 
857
-    if ( $echo ) {
858
-        echo wpinv_item_price( $item_id );
857
+    if ($echo) {
858
+        echo wpinv_item_price($item_id);
859 859
     } else {
860
-        return wpinv_item_price( $item_id );
860
+        return wpinv_item_price($item_id);
861 861
     }
862 862
 
863 863
 }
@@ -1272,6 +1272,6 @@  discard block
 block discarded – undo
1272 1272
  * @return WPInv_Subscription|bool
1273 1273
  * @deprecated
1274 1274
  */
1275
-function wpinv_get_subscription( $invoice ) {
1276
-	return wpinv_get_invoice_subscription( $invoice );
1275
+function wpinv_get_subscription($invoice) {
1276
+	return wpinv_get_invoice_subscription($invoice);
1277 1277
 }
Please login to merge, or discard this patch.
includes/data-stores/class-getpaid-subscription-data-store.php 2 patches
Indentation   +182 added lines, -182 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  *
6 6
  */
7 7
 if ( ! defined( 'ABSPATH' ) ) {
8
-	exit;
8
+    exit;
9 9
 }
10 10
 
11 11
 /**
@@ -15,198 +15,198 @@  discard block
 block discarded – undo
15 15
  */
16 16
 class GetPaid_Subscription_Data_Store {
17 17
 
18
-	/**
19
-	 * A map of database fields to data types.
20
-	 *
21
-	 * @since 1.0.19
22
-	 * @var array
23
-	 */
24
-	protected $database_fields_to_data_type = array(
25
-		'id'                => '%d',
26
-		'customer_id'       => '%d',
27
-		'frequency'         => '%d',
28
-		'period'            => '%s',
29
-		'initial_amount'    => '%s',
30
-		'recurring_amount'  => '%s',
31
-		'bill_times'        => '%d',
32
-		'transaction_id'    => '%s',
33
-		'parent_payment_id' => '%d',
34
-		'product_id'        => '%d',
35
-		'created'           => '%s',
36
-		'expiration'        => '%s',
37
-		'trial_period'      => '%s',
38
-		'status'            => '%s',
39
-		'profile_id'        => '%s',
40
-	);
41
-
42
-	/*
18
+    /**
19
+     * A map of database fields to data types.
20
+     *
21
+     * @since 1.0.19
22
+     * @var array
23
+     */
24
+    protected $database_fields_to_data_type = array(
25
+        'id'                => '%d',
26
+        'customer_id'       => '%d',
27
+        'frequency'         => '%d',
28
+        'period'            => '%s',
29
+        'initial_amount'    => '%s',
30
+        'recurring_amount'  => '%s',
31
+        'bill_times'        => '%d',
32
+        'transaction_id'    => '%s',
33
+        'parent_payment_id' => '%d',
34
+        'product_id'        => '%d',
35
+        'created'           => '%s',
36
+        'expiration'        => '%s',
37
+        'trial_period'      => '%s',
38
+        'status'            => '%s',
39
+        'profile_id'        => '%s',
40
+    );
41
+
42
+    /*
43 43
 	|--------------------------------------------------------------------------
44 44
 	| CRUD Methods
45 45
 	|--------------------------------------------------------------------------
46 46
 	*/
47 47
 
48
-	/**
49
-	 * Method to create a new subscription in the database.
50
-	 *
51
-	 * @param WPInv_Subscription $subscription Subscription object.
52
-	 */
53
-	public function create( &$subscription ) {
54
-		global $wpdb;
55
-
56
-		$values  = array();
57
-		$formats = array();
58
-
59
-		$fields = $this->database_fields_to_data_type;
60
-		unset( $fields['id'] );
61
-
62
-		foreach ( $fields as $key => $format ) {
63
-			$method       = "get_$key";
64
-			$values[$key] = $subscription->$method( 'edit' );
65
-			$formats[]    = $format;
66
-		}
67
-
68
-		$result = $wpdb->insert( $wpdb->prefix . 'wpinv_subscriptions', $values, $formats );
69
-
70
-		if ( $result ) {
71
-			$subscription->set_id( $wpdb->insert_id );
72
-			$subscription->apply_changes();
73
-			$subscription->clear_cache();
74
-			update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
75
-			do_action( 'getpaid_new_subscription', $subscription );
76
-			return true;
77
-		}
78
-
79
-		return false;
80
-	}
81
-
82
-	/**
83
-	 * Method to read a subscription from the database.
84
-	 *
85
-	 * @param WPInv_Subscription $subscription Subscription object.
86
-	 *
87
-	 */
88
-	public function read( &$subscription ) {
89
-		global $wpdb;
90
-
91
-		$subscription->set_defaults();
92
-
93
-		if ( ! $subscription->get_id() ) {
94
-			$subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
95
-			$subscription->set_id( 0 );
96
-			return false;
97
-		}
98
-
99
-		// Maybe retrieve from the cache.
100
-		$raw_subscription = wp_cache_get( $subscription->get_id(), 'getpaid_subscriptions' );
101
-
102
-		// If not found, retrieve from the db.
103
-		if ( false === $raw_subscription ) {
104
-
105
-			$raw_subscription = $wpdb->get_row(
106
-				$wpdb->prepare(
107
-					"SELECT * FROM {$wpdb->prefix}wpinv_subscriptions WHERE id = %d",
108
-					$subscription->get_id()
109
-				)
110
-			);
111
-
112
-			// Update the cache with our data
113
-			wp_cache_set( $subscription->get_id(), $raw_subscription, 'getpaid_subscriptions' );
114
-
115
-		}
116
-
117
-		if ( ! $raw_subscription ) {
118
-			$subscription->set_id( 0 );
119
-			$subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
120
-			return false;
121
-		}
122
-
123
-		foreach ( array_keys( $this->database_fields_to_data_type ) as $key ) {
124
-			$method     = "set_$key";
125
-			$subscription->$method( $raw_subscription->$key );
126
-		}
127
-
128
-		$subscription->set_object_read( true );
129
-		do_action( 'getpaid_read_subscription', $subscription );
130
-
131
-	}
132
-
133
-	/**
134
-	 * Method to update a subscription in the database.
135
-	 *
136
-	 * @param WPInv_Subscription $subscription Subscription object.
137
-	 */
138
-	public function update( &$subscription ) {
139
-		global $wpdb;
140
-
141
-		$changes = $subscription->get_changes();
142
-		$values  = array();
143
-		$formats = array();
144
-
145
-		foreach ( $this->database_fields_to_data_type as $key => $format ) {
146
-			if ( array_key_exists( $key, $changes ) ) {
147
-				$method       = "get_$key";
148
-				$values[$key] = $subscription->$method( 'edit' );
149
-				$formats[]    = $format;
150
-			}
151
-		}
152
-
153
-		if ( empty( $values ) ) {
154
-			return;
155
-		}
156
-
157
-		$wpdb->update(
158
-			$wpdb->prefix . 'wpinv_subscriptions',
159
-			$values,
160
-			array(
161
-				'id' => $subscription->get_id(),
162
-			),
163
-			$formats,
164
-			'%d'
165
-		);
166
-
167
-		// Apply the changes.
168
-		$subscription->apply_changes();
169
-
170
-		// Delete cache.
171
-		$subscription->clear_cache();
172
-
173
-		update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id() );
174
-		update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
175
-
176
-		// Fire a hook.
177
-		do_action( 'getpaid_update_subscription', $subscription );
178
-
179
-	}
180
-
181
-	/**
182
-	 * Method to delete a subscription from the database.
183
-	 *
184
-	 * @param WPInv_Subscription $subscription
185
-	 */
186
-	public function delete( &$subscription ) {
187
-		global $wpdb;
188
-
189
-		$wpdb->query(
190
-			$wpdb->prepare(
191
-				"DELETE FROM {$wpdb->prefix}wpinv_subscriptions
48
+    /**
49
+     * Method to create a new subscription in the database.
50
+     *
51
+     * @param WPInv_Subscription $subscription Subscription object.
52
+     */
53
+    public function create( &$subscription ) {
54
+        global $wpdb;
55
+
56
+        $values  = array();
57
+        $formats = array();
58
+
59
+        $fields = $this->database_fields_to_data_type;
60
+        unset( $fields['id'] );
61
+
62
+        foreach ( $fields as $key => $format ) {
63
+            $method       = "get_$key";
64
+            $values[$key] = $subscription->$method( 'edit' );
65
+            $formats[]    = $format;
66
+        }
67
+
68
+        $result = $wpdb->insert( $wpdb->prefix . 'wpinv_subscriptions', $values, $formats );
69
+
70
+        if ( $result ) {
71
+            $subscription->set_id( $wpdb->insert_id );
72
+            $subscription->apply_changes();
73
+            $subscription->clear_cache();
74
+            update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
75
+            do_action( 'getpaid_new_subscription', $subscription );
76
+            return true;
77
+        }
78
+
79
+        return false;
80
+    }
81
+
82
+    /**
83
+     * Method to read a subscription from the database.
84
+     *
85
+     * @param WPInv_Subscription $subscription Subscription object.
86
+     *
87
+     */
88
+    public function read( &$subscription ) {
89
+        global $wpdb;
90
+
91
+        $subscription->set_defaults();
92
+
93
+        if ( ! $subscription->get_id() ) {
94
+            $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
95
+            $subscription->set_id( 0 );
96
+            return false;
97
+        }
98
+
99
+        // Maybe retrieve from the cache.
100
+        $raw_subscription = wp_cache_get( $subscription->get_id(), 'getpaid_subscriptions' );
101
+
102
+        // If not found, retrieve from the db.
103
+        if ( false === $raw_subscription ) {
104
+
105
+            $raw_subscription = $wpdb->get_row(
106
+                $wpdb->prepare(
107
+                    "SELECT * FROM {$wpdb->prefix}wpinv_subscriptions WHERE id = %d",
108
+                    $subscription->get_id()
109
+                )
110
+            );
111
+
112
+            // Update the cache with our data
113
+            wp_cache_set( $subscription->get_id(), $raw_subscription, 'getpaid_subscriptions' );
114
+
115
+        }
116
+
117
+        if ( ! $raw_subscription ) {
118
+            $subscription->set_id( 0 );
119
+            $subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
120
+            return false;
121
+        }
122
+
123
+        foreach ( array_keys( $this->database_fields_to_data_type ) as $key ) {
124
+            $method     = "set_$key";
125
+            $subscription->$method( $raw_subscription->$key );
126
+        }
127
+
128
+        $subscription->set_object_read( true );
129
+        do_action( 'getpaid_read_subscription', $subscription );
130
+
131
+    }
132
+
133
+    /**
134
+     * Method to update a subscription in the database.
135
+     *
136
+     * @param WPInv_Subscription $subscription Subscription object.
137
+     */
138
+    public function update( &$subscription ) {
139
+        global $wpdb;
140
+
141
+        $changes = $subscription->get_changes();
142
+        $values  = array();
143
+        $formats = array();
144
+
145
+        foreach ( $this->database_fields_to_data_type as $key => $format ) {
146
+            if ( array_key_exists( $key, $changes ) ) {
147
+                $method       = "get_$key";
148
+                $values[$key] = $subscription->$method( 'edit' );
149
+                $formats[]    = $format;
150
+            }
151
+        }
152
+
153
+        if ( empty( $values ) ) {
154
+            return;
155
+        }
156
+
157
+        $wpdb->update(
158
+            $wpdb->prefix . 'wpinv_subscriptions',
159
+            $values,
160
+            array(
161
+                'id' => $subscription->get_id(),
162
+            ),
163
+            $formats,
164
+            '%d'
165
+        );
166
+
167
+        // Apply the changes.
168
+        $subscription->apply_changes();
169
+
170
+        // Delete cache.
171
+        $subscription->clear_cache();
172
+
173
+        update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id() );
174
+        update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
175
+
176
+        // Fire a hook.
177
+        do_action( 'getpaid_update_subscription', $subscription );
178
+
179
+    }
180
+
181
+    /**
182
+     * Method to delete a subscription from the database.
183
+     *
184
+     * @param WPInv_Subscription $subscription
185
+     */
186
+    public function delete( &$subscription ) {
187
+        global $wpdb;
188
+
189
+        $wpdb->query(
190
+            $wpdb->prepare(
191
+                "DELETE FROM {$wpdb->prefix}wpinv_subscriptions
192 192
 				WHERE id = %d",
193
-				$subscription->get_id()
194
-			)
195
-		);
193
+                $subscription->get_id()
194
+            )
195
+        );
196 196
 
197
-		delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id' );
198
-		delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id' );
197
+        delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id' );
198
+        delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id' );
199 199
 
200
-		// Delete cache.
201
-		$subscription->clear_cache();
200
+        // Delete cache.
201
+        $subscription->clear_cache();
202 202
 
203
-		// Fire a hook.
204
-		do_action( 'getpaid_delete_subscription', $subscription );
203
+        // Fire a hook.
204
+        do_action( 'getpaid_delete_subscription', $subscription );
205 205
 
206
-		$subscription->set_id( 0 );
207
-	}
206
+        $subscription->set_id( 0 );
207
+    }
208 208
 
209
-	/*
209
+    /*
210 210
 	|--------------------------------------------------------------------------
211 211
 	| Additional Methods
212 212
 	|--------------------------------------------------------------------------
Please login to merge, or discard this patch.
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  * GetPaid_Subscription_Data_Store class file.
5 5
  *
6 6
  */
7
-if ( ! defined( 'ABSPATH' ) ) {
7
+if (!defined('ABSPATH')) {
8 8
 	exit;
9 9
 }
10 10
 
@@ -50,29 +50,29 @@  discard block
 block discarded – undo
50 50
 	 *
51 51
 	 * @param WPInv_Subscription $subscription Subscription object.
52 52
 	 */
53
-	public function create( &$subscription ) {
53
+	public function create(&$subscription) {
54 54
 		global $wpdb;
55 55
 
56 56
 		$values  = array();
57 57
 		$formats = array();
58 58
 
59 59
 		$fields = $this->database_fields_to_data_type;
60
-		unset( $fields['id'] );
60
+		unset($fields['id']);
61 61
 
62
-		foreach ( $fields as $key => $format ) {
62
+		foreach ($fields as $key => $format) {
63 63
 			$method       = "get_$key";
64
-			$values[$key] = $subscription->$method( 'edit' );
64
+			$values[$key] = $subscription->$method('edit');
65 65
 			$formats[]    = $format;
66 66
 		}
67 67
 
68
-		$result = $wpdb->insert( $wpdb->prefix . 'wpinv_subscriptions', $values, $formats );
68
+		$result = $wpdb->insert($wpdb->prefix . 'wpinv_subscriptions', $values, $formats);
69 69
 
70
-		if ( $result ) {
71
-			$subscription->set_id( $wpdb->insert_id );
70
+		if ($result) {
71
+			$subscription->set_id($wpdb->insert_id);
72 72
 			$subscription->apply_changes();
73 73
 			$subscription->clear_cache();
74
-			update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
75
-			do_action( 'getpaid_new_subscription', $subscription );
74
+			update_post_meta($subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id());
75
+			do_action('getpaid_new_subscription', $subscription);
76 76
 			return true;
77 77
 		}
78 78
 
@@ -85,22 +85,22 @@  discard block
 block discarded – undo
85 85
 	 * @param WPInv_Subscription $subscription Subscription object.
86 86
 	 *
87 87
 	 */
88
-	public function read( &$subscription ) {
88
+	public function read(&$subscription) {
89 89
 		global $wpdb;
90 90
 
91 91
 		$subscription->set_defaults();
92 92
 
93
-		if ( ! $subscription->get_id() ) {
94
-			$subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
95
-			$subscription->set_id( 0 );
93
+		if (!$subscription->get_id()) {
94
+			$subscription->last_error = __('Invalid subscription ID.', 'invoicing');
95
+			$subscription->set_id(0);
96 96
 			return false;
97 97
 		}
98 98
 
99 99
 		// Maybe retrieve from the cache.
100
-		$raw_subscription = wp_cache_get( $subscription->get_id(), 'getpaid_subscriptions' );
100
+		$raw_subscription = wp_cache_get($subscription->get_id(), 'getpaid_subscriptions');
101 101
 
102 102
 		// If not found, retrieve from the db.
103
-		if ( false === $raw_subscription ) {
103
+		if (false === $raw_subscription) {
104 104
 
105 105
 			$raw_subscription = $wpdb->get_row(
106 106
 				$wpdb->prepare(
@@ -110,23 +110,23 @@  discard block
 block discarded – undo
110 110
 			);
111 111
 
112 112
 			// Update the cache with our data
113
-			wp_cache_set( $subscription->get_id(), $raw_subscription, 'getpaid_subscriptions' );
113
+			wp_cache_set($subscription->get_id(), $raw_subscription, 'getpaid_subscriptions');
114 114
 
115 115
 		}
116 116
 
117
-		if ( ! $raw_subscription ) {
118
-			$subscription->set_id( 0 );
119
-			$subscription->last_error = __( 'Invalid subscription ID.', 'invoicing' );
117
+		if (!$raw_subscription) {
118
+			$subscription->set_id(0);
119
+			$subscription->last_error = __('Invalid subscription ID.', 'invoicing');
120 120
 			return false;
121 121
 		}
122 122
 
123
-		foreach ( array_keys( $this->database_fields_to_data_type ) as $key ) {
124
-			$method     = "set_$key";
125
-			$subscription->$method( $raw_subscription->$key );
123
+		foreach (array_keys($this->database_fields_to_data_type) as $key) {
124
+			$method = "set_$key";
125
+			$subscription->$method($raw_subscription->$key);
126 126
 		}
127 127
 
128
-		$subscription->set_object_read( true );
129
-		do_action( 'getpaid_read_subscription', $subscription );
128
+		$subscription->set_object_read(true);
129
+		do_action('getpaid_read_subscription', $subscription);
130 130
 
131 131
 	}
132 132
 
@@ -135,22 +135,22 @@  discard block
 block discarded – undo
135 135
 	 *
136 136
 	 * @param WPInv_Subscription $subscription Subscription object.
137 137
 	 */
138
-	public function update( &$subscription ) {
138
+	public function update(&$subscription) {
139 139
 		global $wpdb;
140 140
 
141 141
 		$changes = $subscription->get_changes();
142 142
 		$values  = array();
143 143
 		$formats = array();
144 144
 
145
-		foreach ( $this->database_fields_to_data_type as $key => $format ) {
146
-			if ( array_key_exists( $key, $changes ) ) {
145
+		foreach ($this->database_fields_to_data_type as $key => $format) {
146
+			if (array_key_exists($key, $changes)) {
147 147
 				$method       = "get_$key";
148
-				$values[$key] = $subscription->$method( 'edit' );
148
+				$values[$key] = $subscription->$method('edit');
149 149
 				$formats[]    = $format;
150 150
 			}
151 151
 		}
152 152
 
153
-		if ( empty( $values ) ) {
153
+		if (empty($values)) {
154 154
 			return;
155 155
 		}
156 156
 
@@ -170,11 +170,11 @@  discard block
 block discarded – undo
170 170
 		// Delete cache.
171 171
 		$subscription->clear_cache();
172 172
 
173
-		update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id() );
174
-		update_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id() );
173
+		update_post_meta($subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id', $subscription->get_profile_id());
174
+		update_post_meta($subscription->get_parent_invoice_id(), '_wpinv_subscription_id', $subscription->get_id());
175 175
 
176 176
 		// Fire a hook.
177
-		do_action( 'getpaid_update_subscription', $subscription );
177
+		do_action('getpaid_update_subscription', $subscription);
178 178
 
179 179
 	}
180 180
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 *
184 184
 	 * @param WPInv_Subscription $subscription
185 185
 	 */
186
-	public function delete( &$subscription ) {
186
+	public function delete(&$subscription) {
187 187
 		global $wpdb;
188 188
 
189 189
 		$wpdb->query(
@@ -194,16 +194,16 @@  discard block
 block discarded – undo
194 194
 			)
195 195
 		);
196 196
 
197
-		delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id' );
198
-		delete_post_meta( $subscription->get_parent_invoice_id(), '_wpinv_subscription_id' );
197
+		delete_post_meta($subscription->get_parent_invoice_id(), '_wpinv_subscr_profile_id');
198
+		delete_post_meta($subscription->get_parent_invoice_id(), '_wpinv_subscription_id');
199 199
 
200 200
 		// Delete cache.
201 201
 		$subscription->clear_cache();
202 202
 
203 203
 		// Fire a hook.
204
-		do_action( 'getpaid_delete_subscription', $subscription );
204
+		do_action('getpaid_delete_subscription', $subscription);
205 205
 
206
-		$subscription->set_id( 0 );
206
+		$subscription->set_id(0);
207 207
 	}
208 208
 
209 209
 	/*
Please login to merge, or discard this patch.
includes/admin/meta-boxes/class-getpaid-meta-box-invoice-subscription.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  */
7 7
 
8 8
 if ( ! defined( 'ABSPATH' ) ) {
9
-	exit; // Exit if accessed directly
9
+    exit; // Exit if accessed directly
10 10
 }
11 11
 
12 12
 /**
@@ -15,10 +15,10 @@  discard block
 block discarded – undo
15 15
 class GetPaid_Meta_Box_Invoice_Subscription {
16 16
 
17 17
     /**
18
-	 * Output the subscription metabox.
19
-	 *
20
-	 * @param WP_Post $post
21
-	 */
18
+     * Output the subscription metabox.
19
+     *
20
+     * @param WP_Post $post
21
+     */
22 22
     public static function output( $post ) {
23 23
 
24 24
         // Fetch the invoice.
@@ -34,10 +34,10 @@  discard block
 block discarded – undo
34 34
     }
35 35
 
36 36
     /**
37
-	 * Output the subscription invoices.
38
-	 *
39
-	 * @param WP_Post $post
40
-	 */
37
+     * Output the subscription invoices.
38
+     *
39
+     * @param WP_Post $post
40
+     */
41 41
     public static function output_invoices( $post ) {
42 42
 
43 43
         // Fetch the invoice.
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-	 * Outputs related subscriptions.
57
-	 *
58
-	 * @param WP_Post $post
59
-	 */
56
+     * Outputs related subscriptions.
57
+     *
58
+     * @param WP_Post $post
59
+     */
60 60
     public static function output_related( $post ) {
61 61
 
62 62
         // Fetch the invoice.
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  *
6 6
  */
7 7
 
8
-if ( ! defined( 'ABSPATH' ) ) {
8
+if (!defined('ABSPATH')) {
9 9
 	exit; // Exit if accessed directly
10 10
 }
11 11
 
@@ -19,16 +19,16 @@  discard block
 block discarded – undo
19 19
 	 *
20 20
 	 * @param WP_Post $post
21 21
 	 */
22
-    public static function output( $post ) {
22
+    public static function output($post) {
23 23
 
24 24
         // Fetch the invoice.
25
-        $invoice = new WPInv_Invoice( $post );
25
+        $invoice = new WPInv_Invoice($post);
26 26
 
27 27
         // Fetch the subscription.
28
-        $subscription = getpaid_get_invoice_subscription( $invoice );
28
+        $subscription = getpaid_get_invoice_subscription($invoice);
29 29
 
30 30
         echo '<div class="bsui">';
31
-        getpaid_admin_subscription_details_metabox( /** @scrutinizer ignore-type */$subscription );
31
+        getpaid_admin_subscription_details_metabox(/** @scrutinizer ignore-type */$subscription);
32 32
         echo '</div>';
33 33
 
34 34
     }
@@ -38,16 +38,16 @@  discard block
 block discarded – undo
38 38
 	 *
39 39
 	 * @param WP_Post $post
40 40
 	 */
41
-    public static function output_invoices( $post ) {
41
+    public static function output_invoices($post) {
42 42
 
43 43
         // Fetch the invoice.
44
-        $invoice = new WPInv_Invoice( $post );
44
+        $invoice = new WPInv_Invoice($post);
45 45
 
46 46
         // Fetch the subscription.
47
-        $subscription = getpaid_get_invoice_subscription( $invoice );
47
+        $subscription = getpaid_get_invoice_subscription($invoice);
48 48
 
49 49
         echo '<div class="bsui">';
50
-        getpaid_admin_subscription_invoice_details_metabox( /** @scrutinizer ignore-type */$subscription, false );
50
+        getpaid_admin_subscription_invoice_details_metabox(/** @scrutinizer ignore-type */$subscription, false);
51 51
         echo '</div>';
52 52
 
53 53
     }
@@ -57,16 +57,16 @@  discard block
 block discarded – undo
57 57
 	 *
58 58
 	 * @param WP_Post $post
59 59
 	 */
60
-    public static function output_related( $post ) {
60
+    public static function output_related($post) {
61 61
 
62 62
         // Fetch the invoice.
63
-        $invoice = new WPInv_Invoice( $post );
63
+        $invoice = new WPInv_Invoice($post);
64 64
 
65 65
         // Fetch the subscription.
66
-        $subscription = getpaid_get_invoice_subscription( $invoice );
66
+        $subscription = getpaid_get_invoice_subscription($invoice);
67 67
 
68 68
         echo '<div class="bsui">';
69
-        getpaid_admin_subscription_related_subscriptions_metabox( /** @scrutinizer ignore-type */$subscription, false );
69
+        getpaid_admin_subscription_related_subscriptions_metabox(/** @scrutinizer ignore-type */$subscription, false);
70 70
         echo '</div>';
71 71
 
72 72
     }
Please login to merge, or discard this patch.
widgets/subscriptions.php 2 patches
Indentation   +346 added lines, -346 removed lines patch added patch discarded remove patch
@@ -14,144 +14,144 @@  discard block
 block discarded – undo
14 14
  */
15 15
 class WPInv_Subscriptions_Widget extends WP_Super_Duper {
16 16
 
17
-	/**
18
-	 * Register the widget with WordPress.
19
-	 *
20
-	 */
21
-	public function __construct() {
22
-
23
-		$options = array(
24
-			'textdomain'    => 'invoicing',
25
-			'block-icon'    => 'controls-repeat',
26
-			'block-category'=> 'widgets',
27
-			'block-keywords'=> "['invoicing','subscriptions', 'getpaid']",
28
-			'class_name'     => __CLASS__,
29
-			'base_id'       => 'wpinv_subscriptions',
30
-			'name'          => __( 'GetPaid > Subscriptions', 'invoicing' ),
31
-			'widget_ops'    => array(
32
-				'classname'   => 'getpaid-subscriptions bsui',
33
-				'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ),
34
-			),
35
-			'arguments'     => array(
36
-				'title'  => array(
37
-					'title'       => __( 'Widget title', 'invoicing' ),
38
-					'desc'        => __( 'Enter widget title.', 'invoicing' ),
39
-					'type'        => 'text',
40
-					'desc_tip'    => true,
41
-					'default'     => '',
42
-					'advanced'    => false
43
-				),
44
-			)
45
-
46
-		);
47
-
48
-
49
-		parent::__construct( $options );
50
-	}
51
-
52
-	/**
53
-	 * Retrieves current user's subscriptions.
54
-	 *
55
-	 * @return GetPaid_Subscriptions_Query
56
-	 */
57
-	public function get_subscriptions() {
58
-
59
-		// Prepare license args.
60
-		$args  = array(
61
-			'customer_in' => get_current_user_id(),
62
-			'paged'       => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1,
63
-		);
64
-
65
-		return new GetPaid_Subscriptions_Query( $args );
66
-
67
-	}
68
-
69
-	/**
70
-	 * The Super block output function.
71
-	 *
72
-	 * @param array $args
73
-	 * @param array $widget_args
74
-	 * @param string $content
75
-	 *
76
-	 * @return mixed|string|bool
77
-	 */
78
-	public function output( $args = array(), $widget_args = array(), $content = '' ) {
79
-
80
-		// Ensure that the user is logged in.
81
-		if ( ! is_user_logged_in() ) {
82
-
83
-			return aui()->alert(
84
-				array(
85
-					'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ),
86
-					'type'    => 'error',
87
-				)
88
-			);
89
-
90
-		}
91
-
92
-		// Are we displaying a single subscription?
93
-		if ( isset( $_GET['subscription'] ) ) {
94
-			return $this->display_single_subscription( trim( $_GET['subscription'] ) );
95
-		}
96
-
97
-		// Retrieve the user's subscriptions.
98
-		$subscriptions = $this->get_subscriptions();
99
-
100
-		// Start the output buffer.
101
-		ob_start();
102
-
103
-		// Backwards compatibility.
104
-		do_action( 'wpinv_before_user_subscriptions' );
105
-
106
-		// Display errors and notices.
107
-		wpinv_print_errors();
108
-
109
-		do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions );
110
-
111
-		// Print the table header.
112
-		$this->print_table_header();
113
-
114
-		// Print table body.
115
-		$this->print_table_body( $subscriptions->get_results() );
116
-
117
-		// Print table footer.
118
-		$this->print_table_footer();
119
-
120
-		// Print the navigation.
121
-		$this->print_navigation( $subscriptions->get_total() );
122
-
123
-		// Backwards compatibility.
124
-		do_action( 'wpinv_after_user_subscriptions' );
125
-
126
-		// Return the output.
127
-		return ob_get_clean();
128
-
129
-	}
130
-
131
-	/**
132
-	 * Retrieves the subscription columns.
133
-	 *
134
-	 * @return array
135
-	 */
136
-	public function get_subscriptions_table_columns() {
17
+    /**
18
+     * Register the widget with WordPress.
19
+     *
20
+     */
21
+    public function __construct() {
22
+
23
+        $options = array(
24
+            'textdomain'    => 'invoicing',
25
+            'block-icon'    => 'controls-repeat',
26
+            'block-category'=> 'widgets',
27
+            'block-keywords'=> "['invoicing','subscriptions', 'getpaid']",
28
+            'class_name'     => __CLASS__,
29
+            'base_id'       => 'wpinv_subscriptions',
30
+            'name'          => __( 'GetPaid > Subscriptions', 'invoicing' ),
31
+            'widget_ops'    => array(
32
+                'classname'   => 'getpaid-subscriptions bsui',
33
+                'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ),
34
+            ),
35
+            'arguments'     => array(
36
+                'title'  => array(
37
+                    'title'       => __( 'Widget title', 'invoicing' ),
38
+                    'desc'        => __( 'Enter widget title.', 'invoicing' ),
39
+                    'type'        => 'text',
40
+                    'desc_tip'    => true,
41
+                    'default'     => '',
42
+                    'advanced'    => false
43
+                ),
44
+            )
45
+
46
+        );
47
+
48
+
49
+        parent::__construct( $options );
50
+    }
51
+
52
+    /**
53
+     * Retrieves current user's subscriptions.
54
+     *
55
+     * @return GetPaid_Subscriptions_Query
56
+     */
57
+    public function get_subscriptions() {
58
+
59
+        // Prepare license args.
60
+        $args  = array(
61
+            'customer_in' => get_current_user_id(),
62
+            'paged'       => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1,
63
+        );
64
+
65
+        return new GetPaid_Subscriptions_Query( $args );
66
+
67
+    }
68
+
69
+    /**
70
+     * The Super block output function.
71
+     *
72
+     * @param array $args
73
+     * @param array $widget_args
74
+     * @param string $content
75
+     *
76
+     * @return mixed|string|bool
77
+     */
78
+    public function output( $args = array(), $widget_args = array(), $content = '' ) {
79
+
80
+        // Ensure that the user is logged in.
81
+        if ( ! is_user_logged_in() ) {
82
+
83
+            return aui()->alert(
84
+                array(
85
+                    'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ),
86
+                    'type'    => 'error',
87
+                )
88
+            );
89
+
90
+        }
91
+
92
+        // Are we displaying a single subscription?
93
+        if ( isset( $_GET['subscription'] ) ) {
94
+            return $this->display_single_subscription( trim( $_GET['subscription'] ) );
95
+        }
96
+
97
+        // Retrieve the user's subscriptions.
98
+        $subscriptions = $this->get_subscriptions();
99
+
100
+        // Start the output buffer.
101
+        ob_start();
102
+
103
+        // Backwards compatibility.
104
+        do_action( 'wpinv_before_user_subscriptions' );
105
+
106
+        // Display errors and notices.
107
+        wpinv_print_errors();
108
+
109
+        do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions );
110
+
111
+        // Print the table header.
112
+        $this->print_table_header();
113
+
114
+        // Print table body.
115
+        $this->print_table_body( $subscriptions->get_results() );
116
+
117
+        // Print table footer.
118
+        $this->print_table_footer();
119
+
120
+        // Print the navigation.
121
+        $this->print_navigation( $subscriptions->get_total() );
122
+
123
+        // Backwards compatibility.
124
+        do_action( 'wpinv_after_user_subscriptions' );
125
+
126
+        // Return the output.
127
+        return ob_get_clean();
128
+
129
+    }
130
+
131
+    /**
132
+     * Retrieves the subscription columns.
133
+     *
134
+     * @return array
135
+     */
136
+    public function get_subscriptions_table_columns() {
137 137
 
138
-		$columns = array(
139
-			'subscription'   => __( 'Subscription', 'invoicing' ),
140
-			'amount'         => __( 'Amount', 'invoicing' ),
141
-			'renewal-date'   => __( 'Next payment', 'invoicing' ),
142
-			'status'         => __( 'Status', 'invoicing' ),
143
-		);
138
+        $columns = array(
139
+            'subscription'   => __( 'Subscription', 'invoicing' ),
140
+            'amount'         => __( 'Amount', 'invoicing' ),
141
+            'renewal-date'   => __( 'Next payment', 'invoicing' ),
142
+            'status'         => __( 'Status', 'invoicing' ),
143
+        );
144 144
 
145
-		return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns );
146
-	}
145
+        return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns );
146
+    }
147 147
 
148
-	/**
149
-	 * Displays the table header.
150
-	 *
151
-	 */
152
-	public function print_table_header() {
148
+    /**
149
+     * Displays the table header.
150
+     *
151
+     */
152
+    public function print_table_header() {
153 153
 
154
-		?>
154
+        ?>
155 155
 
156 156
 			<table class="table table-bordered table-striped">
157 157
 
@@ -167,121 +167,121 @@  discard block
 block discarded – undo
167 167
 
168 168
 		<?php
169 169
 
170
-	}
170
+    }
171 171
 
172
-	/**
173
-	 * Displays the table body.
174
-	 *
175
-	 * @param WPInv_Subscription[] $subscriptions
176
-	 */
177
-	public function print_table_body( $subscriptions ) {
172
+    /**
173
+     * Displays the table body.
174
+     *
175
+     * @param WPInv_Subscription[] $subscriptions
176
+     */
177
+    public function print_table_body( $subscriptions ) {
178 178
 
179
-		if ( empty( $subscriptions ) ) {
180
-			$this->print_table_body_no_subscriptions();
181
-		} else {
182
-			$this->print_table_body_subscriptions( $subscriptions );
183
-		}
179
+        if ( empty( $subscriptions ) ) {
180
+            $this->print_table_body_no_subscriptions();
181
+        } else {
182
+            $this->print_table_body_subscriptions( $subscriptions );
183
+        }
184 184
 
185
-	}
185
+    }
186 186
 
187
-	/**
188
-	 * Displays the table body if no subscriptions were found.
189
-	 *
190
-	 */
191
-	public function print_table_body_no_subscriptions() {
187
+    /**
188
+     * Displays the table body if no subscriptions were found.
189
+     *
190
+     */
191
+    public function print_table_body_no_subscriptions() {
192 192
 
193
-		?>
193
+        ?>
194 194
 		<tbody>
195 195
 
196 196
 			<tr>
197 197
 				<td colspan="<?php echo count( $this->get_subscriptions_table_columns() ); ?>">
198 198
 
199 199
 					<?php
200
-						echo aui()->alert(
201
-							array(
202
-								'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ),
203
-								'type'    => 'warning',
204
-							)
205
-						);
206
-					?>
200
+                        echo aui()->alert(
201
+                            array(
202
+                                'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ),
203
+                                'type'    => 'warning',
204
+                            )
205
+                        );
206
+                    ?>
207 207
 
208 208
 				</td>
209 209
 			</tr>
210 210
 
211 211
 		</tbody>
212 212
 		<?php
213
-	}
213
+    }
214 214
 
215
-	/**
216
-	 * Displays the table body if subscriptions were found.
217
-	 *
218
-	 * @param WPInv_Subscription[] $subscriptions
219
-	 */
220
-	public function print_table_body_subscriptions( $subscriptions ) {
215
+    /**
216
+     * Displays the table body if subscriptions were found.
217
+     *
218
+     * @param WPInv_Subscription[] $subscriptions
219
+     */
220
+    public function print_table_body_subscriptions( $subscriptions ) {
221 221
 
222
-		?>
222
+        ?>
223 223
 		<tbody>
224 224
 
225 225
 			<?php foreach ( $subscriptions as $subscription ) : ?>
226 226
 				<tr class="getpaid-subscriptions-table-row subscription-<?php echo (int) $subscription->get_id(); ?>">
227 227
 					<?php
228
-						wpinv_get_template(
229
-							'subscriptions/subscriptions-table-row.php',
230
-							array(
231
-								'subscription' => $subscription,
232
-								'widget'       => $this
233
-							)
234
-						);
235
-					?>
228
+                        wpinv_get_template(
229
+                            'subscriptions/subscriptions-table-row.php',
230
+                            array(
231
+                                'subscription' => $subscription,
232
+                                'widget'       => $this
233
+                            )
234
+                        );
235
+                    ?>
236 236
 				</tr>
237 237
 			<?php endforeach; ?>
238 238
 
239 239
 		</tbody>
240 240
 		<?php
241
-	}
242
-
243
-	/**
244
-	 * Adds row actions to a column
245
-	 *
246
-	 * @param string $content column content
247
-	 * @param WPInv_Subscription $subscription
248
-	 * @since       1.0.0
249
-	 * @return      string
250
-	 */
251
-	public function add_row_actions( $content, $subscription ) {
252
-
253
-		// Prepare row actions.
254
-		$actions = array();
255
-
256
-		// View subscription action.
257
-		$view_url        = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) );
258
-		$view_url        = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) );
259
-		$actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>';
260
-
261
-		// Filter the actions.
262
-		$actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription );
263
-
264
-		$sanitized  = array();
265
-		foreach ( $actions as $key => $action ) {
266
-			$key         = sanitize_html_class( $key );
267
-			$action      = wp_kses_post( $action );
268
-			$sanitized[] = "<span class='$key'>$action</span>";
269
-		}
270
-
271
-		$row_actions  = "<small class='form-text getpaid-subscription-item-actions'>";
272
-		$row_actions .= implode( ' | ', $sanitized );
273
-		$row_actions .= '</small>';
274
-
275
-		return $content . $row_actions;
276
-	}
277
-
278
-	/**
279
-	 * Displays the table footer.
280
-	 *
281
-	 */
282
-	public function print_table_footer() {
283
-
284
-		?>
241
+    }
242
+
243
+    /**
244
+     * Adds row actions to a column
245
+     *
246
+     * @param string $content column content
247
+     * @param WPInv_Subscription $subscription
248
+     * @since       1.0.0
249
+     * @return      string
250
+     */
251
+    public function add_row_actions( $content, $subscription ) {
252
+
253
+        // Prepare row actions.
254
+        $actions = array();
255
+
256
+        // View subscription action.
257
+        $view_url        = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) );
258
+        $view_url        = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) );
259
+        $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>';
260
+
261
+        // Filter the actions.
262
+        $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription );
263
+
264
+        $sanitized  = array();
265
+        foreach ( $actions as $key => $action ) {
266
+            $key         = sanitize_html_class( $key );
267
+            $action      = wp_kses_post( $action );
268
+            $sanitized[] = "<span class='$key'>$action</span>";
269
+        }
270
+
271
+        $row_actions  = "<small class='form-text getpaid-subscription-item-actions'>";
272
+        $row_actions .= implode( ' | ', $sanitized );
273
+        $row_actions .= '</small>';
274
+
275
+        return $content . $row_actions;
276
+    }
277
+
278
+    /**
279
+     * Displays the table footer.
280
+     *
281
+     */
282
+    public function print_table_footer() {
283
+
284
+        ?>
285 285
 
286 286
 				<tfoot>
287 287
 					<tr>
@@ -296,143 +296,143 @@  discard block
 block discarded – undo
296 296
 			</table>
297 297
 		<?php
298 298
 
299
-	}
299
+    }
300 300
 
301
-	/**
302
-	 * Displays the navigation.
303
-	 *
304
-	 * @param int $total
305
-	 */
306
-	public function print_navigation( $total ) {
301
+    /**
302
+     * Displays the navigation.
303
+     *
304
+     * @param int $total
305
+     */
306
+    public function print_navigation( $total ) {
307 307
 
308
-		if ( $total < 1 ) {
308
+        if ( $total < 1 ) {
309 309
 
310
-			// Out-of-bounds, run the query again without LIMIT for total count.
311
-			$args  = array(
312
-				'customer_in' => get_current_user_id(),
313
-				'fields'      => 'id',
314
-			);
310
+            // Out-of-bounds, run the query again without LIMIT for total count.
311
+            $args  = array(
312
+                'customer_in' => get_current_user_id(),
313
+                'fields'      => 'id',
314
+            );
315 315
 
316
-			$count_query = new GetPaid_Subscriptions_Query( $args );
317
-			$total       = $count_query->get_total();
318
-		}
316
+            $count_query = new GetPaid_Subscriptions_Query( $args );
317
+            $total       = $count_query->get_total();
318
+        }
319 319
 
320
-		// Abort if we do not have pages.
321
-		if ( 2 > $total ) {
322
-			return;
323
-		}
320
+        // Abort if we do not have pages.
321
+        if ( 2 > $total ) {
322
+            return;
323
+        }
324 324
 
325
-		?>
325
+        ?>
326 326
 
327 327
 		<div class="getpaid-subscriptions-pagination">
328 328
 			<?php
329
-				$big = 999999;
330
-
331
-				echo getpaid_paginate_links(
332
-					array(
333
-						'base'    => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
334
-						'format'  => '?paged=%#%',
335
-						'total'   => (int) ceil( $total / 10 ),
336
-					)
337
-				);
338
-			?>
329
+                $big = 999999;
330
+
331
+                echo getpaid_paginate_links(
332
+                    array(
333
+                        'base'    => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
334
+                        'format'  => '?paged=%#%',
335
+                        'total'   => (int) ceil( $total / 10 ),
336
+                    )
337
+                );
338
+            ?>
339 339
 		</div>
340 340
 
341 341
 		<?php
342
-	}
343
-
344
-	/**
345
-	 * Returns a single subscription's columns.
346
-	 *
347
-	 * @param WPInv_Subscription $subscription
348
-	 *
349
-	 * @return array
350
-	 */
351
-	public function get_single_subscription_columns( $subscription ) {
352
-
353
-		// Prepare subscription detail columns.
354
-		$subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() );
355
-		$items_count        = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] );
356
-		$fields             = apply_filters(
357
-			'getpaid_single_subscription_details_fields',
358
-			array(
359
-				'status'           => __( 'Status', 'invoicing' ),
360
-				'initial_amount'   => __( 'Initial amount', 'invoicing' ),
361
-				'recurring_amount' => __( 'Recurring amount', 'invoicing' ),
362
-				'start_date'       => __( 'Start date', 'invoicing' ),
363
-				'expiry_date'      => __( 'Next payment', 'invoicing' ),
364
-				'payments'         => __( 'Payments', 'invoicing' ),
365
-				'item'             => _n( 'Item', 'Items', $items_count, 'invoicing' ),
366
-			),
367
-			$subscription
368
-		);
369
-
370
-		if ( isset( $fields['expiry_date'] ) ) {
371
-
372
-			if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) {
373
-				$fields['expiry_date'] = __( 'End date', 'invoicing' );
374
-			}
375
-
376
-			if ( 'pending' == $subscription->get_status() ) {
377
-				unset( $fields['expiry_date'] );
378
-			}
379
-
380
-		}
381
-
382
-		if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) {
383
-			unset( $fields['start_date'] );
384
-		}
385
-
386
-		if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) {
387
-			unset( $fields['initial_amount'] );
388
-		}
389
-
390
-		return $fields;
391
-	}
392
-
393
-	/**
394
-	 * Displays a single subscription.
395
-	 *
396
-	 * @param string $subscription
397
-	 *
398
-	 * @return string
399
-	 */
400
-	public function display_single_subscription( $subscription ) {
401
-
402
-		// Fetch the subscription.
403
-		$subscription = new WPInv_Subscription( (int) $subscription );
404
-
405
-		if ( ! $subscription->exists() ) {
406
-
407
-			return aui()->alert(
408
-				array(
409
-					'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ),
410
-					'type'    => 'error',
411
-				)
412
-			);
413
-
414
-		}
415
-
416
-		// Ensure that the user owns this subscription key.
417
-		if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) {
418
-
419
-			return aui()->alert(
420
-				array(
421
-					'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ),
422
-					'type'    => 'error',
423
-				)
424
-			);
425
-
426
-		}
427
-
428
-		return wpinv_get_template_html(
429
-			'subscriptions/subscription-details.php',
430
-			array(
431
-				'subscription' => $subscription,
432
-				'widget'       => $this
433
-			)
434
-		);
435
-
436
-	}
342
+    }
343
+
344
+    /**
345
+     * Returns a single subscription's columns.
346
+     *
347
+     * @param WPInv_Subscription $subscription
348
+     *
349
+     * @return array
350
+     */
351
+    public function get_single_subscription_columns( $subscription ) {
352
+
353
+        // Prepare subscription detail columns.
354
+        $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() );
355
+        $items_count        = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] );
356
+        $fields             = apply_filters(
357
+            'getpaid_single_subscription_details_fields',
358
+            array(
359
+                'status'           => __( 'Status', 'invoicing' ),
360
+                'initial_amount'   => __( 'Initial amount', 'invoicing' ),
361
+                'recurring_amount' => __( 'Recurring amount', 'invoicing' ),
362
+                'start_date'       => __( 'Start date', 'invoicing' ),
363
+                'expiry_date'      => __( 'Next payment', 'invoicing' ),
364
+                'payments'         => __( 'Payments', 'invoicing' ),
365
+                'item'             => _n( 'Item', 'Items', $items_count, 'invoicing' ),
366
+            ),
367
+            $subscription
368
+        );
369
+
370
+        if ( isset( $fields['expiry_date'] ) ) {
371
+
372
+            if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) {
373
+                $fields['expiry_date'] = __( 'End date', 'invoicing' );
374
+            }
375
+
376
+            if ( 'pending' == $subscription->get_status() ) {
377
+                unset( $fields['expiry_date'] );
378
+            }
379
+
380
+        }
381
+
382
+        if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) {
383
+            unset( $fields['start_date'] );
384
+        }
385
+
386
+        if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) {
387
+            unset( $fields['initial_amount'] );
388
+        }
389
+
390
+        return $fields;
391
+    }
392
+
393
+    /**
394
+     * Displays a single subscription.
395
+     *
396
+     * @param string $subscription
397
+     *
398
+     * @return string
399
+     */
400
+    public function display_single_subscription( $subscription ) {
401
+
402
+        // Fetch the subscription.
403
+        $subscription = new WPInv_Subscription( (int) $subscription );
404
+
405
+        if ( ! $subscription->exists() ) {
406
+
407
+            return aui()->alert(
408
+                array(
409
+                    'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ),
410
+                    'type'    => 'error',
411
+                )
412
+            );
413
+
414
+        }
415
+
416
+        // Ensure that the user owns this subscription key.
417
+        if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) {
418
+
419
+            return aui()->alert(
420
+                array(
421
+                    'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ),
422
+                    'type'    => 'error',
423
+                )
424
+            );
425
+
426
+        }
427
+
428
+        return wpinv_get_template_html(
429
+            'subscriptions/subscription-details.php',
430
+            array(
431
+                'subscription' => $subscription,
432
+                'widget'       => $this
433
+            )
434
+        );
435
+
436
+    }
437 437
 
438 438
 }
Please login to merge, or discard this patch.
Spacing   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * @version 1.0.0
6 6
  */
7 7
 
8
-defined( 'ABSPATH' ) || exit;
8
+defined('ABSPATH') || exit;
9 9
 
10 10
 /**
11 11
  * Contains the subscriptions widget.
@@ -27,15 +27,15 @@  discard block
 block discarded – undo
27 27
 			'block-keywords'=> "['invoicing','subscriptions', 'getpaid']",
28 28
 			'class_name'     => __CLASS__,
29 29
 			'base_id'       => 'wpinv_subscriptions',
30
-			'name'          => __( 'GetPaid > Subscriptions', 'invoicing' ),
30
+			'name'          => __('GetPaid > Subscriptions', 'invoicing'),
31 31
 			'widget_ops'    => array(
32 32
 				'classname'   => 'getpaid-subscriptions bsui',
33
-				'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ),
33
+				'description' => esc_html__("Displays the current user's subscriptions.", 'invoicing'),
34 34
 			),
35 35
 			'arguments'     => array(
36 36
 				'title'  => array(
37
-					'title'       => __( 'Widget title', 'invoicing' ),
38
-					'desc'        => __( 'Enter widget title.', 'invoicing' ),
37
+					'title'       => __('Widget title', 'invoicing'),
38
+					'desc'        => __('Enter widget title.', 'invoicing'),
39 39
 					'type'        => 'text',
40 40
 					'desc_tip'    => true,
41 41
 					'default'     => '',
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 		);
47 47
 
48 48
 
49
-		parent::__construct( $options );
49
+		parent::__construct($options);
50 50
 	}
51 51
 
52 52
 	/**
@@ -57,12 +57,12 @@  discard block
 block discarded – undo
57 57
 	public function get_subscriptions() {
58 58
 
59 59
 		// Prepare license args.
60
-		$args  = array(
60
+		$args = array(
61 61
 			'customer_in' => get_current_user_id(),
62
-			'paged'       => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1,
62
+			'paged'       => (get_query_var('paged')) ? absint(get_query_var('paged')) : 1,
63 63
 		);
64 64
 
65
-		return new GetPaid_Subscriptions_Query( $args );
65
+		return new GetPaid_Subscriptions_Query($args);
66 66
 
67 67
 	}
68 68
 
@@ -75,14 +75,14 @@  discard block
 block discarded – undo
75 75
 	 *
76 76
 	 * @return mixed|string|bool
77 77
 	 */
78
-	public function output( $args = array(), $widget_args = array(), $content = '' ) {
78
+	public function output($args = array(), $widget_args = array(), $content = '') {
79 79
 
80 80
 		// Ensure that the user is logged in.
81
-		if ( ! is_user_logged_in() ) {
81
+		if (!is_user_logged_in()) {
82 82
 
83 83
 			return aui()->alert(
84 84
 				array(
85
-					'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ),
85
+					'content' => wp_kses_post(__('You need to log-in or create an account to view this section.', 'invoicing')),
86 86
 					'type'    => 'error',
87 87
 				)
88 88
 			);
@@ -90,8 +90,8 @@  discard block
 block discarded – undo
90 90
 		}
91 91
 
92 92
 		// Are we displaying a single subscription?
93
-		if ( isset( $_GET['subscription'] ) ) {
94
-			return $this->display_single_subscription( trim( $_GET['subscription'] ) );
93
+		if (isset($_GET['subscription'])) {
94
+			return $this->display_single_subscription(trim($_GET['subscription']));
95 95
 		}
96 96
 
97 97
 		// Retrieve the user's subscriptions.
@@ -101,27 +101,27 @@  discard block
 block discarded – undo
101 101
 		ob_start();
102 102
 
103 103
 		// Backwards compatibility.
104
-		do_action( 'wpinv_before_user_subscriptions' );
104
+		do_action('wpinv_before_user_subscriptions');
105 105
 
106 106
 		// Display errors and notices.
107 107
 		wpinv_print_errors();
108 108
 
109
-		do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions );
109
+		do_action('getpaid_license_manager_before_subscriptions', $subscriptions);
110 110
 
111 111
 		// Print the table header.
112 112
 		$this->print_table_header();
113 113
 
114 114
 		// Print table body.
115
-		$this->print_table_body( $subscriptions->get_results() );
115
+		$this->print_table_body($subscriptions->get_results());
116 116
 
117 117
 		// Print table footer.
118 118
 		$this->print_table_footer();
119 119
 
120 120
 		// Print the navigation.
121
-		$this->print_navigation( $subscriptions->get_total() );
121
+		$this->print_navigation($subscriptions->get_total());
122 122
 
123 123
 		// Backwards compatibility.
124
-		do_action( 'wpinv_after_user_subscriptions' );
124
+		do_action('wpinv_after_user_subscriptions');
125 125
 
126 126
 		// Return the output.
127 127
 		return ob_get_clean();
@@ -136,13 +136,13 @@  discard block
 block discarded – undo
136 136
 	public function get_subscriptions_table_columns() {
137 137
 
138 138
 		$columns = array(
139
-			'subscription'   => __( 'Subscription', 'invoicing' ),
140
-			'amount'         => __( 'Amount', 'invoicing' ),
141
-			'renewal-date'   => __( 'Next payment', 'invoicing' ),
142
-			'status'         => __( 'Status', 'invoicing' ),
139
+			'subscription'   => __('Subscription', 'invoicing'),
140
+			'amount'         => __('Amount', 'invoicing'),
141
+			'renewal-date'   => __('Next payment', 'invoicing'),
142
+			'status'         => __('Status', 'invoicing'),
143 143
 		);
144 144
 
145
-		return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns );
145
+		return apply_filters('getpaid_frontend_subscriptions_table_columns', $columns);
146 146
 	}
147 147
 
148 148
 	/**
@@ -157,9 +157,9 @@  discard block
 block discarded – undo
157 157
 
158 158
 				<thead>
159 159
 					<tr>
160
-						<?php foreach ( $this->get_subscriptions_table_columns() as $key => $label ) : ?>
161
-							<th scope="col" class="font-weight-bold getpaid-subscriptions-table-<?php echo sanitize_html_class( $key ); ?>">
162
-								<?php echo sanitize_text_field( $label ); ?>
160
+						<?php foreach ($this->get_subscriptions_table_columns() as $key => $label) : ?>
161
+							<th scope="col" class="font-weight-bold getpaid-subscriptions-table-<?php echo sanitize_html_class($key); ?>">
162
+								<?php echo sanitize_text_field($label); ?>
163 163
 							</th>
164 164
 						<?php endforeach; ?>
165 165
 					</tr>
@@ -174,12 +174,12 @@  discard block
 block discarded – undo
174 174
 	 *
175 175
 	 * @param WPInv_Subscription[] $subscriptions
176 176
 	 */
177
-	public function print_table_body( $subscriptions ) {
177
+	public function print_table_body($subscriptions) {
178 178
 
179
-		if ( empty( $subscriptions ) ) {
179
+		if (empty($subscriptions)) {
180 180
 			$this->print_table_body_no_subscriptions();
181 181
 		} else {
182
-			$this->print_table_body_subscriptions( $subscriptions );
182
+			$this->print_table_body_subscriptions($subscriptions);
183 183
 		}
184 184
 
185 185
 	}
@@ -194,12 +194,12 @@  discard block
 block discarded – undo
194 194
 		<tbody>
195 195
 
196 196
 			<tr>
197
-				<td colspan="<?php echo count( $this->get_subscriptions_table_columns() ); ?>">
197
+				<td colspan="<?php echo count($this->get_subscriptions_table_columns()); ?>">
198 198
 
199 199
 					<?php
200 200
 						echo aui()->alert(
201 201
 							array(
202
-								'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ),
202
+								'content' => wp_kses_post(__('No subscriptions found.', 'invoicing')),
203 203
 								'type'    => 'warning',
204 204
 							)
205 205
 						);
@@ -217,12 +217,12 @@  discard block
 block discarded – undo
217 217
 	 *
218 218
 	 * @param WPInv_Subscription[] $subscriptions
219 219
 	 */
220
-	public function print_table_body_subscriptions( $subscriptions ) {
220
+	public function print_table_body_subscriptions($subscriptions) {
221 221
 
222 222
 		?>
223 223
 		<tbody>
224 224
 
225
-			<?php foreach ( $subscriptions as $subscription ) : ?>
225
+			<?php foreach ($subscriptions as $subscription) : ?>
226 226
 				<tr class="getpaid-subscriptions-table-row subscription-<?php echo (int) $subscription->get_id(); ?>">
227 227
 					<?php
228 228
 						wpinv_get_template(
@@ -248,28 +248,28 @@  discard block
 block discarded – undo
248 248
 	 * @since       1.0.0
249 249
 	 * @return      string
250 250
 	 */
251
-	public function add_row_actions( $content, $subscription ) {
251
+	public function add_row_actions($content, $subscription) {
252 252
 
253 253
 		// Prepare row actions.
254 254
 		$actions = array();
255 255
 
256 256
 		// View subscription action.
257
-		$view_url        = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) );
258
-		$view_url        = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) );
259
-		$actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>';
257
+		$view_url        = getpaid_get_tab_url('gp-subscriptions', get_permalink((int) wpinv_get_option('invoice_subscription_page')));
258
+		$view_url        = esc_url(add_query_arg('subscription', (int) $subscription->get_id(), $view_url));
259
+		$actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __('Manage Subscription', 'invoicing') . '</a>';
260 260
 
261 261
 		// Filter the actions.
262
-		$actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription );
262
+		$actions = apply_filters('getpaid_subscriptions_table_subscription_actions', $actions, $subscription);
263 263
 
264
-		$sanitized  = array();
265
-		foreach ( $actions as $key => $action ) {
266
-			$key         = sanitize_html_class( $key );
267
-			$action      = wp_kses_post( $action );
264
+		$sanitized = array();
265
+		foreach ($actions as $key => $action) {
266
+			$key         = sanitize_html_class($key);
267
+			$action      = wp_kses_post($action);
268 268
 			$sanitized[] = "<span class='$key'>$action</span>";
269 269
 		}
270 270
 
271 271
 		$row_actions  = "<small class='form-text getpaid-subscription-item-actions'>";
272
-		$row_actions .= implode( ' | ', $sanitized );
272
+		$row_actions .= implode(' | ', $sanitized);
273 273
 		$row_actions .= '</small>';
274 274
 
275 275
 		return $content . $row_actions;
@@ -285,9 +285,9 @@  discard block
 block discarded – undo
285 285
 
286 286
 				<tfoot>
287 287
 					<tr>
288
-						<?php foreach ( $this->get_subscriptions_table_columns() as $key => $label ) : ?>
289
-							<th class="font-weight-bold getpaid-subscriptions-<?php echo sanitize_html_class( $key ); ?>">
290
-								<?php echo sanitize_text_field( $label ); ?>
288
+						<?php foreach ($this->get_subscriptions_table_columns() as $key => $label) : ?>
289
+							<th class="font-weight-bold getpaid-subscriptions-<?php echo sanitize_html_class($key); ?>">
290
+								<?php echo sanitize_text_field($label); ?>
291 291
 							</th>
292 292
 						<?php endforeach; ?>
293 293
 					</tr>
@@ -303,22 +303,22 @@  discard block
 block discarded – undo
303 303
 	 *
304 304
 	 * @param int $total
305 305
 	 */
306
-	public function print_navigation( $total ) {
306
+	public function print_navigation($total) {
307 307
 
308
-		if ( $total < 1 ) {
308
+		if ($total < 1) {
309 309
 
310 310
 			// Out-of-bounds, run the query again without LIMIT for total count.
311
-			$args  = array(
311
+			$args = array(
312 312
 				'customer_in' => get_current_user_id(),
313 313
 				'fields'      => 'id',
314 314
 			);
315 315
 
316
-			$count_query = new GetPaid_Subscriptions_Query( $args );
316
+			$count_query = new GetPaid_Subscriptions_Query($args);
317 317
 			$total       = $count_query->get_total();
318 318
 		}
319 319
 
320 320
 		// Abort if we do not have pages.
321
-		if ( 2 > $total ) {
321
+		if (2 > $total) {
322 322
 			return;
323 323
 		}
324 324
 
@@ -330,9 +330,9 @@  discard block
 block discarded – undo
330 330
 
331 331
 				echo getpaid_paginate_links(
332 332
 					array(
333
-						'base'    => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
333
+						'base'    => str_replace($big, '%#%', esc_url(get_pagenum_link($big))),
334 334
 						'format'  => '?paged=%#%',
335
-						'total'   => (int) ceil( $total / 10 ),
335
+						'total'   => (int) ceil($total / 10),
336 336
 					)
337 337
 				);
338 338
 			?>
@@ -348,43 +348,43 @@  discard block
 block discarded – undo
348 348
 	 *
349 349
 	 * @return array
350 350
 	 */
351
-	public function get_single_subscription_columns( $subscription ) {
351
+	public function get_single_subscription_columns($subscription) {
352 352
 
353 353
 		// Prepare subscription detail columns.
354
-		$subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() );
355
-		$items_count        = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] );
354
+		$subscription_group = getpaid_get_invoice_subscription_group($subscription->get_parent_invoice_id(), $subscription->get_id());
355
+		$items_count        = empty($subscription_group) ? 1 : count($subscription_group['items']);
356 356
 		$fields             = apply_filters(
357 357
 			'getpaid_single_subscription_details_fields',
358 358
 			array(
359
-				'status'           => __( 'Status', 'invoicing' ),
360
-				'initial_amount'   => __( 'Initial amount', 'invoicing' ),
361
-				'recurring_amount' => __( 'Recurring amount', 'invoicing' ),
362
-				'start_date'       => __( 'Start date', 'invoicing' ),
363
-				'expiry_date'      => __( 'Next payment', 'invoicing' ),
364
-				'payments'         => __( 'Payments', 'invoicing' ),
365
-				'item'             => _n( 'Item', 'Items', $items_count, 'invoicing' ),
359
+				'status'           => __('Status', 'invoicing'),
360
+				'initial_amount'   => __('Initial amount', 'invoicing'),
361
+				'recurring_amount' => __('Recurring amount', 'invoicing'),
362
+				'start_date'       => __('Start date', 'invoicing'),
363
+				'expiry_date'      => __('Next payment', 'invoicing'),
364
+				'payments'         => __('Payments', 'invoicing'),
365
+				'item'             => _n('Item', 'Items', $items_count, 'invoicing'),
366 366
 			),
367 367
 			$subscription
368 368
 		);
369 369
 
370
-		if ( isset( $fields['expiry_date'] ) ) {
370
+		if (isset($fields['expiry_date'])) {
371 371
 
372
-			if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) {
373
-				$fields['expiry_date'] = __( 'End date', 'invoicing' );
372
+			if (!$subscription->is_active() || $subscription->is_last_renewal()) {
373
+				$fields['expiry_date'] = __('End date', 'invoicing');
374 374
 			}
375 375
 
376
-			if ( 'pending' == $subscription->get_status() ) {
377
-				unset( $fields['expiry_date'] );
376
+			if ('pending' == $subscription->get_status()) {
377
+				unset($fields['expiry_date']);
378 378
 			}
379 379
 
380 380
 		}
381 381
 
382
-		if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) {
383
-			unset( $fields['start_date'] );
382
+		if (isset($fields['start_date']) && 'pending' == $subscription->get_status()) {
383
+			unset($fields['start_date']);
384 384
 		}
385 385
 
386
-		if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) {
387
-			unset( $fields['initial_amount'] );
386
+		if ($subscription->get_initial_amount() == $subscription->get_recurring_amount()) {
387
+			unset($fields['initial_amount']);
388 388
 		}
389 389
 
390 390
 		return $fields;
@@ -397,16 +397,16 @@  discard block
 block discarded – undo
397 397
 	 *
398 398
 	 * @return string
399 399
 	 */
400
-	public function display_single_subscription( $subscription ) {
400
+	public function display_single_subscription($subscription) {
401 401
 
402 402
 		// Fetch the subscription.
403
-		$subscription = new WPInv_Subscription( (int) $subscription );
403
+		$subscription = new WPInv_Subscription((int) $subscription);
404 404
 
405
-		if ( ! $subscription->exists() ) {
405
+		if (!$subscription->exists()) {
406 406
 
407 407
 			return aui()->alert(
408 408
 				array(
409
-					'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ),
409
+					'content' => wp_kses_post(__('Subscription not found.', 'invoicing')),
410 410
 					'type'    => 'error',
411 411
 				)
412 412
 			);
@@ -414,11 +414,11 @@  discard block
 block discarded – undo
414 414
 		}
415 415
 
416 416
 		// Ensure that the user owns this subscription key.
417
-		if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) {
417
+		if (get_current_user_id() != $subscription->get_customer_id() && !wpinv_current_user_can_manage_invoicing()) {
418 418
 
419 419
 			return aui()->alert(
420 420
 				array(
421
-					'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ),
421
+					'content' => wp_kses_post(__('You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing')),
422 422
 					'type'    => 'error',
423 423
 				)
424 424
 			);
Please login to merge, or discard this patch.
includes/class-wpinv-subscriptions.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@  discard block
 block discarded – undo
12 12
 class WPInv_Subscriptions {
13 13
 
14 14
     /**
15
-	 * Class constructor.
16
-	 */
15
+     * Class constructor.
16
+     */
17 17
     public function __construct(){
18 18
 
19 19
         // Fire gateway specific hooks when a subscription changes.
@@ -89,12 +89,12 @@  discard block
 block discarded – undo
89 89
     }
90 90
 
91 91
     /**
92
-	 * Processes subscription status changes.
92
+     * Processes subscription status changes.
93 93
      *
94 94
      * @param WPInv_Subscription $subscription
95 95
      * @param string $from
96 96
      * @param string $to
97
-	 */
97
+     */
98 98
     public function process_subscription_status_change( $subscription, $from, $to ) {
99 99
 
100 100
         $gateway = $subscription->get_gateway();
Please login to merge, or discard this patch.
Spacing   +171 added lines, -171 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
  * Main Subscriptions class.
10 10
  *
@@ -14,31 +14,31 @@  discard block
 block discarded – undo
14 14
     /**
15 15
 	 * Class constructor.
16 16
 	 */
17
-    public function __construct(){
17
+    public function __construct() {
18 18
 
19 19
         // Fire gateway specific hooks when a subscription changes.
20
-        add_action( 'getpaid_subscription_status_changed', array( $this, 'process_subscription_status_change' ), 10, 3 );
20
+        add_action('getpaid_subscription_status_changed', array($this, 'process_subscription_status_change'), 10, 3);
21 21
 
22 22
         // De-activate a subscription whenever the invoice changes payment statuses.
23
-        add_action( 'getpaid_invoice_status_wpi-refunded', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 );
24
-        add_action( 'getpaid_invoice_status_wpi-failed', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 );
25
-        add_action( 'getpaid_invoice_status_wpi-cancelled', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 );
26
-        add_action( 'getpaid_invoice_status_wpi-pending', array( $this, 'maybe_deactivate_invoice_subscription' ), 20 );
23
+        add_action('getpaid_invoice_status_wpi-refunded', array($this, 'maybe_deactivate_invoice_subscription'), 20);
24
+        add_action('getpaid_invoice_status_wpi-failed', array($this, 'maybe_deactivate_invoice_subscription'), 20);
25
+        add_action('getpaid_invoice_status_wpi-cancelled', array($this, 'maybe_deactivate_invoice_subscription'), 20);
26
+        add_action('getpaid_invoice_status_wpi-pending', array($this, 'maybe_deactivate_invoice_subscription'), 20);
27 27
 
28 28
         // Handles subscription cancelations.
29
-        add_action( 'getpaid_authenticated_action_subscription_cancel', array( $this, 'user_cancel_single_subscription' ) );
29
+        add_action('getpaid_authenticated_action_subscription_cancel', array($this, 'user_cancel_single_subscription'));
30 30
 
31 31
         // Create a subscription whenever an invoice is created, (and update it when it is updated).
32
-        add_action( 'getpaid_new_invoice', array( $this, 'maybe_create_invoice_subscription' ), 5 );
33
-        add_action( 'getpaid_update_invoice', array( $this, 'maybe_update_invoice_subscription' ), 5 );
32
+        add_action('getpaid_new_invoice', array($this, 'maybe_create_invoice_subscription'), 5);
33
+        add_action('getpaid_update_invoice', array($this, 'maybe_update_invoice_subscription'), 5);
34 34
 
35 35
         // Handles admin subscription update actions.
36
-        add_action( 'getpaid_authenticated_admin_action_update_single_subscription', array( $this, 'admin_update_single_subscription' ) );
37
-        add_action( 'getpaid_authenticated_admin_action_subscription_manual_renew', array( $this, 'admin_renew_single_subscription' ) );
38
-        add_action( 'getpaid_authenticated_admin_action_subscription_manual_delete', array( $this, 'admin_delete_single_subscription' ) );
36
+        add_action('getpaid_authenticated_admin_action_update_single_subscription', array($this, 'admin_update_single_subscription'));
37
+        add_action('getpaid_authenticated_admin_action_subscription_manual_renew', array($this, 'admin_renew_single_subscription'));
38
+        add_action('getpaid_authenticated_admin_action_subscription_manual_delete', array($this, 'admin_delete_single_subscription'));
39 39
 
40 40
         // Filter invoice item row actions.
41
-        add_action( 'getpaid-invoice-page-line-item-actions', array( $this, 'filter_invoice_line_item_actions' ), 10, 3 );
41
+        add_action('getpaid-invoice-page-line-item-actions', array($this, 'filter_invoice_line_item_actions'), 10, 3);
42 42
     }
43 43
 
44 44
     /**
@@ -47,19 +47,19 @@  discard block
 block discarded – undo
47 47
      * @param WPInv_Invoice $invoice
48 48
      * @return WPInv_Subscription|bool
49 49
      */
50
-    public function get_invoice_subscription( $invoice ) {
50
+    public function get_invoice_subscription($invoice) {
51 51
         $subscription_id = $invoice->get_subscription_id();
52 52
 
53 53
         // Fallback to the parent invoice if the child invoice has no subscription id.
54
-        if ( empty( $subscription_id ) && $invoice->is_renewal() ) {
54
+        if (empty($subscription_id) && $invoice->is_renewal()) {
55 55
             $subscription_id = $invoice->get_parent_payment()->get_subscription_id();
56 56
         }
57 57
 
58 58
         // Fetch the subscription.
59
-        $subscription = new WPInv_Subscription( $subscription_id );
59
+        $subscription = new WPInv_Subscription($subscription_id);
60 60
 
61 61
         // Return subscription or use a fallback for backwards compatibility.
62
-        return $subscription->exists() ? $subscription : wpinv_get_invoice_subscription( $invoice );
62
+        return $subscription->exists() ? $subscription : wpinv_get_invoice_subscription($invoice);
63 63
     }
64 64
 
65 65
     /**
@@ -67,21 +67,21 @@  discard block
 block discarded – undo
67 67
      *
68 68
      * @param WPInv_Invoice $invoice
69 69
      */
70
-    public function maybe_deactivate_invoice_subscription( $invoice ) {
70
+    public function maybe_deactivate_invoice_subscription($invoice) {
71 71
 
72
-        $subscriptions = getpaid_get_invoice_subscriptions( $invoice );
72
+        $subscriptions = getpaid_get_invoice_subscriptions($invoice);
73 73
 
74
-        if ( empty( $subscriptions ) ) {
74
+        if (empty($subscriptions)) {
75 75
             return;
76 76
         }
77 77
 
78
-        if ( ! is_array( $subscriptions ) ) {
79
-            $subscriptions = array( $subscriptions );
78
+        if (!is_array($subscriptions)) {
79
+            $subscriptions = array($subscriptions);
80 80
         }
81 81
 
82
-        foreach ( $subscriptions as $subscription ) {
83
-            if ( $subscription->is_active() ) {
84
-                $subscription->set_status( 'pending' );
82
+        foreach ($subscriptions as $subscription) {
83
+            if ($subscription->is_active()) {
84
+                $subscription->set_status('pending');
85 85
                 $subscription->save();
86 86
             }
87 87
         }
@@ -95,15 +95,15 @@  discard block
 block discarded – undo
95 95
      * @param string $from
96 96
      * @param string $to
97 97
 	 */
98
-    public function process_subscription_status_change( $subscription, $from, $to ) {
98
+    public function process_subscription_status_change($subscription, $from, $to) {
99 99
 
100 100
         $gateway = $subscription->get_gateway();
101 101
 
102
-        if ( ! empty( $gateway ) ) {
103
-            $gateway = sanitize_key( $gateway );
104
-            $from    = sanitize_key( $from );
105
-            $to      = sanitize_key( $to );
106
-            do_action( "getpaid_{$gateway}_subscription_$to", $subscription, $from );
102
+        if (!empty($gateway)) {
103
+            $gateway = sanitize_key($gateway);
104
+            $from    = sanitize_key($from);
105
+            $to      = sanitize_key($to);
106
+            do_action("getpaid_{$gateway}_subscription_$to", $subscription, $from);
107 107
         }
108 108
 
109 109
     }
@@ -116,8 +116,8 @@  discard block
 block discarded – undo
116 116
      * @deprecated
117 117
      * @return mixed|string|void
118 118
      */
119
-    public static function wpinv_get_pretty_subscription_frequency( $period, $frequency_count = 1 ) {
120
-        return getpaid_get_subscription_period_label( $period, $frequency_count );
119
+    public static function wpinv_get_pretty_subscription_frequency($period, $frequency_count = 1) {
120
+        return getpaid_get_subscription_period_label($period, $frequency_count);
121 121
     }
122 122
 
123 123
     /**
@@ -127,33 +127,33 @@  discard block
 block discarded – undo
127 127
      * @since       1.0.0
128 128
      * @return      void
129 129
      */
130
-    public function user_cancel_single_subscription( $data ) {
130
+    public function user_cancel_single_subscription($data) {
131 131
 
132 132
         // Ensure there is a subscription to cancel.
133
-        if ( empty( $data['subscription'] ) ) {
133
+        if (empty($data['subscription'])) {
134 134
             return;
135 135
         }
136 136
 
137
-        $subscription = new WPInv_Subscription( (int) $data['subscription'] );
137
+        $subscription = new WPInv_Subscription((int) $data['subscription']);
138 138
 
139 139
         // Ensure that it exists and that it belongs to the current user.
140
-        if ( ! $subscription->exists() || $subscription->get_customer_id() != get_current_user_id() ) {
141
-            wpinv_set_error( 'invalid_subscription', __( 'You do not have permission to cancel this subscription', 'invoicing' ) );
140
+        if (!$subscription->exists() || $subscription->get_customer_id() != get_current_user_id()) {
141
+            wpinv_set_error('invalid_subscription', __('You do not have permission to cancel this subscription', 'invoicing'));
142 142
 
143 143
         // Can it be cancelled.
144
-        } else if ( ! $subscription->can_cancel() ) {
145
-            wpinv_set_error( 'cannot_cancel', __( 'This subscription cannot be cancelled as it is not active.', 'invoicing' ) );
144
+        } else if (!$subscription->can_cancel()) {
145
+            wpinv_set_error('cannot_cancel', __('This subscription cannot be cancelled as it is not active.', 'invoicing'));
146 146
 
147 147
         // Cancel it.
148 148
         } else {
149 149
 
150 150
             $subscription->cancel();
151
-            wpinv_set_error( 'cancelled', __( 'This subscription has been cancelled.', 'invoicing' ), 'info' );
151
+            wpinv_set_error('cancelled', __('This subscription has been cancelled.', 'invoicing'), 'info');
152 152
         }
153 153
 
154
-        $redirect = remove_query_arg( array( 'getpaid-action', 'getpaid-nonce' ) );
154
+        $redirect = remove_query_arg(array('getpaid-action', 'getpaid-nonce'));
155 155
 
156
-        wp_safe_redirect( $redirect );
156
+        wp_safe_redirect($redirect);
157 157
         exit;
158 158
 
159 159
     }
@@ -165,41 +165,41 @@  discard block
 block discarded – undo
165 165
      * @param       WPInv_Invoice $invoice
166 166
      * @since       1.0.0
167 167
      */
168
-    public function maybe_create_invoice_subscription( $invoice ) {
168
+    public function maybe_create_invoice_subscription($invoice) {
169 169
         global $getpaid_subscriptions_skip_invoice_update;
170 170
 
171 171
         // Abort if it is not recurring.
172
-        if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_free() || ! $invoice->is_recurring() || $invoice->is_renewal() ) {
172
+        if (!$invoice->is_type('invoice') || $invoice->is_free() || !$invoice->is_recurring() || $invoice->is_renewal()) {
173 173
             return;
174 174
         }
175 175
 
176 176
         // Either group the subscriptions or only process a single suscription.
177
-        if ( getpaid_should_group_subscriptions( $invoice ) ) {
177
+        if (getpaid_should_group_subscriptions($invoice)) {
178 178
 
179 179
             $subscription_groups = array();
180 180
             $is_first            = true;
181 181
 
182
-            foreach ( getpaid_calculate_subscription_totals( $invoice ) as $group_key => $totals ) {
183
-                $subscription_groups[ $group_key ] = $this->create_invoice_subscription_group( $totals, $invoice, 0, $is_first );
182
+            foreach (getpaid_calculate_subscription_totals($invoice) as $group_key => $totals) {
183
+                $subscription_groups[$group_key] = $this->create_invoice_subscription_group($totals, $invoice, 0, $is_first);
184 184
 
185
-                if ( $is_first ) {
185
+                if ($is_first) {
186 186
                     $getpaid_subscriptions_skip_invoice_update = true;
187
-                    $invoice->set_subscription_id( $subscription_groups[ $group_key ]['subscription_id'] );
187
+                    $invoice->set_subscription_id($subscription_groups[$group_key]['subscription_id']);
188 188
                     $invoice->save();
189 189
                     $getpaid_subscriptions_skip_invoice_update = false;
190 190
                 }
191 191
 
192
-                $is_first                          = false;
192
+                $is_first = false;
193 193
             }
194 194
 
195 195
             // Cache subscription groups.
196
-            update_post_meta( $invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups );
196
+            update_post_meta($invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups);
197 197
             return true;
198 198
 
199 199
         }
200 200
 
201 201
         $subscription = new WPInv_Subscription();
202
-        return $this->update_invoice_subscription( $subscription, $invoice );
202
+        return $this->update_invoice_subscription($subscription, $invoice);
203 203
 
204 204
     }
205 205
 
@@ -214,47 +214,47 @@  discard block
 block discarded – undo
214 214
      *
215 215
      * @since       2.3.0
216 216
      */
217
-    public function create_invoice_subscription_group( $totals, $invoice, $subscription_id = 0, $is_first = false ) {
217
+    public function create_invoice_subscription_group($totals, $invoice, $subscription_id = 0, $is_first = false) {
218 218
 
219
-        $subscription  = new WPInv_Subscription( (int) $subscription_id );
219
+        $subscription  = new WPInv_Subscription((int) $subscription_id);
220 220
         $initial_amt   = $totals['initial_total'];
221 221
         $recurring_amt = $totals['recurring_total'];
222 222
         $fees          = array();
223 223
 
224 224
         // Maybe add recurring fees.
225
-        if ( $is_first ) {
225
+        if ($is_first) {
226 226
 
227
-            foreach ( $invoice->get_fees() as $i => $fee ) {
228
-                if ( ! empty( $fee['recurring_fee'] ) ) {
229
-                    $initial_amt   += wpinv_sanitize_amount( $fee['initial_fee'] );
230
-                    $recurring_amt += wpinv_sanitize_amount( $fee['recurring_fee'] );
227
+            foreach ($invoice->get_fees() as $i => $fee) {
228
+                if (!empty($fee['recurring_fee'])) {
229
+                    $initial_amt   += wpinv_sanitize_amount($fee['initial_fee']);
230
+                    $recurring_amt += wpinv_sanitize_amount($fee['recurring_fee']);
231 231
                     $fees[$i]       = $fee;
232 232
                 }
233 233
             }
234 234
 
235 235
         }
236 236
 
237
-        $subscription->set_customer_id( $invoice->get_customer_id() );
238
-        $subscription->set_parent_invoice_id( $invoice->get_id() );
239
-        $subscription->set_initial_amount( $initial_amt );
240
-        $subscription->set_recurring_amount( $recurring_amt );
241
-        $subscription->set_date_created( current_time( 'mysql' ) );
242
-        $subscription->set_status( $invoice->is_paid() ? 'active' : 'pending' );
243
-        $subscription->set_product_id( $totals['item_id'] );
244
-        $subscription->set_period( $totals['period'] );
245
-        $subscription->set_frequency( $totals['interval'] );
246
-        $subscription->set_bill_times( $totals['recurring_limit'] );
247
-        $subscription->set_next_renewal_date( $totals['renews_on'] );
237
+        $subscription->set_customer_id($invoice->get_customer_id());
238
+        $subscription->set_parent_invoice_id($invoice->get_id());
239
+        $subscription->set_initial_amount($initial_amt);
240
+        $subscription->set_recurring_amount($recurring_amt);
241
+        $subscription->set_date_created(current_time('mysql'));
242
+        $subscription->set_status($invoice->is_paid() ? 'active' : 'pending');
243
+        $subscription->set_product_id($totals['item_id']);
244
+        $subscription->set_period($totals['period']);
245
+        $subscription->set_frequency($totals['interval']);
246
+        $subscription->set_bill_times($totals['recurring_limit']);
247
+        $subscription->set_next_renewal_date($totals['renews_on']);
248 248
 
249 249
         // Trial periods.
250
-        if ( ! empty( $totals['trialling'] ) ) {
251
-            $subscription->set_trial_period( $totals['trialling'] );
252
-            $subscription->set_status( 'trialling' );
250
+        if (!empty($totals['trialling'])) {
251
+            $subscription->set_trial_period($totals['trialling']);
252
+            $subscription->set_status('trialling');
253 253
 
254 254
         // If initial amount is free, treat it as a free trial even if the subscription item does not have a free trial.
255
-        } else if ( empty( $initial_amt ) ) {
256
-            $subscription->set_trial_period( $totals['interval'] . ' ' . $totals['period'] );
257
-            $subscription->set_status( 'trialling' );
255
+        } else if (empty($initial_amt)) {
256
+            $subscription->set_trial_period($totals['interval'] . ' ' . $totals['period']);
257
+            $subscription->set_status('trialling');
258 258
         }
259 259
 
260 260
         $subscription->save();
@@ -272,87 +272,87 @@  discard block
 block discarded – undo
272 272
      * @param       WPInv_Invoice $invoice
273 273
      * @since       1.0.19
274 274
      */
275
-    public function maybe_update_invoice_subscription( $invoice ) {
275
+    public function maybe_update_invoice_subscription($invoice) {
276 276
         global $getpaid_subscriptions_skip_invoice_update;
277 277
 
278 278
         // Avoid infinite loops.
279
-        if ( ! empty( $getpaid_subscriptions_skip_invoice_update ) ) {
279
+        if (!empty($getpaid_subscriptions_skip_invoice_update)) {
280 280
             return;
281 281
         }
282 282
 
283 283
         // Do not process renewals.
284
-        if ( $invoice->is_renewal() ) {
284
+        if ($invoice->is_renewal()) {
285 285
             return;
286 286
         }
287 287
 
288 288
         // Delete existing subscriptions if available and the invoice is not recurring.
289
-        if ( ! $invoice->is_recurring() ) {
290
-            $this->delete_invoice_subscriptions( $invoice );
289
+        if (!$invoice->is_recurring()) {
290
+            $this->delete_invoice_subscriptions($invoice);
291 291
             return;
292 292
         }
293 293
 
294 294
         // Fetch existing subscriptions.
295
-        $subscriptions = getpaid_get_invoice_subscriptions( $invoice );
295
+        $subscriptions = getpaid_get_invoice_subscriptions($invoice);
296 296
 
297 297
         // Create new ones if no existing subscriptions.
298
-        if ( empty( $subscriptions ) ) {
299
-            return $this->maybe_create_invoice_subscription( $invoice );
298
+        if (empty($subscriptions)) {
299
+            return $this->maybe_create_invoice_subscription($invoice);
300 300
         }
301 301
 
302 302
         // Abort if an invoice is paid and already has a subscription.
303
-        if ( $invoice->is_paid() || $invoice->is_refunded() ) {
303
+        if ($invoice->is_paid() || $invoice->is_refunded()) {
304 304
             return;
305 305
         }
306 306
 
307
-        $is_grouped   = is_array( $subscriptions );
308
-        $should_group = getpaid_should_group_subscriptions( $invoice );
307
+        $is_grouped   = is_array($subscriptions);
308
+        $should_group = getpaid_should_group_subscriptions($invoice);
309 309
 
310 310
         // Ensure that the subscriptions are only grouped if there are more than 1 recurring items.
311
-        if ( $is_grouped != $should_group ) {
312
-            $this->delete_invoice_subscriptions( $invoice );
313
-            delete_post_meta( $invoice->get_id(), 'getpaid_subscription_groups' );
314
-            return $this->maybe_create_invoice_subscription( $invoice );
311
+        if ($is_grouped != $should_group) {
312
+            $this->delete_invoice_subscriptions($invoice);
313
+            delete_post_meta($invoice->get_id(), 'getpaid_subscription_groups');
314
+            return $this->maybe_create_invoice_subscription($invoice);
315 315
         }
316 316
 
317 317
         // If there is only one recurring item...
318
-        if ( ! $is_grouped ) {
319
-            return $this->update_invoice_subscription( $subscriptions, $invoice );
318
+        if (!$is_grouped) {
319
+            return $this->update_invoice_subscription($subscriptions, $invoice);
320 320
         }
321 321
 
322 322
         // Process subscription groups.
323
-        $current_groups      = getpaid_get_invoice_subscription_groups( $invoice->get_id() );
323
+        $current_groups      = getpaid_get_invoice_subscription_groups($invoice->get_id());
324 324
         $subscription_groups = array();
325 325
         $is_first            = true;
326 326
 
327 327
         // Create new subscription groups.
328
-        foreach ( getpaid_calculate_subscription_totals( $invoice ) as $group_key => $totals ) {
329
-            $subscription_id                   = isset( $current_groups[ $group_key ] ) ? $current_groups[ $group_key ]['subscription_id'] : 0;
330
-            $subscription_groups[ $group_key ] = $this->create_invoice_subscription_group( $totals, $invoice, $subscription_id, $is_first );
328
+        foreach (getpaid_calculate_subscription_totals($invoice) as $group_key => $totals) {
329
+            $subscription_id                   = isset($current_groups[$group_key]) ? $current_groups[$group_key]['subscription_id'] : 0;
330
+            $subscription_groups[$group_key] = $this->create_invoice_subscription_group($totals, $invoice, $subscription_id, $is_first);
331 331
 
332
-            if ( $is_first && $invoice->get_subscription_id() !== $subscription_groups[ $group_key ]['subscription_id'] ) {
332
+            if ($is_first && $invoice->get_subscription_id() !== $subscription_groups[$group_key]['subscription_id']) {
333 333
                 $getpaid_subscriptions_skip_invoice_update = true;
334
-                $invoice->set_subscription_id( $subscription_groups[ $group_key ]['subscription_id'] );
334
+                $invoice->set_subscription_id($subscription_groups[$group_key]['subscription_id']);
335 335
                 $invoice->save();
336 336
                 $getpaid_subscriptions_skip_invoice_update = false;
337 337
             }
338 338
 
339
-            $is_first                          = false;
339
+            $is_first = false;
340 340
         }
341 341
 
342 342
         // Delete non-existent subscription groups.
343
-        foreach ( $current_groups as $group_key => $data ) {
344
-            if ( ! isset( $subscription_groups[ $group_key ] ) ) {
345
-                $subscription = new WPInv_Subscription( (int) $data['subscription_id'] );
343
+        foreach ($current_groups as $group_key => $data) {
344
+            if (!isset($subscription_groups[$group_key])) {
345
+                $subscription = new WPInv_Subscription((int) $data['subscription_id']);
346 346
 
347
-                if ( $subscription->exists() ) {
348
-                    $subscription->delete( true );
347
+                if ($subscription->exists()) {
348
+                    $subscription->delete(true);
349 349
                 }
350 350
 
351 351
             }
352 352
         }
353 353
 
354 354
         // Cache subscription groups.
355
-        update_post_meta( $invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups );
355
+        update_post_meta($invoice->get_id(), 'getpaid_subscription_groups', $subscription_groups);
356 356
         return true;
357 357
 
358 358
     }
@@ -362,20 +362,20 @@  discard block
 block discarded – undo
362 362
      *
363 363
      * @param WPInv_Invoice $invoice
364 364
      */
365
-    public function delete_invoice_subscriptions( $invoice ) {
365
+    public function delete_invoice_subscriptions($invoice) {
366 366
 
367
-        $subscriptions = getpaid_get_invoice_subscriptions( $invoice );
367
+        $subscriptions = getpaid_get_invoice_subscriptions($invoice);
368 368
 
369
-        if ( empty( $subscriptions ) ) {
369
+        if (empty($subscriptions)) {
370 370
             return;
371 371
         }
372 372
 
373
-        if ( ! is_array( $subscriptions ) ) {
374
-            $subscriptions = array( $subscriptions );
373
+        if (!is_array($subscriptions)) {
374
+            $subscriptions = array($subscriptions);
375 375
         }
376 376
 
377
-        foreach ( $subscriptions as $subscription ) {
378
-            $subscription->delete( true );
377
+        foreach ($subscriptions as $subscription) {
378
+            $subscription->delete(true);
379 379
         }
380 380
 
381 381
     }
@@ -388,57 +388,57 @@  discard block
 block discarded – undo
388 388
      * @param       WPInv_Invoice $invoice
389 389
      * @since       1.0.19
390 390
      */
391
-    public function update_invoice_subscription( $subscription, $invoice ) {
391
+    public function update_invoice_subscription($subscription, $invoice) {
392 392
 
393 393
         // Delete the subscription if an invoice is free or nolonger recurring.
394
-        if ( ! $invoice->is_type( 'invoice' ) || $invoice->is_free() || ! $invoice->is_recurring() ) {
394
+        if (!$invoice->is_type('invoice') || $invoice->is_free() || !$invoice->is_recurring()) {
395 395
             return $subscription->delete();
396 396
         }
397 397
 
398
-        $subscription->set_customer_id( $invoice->get_customer_id() );
399
-        $subscription->set_parent_invoice_id( $invoice->get_id() );
400
-        $subscription->set_initial_amount( $invoice->get_initial_total() );
401
-        $subscription->set_recurring_amount( $invoice->get_recurring_total() );
402
-        $subscription->set_date_created( current_time( 'mysql' ) );
403
-        $subscription->set_status( $invoice->is_paid() ? 'active' : 'pending' );
398
+        $subscription->set_customer_id($invoice->get_customer_id());
399
+        $subscription->set_parent_invoice_id($invoice->get_id());
400
+        $subscription->set_initial_amount($invoice->get_initial_total());
401
+        $subscription->set_recurring_amount($invoice->get_recurring_total());
402
+        $subscription->set_date_created(current_time('mysql'));
403
+        $subscription->set_status($invoice->is_paid() ? 'active' : 'pending');
404 404
 
405 405
         // Get the recurring item and abort if it does not exist.
406
-        $subscription_item = $invoice->get_recurring( true );
407
-        if ( ! $subscription_item->get_id() ) {
406
+        $subscription_item = $invoice->get_recurring(true);
407
+        if (!$subscription_item->get_id()) {
408 408
             $invoice->set_subscription_id(0);
409 409
             $invoice->save();
410 410
             return $subscription->delete();
411 411
         }
412 412
 
413
-        $subscription->set_product_id( $subscription_item->get_id() );
414
-        $subscription->set_period( $subscription_item->get_recurring_period( true ) );
415
-        $subscription->set_frequency( $subscription_item->get_recurring_interval() );
416
-        $subscription->set_bill_times( $subscription_item->get_recurring_limit() );
413
+        $subscription->set_product_id($subscription_item->get_id());
414
+        $subscription->set_period($subscription_item->get_recurring_period(true));
415
+        $subscription->set_frequency($subscription_item->get_recurring_interval());
416
+        $subscription->set_bill_times($subscription_item->get_recurring_limit());
417 417
 
418 418
         // Calculate the next renewal date.
419
-        $period       = $subscription_item->get_recurring_period( true );
419
+        $period       = $subscription_item->get_recurring_period(true);
420 420
         $interval     = $subscription_item->get_recurring_interval();
421 421
 
422 422
         // If the subscription item has a trial period...
423
-        if ( $subscription_item->has_free_trial() ) {
424
-            $period   = $subscription_item->get_trial_period( true );
423
+        if ($subscription_item->has_free_trial()) {
424
+            $period   = $subscription_item->get_trial_period(true);
425 425
             $interval = $subscription_item->get_trial_interval();
426
-            $subscription->set_trial_period( $interval . ' ' . $period );
427
-            $subscription->set_status( 'trialling' );
426
+            $subscription->set_trial_period($interval . ' ' . $period);
427
+            $subscription->set_status('trialling');
428 428
         }
429 429
 
430 430
         // If initial amount is free, treat it as a free trial even if the subscription item does not have a free trial.
431
-        if ( $invoice->has_free_trial() ) {
432
-            $subscription->set_trial_period( $interval . ' ' . $period );
433
-            $subscription->set_status( 'trialling' );
431
+        if ($invoice->has_free_trial()) {
432
+            $subscription->set_trial_period($interval . ' ' . $period);
433
+            $subscription->set_status('trialling');
434 434
         }
435 435
 
436 436
         // Calculate the next renewal date.
437
-        $expiration = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", strtotime( $subscription->get_date_created() ) ) );
437
+        $expiration = date('Y-m-d H:i:s', strtotime("+$interval $period", strtotime($subscription->get_date_created())));
438 438
 
439
-        $subscription->set_next_renewal_date( $expiration );
439
+        $subscription->set_next_renewal_date($expiration);
440 440
         $subscription->save();
441
-        $invoice->set_subscription_id( $subscription->get_id() );
441
+        $invoice->set_subscription_id($subscription->get_id());
442 442
         return $subscription->get_id();
443 443
 
444 444
     }
@@ -449,27 +449,27 @@  discard block
 block discarded – undo
449 449
      * @param       array $data
450 450
      * @since       1.0.19
451 451
      */
452
-    public function admin_update_single_subscription( $args ) {
452
+    public function admin_update_single_subscription($args) {
453 453
 
454 454
         // Ensure the subscription exists and that a status has been given.
455
-        if ( empty( $args['subscription_id'] ) ) {
455
+        if (empty($args['subscription_id'])) {
456 456
             return;
457 457
         }
458 458
 
459 459
         // Retrieve the subscriptions.
460
-        $subscription = new WPInv_Subscription( $args['subscription_id'] );
460
+        $subscription = new WPInv_Subscription($args['subscription_id']);
461 461
 
462
-        if ( $subscription->get_id() ) {
462
+        if ($subscription->get_id()) {
463 463
 
464 464
             $subscription->set_props(
465 465
                 array(
466
-                    'status'     => isset( $args['subscription_status'] ) ? $args['subscription_status'] : null,
467
-                    'profile_id' => isset( $args['wpinv_subscription_profile_id'] ) ? $args['wpinv_subscription_profile_id'] : null,
466
+                    'status'     => isset($args['subscription_status']) ? $args['subscription_status'] : null,
467
+                    'profile_id' => isset($args['wpinv_subscription_profile_id']) ? $args['wpinv_subscription_profile_id'] : null,
468 468
                 )
469 469
             );
470 470
 
471 471
             $subscription->save();
472
-            getpaid_admin()->show_info( __( 'Subscription updated', 'invoicing' ) );
472
+            getpaid_admin()->show_info(__('Subscription updated', 'invoicing'));
473 473
 
474 474
         }
475 475
 
@@ -481,27 +481,27 @@  discard block
 block discarded – undo
481 481
      * @param       array $data
482 482
      * @since       1.0.19
483 483
      */
484
-    public function admin_renew_single_subscription( $args ) {
484
+    public function admin_renew_single_subscription($args) {
485 485
 
486 486
         // Ensure the subscription exists and that a status has been given.
487
-        if ( empty( $args['id'] ) ) {
487
+        if (empty($args['id'])) {
488 488
             return;
489 489
         }
490 490
 
491 491
         // Retrieve the subscriptions.
492
-        $subscription = new WPInv_Subscription( $args['id'] );
492
+        $subscription = new WPInv_Subscription($args['id']);
493 493
 
494
-        if ( $subscription->get_id() ) {
494
+        if ($subscription->get_id()) {
495 495
 
496
-            do_action( 'getpaid_admin_renew_subscription', $subscription );
496
+            do_action('getpaid_admin_renew_subscription', $subscription);
497 497
 
498
-            $args = array( 'transaction_id', $subscription->get_parent_invoice()->generate_key( 'renewal_' ) );
498
+            $args = array('transaction_id', $subscription->get_parent_invoice()->generate_key('renewal_'));
499 499
 
500
-            if ( ! $subscription->add_payment( $args ) ) {
501
-                getpaid_admin()->show_error( __( 'We are unable to renew this subscription as the parent invoice does not exist.', 'invoicing' ) );
500
+            if (!$subscription->add_payment($args)) {
501
+                getpaid_admin()->show_error(__('We are unable to renew this subscription as the parent invoice does not exist.', 'invoicing'));
502 502
             } else {
503 503
                 $subscription->renew();
504
-                getpaid_admin()->show_info( __( 'This subscription has been renewed and extended.', 'invoicing' ) );
504
+                getpaid_admin()->show_info(__('This subscription has been renewed and extended.', 'invoicing'));
505 505
             }
506 506
 
507 507
             wp_safe_redirect(
@@ -524,20 +524,20 @@  discard block
 block discarded – undo
524 524
      * @param       array $data
525 525
      * @since       1.0.19
526 526
      */
527
-    public function admin_delete_single_subscription( $args ) {
527
+    public function admin_delete_single_subscription($args) {
528 528
 
529 529
         // Ensure the subscription exists and that a status has been given.
530
-        if ( empty( $args['id'] ) ) {
530
+        if (empty($args['id'])) {
531 531
             return;
532 532
         }
533 533
 
534 534
         // Retrieve the subscriptions.
535
-        $subscription = new WPInv_Subscription( $args['id'] );
535
+        $subscription = new WPInv_Subscription($args['id']);
536 536
 
537
-        if ( $subscription->delete() ) {
538
-            getpaid_admin()->show_info( __( 'This subscription has been deleted.', 'invoicing' ) );
537
+        if ($subscription->delete()) {
538
+            getpaid_admin()->show_info(__('This subscription has been deleted.', 'invoicing'));
539 539
         } else {
540
-            getpaid_admin()->show_error( __( 'We are unable to delete this subscription. Please try again.', 'invoicing' ) );
540
+            getpaid_admin()->show_error(__('We are unable to delete this subscription. Please try again.', 'invoicing'));
541 541
         }
542 542
 
543 543
         $redirected = wp_safe_redirect(
@@ -550,7 +550,7 @@  discard block
 block discarded – undo
550 550
             )
551 551
         );
552 552
 
553
-        if ( $redirected ) {
553
+        if ($redirected) {
554 554
             exit;
555 555
         }
556 556
 
@@ -563,16 +563,16 @@  discard block
 block discarded – undo
563 563
      * @param WPInv_Item $item
564 564
      * @param WPInv_Invoice $invoice
565 565
      */
566
-    public function filter_invoice_line_item_actions( $actions, $item, $invoice ) {
566
+    public function filter_invoice_line_item_actions($actions, $item, $invoice) {
567 567
 
568 568
         // Abort if this invoice uses subscription groups.
569
-        $subscriptions = getpaid_get_invoice_subscriptions( $invoice );
570
-        if ( ! $invoice->is_recurring() || ! is_object( $subscriptions ) ) {
569
+        $subscriptions = getpaid_get_invoice_subscriptions($invoice);
570
+        if (!$invoice->is_recurring() || !is_object($subscriptions)) {
571 571
             return $actions;
572 572
         }
573 573
 
574 574
         // Fetch item subscription.
575
-        $args  = array(
575
+        $args = array(
576 576
             'invoice_in'  => $invoice->is_parent() ? $invoice->get_id() : $invoice->get_parent_id(),
577 577
             'product_in'  => $item->get_id(),
578 578
             'number'      => 1,
@@ -580,13 +580,13 @@  discard block
 block discarded – undo
580 580
             'fields'      => 'id',
581 581
         );
582 582
 
583
-        $subscription = new GetPaid_Subscriptions_Query( $args );
583
+        $subscription = new GetPaid_Subscriptions_Query($args);
584 584
         $subscription = $subscription->get_results();
585 585
 
586 586
         // In case we found a match...
587
-        if ( ! empty( $subscription ) ) {
588
-            $url                     = esc_url( add_query_arg( 'subscription', (int) $subscription[0], get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ) );
589
-            $actions['subscription'] = "<a href='$url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>';
587
+        if (!empty($subscription)) {
588
+            $url                     = esc_url(add_query_arg('subscription', (int) $subscription[0], get_permalink((int) wpinv_get_option('invoice_subscription_page'))));
589
+            $actions['subscription'] = "<a href='$url' class='text-decoration-none'>" . __('Manage Subscription', 'invoicing') . '</a>';
590 590
         }
591 591
 
592 592
         return $actions;
Please login to merge, or discard this patch.
templates/wpinv-payment-processing.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@  discard block
 block discarded – undo
4 4
         <?php 
5 5
             echo
6 6
             wp_sprintf(
7
-                __( 'Your payment is processing. This page will reload automatically in 10 seconds. If it does not, click <a href="%s">here</a>.', 'invoicing' ),
8
-                esc_url_raw( remove_query_arg( 'payment-confirm' ) )
7
+                __('Your payment is processing. This page will reload automatically in 10 seconds. If it does not, click <a href="%s">here</a>.', 'invoicing'),
8
+                esc_url_raw(remove_query_arg('payment-confirm'))
9 9
             );
10 10
         ?>
11 11
         <i class="fa fa-spin fa-refresh"></i>
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     <script type="text/javascript">
15 15
         setTimeout(
16 16
             function(){
17
-                window.location.href = '<?php echo esc_url_raw( remove_query_arg( 'payment-confirm' ) ) ;?>';
17
+                window.location.href = '<?php echo esc_url_raw(remove_query_arg('payment-confirm')); ?>';
18 18
             },
19 19
             10000
20 20
         );
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php 3 patches
Braces   +14 added lines, -6 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
 		/**
@@ -233,7 +237,7 @@  discard block
 block discarded – undo
233 237
 
234 238
 			if( is_admin() && !$this->is_aui_screen()){
235 239
 				// don't add wp-admin scripts if not requested to
236
-			}else{
240
+			} else{
237 241
 				$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
238 242
 
239 243
 				$rtl = is_rtl() ? '-rtl' : '';
@@ -1051,7 +1055,7 @@  discard block
 block discarded – undo
1051 1055
 
1052 1056
 			if( is_admin() && !$this->is_aui_screen()){
1053 1057
 				// don't add wp-admin scripts if not requested to
1054
-			}else {
1058
+			} else {
1055 1059
 
1056 1060
 				$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1057 1061
 
@@ -2093,7 +2097,9 @@  discard block
 block discarded – undo
2093 2097
 		 * @return mixed
2094 2098
 		 */
2095 2099
 		public static function minify_js($input) {
2096
-			if(trim($input) === "") return $input;
2100
+			if(trim($input) === "") {
2101
+			    return $input;
2102
+			}
2097 2103
 			return preg_replace(
2098 2104
 				array(
2099 2105
 					// Remove comment(s)
@@ -2125,7 +2131,9 @@  discard block
 block discarded – undo
2125 2131
 		 * @return mixed
2126 2132
 		 */
2127 2133
 		public static function minify_css($input) {
2128
-			if(trim($input) === "") return $input;
2134
+			if(trim($input) === "") {
2135
+			    return $input;
2136
+			}
2129 2137
 			return preg_replace(
2130 2138
 				array(
2131 2139
 					// Remove comment(s)
Please login to merge, or discard this patch.
Spacing   +385 added lines, -385 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,25 +143,25 @@  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'] ) {
154
+			if ($this->settings['js']) {
155 155
 				$priority = $this->is_bs3_compat() ? 100 : 1;
156
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
156
+				add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), $priority);
157 157
 			}
158
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
159
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
158
+			if ($this->settings['js_backend'] && $this->load_admin_scripts()) {
159
+				add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 1);
160 160
 			}
161 161
 
162 162
 			// Maybe set the HTML font size
163
-			if ( $this->settings['html_font_size'] ) {
164
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
163
+			if ($this->settings['html_font_size']) {
164
+				add_action('wp_footer', array($this, 'html_font_size'), 10);
165 165
 			}
166 166
 
167 167
 
@@ -172,14 +172,14 @@  discard block
 block discarded – undo
172 172
 		 *
173 173
 		 * @return bool
174 174
 		 */
175
-		public function load_admin_scripts(){
175
+		public function load_admin_scripts() {
176 176
 			$result = true;
177 177
 
178 178
 			// check if specifically disabled
179
-			if(!empty($this->settings['disable_admin'])){
180
-				$url_parts = explode("\n",$this->settings['disable_admin']);
181
-				foreach($url_parts as $part){
182
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
179
+			if (!empty($this->settings['disable_admin'])) {
180
+				$url_parts = explode("\n", $this->settings['disable_admin']);
181
+				foreach ($url_parts as $part) {
182
+					if (strpos($_SERVER['REQUEST_URI'], trim($part)) !== false) {
183 183
 						return false; // return early, no point checking further
184 184
 					}
185 185
 				}
@@ -191,9 +191,9 @@  discard block
 block discarded – undo
191 191
 		/**
192 192
 		 * Add a html font size to the footer.
193 193
 		 */
194
-		public function html_font_size(){
194
+		public function html_font_size() {
195 195
 			$this->settings = $this->get_settings();
196
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
196
+			echo "<style>html{font-size:" . absint($this->settings['html_font_size']) . "px;}</style>";
197 197
 		}
198 198
 
199 199
 		/**
@@ -201,10 +201,10 @@  discard block
 block discarded – undo
201 201
 		 * 
202 202
 		 * @return bool
203 203
 		 */
204
-		public function is_aui_screen(){
204
+		public function is_aui_screen() {
205 205
 			$load = false;
206 206
 			// check if we should load or not
207
-			if ( is_admin() ) {
207
+			if (is_admin()) {
208 208
 				// Only enable on set pages
209 209
 				$aui_screens = array(
210 210
 					'page',
@@ -213,24 +213,24 @@  discard block
 block discarded – undo
213 213
 					'appearance_page_gutenberg-widgets',
214 214
 					'widgets'
215 215
 				);
216
-				$screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
216
+				$screen_ids = apply_filters('aui_screen_ids', $aui_screens);
217 217
 
218 218
 				$screen = get_current_screen();
219 219
 
220 220
 //				echo '###'.$screen->id;
221 221
 
222 222
 				// check if we are on a AUI screen
223
-				if ( $screen && in_array( $screen->id, $screen_ids ) ) {
223
+				if ($screen && in_array($screen->id, $screen_ids)) {
224 224
 					$load = true;
225 225
 				}
226 226
 
227 227
 				//load for widget previews in WP 5.8
228
-				if( !empty($_REQUEST['legacy-widget-preview'])){
228
+				if (!empty($_REQUEST['legacy-widget-preview'])) {
229 229
 					$load = true;
230 230
 				}
231 231
 			}
232 232
 
233
-			return apply_filters( 'aui_load_on_admin' , $load );
233
+			return apply_filters('aui_load_on_admin', $load);
234 234
 		}
235 235
 
236 236
 		/**
@@ -238,25 +238,25 @@  discard block
 block discarded – undo
238 238
 		 */
239 239
 		public function enqueue_style() {
240 240
 
241
-			if( is_admin() && !$this->is_aui_screen()){
241
+			if (is_admin() && !$this->is_aui_screen()) {
242 242
 				// don't add wp-admin scripts if not requested to
243
-			}else{
243
+			} else {
244 244
 				$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
245 245
 
246 246
 				$rtl = is_rtl() ? '-rtl' : '';
247 247
 
248
-				if($this->settings[$css_setting]){
249
-					$compatibility = $this->settings[$css_setting]=='core' ? false : true;
250
-					$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
251
-					wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
252
-					wp_enqueue_style( 'ayecode-ui' );
248
+				if ($this->settings[$css_setting]) {
249
+					$compatibility = $this->settings[$css_setting] == 'core' ? false : true;
250
+					$url = $this->settings[$css_setting] == 'core' ? $this->url . 'assets/css/ayecode-ui' . $rtl . '.css' : $this->url . 'assets/css/ayecode-ui-compatibility' . $rtl . '.css';
251
+					wp_register_style('ayecode-ui', $url, array(), $this->latest);
252
+					wp_enqueue_style('ayecode-ui');
253 253
 
254 254
 					// flatpickr
255
-					wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
255
+					wp_register_style('flatpickr', $this->url . 'assets/css/flatpickr.min.css', array(), $this->latest);
256 256
 
257 257
 
258 258
 					// fix some wp-admin issues
259
-					if(is_admin()){
259
+					if (is_admin()) {
260 260
 						$custom_css = "
261 261
                 body{
262 262
                     background-color: #f1f1f1;
@@ -305,11 +305,11 @@  discard block
 block discarded – undo
305 305
 						    padding: 0;
306 306
 						}
307 307
 					";
308
-						wp_add_inline_style( 'ayecode-ui', $custom_css );
308
+						wp_add_inline_style('ayecode-ui', $custom_css);
309 309
 					}
310 310
 
311 311
 					// custom changes
312
-					wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
312
+					wp_add_inline_style('ayecode-ui', self::custom_css($compatibility));
313 313
 
314 314
 				}
315 315
 			}
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
 				function aui_init_flatpickr(){
570 570
 					if ( typeof jQuery.fn.flatpickr === "function" && !$aui_doing_init_flatpickr) {
571 571
 						$aui_doing_init_flatpickr = true;
572
-						<?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?>
572
+						<?php if (!empty($flatpickr_locale)) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?>
573 573
 						jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr();
574 574
 					}
575 575
 					$aui_doing_init_flatpickr = false;
@@ -1023,10 +1023,10 @@  discard block
 block discarded – undo
1023 1023
 			/*
1024 1024
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1025 1025
 			 */
1026
-			return str_replace( array(
1026
+			return str_replace(array(
1027 1027
 				'<script>',
1028 1028
 				'</script>'
1029
-			), '', self::minify_js($output) );
1029
+			), '', self::minify_js($output));
1030 1030
 		}
1031 1031
 
1032 1032
 
@@ -1040,13 +1040,13 @@  discard block
 block discarded – undo
1040 1040
 			ob_start();
1041 1041
 			?>
1042 1042
 			<script>
1043
-				<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?>
1043
+				<?php if (defined('FUSION_BUILDER_VERSION')) { ?>
1044 1044
 				/* With Avada builder */
1045 1045
 
1046 1046
 				<?php } ?>
1047 1047
 			</script>
1048 1048
 			<?php
1049
-			return str_replace( array(
1049
+			return str_replace(array(
1050 1050
 				'<script>',
1051 1051
 				'</script>'
1052 1052
 			), '', ob_get_clean());
@@ -1057,7 +1057,7 @@  discard block
 block discarded – undo
1057 1057
 		 *
1058 1058
 		 * If this remains small then its best to use this than to add another JS file.
1059 1059
 		 */
1060
-		public function inline_script_file_browser(){
1060
+		public function inline_script_file_browser() {
1061 1061
 			ob_start();
1062 1062
 			?>
1063 1063
 			<script>
@@ -1072,10 +1072,10 @@  discard block
 block discarded – undo
1072 1072
 			/*
1073 1073
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1074 1074
 			 */
1075
-			return str_replace( array(
1075
+			return str_replace(array(
1076 1076
 				'<script>',
1077 1077
 				'</script>'
1078
-			), '', $output );
1078
+			), '', $output);
1079 1079
 		}
1080 1080
 
1081 1081
 		/**
@@ -1083,50 +1083,50 @@  discard block
 block discarded – undo
1083 1083
 		 */
1084 1084
 		public function enqueue_scripts() {
1085 1085
 
1086
-			if( is_admin() && !$this->is_aui_screen()){
1086
+			if (is_admin() && !$this->is_aui_screen()) {
1087 1087
 				// don't add wp-admin scripts if not requested to
1088
-			}else {
1088
+			} else {
1089 1089
 
1090 1090
 				$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1091 1091
 
1092 1092
 				// select2
1093
-				wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1093
+				wp_register_script('select2', $this->url . 'assets/js/select2.min.js', array('jquery'), $this->select2_version);
1094 1094
 
1095 1095
 				// flatpickr
1096
-				wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest );
1096
+				wp_register_script('flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest);
1097 1097
 
1098 1098
 				// Bootstrap file browser
1099
-				wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1100
-				wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1099
+				wp_register_script('aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version);
1100
+				wp_add_inline_script('aui-custom-file-input', $this->inline_script_file_browser());
1101 1101
 
1102 1102
 				$load_inline = false;
1103 1103
 
1104
-				if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1104
+				if ($this->settings[$js_setting] == 'core-popper') {
1105 1105
 					// Bootstrap bundle
1106 1106
 					$url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1107
-					wp_register_script( 'bootstrap-js-bundle', $url, array(
1107
+					wp_register_script('bootstrap-js-bundle', $url, array(
1108 1108
 						'select2',
1109 1109
 						'jquery'
1110
-					), $this->latest, $this->is_bs3_compat() );
1110
+					), $this->latest, $this->is_bs3_compat());
1111 1111
 					// if in admin then add to footer for compatibility.
1112
-					is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1112
+					is_admin() ? wp_enqueue_script('bootstrap-js-bundle', '', null, null, true) : wp_enqueue_script('bootstrap-js-bundle');
1113 1113
 					$script = $this->inline_script();
1114
-					wp_add_inline_script( 'bootstrap-js-bundle', $script );
1115
-				} elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1114
+					wp_add_inline_script('bootstrap-js-bundle', $script);
1115
+				} elseif ($this->settings[$js_setting] == 'popper') {
1116 1116
 					$url = $this->url . 'assets/js/popper.min.js';
1117
-					wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->latest );
1118
-					wp_enqueue_script( 'bootstrap-js-popper' );
1117
+					wp_register_script('bootstrap-js-popper', $url, array('select2', 'jquery'), $this->latest);
1118
+					wp_enqueue_script('bootstrap-js-popper');
1119 1119
 					$load_inline = true;
1120 1120
 				} else {
1121 1121
 					$load_inline = true;
1122 1122
 				}
1123 1123
 
1124 1124
 				// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1125
-				if ( $load_inline ) {
1126
-					wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1127
-					wp_enqueue_script( 'bootstrap-dummy' );
1125
+				if ($load_inline) {
1126
+					wp_register_script('bootstrap-dummy', '', array('select2', 'jquery'));
1127
+					wp_enqueue_script('bootstrap-dummy');
1128 1128
 					$script = $this->inline_script();
1129
-					wp_add_inline_script( 'bootstrap-dummy', $script );
1129
+					wp_add_inline_script('bootstrap-dummy', $script);
1130 1130
 				}
1131 1131
 			}
1132 1132
 
@@ -1135,9 +1135,9 @@  discard block
 block discarded – undo
1135 1135
 		/**
1136 1136
 		 * Enqueue flatpickr if called.
1137 1137
 		 */
1138
-		public function enqueue_flatpickr(){
1139
-			wp_enqueue_style( 'flatpickr' );
1140
-			wp_enqueue_script( 'flatpickr' );
1138
+		public function enqueue_flatpickr() {
1139
+			wp_enqueue_style('flatpickr');
1140
+			wp_enqueue_script('flatpickr');
1141 1141
 		}
1142 1142
 
1143 1143
 		/**
@@ -1149,15 +1149,15 @@  discard block
 block discarded – undo
1149 1149
 
1150 1150
 			$url = '';
1151 1151
 			// check if we are inside a plugin
1152
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1152
+			$file_dir = str_replace("/includes", "", wp_normalize_path(dirname(__FILE__)));
1153 1153
 
1154 1154
 			// add check in-case user has changed wp-content dir name.
1155 1155
 			$wp_content_folder_name = basename(WP_CONTENT_DIR);
1156
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1157
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
1156
+			$dir_parts = explode("/$wp_content_folder_name/", $file_dir);
1157
+			$url_parts = explode("/$wp_content_folder_name/", plugins_url());
1158 1158
 
1159
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1160
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1159
+			if (!empty($url_parts[0]) && !empty($dir_parts[1])) {
1160
+				$url = trailingslashit($url_parts[0] . "/$wp_content_folder_name/" . $dir_parts[1]);
1161 1161
 			}
1162 1162
 
1163 1163
 			return $url;
@@ -1167,7 +1167,7 @@  discard block
 block discarded – undo
1167 1167
 		 * Register the database settings with WordPress.
1168 1168
 		 */
1169 1169
 		public function register_settings() {
1170
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1170
+			register_setting('ayecode-ui-settings', 'ayecode-ui-settings');
1171 1171
 		}
1172 1172
 
1173 1173
 		/**
@@ -1176,10 +1176,10 @@  discard block
 block discarded – undo
1176 1176
 		 */
1177 1177
 		public function menu_item() {
1178 1178
 			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1179
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1179
+			call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1180 1180
 				$this,
1181 1181
 				'settings_page'
1182
-			) );
1182
+			));
1183 1183
 		}
1184 1184
 
1185 1185
 		/**
@@ -1187,7 +1187,7 @@  discard block
 block discarded – undo
1187 1187
 		 *
1188 1188
 		 * @return array
1189 1189
 		 */
1190
-		public function theme_js_settings(){
1190
+		public function theme_js_settings() {
1191 1191
 			return array(
1192 1192
 				'ayetheme' => 'popper',
1193 1193
 				'listimia' => 'required',
@@ -1203,17 +1203,17 @@  discard block
 block discarded – undo
1203 1203
 		 */
1204 1204
 		public function get_settings() {
1205 1205
 
1206
-			$db_settings = get_option( 'ayecode-ui-settings' );
1206
+			$db_settings = get_option('ayecode-ui-settings');
1207 1207
 			$js_default = 'core-popper';
1208 1208
 			$js_default_backend = $js_default;
1209 1209
 
1210 1210
 			// maybe set defaults (if no settings set)
1211
-			if(empty($db_settings)){
1212
-				$active_theme = strtolower( get_template() ); // active parent theme.
1211
+			if (empty($db_settings)) {
1212
+				$active_theme = strtolower(get_template()); // active parent theme.
1213 1213
 				$theme_js_settings = self::theme_js_settings();
1214
-				if(isset($theme_js_settings[$active_theme])){
1214
+				if (isset($theme_js_settings[$active_theme])) {
1215 1215
 					$js_default = $theme_js_settings[$active_theme];
1216
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1216
+					$js_default_backend = isset($theme_js_settings[$active_theme . "_backend"]) ? $theme_js_settings[$active_theme . "_backend"] : $js_default;
1217 1217
 				}
1218 1218
 			}
1219 1219
 
@@ -1226,14 +1226,14 @@  discard block
 block discarded – undo
1226 1226
 				'disable_admin'     =>  '', // URL snippets to disable loading on admin
1227 1227
 			);
1228 1228
 
1229
-			$settings = wp_parse_args( $db_settings, $defaults );
1229
+			$settings = wp_parse_args($db_settings, $defaults);
1230 1230
 
1231 1231
 			/**
1232 1232
 			 * Filter the Bootstrap settings.
1233 1233
 			 *
1234 1234
 			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1235 1235
 			 */
1236
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1236
+			return $this->settings = apply_filters('ayecode-ui-settings', $settings, $db_settings, $defaults);
1237 1237
 		}
1238 1238
 
1239 1239
 
@@ -1241,90 +1241,90 @@  discard block
 block discarded – undo
1241 1241
 		 * The settings page html output.
1242 1242
 		 */
1243 1243
 		public function settings_page() {
1244
-			if ( ! current_user_can( 'manage_options' ) ) {
1245
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1244
+			if (!current_user_can('manage_options')) {
1245
+				wp_die(__('You do not have sufficient permissions to access this page.', 'aui'));
1246 1246
 			}
1247 1247
 			?>
1248 1248
 			<div class="wrap">
1249 1249
 				<h1><?php echo $this->name; ?></h1>
1250
-				<p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p>
1250
+				<p><?php _e("Here you can adjust settings if you are having compatibility issues.", 'aui'); ?></p>
1251 1251
 				<form method="post" action="options.php">
1252 1252
 					<?php
1253
-					settings_fields( 'ayecode-ui-settings' );
1254
-					do_settings_sections( 'ayecode-ui-settings' );
1253
+					settings_fields('ayecode-ui-settings');
1254
+					do_settings_sections('ayecode-ui-settings');
1255 1255
 					?>
1256 1256
 
1257
-					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
1257
+					<h2><?php _e('Frontend', 'aui'); ?></h2>
1258 1258
 					<table class="form-table wpbs-table-settings">
1259 1259
 						<tr valign="top">
1260 1260
 							<th scope="row"><label
1261
-									for="wpbs-css"><?php _e( 'Load CSS', 'aui' ); ?></label></th>
1261
+									for="wpbs-css"><?php _e('Load CSS', 'aui'); ?></label></th>
1262 1262
 							<td>
1263 1263
 								<select name="ayecode-ui-settings[css]" id="wpbs-css">
1264
-									<option	value="compatibility" <?php selected( $this->settings['css'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option>
1265
-									<option value="core" <?php selected( $this->settings['css'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option>
1266
-									<option	value="" <?php selected( $this->settings['css'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option>
1264
+									<option	value="compatibility" <?php selected($this->settings['css'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option>
1265
+									<option value="core" <?php selected($this->settings['css'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option>
1266
+									<option	value="" <?php selected($this->settings['css'], ''); ?>><?php _e('Disabled', 'aui'); ?></option>
1267 1267
 								</select>
1268 1268
 							</td>
1269 1269
 						</tr>
1270 1270
 
1271 1271
 						<tr valign="top">
1272 1272
 							<th scope="row"><label
1273
-									for="wpbs-js"><?php _e( 'Load JS', 'aui' ); ?></label></th>
1273
+									for="wpbs-js"><?php _e('Load JS', 'aui'); ?></label></th>
1274 1274
 							<td>
1275 1275
 								<select name="ayecode-ui-settings[js]" id="wpbs-js">
1276
-									<option	value="core-popper" <?php selected( $this->settings['js'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option>
1277
-									<option value="popper" <?php selected( $this->settings['js'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option>
1278
-									<option value="required" <?php selected( $this->settings['js'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option>
1279
-									<option	value="" <?php selected( $this->settings['js'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option>
1276
+									<option	value="core-popper" <?php selected($this->settings['js'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option>
1277
+									<option value="popper" <?php selected($this->settings['js'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option>
1278
+									<option value="required" <?php selected($this->settings['js'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option>
1279
+									<option	value="" <?php selected($this->settings['js'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option>
1280 1280
 								</select>
1281 1281
 							</td>
1282 1282
 						</tr>
1283 1283
 
1284 1284
 						<tr valign="top">
1285 1285
 							<th scope="row"><label
1286
-									for="wpbs-font_size"><?php _e( 'HTML Font Size (px)', 'aui' ); ?></label></th>
1286
+									for="wpbs-font_size"><?php _e('HTML Font Size (px)', 'aui'); ?></label></th>
1287 1287
 							<td>
1288
-								<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" />
1289
-								<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>
1288
+								<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" />
1289
+								<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>
1290 1290
 							</td>
1291 1291
 						</tr>
1292 1292
 
1293 1293
 					</table>
1294 1294
 
1295
-					<h2><?php _e( 'Backend', 'aui' ); ?> (wp-admin)</h2>
1295
+					<h2><?php _e('Backend', 'aui'); ?> (wp-admin)</h2>
1296 1296
 					<table class="form-table wpbs-table-settings">
1297 1297
 						<tr valign="top">
1298 1298
 							<th scope="row"><label
1299
-									for="wpbs-css-admin"><?php _e( 'Load CSS', 'aui' ); ?></label></th>
1299
+									for="wpbs-css-admin"><?php _e('Load CSS', 'aui'); ?></label></th>
1300 1300
 							<td>
1301 1301
 								<select name="ayecode-ui-settings[css_backend]" id="wpbs-css-admin">
1302
-									<option	value="compatibility" <?php selected( $this->settings['css_backend'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option>
1303
-									<option value="core" <?php selected( $this->settings['css_backend'], 'core' ); ?>><?php _e( 'Full Mode (will cause style issues)', 'aui' ); ?></option>
1304
-									<option	value="" <?php selected( $this->settings['css_backend'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option>
1302
+									<option	value="compatibility" <?php selected($this->settings['css_backend'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option>
1303
+									<option value="core" <?php selected($this->settings['css_backend'], 'core'); ?>><?php _e('Full Mode (will cause style issues)', 'aui'); ?></option>
1304
+									<option	value="" <?php selected($this->settings['css_backend'], ''); ?>><?php _e('Disabled', 'aui'); ?></option>
1305 1305
 								</select>
1306 1306
 							</td>
1307 1307
 						</tr>
1308 1308
 
1309 1309
 						<tr valign="top">
1310 1310
 							<th scope="row"><label
1311
-									for="wpbs-js-admin"><?php _e( 'Load JS', 'aui' ); ?></label></th>
1311
+									for="wpbs-js-admin"><?php _e('Load JS', 'aui'); ?></label></th>
1312 1312
 							<td>
1313 1313
 								<select name="ayecode-ui-settings[js_backend]" id="wpbs-js-admin">
1314
-									<option	value="core-popper" <?php selected( $this->settings['js_backend'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option>
1315
-									<option value="popper" <?php selected( $this->settings['js_backend'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option>
1316
-									<option value="required" <?php selected( $this->settings['js_backend'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option>
1317
-									<option	value="" <?php selected( $this->settings['js_backend'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option>
1314
+									<option	value="core-popper" <?php selected($this->settings['js_backend'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option>
1315
+									<option value="popper" <?php selected($this->settings['js_backend'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option>
1316
+									<option value="required" <?php selected($this->settings['js_backend'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option>
1317
+									<option	value="" <?php selected($this->settings['js_backend'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option>
1318 1318
 								</select>
1319 1319
 							</td>
1320 1320
 						</tr>
1321 1321
 
1322 1322
 						<tr valign="top">
1323 1323
 							<th scope="row"><label
1324
-									for="wpbs-disable-admin"><?php _e( 'Disable load on URL', 'aui' ); ?></label></th>
1324
+									for="wpbs-disable-admin"><?php _e('Disable load on URL', 'aui'); ?></label></th>
1325 1325
 							<td>
1326
-								<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>
1327
-								<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>
1326
+								<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>
1327
+								<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>
1328 1328
 
1329 1329
 							</td>
1330 1330
 						</tr>
@@ -1342,9 +1342,9 @@  discard block
 block discarded – undo
1342 1342
 			<?php
1343 1343
 		}
1344 1344
 
1345
-		public function customizer_settings($wp_customize){
1345
+		public function customizer_settings($wp_customize) {
1346 1346
 			$wp_customize->add_section('aui_settings', array(
1347
-				'title'    => __('AyeCode UI','aui'),
1347
+				'title'    => __('AyeCode UI', 'aui'),
1348 1348
 				'priority' => 120,
1349 1349
 			));
1350 1350
 
@@ -1358,8 +1358,8 @@  discard block
 block discarded – undo
1358 1358
 				'type'              => 'option',
1359 1359
 				'transport'         => 'refresh',
1360 1360
 			));
1361
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1362
-				'label'    => __('Primary Color','aui'),
1361
+			$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1362
+				'label'    => __('Primary Color', 'aui'),
1363 1363
 				'section'  => 'aui_settings',
1364 1364
 				'settings' => 'aui_options[color_primary]',
1365 1365
 			)));
@@ -1371,8 +1371,8 @@  discard block
 block discarded – undo
1371 1371
 				'type'              => 'option',
1372 1372
 				'transport'         => 'refresh',
1373 1373
 			));
1374
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1375
-				'label'    => __('Secondary Color','aui'),
1374
+			$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1375
+				'label'    => __('Secondary Color', 'aui'),
1376 1376
 				'section'  => 'aui_settings',
1377 1377
 				'settings' => 'aui_options[color_secondary]',
1378 1378
 			)));
@@ -1398,12 +1398,12 @@  discard block
 block discarded – undo
1398 1398
 			.collapse.show:not(.in){display: inherit;}
1399 1399
 			.fade.show{opacity: 1;}
1400 1400
 
1401
-			<?php if( defined( 'SVQ_THEME_VERSION' ) ){ ?>
1401
+			<?php if (defined('SVQ_THEME_VERSION')) { ?>
1402 1402
 			/* KLEO theme specific */
1403 1403
 			.kleo-main-header .navbar-collapse.collapse.show:not(.in){display: block !important;}
1404 1404
 			<?php } ?>
1405 1405
 
1406
-			<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?>
1406
+			<?php if (defined('FUSION_BUILDER_VERSION')) { ?>
1407 1407
 			/* With Avada builder */
1408 1408
 			body.modal-open .modal.in  {opacity:1;z-index: 99999}
1409 1409
 			body.modal-open .modal.bsui.in .modal-content  {box-shadow: none;}
@@ -1411,10 +1411,10 @@  discard block
 block discarded – undo
1411 1411
 			<?php } ?>
1412 1412
 			</style>
1413 1413
 			<?php
1414
-			return str_replace( array(
1414
+			return str_replace(array(
1415 1415
 				'<style>',
1416 1416
 				'</style>'
1417
-			), '', self::minify_css( ob_get_clean() ) );
1417
+			), '', self::minify_css(ob_get_clean()));
1418 1418
 		}
1419 1419
 
1420 1420
 
@@ -1431,16 +1431,16 @@  discard block
 block discarded – undo
1431 1431
 				<?php
1432 1432
 
1433 1433
 					// BS v3 compat
1434
-					if( self::is_bs3_compat() ){
1434
+					if (self::is_bs3_compat()) {
1435 1435
 					    echo self::bs3_compat_css();
1436 1436
 					}
1437 1437
 
1438
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1439
-						echo self::css_primary($primary_color,$compatibility);
1438
+					if (!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL) {
1439
+						echo self::css_primary($primary_color, $compatibility);
1440 1440
 					}
1441 1441
 
1442
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1443
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1442
+					if (!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL) {
1443
+						echo self::css_secondary($settings['color_secondary'], $compatibility);
1444 1444
 					}
1445 1445
 
1446 1446
 					// Set admin bar z-index lower when modal is open.
@@ -1453,10 +1453,10 @@  discard block
 block discarded – undo
1453 1453
 			/*
1454 1454
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1455 1455
 			 */
1456
-			return str_replace( array(
1456
+			return str_replace(array(
1457 1457
 				'<style>',
1458 1458
 				'</style>'
1459
-			), '', self::minify_css( ob_get_clean() ) );
1459
+			), '', self::minify_css(ob_get_clean()));
1460 1460
 		}
1461 1461
 
1462 1462
 		/**
@@ -1464,48 +1464,48 @@  discard block
 block discarded – undo
1464 1464
 		 *
1465 1465
 		 * @return bool
1466 1466
 		 */
1467
-		public static function is_bs3_compat(){
1467
+		public static function is_bs3_compat() {
1468 1468
 			return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1469 1469
 		}
1470 1470
 
1471
-		public static function css_primary($color_code,$compatibility){;
1471
+		public static function css_primary($color_code, $compatibility) {;
1472 1472
 			$color_code = sanitize_hex_color($color_code);
1473
-			if(!$color_code){return '';}
1473
+			if (!$color_code) {return ''; }
1474 1474
 			/**
1475 1475
 			 * c = color, b = background color, o = border-color, f = fill
1476 1476
 			 */
1477 1477
 			$selectors = array(
1478 1478
 				'a' => array('c'),
1479
-				'.btn-primary' => array('b','o'),
1480
-				'.btn-primary.disabled' => array('b','o'),
1481
-				'.btn-primary:disabled' => array('b','o'),
1482
-				'.btn-outline-primary' => array('c','o'),
1483
-				'.btn-outline-primary:hover' => array('b','o'),
1484
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1485
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1486
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1479
+				'.btn-primary' => array('b', 'o'),
1480
+				'.btn-primary.disabled' => array('b', 'o'),
1481
+				'.btn-primary:disabled' => array('b', 'o'),
1482
+				'.btn-outline-primary' => array('c', 'o'),
1483
+				'.btn-outline-primary:hover' => array('b', 'o'),
1484
+				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b', 'o'),
1485
+				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b', 'o'),
1486
+				'.show>.btn-outline-primary.dropdown-toggle' => array('b', 'o'),
1487 1487
 				'.btn-link' => array('c'),
1488 1488
 				'.dropdown-item.active' => array('b'),
1489
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1490
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1489
+				'.custom-control-input:checked~.custom-control-label::before' => array('b', 'o'),
1490
+				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b', 'o'),
1491 1491
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1492 1492
 //				'.custom-range::-moz-range-thumb' => array('b'),
1493 1493
 //				'.custom-range::-ms-thumb' => array('b'),
1494 1494
 				'.nav-pills .nav-link.active' => array('b'),
1495 1495
 				'.nav-pills .show>.nav-link' => array('b'),
1496 1496
 				'.page-link' => array('c'),
1497
-				'.page-item.active .page-link' => array('b','o'),
1497
+				'.page-item.active .page-link' => array('b', 'o'),
1498 1498
 				'.badge-primary' => array('b'),
1499
-				'.alert-primary' => array('b','o'),
1499
+				'.alert-primary' => array('b', 'o'),
1500 1500
 				'.progress-bar' => array('b'),
1501
-				'.list-group-item.active' => array('b','o'),
1502
-				'.bg-primary' => array('b','f'),
1501
+				'.list-group-item.active' => array('b', 'o'),
1502
+				'.bg-primary' => array('b', 'f'),
1503 1503
 				'.btn-link.btn-primary' => array('c'),
1504 1504
 				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1505 1505
 			);
1506 1506
 
1507 1507
 			$important_selectors = array(
1508
-				'.bg-primary' => array('b','f'),
1508
+				'.bg-primary' => array('b', 'f'),
1509 1509
 				'.border-primary' => array('o'),
1510 1510
 				'.text-primary' => array('c'),
1511 1511
 			);
@@ -1522,116 +1522,116 @@  discard block
 block discarded – undo
1522 1522
 			$output = '';
1523 1523
 
1524 1524
 			// build rules into each type
1525
-			foreach($selectors as $selector => $types){
1526
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1527
-				$types = array_combine($types,$types);
1528
-				if(isset($types['c'])){$color[] = $selector;}
1529
-				if(isset($types['b'])){$background[] = $selector;}
1530
-				if(isset($types['o'])){$border[] = $selector;}
1531
-				if(isset($types['f'])){$fill[] = $selector;}
1525
+			foreach ($selectors as $selector => $types) {
1526
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1527
+				$types = array_combine($types, $types);
1528
+				if (isset($types['c'])) {$color[] = $selector; }
1529
+				if (isset($types['b'])) {$background[] = $selector; }
1530
+				if (isset($types['o'])) {$border[] = $selector; }
1531
+				if (isset($types['f'])) {$fill[] = $selector; }
1532 1532
 			}
1533 1533
 
1534 1534
 			// build rules into each type
1535
-			foreach($important_selectors as $selector => $types){
1536
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1537
-				$types = array_combine($types,$types);
1538
-				if(isset($types['c'])){$color_i[] = $selector;}
1539
-				if(isset($types['b'])){$background_i[] = $selector;}
1540
-				if(isset($types['o'])){$border_i[] = $selector;}
1541
-				if(isset($types['f'])){$fill_i[] = $selector;}
1535
+			foreach ($important_selectors as $selector => $types) {
1536
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1537
+				$types = array_combine($types, $types);
1538
+				if (isset($types['c'])) {$color_i[] = $selector; }
1539
+				if (isset($types['b'])) {$background_i[] = $selector; }
1540
+				if (isset($types['o'])) {$border_i[] = $selector; }
1541
+				if (isset($types['f'])) {$fill_i[] = $selector; }
1542 1542
 			}
1543 1543
 
1544 1544
 			// add any color rules
1545
-			if(!empty($color)){
1546
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1545
+			if (!empty($color)) {
1546
+				$output .= implode(",", $color) . "{color: $color_code;} ";
1547 1547
 			}
1548
-			if(!empty($color_i)){
1549
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1548
+			if (!empty($color_i)) {
1549
+				$output .= implode(",", $color_i) . "{color: $color_code !important;} ";
1550 1550
 			}
1551 1551
 
1552 1552
 			// add any background color rules
1553
-			if(!empty($background)){
1554
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1553
+			if (!empty($background)) {
1554
+				$output .= implode(",", $background) . "{background-color: $color_code;} ";
1555 1555
 			}
1556
-			if(!empty($background_i)){
1557
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1556
+			if (!empty($background_i)) {
1557
+				$output .= implode(",", $background_i) . "{background-color: $color_code !important;} ";
1558 1558
 			}
1559 1559
 
1560 1560
 			// add any border color rules
1561
-			if(!empty($border)){
1562
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1561
+			if (!empty($border)) {
1562
+				$output .= implode(",", $border) . "{border-color: $color_code;} ";
1563 1563
 			}
1564
-			if(!empty($border_i)){
1565
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1564
+			if (!empty($border_i)) {
1565
+				$output .= implode(",", $border_i) . "{border-color: $color_code !important;} ";
1566 1566
 			}
1567 1567
 
1568 1568
 			// add any fill color rules
1569
-			if(!empty($fill)){
1570
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1569
+			if (!empty($fill)) {
1570
+				$output .= implode(",", $fill) . "{fill: $color_code;} ";
1571 1571
 			}
1572
-			if(!empty($fill_i)){
1573
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1572
+			if (!empty($fill_i)) {
1573
+				$output .= implode(",", $fill_i) . "{fill: $color_code !important;} ";
1574 1574
 			}
1575 1575
 
1576 1576
 
1577 1577
 			$prefix = $compatibility ? ".bsui " : "";
1578 1578
 
1579 1579
 			// darken
1580
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1581
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1582
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1580
+			$darker_075 = self::css_hex_lighten_darken($color_code, "-0.075");
1581
+			$darker_10 = self::css_hex_lighten_darken($color_code, "-0.10");
1582
+			$darker_125 = self::css_hex_lighten_darken($color_code, "-0.125");
1583 1583
 
1584 1584
 			// lighten
1585
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1585
+			$lighten_25 = self::css_hex_lighten_darken($color_code, "0.25");
1586 1586
 
1587 1587
 			// opacity see https://css-tricks.com/8-digit-hex-codes/
1588
-			$op_25 = $color_code."40"; // 25% opacity
1588
+			$op_25 = $color_code . "40"; // 25% opacity
1589 1589
 
1590 1590
 
1591 1591
 			// button states
1592
-			$output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1593
-			$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;} ";
1594
-			$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.";} ";
1595
-			$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;} ";
1592
+			$output .= $prefix . " .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: " . $darker_075 . ";    border-color: " . $darker_10 . ";} ";
1593
+			$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;} ";
1594
+			$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 . ";} ";
1595
+			$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;} ";
1596 1596
 
1597 1597
 
1598 1598
 			// dropdown's
1599
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1599
+			$output .= $prefix . " .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1600 1600
 
1601 1601
 
1602 1602
 			// input states
1603
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1603
+			$output .= $prefix . " .form-control:focus{border-color: " . $lighten_25 . ";box-shadow: 0 0 0 0.2rem $op_25;} ";
1604 1604
 
1605 1605
 			// page link
1606
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1606
+			$output .= $prefix . " .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1607 1607
 
1608 1608
 			return $output;
1609 1609
 		}
1610 1610
 
1611
-		public static function css_secondary($color_code,$compatibility){;
1611
+		public static function css_secondary($color_code, $compatibility) {;
1612 1612
 			$color_code = sanitize_hex_color($color_code);
1613
-			if(!$color_code){return '';}
1613
+			if (!$color_code) {return ''; }
1614 1614
 			/**
1615 1615
 			 * c = color, b = background color, o = border-color, f = fill
1616 1616
 			 */
1617 1617
 			$selectors = array(
1618
-				'.btn-secondary' => array('b','o'),
1619
-				'.btn-secondary.disabled' => array('b','o'),
1620
-				'.btn-secondary:disabled' => array('b','o'),
1621
-				'.btn-outline-secondary' => array('c','o'),
1622
-				'.btn-outline-secondary:hover' => array('b','o'),
1618
+				'.btn-secondary' => array('b', 'o'),
1619
+				'.btn-secondary.disabled' => array('b', 'o'),
1620
+				'.btn-secondary:disabled' => array('b', 'o'),
1621
+				'.btn-outline-secondary' => array('c', 'o'),
1622
+				'.btn-outline-secondary:hover' => array('b', 'o'),
1623 1623
 				'.btn-outline-secondary.disabled' => array('c'),
1624 1624
 				'.btn-outline-secondary:disabled' => array('c'),
1625
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1626
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1627
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1625
+				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b', 'o'),
1626
+				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b', 'o'),
1627
+				'.btn-outline-secondary.dropdown-toggle' => array('b', 'o'),
1628 1628
 				'.badge-secondary' => array('b'),
1629
-				'.alert-secondary' => array('b','o'),
1629
+				'.alert-secondary' => array('b', 'o'),
1630 1630
 				'.btn-link.btn-secondary' => array('c'),
1631 1631
 			);
1632 1632
 
1633 1633
 			$important_selectors = array(
1634
-				'.bg-secondary' => array('b','f'),
1634
+				'.bg-secondary' => array('b', 'f'),
1635 1635
 				'.border-secondary' => array('o'),
1636 1636
 				'.text-secondary' => array('c'),
1637 1637
 			);
@@ -1648,77 +1648,77 @@  discard block
 block discarded – undo
1648 1648
 			$output = '';
1649 1649
 
1650 1650
 			// build rules into each type
1651
-			foreach($selectors as $selector => $types){
1652
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1653
-				$types = array_combine($types,$types);
1654
-				if(isset($types['c'])){$color[] = $selector;}
1655
-				if(isset($types['b'])){$background[] = $selector;}
1656
-				if(isset($types['o'])){$border[] = $selector;}
1657
-				if(isset($types['f'])){$fill[] = $selector;}
1651
+			foreach ($selectors as $selector => $types) {
1652
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1653
+				$types = array_combine($types, $types);
1654
+				if (isset($types['c'])) {$color[] = $selector; }
1655
+				if (isset($types['b'])) {$background[] = $selector; }
1656
+				if (isset($types['o'])) {$border[] = $selector; }
1657
+				if (isset($types['f'])) {$fill[] = $selector; }
1658 1658
 			}
1659 1659
 
1660 1660
 			// build rules into each type
1661
-			foreach($important_selectors as $selector => $types){
1662
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1663
-				$types = array_combine($types,$types);
1664
-				if(isset($types['c'])){$color_i[] = $selector;}
1665
-				if(isset($types['b'])){$background_i[] = $selector;}
1666
-				if(isset($types['o'])){$border_i[] = $selector;}
1667
-				if(isset($types['f'])){$fill_i[] = $selector;}
1661
+			foreach ($important_selectors as $selector => $types) {
1662
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1663
+				$types = array_combine($types, $types);
1664
+				if (isset($types['c'])) {$color_i[] = $selector; }
1665
+				if (isset($types['b'])) {$background_i[] = $selector; }
1666
+				if (isset($types['o'])) {$border_i[] = $selector; }
1667
+				if (isset($types['f'])) {$fill_i[] = $selector; }
1668 1668
 			}
1669 1669
 
1670 1670
 			// add any color rules
1671
-			if(!empty($color)){
1672
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1671
+			if (!empty($color)) {
1672
+				$output .= implode(",", $color) . "{color: $color_code;} ";
1673 1673
 			}
1674
-			if(!empty($color_i)){
1675
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1674
+			if (!empty($color_i)) {
1675
+				$output .= implode(",", $color_i) . "{color: $color_code !important;} ";
1676 1676
 			}
1677 1677
 
1678 1678
 			// add any background color rules
1679
-			if(!empty($background)){
1680
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1679
+			if (!empty($background)) {
1680
+				$output .= implode(",", $background) . "{background-color: $color_code;} ";
1681 1681
 			}
1682
-			if(!empty($background_i)){
1683
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1682
+			if (!empty($background_i)) {
1683
+				$output .= implode(",", $background_i) . "{background-color: $color_code !important;} ";
1684 1684
 			}
1685 1685
 
1686 1686
 			// add any border color rules
1687
-			if(!empty($border)){
1688
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1687
+			if (!empty($border)) {
1688
+				$output .= implode(",", $border) . "{border-color: $color_code;} ";
1689 1689
 			}
1690
-			if(!empty($border_i)){
1691
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1690
+			if (!empty($border_i)) {
1691
+				$output .= implode(",", $border_i) . "{border-color: $color_code !important;} ";
1692 1692
 			}
1693 1693
 
1694 1694
 			// add any fill color rules
1695
-			if(!empty($fill)){
1696
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1695
+			if (!empty($fill)) {
1696
+				$output .= implode(",", $fill) . "{fill: $color_code;} ";
1697 1697
 			}
1698
-			if(!empty($fill_i)){
1699
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1698
+			if (!empty($fill_i)) {
1699
+				$output .= implode(",", $fill_i) . "{fill: $color_code !important;} ";
1700 1700
 			}
1701 1701
 
1702 1702
 
1703 1703
 			$prefix = $compatibility ? ".bsui " : "";
1704 1704
 
1705 1705
 			// darken
1706
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1707
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1708
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1706
+			$darker_075 = self::css_hex_lighten_darken($color_code, "-0.075");
1707
+			$darker_10 = self::css_hex_lighten_darken($color_code, "-0.10");
1708
+			$darker_125 = self::css_hex_lighten_darken($color_code, "-0.125");
1709 1709
 
1710 1710
 			// lighten
1711
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1711
+			$lighten_25 = self::css_hex_lighten_darken($color_code, "0.25");
1712 1712
 
1713 1713
 			// opacity see https://css-tricks.com/8-digit-hex-codes/
1714
-			$op_25 = $color_code."40"; // 25% opacity
1714
+			$op_25 = $color_code . "40"; // 25% opacity
1715 1715
 
1716 1716
 
1717 1717
 			// button states
1718
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1719
-			$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;} ";
1720
-			$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.";} ";
1721
-			$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;} ";
1718
+			$output .= $prefix . " .btn-secondary:hover{background-color: " . $darker_075 . ";    border-color: " . $darker_10 . ";} ";
1719
+			$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;} ";
1720
+			$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 . ";} ";
1721
+			$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;} ";
1722 1722
 
1723 1723
 
1724 1724
 			return $output;
@@ -1754,8 +1754,8 @@  discard block
 block discarded – undo
1754 1754
 		/**
1755 1755
 		 * Check if we should display examples.
1756 1756
 		 */
1757
-		public function maybe_show_examples(){
1758
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1757
+		public function maybe_show_examples() {
1758
+			if (current_user_can('manage_options') && isset($_REQUEST['preview-aui'])) {
1759 1759
 				echo "<head>";
1760 1760
 				wp_head();
1761 1761
 				echo "</head>";
@@ -1771,7 +1771,7 @@  discard block
 block discarded – undo
1771 1771
 		 *
1772 1772
 		 * @return string
1773 1773
 		 */
1774
-		public function get_examples(){
1774
+		public function get_examples() {
1775 1775
 			$output = '';
1776 1776
 
1777 1777
 
@@ -1877,74 +1877,74 @@  discard block
 block discarded – undo
1877 1877
 		 */
1878 1878
 		public static function calendar_params() {
1879 1879
 			$params = array(
1880
-				'month_long_1' => __( 'January', 'aui' ),
1881
-				'month_long_2' => __( 'February', 'aui' ),
1882
-				'month_long_3' => __( 'March', 'aui' ),
1883
-				'month_long_4' => __( 'April', 'aui' ),
1884
-				'month_long_5' => __( 'May', 'aui' ),
1885
-				'month_long_6' => __( 'June', 'aui' ),
1886
-				'month_long_7' => __( 'July', 'aui' ),
1887
-				'month_long_8' => __( 'August', 'aui' ),
1888
-				'month_long_9' => __( 'September', 'aui' ),
1889
-				'month_long_10' => __( 'October', 'aui' ),
1890
-				'month_long_11' => __( 'November', 'aui' ),
1891
-				'month_long_12' => __( 'December', 'aui' ),
1892
-				'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
1893
-				'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
1894
-				'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
1895
-				'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
1896
-				'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
1897
-				'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
1898
-				'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
1899
-				'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
1900
-				'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
1901
-				'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
1902
-				'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
1903
-				'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
1904
-				'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
1905
-				'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
1906
-				'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
1907
-				'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
1908
-				'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
1909
-				'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
1910
-				'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
1911
-				'day_s2_1' => __( 'Su', 'aui' ),
1912
-				'day_s2_2' => __( 'Mo', 'aui' ),
1913
-				'day_s2_3' => __( 'Tu', 'aui' ),
1914
-				'day_s2_4' => __( 'We', 'aui' ),
1915
-				'day_s2_5' => __( 'Th', 'aui' ),
1916
-				'day_s2_6' => __( 'Fr', 'aui' ),
1917
-				'day_s2_7' => __( 'Sa', 'aui' ),
1918
-				'day_s3_1' => __( 'Sun', 'aui' ),
1919
-				'day_s3_2' => __( 'Mon', 'aui' ),
1920
-				'day_s3_3' => __( 'Tue', 'aui' ),
1921
-				'day_s3_4' => __( 'Wed', 'aui' ),
1922
-				'day_s3_5' => __( 'Thu', 'aui' ),
1923
-				'day_s3_6' => __( 'Fri', 'aui' ),
1924
-				'day_s3_7' => __( 'Sat', 'aui' ),
1925
-				'day_s5_1' => __( 'Sunday', 'aui' ),
1926
-				'day_s5_2' => __( 'Monday', 'aui' ),
1927
-				'day_s5_3' => __( 'Tuesday', 'aui' ),
1928
-				'day_s5_4' => __( 'Wednesday', 'aui' ),
1929
-				'day_s5_5' => __( 'Thursday', 'aui' ),
1930
-				'day_s5_6' => __( 'Friday', 'aui' ),
1931
-				'day_s5_7' => __( 'Saturday', 'aui' ),
1932
-				'am_lower' => __( 'am', 'aui' ),
1933
-				'pm_lower' => __( 'pm', 'aui' ),
1934
-				'am_upper' => __( 'AM', 'aui' ),
1935
-				'pm_upper' => __( 'PM', 'aui' ),
1936
-				'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
1880
+				'month_long_1' => __('January', 'aui'),
1881
+				'month_long_2' => __('February', 'aui'),
1882
+				'month_long_3' => __('March', 'aui'),
1883
+				'month_long_4' => __('April', 'aui'),
1884
+				'month_long_5' => __('May', 'aui'),
1885
+				'month_long_6' => __('June', 'aui'),
1886
+				'month_long_7' => __('July', 'aui'),
1887
+				'month_long_8' => __('August', 'aui'),
1888
+				'month_long_9' => __('September', 'aui'),
1889
+				'month_long_10' => __('October', 'aui'),
1890
+				'month_long_11' => __('November', 'aui'),
1891
+				'month_long_12' => __('December', 'aui'),
1892
+				'month_s_1' => _x('Jan', 'January abbreviation', 'aui'),
1893
+				'month_s_2' => _x('Feb', 'February abbreviation', 'aui'),
1894
+				'month_s_3' => _x('Mar', 'March abbreviation', 'aui'),
1895
+				'month_s_4' => _x('Apr', 'April abbreviation', 'aui'),
1896
+				'month_s_5' => _x('May', 'May abbreviation', 'aui'),
1897
+				'month_s_6' => _x('Jun', 'June abbreviation', 'aui'),
1898
+				'month_s_7' => _x('Jul', 'July abbreviation', 'aui'),
1899
+				'month_s_8' => _x('Aug', 'August abbreviation', 'aui'),
1900
+				'month_s_9' => _x('Sep', 'September abbreviation', 'aui'),
1901
+				'month_s_10' => _x('Oct', 'October abbreviation', 'aui'),
1902
+				'month_s_11' => _x('Nov', 'November abbreviation', 'aui'),
1903
+				'month_s_12' => _x('Dec', 'December abbreviation', 'aui'),
1904
+				'day_s1_1' => _x('S', 'Sunday initial', 'aui'),
1905
+				'day_s1_2' => _x('M', 'Monday initial', 'aui'),
1906
+				'day_s1_3' => _x('T', 'Tuesday initial', 'aui'),
1907
+				'day_s1_4' => _x('W', 'Wednesday initial', 'aui'),
1908
+				'day_s1_5' => _x('T', 'Friday initial', 'aui'),
1909
+				'day_s1_6' => _x('F', 'Thursday initial', 'aui'),
1910
+				'day_s1_7' => _x('S', 'Saturday initial', 'aui'),
1911
+				'day_s2_1' => __('Su', 'aui'),
1912
+				'day_s2_2' => __('Mo', 'aui'),
1913
+				'day_s2_3' => __('Tu', 'aui'),
1914
+				'day_s2_4' => __('We', 'aui'),
1915
+				'day_s2_5' => __('Th', 'aui'),
1916
+				'day_s2_6' => __('Fr', 'aui'),
1917
+				'day_s2_7' => __('Sa', 'aui'),
1918
+				'day_s3_1' => __('Sun', 'aui'),
1919
+				'day_s3_2' => __('Mon', 'aui'),
1920
+				'day_s3_3' => __('Tue', 'aui'),
1921
+				'day_s3_4' => __('Wed', 'aui'),
1922
+				'day_s3_5' => __('Thu', 'aui'),
1923
+				'day_s3_6' => __('Fri', 'aui'),
1924
+				'day_s3_7' => __('Sat', 'aui'),
1925
+				'day_s5_1' => __('Sunday', 'aui'),
1926
+				'day_s5_2' => __('Monday', 'aui'),
1927
+				'day_s5_3' => __('Tuesday', 'aui'),
1928
+				'day_s5_4' => __('Wednesday', 'aui'),
1929
+				'day_s5_5' => __('Thursday', 'aui'),
1930
+				'day_s5_6' => __('Friday', 'aui'),
1931
+				'day_s5_7' => __('Saturday', 'aui'),
1932
+				'am_lower' => __('am', 'aui'),
1933
+				'pm_lower' => __('pm', 'aui'),
1934
+				'am_upper' => __('AM', 'aui'),
1935
+				'pm_upper' => __('PM', 'aui'),
1936
+				'firstDayOfWeek' => (int) get_option('start_of_week'),
1937 1937
 				'time_24hr' => false,
1938
-				'year' => __( 'Year', 'aui' ),
1939
-				'hour' => __( 'Hour', 'aui' ),
1940
-				'minute' => __( 'Minute', 'aui' ),
1941
-				'weekAbbreviation' => __( 'Wk', 'aui' ),
1942
-				'rangeSeparator' => __( ' to ', 'aui' ),
1943
-				'scrollTitle' => __( 'Scroll to increment', 'aui' ),
1944
-				'toggleTitle' => __( 'Click to toggle', 'aui' )
1938
+				'year' => __('Year', 'aui'),
1939
+				'hour' => __('Hour', 'aui'),
1940
+				'minute' => __('Minute', 'aui'),
1941
+				'weekAbbreviation' => __('Wk', 'aui'),
1942
+				'rangeSeparator' => __(' to ', 'aui'),
1943
+				'scrollTitle' => __('Scroll to increment', 'aui'),
1944
+				'toggleTitle' => __('Click to toggle', 'aui')
1945 1945
 			);
1946 1946
 
1947
-			return apply_filters( 'ayecode_ui_calendar_params', $params );
1947
+			return apply_filters('ayecode_ui_calendar_params', $params);
1948 1948
 		}
1949 1949
 
1950 1950
 		/**
@@ -1957,47 +1957,47 @@  discard block
 block discarded – undo
1957 1957
 		public static function flatpickr_locale() {
1958 1958
 			$params = self::calendar_params();
1959 1959
 
1960
-			if ( is_string( $params ) ) {
1961
-				$params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
1960
+			if (is_string($params)) {
1961
+				$params = html_entity_decode($params, ENT_QUOTES, 'UTF-8');
1962 1962
 			} else {
1963
-				foreach ( (array) $params as $key => $value ) {
1964
-					if ( ! is_scalar( $value ) ) {
1963
+				foreach ((array) $params as $key => $value) {
1964
+					if (!is_scalar($value)) {
1965 1965
 						continue;
1966 1966
 					}
1967 1967
 
1968
-					$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
1968
+					$params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
1969 1969
 				}
1970 1970
 			}
1971 1971
 
1972 1972
 			$day_s3 = array();
1973 1973
 			$day_s5 = array();
1974 1974
 
1975
-			for ( $i = 1; $i <= 7; $i ++ ) {
1976
-				$day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
1977
-				$day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
1975
+			for ($i = 1; $i <= 7; $i++) {
1976
+				$day_s3[] = addslashes($params['day_s3_' . $i]);
1977
+				$day_s5[] = addslashes($params['day_s3_' . $i]);
1978 1978
 			}
1979 1979
 
1980 1980
 			$month_s = array();
1981 1981
 			$month_long = array();
1982 1982
 
1983
-			for ( $i = 1; $i <= 12; $i ++ ) {
1984
-				$month_s[] = addslashes( $params[ 'month_s_' . $i ] );
1985
-				$month_long[] = addslashes( $params[ 'month_long_' . $i ] );
1983
+			for ($i = 1; $i <= 12; $i++) {
1984
+				$month_s[] = addslashes($params['month_s_' . $i]);
1985
+				$month_long[] = addslashes($params['month_long_' . $i]);
1986 1986
 			}
1987 1987
 
1988 1988
 ob_start();
1989
-if ( 0 ) { ?><script><?php } ?>
1989
+if (0) { ?><script><?php } ?>
1990 1990
 {
1991 1991
 	weekdays: {
1992
-		shorthand: ['<?php echo implode( "','", $day_s3 ); ?>'],
1993
-		longhand: ['<?php echo implode( "','", $day_s5 ); ?>'],
1992
+		shorthand: ['<?php echo implode("','", $day_s3); ?>'],
1993
+		longhand: ['<?php echo implode("','", $day_s5); ?>'],
1994 1994
 	},
1995 1995
 	months: {
1996
-		shorthand: ['<?php echo implode( "','", $month_s ); ?>'],
1997
-		longhand: ['<?php echo implode( "','", $month_long ); ?>'],
1996
+		shorthand: ['<?php echo implode("','", $month_s); ?>'],
1997
+		longhand: ['<?php echo implode("','", $month_long); ?>'],
1998 1998
 	},
1999 1999
 	daysInMonth: [31,28,31,30,31,30,31,31,30,31,30,31],
2000
-	firstDayOfWeek: <?php echo (int) $params[ 'firstDayOfWeek' ]; ?>,
2000
+	firstDayOfWeek: <?php echo (int) $params['firstDayOfWeek']; ?>,
2001 2001
 	ordinal: function (nth) {
2002 2002
 		var s = nth % 100;
2003 2003
 		if (s > 3 && s < 21)
@@ -2013,21 +2013,21 @@  discard block
 block discarded – undo
2013 2013
 				return "th";
2014 2014
 		}
2015 2015
 	},
2016
-	rangeSeparator: '<?php echo addslashes( $params[ 'rangeSeparator' ] ); ?>',
2017
-	weekAbbreviation: '<?php echo addslashes( $params[ 'weekAbbreviation' ] ); ?>',
2018
-	scrollTitle: '<?php echo addslashes( $params[ 'scrollTitle' ] ); ?>',
2019
-	toggleTitle: '<?php echo addslashes( $params[ 'toggleTitle' ] ); ?>',
2020
-	amPM: ['<?php echo addslashes( $params[ 'am_upper' ] ); ?>','<?php echo addslashes( $params[ 'pm_upper' ] ); ?>'],
2021
-	yearAriaLabel: '<?php echo addslashes( $params[ 'year' ] ); ?>',
2022
-	hourAriaLabel: '<?php echo addslashes( $params[ 'hour' ] ); ?>',
2023
-	minuteAriaLabel: '<?php echo addslashes( $params[ 'minute' ] ); ?>',
2024
-	time_24hr: <?php echo ( $params[ 'time_24hr' ] ? 'true' : 'false' ) ; ?>
2016
+	rangeSeparator: '<?php echo addslashes($params['rangeSeparator']); ?>',
2017
+	weekAbbreviation: '<?php echo addslashes($params['weekAbbreviation']); ?>',
2018
+	scrollTitle: '<?php echo addslashes($params['scrollTitle']); ?>',
2019
+	toggleTitle: '<?php echo addslashes($params['toggleTitle']); ?>',
2020
+	amPM: ['<?php echo addslashes($params['am_upper']); ?>','<?php echo addslashes($params['pm_upper']); ?>'],
2021
+	yearAriaLabel: '<?php echo addslashes($params['year']); ?>',
2022
+	hourAriaLabel: '<?php echo addslashes($params['hour']); ?>',
2023
+	minuteAriaLabel: '<?php echo addslashes($params['minute']); ?>',
2024
+	time_24hr: <?php echo ($params['time_24hr'] ? 'true' : 'false'); ?>
2025 2025
 }
2026
-<?php if ( 0 ) { ?></script><?php } ?>
2026
+<?php if (0) { ?></script><?php } ?>
2027 2027
 <?php
2028 2028
 			$locale = ob_get_clean();
2029 2029
 
2030
-			return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2030
+			return apply_filters('ayecode_ui_flatpickr_locale', trim($locale));
2031 2031
 		}
2032 2032
 
2033 2033
 		/**
@@ -2039,20 +2039,20 @@  discard block
 block discarded – undo
2039 2039
 		 */
2040 2040
 		public static function select2_params() {
2041 2041
 			$params = array(
2042
-				'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2043
-				'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2044
-				'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2045
-				'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2046
-				'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2047
-				'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2048
-				'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2049
-				'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2050
-				'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2051
-				'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2052
-				'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2042
+				'i18n_select_state_text'    => esc_attr__('Select an option&hellip;', 'aui'),
2043
+				'i18n_no_matches'           => _x('No matches found', 'enhanced select', 'aui'),
2044
+				'i18n_ajax_error'           => _x('Loading failed', 'enhanced select', 'aui'),
2045
+				'i18n_input_too_short_1'    => _x('Please enter 1 or more characters', 'enhanced select', 'aui'),
2046
+				'i18n_input_too_short_n'    => _x('Please enter %item% or more characters', 'enhanced select', 'aui'),
2047
+				'i18n_input_too_long_1'     => _x('Please delete 1 character', 'enhanced select', 'aui'),
2048
+				'i18n_input_too_long_n'     => _x('Please delete %item% characters', 'enhanced select', 'aui'),
2049
+				'i18n_selection_too_long_1' => _x('You can only select 1 item', 'enhanced select', 'aui'),
2050
+				'i18n_selection_too_long_n' => _x('You can only select %item% items', 'enhanced select', 'aui'),
2051
+				'i18n_load_more'            => _x('Loading more results&hellip;', 'enhanced select', 'aui'),
2052
+				'i18n_searching'            => _x('Searching&hellip;', 'enhanced select', 'aui')
2053 2053
 			);
2054 2054
 
2055
-			return apply_filters( 'ayecode_ui_select2_params', $params );
2055
+			return apply_filters('ayecode_ui_select2_params', $params);
2056 2056
 		}
2057 2057
 
2058 2058
 		/**
@@ -2065,17 +2065,17 @@  discard block
 block discarded – undo
2065 2065
 		public static function select2_locale() {
2066 2066
 			$params = self::select2_params();
2067 2067
 
2068
-			foreach ( (array) $params as $key => $value ) {
2069
-				if ( ! is_scalar( $value ) ) {
2068
+			foreach ((array) $params as $key => $value) {
2069
+				if (!is_scalar($value)) {
2070 2070
 					continue;
2071 2071
 				}
2072 2072
 
2073
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2073
+				$params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
2074 2074
 			}
2075 2075
 
2076
-			$locale = json_encode( $params );
2076
+			$locale = json_encode($params);
2077 2077
 
2078
-			return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2078
+			return apply_filters('ayecode_ui_select2_locale', trim($locale));
2079 2079
 		}
2080 2080
 
2081 2081
 		/**
@@ -2088,35 +2088,35 @@  discard block
 block discarded – undo
2088 2088
 		public static function timeago_locale() {
2089 2089
 			$params = array(
2090 2090
 				'prefix_ago' => '',
2091
-				'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2092
-				'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2091
+				'suffix_ago' => ' ' . _x('ago', 'time ago', 'aui'),
2092
+				'prefix_after' => _x('after', 'time ago', 'aui') . ' ',
2093 2093
 				'suffix_after' => '',
2094
-				'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2095
-				'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2096
-				'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2097
-				'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2098
-				'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2099
-				'day' => _x( 'a day', 'time ago', 'aui' ),
2100
-				'days' => _x( '%d days', 'time ago', 'aui' ),
2101
-				'month' => _x( 'about a month', 'time ago', 'aui' ),
2102
-				'months' => _x( '%d months', 'time ago', 'aui' ),
2103
-				'year' => _x( 'about a year', 'time ago', 'aui' ),
2104
-				'years' => _x( '%d years', 'time ago', 'aui' ),
2094
+				'seconds' => _x('less than a minute', 'time ago', 'aui'),
2095
+				'minute' => _x('about a minute', 'time ago', 'aui'),
2096
+				'minutes' => _x('%d minutes', 'time ago', 'aui'),
2097
+				'hour' => _x('about an hour', 'time ago', 'aui'),
2098
+				'hours' => _x('about %d hours', 'time ago', 'aui'),
2099
+				'day' => _x('a day', 'time ago', 'aui'),
2100
+				'days' => _x('%d days', 'time ago', 'aui'),
2101
+				'month' => _x('about a month', 'time ago', 'aui'),
2102
+				'months' => _x('%d months', 'time ago', 'aui'),
2103
+				'year' => _x('about a year', 'time ago', 'aui'),
2104
+				'years' => _x('%d years', 'time ago', 'aui'),
2105 2105
 			);
2106 2106
 
2107
-			$params = apply_filters( 'ayecode_ui_timeago_params', $params );
2107
+			$params = apply_filters('ayecode_ui_timeago_params', $params);
2108 2108
 
2109
-			foreach ( (array) $params as $key => $value ) {
2110
-				if ( ! is_scalar( $value ) ) {
2109
+			foreach ((array) $params as $key => $value) {
2110
+				if (!is_scalar($value)) {
2111 2111
 					continue;
2112 2112
 				}
2113 2113
 
2114
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2114
+				$params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8');
2115 2115
 			}
2116 2116
 
2117
-			$locale = json_encode( $params );
2117
+			$locale = json_encode($params);
2118 2118
 
2119
-			return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2119
+			return apply_filters('ayecode_ui_timeago_locale', trim($locale));
2120 2120
 		}
2121 2121
 
2122 2122
 		/**
@@ -2127,7 +2127,7 @@  discard block
 block discarded – undo
2127 2127
 		 * @return mixed
2128 2128
 		 */
2129 2129
 		public static function minify_js($input) {
2130
-			if(trim($input) === "") return $input;
2130
+			if (trim($input) === "") return $input;
2131 2131
 			return preg_replace(
2132 2132
 				array(
2133 2133
 					// Remove comment(s)
@@ -2159,7 +2159,7 @@  discard block
 block discarded – undo
2159 2159
 		 * @return mixed
2160 2160
 		 */
2161 2161
 		public static function minify_css($input) {
2162
-			if(trim($input) === "") return $input;
2162
+			if (trim($input) === "") return $input;
2163 2163
 			return preg_replace(
2164 2164
 				array(
2165 2165
 					// Remove comment(s)
@@ -2679,12 +2679,12 @@  discard block
 block discarded – undo
2679 2679
         });
2680 2680
     }
2681 2681
 }
2682
-<?php do_action( 'aui_conditional_fields_js', $this ); ?>
2682
+<?php do_action('aui_conditional_fields_js', $this); ?>
2683 2683
 </script>
2684 2684
 			<?php
2685 2685
 			$output = ob_get_clean();
2686 2686
 
2687
-			return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2687
+			return str_replace(array('<script>', '</script>'), '', self::minify_js($output));
2688 2688
 		}
2689 2689
 	}
2690 2690
 
Please login to merge, or discard this patch.
Indentation   +1186 added lines, -1186 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,243 +21,243 @@  discard block
 block discarded – undo
21 21
  */
22 22
 if ( ! class_exists( 'AyeCode_UI_Settings' ) ) {
23 23
 
24
-	/**
25
-	 * A Class to be able to change settings for Font Awesome.
26
-	 *
27
-	 * Class AyeCode_UI_Settings
28
-	 * @ver 1.0.0
29
-	 * @todo decide how to implement textdomain
30
-	 */
31
-	class AyeCode_UI_Settings {
32
-
33
-		/**
34
-		 * Class version version.
35
-		 *
36
-		 * @var string
37
-		 */
38
-		public $version = '0.1.62';
39
-
40
-		/**
41
-		 * Class textdomain.
42
-		 *
43
-		 * @var string
44
-		 */
45
-		public $textdomain = 'aui';
46
-
47
-		/**
48
-		 * Latest version of Bootstrap at time of publish published.
49
-		 *
50
-		 * @var string
51
-		 */
52
-		public $latest = "4.5.3";
53
-
54
-		/**
55
-		 * Current version of select2 being used.
56
-		 *
57
-		 * @var string
58
-		 */
59
-		public $select2_version = "4.0.11";
60
-
61
-		/**
62
-		 * The title.
63
-		 *
64
-		 * @var string
65
-		 */
66
-		public $name = 'AyeCode UI';
67
-
68
-		/**
69
-		 * The relative url to the assets.
70
-		 *
71
-		 * @var string
72
-		 */
73
-		public $url = '';
74
-
75
-		/**
76
-		 * Holds the settings values.
77
-		 *
78
-		 * @var array
79
-		 */
80
-		private $settings;
81
-
82
-		/**
83
-		 * AyeCode_UI_Settings instance.
84
-		 *
85
-		 * @access private
86
-		 * @since  1.0.0
87
-		 * @var    AyeCode_UI_Settings There can be only one!
88
-		 */
89
-		private static $instance = null;
90
-
91
-		/**
92
-		 * Main AyeCode_UI_Settings Instance.
93
-		 *
94
-		 * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded.
95
-		 *
96
-		 * @since 1.0.0
97
-		 * @static
98
-		 * @return AyeCode_UI_Settings - Main instance.
99
-		 */
100
-		public static function instance() {
101
-			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
102
-
103
-				self::$instance = new AyeCode_UI_Settings;
104
-
105
-				add_action( 'init', array( self::$instance, 'init' ) ); // set settings
106
-
107
-				if ( is_admin() ) {
108
-					add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
-					add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
110
-
111
-					// Maybe show example page
112
-					add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
113
-				}
24
+    /**
25
+     * A Class to be able to change settings for Font Awesome.
26
+     *
27
+     * Class AyeCode_UI_Settings
28
+     * @ver 1.0.0
29
+     * @todo decide how to implement textdomain
30
+     */
31
+    class AyeCode_UI_Settings {
32
+
33
+        /**
34
+         * Class version version.
35
+         *
36
+         * @var string
37
+         */
38
+        public $version = '0.1.62';
39
+
40
+        /**
41
+         * Class textdomain.
42
+         *
43
+         * @var string
44
+         */
45
+        public $textdomain = 'aui';
46
+
47
+        /**
48
+         * Latest version of Bootstrap at time of publish published.
49
+         *
50
+         * @var string
51
+         */
52
+        public $latest = "4.5.3";
53
+
54
+        /**
55
+         * Current version of select2 being used.
56
+         *
57
+         * @var string
58
+         */
59
+        public $select2_version = "4.0.11";
60
+
61
+        /**
62
+         * The title.
63
+         *
64
+         * @var string
65
+         */
66
+        public $name = 'AyeCode UI';
67
+
68
+        /**
69
+         * The relative url to the assets.
70
+         *
71
+         * @var string
72
+         */
73
+        public $url = '';
74
+
75
+        /**
76
+         * Holds the settings values.
77
+         *
78
+         * @var array
79
+         */
80
+        private $settings;
81
+
82
+        /**
83
+         * AyeCode_UI_Settings instance.
84
+         *
85
+         * @access private
86
+         * @since  1.0.0
87
+         * @var    AyeCode_UI_Settings There can be only one!
88
+         */
89
+        private static $instance = null;
90
+
91
+        /**
92
+         * Main AyeCode_UI_Settings Instance.
93
+         *
94
+         * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded.
95
+         *
96
+         * @since 1.0.0
97
+         * @static
98
+         * @return AyeCode_UI_Settings - Main instance.
99
+         */
100
+        public static function instance() {
101
+            if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
102
+
103
+                self::$instance = new AyeCode_UI_Settings;
104
+
105
+                add_action( 'init', array( self::$instance, 'init' ) ); // set settings
106
+
107
+                if ( is_admin() ) {
108
+                    add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
+                    add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
110
+
111
+                    // Maybe show example page
112
+                    add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
113
+                }
114 114
 
115
-				add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
115
+                add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
116 116
 
117
-				do_action( 'ayecode_ui_settings_loaded' );
118
-			}
117
+                do_action( 'ayecode_ui_settings_loaded' );
118
+            }
119 119
 
120
-			return self::$instance;
121
-		}
120
+            return self::$instance;
121
+        }
122 122
 
123
-		/**
124
-		 * Setup some constants.
125
-		 */
126
-		public function constants(){
127
-			define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
-			define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
-			if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
-			if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
-		}
123
+        /**
124
+         * Setup some constants.
125
+         */
126
+        public function constants(){
127
+            define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
+            define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
+            if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
+            if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
+        }
132 132
 
133
-		/**
134
-		 * Initiate the settings and add the required action hooks.
135
-		 */
136
-		public function init() {
137
-			$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
-				$priority = $this->is_bs3_compat() ? 100 : 1;
156
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
157
-			}
158
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
159
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
160
-			}
161
-
162
-			// Maybe set the HTML font size
163
-			if ( $this->settings['html_font_size'] ) {
164
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
165
-			}
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
+            }
166 152
 
153
+            // maybe load JS
154
+            if ( $this->settings['js'] ) {
155
+                $priority = $this->is_bs3_compat() ? 100 : 1;
156
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
157
+            }
158
+            if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
159
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
160
+            }
167 161
 
168
-		}
162
+            // Maybe set the HTML font size
163
+            if ( $this->settings['html_font_size'] ) {
164
+                add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
165
+            }
169 166
 
170
-		/**
171
-		 * Check if we should load the admin scripts or not.
172
-		 *
173
-		 * @return bool
174
-		 */
175
-		public function load_admin_scripts(){
176
-			$result = true;
177
-
178
-			// check if specifically disabled
179
-			if(!empty($this->settings['disable_admin'])){
180
-				$url_parts = explode("\n",$this->settings['disable_admin']);
181
-				foreach($url_parts as $part){
182
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
183
-						return false; // return early, no point checking further
184
-					}
185
-				}
186
-			}
187 167
 
188
-			return $result;
189
-		}
168
+        }
190 169
 
191
-		/**
192
-		 * Add a html font size to the footer.
193
-		 */
194
-		public function html_font_size(){
195
-			$this->settings = $this->get_settings();
196
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
197
-		}
170
+        /**
171
+         * Check if we should load the admin scripts or not.
172
+         *
173
+         * @return bool
174
+         */
175
+        public function load_admin_scripts(){
176
+            $result = true;
177
+
178
+            // check if specifically disabled
179
+            if(!empty($this->settings['disable_admin'])){
180
+                $url_parts = explode("\n",$this->settings['disable_admin']);
181
+                foreach($url_parts as $part){
182
+                    if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
183
+                        return false; // return early, no point checking further
184
+                    }
185
+                }
186
+            }
198 187
 
199
-		/**
200
-		 * Check if the current admin screen should load scripts.
201
-		 * 
202
-		 * @return bool
203
-		 */
204
-		public function is_aui_screen(){
205
-			$load = false;
206
-			// check if we should load or not
207
-			if ( is_admin() ) {
208
-				// Only enable on set pages
209
-				$aui_screens = array(
210
-					'page',
211
-					'post',
212
-					'settings_page_ayecode-ui-settings',
213
-					'appearance_page_gutenberg-widgets',
214
-					'widgets'
215
-				);
216
-				$screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
217
-
218
-				$screen = get_current_screen();
188
+            return $result;
189
+        }
190
+
191
+        /**
192
+         * Add a html font size to the footer.
193
+         */
194
+        public function html_font_size(){
195
+            $this->settings = $this->get_settings();
196
+            echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
197
+        }
198
+
199
+        /**
200
+         * Check if the current admin screen should load scripts.
201
+         * 
202
+         * @return bool
203
+         */
204
+        public function is_aui_screen(){
205
+            $load = false;
206
+            // check if we should load or not
207
+            if ( is_admin() ) {
208
+                // Only enable on set pages
209
+                $aui_screens = array(
210
+                    'page',
211
+                    'post',
212
+                    'settings_page_ayecode-ui-settings',
213
+                    'appearance_page_gutenberg-widgets',
214
+                    'widgets'
215
+                );
216
+                $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
217
+
218
+                $screen = get_current_screen();
219 219
 
220 220
 //				echo '###'.$screen->id;
221 221
 
222
-				// check if we are on a AUI screen
223
-				if ( $screen && in_array( $screen->id, $screen_ids ) ) {
224
-					$load = true;
225
-				}
222
+                // check if we are on a AUI screen
223
+                if ( $screen && in_array( $screen->id, $screen_ids ) ) {
224
+                    $load = true;
225
+                }
226 226
 
227
-				//load for widget previews in WP 5.8
228
-				if( !empty($_REQUEST['legacy-widget-preview'])){
229
-					$load = true;
230
-				}
231
-			}
227
+                //load for widget previews in WP 5.8
228
+                if( !empty($_REQUEST['legacy-widget-preview'])){
229
+                    $load = true;
230
+                }
231
+            }
232 232
 
233
-			return apply_filters( 'aui_load_on_admin' , $load );
234
-		}
233
+            return apply_filters( 'aui_load_on_admin' , $load );
234
+        }
235 235
 
236
-		/**
237
-		 * Adds the styles.
238
-		 */
239
-		public function enqueue_style() {
236
+        /**
237
+         * Adds the styles.
238
+         */
239
+        public function enqueue_style() {
240 240
 
241
-			if( is_admin() && !$this->is_aui_screen()){
242
-				// don't add wp-admin scripts if not requested to
243
-			}else{
244
-				$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
241
+            if( is_admin() && !$this->is_aui_screen()){
242
+                // don't add wp-admin scripts if not requested to
243
+            }else{
244
+                $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
245 245
 
246
-				$rtl = is_rtl() ? '-rtl' : '';
246
+                $rtl = is_rtl() ? '-rtl' : '';
247 247
 
248
-				if($this->settings[$css_setting]){
249
-					$compatibility = $this->settings[$css_setting]=='core' ? false : true;
250
-					$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
251
-					wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
252
-					wp_enqueue_style( 'ayecode-ui' );
248
+                if($this->settings[$css_setting]){
249
+                    $compatibility = $this->settings[$css_setting]=='core' ? false : true;
250
+                    $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
251
+                    wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
252
+                    wp_enqueue_style( 'ayecode-ui' );
253 253
 
254
-					// flatpickr
255
-					wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
254
+                    // flatpickr
255
+                    wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
256 256
 
257 257
 
258
-					// fix some wp-admin issues
259
-					if(is_admin()){
260
-						$custom_css = "
258
+                    // fix some wp-admin issues
259
+                    if(is_admin()){
260
+                        $custom_css = "
261 261
                 body{
262 262
                     background-color: #f1f1f1;
263 263
                     font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;
@@ -299,35 +299,35 @@  discard block
 block discarded – undo
299 299
 				}
300 300
                 ";
301 301
 
302
-						// @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
303
-						$custom_css .= "
302
+                        // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
303
+                        $custom_css .= "
304 304
 						.edit-post-sidebar input[type=color].components-text-control__input{
305 305
 						    padding: 0;
306 306
 						}
307 307
 					";
308
-						wp_add_inline_style( 'ayecode-ui', $custom_css );
309
-					}
308
+                        wp_add_inline_style( 'ayecode-ui', $custom_css );
309
+                    }
310 310
 
311
-					// custom changes
312
-					wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
311
+                    // custom changes
312
+                    wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
313 313
 
314
-				}
315
-			}
314
+                }
315
+            }
316 316
 
317 317
 
318
-		}
318
+        }
319 319
 
320
-		/**
321
-		 * Get inline script used if bootstrap enqueued
322
-		 *
323
-		 * If this remains small then its best to use this than to add another JS file.
324
-		 */
325
-		public function inline_script() {
326
-			// Flatpickr calendar locale
327
-			$flatpickr_locale = self::flatpickr_locale();
328
-
329
-			ob_start();
330
-			?>
320
+        /**
321
+         * Get inline script used if bootstrap enqueued
322
+         *
323
+         * If this remains small then its best to use this than to add another JS file.
324
+         */
325
+        public function inline_script() {
326
+            // Flatpickr calendar locale
327
+            $flatpickr_locale = self::flatpickr_locale();
328
+
329
+            ob_start();
330
+            ?>
331 331
 			<script>
332 332
 				/**
333 333
 				 * An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
@@ -1016,29 +1016,29 @@  discard block
 block discarded – undo
1016 1016
 				});
1017 1017
 			</script>
1018 1018
 			<?php
1019
-			$output = ob_get_clean();
1019
+            $output = ob_get_clean();
1020 1020
 
1021 1021
 
1022 1022
 
1023
-			/*
1023
+            /*
1024 1024
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1025 1025
 			 */
1026
-			return str_replace( array(
1027
-				'<script>',
1028
-				'</script>'
1029
-			), '', self::minify_js($output) );
1030
-		}
1026
+            return str_replace( array(
1027
+                '<script>',
1028
+                '</script>'
1029
+            ), '', self::minify_js($output) );
1030
+        }
1031 1031
 
1032 1032
 
1033
-		/**
1034
-		 * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1035
-		 *
1036
-		 * @TODO we may need this when other conflicts arrise.
1037
-		 * @return mixed
1038
-		 */
1039
-		public static function bs3_compat_js() {
1040
-			ob_start();
1041
-			?>
1033
+        /**
1034
+         * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1035
+         *
1036
+         * @TODO we may need this when other conflicts arrise.
1037
+         * @return mixed
1038
+         */
1039
+        public static function bs3_compat_js() {
1040
+            ob_start();
1041
+            ?>
1042 1042
 			<script>
1043 1043
 				<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?>
1044 1044
 				/* With Avada builder */
@@ -1046,20 +1046,20 @@  discard block
 block discarded – undo
1046 1046
 				<?php } ?>
1047 1047
 			</script>
1048 1048
 			<?php
1049
-			return str_replace( array(
1050
-				'<script>',
1051
-				'</script>'
1052
-			), '', ob_get_clean());
1053
-		}
1049
+            return str_replace( array(
1050
+                '<script>',
1051
+                '</script>'
1052
+            ), '', ob_get_clean());
1053
+        }
1054 1054
 
1055
-		/**
1056
-		 * Get inline script used if bootstrap file browser enqueued.
1057
-		 *
1058
-		 * If this remains small then its best to use this than to add another JS file.
1059
-		 */
1060
-		public function inline_script_file_browser(){
1061
-			ob_start();
1062
-			?>
1055
+        /**
1056
+         * Get inline script used if bootstrap file browser enqueued.
1057
+         *
1058
+         * If this remains small then its best to use this than to add another JS file.
1059
+         */
1060
+        public function inline_script_file_browser(){
1061
+            ob_start();
1062
+            ?>
1063 1063
 			<script>
1064 1064
 				// run on doc ready
1065 1065
 				jQuery(document).ready(function () {
@@ -1067,192 +1067,192 @@  discard block
 block discarded – undo
1067 1067
 				});
1068 1068
 			</script>
1069 1069
 			<?php
1070
-			$output = ob_get_clean();
1070
+            $output = ob_get_clean();
1071 1071
 
1072
-			/*
1072
+            /*
1073 1073
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1074 1074
 			 */
1075
-			return str_replace( array(
1076
-				'<script>',
1077
-				'</script>'
1078
-			), '', $output );
1079
-		}
1075
+            return str_replace( array(
1076
+                '<script>',
1077
+                '</script>'
1078
+            ), '', $output );
1079
+        }
1080 1080
 
1081
-		/**
1082
-		 * Adds the Font Awesome JS.
1083
-		 */
1084
-		public function enqueue_scripts() {
1085
-
1086
-			if( is_admin() && !$this->is_aui_screen()){
1087
-				// don't add wp-admin scripts if not requested to
1088
-			}else {
1089
-
1090
-				$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1091
-
1092
-				// select2
1093
-				wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1094
-
1095
-				// flatpickr
1096
-				wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest );
1097
-
1098
-				// Bootstrap file browser
1099
-				wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1100
-				wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1101
-
1102
-				$load_inline = false;
1103
-
1104
-				if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1105
-					// Bootstrap bundle
1106
-					$url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1107
-					wp_register_script( 'bootstrap-js-bundle', $url, array(
1108
-						'select2',
1109
-						'jquery'
1110
-					), $this->latest, $this->is_bs3_compat() );
1111
-					// if in admin then add to footer for compatibility.
1112
-					is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1113
-					$script = $this->inline_script();
1114
-					wp_add_inline_script( 'bootstrap-js-bundle', $script );
1115
-				} elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1116
-					$url = $this->url . 'assets/js/popper.min.js';
1117
-					wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->latest );
1118
-					wp_enqueue_script( 'bootstrap-js-popper' );
1119
-					$load_inline = true;
1120
-				} else {
1121
-					$load_inline = true;
1122
-				}
1081
+        /**
1082
+         * Adds the Font Awesome JS.
1083
+         */
1084
+        public function enqueue_scripts() {
1085
+
1086
+            if( is_admin() && !$this->is_aui_screen()){
1087
+                // don't add wp-admin scripts if not requested to
1088
+            }else {
1089
+
1090
+                $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1091
+
1092
+                // select2
1093
+                wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1094
+
1095
+                // flatpickr
1096
+                wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest );
1097
+
1098
+                // Bootstrap file browser
1099
+                wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1100
+                wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1101
+
1102
+                $load_inline = false;
1103
+
1104
+                if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1105
+                    // Bootstrap bundle
1106
+                    $url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1107
+                    wp_register_script( 'bootstrap-js-bundle', $url, array(
1108
+                        'select2',
1109
+                        'jquery'
1110
+                    ), $this->latest, $this->is_bs3_compat() );
1111
+                    // if in admin then add to footer for compatibility.
1112
+                    is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1113
+                    $script = $this->inline_script();
1114
+                    wp_add_inline_script( 'bootstrap-js-bundle', $script );
1115
+                } elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1116
+                    $url = $this->url . 'assets/js/popper.min.js';
1117
+                    wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->latest );
1118
+                    wp_enqueue_script( 'bootstrap-js-popper' );
1119
+                    $load_inline = true;
1120
+                } else {
1121
+                    $load_inline = true;
1122
+                }
1123 1123
 
1124
-				// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1125
-				if ( $load_inline ) {
1126
-					wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1127
-					wp_enqueue_script( 'bootstrap-dummy' );
1128
-					$script = $this->inline_script();
1129
-					wp_add_inline_script( 'bootstrap-dummy', $script );
1130
-				}
1131
-			}
1124
+                // Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1125
+                if ( $load_inline ) {
1126
+                    wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1127
+                    wp_enqueue_script( 'bootstrap-dummy' );
1128
+                    $script = $this->inline_script();
1129
+                    wp_add_inline_script( 'bootstrap-dummy', $script );
1130
+                }
1131
+            }
1132 1132
 
1133
-		}
1133
+        }
1134 1134
 
1135
-		/**
1136
-		 * Enqueue flatpickr if called.
1137
-		 */
1138
-		public function enqueue_flatpickr(){
1139
-			wp_enqueue_style( 'flatpickr' );
1140
-			wp_enqueue_script( 'flatpickr' );
1141
-		}
1135
+        /**
1136
+         * Enqueue flatpickr if called.
1137
+         */
1138
+        public function enqueue_flatpickr(){
1139
+            wp_enqueue_style( 'flatpickr' );
1140
+            wp_enqueue_script( 'flatpickr' );
1141
+        }
1142 1142
 
1143
-		/**
1144
-		 * Get the url path to the current folder.
1145
-		 *
1146
-		 * @return string
1147
-		 */
1148
-		public function get_url() {
1143
+        /**
1144
+         * Get the url path to the current folder.
1145
+         *
1146
+         * @return string
1147
+         */
1148
+        public function get_url() {
1149 1149
 
1150
-			$url = '';
1151
-			// check if we are inside a plugin
1152
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1150
+            $url = '';
1151
+            // check if we are inside a plugin
1152
+            $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1153 1153
 
1154
-			// add check in-case user has changed wp-content dir name.
1155
-			$wp_content_folder_name = basename(WP_CONTENT_DIR);
1156
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1157
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
1154
+            // add check in-case user has changed wp-content dir name.
1155
+            $wp_content_folder_name = basename(WP_CONTENT_DIR);
1156
+            $dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1157
+            $url_parts = explode("/$wp_content_folder_name/",plugins_url());
1158 1158
 
1159
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1160
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1161
-			}
1159
+            if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1160
+                $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1161
+            }
1162 1162
 
1163
-			return $url;
1164
-		}
1163
+            return $url;
1164
+        }
1165 1165
 
1166
-		/**
1167
-		 * Register the database settings with WordPress.
1168
-		 */
1169
-		public function register_settings() {
1170
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1171
-		}
1166
+        /**
1167
+         * Register the database settings with WordPress.
1168
+         */
1169
+        public function register_settings() {
1170
+            register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1171
+        }
1172 1172
 
1173
-		/**
1174
-		 * Add the WordPress settings menu item.
1175
-		 * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1176
-		 */
1177
-		public function menu_item() {
1178
-			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1179
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1180
-				$this,
1181
-				'settings_page'
1182
-			) );
1183
-		}
1173
+        /**
1174
+         * Add the WordPress settings menu item.
1175
+         * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1176
+         */
1177
+        public function menu_item() {
1178
+            $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1179
+            call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1180
+                $this,
1181
+                'settings_page'
1182
+            ) );
1183
+        }
1184 1184
 
1185
-		/**
1186
-		 * Get a list of themes and their default JS settings.
1187
-		 *
1188
-		 * @return array
1189
-		 */
1190
-		public function theme_js_settings(){
1191
-			return array(
1192
-				'ayetheme' => 'popper',
1193
-				'listimia' => 'required',
1194
-				'listimia_backend' => 'core-popper',
1195
-				//'avada'    => 'required', // removed as we now add compatibility
1196
-			);
1197
-		}
1185
+        /**
1186
+         * Get a list of themes and their default JS settings.
1187
+         *
1188
+         * @return array
1189
+         */
1190
+        public function theme_js_settings(){
1191
+            return array(
1192
+                'ayetheme' => 'popper',
1193
+                'listimia' => 'required',
1194
+                'listimia_backend' => 'core-popper',
1195
+                //'avada'    => 'required', // removed as we now add compatibility
1196
+            );
1197
+        }
1198 1198
 
1199
-		/**
1200
-		 * Get the current Font Awesome output settings.
1201
-		 *
1202
-		 * @return array The array of settings.
1203
-		 */
1204
-		public function get_settings() {
1205
-
1206
-			$db_settings = get_option( 'ayecode-ui-settings' );
1207
-			$js_default = 'core-popper';
1208
-			$js_default_backend = $js_default;
1209
-
1210
-			// maybe set defaults (if no settings set)
1211
-			if(empty($db_settings)){
1212
-				$active_theme = strtolower( get_template() ); // active parent theme.
1213
-				$theme_js_settings = self::theme_js_settings();
1214
-				if(isset($theme_js_settings[$active_theme])){
1215
-					$js_default = $theme_js_settings[$active_theme];
1216
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1217
-				}
1218
-			}
1219
-
1220
-			$defaults = array(
1221
-				'css'       => 'compatibility', // core, compatibility
1222
-				'js'        => $js_default, // js to load, core-popper, popper
1223
-				'html_font_size'        => '16', // js to load, core-popper, popper
1224
-				'css_backend'       => 'compatibility', // core, compatibility
1225
-				'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1226
-				'disable_admin'     =>  '', // URL snippets to disable loading on admin
1227
-			);
1228
-
1229
-			$settings = wp_parse_args( $db_settings, $defaults );
1230
-
1231
-			/**
1232
-			 * Filter the Bootstrap settings.
1233
-			 *
1234
-			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1235
-			 */
1236
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1237
-		}
1199
+        /**
1200
+         * Get the current Font Awesome output settings.
1201
+         *
1202
+         * @return array The array of settings.
1203
+         */
1204
+        public function get_settings() {
1205
+
1206
+            $db_settings = get_option( 'ayecode-ui-settings' );
1207
+            $js_default = 'core-popper';
1208
+            $js_default_backend = $js_default;
1209
+
1210
+            // maybe set defaults (if no settings set)
1211
+            if(empty($db_settings)){
1212
+                $active_theme = strtolower( get_template() ); // active parent theme.
1213
+                $theme_js_settings = self::theme_js_settings();
1214
+                if(isset($theme_js_settings[$active_theme])){
1215
+                    $js_default = $theme_js_settings[$active_theme];
1216
+                    $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1217
+                }
1218
+            }
1219
+
1220
+            $defaults = array(
1221
+                'css'       => 'compatibility', // core, compatibility
1222
+                'js'        => $js_default, // js to load, core-popper, popper
1223
+                'html_font_size'        => '16', // js to load, core-popper, popper
1224
+                'css_backend'       => 'compatibility', // core, compatibility
1225
+                'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1226
+                'disable_admin'     =>  '', // URL snippets to disable loading on admin
1227
+            );
1228
+
1229
+            $settings = wp_parse_args( $db_settings, $defaults );
1230
+
1231
+            /**
1232
+             * Filter the Bootstrap settings.
1233
+             *
1234
+             * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1235
+             */
1236
+            return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1237
+        }
1238 1238
 
1239 1239
 
1240
-		/**
1241
-		 * The settings page html output.
1242
-		 */
1243
-		public function settings_page() {
1244
-			if ( ! current_user_can( 'manage_options' ) ) {
1245
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1246
-			}
1247
-			?>
1240
+        /**
1241
+         * The settings page html output.
1242
+         */
1243
+        public function settings_page() {
1244
+            if ( ! current_user_can( 'manage_options' ) ) {
1245
+                wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1246
+            }
1247
+            ?>
1248 1248
 			<div class="wrap">
1249 1249
 				<h1><?php echo $this->name; ?></h1>
1250 1250
 				<p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p>
1251 1251
 				<form method="post" action="options.php">
1252 1252
 					<?php
1253
-					settings_fields( 'ayecode-ui-settings' );
1254
-					do_settings_sections( 'ayecode-ui-settings' );
1255
-					?>
1253
+                    settings_fields( 'ayecode-ui-settings' );
1254
+                    do_settings_sections( 'ayecode-ui-settings' );
1255
+                    ?>
1256 1256
 
1257 1257
 					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
1258 1258
 					<table class="form-table wpbs-table-settings">
@@ -1332,60 +1332,60 @@  discard block
 block discarded – undo
1332 1332
 					</table>
1333 1333
 
1334 1334
 					<?php
1335
-					submit_button();
1336
-					?>
1335
+                    submit_button();
1336
+                    ?>
1337 1337
 				</form>
1338 1338
 
1339 1339
 				<div id="wpbs-version"><?php echo $this->version; ?></div>
1340 1340
 			</div>
1341 1341
 
1342 1342
 			<?php
1343
-		}
1343
+        }
1344 1344
 
1345
-		public function customizer_settings($wp_customize){
1346
-			$wp_customize->add_section('aui_settings', array(
1347
-				'title'    => __('AyeCode UI','aui'),
1348
-				'priority' => 120,
1349
-			));
1350
-
1351
-			//  =============================
1352
-			//  = Color Picker              =
1353
-			//  =============================
1354
-			$wp_customize->add_setting('aui_options[color_primary]', array(
1355
-				'default'           => AUI_PRIMARY_COLOR,
1356
-				'sanitize_callback' => 'sanitize_hex_color',
1357
-				'capability'        => 'edit_theme_options',
1358
-				'type'              => 'option',
1359
-				'transport'         => 'refresh',
1360
-			));
1361
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1362
-				'label'    => __('Primary Color','aui'),
1363
-				'section'  => 'aui_settings',
1364
-				'settings' => 'aui_options[color_primary]',
1365
-			)));
1366
-
1367
-			$wp_customize->add_setting('aui_options[color_secondary]', array(
1368
-				'default'           => '#6c757d',
1369
-				'sanitize_callback' => 'sanitize_hex_color',
1370
-				'capability'        => 'edit_theme_options',
1371
-				'type'              => 'option',
1372
-				'transport'         => 'refresh',
1373
-			));
1374
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1375
-				'label'    => __('Secondary Color','aui'),
1376
-				'section'  => 'aui_settings',
1377
-				'settings' => 'aui_options[color_secondary]',
1378
-			)));
1379
-		}
1345
+        public function customizer_settings($wp_customize){
1346
+            $wp_customize->add_section('aui_settings', array(
1347
+                'title'    => __('AyeCode UI','aui'),
1348
+                'priority' => 120,
1349
+            ));
1350
+
1351
+            //  =============================
1352
+            //  = Color Picker              =
1353
+            //  =============================
1354
+            $wp_customize->add_setting('aui_options[color_primary]', array(
1355
+                'default'           => AUI_PRIMARY_COLOR,
1356
+                'sanitize_callback' => 'sanitize_hex_color',
1357
+                'capability'        => 'edit_theme_options',
1358
+                'type'              => 'option',
1359
+                'transport'         => 'refresh',
1360
+            ));
1361
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1362
+                'label'    => __('Primary Color','aui'),
1363
+                'section'  => 'aui_settings',
1364
+                'settings' => 'aui_options[color_primary]',
1365
+            )));
1366
+
1367
+            $wp_customize->add_setting('aui_options[color_secondary]', array(
1368
+                'default'           => '#6c757d',
1369
+                'sanitize_callback' => 'sanitize_hex_color',
1370
+                'capability'        => 'edit_theme_options',
1371
+                'type'              => 'option',
1372
+                'transport'         => 'refresh',
1373
+            ));
1374
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1375
+                'label'    => __('Secondary Color','aui'),
1376
+                'section'  => 'aui_settings',
1377
+                'settings' => 'aui_options[color_secondary]',
1378
+            )));
1379
+        }
1380 1380
 
1381
-		/**
1382
-		 * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1383
-		 *
1384
-		 * @return mixed
1385
-		 */
1386
-		public static function bs3_compat_css() {
1387
-			ob_start();
1388
-			?>
1381
+        /**
1382
+         * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1383
+         *
1384
+         * @return mixed
1385
+         */
1386
+        public static function bs3_compat_css() {
1387
+            ob_start();
1388
+            ?>
1389 1389
 			<style>
1390 1390
 			/* Bootstrap 3 compatibility */
1391 1391
 			body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;}
@@ -1411,579 +1411,579 @@  discard block
 block discarded – undo
1411 1411
 			<?php } ?>
1412 1412
 			</style>
1413 1413
 			<?php
1414
-			return str_replace( array(
1415
-				'<style>',
1416
-				'</style>'
1417
-			), '', self::minify_css( ob_get_clean() ) );
1418
-		}
1414
+            return str_replace( array(
1415
+                '<style>',
1416
+                '</style>'
1417
+            ), '', self::minify_css( ob_get_clean() ) );
1418
+        }
1419 1419
 
1420 1420
 
1421
-		public static function custom_css($compatibility = true) {
1422
-			$settings = get_option('aui_options');
1421
+        public static function custom_css($compatibility = true) {
1422
+            $settings = get_option('aui_options');
1423 1423
 
1424
-			ob_start();
1424
+            ob_start();
1425 1425
 
1426
-			$primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1427
-			$secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1428
-				//AUI_PRIMARY_COLOR_ORIGINAL
1429
-			?>
1426
+            $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1427
+            $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1428
+                //AUI_PRIMARY_COLOR_ORIGINAL
1429
+            ?>
1430 1430
 			<style>
1431 1431
 				<?php
1432 1432
 
1433
-					// BS v3 compat
1434
-					if( self::is_bs3_compat() ){
1435
-					    echo self::bs3_compat_css();
1436
-					}
1433
+                    // BS v3 compat
1434
+                    if( self::is_bs3_compat() ){
1435
+                        echo self::bs3_compat_css();
1436
+                    }
1437 1437
 
1438
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1439
-						echo self::css_primary($primary_color,$compatibility);
1440
-					}
1438
+                    if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1439
+                        echo self::css_primary($primary_color,$compatibility);
1440
+                    }
1441 1441
 
1442
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1443
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1444
-					}
1442
+                    if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1443
+                        echo self::css_secondary($settings['color_secondary'],$compatibility);
1444
+                    }
1445 1445
 
1446
-					// Set admin bar z-index lower when modal is open.
1447
-					echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1446
+                    // Set admin bar z-index lower when modal is open.
1447
+                    echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1448 1448
                 ?>
1449 1449
 			</style>
1450 1450
 			<?php
1451 1451
 
1452 1452
 
1453
-			/*
1453
+            /*
1454 1454
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1455 1455
 			 */
1456
-			return str_replace( array(
1457
-				'<style>',
1458
-				'</style>'
1459
-			), '', self::minify_css( ob_get_clean() ) );
1460
-		}
1456
+            return str_replace( array(
1457
+                '<style>',
1458
+                '</style>'
1459
+            ), '', self::minify_css( ob_get_clean() ) );
1460
+        }
1461 1461
 
1462
-		/**
1463
-		 * Check if we should add booststrap 3 compatibility changes.
1464
-		 *
1465
-		 * @return bool
1466
-		 */
1467
-		public static function is_bs3_compat(){
1468
-			return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1469
-		}
1462
+        /**
1463
+         * Check if we should add booststrap 3 compatibility changes.
1464
+         *
1465
+         * @return bool
1466
+         */
1467
+        public static function is_bs3_compat(){
1468
+            return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1469
+        }
1470 1470
 
1471
-		public static function css_primary($color_code,$compatibility){;
1472
-			$color_code = sanitize_hex_color($color_code);
1473
-			if(!$color_code){return '';}
1474
-			/**
1475
-			 * c = color, b = background color, o = border-color, f = fill
1476
-			 */
1477
-			$selectors = array(
1478
-				'a' => array('c'),
1479
-				'.btn-primary' => array('b','o'),
1480
-				'.btn-primary.disabled' => array('b','o'),
1481
-				'.btn-primary:disabled' => array('b','o'),
1482
-				'.btn-outline-primary' => array('c','o'),
1483
-				'.btn-outline-primary:hover' => array('b','o'),
1484
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1485
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1486
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1487
-				'.btn-link' => array('c'),
1488
-				'.dropdown-item.active' => array('b'),
1489
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1490
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1471
+        public static function css_primary($color_code,$compatibility){;
1472
+            $color_code = sanitize_hex_color($color_code);
1473
+            if(!$color_code){return '';}
1474
+            /**
1475
+             * c = color, b = background color, o = border-color, f = fill
1476
+             */
1477
+            $selectors = array(
1478
+                'a' => array('c'),
1479
+                '.btn-primary' => array('b','o'),
1480
+                '.btn-primary.disabled' => array('b','o'),
1481
+                '.btn-primary:disabled' => array('b','o'),
1482
+                '.btn-outline-primary' => array('c','o'),
1483
+                '.btn-outline-primary:hover' => array('b','o'),
1484
+                '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1485
+                '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1486
+                '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1487
+                '.btn-link' => array('c'),
1488
+                '.dropdown-item.active' => array('b'),
1489
+                '.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1490
+                '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1491 1491
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1492 1492
 //				'.custom-range::-moz-range-thumb' => array('b'),
1493 1493
 //				'.custom-range::-ms-thumb' => array('b'),
1494
-				'.nav-pills .nav-link.active' => array('b'),
1495
-				'.nav-pills .show>.nav-link' => array('b'),
1496
-				'.page-link' => array('c'),
1497
-				'.page-item.active .page-link' => array('b','o'),
1498
-				'.badge-primary' => array('b'),
1499
-				'.alert-primary' => array('b','o'),
1500
-				'.progress-bar' => array('b'),
1501
-				'.list-group-item.active' => array('b','o'),
1502
-				'.bg-primary' => array('b','f'),
1503
-				'.btn-link.btn-primary' => array('c'),
1504
-				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1505
-			);
1506
-
1507
-			$important_selectors = array(
1508
-				'.bg-primary' => array('b','f'),
1509
-				'.border-primary' => array('o'),
1510
-				'.text-primary' => array('c'),
1511
-			);
1512
-
1513
-			$color = array();
1514
-			$color_i = array();
1515
-			$background = array();
1516
-			$background_i = array();
1517
-			$border = array();
1518
-			$border_i = array();
1519
-			$fill = array();
1520
-			$fill_i = array();
1521
-
1522
-			$output = '';
1523
-
1524
-			// build rules into each type
1525
-			foreach($selectors as $selector => $types){
1526
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1527
-				$types = array_combine($types,$types);
1528
-				if(isset($types['c'])){$color[] = $selector;}
1529
-				if(isset($types['b'])){$background[] = $selector;}
1530
-				if(isset($types['o'])){$border[] = $selector;}
1531
-				if(isset($types['f'])){$fill[] = $selector;}
1532
-			}
1533
-
1534
-			// build rules into each type
1535
-			foreach($important_selectors as $selector => $types){
1536
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1537
-				$types = array_combine($types,$types);
1538
-				if(isset($types['c'])){$color_i[] = $selector;}
1539
-				if(isset($types['b'])){$background_i[] = $selector;}
1540
-				if(isset($types['o'])){$border_i[] = $selector;}
1541
-				if(isset($types['f'])){$fill_i[] = $selector;}
1542
-			}
1543
-
1544
-			// add any color rules
1545
-			if(!empty($color)){
1546
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1547
-			}
1548
-			if(!empty($color_i)){
1549
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1550
-			}
1551
-
1552
-			// add any background color rules
1553
-			if(!empty($background)){
1554
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1555
-			}
1556
-			if(!empty($background_i)){
1557
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1558
-			}
1559
-
1560
-			// add any border color rules
1561
-			if(!empty($border)){
1562
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1563
-			}
1564
-			if(!empty($border_i)){
1565
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1566
-			}
1567
-
1568
-			// add any fill color rules
1569
-			if(!empty($fill)){
1570
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1571
-			}
1572
-			if(!empty($fill_i)){
1573
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1574
-			}
1575
-
1576
-
1577
-			$prefix = $compatibility ? ".bsui " : "";
1578
-
1579
-			// darken
1580
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1581
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1582
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1583
-
1584
-			// lighten
1585
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1586
-
1587
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1588
-			$op_25 = $color_code."40"; // 25% opacity
1589
-
1590
-
1591
-			// button states
1592
-			$output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1593
-			$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;} ";
1594
-			$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.";} ";
1595
-			$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;} ";
1596
-
1597
-
1598
-			// dropdown's
1599
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1600
-
1601
-
1602
-			// input states
1603
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1604
-
1605
-			// page link
1606
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1607
-
1608
-			return $output;
1609
-		}
1494
+                '.nav-pills .nav-link.active' => array('b'),
1495
+                '.nav-pills .show>.nav-link' => array('b'),
1496
+                '.page-link' => array('c'),
1497
+                '.page-item.active .page-link' => array('b','o'),
1498
+                '.badge-primary' => array('b'),
1499
+                '.alert-primary' => array('b','o'),
1500
+                '.progress-bar' => array('b'),
1501
+                '.list-group-item.active' => array('b','o'),
1502
+                '.bg-primary' => array('b','f'),
1503
+                '.btn-link.btn-primary' => array('c'),
1504
+                '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1505
+            );
1506
+
1507
+            $important_selectors = array(
1508
+                '.bg-primary' => array('b','f'),
1509
+                '.border-primary' => array('o'),
1510
+                '.text-primary' => array('c'),
1511
+            );
1512
+
1513
+            $color = array();
1514
+            $color_i = array();
1515
+            $background = array();
1516
+            $background_i = array();
1517
+            $border = array();
1518
+            $border_i = array();
1519
+            $fill = array();
1520
+            $fill_i = array();
1521
+
1522
+            $output = '';
1523
+
1524
+            // build rules into each type
1525
+            foreach($selectors as $selector => $types){
1526
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1527
+                $types = array_combine($types,$types);
1528
+                if(isset($types['c'])){$color[] = $selector;}
1529
+                if(isset($types['b'])){$background[] = $selector;}
1530
+                if(isset($types['o'])){$border[] = $selector;}
1531
+                if(isset($types['f'])){$fill[] = $selector;}
1532
+            }
1610 1533
 
1611
-		public static function css_secondary($color_code,$compatibility){;
1612
-			$color_code = sanitize_hex_color($color_code);
1613
-			if(!$color_code){return '';}
1614
-			/**
1615
-			 * c = color, b = background color, o = border-color, f = fill
1616
-			 */
1617
-			$selectors = array(
1618
-				'.btn-secondary' => array('b','o'),
1619
-				'.btn-secondary.disabled' => array('b','o'),
1620
-				'.btn-secondary:disabled' => array('b','o'),
1621
-				'.btn-outline-secondary' => array('c','o'),
1622
-				'.btn-outline-secondary:hover' => array('b','o'),
1623
-				'.btn-outline-secondary.disabled' => array('c'),
1624
-				'.btn-outline-secondary:disabled' => array('c'),
1625
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1626
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1627
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1628
-				'.badge-secondary' => array('b'),
1629
-				'.alert-secondary' => array('b','o'),
1630
-				'.btn-link.btn-secondary' => array('c'),
1631
-			);
1632
-
1633
-			$important_selectors = array(
1634
-				'.bg-secondary' => array('b','f'),
1635
-				'.border-secondary' => array('o'),
1636
-				'.text-secondary' => array('c'),
1637
-			);
1638
-
1639
-			$color = array();
1640
-			$color_i = array();
1641
-			$background = array();
1642
-			$background_i = array();
1643
-			$border = array();
1644
-			$border_i = array();
1645
-			$fill = array();
1646
-			$fill_i = array();
1647
-
1648
-			$output = '';
1649
-
1650
-			// build rules into each type
1651
-			foreach($selectors as $selector => $types){
1652
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1653
-				$types = array_combine($types,$types);
1654
-				if(isset($types['c'])){$color[] = $selector;}
1655
-				if(isset($types['b'])){$background[] = $selector;}
1656
-				if(isset($types['o'])){$border[] = $selector;}
1657
-				if(isset($types['f'])){$fill[] = $selector;}
1658
-			}
1659
-
1660
-			// build rules into each type
1661
-			foreach($important_selectors as $selector => $types){
1662
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1663
-				$types = array_combine($types,$types);
1664
-				if(isset($types['c'])){$color_i[] = $selector;}
1665
-				if(isset($types['b'])){$background_i[] = $selector;}
1666
-				if(isset($types['o'])){$border_i[] = $selector;}
1667
-				if(isset($types['f'])){$fill_i[] = $selector;}
1668
-			}
1669
-
1670
-			// add any color rules
1671
-			if(!empty($color)){
1672
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1673
-			}
1674
-			if(!empty($color_i)){
1675
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1676
-			}
1677
-
1678
-			// add any background color rules
1679
-			if(!empty($background)){
1680
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1681
-			}
1682
-			if(!empty($background_i)){
1683
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1684
-			}
1685
-
1686
-			// add any border color rules
1687
-			if(!empty($border)){
1688
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1689
-			}
1690
-			if(!empty($border_i)){
1691
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1692
-			}
1693
-
1694
-			// add any fill color rules
1695
-			if(!empty($fill)){
1696
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1697
-			}
1698
-			if(!empty($fill_i)){
1699
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1700
-			}
1701
-
1702
-
1703
-			$prefix = $compatibility ? ".bsui " : "";
1704
-
1705
-			// darken
1706
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1707
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1708
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1709
-
1710
-			// lighten
1711
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1712
-
1713
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1714
-			$op_25 = $color_code."40"; // 25% opacity
1715
-
1716
-
1717
-			// button states
1718
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1719
-			$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;} ";
1720
-			$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.";} ";
1721
-			$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;} ";
1722
-
1723
-
1724
-			return $output;
1725
-		}
1534
+            // build rules into each type
1535
+            foreach($important_selectors as $selector => $types){
1536
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1537
+                $types = array_combine($types,$types);
1538
+                if(isset($types['c'])){$color_i[] = $selector;}
1539
+                if(isset($types['b'])){$background_i[] = $selector;}
1540
+                if(isset($types['o'])){$border_i[] = $selector;}
1541
+                if(isset($types['f'])){$fill_i[] = $selector;}
1542
+            }
1726 1543
 
1727
-		/**
1728
-		 * Increases or decreases the brightness of a color by a percentage of the current brightness.
1729
-		 *
1730
-		 * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1731
-		 * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1732
-		 *
1733
-		 * @return  string
1734
-		 */
1735
-		public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1736
-			$hexCode = ltrim($hexCode, '#');
1544
+            // add any color rules
1545
+            if(!empty($color)){
1546
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1547
+            }
1548
+            if(!empty($color_i)){
1549
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1550
+            }
1737 1551
 
1738
-			if (strlen($hexCode) == 3) {
1739
-				$hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1740
-			}
1552
+            // add any background color rules
1553
+            if(!empty($background)){
1554
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1555
+            }
1556
+            if(!empty($background_i)){
1557
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1558
+            }
1741 1559
 
1742
-			$hexCode = array_map('hexdec', str_split($hexCode, 2));
1560
+            // add any border color rules
1561
+            if(!empty($border)){
1562
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1563
+            }
1564
+            if(!empty($border_i)){
1565
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1566
+            }
1743 1567
 
1744
-			foreach ($hexCode as & $color) {
1745
-				$adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1746
-				$adjustAmount = ceil($adjustableLimit * $adjustPercent);
1568
+            // add any fill color rules
1569
+            if(!empty($fill)){
1570
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1571
+            }
1572
+            if(!empty($fill_i)){
1573
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1574
+            }
1747 1575
 
1748
-				$color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1749
-			}
1750 1576
 
1751
-			return '#' . implode($hexCode);
1752
-		}
1577
+            $prefix = $compatibility ? ".bsui " : "";
1753 1578
 
1754
-		/**
1755
-		 * Check if we should display examples.
1756
-		 */
1757
-		public function maybe_show_examples(){
1758
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1759
-				echo "<head>";
1760
-				wp_head();
1761
-				echo "</head>";
1762
-				echo "<body>";
1763
-				echo $this->get_examples();
1764
-				echo "</body>";
1765
-				exit;
1766
-			}
1767
-		}
1579
+            // darken
1580
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1581
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1582
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1768 1583
 
1769
-		/**
1770
-		 * Get developer examples.
1771
-		 *
1772
-		 * @return string
1773
-		 */
1774
-		public function get_examples(){
1775
-			$output = '';
1776
-
1777
-
1778
-			// open form
1779
-			$output .= "<form class='p-5 m-5 border rounded'>";
1780
-
1781
-			// input example
1782
-			$output .= aui()->input(array(
1783
-				'type'  =>  'text',
1784
-				'id'    =>  'text-example',
1785
-				'name'    =>  'text-example',
1786
-				'placeholder'   => 'text placeholder',
1787
-				'title'   => 'Text input example',
1788
-				'value' =>  '',
1789
-				'required'  => false,
1790
-				'help_text' => 'help text',
1791
-				'label' => 'Text input example label'
1792
-			));
1793
-
1794
-			// input example
1795
-			$output .= aui()->input(array(
1796
-				'type'  =>  'url',
1797
-				'id'    =>  'text-example2',
1798
-				'name'    =>  'text-example',
1799
-				'placeholder'   => 'url placeholder',
1800
-				'title'   => 'Text input example',
1801
-				'value' =>  '',
1802
-				'required'  => false,
1803
-				'help_text' => 'help text',
1804
-				'label' => 'Text input example label'
1805
-			));
1806
-
1807
-			// checkbox example
1808
-			$output .= aui()->input(array(
1809
-				'type'  =>  'checkbox',
1810
-				'id'    =>  'checkbox-example',
1811
-				'name'    =>  'checkbox-example',
1812
-				'placeholder'   => 'checkbox-example',
1813
-				'title'   => 'Checkbox example',
1814
-				'value' =>  '1',
1815
-				'checked'   => true,
1816
-				'required'  => false,
1817
-				'help_text' => 'help text',
1818
-				'label' => 'Checkbox checked'
1819
-			));
1820
-
1821
-			// checkbox example
1822
-			$output .= aui()->input(array(
1823
-				'type'  =>  'checkbox',
1824
-				'id'    =>  'checkbox-example2',
1825
-				'name'    =>  'checkbox-example2',
1826
-				'placeholder'   => 'checkbox-example',
1827
-				'title'   => 'Checkbox example',
1828
-				'value' =>  '1',
1829
-				'checked'   => false,
1830
-				'required'  => false,
1831
-				'help_text' => 'help text',
1832
-				'label' => 'Checkbox un-checked'
1833
-			));
1834
-
1835
-			// switch example
1836
-			$output .= aui()->input(array(
1837
-				'type'  =>  'checkbox',
1838
-				'id'    =>  'switch-example',
1839
-				'name'    =>  'switch-example',
1840
-				'placeholder'   => 'checkbox-example',
1841
-				'title'   => 'Switch example',
1842
-				'value' =>  '1',
1843
-				'checked'   => true,
1844
-				'switch'    => true,
1845
-				'required'  => false,
1846
-				'help_text' => 'help text',
1847
-				'label' => 'Switch on'
1848
-			));
1849
-
1850
-			// switch example
1851
-			$output .= aui()->input(array(
1852
-				'type'  =>  'checkbox',
1853
-				'id'    =>  'switch-example2',
1854
-				'name'    =>  'switch-example2',
1855
-				'placeholder'   => 'checkbox-example',
1856
-				'title'   => 'Switch example',
1857
-				'value' =>  '1',
1858
-				'checked'   => false,
1859
-				'switch'    => true,
1860
-				'required'  => false,
1861
-				'help_text' => 'help text',
1862
-				'label' => 'Switch off'
1863
-			));
1864
-
1865
-			// close form
1866
-			$output .= "</form>";
1867
-
1868
-			return $output;
1869
-		}
1584
+            // lighten
1585
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1870 1586
 
1871
-		/**
1872
-		 * Calendar params.
1873
-		 *
1874
-		 * @since 0.1.44
1875
-		 *
1876
-		 * @return array Calendar params.
1877
-		 */
1878
-		public static function calendar_params() {
1879
-			$params = array(
1880
-				'month_long_1' => __( 'January', 'aui' ),
1881
-				'month_long_2' => __( 'February', 'aui' ),
1882
-				'month_long_3' => __( 'March', 'aui' ),
1883
-				'month_long_4' => __( 'April', 'aui' ),
1884
-				'month_long_5' => __( 'May', 'aui' ),
1885
-				'month_long_6' => __( 'June', 'aui' ),
1886
-				'month_long_7' => __( 'July', 'aui' ),
1887
-				'month_long_8' => __( 'August', 'aui' ),
1888
-				'month_long_9' => __( 'September', 'aui' ),
1889
-				'month_long_10' => __( 'October', 'aui' ),
1890
-				'month_long_11' => __( 'November', 'aui' ),
1891
-				'month_long_12' => __( 'December', 'aui' ),
1892
-				'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
1893
-				'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
1894
-				'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
1895
-				'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
1896
-				'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
1897
-				'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
1898
-				'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
1899
-				'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
1900
-				'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
1901
-				'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
1902
-				'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
1903
-				'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
1904
-				'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
1905
-				'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
1906
-				'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
1907
-				'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
1908
-				'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
1909
-				'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
1910
-				'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
1911
-				'day_s2_1' => __( 'Su', 'aui' ),
1912
-				'day_s2_2' => __( 'Mo', 'aui' ),
1913
-				'day_s2_3' => __( 'Tu', 'aui' ),
1914
-				'day_s2_4' => __( 'We', 'aui' ),
1915
-				'day_s2_5' => __( 'Th', 'aui' ),
1916
-				'day_s2_6' => __( 'Fr', 'aui' ),
1917
-				'day_s2_7' => __( 'Sa', 'aui' ),
1918
-				'day_s3_1' => __( 'Sun', 'aui' ),
1919
-				'day_s3_2' => __( 'Mon', 'aui' ),
1920
-				'day_s3_3' => __( 'Tue', 'aui' ),
1921
-				'day_s3_4' => __( 'Wed', 'aui' ),
1922
-				'day_s3_5' => __( 'Thu', 'aui' ),
1923
-				'day_s3_6' => __( 'Fri', 'aui' ),
1924
-				'day_s3_7' => __( 'Sat', 'aui' ),
1925
-				'day_s5_1' => __( 'Sunday', 'aui' ),
1926
-				'day_s5_2' => __( 'Monday', 'aui' ),
1927
-				'day_s5_3' => __( 'Tuesday', 'aui' ),
1928
-				'day_s5_4' => __( 'Wednesday', 'aui' ),
1929
-				'day_s5_5' => __( 'Thursday', 'aui' ),
1930
-				'day_s5_6' => __( 'Friday', 'aui' ),
1931
-				'day_s5_7' => __( 'Saturday', 'aui' ),
1932
-				'am_lower' => __( 'am', 'aui' ),
1933
-				'pm_lower' => __( 'pm', 'aui' ),
1934
-				'am_upper' => __( 'AM', 'aui' ),
1935
-				'pm_upper' => __( 'PM', 'aui' ),
1936
-				'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
1937
-				'time_24hr' => false,
1938
-				'year' => __( 'Year', 'aui' ),
1939
-				'hour' => __( 'Hour', 'aui' ),
1940
-				'minute' => __( 'Minute', 'aui' ),
1941
-				'weekAbbreviation' => __( 'Wk', 'aui' ),
1942
-				'rangeSeparator' => __( ' to ', 'aui' ),
1943
-				'scrollTitle' => __( 'Scroll to increment', 'aui' ),
1944
-				'toggleTitle' => __( 'Click to toggle', 'aui' )
1945
-			);
1946
-
1947
-			return apply_filters( 'ayecode_ui_calendar_params', $params );
1948
-		}
1587
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1588
+            $op_25 = $color_code."40"; // 25% opacity
1949 1589
 
1950
-		/**
1951
-		 * Flatpickr calendar localize.
1952
-		 *
1953
-		 * @since 0.1.44
1954
-		 *
1955
-		 * @return string Calendar locale.
1956
-		 */
1957
-		public static function flatpickr_locale() {
1958
-			$params = self::calendar_params();
1959
-
1960
-			if ( is_string( $params ) ) {
1961
-				$params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
1962
-			} else {
1963
-				foreach ( (array) $params as $key => $value ) {
1964
-					if ( ! is_scalar( $value ) ) {
1965
-						continue;
1966
-					}
1967 1590
 
1968
-					$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
1969
-				}
1970
-			}
1591
+            // button states
1592
+            $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1593
+            $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;} ";
1594
+            $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.";} ";
1595
+            $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;} ";
1596
+
1597
+
1598
+            // dropdown's
1599
+            $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1971 1600
 
1972
-			$day_s3 = array();
1973
-			$day_s5 = array();
1974 1601
 
1975
-			for ( $i = 1; $i <= 7; $i ++ ) {
1976
-				$day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
1977
-				$day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
1978
-			}
1602
+            // input states
1603
+            $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1979 1604
 
1980
-			$month_s = array();
1981
-			$month_long = array();
1605
+            // page link
1606
+            $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1607
+
1608
+            return $output;
1609
+        }
1610
+
1611
+        public static function css_secondary($color_code,$compatibility){;
1612
+            $color_code = sanitize_hex_color($color_code);
1613
+            if(!$color_code){return '';}
1614
+            /**
1615
+             * c = color, b = background color, o = border-color, f = fill
1616
+             */
1617
+            $selectors = array(
1618
+                '.btn-secondary' => array('b','o'),
1619
+                '.btn-secondary.disabled' => array('b','o'),
1620
+                '.btn-secondary:disabled' => array('b','o'),
1621
+                '.btn-outline-secondary' => array('c','o'),
1622
+                '.btn-outline-secondary:hover' => array('b','o'),
1623
+                '.btn-outline-secondary.disabled' => array('c'),
1624
+                '.btn-outline-secondary:disabled' => array('c'),
1625
+                '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1626
+                '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1627
+                '.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1628
+                '.badge-secondary' => array('b'),
1629
+                '.alert-secondary' => array('b','o'),
1630
+                '.btn-link.btn-secondary' => array('c'),
1631
+            );
1632
+
1633
+            $important_selectors = array(
1634
+                '.bg-secondary' => array('b','f'),
1635
+                '.border-secondary' => array('o'),
1636
+                '.text-secondary' => array('c'),
1637
+            );
1638
+
1639
+            $color = array();
1640
+            $color_i = array();
1641
+            $background = array();
1642
+            $background_i = array();
1643
+            $border = array();
1644
+            $border_i = array();
1645
+            $fill = array();
1646
+            $fill_i = array();
1647
+
1648
+            $output = '';
1649
+
1650
+            // build rules into each type
1651
+            foreach($selectors as $selector => $types){
1652
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1653
+                $types = array_combine($types,$types);
1654
+                if(isset($types['c'])){$color[] = $selector;}
1655
+                if(isset($types['b'])){$background[] = $selector;}
1656
+                if(isset($types['o'])){$border[] = $selector;}
1657
+                if(isset($types['f'])){$fill[] = $selector;}
1658
+            }
1659
+
1660
+            // build rules into each type
1661
+            foreach($important_selectors as $selector => $types){
1662
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1663
+                $types = array_combine($types,$types);
1664
+                if(isset($types['c'])){$color_i[] = $selector;}
1665
+                if(isset($types['b'])){$background_i[] = $selector;}
1666
+                if(isset($types['o'])){$border_i[] = $selector;}
1667
+                if(isset($types['f'])){$fill_i[] = $selector;}
1668
+            }
1982 1669
 
1983
-			for ( $i = 1; $i <= 12; $i ++ ) {
1984
-				$month_s[] = addslashes( $params[ 'month_s_' . $i ] );
1985
-				$month_long[] = addslashes( $params[ 'month_long_' . $i ] );
1986
-			}
1670
+            // add any color rules
1671
+            if(!empty($color)){
1672
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1673
+            }
1674
+            if(!empty($color_i)){
1675
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1676
+            }
1677
+
1678
+            // add any background color rules
1679
+            if(!empty($background)){
1680
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1681
+            }
1682
+            if(!empty($background_i)){
1683
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1684
+            }
1685
+
1686
+            // add any border color rules
1687
+            if(!empty($border)){
1688
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1689
+            }
1690
+            if(!empty($border_i)){
1691
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1692
+            }
1693
+
1694
+            // add any fill color rules
1695
+            if(!empty($fill)){
1696
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1697
+            }
1698
+            if(!empty($fill_i)){
1699
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1700
+            }
1701
+
1702
+
1703
+            $prefix = $compatibility ? ".bsui " : "";
1704
+
1705
+            // darken
1706
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1707
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1708
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1709
+
1710
+            // lighten
1711
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1712
+
1713
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1714
+            $op_25 = $color_code."40"; // 25% opacity
1715
+
1716
+
1717
+            // button states
1718
+            $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1719
+            $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;} ";
1720
+            $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.";} ";
1721
+            $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;} ";
1722
+
1723
+
1724
+            return $output;
1725
+        }
1726
+
1727
+        /**
1728
+         * Increases or decreases the brightness of a color by a percentage of the current brightness.
1729
+         *
1730
+         * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1731
+         * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1732
+         *
1733
+         * @return  string
1734
+         */
1735
+        public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1736
+            $hexCode = ltrim($hexCode, '#');
1737
+
1738
+            if (strlen($hexCode) == 3) {
1739
+                $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1740
+            }
1741
+
1742
+            $hexCode = array_map('hexdec', str_split($hexCode, 2));
1743
+
1744
+            foreach ($hexCode as & $color) {
1745
+                $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1746
+                $adjustAmount = ceil($adjustableLimit * $adjustPercent);
1747
+
1748
+                $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1749
+            }
1750
+
1751
+            return '#' . implode($hexCode);
1752
+        }
1753
+
1754
+        /**
1755
+         * Check if we should display examples.
1756
+         */
1757
+        public function maybe_show_examples(){
1758
+            if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1759
+                echo "<head>";
1760
+                wp_head();
1761
+                echo "</head>";
1762
+                echo "<body>";
1763
+                echo $this->get_examples();
1764
+                echo "</body>";
1765
+                exit;
1766
+            }
1767
+        }
1768
+
1769
+        /**
1770
+         * Get developer examples.
1771
+         *
1772
+         * @return string
1773
+         */
1774
+        public function get_examples(){
1775
+            $output = '';
1776
+
1777
+
1778
+            // open form
1779
+            $output .= "<form class='p-5 m-5 border rounded'>";
1780
+
1781
+            // input example
1782
+            $output .= aui()->input(array(
1783
+                'type'  =>  'text',
1784
+                'id'    =>  'text-example',
1785
+                'name'    =>  'text-example',
1786
+                'placeholder'   => 'text placeholder',
1787
+                'title'   => 'Text input example',
1788
+                'value' =>  '',
1789
+                'required'  => false,
1790
+                'help_text' => 'help text',
1791
+                'label' => 'Text input example label'
1792
+            ));
1793
+
1794
+            // input example
1795
+            $output .= aui()->input(array(
1796
+                'type'  =>  'url',
1797
+                'id'    =>  'text-example2',
1798
+                'name'    =>  'text-example',
1799
+                'placeholder'   => 'url placeholder',
1800
+                'title'   => 'Text input example',
1801
+                'value' =>  '',
1802
+                'required'  => false,
1803
+                'help_text' => 'help text',
1804
+                'label' => 'Text input example label'
1805
+            ));
1806
+
1807
+            // checkbox example
1808
+            $output .= aui()->input(array(
1809
+                'type'  =>  'checkbox',
1810
+                'id'    =>  'checkbox-example',
1811
+                'name'    =>  'checkbox-example',
1812
+                'placeholder'   => 'checkbox-example',
1813
+                'title'   => 'Checkbox example',
1814
+                'value' =>  '1',
1815
+                'checked'   => true,
1816
+                'required'  => false,
1817
+                'help_text' => 'help text',
1818
+                'label' => 'Checkbox checked'
1819
+            ));
1820
+
1821
+            // checkbox example
1822
+            $output .= aui()->input(array(
1823
+                'type'  =>  'checkbox',
1824
+                'id'    =>  'checkbox-example2',
1825
+                'name'    =>  'checkbox-example2',
1826
+                'placeholder'   => 'checkbox-example',
1827
+                'title'   => 'Checkbox example',
1828
+                'value' =>  '1',
1829
+                'checked'   => false,
1830
+                'required'  => false,
1831
+                'help_text' => 'help text',
1832
+                'label' => 'Checkbox un-checked'
1833
+            ));
1834
+
1835
+            // switch example
1836
+            $output .= aui()->input(array(
1837
+                'type'  =>  'checkbox',
1838
+                'id'    =>  'switch-example',
1839
+                'name'    =>  'switch-example',
1840
+                'placeholder'   => 'checkbox-example',
1841
+                'title'   => 'Switch example',
1842
+                'value' =>  '1',
1843
+                'checked'   => true,
1844
+                'switch'    => true,
1845
+                'required'  => false,
1846
+                'help_text' => 'help text',
1847
+                'label' => 'Switch on'
1848
+            ));
1849
+
1850
+            // switch example
1851
+            $output .= aui()->input(array(
1852
+                'type'  =>  'checkbox',
1853
+                'id'    =>  'switch-example2',
1854
+                'name'    =>  'switch-example2',
1855
+                'placeholder'   => 'checkbox-example',
1856
+                'title'   => 'Switch example',
1857
+                'value' =>  '1',
1858
+                'checked'   => false,
1859
+                'switch'    => true,
1860
+                'required'  => false,
1861
+                'help_text' => 'help text',
1862
+                'label' => 'Switch off'
1863
+            ));
1864
+
1865
+            // close form
1866
+            $output .= "</form>";
1867
+
1868
+            return $output;
1869
+        }
1870
+
1871
+        /**
1872
+         * Calendar params.
1873
+         *
1874
+         * @since 0.1.44
1875
+         *
1876
+         * @return array Calendar params.
1877
+         */
1878
+        public static function calendar_params() {
1879
+            $params = array(
1880
+                'month_long_1' => __( 'January', 'aui' ),
1881
+                'month_long_2' => __( 'February', 'aui' ),
1882
+                'month_long_3' => __( 'March', 'aui' ),
1883
+                'month_long_4' => __( 'April', 'aui' ),
1884
+                'month_long_5' => __( 'May', 'aui' ),
1885
+                'month_long_6' => __( 'June', 'aui' ),
1886
+                'month_long_7' => __( 'July', 'aui' ),
1887
+                'month_long_8' => __( 'August', 'aui' ),
1888
+                'month_long_9' => __( 'September', 'aui' ),
1889
+                'month_long_10' => __( 'October', 'aui' ),
1890
+                'month_long_11' => __( 'November', 'aui' ),
1891
+                'month_long_12' => __( 'December', 'aui' ),
1892
+                'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
1893
+                'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
1894
+                'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
1895
+                'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
1896
+                'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
1897
+                'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
1898
+                'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
1899
+                'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
1900
+                'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
1901
+                'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
1902
+                'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
1903
+                'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
1904
+                'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
1905
+                'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
1906
+                'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
1907
+                'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
1908
+                'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
1909
+                'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
1910
+                'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
1911
+                'day_s2_1' => __( 'Su', 'aui' ),
1912
+                'day_s2_2' => __( 'Mo', 'aui' ),
1913
+                'day_s2_3' => __( 'Tu', 'aui' ),
1914
+                'day_s2_4' => __( 'We', 'aui' ),
1915
+                'day_s2_5' => __( 'Th', 'aui' ),
1916
+                'day_s2_6' => __( 'Fr', 'aui' ),
1917
+                'day_s2_7' => __( 'Sa', 'aui' ),
1918
+                'day_s3_1' => __( 'Sun', 'aui' ),
1919
+                'day_s3_2' => __( 'Mon', 'aui' ),
1920
+                'day_s3_3' => __( 'Tue', 'aui' ),
1921
+                'day_s3_4' => __( 'Wed', 'aui' ),
1922
+                'day_s3_5' => __( 'Thu', 'aui' ),
1923
+                'day_s3_6' => __( 'Fri', 'aui' ),
1924
+                'day_s3_7' => __( 'Sat', 'aui' ),
1925
+                'day_s5_1' => __( 'Sunday', 'aui' ),
1926
+                'day_s5_2' => __( 'Monday', 'aui' ),
1927
+                'day_s5_3' => __( 'Tuesday', 'aui' ),
1928
+                'day_s5_4' => __( 'Wednesday', 'aui' ),
1929
+                'day_s5_5' => __( 'Thursday', 'aui' ),
1930
+                'day_s5_6' => __( 'Friday', 'aui' ),
1931
+                'day_s5_7' => __( 'Saturday', 'aui' ),
1932
+                'am_lower' => __( 'am', 'aui' ),
1933
+                'pm_lower' => __( 'pm', 'aui' ),
1934
+                'am_upper' => __( 'AM', 'aui' ),
1935
+                'pm_upper' => __( 'PM', 'aui' ),
1936
+                'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
1937
+                'time_24hr' => false,
1938
+                'year' => __( 'Year', 'aui' ),
1939
+                'hour' => __( 'Hour', 'aui' ),
1940
+                'minute' => __( 'Minute', 'aui' ),
1941
+                'weekAbbreviation' => __( 'Wk', 'aui' ),
1942
+                'rangeSeparator' => __( ' to ', 'aui' ),
1943
+                'scrollTitle' => __( 'Scroll to increment', 'aui' ),
1944
+                'toggleTitle' => __( 'Click to toggle', 'aui' )
1945
+            );
1946
+
1947
+            return apply_filters( 'ayecode_ui_calendar_params', $params );
1948
+        }
1949
+
1950
+        /**
1951
+         * Flatpickr calendar localize.
1952
+         *
1953
+         * @since 0.1.44
1954
+         *
1955
+         * @return string Calendar locale.
1956
+         */
1957
+        public static function flatpickr_locale() {
1958
+            $params = self::calendar_params();
1959
+
1960
+            if ( is_string( $params ) ) {
1961
+                $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
1962
+            } else {
1963
+                foreach ( (array) $params as $key => $value ) {
1964
+                    if ( ! is_scalar( $value ) ) {
1965
+                        continue;
1966
+                    }
1967
+
1968
+                    $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
1969
+                }
1970
+            }
1971
+
1972
+            $day_s3 = array();
1973
+            $day_s5 = array();
1974
+
1975
+            for ( $i = 1; $i <= 7; $i ++ ) {
1976
+                $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
1977
+                $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
1978
+            }
1979
+
1980
+            $month_s = array();
1981
+            $month_long = array();
1982
+
1983
+            for ( $i = 1; $i <= 12; $i ++ ) {
1984
+                $month_s[] = addslashes( $params[ 'month_s_' . $i ] );
1985
+                $month_long[] = addslashes( $params[ 'month_long_' . $i ] );
1986
+            }
1987 1987
 
1988 1988
 ob_start();
1989 1989
 if ( 0 ) { ?><script><?php } ?>
@@ -2025,189 +2025,189 @@  discard block
 block discarded – undo
2025 2025
 }
2026 2026
 <?php if ( 0 ) { ?></script><?php } ?>
2027 2027
 <?php
2028
-			$locale = ob_get_clean();
2028
+            $locale = ob_get_clean();
2029 2029
 
2030
-			return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2031
-		}
2030
+            return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2031
+        }
2032 2032
 
2033
-		/**
2034
-		 * Select2 JS params.
2035
-		 *
2036
-		 * @since 0.1.44
2037
-		 *
2038
-		 * @return array Select2 JS params.
2039
-		 */
2040
-		public static function select2_params() {
2041
-			$params = array(
2042
-				'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2043
-				'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2044
-				'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2045
-				'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2046
-				'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2047
-				'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2048
-				'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2049
-				'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2050
-				'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2051
-				'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2052
-				'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2053
-			);
2054
-
2055
-			return apply_filters( 'ayecode_ui_select2_params', $params );
2056
-		}
2033
+        /**
2034
+         * Select2 JS params.
2035
+         *
2036
+         * @since 0.1.44
2037
+         *
2038
+         * @return array Select2 JS params.
2039
+         */
2040
+        public static function select2_params() {
2041
+            $params = array(
2042
+                'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2043
+                'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2044
+                'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2045
+                'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2046
+                'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2047
+                'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2048
+                'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2049
+                'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2050
+                'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2051
+                'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2052
+                'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2053
+            );
2054
+
2055
+            return apply_filters( 'ayecode_ui_select2_params', $params );
2056
+        }
2057 2057
 
2058
-		/**
2059
-		 * Select2 JS localize.
2060
-		 *
2061
-		 * @since 0.1.44
2062
-		 *
2063
-		 * @return string Select2 JS locale.
2064
-		 */
2065
-		public static function select2_locale() {
2066
-			$params = self::select2_params();
2067
-
2068
-			foreach ( (array) $params as $key => $value ) {
2069
-				if ( ! is_scalar( $value ) ) {
2070
-					continue;
2071
-				}
2058
+        /**
2059
+         * Select2 JS localize.
2060
+         *
2061
+         * @since 0.1.44
2062
+         *
2063
+         * @return string Select2 JS locale.
2064
+         */
2065
+        public static function select2_locale() {
2066
+            $params = self::select2_params();
2067
+
2068
+            foreach ( (array) $params as $key => $value ) {
2069
+                if ( ! is_scalar( $value ) ) {
2070
+                    continue;
2071
+                }
2072 2072
 
2073
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2074
-			}
2073
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2074
+            }
2075 2075
 
2076
-			$locale = json_encode( $params );
2076
+            $locale = json_encode( $params );
2077 2077
 
2078
-			return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2079
-		}
2078
+            return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2079
+        }
2080 2080
 
2081
-		/**
2082
-		 * Time ago JS localize.
2083
-		 *
2084
-		 * @since 0.1.47
2085
-		 *
2086
-		 * @return string Time ago JS locale.
2087
-		 */
2088
-		public static function timeago_locale() {
2089
-			$params = array(
2090
-				'prefix_ago' => '',
2091
-				'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2092
-				'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2093
-				'suffix_after' => '',
2094
-				'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2095
-				'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2096
-				'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2097
-				'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2098
-				'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2099
-				'day' => _x( 'a day', 'time ago', 'aui' ),
2100
-				'days' => _x( '%d days', 'time ago', 'aui' ),
2101
-				'month' => _x( 'about a month', 'time ago', 'aui' ),
2102
-				'months' => _x( '%d months', 'time ago', 'aui' ),
2103
-				'year' => _x( 'about a year', 'time ago', 'aui' ),
2104
-				'years' => _x( '%d years', 'time ago', 'aui' ),
2105
-			);
2106
-
2107
-			$params = apply_filters( 'ayecode_ui_timeago_params', $params );
2108
-
2109
-			foreach ( (array) $params as $key => $value ) {
2110
-				if ( ! is_scalar( $value ) ) {
2111
-					continue;
2112
-				}
2081
+        /**
2082
+         * Time ago JS localize.
2083
+         *
2084
+         * @since 0.1.47
2085
+         *
2086
+         * @return string Time ago JS locale.
2087
+         */
2088
+        public static function timeago_locale() {
2089
+            $params = array(
2090
+                'prefix_ago' => '',
2091
+                'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2092
+                'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2093
+                'suffix_after' => '',
2094
+                'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2095
+                'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2096
+                'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2097
+                'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2098
+                'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2099
+                'day' => _x( 'a day', 'time ago', 'aui' ),
2100
+                'days' => _x( '%d days', 'time ago', 'aui' ),
2101
+                'month' => _x( 'about a month', 'time ago', 'aui' ),
2102
+                'months' => _x( '%d months', 'time ago', 'aui' ),
2103
+                'year' => _x( 'about a year', 'time ago', 'aui' ),
2104
+                'years' => _x( '%d years', 'time ago', 'aui' ),
2105
+            );
2106
+
2107
+            $params = apply_filters( 'ayecode_ui_timeago_params', $params );
2108
+
2109
+            foreach ( (array) $params as $key => $value ) {
2110
+                if ( ! is_scalar( $value ) ) {
2111
+                    continue;
2112
+                }
2113 2113
 
2114
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2115
-			}
2114
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2115
+            }
2116 2116
 
2117
-			$locale = json_encode( $params );
2117
+            $locale = json_encode( $params );
2118 2118
 
2119
-			return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2120
-		}
2119
+            return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2120
+        }
2121 2121
 
2122
-		/**
2123
-		 * JavaScript Minifier
2124
-		 *
2125
-		 * @param $input
2126
-		 *
2127
-		 * @return mixed
2128
-		 */
2129
-		public static function minify_js($input) {
2130
-			if(trim($input) === "") return $input;
2131
-			return preg_replace(
2132
-				array(
2133
-					// Remove comment(s)
2134
-					'#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2135
-					// Remove white-space(s) outside the string and regex
2136
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2137
-					// Remove the last semicolon
2138
-					'#;+\}#',
2139
-					// Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2140
-					'#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2141
-					// --ibid. From `foo['bar']` to `foo.bar`
2142
-					'#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2143
-				),
2144
-				array(
2145
-					'$1',
2146
-					'$1$2',
2147
-					'}',
2148
-					'$1$3',
2149
-					'$1.$3'
2150
-				),
2151
-				$input);
2152
-		}
2122
+        /**
2123
+         * JavaScript Minifier
2124
+         *
2125
+         * @param $input
2126
+         *
2127
+         * @return mixed
2128
+         */
2129
+        public static function minify_js($input) {
2130
+            if(trim($input) === "") return $input;
2131
+            return preg_replace(
2132
+                array(
2133
+                    // Remove comment(s)
2134
+                    '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2135
+                    // Remove white-space(s) outside the string and regex
2136
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2137
+                    // Remove the last semicolon
2138
+                    '#;+\}#',
2139
+                    // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2140
+                    '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2141
+                    // --ibid. From `foo['bar']` to `foo.bar`
2142
+                    '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2143
+                ),
2144
+                array(
2145
+                    '$1',
2146
+                    '$1$2',
2147
+                    '}',
2148
+                    '$1$3',
2149
+                    '$1.$3'
2150
+                ),
2151
+                $input);
2152
+        }
2153 2153
 
2154
-		/**
2155
-		 * Minify CSS
2156
-		 *
2157
-		 * @param $input
2158
-		 *
2159
-		 * @return mixed
2160
-		 */
2161
-		public static function minify_css($input) {
2162
-			if(trim($input) === "") return $input;
2163
-			return preg_replace(
2164
-				array(
2165
-					// Remove comment(s)
2166
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2167
-					// Remove unused white-space(s)
2168
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2169
-					// Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2170
-					'#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2171
-					// Replace `:0 0 0 0` with `:0`
2172
-					'#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2173
-					// Replace `background-position:0` with `background-position:0 0`
2174
-					'#(background-position):0(?=[;\}])#si',
2175
-					// Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2176
-					'#(?<=[\s:,\-])0+\.(\d+)#s',
2177
-					// Minify string value
2178
-					'#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2179
-					'#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2180
-					// Minify HEX color code
2181
-					'#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2182
-					// Replace `(border|outline):none` with `(border|outline):0`
2183
-					'#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2184
-					// Remove empty selector(s)
2185
-					'#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2186
-				),
2187
-				array(
2188
-					'$1',
2189
-					'$1$2$3$4$5$6$7',
2190
-					'$1',
2191
-					':0',
2192
-					'$1:0 0',
2193
-					'.$1',
2194
-					'$1$3',
2195
-					'$1$2$4$5',
2196
-					'$1$2$3',
2197
-					'$1:0',
2198
-					'$1$2'
2199
-				),
2200
-				$input);
2201
-		}
2154
+        /**
2155
+         * Minify CSS
2156
+         *
2157
+         * @param $input
2158
+         *
2159
+         * @return mixed
2160
+         */
2161
+        public static function minify_css($input) {
2162
+            if(trim($input) === "") return $input;
2163
+            return preg_replace(
2164
+                array(
2165
+                    // Remove comment(s)
2166
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2167
+                    // Remove unused white-space(s)
2168
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2169
+                    // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2170
+                    '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2171
+                    // Replace `:0 0 0 0` with `:0`
2172
+                    '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2173
+                    // Replace `background-position:0` with `background-position:0 0`
2174
+                    '#(background-position):0(?=[;\}])#si',
2175
+                    // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2176
+                    '#(?<=[\s:,\-])0+\.(\d+)#s',
2177
+                    // Minify string value
2178
+                    '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2179
+                    '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2180
+                    // Minify HEX color code
2181
+                    '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2182
+                    // Replace `(border|outline):none` with `(border|outline):0`
2183
+                    '#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2184
+                    // Remove empty selector(s)
2185
+                    '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2186
+                ),
2187
+                array(
2188
+                    '$1',
2189
+                    '$1$2$3$4$5$6$7',
2190
+                    '$1',
2191
+                    ':0',
2192
+                    '$1:0 0',
2193
+                    '.$1',
2194
+                    '$1$3',
2195
+                    '$1$2$4$5',
2196
+                    '$1$2$3',
2197
+                    '$1:0',
2198
+                    '$1$2'
2199
+                ),
2200
+                $input);
2201
+        }
2202 2202
 
2203
-		/**
2204
-		 * Get the conditional fields JavaScript.
2205
-		 *
2206
-		 * @return mixed
2207
-		 */
2208
-		public function conditional_fields_js() {
2209
-			ob_start();
2210
-			?>
2203
+        /**
2204
+         * Get the conditional fields JavaScript.
2205
+         *
2206
+         * @return mixed
2207
+         */
2208
+        public function conditional_fields_js() {
2209
+            ob_start();
2210
+            ?>
2211 2211
 <script>
2212 2212
 /**
2213 2213
  * Conditional Fields
@@ -2711,14 +2711,14 @@  discard block
 block discarded – undo
2711 2711
 <?php do_action( 'aui_conditional_fields_js', $this ); ?>
2712 2712
 </script>
2713 2713
 			<?php
2714
-			$output = ob_get_clean();
2714
+            $output = ob_get_clean();
2715 2715
 
2716
-			return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2717
-		}
2718
-	}
2716
+            return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2717
+        }
2718
+    }
2719 2719
 
2720
-	/**
2721
-	 * Run the class if found.
2722
-	 */
2723
-	AyeCode_UI_Settings::instance();
2720
+    /**
2721
+     * Run the class if found.
2722
+     */
2723
+    AyeCode_UI_Settings::instance();
2724 2724
 }
2725 2725
\ No newline at end of file
Please login to merge, or discard this patch.
includes/class-getpaid-notification-email-sender.php 2 patches
Indentation   +134 added lines, -134 removed lines patch added patch discarded remove patch
@@ -13,17 +13,17 @@  discard block
 block discarded – undo
13 13
 class GetPaid_Notification_Email_Sender {
14 14
 
15 15
     /**
16
-	 * Whether or not we should inline CSS into the email.
17
-	 */
18
-	public $inline_css = true;
16
+     * Whether or not we should inline CSS into the email.
17
+     */
18
+    public $inline_css = true;
19 19
 
20 20
     /**
21
-	 * The wp_mail() data.
22
-	 */
21
+     * The wp_mail() data.
22
+     */
23 23
     public $wp_mail_data = null;
24 24
 
25 25
     /**
26
-	 * Sends a new email.
26
+     * Sends a new email.
27 27
      * 
28 28
      * @param string|array $to The recipients email or an array of recipient emails.
29 29
      * @param string $subject The email's subject.
@@ -31,49 +31,49 @@  discard block
 block discarded – undo
31 31
      * @param array $attachments The email attachments.
32 32
      * 
33 33
      * @return bool
34
-	 */
35
-	public function send( $to, $subject, $email, $attachments = array() ) {
34
+     */
35
+    public function send( $to, $subject, $email, $attachments = array() ) {
36 36
 
37
-		/*
37
+        /*
38 38
 		 * Allow to filter data on per-email basis.
39 39
 		 */
40
-		$data = apply_filters(
41
-			'getpaid_email_data',
42
-			array(
43
-				'to'          => array_filter( array_unique( wpinv_parse_list( $to ) ) ),
44
-				'subject'     => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ),
45
-				'email'       => apply_filters( 'wpinv_mail_content', $email ),
46
-				'headers'     => $this->get_headers(),
47
-				'attachments' => $attachments,
48
-			),
49
-			$this
50
-		);
40
+        $data = apply_filters(
41
+            'getpaid_email_data',
42
+            array(
43
+                'to'          => array_filter( array_unique( wpinv_parse_list( $to ) ) ),
44
+                'subject'     => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ),
45
+                'email'       => apply_filters( 'wpinv_mail_content', $email ),
46
+                'headers'     => $this->get_headers(),
47
+                'attachments' => $attachments,
48
+            ),
49
+            $this
50
+        );
51 51
 
52 52
         // Remove slashes.
53 53
         $data               = (array) wp_unslash( $data );
54 54
 
55 55
         // Cache it.
56
-		$this->wp_mail_data = $data;
56
+        $this->wp_mail_data = $data;
57 57
 
58
-		// Attach our own hooks.
59
-		$this->before_sending();
58
+        // Attach our own hooks.
59
+        $this->before_sending();
60 60
 
61 61
         $result = false;
62 62
 
63 63
         foreach ( $this->wp_mail_data['to'] as $to ) {
64
-			$result = $this->_send( $to, $data );
64
+            $result = $this->_send( $to, $data );
65 65
         }
66 66
 
67
-		// Remove our hooks.
68
-		$this->after_sending();		
67
+        // Remove our hooks.
68
+        $this->after_sending();		
69 69
 
70
-		$this->wp_mail_data = null;
70
+        $this->wp_mail_data = null;
71 71
 
72
-		return $result;
73
-	}
72
+        return $result;
73
+    }
74 74
 
75
-	/**
76
-	 * Does the actual sending.
75
+    /**
76
+     * Does the actual sending.
77 77
      * 
78 78
      * @param string $to The recipient's email.
79 79
      * @param array $data The email's data.
@@ -81,81 +81,81 @@  discard block
 block discarded – undo
81 81
      * @param array $attachments The email attachments.
82 82
      * 
83 83
      * @return bool
84
-	 */
85
-	protected function _send( $to, $data ) {
86
-
87
-		// Prepare the sending function.
88
-		$sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' );
89
-
90
-		// Send the actual email.
91
-		$result = call_user_func(
92
-			$sending_function,
93
-			$to,
94
-			html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ),
95
-			$data['email'],
96
-			$data['headers'],
97
-			$data['attachments']
98
-		);
99
-
100
-		if ( ! $result ) {
101
-			$log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] );
102
-			wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ );
103
-		}
104
-
105
-		return $result;
106
-	}
84
+     */
85
+    protected function _send( $to, $data ) {
86
+
87
+        // Prepare the sending function.
88
+        $sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' );
89
+
90
+        // Send the actual email.
91
+        $result = call_user_func(
92
+            $sending_function,
93
+            $to,
94
+            html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ),
95
+            $data['email'],
96
+            $data['headers'],
97
+            $data['attachments']
98
+        );
99
+
100
+        if ( ! $result ) {
101
+            $log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] );
102
+            wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ );
103
+        }
104
+
105
+        return $result;
106
+    }
107 107
     
108 108
     /**
109
-	 * Retrieves email headers.
110
-	 */
111
-	public function get_headers() {
109
+     * Retrieves email headers.
110
+     */
111
+    public function get_headers() {
112 112
 
113
-		$name       = $this->get_from_name();
114
-		$reply_to   = $this->get_reply_to();
115
-		$headers    = array( "Reply-To:$name <$reply_to>" );
113
+        $name       = $this->get_from_name();
114
+        $reply_to   = $this->get_reply_to();
115
+        $headers    = array( "Reply-To:$name <$reply_to>" );
116 116
 
117
-		return apply_filters( 'getpaid_email_headers',  $headers, $this );
117
+        return apply_filters( 'getpaid_email_headers',  $headers, $this );
118 118
 
119
-	}
119
+    }
120 120
 
121 121
     /**
122
-	 * Fires before an email is sent
123
-	 *
124
-	 * @since 1.0.0
125
-	 */
126
-	public function before_sending() {
122
+     * Fires before an email is sent
123
+     *
124
+     * @since 1.0.0
125
+     */
126
+    public function before_sending() {
127 127
 
128 128
         do_action( 'getpaid_before_send_email', $this );
129
-		add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 );
130
-		add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 );
131
-		add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 );
132
-		add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 );
129
+        add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 );
130
+        add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 );
131
+        add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 );
132
+        add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 );
133 133
 
134
-	}
134
+    }
135 135
 
136 136
     /**
137
-	 * Returns the from name.
138
-	 */
139
-	public function get_from_name() {
137
+     * Returns the from name.
138
+     */
139
+    public function get_from_name() {
140 140
 
141 141
         $from_name = wpinv_get_option( 'email_from_name', get_bloginfo( 'name' ) );
142 142
 
143
-		if ( empty( $from_name ) ) {
144
-			$from_name =  get_bloginfo( 'name' );
143
+        if ( empty( $from_name ) ) {
144
+            $from_name =  get_bloginfo( 'name' );
145 145
         }
146 146
 
147
-		return wp_specialchars_decode( $from_name, ENT_QUOTES );
147
+        return wp_specialchars_decode( $from_name, ENT_QUOTES );
148 148
     }
149 149
 
150 150
     /**
151
-	 * Returns the from email.
152
-	 */
153
-	public function get_from_address() {
151
+     * Returns the from email.
152
+     */
153
+    public function get_from_address() {
154 154
 
155 155
         $from_address = wpinv_get_option( 'email_from', $this->default_from_address() );
156 156
 
157
-		if ( ! is_email( $from_address ) ) {
158
-			$from_address =  $this->default_from_address();
157
+        if ( ! is_email( $from_address ) ) {
158
+            $from_address =  $this->default_from_address();
159 159
         }
160 160
         
161 161
         return $from_address;
@@ -163,75 +163,75 @@  discard block
 block discarded – undo
163 163
     }
164 164
 
165 165
     /**
166
-	 * The default emails from address.
167
-	 * 
168
-	 * Defaults to wordpress@$sitename
169
-	 * Some hosts will block outgoing mail from this address if it doesn't exist,
170
-	 * but there's no easy alternative. Defaulting to admin_email might appear to be
171
-	 * another option, but some hosts may refuse to relay mail from an unknown domain.
172
-	 *
173
-	 */
174
-	public function default_from_address() {
175
-
176
-		// Get the site domain and get rid of www.
177
-		$sitename = strtolower( $_SERVER['SERVER_NAME'] );
178
-		if ( substr( $sitename, 0, 4 ) == 'www.' ) {
179
-			$sitename = substr( $sitename, 4 );
180
-		}
181
-
182
-		$from_email = 'wordpress@' . $sitename;
183
-
184
-		return apply_filters( 'getpaid_default_from_address', $from_email );
166
+     * The default emails from address.
167
+     * 
168
+     * Defaults to wordpress@$sitename
169
+     * Some hosts will block outgoing mail from this address if it doesn't exist,
170
+     * but there's no easy alternative. Defaulting to admin_email might appear to be
171
+     * another option, but some hosts may refuse to relay mail from an unknown domain.
172
+     *
173
+     */
174
+    public function default_from_address() {
175
+
176
+        // Get the site domain and get rid of www.
177
+        $sitename = strtolower( $_SERVER['SERVER_NAME'] );
178
+        if ( substr( $sitename, 0, 4 ) == 'www.' ) {
179
+            $sitename = substr( $sitename, 4 );
180
+        }
181
+
182
+        $from_email = 'wordpress@' . $sitename;
183
+
184
+        return apply_filters( 'getpaid_default_from_address', $from_email );
185 185
 
186 186
     }
187 187
     
188 188
     /**
189
-	 * Get the email reply-to.
190
-	 *
191
-	 *
192
-	 * @return string The email reply-to address.
193
-	 */
194
-	public function get_reply_to() {
189
+     * Get the email reply-to.
190
+     *
191
+     *
192
+     * @return string The email reply-to address.
193
+     */
194
+    public function get_reply_to() {
195 195
 
196
-		$reply_to = wpinv_get_admin_email();
196
+        $reply_to = wpinv_get_admin_email();
197 197
 
198
-		if ( ! is_email( $reply_to ) ) {
199
-			$reply_to =  get_option( 'admin_email' );
200
-		}
198
+        if ( ! is_email( $reply_to ) ) {
199
+            $reply_to =  get_option( 'admin_email' );
200
+        }
201 201
 
202
-		return $reply_to;
202
+        return $reply_to;
203 203
     }
204 204
     
205 205
     /**
206
-	 * Get the email content type.
207
-	 *
208
-	 */
209
-	public function get_content_type() {
210
-		return apply_filters( 'getpaid_email_content_type', 'text/html', $this );
206
+     * Get the email content type.
207
+     *
208
+     */
209
+    public function get_content_type() {
210
+        return apply_filters( 'getpaid_email_content_type', 'text/html', $this );
211 211
     }
212 212
     
213 213
     /**
214
-	 * Ensures that our email messages are not messed up by template plugins.
215
-	 *
216
-	 * @return array wp_mail_data.
217
-	 */
218
-	public function ensure_email_content( $args ) {
219
-		$args['message'] = $this->wp_mail_data['email'];
220
-		return $args;
214
+     * Ensures that our email messages are not messed up by template plugins.
215
+     *
216
+     * @return array wp_mail_data.
217
+     */
218
+    public function ensure_email_content( $args ) {
219
+        $args['message'] = $this->wp_mail_data['email'];
220
+        return $args;
221 221
     }
222 222
     
223 223
     /**
224
-	 * A little house keeping after an email is sent.
225
-	 *
226
- 	 */
227
-	public function after_sending() {
224
+     * A little house keeping after an email is sent.
225
+     *
226
+     */
227
+    public function after_sending() {
228 228
 
229 229
         do_action( 'getpaid_after_send_email', $this->wp_mail_data );
230
-		remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 );
231
-		remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 );
232
-		remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 );
233
-		remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 );
230
+        remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 );
231
+        remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 );
232
+        remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 );
233
+        remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 );
234 234
 
235
-	}
235
+    }
236 236
 
237 237
 }
Please login to merge, or discard this patch.
Spacing   +41 added lines, -41 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
  * This function is responsible for sending emails.
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * 
33 33
      * @return bool
34 34
 	 */
35
-	public function send( $to, $subject, $email, $attachments = array() ) {
35
+	public function send($to, $subject, $email, $attachments = array()) {
36 36
 
37 37
 		/*
38 38
 		 * Allow to filter data on per-email basis.
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
 		$data = apply_filters(
41 41
 			'getpaid_email_data',
42 42
 			array(
43
-				'to'          => array_filter( array_unique( wpinv_parse_list( $to ) ) ),
44
-				'subject'     => htmlspecialchars_decode( strip_tags( $subject ), ENT_QUOTES ),
45
-				'email'       => apply_filters( 'wpinv_mail_content', $email ),
43
+				'to'          => array_filter(array_unique(wpinv_parse_list($to))),
44
+				'subject'     => htmlspecialchars_decode(strip_tags($subject), ENT_QUOTES),
45
+				'email'       => apply_filters('wpinv_mail_content', $email),
46 46
 				'headers'     => $this->get_headers(),
47 47
 				'attachments' => $attachments,
48 48
 			),
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 		);
51 51
 
52 52
         // Remove slashes.
53
-        $data               = (array) wp_unslash( $data );
53
+        $data = (array) wp_unslash($data);
54 54
 
55 55
         // Cache it.
56 56
 		$this->wp_mail_data = $data;
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 
61 61
         $result = false;
62 62
 
63
-        foreach ( $this->wp_mail_data['to'] as $to ) {
64
-			$result = $this->_send( $to, $data );
63
+        foreach ($this->wp_mail_data['to'] as $to) {
64
+			$result = $this->_send($to, $data);
65 65
         }
66 66
 
67 67
 		// Remove our hooks.
@@ -82,24 +82,24 @@  discard block
 block discarded – undo
82 82
      * 
83 83
      * @return bool
84 84
 	 */
85
-	protected function _send( $to, $data ) {
85
+	protected function _send($to, $data) {
86 86
 
87 87
 		// Prepare the sending function.
88
-		$sending_function = apply_filters( 'getpaid_email_email_sending_function', 'wp_mail' );
88
+		$sending_function = apply_filters('getpaid_email_email_sending_function', 'wp_mail');
89 89
 
90 90
 		// Send the actual email.
91 91
 		$result = call_user_func(
92 92
 			$sending_function,
93 93
 			$to,
94
-			html_entity_decode( $data['subject'], ENT_QUOTES, get_bloginfo( 'charset' ) ),
94
+			html_entity_decode($data['subject'], ENT_QUOTES, get_bloginfo('charset')),
95 95
 			$data['email'],
96 96
 			$data['headers'],
97 97
 			$data['attachments']
98 98
 		);
99 99
 
100
-		if ( ! $result ) {
101
-			$log_message = wp_sprintf( __( "\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing' ), date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), $to, $data['subject'] );
102
-			wpinv_error_log( $log_message, __( 'Email from Invoicing plugin failed to send', 'invoicing' ), __FILE__, __LINE__ );
100
+		if (!$result) {
101
+			$log_message = wp_sprintf(__("\nTime: %s\nTo: %s\nSubject: %s\n", 'invoicing'), date_i18n('F j Y H:i:s', current_time('timestamp')), $to, $data['subject']);
102
+			wpinv_error_log($log_message, __('Email from Invoicing plugin failed to send', 'invoicing'), __FILE__, __LINE__);
103 103
 		}
104 104
 
105 105
 		return $result;
@@ -112,9 +112,9 @@  discard block
 block discarded – undo
112 112
 
113 113
 		$name       = $this->get_from_name();
114 114
 		$reply_to   = $this->get_reply_to();
115
-		$headers    = array( "Reply-To:$name <$reply_to>" );
115
+		$headers    = array("Reply-To:$name <$reply_to>");
116 116
 
117
-		return apply_filters( 'getpaid_email_headers',  $headers, $this );
117
+		return apply_filters('getpaid_email_headers', $headers, $this);
118 118
 
119 119
 	}
120 120
 
@@ -125,11 +125,11 @@  discard block
 block discarded – undo
125 125
 	 */
126 126
 	public function before_sending() {
127 127
 
128
-        do_action( 'getpaid_before_send_email', $this );
129
-		add_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 );
130
-		add_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 );
131
-		add_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 );
132
-		add_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 );
128
+        do_action('getpaid_before_send_email', $this);
129
+		add_filter('wp_mail_from', array($this, 'get_from_address'), 1000);
130
+		add_filter('wp_mail_from_name', array($this, 'get_from_name'), 1000);
131
+		add_filter('wp_mail_content_type', array($this, 'get_content_type'), 1000);
132
+		add_filter('wp_mail', array($this, 'ensure_email_content'), 1000);
133 133
 
134 134
 	}
135 135
 
@@ -138,13 +138,13 @@  discard block
 block discarded – undo
138 138
 	 */
139 139
 	public function get_from_name() {
140 140
 
141
-        $from_name = wpinv_get_option( 'email_from_name', get_bloginfo( 'name' ) );
141
+        $from_name = wpinv_get_option('email_from_name', get_bloginfo('name'));
142 142
 
143
-		if ( empty( $from_name ) ) {
144
-			$from_name =  get_bloginfo( 'name' );
143
+		if (empty($from_name)) {
144
+			$from_name = get_bloginfo('name');
145 145
         }
146 146
 
147
-		return wp_specialchars_decode( $from_name, ENT_QUOTES );
147
+		return wp_specialchars_decode($from_name, ENT_QUOTES);
148 148
     }
149 149
 
150 150
     /**
@@ -152,10 +152,10 @@  discard block
 block discarded – undo
152 152
 	 */
153 153
 	public function get_from_address() {
154 154
 
155
-        $from_address = wpinv_get_option( 'email_from', $this->default_from_address() );
155
+        $from_address = wpinv_get_option('email_from', $this->default_from_address());
156 156
 
157
-		if ( ! is_email( $from_address ) ) {
158
-			$from_address =  $this->default_from_address();
157
+		if (!is_email($from_address)) {
158
+			$from_address = $this->default_from_address();
159 159
         }
160 160
         
161 161
         return $from_address;
@@ -174,14 +174,14 @@  discard block
 block discarded – undo
174 174
 	public function default_from_address() {
175 175
 
176 176
 		// Get the site domain and get rid of www.
177
-		$sitename = strtolower( $_SERVER['SERVER_NAME'] );
178
-		if ( substr( $sitename, 0, 4 ) == 'www.' ) {
179
-			$sitename = substr( $sitename, 4 );
177
+		$sitename = strtolower($_SERVER['SERVER_NAME']);
178
+		if (substr($sitename, 0, 4) == 'www.') {
179
+			$sitename = substr($sitename, 4);
180 180
 		}
181 181
 
182 182
 		$from_email = 'wordpress@' . $sitename;
183 183
 
184
-		return apply_filters( 'getpaid_default_from_address', $from_email );
184
+		return apply_filters('getpaid_default_from_address', $from_email);
185 185
 
186 186
     }
187 187
     
@@ -195,8 +195,8 @@  discard block
 block discarded – undo
195 195
 
196 196
 		$reply_to = wpinv_get_admin_email();
197 197
 
198
-		if ( ! is_email( $reply_to ) ) {
199
-			$reply_to =  get_option( 'admin_email' );
198
+		if (!is_email($reply_to)) {
199
+			$reply_to = get_option('admin_email');
200 200
 		}
201 201
 
202 202
 		return $reply_to;
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
 	 *
208 208
 	 */
209 209
 	public function get_content_type() {
210
-		return apply_filters( 'getpaid_email_content_type', 'text/html', $this );
210
+		return apply_filters('getpaid_email_content_type', 'text/html', $this);
211 211
     }
212 212
     
213 213
     /**
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 	 *
216 216
 	 * @return array wp_mail_data.
217 217
 	 */
218
-	public function ensure_email_content( $args ) {
218
+	public function ensure_email_content($args) {
219 219
 		$args['message'] = $this->wp_mail_data['email'];
220 220
 		return $args;
221 221
     }
@@ -226,11 +226,11 @@  discard block
 block discarded – undo
226 226
  	 */
227 227
 	public function after_sending() {
228 228
 
229
-        do_action( 'getpaid_after_send_email', $this->wp_mail_data );
230
-		remove_filter( 'wp_mail_from', array( $this, 'get_from_address' ), 1000 );
231
-		remove_filter( 'wp_mail_from_name', array( $this, 'get_from_name' ), 1000 );
232
-		remove_filter( 'wp_mail_content_type', array( $this, 'get_content_type' ), 1000 );
233
-		remove_filter( 'wp_mail', array( $this, 'ensure_email_content' ), 1000 );
229
+        do_action('getpaid_after_send_email', $this->wp_mail_data);
230
+		remove_filter('wp_mail_from', array($this, 'get_from_address'), 1000);
231
+		remove_filter('wp_mail_from_name', array($this, 'get_from_name'), 1000);
232
+		remove_filter('wp_mail_content_type', array($this, 'get_content_type'), 1000);
233
+		remove_filter('wp_mail', array($this, 'ensure_email_content'), 1000);
234 234
 
235 235
 	}
236 236
 
Please login to merge, or discard this patch.
includes/subscription-functions.php 2 patches
Indentation   +307 added lines, -307 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
  */
51 51
 function getpaid_get_invoice_subscription_group( $invoice_id, $subscription_id ) {
52 52
     $subscription_groups = getpaid_get_invoice_subscription_groups( $invoice_id );
53
-	$matching_group      = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) );
53
+    $matching_group      = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) );
54 54
     return reset( $matching_group );
55 55
 }
56 56
 
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
  */
64 64
 function getpaid_get_subscription( $subscription ) {
65 65
 
66
-	if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) {
67
-		$subscription = new WPInv_Subscription( $subscription );
68
-	}
66
+    if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) {
67
+        $subscription = new WPInv_Subscription( $subscription );
68
+    }
69 69
 
70
-	return $subscription->exists() ? $subscription : false;
70
+    return $subscription->exists() ? $subscription : false;
71 71
 }
72 72
 
73 73
 /**
@@ -81,28 +81,28 @@  discard block
 block discarded – undo
81 81
  */
82 82
 function getpaid_get_subscriptions( $args = array(), $return = 'results' ) {
83 83
 
84
-	// Do not retrieve all fields if we just want the count.
85
-	if ( 'count' == $return ) {
86
-		$args['fields'] = 'id';
87
-		$args['number'] = 1;
88
-	}
84
+    // Do not retrieve all fields if we just want the count.
85
+    if ( 'count' == $return ) {
86
+        $args['fields'] = 'id';
87
+        $args['number'] = 1;
88
+    }
89 89
 
90
-	// Do not count all matches if we just want the results.
91
-	if ( 'results' == $return ) {
92
-		$args['count_total'] = false;
93
-	}
90
+    // Do not count all matches if we just want the results.
91
+    if ( 'results' == $return ) {
92
+        $args['count_total'] = false;
93
+    }
94 94
 
95
-	$query = new GetPaid_Subscriptions_Query( $args );
95
+    $query = new GetPaid_Subscriptions_Query( $args );
96 96
 
97
-	if ( 'results' == $return ) {
98
-		return $query->get_results();
99
-	}
97
+    if ( 'results' == $return ) {
98
+        return $query->get_results();
99
+    }
100 100
 
101
-	if ( 'count' == $return ) {
102
-		return $query->get_total();
103
-	}
101
+    if ( 'count' == $return ) {
102
+        return $query->get_total();
103
+    }
104 104
 
105
-	return $query;
105
+    return $query;
106 106
 }
107 107
 
108 108
 /**
@@ -112,18 +112,18 @@  discard block
 block discarded – undo
112 112
  */
113 113
 function getpaid_get_subscription_statuses() {
114 114
 
115
-	return apply_filters(
116
-		'getpaid_get_subscription_statuses',
117
-		array(
118
-			'pending'    => __( 'Pending', 'invoicing' ),
119
-			'trialling'  => __( 'Trialing', 'invoicing' ),
120
-			'active'     => __( 'Active', 'invoicing' ),
121
-			'failing'    => __( 'Failing', 'invoicing' ),
122
-			'expired'    => __( 'Expired', 'invoicing' ),
123
-			'completed'  => __( 'Complete', 'invoicing' ),
124
-			'cancelled'  => __( 'Cancelled', 'invoicing' ),
125
-		)
126
-	);
115
+    return apply_filters(
116
+        'getpaid_get_subscription_statuses',
117
+        array(
118
+            'pending'    => __( 'Pending', 'invoicing' ),
119
+            'trialling'  => __( 'Trialing', 'invoicing' ),
120
+            'active'     => __( 'Active', 'invoicing' ),
121
+            'failing'    => __( 'Failing', 'invoicing' ),
122
+            'expired'    => __( 'Expired', 'invoicing' ),
123
+            'completed'  => __( 'Complete', 'invoicing' ),
124
+            'cancelled'  => __( 'Cancelled', 'invoicing' ),
125
+        )
126
+    );
127 127
 
128 128
 }
129 129
 
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
  * @return string
134 134
  */
135 135
 function getpaid_get_subscription_status_label( $status ) {
136
-	$statuses = getpaid_get_subscription_statuses();
137
-	return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) );
136
+    $statuses = getpaid_get_subscription_statuses();
137
+    return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) );
138 138
 }
139 139
 
140 140
 /**
@@ -144,18 +144,18 @@  discard block
 block discarded – undo
144 144
  */
145 145
 function getpaid_get_subscription_status_classes() {
146 146
 
147
-	return apply_filters(
148
-		'getpaid_get_subscription_status_classes',
149
-		array(
150
-			'pending'    => 'badge-dark',
151
-			'trialling'  => 'badge-info',
152
-			'active'     => 'badge-success',
153
-			'failing'    => 'badge-warning',
154
-			'expired'    => 'badge-danger',
155
-			'completed'  => 'badge-primary',
156
-			'cancelled'  => 'badge-secondary',
157
-		)
158
-	);
147
+    return apply_filters(
148
+        'getpaid_get_subscription_status_classes',
149
+        array(
150
+            'pending'    => 'badge-dark',
151
+            'trialling'  => 'badge-info',
152
+            'active'     => 'badge-success',
153
+            'failing'    => 'badge-warning',
154
+            'expired'    => 'badge-danger',
155
+            'completed'  => 'badge-primary',
156
+            'cancelled'  => 'badge-secondary',
157
+        )
158
+    );
159 159
 
160 160
 }
161 161
 
@@ -166,15 +166,15 @@  discard block
 block discarded – undo
166 166
  */
167 167
 function getpaid_get_subscription_status_counts( $args = array() ) {
168 168
 
169
-	$statuses = array_keys( getpaid_get_subscription_statuses() );
170
-	$counts   = array();
169
+    $statuses = array_keys( getpaid_get_subscription_statuses() );
170
+    $counts   = array();
171 171
 
172
-	foreach ( $statuses as $status ) {
173
-		$_args             = wp_parse_args( "status=$status", $args );
174
-		$counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' );
175
-	}
172
+    foreach ( $statuses as $status ) {
173
+        $_args             = wp_parse_args( "status=$status", $args );
174
+        $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' );
175
+    }
176 176
 
177
-	return $counts;
177
+    return $counts;
178 178
 
179 179
 }
180 180
 
@@ -185,32 +185,32 @@  discard block
 block discarded – undo
185 185
  */
186 186
 function getpaid_get_subscription_periods() {
187 187
 
188
-	return apply_filters(
189
-		'getpaid_get_subscription_periods',
190
-		array(
188
+    return apply_filters(
189
+        'getpaid_get_subscription_periods',
190
+        array(
191 191
 
192
-			'day'   => array(
193
-				'singular' => __( '%s day', 'invoicing' ),
194
-				'plural'   => __( '%d days', 'invoicing' ),
195
-			),
192
+            'day'   => array(
193
+                'singular' => __( '%s day', 'invoicing' ),
194
+                'plural'   => __( '%d days', 'invoicing' ),
195
+            ),
196 196
 
197
-			'week'   => array(
198
-				'singular' => __( '%s week', 'invoicing' ),
199
-				'plural'   => __( '%d weeks', 'invoicing' ),
200
-			),
197
+            'week'   => array(
198
+                'singular' => __( '%s week', 'invoicing' ),
199
+                'plural'   => __( '%d weeks', 'invoicing' ),
200
+            ),
201 201
 
202
-			'month'   => array(
203
-				'singular' => __( '%s month', 'invoicing' ),
204
-				'plural'   => __( '%d months', 'invoicing' ),
205
-			),
202
+            'month'   => array(
203
+                'singular' => __( '%s month', 'invoicing' ),
204
+                'plural'   => __( '%d months', 'invoicing' ),
205
+            ),
206 206
 
207
-			'year'   => array(
208
-				'singular' => __( '%s year', 'invoicing' ),
209
-				'plural'   => __( '%d years', 'invoicing' ),
210
-			),
207
+            'year'   => array(
208
+                'singular' => __( '%s year', 'invoicing' ),
209
+                'plural'   => __( '%d years', 'invoicing' ),
210
+            ),
211 211
 
212
-		)
213
-	);
212
+        )
213
+    );
214 214
 
215 215
 }
216 216
 
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
  * @return int
222 222
  */
223 223
 function getpaid_get_subscription_trial_period_interval( $trial_period ) {
224
-	return (int) preg_replace( '/[^0-9]/', '', $trial_period );
224
+    return (int) preg_replace( '/[^0-9]/', '', $trial_period );
225 225
 }
226 226
 
227 227
 /**
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
  * @return string
232 232
  */
233 233
 function getpaid_get_subscription_trial_period_period( $trial_period ) {
234
-	return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) );
234
+    return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) );
235 235
 }
236 236
 
237 237
 /**
@@ -242,8 +242,8 @@  discard block
 block discarded – undo
242 242
  * @return string
243 243
  */
244 244
 function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) {
245
-	$label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label(  $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix );
246
-	return strtolower( sanitize_text_field( $label ) );
245
+    $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label(  $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix );
246
+    return strtolower( sanitize_text_field( $label ) );
247 247
 }
248 248
 
249 249
 /**
@@ -254,22 +254,22 @@  discard block
 block discarded – undo
254 254
  */
255 255
 function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) {
256 256
 
257
-	$periods = getpaid_get_subscription_periods();
258
-	$period  = strtolower( $period );
257
+    $periods = getpaid_get_subscription_periods();
258
+    $period  = strtolower( $period );
259 259
 
260
-	if ( isset( $periods[ $period ] ) ) {
261
-		return sprintf( $periods[ $period ]['singular'], $singular_prefix );
262
-	}
260
+    if ( isset( $periods[ $period ] ) ) {
261
+        return sprintf( $periods[ $period ]['singular'], $singular_prefix );
262
+    }
263 263
 
264
-	// Backwards compatibility.
265
-	foreach ( $periods as $key => $data ) {
266
-		if ( strpos( $key, $period ) === 0 ) {
267
-			return sprintf( $data['singular'], $singular_prefix );
268
-		}
269
-	}
264
+    // Backwards compatibility.
265
+    foreach ( $periods as $key => $data ) {
266
+        if ( strpos( $key, $period ) === 0 ) {
267
+            return sprintf( $data['singular'], $singular_prefix );
268
+        }
269
+    }
270 270
 
271
-	// Invalid string.
272
-	return '';
271
+    // Invalid string.
272
+    return '';
273 273
 }
274 274
 
275 275
 /**
@@ -281,22 +281,22 @@  discard block
 block discarded – undo
281 281
  */
282 282
 function getpaid_get_plural_subscription_period_label( $period, $interval ) {
283 283
 
284
-	$periods = getpaid_get_subscription_periods();
285
-	$period  = strtolower( $period );
284
+    $periods = getpaid_get_subscription_periods();
285
+    $period  = strtolower( $period );
286 286
 
287
-	if ( isset( $periods[ $period ] ) ) {
288
-		return sprintf( $periods[ $period ]['plural'], $interval );
289
-	}
287
+    if ( isset( $periods[ $period ] ) ) {
288
+        return sprintf( $periods[ $period ]['plural'], $interval );
289
+    }
290 290
 
291
-	// Backwards compatibility.
292
-	foreach ( $periods as $key => $data ) {
293
-		if ( strpos( $key, $period ) === 0 ) {
294
-			return sprintf( $data['plural'], $interval );
295
-		}
296
-	}
291
+    // Backwards compatibility.
292
+    foreach ( $periods as $key => $data ) {
293
+        if ( strpos( $key, $period ) === 0 ) {
294
+            return sprintf( $data['plural'], $interval );
295
+        }
296
+    }
297 297
 
298
-	// Invalid string.
299
-	return '';
298
+    // Invalid string.
299
+    return '';
300 300
 }
301 301
 
302 302
 /**
@@ -307,101 +307,101 @@  discard block
 block discarded – undo
307 307
  */
308 308
 function getpaid_get_formatted_subscription_amount( $subscription ) {
309 309
 
310
-	$initial    = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() );
311
-	$recurring  = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() );
312
-	$period     = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' );
313
-	$bill_times = $subscription->get_bill_times();
310
+    $initial    = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() );
311
+    $recurring  = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() );
312
+    $period     = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' );
313
+    $bill_times = $subscription->get_bill_times();
314 314
 
315
-	if ( ! empty( $bill_times ) ) {
316
-		$bill_times = $subscription->get_frequency() * $bill_times;
317
-		$bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times );
318
-	}
315
+    if ( ! empty( $bill_times ) ) {
316
+        $bill_times = $subscription->get_frequency() * $bill_times;
317
+        $bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times );
318
+    }
319 319
 
320
-	// Trial periods.
321
-	if ( $subscription->has_trial_period() ) {
320
+    // Trial periods.
321
+    if ( $subscription->has_trial_period() ) {
322 322
 
323
-		$trial_period   = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() );
324
-		$trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() );
323
+        $trial_period   = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() );
324
+        $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() );
325 325
 
326
-		if ( empty( $bill_times ) ) {
326
+        if ( empty( $bill_times ) ) {
327 327
 
328
-			return sprintf(
328
+            return sprintf(
329 329
 
330
-				// translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period
331
-				_x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ),
332
-				$initial,
333
-				getpaid_get_subscription_period_label( $trial_period, $trial_interval ),
334
-				$recurring,
335
-				$period
330
+                // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period
331
+                _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ),
332
+                $initial,
333
+                getpaid_get_subscription_period_label( $trial_period, $trial_interval ),
334
+                $recurring,
335
+                $period
336 336
 	
337
-			);
337
+            );
338 338
 
339
-		}
339
+        }
340 340
 
341
-		return sprintf(
341
+        return sprintf(
342 342
 
343
-			// translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times
344
-			_x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ),
345
-			$initial,
346
-			getpaid_get_subscription_period_label( $trial_period, $trial_interval ),
347
-			$recurring,
348
-			$period,
349
-			$bill_times
350
-		);
343
+            // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times
344
+            _x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ),
345
+            $initial,
346
+            getpaid_get_subscription_period_label( $trial_period, $trial_interval ),
347
+            $recurring,
348
+            $period,
349
+            $bill_times
350
+        );
351 351
 
352
-	}
352
+    }
353 353
 
354
-	if ( $initial != $recurring ) {
354
+    if ( $initial != $recurring ) {
355 355
 
356
-		if ( empty( $bill_times ) ) {
356
+        if ( empty( $bill_times ) ) {
357 357
 
358
-			return sprintf(
358
+            return sprintf(
359 359
 
360
-				// translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period
361
-				_x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ),
362
-				$initial,
363
-				$recurring,
364
-				$period
360
+                // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period
361
+                _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ),
362
+                $initial,
363
+                $recurring,
364
+                $period
365 365
 	
366
-			);
366
+            );
367 367
 
368
-		}
368
+        }
369 369
 
370
-		return sprintf(
370
+        return sprintf(
371 371
 
372
-			// translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times
373
-			_x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ),
374
-			$initial,
375
-			$recurring,
376
-			$period,
377
-			$bill_times
372
+            // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times
373
+            _x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ),
374
+            $initial,
375
+            $recurring,
376
+            $period,
377
+            $bill_times
378 378
 
379
-		);
379
+        );
380 380
 
381
-	}
381
+    }
382 382
 
383
-	if ( empty( $bill_times ) ) {
383
+    if ( empty( $bill_times ) ) {
384 384
 
385
-		return sprintf(
385
+        return sprintf(
386 386
 
387
-			// translators: $1: is the recurring amount, $2: is the recurring period
388
-			_x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ),
389
-			$initial,
390
-			$period
387
+            // translators: $1: is the recurring amount, $2: is the recurring period
388
+            _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ),
389
+            $initial,
390
+            $period
391 391
 	
392
-		);
392
+        );
393 393
 
394
-	}
394
+    }
395 395
 
396
-	return sprintf(
396
+    return sprintf(
397 397
 
398
-		// translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period
399
-		_x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ),
400
-		$bill_times,
401
-		$initial,
402
-		$period
398
+        // translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period
399
+        _x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ),
400
+        $bill_times,
401
+        $initial,
402
+        $period
403 403
 
404
-	);
404
+    );
405 405
 
406 406
 }
407 407
 
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
  * @return WPInv_Subscription|false
413 413
  */
414 414
 function getpaid_get_invoice_subscription( $invoice ) {
415
-	return getpaid_subscriptions()->get_invoice_subscription( $invoice );
415
+    return getpaid_subscriptions()->get_invoice_subscription( $invoice );
416 416
 }
417 417
 
418 418
 /**
@@ -421,10 +421,10 @@  discard block
 block discarded – undo
421 421
  * @param WPInv_Invoice $invoice
422 422
  */
423 423
 function getpaid_activate_invoice_subscription( $invoice ) {
424
-	$subscription = getpaid_get_invoice_subscription( $invoice );
425
-	if ( is_a( $subscription, 'WPInv_Subscription' ) ) {
426
-		$subscription->activate();
427
-	}
424
+    $subscription = getpaid_get_invoice_subscription( $invoice );
425
+    if ( is_a( $subscription, 'WPInv_Subscription' ) ) {
426
+        $subscription->activate();
427
+    }
428 428
 }
429 429
 
430 430
 /**
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
  * @return WPInv_Subscriptions
434 434
  */
435 435
 function getpaid_subscriptions() {
436
-	return getpaid()->get( 'subscriptions' );
436
+    return getpaid()->get( 'subscriptions' );
437 437
 }
438 438
 
439 439
 /**
@@ -452,15 +452,15 @@  discard block
 block discarded – undo
452 452
         return false;
453 453
     }
454 454
 
455
-	// Fetch the invoice subscription.
456
-	$subscription = getpaid_get_subscriptions(
457
-		array(
458
-			'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(),
459
-			'number'     => 1,
460
-		)
461
-	);
455
+    // Fetch the invoice subscription.
456
+    $subscription = getpaid_get_subscriptions(
457
+        array(
458
+            'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(),
459
+            'number'     => 1,
460
+        )
461
+    );
462 462
 
463
-	return empty( $subscription ) ? false : $subscription[0];
463
+    return empty( $subscription ) ? false : $subscription[0];
464 464
 
465 465
 }
466 466
 
@@ -477,48 +477,48 @@  discard block
 block discarded – undo
477 477
  */
478 478
 function getpaid_get_recurring_item_key( $cart_item ) {
479 479
 
480
-	$cart_key     = 'renews_';
481
-	$interval     = $cart_item->get_recurring_interval();
482
-	$period       = $cart_item->get_recurring_period( true );
483
-	$length       = $cart_item->get_recurring_limit() * $interval;
484
-	$trial_period = $cart_item->get_trial_period( true );
485
-	$trial_length = $cart_item->get_trial_interval();
486
-
487
-	// First start with the billing interval and period
488
-	switch ( $interval ) {
489
-		case 1 :
490
-			if ( 'day' == $period ) {
491
-				$cart_key .= 'daily';
492
-			} else {
493
-				$cart_key .= sprintf( '%sly', $period );
494
-			}
495
-			break;
496
-		case 2 :
497
-			$cart_key .= sprintf( 'every_2nd_%s', $period );
498
-			break;
499
-		case 3 :
500
-			$cart_key .= sprintf( 'every_3rd_%s', $period );
501
-		break;
502
-		default:
503
-			$cart_key .= sprintf( 'every_%dth_%s', $interval, $period );
504
-			break;
505
-	}
506
-
507
-	// Maybe add the optional maximum billing periods...
508
-	if ( $length > 0 ) {
509
-		$cart_key .= '_for_';
510
-		$cart_key .= sprintf( '%d_%s', $length, $period );
511
-		if ( $length > 1 ) {
512
-			$cart_key .= 's';
513
-		}
514
-	}
515
-
516
-	// And an optional free trial.
517
-	if ( $cart_item->has_free_trial() ) {
518
-		$cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period );
519
-	}
520
-
521
-	return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item );
480
+    $cart_key     = 'renews_';
481
+    $interval     = $cart_item->get_recurring_interval();
482
+    $period       = $cart_item->get_recurring_period( true );
483
+    $length       = $cart_item->get_recurring_limit() * $interval;
484
+    $trial_period = $cart_item->get_trial_period( true );
485
+    $trial_length = $cart_item->get_trial_interval();
486
+
487
+    // First start with the billing interval and period
488
+    switch ( $interval ) {
489
+        case 1 :
490
+            if ( 'day' == $period ) {
491
+                $cart_key .= 'daily';
492
+            } else {
493
+                $cart_key .= sprintf( '%sly', $period );
494
+            }
495
+            break;
496
+        case 2 :
497
+            $cart_key .= sprintf( 'every_2nd_%s', $period );
498
+            break;
499
+        case 3 :
500
+            $cart_key .= sprintf( 'every_3rd_%s', $period );
501
+        break;
502
+        default:
503
+            $cart_key .= sprintf( 'every_%dth_%s', $interval, $period );
504
+            break;
505
+    }
506
+
507
+    // Maybe add the optional maximum billing periods...
508
+    if ( $length > 0 ) {
509
+        $cart_key .= '_for_';
510
+        $cart_key .= sprintf( '%d_%s', $length, $period );
511
+        if ( $length > 1 ) {
512
+            $cart_key .= 's';
513
+        }
514
+    }
515
+
516
+    // And an optional free trial.
517
+    if ( $cart_item->has_free_trial() ) {
518
+        $cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period );
519
+    }
520
+
521
+    return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item );
522 522
 }
523 523
 
524 524
 /**
@@ -529,17 +529,17 @@  discard block
 block discarded – undo
529 529
  */
530 530
 function getpaid_get_subscription_groups( $invoice ) {
531 531
 
532
-	// Generate subscription groups.
533
-	$subscription_groups = array();
534
-	foreach ( $invoice->get_items() as $item ) {
532
+    // Generate subscription groups.
533
+    $subscription_groups = array();
534
+    foreach ( $invoice->get_items() as $item ) {
535 535
 
536
-		if ( $item->is_recurring() ) {
537
-			$subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item;
538
-		}
536
+        if ( $item->is_recurring() ) {
537
+            $subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item;
538
+        }
539 539
 
540
-	}
540
+    }
541 541
 
542
-	return $subscription_groups;
542
+    return $subscription_groups;
543 543
 }
544 544
 
545 545
 /**
@@ -553,57 +553,57 @@  discard block
 block discarded – undo
553 553
  */
554 554
 function getpaid_calculate_subscription_totals( $invoice ) {
555 555
 
556
-	// Generate subscription groups.
557
-	$subscription_groups = getpaid_get_subscription_groups( $invoice );
556
+    // Generate subscription groups.
557
+    $subscription_groups = getpaid_get_subscription_groups( $invoice );
558 558
 
559
-	// Now let's calculate the totals for each group of subscriptions
560
-	$subscription_totals = array();
559
+    // Now let's calculate the totals for each group of subscriptions
560
+    $subscription_totals = array();
561 561
 
562
-	foreach ( $subscription_groups as $subscription_key => $items ) {
562
+    foreach ( $subscription_groups as $subscription_key => $items ) {
563 563
 
564
-		if ( empty( $subscription_totals[ $subscription_key ] ) ) {
564
+        if ( empty( $subscription_totals[ $subscription_key ] ) ) {
565 565
 
566
-			$subscription_totals[ $subscription_key ] = array(
567
-				'initial_total'   => 0,
568
-				'recurring_total' => 0,
569
-				'items'           => array(),
570
-				'trialling'       => false,
571
-			);
566
+            $subscription_totals[ $subscription_key ] = array(
567
+                'initial_total'   => 0,
568
+                'recurring_total' => 0,
569
+                'items'           => array(),
570
+                'trialling'       => false,
571
+            );
572 572
 
573
-		}
573
+        }
574 574
 
575
-		/**
576
-		 * Get the totals of the group.
577
-		 * @var GetPaid_Form_Item $item
578
-		 */
579
-		foreach ( $items as $item ) {
575
+        /**
576
+         * Get the totals of the group.
577
+         * @var GetPaid_Form_Item $item
578
+         */
579
+        foreach ( $items as $item ) {
580 580
 
581
-			$subscription_totals[ $subscription_key ]['items'][$item->get_id()]  = $item->prepare_data_for_saving();
582
-			$subscription_totals[ $subscription_key ]['item_id']                 = $item->get_id();
583
-			$subscription_totals[ $subscription_key ]['period']                  = $item->get_recurring_period( true );
584
-			$subscription_totals[ $subscription_key ]['interval']                = $item->get_recurring_interval();
585
-			$subscription_totals[ $subscription_key ]['initial_total']          += $item->get_sub_total() + $item->item_tax - $item->item_discount;
586
-			$subscription_totals[ $subscription_key ]['recurring_total']        += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount;
587
-			$subscription_totals[ $subscription_key ]['recurring_limit']         = $item->get_recurring_limit();
581
+            $subscription_totals[ $subscription_key ]['items'][$item->get_id()]  = $item->prepare_data_for_saving();
582
+            $subscription_totals[ $subscription_key ]['item_id']                 = $item->get_id();
583
+            $subscription_totals[ $subscription_key ]['period']                  = $item->get_recurring_period( true );
584
+            $subscription_totals[ $subscription_key ]['interval']                = $item->get_recurring_interval();
585
+            $subscription_totals[ $subscription_key ]['initial_total']          += $item->get_sub_total() + $item->item_tax - $item->item_discount;
586
+            $subscription_totals[ $subscription_key ]['recurring_total']        += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount;
587
+            $subscription_totals[ $subscription_key ]['recurring_limit']         = $item->get_recurring_limit();
588 588
 
589
-			// Calculate the next renewal date.
590
-			$period       = $item->get_recurring_period( true );
591
-			$interval     = $item->get_recurring_interval();
589
+            // Calculate the next renewal date.
590
+            $period       = $item->get_recurring_period( true );
591
+            $interval     = $item->get_recurring_interval();
592 592
 
593
-			// If the subscription item has a trial period...
594
-			if ( $item->has_free_trial() ) {
595
-				$period   = $item->get_trial_period( true );
596
-				$interval = $item->get_trial_interval();
597
-				$subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period;
598
-			}
593
+            // If the subscription item has a trial period...
594
+            if ( $item->has_free_trial() ) {
595
+                $period   = $item->get_trial_period( true );
596
+                $interval = $item->get_trial_interval();
597
+                $subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period;
598
+            }
599 599
 
600
-			$subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) );
600
+            $subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) );
601 601
 
602
-		}
602
+        }
603 603
 
604
-	}
604
+    }
605 605
 
606
-	return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice );
606
+    return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice );
607 607
 }
608 608
 
609 609
 /**
@@ -614,17 +614,17 @@  discard block
 block discarded – undo
614 614
  */
615 615
 function getpaid_should_group_subscriptions( $invoice ) {
616 616
 
617
-	$recurring_items = 0;
617
+    $recurring_items = 0;
618 618
 
619
-	foreach ( $invoice->get_items() as $item ) {
619
+    foreach ( $invoice->get_items() as $item ) {
620 620
 
621
-		if ( $item->is_recurring() ) {
622
-			$recurring_items ++;
623
-		}
621
+        if ( $item->is_recurring() ) {
622
+            $recurring_items ++;
623
+        }
624 624
 
625
-	}
625
+    }
626 626
 
627
-	return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice );
627
+    return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice );
628 628
 }
629 629
 
630 630
 /**
@@ -635,40 +635,40 @@  discard block
 block discarded – undo
635 635
  * @return int
636 636
  */
637 637
 function getpaid_count_subscription_invoices( $parent_invoice_id, $subscription_id = false ) {
638
-	global $wpdb;
638
+    global $wpdb;
639 639
 
640
-	$parent_invoice_id = (int) $parent_invoice_id;
640
+    $parent_invoice_id = (int) $parent_invoice_id;
641 641
 
642
-	if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) {
642
+    if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) {
643 643
 
644
-		return (int) $wpdb->get_var(
645
-			$wpdb->prepare(
646
-				"SELECT COUNT(ID) FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )",
647
-				$parent_invoice_id,
648
-				$parent_invoice_id
649
-			)
650
-		);
644
+        return (int) $wpdb->get_var(
645
+            $wpdb->prepare(
646
+                "SELECT COUNT(ID) FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )",
647
+                $parent_invoice_id,
648
+                $parent_invoice_id
649
+            )
650
+        );
651 651
 
652
-	}
652
+    }
653 653
 	
654
-	$invoice_ids = $wpdb->get_col(
655
-		$wpdb->prepare(
656
-			"SELECT ID FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )",
657
-			$parent_invoice_id,
658
-			$parent_invoice_id
659
-		)
660
-	);
654
+    $invoice_ids = $wpdb->get_col(
655
+        $wpdb->prepare(
656
+            "SELECT ID FROM $wpdb->posts WHERE ( post_parent=%d OR ID=%d ) AND post_status IN ( 'publish', 'wpi-processing', 'wpi-renewal' )",
657
+            $parent_invoice_id,
658
+            $parent_invoice_id
659
+        )
660
+    );
661 661
 
662
-	$count = 0;
662
+    $count = 0;
663 663
 
664
-	foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) {
664
+    foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) {
665 665
 
666
-		if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) {
667
-			$count ++;
668
-			continue;
669
-		}
666
+        if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) {
667
+            $count ++;
668
+            continue;
669
+        }
670 670
 
671
-	}
671
+    }
672 672
 
673
-	return $count;
673
+    return $count;
674 674
 }
Please login to merge, or discard this patch.
Spacing   +143 added lines, -143 removed lines patch added patch discarded remove patch
@@ -13,18 +13,18 @@  discard block
 block discarded – undo
13 13
  * @return      WPInv_Subscription[]|WPInv_Subscription|false
14 14
  * @since       2.3.0
15 15
  */
16
-function getpaid_get_invoice_subscriptions( $invoice ) {
16
+function getpaid_get_invoice_subscriptions($invoice) {
17 17
 
18 18
     // Retrieve subscription groups.
19
-    $subscription_ids = wp_list_pluck( getpaid_get_invoice_subscription_groups( $invoice->get_id() ), 'subscription_id' );
19
+    $subscription_ids = wp_list_pluck(getpaid_get_invoice_subscription_groups($invoice->get_id()), 'subscription_id');
20 20
 
21 21
     // No subscription groups, normal subscription.
22
-    if ( empty( $subscription_ids ) ) {
23
-        return getpaid_subscriptions()->get_invoice_subscription( $invoice );
22
+    if (empty($subscription_ids)) {
23
+        return getpaid_subscriptions()->get_invoice_subscription($invoice);
24 24
     }
25 25
 
26 26
     // Subscription groups.
27
-    return array_filter( array_map( 'getpaid_get_subscription', $subscription_ids ) );
27
+    return array_filter(array_map('getpaid_get_subscription', $subscription_ids));
28 28
 
29 29
 }
30 30
 
@@ -35,9 +35,9 @@  discard block
 block discarded – undo
35 35
  * @return      array
36 36
  * @since       2.3.0
37 37
  */
38
-function getpaid_get_invoice_subscription_groups( $invoice_id ) {
39
-    $subscription_groups = get_post_meta( $invoice_id, 'getpaid_subscription_groups', true );
40
-    return empty( $subscription_groups ) ? array() : $subscription_groups;
38
+function getpaid_get_invoice_subscription_groups($invoice_id) {
39
+    $subscription_groups = get_post_meta($invoice_id, 'getpaid_subscription_groups', true);
40
+    return empty($subscription_groups) ? array() : $subscription_groups;
41 41
 }
42 42
 
43 43
 /**
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
  * @return      array|false
49 49
  * @since       2.3.0
50 50
  */
51
-function getpaid_get_invoice_subscription_group( $invoice_id, $subscription_id ) {
52
-    $subscription_groups = getpaid_get_invoice_subscription_groups( $invoice_id );
53
-	$matching_group      = wp_list_filter( $subscription_groups, compact( 'subscription_id' ) );
54
-    return reset( $matching_group );
51
+function getpaid_get_invoice_subscription_group($invoice_id, $subscription_id) {
52
+    $subscription_groups = getpaid_get_invoice_subscription_groups($invoice_id);
53
+	$matching_group = wp_list_filter($subscription_groups, compact('subscription_id'));
54
+    return reset($matching_group);
55 55
 }
56 56
 
57 57
 /**
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
  * @since       2.3.0
62 62
  * @return WPInv_Subscription|false
63 63
  */
64
-function getpaid_get_subscription( $subscription ) {
64
+function getpaid_get_subscription($subscription) {
65 65
 
66
-	if ( ! is_a( $subscription, 'WPInv_Subscription' ) ) {
67
-		$subscription = new WPInv_Subscription( $subscription );
66
+	if (!is_a($subscription, 'WPInv_Subscription')) {
67
+		$subscription = new WPInv_Subscription($subscription);
68 68
 	}
69 69
 
70 70
 	return $subscription->exists() ? $subscription : false;
@@ -79,26 +79,26 @@  discard block
 block discarded – undo
79 79
  *
80 80
  * @return int|array|WPInv_Subscription[]|GetPaid_Subscriptions_Query
81 81
  */
82
-function getpaid_get_subscriptions( $args = array(), $return = 'results' ) {
82
+function getpaid_get_subscriptions($args = array(), $return = 'results') {
83 83
 
84 84
 	// Do not retrieve all fields if we just want the count.
85
-	if ( 'count' == $return ) {
85
+	if ('count' == $return) {
86 86
 		$args['fields'] = 'id';
87 87
 		$args['number'] = 1;
88 88
 	}
89 89
 
90 90
 	// Do not count all matches if we just want the results.
91
-	if ( 'results' == $return ) {
91
+	if ('results' == $return) {
92 92
 		$args['count_total'] = false;
93 93
 	}
94 94
 
95
-	$query = new GetPaid_Subscriptions_Query( $args );
95
+	$query = new GetPaid_Subscriptions_Query($args);
96 96
 
97
-	if ( 'results' == $return ) {
97
+	if ('results' == $return) {
98 98
 		return $query->get_results();
99 99
 	}
100 100
 
101
-	if ( 'count' == $return ) {
101
+	if ('count' == $return) {
102 102
 		return $query->get_total();
103 103
 	}
104 104
 
@@ -115,13 +115,13 @@  discard block
 block discarded – undo
115 115
 	return apply_filters(
116 116
 		'getpaid_get_subscription_statuses',
117 117
 		array(
118
-			'pending'    => __( 'Pending', 'invoicing' ),
119
-			'trialling'  => __( 'Trialing', 'invoicing' ),
120
-			'active'     => __( 'Active', 'invoicing' ),
121
-			'failing'    => __( 'Failing', 'invoicing' ),
122
-			'expired'    => __( 'Expired', 'invoicing' ),
123
-			'completed'  => __( 'Complete', 'invoicing' ),
124
-			'cancelled'  => __( 'Cancelled', 'invoicing' ),
118
+			'pending'    => __('Pending', 'invoicing'),
119
+			'trialling'  => __('Trialing', 'invoicing'),
120
+			'active'     => __('Active', 'invoicing'),
121
+			'failing'    => __('Failing', 'invoicing'),
122
+			'expired'    => __('Expired', 'invoicing'),
123
+			'completed'  => __('Complete', 'invoicing'),
124
+			'cancelled'  => __('Cancelled', 'invoicing'),
125 125
 		)
126 126
 	);
127 127
 
@@ -132,9 +132,9 @@  discard block
 block discarded – undo
132 132
  *
133 133
  * @return string
134 134
  */
135
-function getpaid_get_subscription_status_label( $status ) {
135
+function getpaid_get_subscription_status_label($status) {
136 136
 	$statuses = getpaid_get_subscription_statuses();
137
-	return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) );
137
+	return isset($statuses[$status]) ? $statuses[$status] : ucfirst(sanitize_text_field($status));
138 138
 }
139 139
 
140 140
 /**
@@ -164,14 +164,14 @@  discard block
 block discarded – undo
164 164
  *
165 165
  * @return array
166 166
  */
167
-function getpaid_get_subscription_status_counts( $args = array() ) {
167
+function getpaid_get_subscription_status_counts($args = array()) {
168 168
 
169
-	$statuses = array_keys( getpaid_get_subscription_statuses() );
169
+	$statuses = array_keys(getpaid_get_subscription_statuses());
170 170
 	$counts   = array();
171 171
 
172
-	foreach ( $statuses as $status ) {
173
-		$_args             = wp_parse_args( "status=$status", $args );
174
-		$counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' );
172
+	foreach ($statuses as $status) {
173
+		$_args             = wp_parse_args("status=$status", $args);
174
+		$counts[$status] = getpaid_get_subscriptions($_args, 'count');
175 175
 	}
176 176
 
177 177
 	return $counts;
@@ -190,23 +190,23 @@  discard block
 block discarded – undo
190 190
 		array(
191 191
 
192 192
 			'day'   => array(
193
-				'singular' => __( '%s day', 'invoicing' ),
194
-				'plural'   => __( '%d days', 'invoicing' ),
193
+				'singular' => __('%s day', 'invoicing'),
194
+				'plural'   => __('%d days', 'invoicing'),
195 195
 			),
196 196
 
197 197
 			'week'   => array(
198
-				'singular' => __( '%s week', 'invoicing' ),
199
-				'plural'   => __( '%d weeks', 'invoicing' ),
198
+				'singular' => __('%s week', 'invoicing'),
199
+				'plural'   => __('%d weeks', 'invoicing'),
200 200
 			),
201 201
 
202 202
 			'month'   => array(
203
-				'singular' => __( '%s month', 'invoicing' ),
204
-				'plural'   => __( '%d months', 'invoicing' ),
203
+				'singular' => __('%s month', 'invoicing'),
204
+				'plural'   => __('%d months', 'invoicing'),
205 205
 			),
206 206
 
207 207
 			'year'   => array(
208
-				'singular' => __( '%s year', 'invoicing' ),
209
-				'plural'   => __( '%d years', 'invoicing' ),
208
+				'singular' => __('%s year', 'invoicing'),
209
+				'plural'   => __('%d years', 'invoicing'),
210 210
 			),
211 211
 
212 212
 		)
@@ -220,8 +220,8 @@  discard block
 block discarded – undo
220 220
  * @param string $trial_period
221 221
  * @return int
222 222
  */
223
-function getpaid_get_subscription_trial_period_interval( $trial_period ) {
224
-	return (int) preg_replace( '/[^0-9]/', '', $trial_period );
223
+function getpaid_get_subscription_trial_period_interval($trial_period) {
224
+	return (int) preg_replace('/[^0-9]/', '', $trial_period);
225 225
 }
226 226
 
227 227
 /**
@@ -230,8 +230,8 @@  discard block
 block discarded – undo
230 230
  * @param string $trial_period
231 231
  * @return string
232 232
  */
233
-function getpaid_get_subscription_trial_period_period( $trial_period ) {
234
-	return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) );
233
+function getpaid_get_subscription_trial_period_period($trial_period) {
234
+	return preg_replace('/[^a-z]/', '', strtolower($trial_period));
235 235
 }
236 236
 
237 237
 /**
@@ -241,9 +241,9 @@  discard block
 block discarded – undo
241 241
  * @param int $interval
242 242
  * @return string
243 243
  */
244
-function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) {
245
-	$label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label(  $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix );
246
-	return strtolower( sanitize_text_field( $label ) );
244
+function getpaid_get_subscription_period_label($period, $interval = 1, $singular_prefix = '1') {
245
+	$label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label($period, $interval) : getpaid_get_singular_subscription_period_label($period, $singular_prefix);
246
+	return strtolower(sanitize_text_field($label));
247 247
 }
248 248
 
249 249
 /**
@@ -252,19 +252,19 @@  discard block
 block discarded – undo
252 252
  * @param string $period
253 253
  * @return string
254 254
  */
255
-function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) {
255
+function getpaid_get_singular_subscription_period_label($period, $singular_prefix = '1') {
256 256
 
257 257
 	$periods = getpaid_get_subscription_periods();
258
-	$period  = strtolower( $period );
258
+	$period  = strtolower($period);
259 259
 
260
-	if ( isset( $periods[ $period ] ) ) {
261
-		return sprintf( $periods[ $period ]['singular'], $singular_prefix );
260
+	if (isset($periods[$period])) {
261
+		return sprintf($periods[$period]['singular'], $singular_prefix);
262 262
 	}
263 263
 
264 264
 	// Backwards compatibility.
265
-	foreach ( $periods as $key => $data ) {
266
-		if ( strpos( $key, $period ) === 0 ) {
267
-			return sprintf( $data['singular'], $singular_prefix );
265
+	foreach ($periods as $key => $data) {
266
+		if (strpos($key, $period) === 0) {
267
+			return sprintf($data['singular'], $singular_prefix);
268 268
 		}
269 269
 	}
270 270
 
@@ -279,19 +279,19 @@  discard block
 block discarded – undo
279 279
  * @param int $interval
280 280
  * @return string
281 281
  */
282
-function getpaid_get_plural_subscription_period_label( $period, $interval ) {
282
+function getpaid_get_plural_subscription_period_label($period, $interval) {
283 283
 
284 284
 	$periods = getpaid_get_subscription_periods();
285
-	$period  = strtolower( $period );
285
+	$period  = strtolower($period);
286 286
 
287
-	if ( isset( $periods[ $period ] ) ) {
288
-		return sprintf( $periods[ $period ]['plural'], $interval );
287
+	if (isset($periods[$period])) {
288
+		return sprintf($periods[$period]['plural'], $interval);
289 289
 	}
290 290
 
291 291
 	// Backwards compatibility.
292
-	foreach ( $periods as $key => $data ) {
293
-		if ( strpos( $key, $period ) === 0 ) {
294
-			return sprintf( $data['plural'], $interval );
292
+	foreach ($periods as $key => $data) {
293
+		if (strpos($key, $period) === 0) {
294
+			return sprintf($data['plural'], $interval);
295 295
 		}
296 296
 	}
297 297
 
@@ -305,32 +305,32 @@  discard block
 block discarded – undo
305 305
  * @param WPInv_Subscription $subscription
306 306
  * @return string
307 307
  */
308
-function getpaid_get_formatted_subscription_amount( $subscription ) {
308
+function getpaid_get_formatted_subscription_amount($subscription) {
309 309
 
310
-	$initial    = wpinv_price( $subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency() );
311
-	$recurring  = wpinv_price( $subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency() );
312
-	$period     = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' );
310
+	$initial    = wpinv_price($subscription->get_initial_amount(), $subscription->get_parent_payment()->get_currency());
311
+	$recurring  = wpinv_price($subscription->get_recurring_amount(), $subscription->get_parent_payment()->get_currency());
312
+	$period     = getpaid_get_subscription_period_label($subscription->get_period(), $subscription->get_frequency(), '');
313 313
 	$bill_times = $subscription->get_bill_times();
314 314
 
315
-	if ( ! empty( $bill_times ) ) {
315
+	if (!empty($bill_times)) {
316 316
 		$bill_times = $subscription->get_frequency() * $bill_times;
317
-		$bill_times = getpaid_get_subscription_period_label( $subscription->get_period(), $bill_times );
317
+		$bill_times = getpaid_get_subscription_period_label($subscription->get_period(), $bill_times);
318 318
 	}
319 319
 
320 320
 	// Trial periods.
321
-	if ( $subscription->has_trial_period() ) {
321
+	if ($subscription->has_trial_period()) {
322 322
 
323
-		$trial_period   = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() );
324
-		$trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() );
323
+		$trial_period   = getpaid_get_subscription_trial_period_period($subscription->get_trial_period());
324
+		$trial_interval = getpaid_get_subscription_trial_period_interval($subscription->get_trial_period());
325 325
 
326
-		if ( empty( $bill_times ) ) {
326
+		if (empty($bill_times)) {
327 327
 
328 328
 			return sprintf(
329 329
 
330 330
 				// translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period
331
-				_x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ),
331
+				_x('%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing'),
332 332
 				$initial,
333
-				getpaid_get_subscription_period_label( $trial_period, $trial_interval ),
333
+				getpaid_get_subscription_period_label($trial_period, $trial_interval),
334 334
 				$recurring,
335 335
 				$period
336 336
 	
@@ -341,9 +341,9 @@  discard block
 block discarded – undo
341 341
 		return sprintf(
342 342
 
343 343
 			// translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period, $5: is the bill times
344
-			_x( '%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing' ),
344
+			_x('%1$s trial for %2$s then %3$s / %4$s for %5$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year for 4 years)', 'invoicing'),
345 345
 			$initial,
346
-			getpaid_get_subscription_period_label( $trial_period, $trial_interval ),
346
+			getpaid_get_subscription_period_label($trial_period, $trial_interval),
347 347
 			$recurring,
348 348
 			$period,
349 349
 			$bill_times
@@ -351,14 +351,14 @@  discard block
 block discarded – undo
351 351
 
352 352
 	}
353 353
 
354
-	if ( $initial != $recurring ) {
354
+	if ($initial != $recurring) {
355 355
 
356
-		if ( empty( $bill_times ) ) {
356
+		if (empty($bill_times)) {
357 357
 
358 358
 			return sprintf(
359 359
 
360 360
 				// translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period
361
-				_x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ),
361
+				_x('Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing'),
362 362
 				$initial,
363 363
 				$recurring,
364 364
 				$period
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
 		return sprintf(
371 371
 
372 372
 			// translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period, $4: is the bill times
373
-			_x( 'Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing' ),
373
+			_x('Initial payment of %1$s which renews at %2$s / %3$s for %4$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year for 5 years)', 'invoicing'),
374 374
 			$initial,
375 375
 			$recurring,
376 376
 			$period,
@@ -380,12 +380,12 @@  discard block
 block discarded – undo
380 380
 
381 381
 	}
382 382
 
383
-	if ( empty( $bill_times ) ) {
383
+	if (empty($bill_times)) {
384 384
 
385 385
 		return sprintf(
386 386
 
387 387
 			// translators: $1: is the recurring amount, $2: is the recurring period
388
-			_x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ),
388
+			_x('%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing'),
389 389
 			$initial,
390 390
 			$period
391 391
 	
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
 	return sprintf(
397 397
 
398 398
 		// translators: $1: is the bill times, $2: is the recurring amount, $3: is the recurring period
399
-		_x( '%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing' ),
399
+		_x('%2$s / %3$s for %1$s', 'Subscription amount. (e.g.: $120 / year for 5 years)', 'invoicing'),
400 400
 		$bill_times,
401 401
 		$initial,
402 402
 		$period
@@ -411,8 +411,8 @@  discard block
 block discarded – undo
411 411
  * @param WPInv_Invoice $invoice
412 412
  * @return WPInv_Subscription|false
413 413
  */
414
-function getpaid_get_invoice_subscription( $invoice ) {
415
-	return getpaid_subscriptions()->get_invoice_subscription( $invoice );
414
+function getpaid_get_invoice_subscription($invoice) {
415
+	return getpaid_subscriptions()->get_invoice_subscription($invoice);
416 416
 }
417 417
 
418 418
 /**
@@ -420,9 +420,9 @@  discard block
 block discarded – undo
420 420
  *
421 421
  * @param WPInv_Invoice $invoice
422 422
  */
423
-function getpaid_activate_invoice_subscription( $invoice ) {
424
-	$subscription = getpaid_get_invoice_subscription( $invoice );
425
-	if ( is_a( $subscription, 'WPInv_Subscription' ) ) {
423
+function getpaid_activate_invoice_subscription($invoice) {
424
+	$subscription = getpaid_get_invoice_subscription($invoice);
425
+	if (is_a($subscription, 'WPInv_Subscription')) {
426 426
 		$subscription->activate();
427 427
 	}
428 428
 }
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
  * @return WPInv_Subscriptions
434 434
  */
435 435
 function getpaid_subscriptions() {
436
-	return getpaid()->get( 'subscriptions' );
436
+	return getpaid()->get('subscriptions');
437 437
 }
438 438
 
439 439
 /**
@@ -442,13 +442,13 @@  discard block
 block discarded – undo
442 442
  * @since 2.3.0
443 443
  * @return WPInv_Subscription|bool
444 444
  */
445
-function wpinv_get_invoice_subscription( $invoice ) {
445
+function wpinv_get_invoice_subscription($invoice) {
446 446
 
447 447
     // Retrieve the invoice.
448
-    $invoice = new WPInv_Invoice( $invoice );
448
+    $invoice = new WPInv_Invoice($invoice);
449 449
 
450 450
     // Ensure it is a recurring invoice.
451
-    if ( ! $invoice->is_recurring() ) {
451
+    if (!$invoice->is_recurring()) {
452 452
         return false;
453 453
     }
454 454
 
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
 		)
461 461
 	);
462 462
 
463
-	return empty( $subscription ) ? false : $subscription[0];
463
+	return empty($subscription) ? false : $subscription[0];
464 464
 
465 465
 }
466 466
 
@@ -475,50 +475,50 @@  discard block
 block discarded – undo
475 475
  * @param GetPaid_Form_Item|WPInv_Item $cart_item
476 476
  * @return string
477 477
  */
478
-function getpaid_get_recurring_item_key( $cart_item ) {
478
+function getpaid_get_recurring_item_key($cart_item) {
479 479
 
480 480
 	$cart_key     = 'renews_';
481 481
 	$interval     = $cart_item->get_recurring_interval();
482
-	$period       = $cart_item->get_recurring_period( true );
482
+	$period       = $cart_item->get_recurring_period(true);
483 483
 	$length       = $cart_item->get_recurring_limit() * $interval;
484
-	$trial_period = $cart_item->get_trial_period( true );
484
+	$trial_period = $cart_item->get_trial_period(true);
485 485
 	$trial_length = $cart_item->get_trial_interval();
486 486
 
487 487
 	// First start with the billing interval and period
488
-	switch ( $interval ) {
488
+	switch ($interval) {
489 489
 		case 1 :
490
-			if ( 'day' == $period ) {
490
+			if ('day' == $period) {
491 491
 				$cart_key .= 'daily';
492 492
 			} else {
493
-				$cart_key .= sprintf( '%sly', $period );
493
+				$cart_key .= sprintf('%sly', $period);
494 494
 			}
495 495
 			break;
496 496
 		case 2 :
497
-			$cart_key .= sprintf( 'every_2nd_%s', $period );
497
+			$cart_key .= sprintf('every_2nd_%s', $period);
498 498
 			break;
499 499
 		case 3 :
500
-			$cart_key .= sprintf( 'every_3rd_%s', $period );
500
+			$cart_key .= sprintf('every_3rd_%s', $period);
501 501
 		break;
502 502
 		default:
503
-			$cart_key .= sprintf( 'every_%dth_%s', $interval, $period );
503
+			$cart_key .= sprintf('every_%dth_%s', $interval, $period);
504 504
 			break;
505 505
 	}
506 506
 
507 507
 	// Maybe add the optional maximum billing periods...
508
-	if ( $length > 0 ) {
508
+	if ($length > 0) {
509 509
 		$cart_key .= '_for_';
510
-		$cart_key .= sprintf( '%d_%s', $length, $period );
511
-		if ( $length > 1 ) {
510
+		$cart_key .= sprintf('%d_%s', $length, $period);
511
+		if ($length > 1) {
512 512
 			$cart_key .= 's';
513 513
 		}
514 514
 	}
515 515
 
516 516
 	// And an optional free trial.
517
-	if ( $cart_item->has_free_trial() ) {
518
-		$cart_key .= sprintf( '_after_a_%d_%s_trial', $trial_length, $trial_period );
517
+	if ($cart_item->has_free_trial()) {
518
+		$cart_key .= sprintf('_after_a_%d_%s_trial', $trial_length, $trial_period);
519 519
 	}
520 520
 
521
-	return apply_filters( 'getpaid_get_recurring_item_key', $cart_key, $cart_item );
521
+	return apply_filters('getpaid_get_recurring_item_key', $cart_key, $cart_item);
522 522
 }
523 523
 
524 524
 /**
@@ -527,14 +527,14 @@  discard block
 block discarded – undo
527 527
  * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice
528 528
  * @return array
529 529
  */
530
-function getpaid_get_subscription_groups( $invoice ) {
530
+function getpaid_get_subscription_groups($invoice) {
531 531
 
532 532
 	// Generate subscription groups.
533 533
 	$subscription_groups = array();
534
-	foreach ( $invoice->get_items() as $item ) {
534
+	foreach ($invoice->get_items() as $item) {
535 535
 
536
-		if ( $item->is_recurring() ) {
537
-			$subscription_groups[ getpaid_get_recurring_item_key( $item ) ][] = $item;
536
+		if ($item->is_recurring()) {
537
+			$subscription_groups[getpaid_get_recurring_item_key($item)][] = $item;
538 538
 		}
539 539
 
540 540
 	}
@@ -551,19 +551,19 @@  discard block
 block discarded – undo
551 551
  * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice
552 552
  * @return array
553 553
  */
554
-function getpaid_calculate_subscription_totals( $invoice ) {
554
+function getpaid_calculate_subscription_totals($invoice) {
555 555
 
556 556
 	// Generate subscription groups.
557
-	$subscription_groups = getpaid_get_subscription_groups( $invoice );
557
+	$subscription_groups = getpaid_get_subscription_groups($invoice);
558 558
 
559 559
 	// Now let's calculate the totals for each group of subscriptions
560 560
 	$subscription_totals = array();
561 561
 
562
-	foreach ( $subscription_groups as $subscription_key => $items ) {
562
+	foreach ($subscription_groups as $subscription_key => $items) {
563 563
 
564
-		if ( empty( $subscription_totals[ $subscription_key ] ) ) {
564
+		if (empty($subscription_totals[$subscription_key])) {
565 565
 
566
-			$subscription_totals[ $subscription_key ] = array(
566
+			$subscription_totals[$subscription_key] = array(
567 567
 				'initial_total'   => 0,
568 568
 				'recurring_total' => 0,
569 569
 				'items'           => array(),
@@ -576,34 +576,34 @@  discard block
 block discarded – undo
576 576
 		 * Get the totals of the group.
577 577
 		 * @var GetPaid_Form_Item $item
578 578
 		 */
579
-		foreach ( $items as $item ) {
579
+		foreach ($items as $item) {
580 580
 
581
-			$subscription_totals[ $subscription_key ]['items'][$item->get_id()]  = $item->prepare_data_for_saving();
582
-			$subscription_totals[ $subscription_key ]['item_id']                 = $item->get_id();
583
-			$subscription_totals[ $subscription_key ]['period']                  = $item->get_recurring_period( true );
584
-			$subscription_totals[ $subscription_key ]['interval']                = $item->get_recurring_interval();
585
-			$subscription_totals[ $subscription_key ]['initial_total']          += $item->get_sub_total() + $item->item_tax - $item->item_discount;
586
-			$subscription_totals[ $subscription_key ]['recurring_total']        += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount;
587
-			$subscription_totals[ $subscription_key ]['recurring_limit']         = $item->get_recurring_limit();
581
+			$subscription_totals[$subscription_key]['items'][$item->get_id()]  = $item->prepare_data_for_saving();
582
+			$subscription_totals[$subscription_key]['item_id']                 = $item->get_id();
583
+			$subscription_totals[$subscription_key]['period']                  = $item->get_recurring_period(true);
584
+			$subscription_totals[$subscription_key]['interval']                = $item->get_recurring_interval();
585
+			$subscription_totals[$subscription_key]['initial_total']          += $item->get_sub_total() + $item->item_tax - $item->item_discount;
586
+			$subscription_totals[$subscription_key]['recurring_total']        += $item->get_recurring_sub_total() + $item->item_tax - $item->recurring_item_discount;
587
+			$subscription_totals[$subscription_key]['recurring_limit']         = $item->get_recurring_limit();
588 588
 
589 589
 			// Calculate the next renewal date.
590
-			$period       = $item->get_recurring_period( true );
590
+			$period       = $item->get_recurring_period(true);
591 591
 			$interval     = $item->get_recurring_interval();
592 592
 
593 593
 			// If the subscription item has a trial period...
594
-			if ( $item->has_free_trial() ) {
595
-				$period   = $item->get_trial_period( true );
594
+			if ($item->has_free_trial()) {
595
+				$period   = $item->get_trial_period(true);
596 596
 				$interval = $item->get_trial_interval();
597
-				$subscription_totals[ $subscription_key ]['trialling'] = $interval . ' ' . $period;
597
+				$subscription_totals[$subscription_key]['trialling'] = $interval . ' ' . $period;
598 598
 			}
599 599
 
600
-			$subscription_totals[ $subscription_key ]['renews_on'] = date( 'Y-m-d H:i:s', strtotime( "+$interval $period", current_time( 'timestamp' ) ) );
600
+			$subscription_totals[$subscription_key]['renews_on'] = date('Y-m-d H:i:s', strtotime("+$interval $period", current_time('timestamp')));
601 601
 
602 602
 		}
603 603
 
604 604
 	}
605 605
 
606
-	return apply_filters( 'getpaid_calculate_subscription_totals', $subscription_totals, $invoice );
606
+	return apply_filters('getpaid_calculate_subscription_totals', $subscription_totals, $invoice);
607 607
 }
608 608
 
609 609
 /**
@@ -612,19 +612,19 @@  discard block
 block discarded – undo
612 612
  * @param WPInv_Invoice|GetPaid_Payment_Form_Submission|GetPaid_Payment_Form $invoice
613 613
  * @return array
614 614
  */
615
-function getpaid_should_group_subscriptions( $invoice ) {
615
+function getpaid_should_group_subscriptions($invoice) {
616 616
 
617 617
 	$recurring_items = 0;
618 618
 
619
-	foreach ( $invoice->get_items() as $item ) {
619
+	foreach ($invoice->get_items() as $item) {
620 620
 
621
-		if ( $item->is_recurring() ) {
622
-			$recurring_items ++;
621
+		if ($item->is_recurring()) {
622
+			$recurring_items++;
623 623
 		}
624 624
 
625 625
 	}
626 626
 
627
-	return apply_filters( 'getpaid_should_group_subscriptions', $recurring_items > 1, $invoice );
627
+	return apply_filters('getpaid_should_group_subscriptions', $recurring_items > 1, $invoice);
628 628
 }
629 629
 
630 630
 /**
@@ -634,12 +634,12 @@  discard block
 block discarded – undo
634 634
  * @param int|false $subscription_id
635 635
  * @return int
636 636
  */
637
-function getpaid_count_subscription_invoices( $parent_invoice_id, $subscription_id = false ) {
637
+function getpaid_count_subscription_invoices($parent_invoice_id, $subscription_id = false) {
638 638
 	global $wpdb;
639 639
 
640 640
 	$parent_invoice_id = (int) $parent_invoice_id;
641 641
 
642
-	if ( false === $subscription_id || ! (bool) get_post_meta( $parent_invoice_id, '_wpinv_subscription_id', true ) ) {
642
+	if (false === $subscription_id || !(bool) get_post_meta($parent_invoice_id, '_wpinv_subscription_id', true)) {
643 643
 
644 644
 		return (int) $wpdb->get_var(
645 645
 			$wpdb->prepare(
@@ -661,10 +661,10 @@  discard block
 block discarded – undo
661 661
 
662 662
 	$count = 0;
663 663
 
664
-	foreach ( wp_parse_id_list( $invoice_ids ) as $invoice_id ) {
664
+	foreach (wp_parse_id_list($invoice_ids) as $invoice_id) {
665 665
 
666
-		if ( $invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta( $invoice_id, '_wpinv_subscription_id', true ) ) {
667
-			$count ++;
666
+		if ($invoice_id == $parent_invoice_id || $subscription_id == (int) get_post_meta($invoice_id, '_wpinv_subscription_id', true)) {
667
+			$count++;
668 668
 			continue;
669 669
 		}
670 670
 
Please login to merge, or discard this patch.