Passed
Push — master ( c29213...6daaec )
by Stiofan
05:18
created
includes/wpinv-general-functions.php 1 patch
Spacing   +136 added lines, -136 removed lines patch added patch discarded remove patch
@@ -7,40 +7,40 @@  discard block
 block discarded – undo
7 7
  */
8 8
  
9 9
 // MUST have WordPress.
10
-if ( !defined( 'WPINC' ) ) {
11
-    exit( 'Do NOT access this file directly: ' . basename( __FILE__ ) );
10
+if (!defined('WPINC')) {
11
+    exit('Do NOT access this file directly: ' . basename(__FILE__));
12 12
 }
13 13
 
14 14
 function wpinv_is_checkout() {
15 15
     global $wp_query;
16 16
 
17
-    $is_object_set    = isset( $wp_query->queried_object );
18
-    $is_object_id_set = isset( $wp_query->queried_object_id );
19
-    $checkout_page    = wpinv_get_option( 'checkout_page' );
20
-    $is_checkout      = ! empty( $checkout_page ) && is_page( $checkout_page );
17
+    $is_object_set    = isset($wp_query->queried_object);
18
+    $is_object_id_set = isset($wp_query->queried_object_id);
19
+    $checkout_page    = wpinv_get_option('checkout_page');
20
+    $is_checkout      = !empty($checkout_page) && is_page($checkout_page);
21 21
 
22
-    if ( !$is_object_set ) {
23
-        unset( $wp_query->queried_object );
22
+    if (!$is_object_set) {
23
+        unset($wp_query->queried_object);
24 24
     }
25 25
 
26
-    if ( !$is_object_id_set ) {
27
-        unset( $wp_query->queried_object_id );
26
+    if (!$is_object_id_set) {
27
+        unset($wp_query->queried_object_id);
28 28
     }
29 29
 
30
-    return apply_filters( 'wpinv_is_checkout', $is_checkout );
30
+    return apply_filters('wpinv_is_checkout', $is_checkout);
31 31
 }
32 32
 
33 33
 function wpinv_can_checkout() {
34 34
 	$can_checkout = true; // Always true for now
35 35
 
36
-	return (bool) apply_filters( 'wpinv_can_checkout', $can_checkout );
36
+	return (bool) apply_filters('wpinv_can_checkout', $can_checkout);
37 37
 }
38 38
 
39 39
 function wpinv_get_success_page_uri() {
40
-	$page_id = wpinv_get_option( 'success_page', 0 );
41
-	$page_id = absint( $page_id );
40
+	$page_id = wpinv_get_option('success_page', 0);
41
+	$page_id = absint($page_id);
42 42
 
43
-	return apply_filters( 'wpinv_get_success_page_uri', get_permalink( $page_id ) );
43
+	return apply_filters('wpinv_get_success_page_uri', get_permalink($page_id));
44 44
 }
45 45
 
46 46
 /**
@@ -49,139 +49,139 @@  discard block
 block discarded – undo
49 49
  * @param string $post_type The post type or invoice type.
50 50
  * @return string The history page URL.
51 51
  */
52
-function wpinv_get_history_page_uri( $post_type = 'wpi_invoice' ) {
53
-    $post_type = sanitize_key( str_replace( 'wpi_', '', $post_type ) );
54
-	$page_id   = wpinv_get_option( "{$post_type}_history_page", 0 );
55
-	$page_id   = absint( $page_id );
56
-	return apply_filters( 'wpinv_get_history_page_uri', get_permalink( $page_id ), $post_type );
52
+function wpinv_get_history_page_uri($post_type = 'wpi_invoice') {
53
+    $post_type = sanitize_key(str_replace('wpi_', '', $post_type));
54
+	$page_id   = wpinv_get_option("{$post_type}_history_page", 0);
55
+	$page_id   = absint($page_id);
56
+	return apply_filters('wpinv_get_history_page_uri', get_permalink($page_id), $post_type);
57 57
 }
58 58
 
59 59
 function wpinv_is_success_page() {
60
-	$is_success_page = wpinv_get_option( 'success_page', false );
61
-	$is_success_page = ! empty( $is_success_page ) ? is_page( $is_success_page ) : false;
60
+	$is_success_page = wpinv_get_option('success_page', false);
61
+	$is_success_page = !empty($is_success_page) ? is_page($is_success_page) : false;
62 62
 
63
-	return apply_filters( 'wpinv_is_success_page', $is_success_page );
63
+	return apply_filters('wpinv_is_success_page', $is_success_page);
64 64
 }
65 65
 
66 66
 function wpinv_is_invoice_history_page() {
67
-	$ret = wpinv_get_option( 'invoice_history_page', false );
68
-	$ret = $ret ? is_page( $ret ) : false;
69
-	return apply_filters( 'wpinv_is_invoice_history_page', $ret );
67
+	$ret = wpinv_get_option('invoice_history_page', false);
68
+	$ret = $ret ? is_page($ret) : false;
69
+	return apply_filters('wpinv_is_invoice_history_page', $ret);
70 70
 }
71 71
 
72 72
 function wpinv_is_subscriptions_history_page() {
73
-    $ret = wpinv_get_option( 'invoice_subscription_page', false );
74
-    $ret = $ret ? is_page( $ret ) : false;
75
-    return apply_filters( 'wpinv_is_subscriptions_history_page', $ret );
73
+    $ret = wpinv_get_option('invoice_subscription_page', false);
74
+    $ret = $ret ? is_page($ret) : false;
75
+    return apply_filters('wpinv_is_subscriptions_history_page', $ret);
76 76
 }
77 77
 
78 78
 /**
79 79
  * Redirects a user the success page.
80 80
  */
81
-function wpinv_send_to_success_page( $args = array() ) {
81
+function wpinv_send_to_success_page($args = array()) {
82 82
 
83 83
     $redirect = add_query_arg(
84
-        wp_parse_args( $args ),
84
+        wp_parse_args($args),
85 85
         wpinv_get_success_page_uri()
86 86
     );
87 87
 
88
-    $redirect = apply_filters( 'wpinv_send_to_success_page_url', $redirect, $args );
88
+    $redirect = apply_filters('wpinv_send_to_success_page_url', $redirect, $args);
89 89
 
90
-    wp_redirect( $redirect );
90
+    wp_redirect($redirect);
91 91
     exit;
92 92
 }
93 93
 
94
-function wpinv_send_to_failed_page( $args = null ) {
94
+function wpinv_send_to_failed_page($args = null) {
95 95
 	$redirect = wpinv_get_failed_transaction_uri();
96 96
     
97
-    if ( !empty( $args ) ) {
97
+    if (!empty($args)) {
98 98
         // Check for backward compatibility
99
-        if ( is_string( $args ) )
100
-            $args = str_replace( '?', '', $args );
99
+        if (is_string($args))
100
+            $args = str_replace('?', '', $args);
101 101
 
102
-        $args = wp_parse_args( $args );
102
+        $args = wp_parse_args($args);
103 103
 
104
-        $redirect = add_query_arg( $args, $redirect );
104
+        $redirect = add_query_arg($args, $redirect);
105 105
     }
106 106
 
107
-    $gateway = isset( $_REQUEST['wpi-gateway'] ) ? $_REQUEST['wpi-gateway'] : '';
107
+    $gateway = isset($_REQUEST['wpi-gateway']) ? $_REQUEST['wpi-gateway'] : '';
108 108
     
109
-    $redirect = apply_filters( 'wpinv_failed_page_redirect', $redirect, $gateway, $args );
110
-    wp_redirect( $redirect );
109
+    $redirect = apply_filters('wpinv_failed_page_redirect', $redirect, $gateway, $args);
110
+    wp_redirect($redirect);
111 111
     exit;
112 112
 }
113 113
 
114
-function wpinv_get_checkout_uri( $args = array() ) {
115
-	$uri = wpinv_get_option( 'checkout_page', false );
116
-	$uri = isset( $uri ) ? get_permalink( $uri ) : NULL;
114
+function wpinv_get_checkout_uri($args = array()) {
115
+	$uri = wpinv_get_option('checkout_page', false);
116
+	$uri = isset($uri) ? get_permalink($uri) : NULL;
117 117
 
118
-	if ( !empty( $args ) ) {
118
+	if (!empty($args)) {
119 119
 		// Check for backward compatibility
120
-		if ( is_string( $args ) )
121
-			$args = str_replace( '?', '', $args );
120
+		if (is_string($args))
121
+			$args = str_replace('?', '', $args);
122 122
 
123
-		$args = wp_parse_args( $args );
123
+		$args = wp_parse_args($args);
124 124
 
125
-		$uri = add_query_arg( $args, $uri );
125
+		$uri = add_query_arg($args, $uri);
126 126
 	}
127 127
 
128
-	$scheme = defined( 'FORCE_SSL_ADMIN' ) && FORCE_SSL_ADMIN ? 'https' : 'admin';
128
+	$scheme = defined('FORCE_SSL_ADMIN') && FORCE_SSL_ADMIN ? 'https' : 'admin';
129 129
 
130
-	$ajax_url = admin_url( 'admin-ajax.php', $scheme );
130
+	$ajax_url = admin_url('admin-ajax.php', $scheme);
131 131
 
132
-	if ( ( ! preg_match( '/^https/', $uri ) && preg_match( '/^https/', $ajax_url ) ) || wpinv_is_ssl_enforced() ) {
133
-		$uri = preg_replace( '/^http:/', 'https:', $uri );
132
+	if ((!preg_match('/^https/', $uri) && preg_match('/^https/', $ajax_url)) || wpinv_is_ssl_enforced()) {
133
+		$uri = preg_replace('/^http:/', 'https:', $uri);
134 134
 	}
135 135
 
136
-	return apply_filters( 'wpinv_get_checkout_uri', $uri );
136
+	return apply_filters('wpinv_get_checkout_uri', $uri);
137 137
 }
138 138
 
139
-function wpinv_get_success_page_url( $query_string = null ) {
140
-	$success_page = wpinv_get_option( 'success_page', 0 );
141
-	$success_page = get_permalink( $success_page );
139
+function wpinv_get_success_page_url($query_string = null) {
140
+	$success_page = wpinv_get_option('success_page', 0);
141
+	$success_page = get_permalink($success_page);
142 142
 
143
-	if ( $query_string )
143
+	if ($query_string)
144 144
 		$success_page .= $query_string;
145 145
 
146
-	return apply_filters( 'wpinv_success_page_url', $success_page );
146
+	return apply_filters('wpinv_success_page_url', $success_page);
147 147
 }
148 148
 
149
-function wpinv_get_failed_transaction_uri( $extras = false ) {
150
-	$uri = wpinv_get_option( 'failure_page', '' );
151
-	$uri = ! empty( $uri ) ? trailingslashit( get_permalink( $uri ) ) : home_url();
149
+function wpinv_get_failed_transaction_uri($extras = false) {
150
+	$uri = wpinv_get_option('failure_page', '');
151
+	$uri = !empty($uri) ? trailingslashit(get_permalink($uri)) : home_url();
152 152
 
153
-	if ( $extras )
153
+	if ($extras)
154 154
 		$uri .= $extras;
155 155
 
156
-	return apply_filters( 'wpinv_get_failed_transaction_uri', $uri );
156
+	return apply_filters('wpinv_get_failed_transaction_uri', $uri);
157 157
 }
158 158
 
159 159
 function wpinv_is_failed_transaction_page() {
160
-	$ret = wpinv_get_option( 'failure_page', false );
161
-	$ret = isset( $ret ) ? is_page( $ret ) : false;
160
+	$ret = wpinv_get_option('failure_page', false);
161
+	$ret = isset($ret) ? is_page($ret) : false;
162 162
 
163
-	return apply_filters( 'wpinv_is_failure_page', $ret );
163
+	return apply_filters('wpinv_is_failure_page', $ret);
164 164
 }
165 165
 
166
-function wpinv_transaction_query( $type = 'start' ) {
166
+function wpinv_transaction_query($type = 'start') {
167 167
     global $wpdb;
168 168
 
169 169
     $wpdb->hide_errors();
170 170
 
171
-    if ( ! defined( 'WPINV_USE_TRANSACTIONS' ) ) {
172
-        define( 'WPINV_USE_TRANSACTIONS', true );
171
+    if (!defined('WPINV_USE_TRANSACTIONS')) {
172
+        define('WPINV_USE_TRANSACTIONS', true);
173 173
     }
174 174
 
175
-    if ( WPINV_USE_TRANSACTIONS ) {
176
-        switch ( $type ) {
175
+    if (WPINV_USE_TRANSACTIONS) {
176
+        switch ($type) {
177 177
             case 'commit' :
178
-                $wpdb->query( 'COMMIT' );
178
+                $wpdb->query('COMMIT');
179 179
                 break;
180 180
             case 'rollback' :
181
-                $wpdb->query( 'ROLLBACK' );
181
+                $wpdb->query('ROLLBACK');
182 182
                 break;
183 183
             default :
184
-                $wpdb->query( 'START TRANSACTION' );
184
+                $wpdb->query('START TRANSACTION');
185 185
             break;
186 186
         }
187 187
     }
@@ -190,141 +190,141 @@  discard block
 block discarded – undo
190 190
 function wpinv_get_prefix() {
191 191
     $invoice_prefix = 'INV-';
192 192
     
193
-    return apply_filters( 'wpinv_get_prefix', $invoice_prefix );
193
+    return apply_filters('wpinv_get_prefix', $invoice_prefix);
194 194
 }
195 195
 
196 196
 function wpinv_get_business_logo() {
197
-    $business_logo = wpinv_get_option( 'logo' );
198
-    return apply_filters( 'wpinv_get_business_logo', $business_logo );
197
+    $business_logo = wpinv_get_option('logo');
198
+    return apply_filters('wpinv_get_business_logo', $business_logo);
199 199
 }
200 200
 
201 201
 function wpinv_get_business_name() {
202 202
     $business_name = wpinv_get_option('store_name');
203
-    return apply_filters( 'wpinv_get_business_name', $business_name );
203
+    return apply_filters('wpinv_get_business_name', $business_name);
204 204
 }
205 205
 
206 206
 function wpinv_get_blogname() {
207
-    return wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
207
+    return wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
208 208
 }
209 209
 
210 210
 function wpinv_get_admin_email() {
211
-    $admin_email = wpinv_get_option( 'admin_email', get_option( 'admin_email' ) );
212
-    return apply_filters( 'wpinv_admin_email', $admin_email );
211
+    $admin_email = wpinv_get_option('admin_email', get_option('admin_email'));
212
+    return apply_filters('wpinv_admin_email', $admin_email);
213 213
 }
214 214
 
215 215
 function wpinv_get_business_website() {
216
-    $business_website = home_url( '/' );
217
-    return apply_filters( 'wpinv_get_business_website', $business_website );
216
+    $business_website = home_url('/');
217
+    return apply_filters('wpinv_get_business_website', $business_website);
218 218
 }
219 219
 
220
-function wpinv_get_terms_text( $invoice_id = 0 ) {
220
+function wpinv_get_terms_text($invoice_id = 0) {
221 221
     $terms_text = '';
222
-    return apply_filters( 'wpinv_get_terms_text', $terms_text, $invoice_id );
222
+    return apply_filters('wpinv_get_terms_text', $terms_text, $invoice_id);
223 223
 }
224 224
 
225 225
 function wpinv_get_business_footer() {
226
-    $site_link = '<a target="_blank" href="' . esc_url( wpinv_get_business_website() ) . '">' . esc_html( wpinv_get_business_name() ) . '</a>';
227
-    $business_footer = wp_sprintf( __( 'Thanks for using %s', 'invoicing' ), $site_link );
228
-    return apply_filters( 'wpinv_get_business_footer', $business_footer );
226
+    $site_link = '<a target="_blank" href="' . esc_url(wpinv_get_business_website()) . '">' . esc_html(wpinv_get_business_name()) . '</a>';
227
+    $business_footer = wp_sprintf(__('Thanks for using %s', 'invoicing'), $site_link);
228
+    return apply_filters('wpinv_get_business_footer', $business_footer);
229 229
 }
230 230
 
231 231
 function wpinv_checkout_required_fields() {
232 232
     $required_fields = array();
233 233
     
234 234
     // Let payment gateways and other extensions determine if address fields should be required
235
-    $require_billing_details = apply_filters( 'wpinv_checkout_required_billing_details', wpinv_use_taxes() );
235
+    $require_billing_details = apply_filters('wpinv_checkout_required_billing_details', wpinv_use_taxes());
236 236
     
237
-    if ( $require_billing_details ) {
238
-		if ( (bool)wpinv_get_option( 'fname_mandatory' ) ) {
237
+    if ($require_billing_details) {
238
+		if ((bool) wpinv_get_option('fname_mandatory')) {
239 239
 			$required_fields['first_name'] = array(
240 240
 				'error_id' => 'invalid_first_name',
241
-				'error_message' => __( 'Please enter your first name', 'invoicing' )
241
+				'error_message' => __('Please enter your first name', 'invoicing')
242 242
 			);
243 243
 		}
244
-		if ( (bool)wpinv_get_option( 'address_mandatory' ) ) {
244
+		if ((bool) wpinv_get_option('address_mandatory')) {
245 245
 			$required_fields['address'] = array(
246 246
 				'error_id' => 'invalid_address',
247
-				'error_message' => __( 'Please enter your address', 'invoicing' )
247
+				'error_message' => __('Please enter your address', 'invoicing')
248 248
 			);
249 249
 		}
250
-		if ( (bool)wpinv_get_option( 'city_mandatory' ) ) {
250
+		if ((bool) wpinv_get_option('city_mandatory')) {
251 251
 			$required_fields['city'] = array(
252 252
 				'error_id' => 'invalid_city',
253
-				'error_message' => __( 'Please enter your billing city', 'invoicing' )
253
+				'error_message' => __('Please enter your billing city', 'invoicing')
254 254
 			);
255 255
 		}
256
-		if ( (bool)wpinv_get_option( 'state_mandatory' ) ) {
256
+		if ((bool) wpinv_get_option('state_mandatory')) {
257 257
 			$required_fields['state'] = array(
258 258
 				'error_id' => 'invalid_state',
259
-				'error_message' => __( 'Please enter billing state / province', 'invoicing' )
259
+				'error_message' => __('Please enter billing state / province', 'invoicing')
260 260
 			);
261 261
 		}
262
-		if ( (bool)wpinv_get_option( 'country_mandatory' ) ) {
262
+		if ((bool) wpinv_get_option('country_mandatory')) {
263 263
 			$required_fields['country'] = array(
264 264
 				'error_id' => 'invalid_country',
265
-				'error_message' => __( 'Please select your billing country', 'invoicing' )
265
+				'error_message' => __('Please select your billing country', 'invoicing')
266 266
 			);
267 267
 		}
268 268
     }
269 269
 
270
-    return apply_filters( 'wpinv_checkout_required_fields', $required_fields );
270
+    return apply_filters('wpinv_checkout_required_fields', $required_fields);
271 271
 }
272 272
 
273 273
 function wpinv_is_ssl_enforced() {
274
-    $ssl_enforced = wpinv_get_option( 'enforce_ssl', false );
275
-    return (bool) apply_filters( 'wpinv_is_ssl_enforced', $ssl_enforced );
274
+    $ssl_enforced = wpinv_get_option('enforce_ssl', false);
275
+    return (bool) apply_filters('wpinv_is_ssl_enforced', $ssl_enforced);
276 276
 }
277 277
 
278 278
 function wpinv_schedule_event_twicedaily() {
279 279
     wpinv_email_payment_reminders();
280 280
 }
281
-add_action( 'wpinv_register_schedule_event_daily', 'wpinv_schedule_event_twicedaily' );
281
+add_action('wpinv_register_schedule_event_daily', 'wpinv_schedule_event_twicedaily');
282 282
 
283 283
 function wpinv_require_login_to_checkout() {
284
-    $return = wpinv_get_option( 'login_to_checkout', false );
285
-    return (bool) apply_filters( 'wpinv_require_login_to_checkout', $return );
284
+    $return = wpinv_get_option('login_to_checkout', false);
285
+    return (bool) apply_filters('wpinv_require_login_to_checkout', $return);
286 286
 }
287 287
 
288
-function wpinv_sequential_number_active( $type = '' ) {
289
-    $check = apply_filters( 'wpinv_pre_check_sequential_number_active', null, $type );
290
-    if ( null !== $check ) {
288
+function wpinv_sequential_number_active($type = '') {
289
+    $check = apply_filters('wpinv_pre_check_sequential_number_active', null, $type);
290
+    if (null !== $check) {
291 291
         return $check;
292 292
     }
293 293
     
294
-    return wpinv_get_option( 'sequential_invoice_number' );
294
+    return wpinv_get_option('sequential_invoice_number');
295 295
 }
296 296
 
297
-function wpinv_switch_to_locale( $locale = NULL ) {
297
+function wpinv_switch_to_locale($locale = NULL) {
298 298
     global $invoicing, $wpi_switch_locale;
299 299
 
300
-    if ( ! empty( $invoicing ) && function_exists( 'switch_to_locale' ) ) {
301
-        $locale = empty( $locale ) ? get_locale() : $locale;
300
+    if (!empty($invoicing) && function_exists('switch_to_locale')) {
301
+        $locale = empty($locale) ? get_locale() : $locale;
302 302
 
303
-        switch_to_locale( $locale );
303
+        switch_to_locale($locale);
304 304
 
305 305
         $wpi_switch_locale = $locale;
306 306
 
307
-        add_filter( 'plugin_locale', 'get_locale' );
307
+        add_filter('plugin_locale', 'get_locale');
308 308
 
309 309
         $invoicing->load_textdomain();
310 310
 
311
-        do_action( 'wpinv_switch_to_locale', $locale );
311
+        do_action('wpinv_switch_to_locale', $locale);
312 312
     }
313 313
 }
314 314
 
315 315
 function wpinv_restore_locale() {
316 316
     global $invoicing, $wpi_switch_locale;
317 317
     
318
-    if ( ! empty( $invoicing ) && function_exists( 'restore_previous_locale' ) && $wpi_switch_locale ) {
318
+    if (!empty($invoicing) && function_exists('restore_previous_locale') && $wpi_switch_locale) {
319 319
         restore_previous_locale();
320 320
 
321 321
         $wpi_switch_locale = NULL;
322 322
 
323
-        remove_filter( 'plugin_locale', 'get_locale' );
323
+        remove_filter('plugin_locale', 'get_locale');
324 324
 
325 325
         $invoicing->load_textdomain();
326 326
 
327
-        do_action( 'wpinv_restore_locale' );
327
+        do_action('wpinv_restore_locale');
328 328
     }
329 329
 }
330 330
 
@@ -332,22 +332,22 @@  discard block
 block discarded – undo
332 332
  * Returns the default form's id.
333 333
  */
334 334
 function wpinv_get_default_payment_form() {
335
-    $form = get_option( 'wpinv_default_payment_form' );
335
+    $form = get_option('wpinv_default_payment_form');
336 336
 
337
-    if ( empty( $form ) || 'publish' != get_post_status( $form ) ) {
337
+    if (empty($form) || 'publish' != get_post_status($form)) {
338 338
         $form = wp_insert_post(
339 339
             array(
340 340
                 'post_type'   => 'wpi_payment_form',
341
-                'post_title'  => __( 'Checkout (default)', 'invoicing' ),
341
+                'post_title'  => __('Checkout (default)', 'invoicing'),
342 342
                 'post_status' => 'publish',
343 343
                 'meta_input'  => array(
344
-                    'wpinv_form_elements' => wpinv_get_data( 'default-payment-form' ),
344
+                    'wpinv_form_elements' => wpinv_get_data('default-payment-form'),
345 345
                     'wpinv_form_items'    => array(),
346 346
                 )
347 347
             )
348 348
         );
349 349
 
350
-        update_option( 'wpinv_default_payment_form', $form );
350
+        update_option('wpinv_default_payment_form', $form);
351 351
     }
352 352
 
353 353
     return $form;
@@ -358,19 +358,19 @@  discard block
 block discarded – undo
358 358
  * 
359 359
  * @param int $payment_form
360 360
  */
361
-function getpaid_get_payment_form_elements( $payment_form ) {
361
+function getpaid_get_payment_form_elements($payment_form) {
362 362
 
363
-    if ( empty( $payment_form ) ) {
364
-        return wpinv_get_data( 'sample-payment-form' );
363
+    if (empty($payment_form)) {
364
+        return wpinv_get_data('sample-payment-form');
365 365
     }
366 366
 
367
-    $form_elements = get_post_meta( $payment_form, 'wpinv_form_elements', true );
367
+    $form_elements = get_post_meta($payment_form, 'wpinv_form_elements', true);
368 368
 
369
-    if ( is_array( $form_elements ) ) {
369
+    if (is_array($form_elements)) {
370 370
         return $form_elements;
371 371
     }
372 372
 
373
-    return wpinv_get_data( 'sample-payment-form' );
373
+    return wpinv_get_data('sample-payment-form');
374 374
 
375 375
 }
376 376
 
@@ -379,13 +379,13 @@  discard block
 block discarded – undo
379 379
  * 
380 380
  * @param int $payment_form
381 381
  */
382
-function gepaid_get_form_items( $id ) {
383
-    $form = new GetPaid_Payment_Form( $id );
382
+function gepaid_get_form_items($id) {
383
+    $form = new GetPaid_Payment_Form($id);
384 384
 
385 385
     // Is this a default form?
386
-    if ( $form->is_default() ) {
386
+    if ($form->is_default()) {
387 387
         return array();
388 388
     }
389 389
 
390
-    return $form->get_items( 'view', 'arrays' );
390
+    return $form->get_items('view', 'arrays');
391 391
 }
Please login to merge, or discard this patch.
templates/wpinv-invoice-print.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -7,20 +7,20 @@  discard block
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 // Fetch the invoice.
13
-if ( empty( $invoice ) ) {
14
-    $invoice = new WPInv_Invoice( $GLOBALS['post'] );
13
+if (empty($invoice)) {
14
+    $invoice = new WPInv_Invoice($GLOBALS['post']);
15 15
 }
16 16
 
17 17
 // Abort if it does not exist.
18
-if ( $invoice->get_id() == 0 ) {
18
+if ($invoice->get_id() == 0) {
19 19
     exit;
20 20
 }
21 21
 
22 22
 // Fires before printing an invoice.
23
-do_action( 'wpinv_invoice_print_before_display', $invoice );
23
+do_action('wpinv_invoice_print_before_display', $invoice);
24 24
 
25 25
 ?><!DOCTYPE html>
26 26
 
@@ -29,24 +29,24 @@  discard block
 block discarded – undo
29 29
 
30 30
     <head>
31 31
 
32
-		<meta charset="<?php bloginfo( 'charset' ); ?>">
32
+		<meta charset="<?php bloginfo('charset'); ?>">
33 33
         <meta name="viewport" content="width=device-width, initial-scale=1.0" >
34 34
 
35 35
         <meta name="robots" content="noindex,nofollow">
36 36
 
37 37
 		<link rel="profile" href="https://gmpg.org/xfn/11">
38 38
 
39
-        <title>#<?php echo sanitize_text_field( $invoice->get_number() ); ?></title>
39
+        <title>#<?php echo sanitize_text_field($invoice->get_number()); ?></title>
40 40
 
41
-        <?php do_action( 'wpinv_invoice_print_head', $invoice ); ?>
41
+        <?php do_action('wpinv_invoice_print_head', $invoice); ?>
42 42
 
43 43
     </head>
44 44
     
45 45
 
46 46
     <body class="body wpinv wpinv-print" style="font-weight: 400;">
47 47
 
48
-        <?php do_action( 'getpaid_invoice', $invoice ); ?>
49
-        <?php do_action( 'wpinv_invoice_print_body_end', $invoice ); ?>
48
+        <?php do_action('getpaid_invoice', $invoice); ?>
49
+        <?php do_action('wpinv_invoice_print_body_end', $invoice); ?>
50 50
 
51 51
     </body>
52 52
 
Please login to merge, or discard this patch.
vendor/composer/autoload_static.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,34 +6,34 @@  discard block
 block discarded – undo
6 6
 
7 7
 class ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5
8 8
 {
9
-    public static $files = array (
9
+    public static $files = array(
10 10
         '24583d3588ebda5228dd453cfaa070da' => __DIR__ . '/..' . '/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php',
11 11
         'e8d544c98e79f913e13eae1306ab635e' => __DIR__ . '/..' . '/ayecode/wp-ayecode-ui/ayecode-ui-loader.php',
12 12
     );
13 13
 
14
-    public static $prefixLengthsPsr4 = array (
14
+    public static $prefixLengthsPsr4 = array(
15 15
         'M' => 
16
-        array (
16
+        array(
17 17
             'MaxMind\\Db\\' => 11,
18 18
         ),
19 19
         'C' => 
20
-        array (
20
+        array(
21 21
             'Composer\\Installers\\' => 20,
22 22
         ),
23 23
     );
24 24
 
25
-    public static $prefixDirsPsr4 = array (
25
+    public static $prefixDirsPsr4 = array(
26 26
         'MaxMind\\Db\\' => 
27
-        array (
27
+        array(
28 28
             0 => __DIR__ . '/..' . '/maxmind-db/reader/src/MaxMind/Db',
29 29
         ),
30 30
         'Composer\\Installers\\' => 
31
-        array (
31
+        array(
32 32
             0 => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers',
33 33
         ),
34 34
     );
35 35
 
36
-    public static $classMap = array (
36
+    public static $classMap = array(
37 37
         'AyeCode_Connect_Helper' => __DIR__ . '/..' . '/ayecode/ayecode-connect-helper/ayecode-connect-helper.php',
38 38
         'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
39 39
         'WP_Super_Duper' => __DIR__ . '/..' . '/ayecode/wp-super-duper/wp-super-duper.php',
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     public static function getInitializer(ClassLoader $loader)
43 43
     {
44
-        return \Closure::bind(function () use ($loader) {
44
+        return \Closure::bind(function() use ($loader) {
45 45
             $loader->prefixLengthsPsr4 = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$prefixLengthsPsr4;
46 46
             $loader->prefixDirsPsr4 = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$prefixDirsPsr4;
47 47
             $loader->classMap = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$classMap;
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php 1 patch
Spacing   +235 added lines, -235 removed lines patch added patch discarded remove patch
@@ -12,14 +12,14 @@  discard block
 block discarded – undo
12 12
 /**
13 13
  * Bail if we are not in WP.
14 14
  */
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if (!defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
19 19
 /**
20 20
  * Only add if the class does not already exist.
21 21
  */
22
-if ( ! class_exists( 'AyeCode_UI_Settings' ) ) {
22
+if (!class_exists('AyeCode_UI_Settings')) {
23 23
 
24 24
 	/**
25 25
 	 * A Class to be able to change settings for Font Awesome.
@@ -98,23 +98,23 @@  discard block
 block discarded – undo
98 98
 		 * @return AyeCode_UI_Settings - Main instance.
99 99
 		 */
100 100
 		public static function instance() {
101
-			if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
101
+			if (!isset(self::$instance) && !(self::$instance instanceof AyeCode_UI_Settings)) {
102 102
 
103 103
 				self::$instance = new AyeCode_UI_Settings;
104 104
 
105
-				add_action( 'init', array( self::$instance, 'init' ) ); // set settings
105
+				add_action('init', array(self::$instance, 'init')); // set settings
106 106
 
107
-				if ( is_admin() ) {
108
-					add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
-					add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
107
+				if (is_admin()) {
108
+					add_action('admin_menu', array(self::$instance, 'menu_item'));
109
+					add_action('admin_init', array(self::$instance, 'register_settings'));
110 110
 
111 111
 					// Maybe show example page
112
-					add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
112
+					add_action('template_redirect', array(self::$instance, 'maybe_show_examples'));
113 113
 				}
114 114
 
115
-				add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
115
+				add_action('customize_register', array(self::$instance, 'customizer_settings'));
116 116
 
117
-				do_action( 'ayecode_ui_settings_loaded' );
117
+				do_action('ayecode_ui_settings_loaded');
118 118
 			}
119 119
 
120 120
 			return self::$instance;
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 		/**
124 124
 		 * Setup some constants.
125 125
 		 */
126
-		public function constants(){
126
+		public function constants() {
127 127
 			define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128 128
 			define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129 129
 			if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
@@ -143,24 +143,24 @@  discard block
 block discarded – undo
143 143
 			 *
144 144
 			 * We load super early in case there is a theme version that might change the colors
145 145
 			 */
146
-			if ( $this->settings['css'] ) {
147
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
146
+			if ($this->settings['css']) {
147
+				add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), 1);
148 148
 			}
149
-			if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
150
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
149
+			if ($this->settings['css_backend'] && $this->load_admin_scripts()) {
150
+				add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 1);
151 151
 			}
152 152
 
153 153
 			// maybe load JS
154
-			if ( $this->settings['js'] ) {
155
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
154
+			if ($this->settings['js']) {
155
+				add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), 1);
156 156
 			}
157
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
158
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
157
+			if ($this->settings['js_backend'] && $this->load_admin_scripts()) {
158
+				add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 1);
159 159
 			}
160 160
 
161 161
 			// Maybe set the HTML font size
162
-			if ( $this->settings['html_font_size'] ) {
163
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
162
+			if ($this->settings['html_font_size']) {
163
+				add_action('wp_footer', array($this, 'html_font_size'), 10);
164 164
 			}
165 165
 
166 166
 
@@ -171,13 +171,13 @@  discard block
 block discarded – undo
171 171
 		 *
172 172
 		 * @return bool
173 173
 		 */
174
-		public function load_admin_scripts(){
174
+		public function load_admin_scripts() {
175 175
 			$result = true;
176 176
 
177
-			if(!empty($this->settings['disable_admin'])){
178
-				$url_parts = explode("\n",$this->settings['disable_admin']);
179
-				foreach($url_parts as $part){
180
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
177
+			if (!empty($this->settings['disable_admin'])) {
178
+				$url_parts = explode("\n", $this->settings['disable_admin']);
179
+				foreach ($url_parts as $part) {
180
+					if (strpos($_SERVER['REQUEST_URI'], trim($part)) !== false) {
181 181
 						return false; // return early, no point checking further
182 182
 					}
183 183
 				}
@@ -189,9 +189,9 @@  discard block
 block discarded – undo
189 189
 		/**
190 190
 		 * Add a html font size to the footer.
191 191
 		 */
192
-		public function html_font_size(){
192
+		public function html_font_size() {
193 193
 			$this->settings = $this->get_settings();
194
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
194
+			echo "<style>html{font-size:" . absint($this->settings['html_font_size']) . "px;}</style>";
195 195
 		}
196 196
 
197 197
 		/**
@@ -203,18 +203,18 @@  discard block
 block discarded – undo
203 203
 
204 204
 			$rtl = is_rtl() ? '-rtl' : '';
205 205
 
206
-			if($this->settings[$css_setting]){
207
-				$compatibility = $this->settings[$css_setting]=='core' ? false : true;
208
-				$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
209
-				wp_register_style( 'ayecode-ui', $url, array(), $this->latest );
210
-				wp_enqueue_style( 'ayecode-ui' );
206
+			if ($this->settings[$css_setting]) {
207
+				$compatibility = $this->settings[$css_setting] == 'core' ? false : true;
208
+				$url = $this->settings[$css_setting] == 'core' ? $this->url . 'assets/css/ayecode-ui' . $rtl . '.css' : $this->url . 'assets/css/ayecode-ui-compatibility' . $rtl . '.css';
209
+				wp_register_style('ayecode-ui', $url, array(), $this->latest);
210
+				wp_enqueue_style('ayecode-ui');
211 211
 
212 212
 				// flatpickr
213
-				wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest );
213
+				wp_register_style('flatpickr', $this->url . 'assets/css/flatpickr.min.css', array(), $this->latest);
214 214
 
215 215
 
216 216
 				// fix some wp-admin issues
217
-				if(is_admin()){
217
+				if (is_admin()) {
218 218
 					$custom_css = "
219 219
                 body{
220 220
                     background-color: #f1f1f1;
@@ -257,11 +257,11 @@  discard block
 block discarded – undo
257 257
 						    padding: 0;
258 258
 						}
259 259
 					";
260
-					wp_add_inline_style( 'ayecode-ui', $custom_css );
260
+					wp_add_inline_style('ayecode-ui', $custom_css);
261 261
 				}
262 262
 
263 263
 				// custom changes
264
-				wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
264
+				wp_add_inline_style('ayecode-ui', self::custom_css($compatibility));
265 265
 
266 266
 			}
267 267
 		}
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
 		 *
272 272
 		 * If this remains small then its best to use this than to add another JS file.
273 273
 		 */
274
-		public function inline_script(){
274
+		public function inline_script() {
275 275
 			ob_start();
276 276
 			?>
277 277
 			<script>
@@ -765,10 +765,10 @@  discard block
 block discarded – undo
765 765
 			/*
766 766
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
767 767
 			 */
768
-			return str_replace( array(
768
+			return str_replace(array(
769 769
 				'<script>',
770 770
 				'</script>'
771
-			), '', $output );
771
+			), '', $output);
772 772
 		}
773 773
 
774 774
 		/**
@@ -776,7 +776,7 @@  discard block
 block discarded – undo
776 776
 		 *
777 777
 		 * If this remains small then its best to use this than to add another JS file.
778 778
 		 */
779
-		public function inline_script_file_browser(){
779
+		public function inline_script_file_browser() {
780 780
 			ob_start();
781 781
 			?>
782 782
 			<script>
@@ -791,10 +791,10 @@  discard block
 block discarded – undo
791 791
 			/*
792 792
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
793 793
 			 */
794
-			return str_replace( array(
794
+			return str_replace(array(
795 795
 				'<script>',
796 796
 				'</script>'
797
-			), '', $output );
797
+			), '', $output);
798 798
 		}
799 799
 
800 800
 		/**
@@ -805,40 +805,40 @@  discard block
 block discarded – undo
805 805
 			$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
806 806
 
807 807
 			// select2
808
-			wp_register_script( 'select2', $this->url.'assets/js/select2.min.js', array('jquery'), $this->select2_version );
808
+			wp_register_script('select2', $this->url . 'assets/js/select2.min.js', array('jquery'), $this->select2_version);
809 809
 
810 810
 			// flatpickr
811
-			wp_register_script( 'flatpickr', $this->url.'assets/js/flatpickr.min.js', array(), $this->latest );
811
+			wp_register_script('flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest);
812 812
 
813 813
 			// Bootstrap file browser
814
-			wp_register_script( 'aui-custom-file-input', $url = $this->url.'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version );
815
-			wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
814
+			wp_register_script('aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array('jquery'), $this->select2_version);
815
+			wp_add_inline_script('aui-custom-file-input', $this->inline_script_file_browser());
816 816
 
817 817
 			$load_inline = false;
818 818
 
819
-			if($this->settings[$js_setting]=='core-popper'){
819
+			if ($this->settings[$js_setting] == 'core-popper') {
820 820
 				// Bootstrap bundle
821
-				$url = $this->url.'assets/js/bootstrap.bundle.min.js';
822
-				wp_register_script( 'bootstrap-js-bundle', $url, array('select2','jquery'), $this->latest );
821
+				$url = $this->url . 'assets/js/bootstrap.bundle.min.js';
822
+				wp_register_script('bootstrap-js-bundle', $url, array('select2', 'jquery'), $this->latest);
823 823
 				// if in admin then add to footer for compatibility.
824
-				is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle');
824
+				is_admin() ? wp_enqueue_script('bootstrap-js-bundle', '', null, null, true) : wp_enqueue_script('bootstrap-js-bundle');
825 825
 				$script = $this->inline_script();
826
-				wp_add_inline_script( 'bootstrap-js-bundle', $script );
827
-			}elseif($this->settings[$js_setting]=='popper'){
828
-				$url = $this->url.'assets/js/popper.min.js';
829
-				wp_register_script( 'bootstrap-js-popper', $url, array('select2','jquery'), $this->latest );
830
-				wp_enqueue_script( 'bootstrap-js-popper' );
826
+				wp_add_inline_script('bootstrap-js-bundle', $script);
827
+			}elseif ($this->settings[$js_setting] == 'popper') {
828
+				$url = $this->url . 'assets/js/popper.min.js';
829
+				wp_register_script('bootstrap-js-popper', $url, array('select2', 'jquery'), $this->latest);
830
+				wp_enqueue_script('bootstrap-js-popper');
831 831
 				$load_inline = true;
832
-			}else{
832
+			} else {
833 833
 				$load_inline = true;
834 834
 			}
835 835
 
836 836
 			// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
837
-			if($load_inline){
838
-				wp_register_script( 'bootstrap-dummy', '',array('select2','jquery') );
839
-				wp_enqueue_script( 'bootstrap-dummy' );
837
+			if ($load_inline) {
838
+				wp_register_script('bootstrap-dummy', '', array('select2', 'jquery'));
839
+				wp_enqueue_script('bootstrap-dummy');
840 840
 				$script = $this->inline_script();
841
-				wp_add_inline_script( 'bootstrap-dummy', $script  );
841
+				wp_add_inline_script('bootstrap-dummy', $script);
842 842
 			}
843 843
 
844 844
 		}
@@ -846,9 +846,9 @@  discard block
 block discarded – undo
846 846
 		/**
847 847
 		 * Enqueue flatpickr if called.
848 848
 		 */
849
-		public function enqueue_flatpickr(){
850
-			wp_enqueue_style( 'flatpickr' );
851
-			wp_enqueue_script( 'flatpickr' );
849
+		public function enqueue_flatpickr() {
850
+			wp_enqueue_style('flatpickr');
851
+			wp_enqueue_script('flatpickr');
852 852
 		}
853 853
 
854 854
 		/**
@@ -860,15 +860,15 @@  discard block
 block discarded – undo
860 860
 
861 861
 			$url = '';
862 862
 			// check if we are inside a plugin
863
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
863
+			$file_dir = str_replace("/includes", "", wp_normalize_path(dirname(__FILE__)));
864 864
 
865 865
 			// add check in-case user has changed wp-content dir name.
866 866
 			$wp_content_folder_name = basename(WP_CONTENT_DIR);
867
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
868
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
867
+			$dir_parts = explode("/$wp_content_folder_name/", $file_dir);
868
+			$url_parts = explode("/$wp_content_folder_name/", plugins_url());
869 869
 
870
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
871
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
870
+			if (!empty($url_parts[0]) && !empty($dir_parts[1])) {
871
+				$url = trailingslashit($url_parts[0] . "/$wp_content_folder_name/" . $dir_parts[1]);
872 872
 			}
873 873
 
874 874
 			return $url;
@@ -878,7 +878,7 @@  discard block
 block discarded – undo
878 878
 		 * Register the database settings with WordPress.
879 879
 		 */
880 880
 		public function register_settings() {
881
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
881
+			register_setting('ayecode-ui-settings', 'ayecode-ui-settings');
882 882
 		}
883 883
 
884 884
 		/**
@@ -887,10 +887,10 @@  discard block
 block discarded – undo
887 887
 		 */
888 888
 		public function menu_item() {
889 889
 			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
890
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
890
+			call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
891 891
 				$this,
892 892
 				'settings_page'
893
-			) );
893
+			));
894 894
 		}
895 895
 
896 896
 		/**
@@ -898,7 +898,7 @@  discard block
 block discarded – undo
898 898
 		 *
899 899
 		 * @return array
900 900
 		 */
901
-		public function theme_js_settings(){
901
+		public function theme_js_settings() {
902 902
 			return array(
903 903
 				'ayetheme' => 'popper',
904 904
 				'listimia' => 'required',
@@ -914,17 +914,17 @@  discard block
 block discarded – undo
914 914
 		 */
915 915
 		public function get_settings() {
916 916
 
917
-			$db_settings = get_option( 'ayecode-ui-settings' );
917
+			$db_settings = get_option('ayecode-ui-settings');
918 918
 			$js_default = 'core-popper';
919 919
 			$js_default_backend = $js_default;
920 920
 
921 921
 			// maybe set defaults (if no settings set)
922
-			if(empty($db_settings)){
923
-				$active_theme = strtolower( get_template() ); // active parent theme.
922
+			if (empty($db_settings)) {
923
+				$active_theme = strtolower(get_template()); // active parent theme.
924 924
 				$theme_js_settings = self::theme_js_settings();
925
-				if(isset($theme_js_settings[$active_theme])){
925
+				if (isset($theme_js_settings[$active_theme])) {
926 926
 					$js_default = $theme_js_settings[$active_theme];
927
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
927
+					$js_default_backend = isset($theme_js_settings[$active_theme . "_backend"]) ? $theme_js_settings[$active_theme . "_backend"] : $js_default;
928 928
 				}
929 929
 			}
930 930
 
@@ -937,14 +937,14 @@  discard block
 block discarded – undo
937 937
 				'disable_admin'     =>  '', // URL snippets to disable loading on admin
938 938
 			);
939 939
 
940
-			$settings = wp_parse_args( $db_settings, $defaults );
940
+			$settings = wp_parse_args($db_settings, $defaults);
941 941
 
942 942
 			/**
943 943
 			 * Filter the Bootstrap settings.
944 944
 			 *
945 945
 			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
946 946
 			 */
947
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
947
+			return $this->settings = apply_filters('ayecode-ui-settings', $settings, $db_settings, $defaults);
948 948
 		}
949 949
 
950 950
 
@@ -952,90 +952,90 @@  discard block
 block discarded – undo
952 952
 		 * The settings page html output.
953 953
 		 */
954 954
 		public function settings_page() {
955
-			if ( ! current_user_can( 'manage_options' ) ) {
956
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
955
+			if (!current_user_can('manage_options')) {
956
+				wp_die(__('You do not have sufficient permissions to access this page.', 'aui'));
957 957
 			}
958 958
 			?>
959 959
 			<div class="wrap">
960 960
 				<h1><?php echo $this->name; ?></h1>
961
-				<p><?php _e("Here you can adjust settings if you are having compatibility issues.","aui");?></p>
961
+				<p><?php _e("Here you can adjust settings if you are having compatibility issues.", "aui"); ?></p>
962 962
 				<form method="post" action="options.php">
963 963
 					<?php
964
-					settings_fields( 'ayecode-ui-settings' );
965
-					do_settings_sections( 'ayecode-ui-settings' );
964
+					settings_fields('ayecode-ui-settings');
965
+					do_settings_sections('ayecode-ui-settings');
966 966
 					?>
967 967
 
968
-					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
968
+					<h2><?php _e('Frontend', 'aui'); ?></h2>
969 969
 					<table class="form-table wpbs-table-settings">
970 970
 						<tr valign="top">
971 971
 							<th scope="row"><label
972
-									for="wpbs-css"><?php _e( 'Load CSS', 'aui' ); ?></label></th>
972
+									for="wpbs-css"><?php _e('Load CSS', 'aui'); ?></label></th>
973 973
 							<td>
974 974
 								<select name="ayecode-ui-settings[css]" id="wpbs-css">
975
-									<option	value="compatibility" <?php selected( $this->settings['css'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option>
976
-									<option value="core" <?php selected( $this->settings['css'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option>
977
-									<option	value="" <?php selected( $this->settings['css'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option>
975
+									<option	value="compatibility" <?php selected($this->settings['css'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option>
976
+									<option value="core" <?php selected($this->settings['css'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option>
977
+									<option	value="" <?php selected($this->settings['css'], ''); ?>><?php _e('Disabled', 'aui'); ?></option>
978 978
 								</select>
979 979
 							</td>
980 980
 						</tr>
981 981
 
982 982
 						<tr valign="top">
983 983
 							<th scope="row"><label
984
-									for="wpbs-js"><?php _e( 'Load JS', 'aui' ); ?></label></th>
984
+									for="wpbs-js"><?php _e('Load JS', 'aui'); ?></label></th>
985 985
 							<td>
986 986
 								<select name="ayecode-ui-settings[js]" id="wpbs-js">
987
-									<option	value="core-popper" <?php selected( $this->settings['js'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option>
988
-									<option value="popper" <?php selected( $this->settings['js'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option>
989
-									<option value="required" <?php selected( $this->settings['js'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option>
990
-									<option	value="" <?php selected( $this->settings['js'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option>
987
+									<option	value="core-popper" <?php selected($this->settings['js'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option>
988
+									<option value="popper" <?php selected($this->settings['js'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option>
989
+									<option value="required" <?php selected($this->settings['js'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option>
990
+									<option	value="" <?php selected($this->settings['js'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option>
991 991
 								</select>
992 992
 							</td>
993 993
 						</tr>
994 994
 
995 995
 						<tr valign="top">
996 996
 							<th scope="row"><label
997
-									for="wpbs-font_size"><?php _e( 'HTML Font Size (px)', 'aui' ); ?></label></th>
997
+									for="wpbs-font_size"><?php _e('HTML Font Size (px)', 'aui'); ?></label></th>
998 998
 							<td>
999
-								<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" />
1000
-								<p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.","aui");?></p>
999
+								<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" />
1000
+								<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>
1001 1001
 							</td>
1002 1002
 						</tr>
1003 1003
 
1004 1004
 					</table>
1005 1005
 
1006
-					<h2><?php _e( 'Backend', 'aui' ); ?> (wp-admin)</h2>
1006
+					<h2><?php _e('Backend', 'aui'); ?> (wp-admin)</h2>
1007 1007
 					<table class="form-table wpbs-table-settings">
1008 1008
 						<tr valign="top">
1009 1009
 							<th scope="row"><label
1010
-									for="wpbs-css-admin"><?php _e( 'Load CSS', 'aui' ); ?></label></th>
1010
+									for="wpbs-css-admin"><?php _e('Load CSS', 'aui'); ?></label></th>
1011 1011
 							<td>
1012 1012
 								<select name="ayecode-ui-settings[css_backend]" id="wpbs-css-admin">
1013
-									<option	value="compatibility" <?php selected( $this->settings['css_backend'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode', 'aui' ); ?></option>
1014
-									<option value="core" <?php selected( $this->settings['css_backend'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option>
1015
-									<option	value="" <?php selected( $this->settings['css_backend'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option>
1013
+									<option	value="compatibility" <?php selected($this->settings['css_backend'], 'compatibility'); ?>><?php _e('Compatibility Mode', 'aui'); ?></option>
1014
+									<option value="core" <?php selected($this->settings['css_backend'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option>
1015
+									<option	value="" <?php selected($this->settings['css_backend'], ''); ?>><?php _e('Disabled', 'aui'); ?></option>
1016 1016
 								</select>
1017 1017
 							</td>
1018 1018
 						</tr>
1019 1019
 
1020 1020
 						<tr valign="top">
1021 1021
 							<th scope="row"><label
1022
-									for="wpbs-js-admin"><?php _e( 'Load JS', 'aui' ); ?></label></th>
1022
+									for="wpbs-js-admin"><?php _e('Load JS', 'aui'); ?></label></th>
1023 1023
 							<td>
1024 1024
 								<select name="ayecode-ui-settings[js_backend]" id="wpbs-js-admin">
1025
-									<option	value="core-popper" <?php selected( $this->settings['js_backend'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option>
1026
-									<option value="popper" <?php selected( $this->settings['js_backend'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option>
1027
-									<option value="required" <?php selected( $this->settings['js_backend'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option>
1028
-									<option	value="" <?php selected( $this->settings['js_backend'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option>
1025
+									<option	value="core-popper" <?php selected($this->settings['js_backend'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option>
1026
+									<option value="popper" <?php selected($this->settings['js_backend'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option>
1027
+									<option value="required" <?php selected($this->settings['js_backend'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option>
1028
+									<option	value="" <?php selected($this->settings['js_backend'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option>
1029 1029
 								</select>
1030 1030
 							</td>
1031 1031
 						</tr>
1032 1032
 
1033 1033
 						<tr valign="top">
1034 1034
 							<th scope="row"><label
1035
-									for="wpbs-disable-admin"><?php _e( 'Disable load on URL', 'aui' ); ?></label></th>
1035
+									for="wpbs-disable-admin"><?php _e('Disable load on URL', 'aui'); ?></label></th>
1036 1036
 							<td>
1037
-								<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>
1038
-								<textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php &#10;action=go"><?php echo $this->settings['disable_admin'];?></textarea>
1037
+								<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>
1038
+								<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>
1039 1039
 
1040 1040
 							</td>
1041 1041
 						</tr>
@@ -1053,9 +1053,9 @@  discard block
 block discarded – undo
1053 1053
 			<?php
1054 1054
 		}
1055 1055
 
1056
-		public function customizer_settings($wp_customize){
1056
+		public function customizer_settings($wp_customize) {
1057 1057
 			$wp_customize->add_section('aui_settings', array(
1058
-				'title'    => __('AyeCode UI','aui'),
1058
+				'title'    => __('AyeCode UI', 'aui'),
1059 1059
 				'priority' => 120,
1060 1060
 			));
1061 1061
 
@@ -1069,8 +1069,8 @@  discard block
 block discarded – undo
1069 1069
 				'type'              => 'option',
1070 1070
 				'transport'         => 'refresh',
1071 1071
 			));
1072
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1073
-				'label'    => __('Primary Color','aui'),
1072
+			$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1073
+				'label'    => __('Primary Color', 'aui'),
1074 1074
 				'section'  => 'aui_settings',
1075 1075
 				'settings' => 'aui_options[color_primary]',
1076 1076
 			)));
@@ -1082,8 +1082,8 @@  discard block
 block discarded – undo
1082 1082
 				'type'              => 'option',
1083 1083
 				'transport'         => 'refresh',
1084 1084
 			));
1085
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1086
-				'label'    => __('Secondary Color','aui'),
1085
+			$wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1086
+				'label'    => __('Secondary Color', 'aui'),
1087 1087
 				'section'  => 'aui_settings',
1088 1088
 				'settings' => 'aui_options[color_secondary]',
1089 1089
 			)));
@@ -1131,12 +1131,12 @@  discard block
 block discarded – undo
1131 1131
 				// BS compat @todo add option check
1132 1132
 				//echo self::bs3_compat_css();
1133 1133
 
1134
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1135
-						echo self::css_primary($primary_color,$compatibility);
1134
+					if (!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL) {
1135
+						echo self::css_primary($primary_color, $compatibility);
1136 1136
 					}
1137 1137
 
1138
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1139
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1138
+					if (!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL) {
1139
+						echo self::css_secondary($settings['color_secondary'], $compatibility);
1140 1140
 					}
1141 1141
                 ?>
1142 1142
 			</style>
@@ -1146,50 +1146,50 @@  discard block
 block discarded – undo
1146 1146
 			/*
1147 1147
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1148 1148
 			 */
1149
-			return str_replace( array(
1149
+			return str_replace(array(
1150 1150
 				'<style>',
1151 1151
 				'</style>'
1152 1152
 			), '', ob_get_clean());
1153 1153
 		}
1154 1154
 
1155
-		public static function css_primary($color_code,$compatibility){;
1155
+		public static function css_primary($color_code, $compatibility) {;
1156 1156
 			$color_code = sanitize_hex_color($color_code);
1157
-			if(!$color_code){return '';}
1157
+			if (!$color_code) {return ''; }
1158 1158
 			/**
1159 1159
 			 * c = color, b = background color, o = border-color, f = fill
1160 1160
 			 */
1161 1161
 			$selectors = array(
1162 1162
 				'a' => array('c'),
1163
-				'.btn-primary' => array('b','o'),
1164
-				'.btn-primary.disabled' => array('b','o'),
1165
-				'.btn-primary:disabled' => array('b','o'),
1166
-				'.btn-outline-primary' => array('c','o'),
1167
-				'.btn-outline-primary:hover' => array('b','o'),
1168
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1169
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1170
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1163
+				'.btn-primary' => array('b', 'o'),
1164
+				'.btn-primary.disabled' => array('b', 'o'),
1165
+				'.btn-primary:disabled' => array('b', 'o'),
1166
+				'.btn-outline-primary' => array('c', 'o'),
1167
+				'.btn-outline-primary:hover' => array('b', 'o'),
1168
+				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b', 'o'),
1169
+				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b', 'o'),
1170
+				'.show>.btn-outline-primary.dropdown-toggle' => array('b', 'o'),
1171 1171
 				'.btn-link' => array('c'),
1172 1172
 				'.dropdown-item.active' => array('b'),
1173
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1174
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1173
+				'.custom-control-input:checked~.custom-control-label::before' => array('b', 'o'),
1174
+				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b', 'o'),
1175 1175
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1176 1176
 //				'.custom-range::-moz-range-thumb' => array('b'),
1177 1177
 //				'.custom-range::-ms-thumb' => array('b'),
1178 1178
 				'.nav-pills .nav-link.active' => array('b'),
1179 1179
 				'.nav-pills .show>.nav-link' => array('b'),
1180 1180
 				'.page-link' => array('c'),
1181
-				'.page-item.active .page-link' => array('b','o'),
1181
+				'.page-item.active .page-link' => array('b', 'o'),
1182 1182
 				'.badge-primary' => array('b'),
1183
-				'.alert-primary' => array('b','o'),
1183
+				'.alert-primary' => array('b', 'o'),
1184 1184
 				'.progress-bar' => array('b'),
1185
-				'.list-group-item.active' => array('b','o'),
1186
-				'.bg-primary' => array('b','f'),
1185
+				'.list-group-item.active' => array('b', 'o'),
1186
+				'.bg-primary' => array('b', 'f'),
1187 1187
 				'.btn-link.btn-primary' => array('c'),
1188 1188
 				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1189 1189
 			);
1190 1190
 
1191 1191
 			$important_selectors = array(
1192
-				'.bg-primary' => array('b','f'),
1192
+				'.bg-primary' => array('b', 'f'),
1193 1193
 				'.border-primary' => array('o'),
1194 1194
 				'.text-primary' => array('c'),
1195 1195
 			);
@@ -1206,116 +1206,116 @@  discard block
 block discarded – undo
1206 1206
 			$output = '';
1207 1207
 
1208 1208
 			// build rules into each type
1209
-			foreach($selectors as $selector => $types){
1210
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1211
-				$types = array_combine($types,$types);
1212
-				if(isset($types['c'])){$color[] = $selector;}
1213
-				if(isset($types['b'])){$background[] = $selector;}
1214
-				if(isset($types['o'])){$border[] = $selector;}
1215
-				if(isset($types['f'])){$fill[] = $selector;}
1209
+			foreach ($selectors as $selector => $types) {
1210
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1211
+				$types = array_combine($types, $types);
1212
+				if (isset($types['c'])) {$color[] = $selector; }
1213
+				if (isset($types['b'])) {$background[] = $selector; }
1214
+				if (isset($types['o'])) {$border[] = $selector; }
1215
+				if (isset($types['f'])) {$fill[] = $selector; }
1216 1216
 			}
1217 1217
 
1218 1218
 			// build rules into each type
1219
-			foreach($important_selectors as $selector => $types){
1220
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1221
-				$types = array_combine($types,$types);
1222
-				if(isset($types['c'])){$color_i[] = $selector;}
1223
-				if(isset($types['b'])){$background_i[] = $selector;}
1224
-				if(isset($types['o'])){$border_i[] = $selector;}
1225
-				if(isset($types['f'])){$fill_i[] = $selector;}
1219
+			foreach ($important_selectors as $selector => $types) {
1220
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1221
+				$types = array_combine($types, $types);
1222
+				if (isset($types['c'])) {$color_i[] = $selector; }
1223
+				if (isset($types['b'])) {$background_i[] = $selector; }
1224
+				if (isset($types['o'])) {$border_i[] = $selector; }
1225
+				if (isset($types['f'])) {$fill_i[] = $selector; }
1226 1226
 			}
1227 1227
 
1228 1228
 			// add any color rules
1229
-			if(!empty($color)){
1230
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1229
+			if (!empty($color)) {
1230
+				$output .= implode(",", $color) . "{color: $color_code;} ";
1231 1231
 			}
1232
-			if(!empty($color_i)){
1233
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1232
+			if (!empty($color_i)) {
1233
+				$output .= implode(",", $color_i) . "{color: $color_code !important;} ";
1234 1234
 			}
1235 1235
 
1236 1236
 			// add any background color rules
1237
-			if(!empty($background)){
1238
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1237
+			if (!empty($background)) {
1238
+				$output .= implode(",", $background) . "{background-color: $color_code;} ";
1239 1239
 			}
1240
-			if(!empty($background_i)){
1241
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1240
+			if (!empty($background_i)) {
1241
+				$output .= implode(",", $background_i) . "{background-color: $color_code !important;} ";
1242 1242
 			}
1243 1243
 
1244 1244
 			// add any border color rules
1245
-			if(!empty($border)){
1246
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1245
+			if (!empty($border)) {
1246
+				$output .= implode(",", $border) . "{border-color: $color_code;} ";
1247 1247
 			}
1248
-			if(!empty($border_i)){
1249
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1248
+			if (!empty($border_i)) {
1249
+				$output .= implode(",", $border_i) . "{border-color: $color_code !important;} ";
1250 1250
 			}
1251 1251
 
1252 1252
 			// add any fill color rules
1253
-			if(!empty($fill)){
1254
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1253
+			if (!empty($fill)) {
1254
+				$output .= implode(",", $fill) . "{fill: $color_code;} ";
1255 1255
 			}
1256
-			if(!empty($fill_i)){
1257
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1256
+			if (!empty($fill_i)) {
1257
+				$output .= implode(",", $fill_i) . "{fill: $color_code !important;} ";
1258 1258
 			}
1259 1259
 
1260 1260
 
1261 1261
 			$prefix = $compatibility ? ".bsui " : "";
1262 1262
 
1263 1263
 			// darken
1264
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1265
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1266
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1264
+			$darker_075 = self::css_hex_lighten_darken($color_code, "-0.075");
1265
+			$darker_10 = self::css_hex_lighten_darken($color_code, "-0.10");
1266
+			$darker_125 = self::css_hex_lighten_darken($color_code, "-0.125");
1267 1267
 
1268 1268
 			// lighten
1269
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1269
+			$lighten_25 = self::css_hex_lighten_darken($color_code, "0.25");
1270 1270
 
1271 1271
 			// opacity see https://css-tricks.com/8-digit-hex-codes/
1272
-			$op_25 = $color_code."40"; // 25% opacity
1272
+			$op_25 = $color_code . "40"; // 25% opacity
1273 1273
 
1274 1274
 
1275 1275
 			// button states
1276
-			$output .= $prefix ." .btn-primary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1277
-			$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;} ";
1278
-			$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.";} ";
1279
-			$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;} ";
1276
+			$output .= $prefix . " .btn-primary:hover{background-color: " . $darker_075 . ";    border-color: " . $darker_10 . ";} ";
1277
+			$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;} ";
1278
+			$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 . ";} ";
1279
+			$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;} ";
1280 1280
 
1281 1281
 
1282 1282
 			// dropdown's
1283
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1283
+			$output .= $prefix . " .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1284 1284
 
1285 1285
 
1286 1286
 			// input states
1287
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1287
+			$output .= $prefix . " .form-control:focus{border-color: " . $lighten_25 . ";box-shadow: 0 0 0 0.2rem $op_25;} ";
1288 1288
 
1289 1289
 			// page link
1290
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1290
+			$output .= $prefix . " .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1291 1291
 
1292 1292
 			return $output;
1293 1293
 		}
1294 1294
 
1295
-		public static function css_secondary($color_code,$compatibility){;
1295
+		public static function css_secondary($color_code, $compatibility) {;
1296 1296
 			$color_code = sanitize_hex_color($color_code);
1297
-			if(!$color_code){return '';}
1297
+			if (!$color_code) {return ''; }
1298 1298
 			/**
1299 1299
 			 * c = color, b = background color, o = border-color, f = fill
1300 1300
 			 */
1301 1301
 			$selectors = array(
1302
-				'.btn-secondary' => array('b','o'),
1303
-				'.btn-secondary.disabled' => array('b','o'),
1304
-				'.btn-secondary:disabled' => array('b','o'),
1305
-				'.btn-outline-secondary' => array('c','o'),
1306
-				'.btn-outline-secondary:hover' => array('b','o'),
1302
+				'.btn-secondary' => array('b', 'o'),
1303
+				'.btn-secondary.disabled' => array('b', 'o'),
1304
+				'.btn-secondary:disabled' => array('b', 'o'),
1305
+				'.btn-outline-secondary' => array('c', 'o'),
1306
+				'.btn-outline-secondary:hover' => array('b', 'o'),
1307 1307
 				'.btn-outline-secondary.disabled' => array('c'),
1308 1308
 				'.btn-outline-secondary:disabled' => array('c'),
1309
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1310
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1311
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1309
+				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b', 'o'),
1310
+				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b', 'o'),
1311
+				'.btn-outline-secondary.dropdown-toggle' => array('b', 'o'),
1312 1312
 				'.badge-secondary' => array('b'),
1313
-				'.alert-secondary' => array('b','o'),
1313
+				'.alert-secondary' => array('b', 'o'),
1314 1314
 				'.btn-link.btn-secondary' => array('c'),
1315 1315
 			);
1316 1316
 
1317 1317
 			$important_selectors = array(
1318
-				'.bg-secondary' => array('b','f'),
1318
+				'.bg-secondary' => array('b', 'f'),
1319 1319
 				'.border-secondary' => array('o'),
1320 1320
 				'.text-secondary' => array('c'),
1321 1321
 			);
@@ -1332,77 +1332,77 @@  discard block
 block discarded – undo
1332 1332
 			$output = '';
1333 1333
 
1334 1334
 			// build rules into each type
1335
-			foreach($selectors as $selector => $types){
1336
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1337
-				$types = array_combine($types,$types);
1338
-				if(isset($types['c'])){$color[] = $selector;}
1339
-				if(isset($types['b'])){$background[] = $selector;}
1340
-				if(isset($types['o'])){$border[] = $selector;}
1341
-				if(isset($types['f'])){$fill[] = $selector;}
1335
+			foreach ($selectors as $selector => $types) {
1336
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1337
+				$types = array_combine($types, $types);
1338
+				if (isset($types['c'])) {$color[] = $selector; }
1339
+				if (isset($types['b'])) {$background[] = $selector; }
1340
+				if (isset($types['o'])) {$border[] = $selector; }
1341
+				if (isset($types['f'])) {$fill[] = $selector; }
1342 1342
 			}
1343 1343
 
1344 1344
 			// build rules into each type
1345
-			foreach($important_selectors as $selector => $types){
1346
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1347
-				$types = array_combine($types,$types);
1348
-				if(isset($types['c'])){$color_i[] = $selector;}
1349
-				if(isset($types['b'])){$background_i[] = $selector;}
1350
-				if(isset($types['o'])){$border_i[] = $selector;}
1351
-				if(isset($types['f'])){$fill_i[] = $selector;}
1345
+			foreach ($important_selectors as $selector => $types) {
1346
+				$selector = $compatibility ? ".bsui " . $selector : $selector;
1347
+				$types = array_combine($types, $types);
1348
+				if (isset($types['c'])) {$color_i[] = $selector; }
1349
+				if (isset($types['b'])) {$background_i[] = $selector; }
1350
+				if (isset($types['o'])) {$border_i[] = $selector; }
1351
+				if (isset($types['f'])) {$fill_i[] = $selector; }
1352 1352
 			}
1353 1353
 
1354 1354
 			// add any color rules
1355
-			if(!empty($color)){
1356
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1355
+			if (!empty($color)) {
1356
+				$output .= implode(",", $color) . "{color: $color_code;} ";
1357 1357
 			}
1358
-			if(!empty($color_i)){
1359
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1358
+			if (!empty($color_i)) {
1359
+				$output .= implode(",", $color_i) . "{color: $color_code !important;} ";
1360 1360
 			}
1361 1361
 
1362 1362
 			// add any background color rules
1363
-			if(!empty($background)){
1364
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1363
+			if (!empty($background)) {
1364
+				$output .= implode(",", $background) . "{background-color: $color_code;} ";
1365 1365
 			}
1366
-			if(!empty($background_i)){
1367
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1366
+			if (!empty($background_i)) {
1367
+				$output .= implode(",", $background_i) . "{background-color: $color_code !important;} ";
1368 1368
 			}
1369 1369
 
1370 1370
 			// add any border color rules
1371
-			if(!empty($border)){
1372
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1371
+			if (!empty($border)) {
1372
+				$output .= implode(",", $border) . "{border-color: $color_code;} ";
1373 1373
 			}
1374
-			if(!empty($border_i)){
1375
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1374
+			if (!empty($border_i)) {
1375
+				$output .= implode(",", $border_i) . "{border-color: $color_code !important;} ";
1376 1376
 			}
1377 1377
 
1378 1378
 			// add any fill color rules
1379
-			if(!empty($fill)){
1380
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1379
+			if (!empty($fill)) {
1380
+				$output .= implode(",", $fill) . "{fill: $color_code;} ";
1381 1381
 			}
1382
-			if(!empty($fill_i)){
1383
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1382
+			if (!empty($fill_i)) {
1383
+				$output .= implode(",", $fill_i) . "{fill: $color_code !important;} ";
1384 1384
 			}
1385 1385
 
1386 1386
 
1387 1387
 			$prefix = $compatibility ? ".bsui " : "";
1388 1388
 
1389 1389
 			// darken
1390
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1391
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1392
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1390
+			$darker_075 = self::css_hex_lighten_darken($color_code, "-0.075");
1391
+			$darker_10 = self::css_hex_lighten_darken($color_code, "-0.10");
1392
+			$darker_125 = self::css_hex_lighten_darken($color_code, "-0.125");
1393 1393
 
1394 1394
 			// lighten
1395
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1395
+			$lighten_25 = self::css_hex_lighten_darken($color_code, "0.25");
1396 1396
 
1397 1397
 			// opacity see https://css-tricks.com/8-digit-hex-codes/
1398
-			$op_25 = $color_code."40"; // 25% opacity
1398
+			$op_25 = $color_code . "40"; // 25% opacity
1399 1399
 
1400 1400
 
1401 1401
 			// button states
1402
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1403
-			$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;} ";
1404
-			$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.";} ";
1405
-			$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;} ";
1402
+			$output .= $prefix . " .btn-secondary:hover{background-color: " . $darker_075 . ";    border-color: " . $darker_10 . ";} ";
1403
+			$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;} ";
1404
+			$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 . ";} ";
1405
+			$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;} ";
1406 1406
 
1407 1407
 
1408 1408
 			return $output;
@@ -1438,8 +1438,8 @@  discard block
 block discarded – undo
1438 1438
 		/**
1439 1439
 		 * Check if we should display examples.
1440 1440
 		 */
1441
-		public function maybe_show_examples(){
1442
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1441
+		public function maybe_show_examples() {
1442
+			if (current_user_can('manage_options') && isset($_REQUEST['preview-aui'])) {
1443 1443
 				echo "<head>";
1444 1444
 				wp_head();
1445 1445
 				echo "</head>";
@@ -1455,7 +1455,7 @@  discard block
 block discarded – undo
1455 1455
 		 *
1456 1456
 		 * @return string
1457 1457
 		 */
1458
-		public function get_examples(){
1458
+		public function get_examples() {
1459 1459
 			$output = '';
1460 1460
 
1461 1461
 
Please login to merge, or discard this patch.
templates/wpinv-invalid-access.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -7,11 +7,11 @@  discard block
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 // Fetch the invoice.
13
-if ( empty( $invoice ) ) {
14
-    $invoice = new WPInv_Invoice( $GLOBALS['post'] );
13
+if (empty($invoice)) {
14
+    $invoice = new WPInv_Invoice($GLOBALS['post']);
15 15
 }
16 16
 
17 17
 ?><!DOCTYPE html>
@@ -21,16 +21,16 @@  discard block
 block discarded – undo
21 21
 
22 22
     <head>
23 23
 
24
-		<meta charset="<?php bloginfo( 'charset' ); ?>">
24
+		<meta charset="<?php bloginfo('charset'); ?>">
25 25
         <meta name="viewport" content="width=device-width, initial-scale=1.0" >
26 26
 
27 27
         <meta name="robots" content="noindex,nofollow">
28 28
 
29 29
 		<link rel="profile" href="https://gmpg.org/xfn/11">
30 30
 
31
-        <title><?php _e( 'Invalid Access', 'invoicing' ); ?></title>
31
+        <title><?php _e('Invalid Access', 'invoicing'); ?></title>
32 32
 
33
-        <?php do_action( 'wpinv_invoice_print_head', $invoice ); ?>
33
+        <?php do_action('wpinv_invoice_print_head', $invoice); ?>
34 34
 
35 35
     </head>
36 36
 
@@ -39,15 +39,15 @@  discard block
 block discarded – undo
39 39
 
40 40
         <?php
41 41
 
42
-            if ( ! $invoice->exists() || $invoice->is_draft() ) {
43
-                $error = __( 'This invoice was deleted or is not visible.', 'invoicing' );
42
+            if (!$invoice->exists() || $invoice->is_draft()) {
43
+                $error = __('This invoice was deleted or is not visible.', 'invoicing');
44 44
             } else {
45 45
 
46 46
                 $user_id = get_current_user_id();
47
-                if ( wpinv_require_login_to_checkout() && empty( $user_id ) ) {
48
-                    $error = __( 'You must be logged in to view this invoice.', 'invoicing' );
47
+                if (wpinv_require_login_to_checkout() && empty($user_id)) {
48
+                    $error = __('You must be logged in to view this invoice.', 'invoicing');
49 49
                 } else {
50
-                    $error = __( 'This invoice is only viewable by clicking on the invoice link that was sent to you via email.', 'invoicing' );
50
+                    $error = __('This invoice is only viewable by clicking on the invoice link that was sent to you via email.', 'invoicing');
51 51
                 }
52 52
 
53 53
             }
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
         <div class="container">
58 58
             <div class="alert alert-danger m-5" role="alert">
59
-                <h4 class="alert-heading"><?php _e( 'Access Denied', 'invoicing' ); ?></h4>
59
+                <h4 class="alert-heading"><?php _e('Access Denied', 'invoicing'); ?></h4>
60 60
                 <p><?php echo $error; ?>.</p>
61 61
             </div>
62 62
         </div>
Please login to merge, or discard this patch.
templates/invoice/header-left-actions.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -8,25 +8,25 @@
 block discarded – undo
8 8
  * @var WPInv_Invoice $invoice
9 9
  */
10 10
 
11
-defined( 'ABSPATH' ) || exit;
11
+defined('ABSPATH') || exit;
12 12
 
13 13
 ?>
14 14
 
15 15
         <div class="getpaid-header-left-actions">
16 16
 
17
-            <?php if ( $invoice->is_type( 'invoice' ) && $invoice->needs_payment() && ! $invoice->is_held() ): ?>
18
-                <a class="btn btn-sm btn-primary m-1 d-inline-block invoice-action-pay" href="<?php echo esc_url( $invoice->get_checkout_payment_url() ); ?>">
19
-                    <?php _e( 'Pay For Invoice', 'invoicing' ); ?>
17
+            <?php if ($invoice->is_type('invoice') && $invoice->needs_payment() && !$invoice->is_held()): ?>
18
+                <a class="btn btn-sm btn-primary m-1 d-inline-block invoice-action-pay" href="<?php echo esc_url($invoice->get_checkout_payment_url()); ?>">
19
+                    <?php _e('Pay For Invoice', 'invoicing'); ?>
20 20
                 </a>
21 21
             <?php endif; ?>
22 22
 
23
-            <?php if ( $invoice->is_type( 'invoice' ) && $invoice->is_paid() ): ?>
24
-                <a class="btn btn-sm btn-info m-1 d-inline-block invoice-action-receipt" href="<?php echo esc_url( $invoice->get_receipt_url() ); ?>">
25
-                    <?php _e( 'View Receipt', 'invoicing' ); ?>
23
+            <?php if ($invoice->is_type('invoice') && $invoice->is_paid()): ?>
24
+                <a class="btn btn-sm btn-info m-1 d-inline-block invoice-action-receipt" href="<?php echo esc_url($invoice->get_receipt_url()); ?>">
25
+                    <?php _e('View Receipt', 'invoicing'); ?>
26 26
                 </a>
27 27
             <?php endif; ?>
28 28
 
29
-            <?php do_action( 'wpinv_invoice_display_left_actions', $invoice ); ?>
29
+            <?php do_action('wpinv_invoice_display_left_actions', $invoice); ?>
30 30
 
31 31
         </div>
32 32
 
Please login to merge, or discard this patch.
templates/invoice/footer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,16 +7,16 @@
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 ?>
13 13
 
14 14
     <div class="border-top pt-4 bg-white">
15 15
         <div class="container pr-0 pl-0">
16 16
 
17
-            <?php if ( $term_text = wpinv_get_terms_text() ) : ?>
17
+            <?php if ($term_text = wpinv_get_terms_text()) : ?>
18 18
                 <div class="terms-text">
19
-                    <?php echo wpautop( $term_text ); ?>
19
+                    <?php echo wpautop($term_text); ?>
20 20
                 </div>
21 21
             <?php endif; ?>
22 22
 
Please login to merge, or discard this patch.
templates/invoice/header.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 ?>
13 13
 
@@ -16,11 +16,11 @@  discard block
 block discarded – undo
16 16
             <div class="row">
17 17
 
18 18
                 <div class="col-12 col-sm-6 text-sm-left pl-sm-0">
19
-                    <?php do_action( 'getpaid_invoice_header_left', $invoice );?>
19
+                    <?php do_action('getpaid_invoice_header_left', $invoice); ?>
20 20
                 </div>
21 21
 
22 22
                 <div class="col-12 col-sm-6 text-sm-right pr-sm-0">
23
-                    <?php do_action( 'getpaid_invoice_header_right', $invoice );?>
23
+                    <?php do_action('getpaid_invoice_header_right', $invoice); ?>
24 24
                 </div>
25 25
 
26 26
             </div>
Please login to merge, or discard this patch.
templates/invoice/details-top.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -7,24 +7,24 @@
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 ?>
13 13
 
14
-        <?php do_action( 'getpaid_before_invoice_details_top', $invoice ); ?>
14
+        <?php do_action('getpaid_before_invoice_details_top', $invoice); ?>
15 15
 
16 16
         <div class="getpaid-invoice-details-top mb-5">
17 17
             <div class="row">
18 18
                 <div class="col-12 col-sm-6 text-sm-left">
19
-                    <?php do_action( 'getpaid_invoice_details_top_left', $invoice ); ?>
19
+                    <?php do_action('getpaid_invoice_details_top_left', $invoice); ?>
20 20
                 </div>
21 21
 
22 22
                 <div class="col-12 col-sm-6 text-sm-right">
23
-                    <?php do_action( 'getpaid_invoice_details_top_right', $invoice ); ?>
23
+                    <?php do_action('getpaid_invoice_details_top_right', $invoice); ?>
24 24
                 </div>
25 25
             </div>
26 26
         </div>
27 27
 
28
-        <?php do_action( 'getpaid_after_invoice_details_top', $invoice ); ?>
28
+        <?php do_action('getpaid_after_invoice_details_top', $invoice); ?>
29 29
 
30 30
 <?php
Please login to merge, or discard this patch.