Passed
Push — master ( 0a2cdb...97ebee )
by Brian
04:41
created
vendor/ayecode/ayecode-connect-helper/ayecode-connect-helper.php 1 patch
Indentation   +310 added lines, -310 removed lines patch added patch discarded remove patch
@@ -1,271 +1,271 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! defined( 'ABSPATH' ) ) {
4
-	exit;
4
+    exit;
5 5
 }
6 6
 
7 7
 if ( ! class_exists( "AyeCode_Connect_Helper" ) ) {
8
-	/**
9
-	 * Allow the quick setup and connection of our AyeCode Connect plugin.
10
-	 *
11
-	 * Class AyeCode_Connect_Helper
12
-	 */
13
-	class AyeCode_Connect_Helper {
14
-
15
-		// Hold the version number
16
-		var $version = "1.0.3";
17
-
18
-		// Hold the default strings.
19
-		var $strings = array();
20
-
21
-		// Hold the default pages.
22
-		var $pages = array();
23
-
24
-		/**
25
-		 * The constructor.
26
-		 *
27
-		 * AyeCode_Connect_Helper constructor.
28
-		 *
29
-		 * @param array $strings
30
-		 * @param array $pages
31
-		 */
32
-		public function __construct( $strings = array(), $pages = array() ) {
33
-
34
-			// Only fire if not localhost and the current user has the right permissions.
35
-			if ( ! $this->is_localhost() && current_user_can( 'manage_options' ) ) {
36
-
37
-
38
-				// set default strings
39
-				$default_strings = array(
40
-					'connect_title'     => __( "Thanks for choosing an AyeCode Product!" ),
41
-					'connect_external'  => __( "Please confirm you wish to connect your site?" ),
42
-					'connect'           => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s" ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>" ),
43
-					'connect_button'    => __( "Connect Site" ),
44
-					'connecting_button' => __( "Connecting..." ),
45
-					'error_localhost'   => __( "This service will only work with a live domain, not a localhost." ),
46
-					'error'             => __( "Something went wrong, please refresh and try again." ),
47
-				);
48
-				$this->strings   = array_merge( $default_strings, $strings );
49
-
50
-
51
-				// set default pages
52
-				$default_pages = array();
53
-				$this->pages   = array_merge( $default_pages, $pages );
54
-
55
-				// maybe show connect site notice
56
-				add_action( 'admin_notices', array( $this, 'ayecode_connect_install_notice' ) );
57
-
58
-				// add ajax action if not already added
59
-				if ( ! has_action( 'wp_ajax_ayecode_connect_helper' ) ) {
60
-					add_action( 'wp_ajax_ayecode_connect_helper', array( $this, 'ayecode_connect_install' ) );
61
-				}
62
-			}
63
-
64
-			// add ajax action if not already added
65
-			if ( ! has_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed' ) ) {
66
-				add_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed', array( $this, 'ayecode_connect_helper_installed' ) );
67
-			}
68
-
69
-		}
70
-
71
-		/**
72
-		 * Give a way to check we can connect via a external redirect.
73
-		 */
74
-		public function ayecode_connect_helper_installed(){
75
-			$active = array(
76
-				'gd'    =>  defined('GEODIRECTORY_VERSION') && version_compare(GEODIRECTORY_VERSION,'2.0.0.79','>') ? 1 : 0,
77
-				'uwp'    =>  defined('USERSWP_VERSION') && version_compare(USERSWP_VERSION,'1.2.1.5','>') ? 1 : 0,
78
-				'wpi'    =>  defined('WPINV_VERSION') && version_compare(WPINV_VERSION,'1.0.14','>') ? 1 : 0,
79
-			);
80
-			wp_send_json_success( $active );
81
-			wp_die();
82
-		}
83
-
84
-		/**
85
-		 * Get slug from path
86
-		 *
87
-		 * @param  string $key
88
-		 *
89
-		 * @return string
90
-		 */
91
-		private function format_plugin_slug( $key ) {
92
-			$slug = explode( '/', $key );
93
-			$slug = explode( '.', end( $slug ) );
94
-
95
-			return $slug[0];
96
-		}
97
-
98
-		/**
99
-		 * Install and activate the AyeCode Connect Plugin
100
-		 */
101
-		public function ayecode_connect_install() {
102
-
103
-			// bail if localhost
104
-			if ( $this->is_localhost() ) {
105
-				wp_send_json_error( $this->strings['error_localhost'] );
106
-			}
107
-
108
-			// Explicitly clear the event.
109
-			wp_clear_scheduled_hook( 'geodir_plugin_background_installer', func_get_args() );
110
-
111
-			$success     = true;
112
-			$plugin_slug = "ayecode-connect";
113
-			if ( ! empty( $plugin_slug ) ) {
114
-				require_once( ABSPATH . 'wp-admin/includes/file.php' );
115
-				require_once( ABSPATH . 'wp-admin/includes/plugin-install.php' );
116
-				require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' );
117
-				require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
118
-
119
-				WP_Filesystem();
120
-
121
-				$skin              = new Automatic_Upgrader_Skin;
122
-				$upgrader          = new WP_Upgrader( $skin );
123
-				$installed_plugins = array_map( array( $this, 'format_plugin_slug' ), array_keys( get_plugins() ) );
124
-				$plugin_slug       = $plugin_slug;
125
-				$plugin            = $plugin_slug . '/' . $plugin_slug . '.php';
126
-				$installed         = false;
127
-				$activate          = false;
128
-
129
-				// See if the plugin is installed already
130
-				if ( in_array( $plugin_slug, $installed_plugins ) ) {
131
-					$installed = true;
132
-					$activate  = ! is_plugin_active( $plugin );
133
-				}
134
-
135
-				// Install this thing!
136
-				if ( ! $installed ) {
137
-
138
-					// Suppress feedback
139
-					ob_start();
140
-
141
-					try {
142
-						$plugin_information = plugins_api( 'plugin_information', array(
143
-							'slug'   => $plugin_slug,
144
-							'fields' => array(
145
-								'short_description' => false,
146
-								'sections'          => false,
147
-								'requires'          => false,
148
-								'rating'            => false,
149
-								'ratings'           => false,
150
-								'downloaded'        => false,
151
-								'last_updated'      => false,
152
-								'added'             => false,
153
-								'tags'              => false,
154
-								'homepage'          => false,
155
-								'donate_link'       => false,
156
-								'author_profile'    => false,
157
-								'author'            => false,
158
-							),
159
-						) );
160
-
161
-						if ( is_wp_error( $plugin_information ) ) {
162
-							throw new Exception( $plugin_information->get_error_message() );
163
-						}
164
-
165
-						$package  = $plugin_information->download_link;
166
-						$download = $upgrader->download_package( $package );
167
-
168
-						if ( is_wp_error( $download ) ) {
169
-							throw new Exception( $download->get_error_message() );
170
-						}
171
-
172
-						$working_dir = $upgrader->unpack_package( $download, true );
173
-
174
-						if ( is_wp_error( $working_dir ) ) {
175
-							throw new Exception( $working_dir->get_error_message() );
176
-						}
177
-
178
-						$result = $upgrader->install_package( array(
179
-							'source'                      => $working_dir,
180
-							'destination'                 => WP_PLUGIN_DIR,
181
-							'clear_destination'           => false,
182
-							'abort_if_destination_exists' => false,
183
-							'clear_working'               => true,
184
-							'hook_extra'                  => array(
185
-								'type'   => 'plugin',
186
-								'action' => 'install',
187
-							),
188
-						) );
189
-
190
-						if ( is_wp_error( $result ) ) {
191
-							throw new Exception( $result->get_error_message() );
192
-						}
193
-
194
-						$activate = true;
195
-
196
-					} catch ( Exception $e ) {
197
-						$success = false;
198
-					}
199
-
200
-					// Discard feedback
201
-					ob_end_clean();
202
-				}
203
-
204
-				wp_clean_plugins_cache();
205
-
206
-				// Activate this thing
207
-				if ( $activate ) {
208
-					try {
209
-						$result = activate_plugin( $plugin );
210
-
211
-						if ( is_wp_error( $result ) ) {
212
-							$success = false;
213
-						} else {
214
-							$success = true;
215
-						}
216
-					} catch ( Exception $e ) {
217
-						$success = false;
218
-					}
219
-				}
220
-			}
221
-
222
-			if ( $success && function_exists( 'ayecode_connect_args' ) ) {
223
-				ayecode_connect();// init
224
-				$args        = ayecode_connect_args();
225
-				$client      = new AyeCode_Connect( $args );
226
-				$redirect_to = ! empty( $_POST['redirect_to'] ) ? esc_url_raw( $_POST['redirect_to'] ) : '';
227
-				$redirect    = $client->build_connect_url( $redirect_to );
228
-				wp_send_json_success( array( 'connect_url' => $redirect ) );
229
-			} else {
230
-				wp_send_json_error( $this->strings['error_localhost'] );
231
-			}
232
-			wp_die();
233
-		}
234
-
235
-		/**
236
-		 * Check if maybe localhost.
237
-		 *
238
-		 * @return bool
239
-		 */
240
-		public function is_localhost() {
241
-			$localhost = false;
242
-
243
-			$host              = isset( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : '';
244
-			$localhost_domains = array(
245
-				'localhost',
246
-				'localhost.localdomain',
247
-				'127.0.0.1',
248
-				'::1'
249
-			);
250
-
251
-			if ( in_array( $host, $localhost_domains ) ) {
252
-				$localhost = true;
253
-			}
254
-
255
-			return $localhost;
256
-		}
257
-
258
-		/**
259
-		 * Show notice to connect site.
260
-		 */
261
-		public function ayecode_connect_install_notice() {
262
-			if ( $this->maybe_show() ) {
263
-				$connect_title_string     = $this->strings['connect_title'];
264
-				$connect_external_string  = $this->strings['connect_external'];
265
-				$connect_string           = $this->strings['connect'];
266
-				$connect_button_string    = $this->strings['connect_button'];
267
-				$connecting_button_string = $this->strings['connecting_button'];
268
-				?>
8
+    /**
9
+     * Allow the quick setup and connection of our AyeCode Connect plugin.
10
+     *
11
+     * Class AyeCode_Connect_Helper
12
+     */
13
+    class AyeCode_Connect_Helper {
14
+
15
+        // Hold the version number
16
+        var $version = "1.0.3";
17
+
18
+        // Hold the default strings.
19
+        var $strings = array();
20
+
21
+        // Hold the default pages.
22
+        var $pages = array();
23
+
24
+        /**
25
+         * The constructor.
26
+         *
27
+         * AyeCode_Connect_Helper constructor.
28
+         *
29
+         * @param array $strings
30
+         * @param array $pages
31
+         */
32
+        public function __construct( $strings = array(), $pages = array() ) {
33
+
34
+            // Only fire if not localhost and the current user has the right permissions.
35
+            if ( ! $this->is_localhost() && current_user_can( 'manage_options' ) ) {
36
+
37
+
38
+                // set default strings
39
+                $default_strings = array(
40
+                    'connect_title'     => __( "Thanks for choosing an AyeCode Product!" ),
41
+                    'connect_external'  => __( "Please confirm you wish to connect your site?" ),
42
+                    'connect'           => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s" ), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>" ),
43
+                    'connect_button'    => __( "Connect Site" ),
44
+                    'connecting_button' => __( "Connecting..." ),
45
+                    'error_localhost'   => __( "This service will only work with a live domain, not a localhost." ),
46
+                    'error'             => __( "Something went wrong, please refresh and try again." ),
47
+                );
48
+                $this->strings   = array_merge( $default_strings, $strings );
49
+
50
+
51
+                // set default pages
52
+                $default_pages = array();
53
+                $this->pages   = array_merge( $default_pages, $pages );
54
+
55
+                // maybe show connect site notice
56
+                add_action( 'admin_notices', array( $this, 'ayecode_connect_install_notice' ) );
57
+
58
+                // add ajax action if not already added
59
+                if ( ! has_action( 'wp_ajax_ayecode_connect_helper' ) ) {
60
+                    add_action( 'wp_ajax_ayecode_connect_helper', array( $this, 'ayecode_connect_install' ) );
61
+                }
62
+            }
63
+
64
+            // add ajax action if not already added
65
+            if ( ! has_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed' ) ) {
66
+                add_action( 'wp_ajax_nopriv_ayecode_connect_helper_installed', array( $this, 'ayecode_connect_helper_installed' ) );
67
+            }
68
+
69
+        }
70
+
71
+        /**
72
+         * Give a way to check we can connect via a external redirect.
73
+         */
74
+        public function ayecode_connect_helper_installed(){
75
+            $active = array(
76
+                'gd'    =>  defined('GEODIRECTORY_VERSION') && version_compare(GEODIRECTORY_VERSION,'2.0.0.79','>') ? 1 : 0,
77
+                'uwp'    =>  defined('USERSWP_VERSION') && version_compare(USERSWP_VERSION,'1.2.1.5','>') ? 1 : 0,
78
+                'wpi'    =>  defined('WPINV_VERSION') && version_compare(WPINV_VERSION,'1.0.14','>') ? 1 : 0,
79
+            );
80
+            wp_send_json_success( $active );
81
+            wp_die();
82
+        }
83
+
84
+        /**
85
+         * Get slug from path
86
+         *
87
+         * @param  string $key
88
+         *
89
+         * @return string
90
+         */
91
+        private function format_plugin_slug( $key ) {
92
+            $slug = explode( '/', $key );
93
+            $slug = explode( '.', end( $slug ) );
94
+
95
+            return $slug[0];
96
+        }
97
+
98
+        /**
99
+         * Install and activate the AyeCode Connect Plugin
100
+         */
101
+        public function ayecode_connect_install() {
102
+
103
+            // bail if localhost
104
+            if ( $this->is_localhost() ) {
105
+                wp_send_json_error( $this->strings['error_localhost'] );
106
+            }
107
+
108
+            // Explicitly clear the event.
109
+            wp_clear_scheduled_hook( 'geodir_plugin_background_installer', func_get_args() );
110
+
111
+            $success     = true;
112
+            $plugin_slug = "ayecode-connect";
113
+            if ( ! empty( $plugin_slug ) ) {
114
+                require_once( ABSPATH . 'wp-admin/includes/file.php' );
115
+                require_once( ABSPATH . 'wp-admin/includes/plugin-install.php' );
116
+                require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.php' );
117
+                require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
118
+
119
+                WP_Filesystem();
120
+
121
+                $skin              = new Automatic_Upgrader_Skin;
122
+                $upgrader          = new WP_Upgrader( $skin );
123
+                $installed_plugins = array_map( array( $this, 'format_plugin_slug' ), array_keys( get_plugins() ) );
124
+                $plugin_slug       = $plugin_slug;
125
+                $plugin            = $plugin_slug . '/' . $plugin_slug . '.php';
126
+                $installed         = false;
127
+                $activate          = false;
128
+
129
+                // See if the plugin is installed already
130
+                if ( in_array( $plugin_slug, $installed_plugins ) ) {
131
+                    $installed = true;
132
+                    $activate  = ! is_plugin_active( $plugin );
133
+                }
134
+
135
+                // Install this thing!
136
+                if ( ! $installed ) {
137
+
138
+                    // Suppress feedback
139
+                    ob_start();
140
+
141
+                    try {
142
+                        $plugin_information = plugins_api( 'plugin_information', array(
143
+                            'slug'   => $plugin_slug,
144
+                            'fields' => array(
145
+                                'short_description' => false,
146
+                                'sections'          => false,
147
+                                'requires'          => false,
148
+                                'rating'            => false,
149
+                                'ratings'           => false,
150
+                                'downloaded'        => false,
151
+                                'last_updated'      => false,
152
+                                'added'             => false,
153
+                                'tags'              => false,
154
+                                'homepage'          => false,
155
+                                'donate_link'       => false,
156
+                                'author_profile'    => false,
157
+                                'author'            => false,
158
+                            ),
159
+                        ) );
160
+
161
+                        if ( is_wp_error( $plugin_information ) ) {
162
+                            throw new Exception( $plugin_information->get_error_message() );
163
+                        }
164
+
165
+                        $package  = $plugin_information->download_link;
166
+                        $download = $upgrader->download_package( $package );
167
+
168
+                        if ( is_wp_error( $download ) ) {
169
+                            throw new Exception( $download->get_error_message() );
170
+                        }
171
+
172
+                        $working_dir = $upgrader->unpack_package( $download, true );
173
+
174
+                        if ( is_wp_error( $working_dir ) ) {
175
+                            throw new Exception( $working_dir->get_error_message() );
176
+                        }
177
+
178
+                        $result = $upgrader->install_package( array(
179
+                            'source'                      => $working_dir,
180
+                            'destination'                 => WP_PLUGIN_DIR,
181
+                            'clear_destination'           => false,
182
+                            'abort_if_destination_exists' => false,
183
+                            'clear_working'               => true,
184
+                            'hook_extra'                  => array(
185
+                                'type'   => 'plugin',
186
+                                'action' => 'install',
187
+                            ),
188
+                        ) );
189
+
190
+                        if ( is_wp_error( $result ) ) {
191
+                            throw new Exception( $result->get_error_message() );
192
+                        }
193
+
194
+                        $activate = true;
195
+
196
+                    } catch ( Exception $e ) {
197
+                        $success = false;
198
+                    }
199
+
200
+                    // Discard feedback
201
+                    ob_end_clean();
202
+                }
203
+
204
+                wp_clean_plugins_cache();
205
+
206
+                // Activate this thing
207
+                if ( $activate ) {
208
+                    try {
209
+                        $result = activate_plugin( $plugin );
210
+
211
+                        if ( is_wp_error( $result ) ) {
212
+                            $success = false;
213
+                        } else {
214
+                            $success = true;
215
+                        }
216
+                    } catch ( Exception $e ) {
217
+                        $success = false;
218
+                    }
219
+                }
220
+            }
221
+
222
+            if ( $success && function_exists( 'ayecode_connect_args' ) ) {
223
+                ayecode_connect();// init
224
+                $args        = ayecode_connect_args();
225
+                $client      = new AyeCode_Connect( $args );
226
+                $redirect_to = ! empty( $_POST['redirect_to'] ) ? esc_url_raw( $_POST['redirect_to'] ) : '';
227
+                $redirect    = $client->build_connect_url( $redirect_to );
228
+                wp_send_json_success( array( 'connect_url' => $redirect ) );
229
+            } else {
230
+                wp_send_json_error( $this->strings['error_localhost'] );
231
+            }
232
+            wp_die();
233
+        }
234
+
235
+        /**
236
+         * Check if maybe localhost.
237
+         *
238
+         * @return bool
239
+         */
240
+        public function is_localhost() {
241
+            $localhost = false;
242
+
243
+            $host              = isset( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : '';
244
+            $localhost_domains = array(
245
+                'localhost',
246
+                'localhost.localdomain',
247
+                '127.0.0.1',
248
+                '::1'
249
+            );
250
+
251
+            if ( in_array( $host, $localhost_domains ) ) {
252
+                $localhost = true;
253
+            }
254
+
255
+            return $localhost;
256
+        }
257
+
258
+        /**
259
+         * Show notice to connect site.
260
+         */
261
+        public function ayecode_connect_install_notice() {
262
+            if ( $this->maybe_show() ) {
263
+                $connect_title_string     = $this->strings['connect_title'];
264
+                $connect_external_string  = $this->strings['connect_external'];
265
+                $connect_string           = $this->strings['connect'];
266
+                $connect_button_string    = $this->strings['connect_button'];
267
+                $connecting_button_string = $this->strings['connecting_button'];
268
+                ?>
269 269
 				<div class="notice notice-info acch-notice">
270 270
 					<span class="acch-float-left">
271 271
 						<svg width="61px" height="61px" viewBox="0 0 61 61" version="1.1"
@@ -304,8 +304,8 @@  discard block
 block discarded – undo
304 304
 						<h3 class="acch-title"><?php echo esc_html( $connect_title_string ); ?></h3>
305 305
 					<p>
306 306
 						<?php
307
-						echo wp_kses_post( $connect_string );
308
-						?>
307
+                        echo wp_kses_post( $connect_string );
308
+                        ?>
309 309
 					</p>
310 310
 					</span>
311 311
 
@@ -318,9 +318,9 @@  discard block
 block discarded – undo
318 318
 				</div>
319 319
 
320 320
 				<?php
321
-				// only include the popup HTML if needed.
322
-				if ( ! empty( $_REQUEST['external-connect-request'] ) ) {
323
-					?>
321
+                // only include the popup HTML if needed.
322
+                if ( ! empty( $_REQUEST['external-connect-request'] ) ) {
323
+                    ?>
324 324
 					<div id="ayecode-connect-helper-external-confirm" style="display:none;">
325 325
 						<div class="noticex notice-info acch-notice" style="border: none;">
326 326
 					<span class="acch-float-left">
@@ -369,23 +369,23 @@  discard block
 block discarded – undo
369 369
 						</div>
370 370
 					</div>
371 371
 					<?php
372
-				}
373
-
374
-				// add required scripts
375
-				$this->script();
376
-			}
377
-		}
378
-
379
-		/**
380
-		 * Get the JS Script.
381
-		 */
382
-		public function script() {
383
-
384
-			// add thickbox if external request is requested
385
-			if ( ! empty( $_REQUEST['external-connect-request'] ) ) {
386
-				add_thickbox();
387
-			}
388
-			?>
372
+                }
373
+
374
+                // add required scripts
375
+                $this->script();
376
+            }
377
+        }
378
+
379
+        /**
380
+         * Get the JS Script.
381
+         */
382
+        public function script() {
383
+
384
+            // add thickbox if external request is requested
385
+            if ( ! empty( $_REQUEST['external-connect-request'] ) ) {
386
+                add_thickbox();
387
+            }
388
+            ?>
389 389
 			<style>
390 390
 				.acch-title {
391 391
 					margin: 0;
@@ -454,43 +454,43 @@  discard block
 block discarded – undo
454 454
 
455 455
 
456 456
 				<?php
457
-				// add thickbox if external request is requested
458
-				if(! empty( $_REQUEST['external-connect-request'] )) {
459
-				?>
457
+                // add thickbox if external request is requested
458
+                if(! empty( $_REQUEST['external-connect-request'] )) {
459
+                ?>
460 460
 				jQuery(function () {
461 461
 					setTimeout(function () {
462 462
 						tb_show("AyeCode Connect", "?TB_inline?width=300&height=80&inlineId=ayecode-connect-helper-external-confirm");
463 463
 					}, 200);
464 464
 				});
465 465
 				<?php
466
-				}
467
-				?>
466
+                }
467
+                ?>
468 468
 
469 469
 			</script>
470 470
 			<?php
471
-		}
472
-
473
-		/**
474
-		 * Decide what pages to show on.
475
-		 *
476
-		 * @return bool
477
-		 */
478
-		public function maybe_show() {
479
-			$show = false;
480
-
481
-			// check if on a page set to show
482
-			if ( isset( $_REQUEST['page'] ) && in_array( $_REQUEST['page'], $this->pages ) ) {
483
-
484
-				// check if not active and connected
485
-				if ( ! defined( 'AYECODE_CONNECT_VERSION' ) || ! get_option( 'ayecode_connect_blog_token' ) ) {
486
-					$show = true;
487
-				}
471
+        }
472
+
473
+        /**
474
+         * Decide what pages to show on.
475
+         *
476
+         * @return bool
477
+         */
478
+        public function maybe_show() {
479
+            $show = false;
480
+
481
+            // check if on a page set to show
482
+            if ( isset( $_REQUEST['page'] ) && in_array( $_REQUEST['page'], $this->pages ) ) {
483
+
484
+                // check if not active and connected
485
+                if ( ! defined( 'AYECODE_CONNECT_VERSION' ) || ! get_option( 'ayecode_connect_blog_token' ) ) {
486
+                    $show = true;
487
+                }
488 488
 
489
-			}
489
+            }
490 490
 
491
-			return $show;
492
-		}
491
+            return $show;
492
+        }
493 493
 
494
-	}
494
+    }
495 495
 
496 496
 }
Please login to merge, or discard this patch.
invoicing.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,16 +19,16 @@  discard block
 block discarded – undo
19 19
 
20 20
 // Define constants.
21 21
 if ( ! defined( 'WPINV_PLUGIN_FILE' ) ) {
22
-	define( 'WPINV_PLUGIN_FILE', __FILE__ );
22
+    define( 'WPINV_PLUGIN_FILE', __FILE__ );
23 23
 }
24 24
 
25 25
 if ( ! defined( 'WPINV_VERSION' ) ) {
26
-	define( 'WPINV_VERSION', '2.6.5' );
26
+    define( 'WPINV_VERSION', '2.6.5' );
27 27
 }
28 28
 
29 29
 // Include the main Invoicing class.
30 30
 if ( ! class_exists( 'WPInv_Plugin', false ) ) {
31
-	require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php';
31
+    require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php';
32 32
 }
33 33
 
34 34
 /**
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         $GLOBALS['invoicing'] = new WPInv_Plugin();
44 44
     }
45 45
 
46
-	return $GLOBALS['invoicing'];
46
+    return $GLOBALS['invoicing'];
47 47
 }
48 48
 
49 49
 /**
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,40 +7,40 @@
 block discarded – undo
7 7
  * Bail if we are not in WP.
8 8
  */
9 9
 if ( ! defined( 'ABSPATH' ) ) {
10
-	exit;
10
+    exit;
11 11
 }
12 12
 
13 13
 /**
14 14
  * Set the version only if its the current newest while loading.
15 15
  */
16 16
 add_action('after_setup_theme', function () {
17
-	global $ayecode_ui_version,$ayecode_ui_file_key;
18
-	$this_version = "0.1.68";
19
-	if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
20
-		$ayecode_ui_version = $this_version ;
21
-		$ayecode_ui_file_key = wp_hash( __FILE__ );
22
-	}
17
+    global $ayecode_ui_version,$ayecode_ui_file_key;
18
+    $this_version = "0.1.68";
19
+    if(empty($ayecode_ui_version) || version_compare($this_version , $ayecode_ui_version, '>')){
20
+        $ayecode_ui_version = $this_version ;
21
+        $ayecode_ui_file_key = wp_hash( __FILE__ );
22
+    }
23 23
 },0);
24 24
 
25 25
 /**
26 26
  * Load this version of WP Bootstrap Settings only if the file hash is the current one.
27 27
  */
28 28
 add_action('after_setup_theme', function () {
29
-	global $ayecode_ui_file_key;
30
-	if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){
31
-		include_once( dirname( __FILE__ ) . '/includes/class-aui.php' );
32
-		include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' );
33
-	}
29
+    global $ayecode_ui_file_key;
30
+    if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){
31
+        include_once( dirname( __FILE__ ) . '/includes/class-aui.php' );
32
+        include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' );
33
+    }
34 34
 },1);
35 35
 
36 36
 /**
37 37
  * Add the function that calls the class.
38 38
  */
39 39
 if(!function_exists('aui')){
40
-	function aui(){
41
-		if(!class_exists("AUI",false)){
42
-			return false;
43
-		}
44
-		return AUI::instance();
45
-	}
40
+    function aui(){
41
+        if(!class_exists("AUI",false)){
42
+            return false;
43
+        }
44
+        return AUI::instance();
45
+    }
46 46
 }
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/ayecode-ui-settings.php 1 patch
Indentation   +1220 added lines, -1220 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  * Bail if we are not in WP.
14 14
  */
15 15
 if ( ! defined( 'ABSPATH' ) ) {
16
-	exit;
16
+    exit;
17 17
 }
18 18
 
19 19
 /**
@@ -21,273 +21,273 @@  discard block
 block discarded – undo
21 21
  */
22 22
 if ( ! class_exists( 'AyeCode_UI_Settings' ) ) {
23 23
 
24
-	/**
25
-	 * A Class to be able to change settings for Font Awesome.
26
-	 *
27
-	 * Class AyeCode_UI_Settings
28
-	 * @ver 1.0.0
29
-	 * @todo decide how to implement textdomain
30
-	 */
31
-	class AyeCode_UI_Settings {
32
-
33
-		/**
34
-		 * Class version version.
35
-		 *
36
-		 * @var string
37
-		 */
38
-		public $version = '0.1.68';
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.68';
39
+
40
+        /**
41
+         * Class textdomain.
42
+         *
43
+         * @var string
44
+         */
45
+        public $textdomain = 'aui';
46
+
47
+        /**
48
+         * Latest version of Bootstrap at time of publish published.
49
+         *
50
+         * @var string
51
+         */
52
+        public $latest = "4.5.3";
53
+
54
+        /**
55
+         * Current version of select2 being used.
56
+         *
57
+         * @var string
58
+         */
59
+        public $select2_version = "4.0.11";
60
+
61
+        /**
62
+         * The title.
63
+         *
64
+         * @var string
65
+         */
66
+        public $name = 'AyeCode UI';
67
+
68
+        /**
69
+         * The relative url to the assets.
70
+         *
71
+         * @var string
72
+         */
73
+        public $url = '';
74
+
75
+        /**
76
+         * Holds the settings values.
77
+         *
78
+         * @var array
79
+         */
80
+        private $settings;
81
+
82
+        /**
83
+         * AyeCode_UI_Settings instance.
84
+         *
85
+         * @access private
86
+         * @since  1.0.0
87
+         * @var    AyeCode_UI_Settings There can be only one!
88
+         */
89
+        private static $instance = null;
90
+
91
+        /**
92
+         * Main AyeCode_UI_Settings Instance.
93
+         *
94
+         * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded.
95
+         *
96
+         * @since 1.0.0
97
+         * @static
98
+         * @return AyeCode_UI_Settings - Main instance.
99
+         */
100
+        public static function instance() {
101
+            if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) {
102
+
103
+                self::$instance = new AyeCode_UI_Settings;
104
+
105
+                add_action( 'init', array( self::$instance, 'init' ) ); // set settings
106
+
107
+                if ( is_admin() ) {
108
+                    add_action( 'admin_menu', array( self::$instance, 'menu_item' ) );
109
+                    add_action( 'admin_init', array( self::$instance, 'register_settings' ) );
110
+
111
+                    // Maybe show example page
112
+                    add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) );
113
+                }
114 114
 
115
-				add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
115
+                add_action( 'customize_register', array( self::$instance, 'customizer_settings' ));
116 116
 
117
-				do_action( 'ayecode_ui_settings_loaded' );
118
-			}
117
+                do_action( 'ayecode_ui_settings_loaded' );
118
+            }
119 119
 
120
-			return self::$instance;
121
-		}
120
+            return self::$instance;
121
+        }
122 122
 
123
-		/**
124
-		 * Setup some constants.
125
-		 */
126
-		public function constants(){
127
-			define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
-			define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
-			if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
-			if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
-		}
123
+        /**
124
+         * Setup some constants.
125
+         */
126
+        public function constants(){
127
+            define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be");
128
+            define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d');
129
+            if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL);
130
+            if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL);
131
+        }
132 132
 
133
-		/**
134
-		 * Initiate the settings and add the required action hooks.
135
-		 */
136
-		public function init() {
137
-
138
-			// Maybe fix settings
139
-			if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) {
140
-				$db_settings = get_option( 'ayecode-ui-settings' );
141
-				if ( ! empty( $db_settings ) ) {
142
-					$db_settings['css_backend'] = 'compatibility';
143
-					$db_settings['js_backend'] = 'core-popper';
144
-					update_option( 'ayecode-ui-settings', $db_settings );
145
-					wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true"));
146
-				}
147
-			}
133
+        /**
134
+         * Initiate the settings and add the required action hooks.
135
+         */
136
+        public function init() {
137
+
138
+            // Maybe fix settings
139
+            if ( ! empty( $_REQUEST['aui-fix-admin'] ) && !empty($_REQUEST['nonce']) && wp_verify_nonce( $_REQUEST['nonce'], "aui-fix-admin" ) ) {
140
+                $db_settings = get_option( 'ayecode-ui-settings' );
141
+                if ( ! empty( $db_settings ) ) {
142
+                    $db_settings['css_backend'] = 'compatibility';
143
+                    $db_settings['js_backend'] = 'core-popper';
144
+                    update_option( 'ayecode-ui-settings', $db_settings );
145
+                    wp_safe_redirect(admin_url("options-general.php?page=ayecode-ui-settings&updated=true"));
146
+                }
147
+            }
148 148
 
149
-			$this->constants();
150
-			$this->settings = $this->get_settings();
151
-			$this->url = $this->get_url();
149
+            $this->constants();
150
+            $this->settings = $this->get_settings();
151
+            $this->url = $this->get_url();
152
+
153
+            /**
154
+             * Maybe load CSS
155
+             *
156
+             * We load super early in case there is a theme version that might change the colors
157
+             */
158
+            if ( $this->settings['css'] ) {
159
+                $priority = $this->is_bs3_compat() ? 100 : 1;
160
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority );
161
+            }
162
+            if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
163
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
164
+            }
152 165
 
153
-			/**
154
-			 * Maybe load CSS
155
-			 *
156
-			 * We load super early in case there is a theme version that might change the colors
157
-			 */
158
-			if ( $this->settings['css'] ) {
159
-				$priority = $this->is_bs3_compat() ? 100 : 1;
160
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), $priority );
161
-			}
162
-			if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) {
163
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 );
164
-			}
165
-
166
-			// maybe load JS
167
-			if ( $this->settings['js'] ) {
168
-				$priority = $this->is_bs3_compat() ? 100 : 1;
169
-				add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
170
-			}
171
-			if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
172
-				add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
173
-			}
174
-
175
-			// Maybe set the HTML font size
176
-			if ( $this->settings['html_font_size'] ) {
177
-				add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
178
-			}
179
-
180
-			// Maybe show backend style error
181
-			if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){
182
-				add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) );
183
-			}
166
+            // maybe load JS
167
+            if ( $this->settings['js'] ) {
168
+                $priority = $this->is_bs3_compat() ? 100 : 1;
169
+                add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority );
170
+            }
171
+            if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) {
172
+                add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 );
173
+            }
184 174
 
185
-		}
175
+            // Maybe set the HTML font size
176
+            if ( $this->settings['html_font_size'] ) {
177
+                add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 );
178
+            }
186 179
 
187
-		/**
188
-		 * Show admin notice if backend scripts not loaded.
189
-		 */
190
-		public function show_admin_style_notice(){
191
-			$fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin'));
192
-			$button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>';
193
-			$message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button;
194
-			echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>';
195
-		}
180
+            // Maybe show backend style error
181
+            if( $this->settings['css_backend'] != 'compatibility' || $this->settings['js_backend'] != 'core-popper' ){
182
+                add_action( 'admin_notices', array( $this, 'show_admin_style_notice' ) );
183
+            }
196 184
 
197
-		/**
198
-		 * Check if we should load the admin scripts or not.
199
-		 *
200
-		 * @return bool
201
-		 */
202
-		public function load_admin_scripts(){
203
-			$result = true;
204
-
205
-			// check if specifically disabled
206
-			if(!empty($this->settings['disable_admin'])){
207
-				$url_parts = explode("\n",$this->settings['disable_admin']);
208
-				foreach($url_parts as $part){
209
-					if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
210
-						return false; // return early, no point checking further
211
-					}
212
-				}
213
-			}
185
+        }
214 186
 
215
-			return $result;
216
-		}
187
+        /**
188
+         * Show admin notice if backend scripts not loaded.
189
+         */
190
+        public function show_admin_style_notice(){
191
+            $fix_url = admin_url("options-general.php?page=ayecode-ui-settings&aui-fix-admin=true&nonce=".wp_create_nonce('aui-fix-admin'));
192
+            $button = '<a href="'.esc_url($fix_url).'" class="button-primary">Fix Now</a>';
193
+            $message = __( '<b>Style Issue:</b> AyeCode UI is disable or set wrong.')." " .$button;
194
+            echo '<div class="notice notice-error aui-settings-error-notice"><p>'.$message.'</p></div>';
195
+        }
217 196
 
218
-		/**
219
-		 * Add a html font size to the footer.
220
-		 */
221
-		public function html_font_size(){
222
-			$this->settings = $this->get_settings();
223
-			echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
224
-		}
197
+        /**
198
+         * Check if we should load the admin scripts or not.
199
+         *
200
+         * @return bool
201
+         */
202
+        public function load_admin_scripts(){
203
+            $result = true;
204
+
205
+            // check if specifically disabled
206
+            if(!empty($this->settings['disable_admin'])){
207
+                $url_parts = explode("\n",$this->settings['disable_admin']);
208
+                foreach($url_parts as $part){
209
+                    if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){
210
+                        return false; // return early, no point checking further
211
+                    }
212
+                }
213
+            }
214
+
215
+            return $result;
216
+        }
217
+
218
+        /**
219
+         * Add a html font size to the footer.
220
+         */
221
+        public function html_font_size(){
222
+            $this->settings = $this->get_settings();
223
+            echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>";
224
+        }
225 225
 
226
-		/**
227
-		 * Check if the current admin screen should load scripts.
228
-		 * 
229
-		 * @return bool
230
-		 */
231
-		public function is_aui_screen(){
226
+        /**
227
+         * Check if the current admin screen should load scripts.
228
+         * 
229
+         * @return bool
230
+         */
231
+        public function is_aui_screen(){
232 232
 //			echo '###';exit;
233
-			$load = false;
234
-			// check if we should load or not
235
-			if ( is_admin() ) {
236
-				// Only enable on set pages
237
-				$aui_screens = array(
238
-					'page',
239
-					'post',
240
-					'settings_page_ayecode-ui-settings',
241
-					'appearance_page_gutenberg-widgets',
242
-					'widgets',
243
-					'ayecode-ui-settings',
244
-					'site-editor'
245
-				);
246
-				$screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
247
-
248
-				$screen = get_current_screen();
233
+            $load = false;
234
+            // check if we should load or not
235
+            if ( is_admin() ) {
236
+                // Only enable on set pages
237
+                $aui_screens = array(
238
+                    'page',
239
+                    'post',
240
+                    'settings_page_ayecode-ui-settings',
241
+                    'appearance_page_gutenberg-widgets',
242
+                    'widgets',
243
+                    'ayecode-ui-settings',
244
+                    'site-editor'
245
+                );
246
+                $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens );
247
+
248
+                $screen = get_current_screen();
249 249
 
250 250
 //				echo '###'.$screen->id;
251 251
 
252
-				// check if we are on a AUI screen
253
-				if ( $screen && in_array( $screen->id, $screen_ids ) ) {
254
-					$load = true;
255
-				}
252
+                // check if we are on a AUI screen
253
+                if ( $screen && in_array( $screen->id, $screen_ids ) ) {
254
+                    $load = true;
255
+                }
256 256
 
257
-				//load for widget previews in WP 5.8
258
-				if( !empty($_REQUEST['legacy-widget-preview'])){
259
-					$load = true;
260
-				}
261
-			}
257
+                //load for widget previews in WP 5.8
258
+                if( !empty($_REQUEST['legacy-widget-preview'])){
259
+                    $load = true;
260
+                }
261
+            }
262 262
 
263
-			return apply_filters( 'aui_load_on_admin' , $load );
264
-		}
263
+            return apply_filters( 'aui_load_on_admin' , $load );
264
+        }
265 265
 
266
-		/**
267
-		 * Adds the styles.
268
-		 */
269
-		public function enqueue_style() {
266
+        /**
267
+         * Adds the styles.
268
+         */
269
+        public function enqueue_style() {
270 270
 
271 271
 
272
-			if( is_admin() && !$this->is_aui_screen()){
273
-				// don't add wp-admin scripts if not requested to
274
-			}else{
275
-				$css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
272
+            if( is_admin() && !$this->is_aui_screen()){
273
+                // don't add wp-admin scripts if not requested to
274
+            }else{
275
+                $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend';
276 276
 
277
-				$rtl = is_rtl() ? '-rtl' : '';
277
+                $rtl = is_rtl() ? '-rtl' : '';
278 278
 
279
-				if($this->settings[$css_setting]){
280
-					$compatibility = $this->settings[$css_setting]=='core' ? false : true;
281
-					$url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
282
-					wp_register_style( 'ayecode-ui', $url, array(), $this->version );
283
-					wp_enqueue_style( 'ayecode-ui' );
279
+                if($this->settings[$css_setting]){
280
+                    $compatibility = $this->settings[$css_setting]=='core' ? false : true;
281
+                    $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css';
282
+                    wp_register_style( 'ayecode-ui', $url, array(), $this->version );
283
+                    wp_enqueue_style( 'ayecode-ui' );
284 284
 
285
-					// flatpickr
286
-					wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version );
285
+                    // flatpickr
286
+                    wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->version );
287 287
 
288
-					// fix some wp-admin issues
289
-					if(is_admin()){
290
-						$custom_css = "
288
+                    // fix some wp-admin issues
289
+                    if(is_admin()){
290
+                        $custom_css = "
291 291
                 body{
292 292
                     background-color: #f1f1f1;
293 293
                     font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif;
@@ -333,35 +333,35 @@  discard block
 block discarded – undo
333 333
 				}
334 334
                 ";
335 335
 
336
-						// @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
337
-						$custom_css .= "
336
+                        // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377
337
+                        $custom_css .= "
338 338
 						.edit-post-sidebar input[type=color].components-text-control__input{
339 339
 						    padding: 0;
340 340
 						}
341 341
 					";
342
-						wp_add_inline_style( 'ayecode-ui', $custom_css );
343
-					}
342
+                        wp_add_inline_style( 'ayecode-ui', $custom_css );
343
+                    }
344 344
 
345
-					// custom changes
346
-					wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
345
+                    // custom changes
346
+                    wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) );
347 347
 
348
-				}
349
-			}
348
+                }
349
+            }
350 350
 
351 351
 
352
-		}
352
+        }
353 353
 
354
-		/**
355
-		 * Get inline script used if bootstrap enqueued
356
-		 *
357
-		 * If this remains small then its best to use this than to add another JS file.
358
-		 */
359
-		public function inline_script() {
360
-			// Flatpickr calendar locale
361
-			$flatpickr_locale = self::flatpickr_locale();
362
-
363
-			ob_start();
364
-			?>
354
+        /**
355
+         * Get inline script used if bootstrap enqueued
356
+         *
357
+         * If this remains small then its best to use this than to add another JS file.
358
+         */
359
+        public function inline_script() {
360
+            // Flatpickr calendar locale
361
+            $flatpickr_locale = self::flatpickr_locale();
362
+
363
+            ob_start();
364
+            ?>
365 365
 			<script>
366 366
 				/**
367 367
 				 * An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ).
@@ -1196,29 +1196,29 @@  discard block
 block discarded – undo
1196 1196
 				}
1197 1197
 			</script>
1198 1198
 			<?php
1199
-			$output = ob_get_clean();
1199
+            $output = ob_get_clean();
1200 1200
 
1201 1201
 
1202 1202
 
1203
-			/*
1203
+            /*
1204 1204
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1205 1205
 			 */
1206
-			return str_replace( array(
1207
-				'<script>',
1208
-				'</script>'
1209
-			), '', self::minify_js($output) );
1210
-		}
1206
+            return str_replace( array(
1207
+                '<script>',
1208
+                '</script>'
1209
+            ), '', self::minify_js($output) );
1210
+        }
1211 1211
 
1212 1212
 
1213
-		/**
1214
-		 * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1215
-		 *
1216
-		 * @TODO we may need this when other conflicts arrise.
1217
-		 * @return mixed
1218
-		 */
1219
-		public static function bs3_compat_js() {
1220
-			ob_start();
1221
-			?>
1213
+        /**
1214
+         * JS to help with conflict issues with other plugins and themes using bootstrap v3.
1215
+         *
1216
+         * @TODO we may need this when other conflicts arrise.
1217
+         * @return mixed
1218
+         */
1219
+        public static function bs3_compat_js() {
1220
+            ob_start();
1221
+            ?>
1222 1222
 			<script>
1223 1223
 				<?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?>
1224 1224
 				/* With Avada builder */
@@ -1226,20 +1226,20 @@  discard block
 block discarded – undo
1226 1226
 				<?php } ?>
1227 1227
 			</script>
1228 1228
 			<?php
1229
-			return str_replace( array(
1230
-				'<script>',
1231
-				'</script>'
1232
-			), '', ob_get_clean());
1233
-		}
1229
+            return str_replace( array(
1230
+                '<script>',
1231
+                '</script>'
1232
+            ), '', ob_get_clean());
1233
+        }
1234 1234
 
1235
-		/**
1236
-		 * Get inline script used if bootstrap file browser enqueued.
1237
-		 *
1238
-		 * If this remains small then its best to use this than to add another JS file.
1239
-		 */
1240
-		public function inline_script_file_browser(){
1241
-			ob_start();
1242
-			?>
1235
+        /**
1236
+         * Get inline script used if bootstrap file browser enqueued.
1237
+         *
1238
+         * If this remains small then its best to use this than to add another JS file.
1239
+         */
1240
+        public function inline_script_file_browser(){
1241
+            ob_start();
1242
+            ?>
1243 1243
 			<script>
1244 1244
 				// run on doc ready
1245 1245
 				jQuery(document).ready(function () {
@@ -1247,203 +1247,203 @@  discard block
 block discarded – undo
1247 1247
 				});
1248 1248
 			</script>
1249 1249
 			<?php
1250
-			$output = ob_get_clean();
1250
+            $output = ob_get_clean();
1251 1251
 
1252
-			/*
1252
+            /*
1253 1253
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1254 1254
 			 */
1255
-			return str_replace( array(
1256
-				'<script>',
1257
-				'</script>'
1258
-			), '', $output );
1259
-		}
1255
+            return str_replace( array(
1256
+                '<script>',
1257
+                '</script>'
1258
+            ), '', $output );
1259
+        }
1260 1260
 
1261
-		/**
1262
-		 * Adds the Font Awesome JS.
1263
-		 */
1264
-		public function enqueue_scripts() {
1261
+        /**
1262
+         * Adds the Font Awesome JS.
1263
+         */
1264
+        public function enqueue_scripts() {
1265 1265
 
1266
-			if( is_admin() && !$this->is_aui_screen()){
1267
-				// don't add wp-admin scripts if not requested to
1268
-			}else {
1266
+            if( is_admin() && !$this->is_aui_screen()){
1267
+                // don't add wp-admin scripts if not requested to
1268
+            }else {
1269 1269
 
1270
-				$js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1270
+                $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend';
1271 1271
 
1272
-				// select2
1273
-				wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1272
+                // select2
1273
+                wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version );
1274 1274
 
1275
-				// flatpickr
1276
-				wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version );
1275
+                // flatpickr
1276
+                wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->version );
1277 1277
 
1278
-				// flatpickr
1279
-				wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version );
1278
+                // flatpickr
1279
+                wp_register_script( 'iconpicker', $this->url . 'assets/js/fontawesome-iconpicker.min.js', array(), $this->version );
1280 1280
 				
1281
-				// Bootstrap file browser
1282
-				wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1283
-				wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1284
-
1285
-				$load_inline = false;
1286
-
1287
-				if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1288
-					// Bootstrap bundle
1289
-					$url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1290
-					wp_register_script( 'bootstrap-js-bundle', $url, array(
1291
-						'select2',
1292
-						'jquery'
1293
-					), $this->version, $this->is_bs3_compat() );
1294
-					// if in admin then add to footer for compatibility.
1295
-					is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1296
-					$script = $this->inline_script();
1297
-					wp_add_inline_script( 'bootstrap-js-bundle', $script );
1298
-				} elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1299
-					$url = $this->url . 'assets/js/popper.min.js';
1300
-					wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version );
1301
-					wp_enqueue_script( 'bootstrap-js-popper' );
1302
-					$load_inline = true;
1303
-				} else {
1304
-					$load_inline = true;
1305
-				}
1281
+                // Bootstrap file browser
1282
+                wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version );
1283
+                wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() );
1284
+
1285
+                $load_inline = false;
1286
+
1287
+                if ( $this->settings[ $js_setting ] == 'core-popper' ) {
1288
+                    // Bootstrap bundle
1289
+                    $url = $this->url . 'assets/js/bootstrap.bundle.min.js';
1290
+                    wp_register_script( 'bootstrap-js-bundle', $url, array(
1291
+                        'select2',
1292
+                        'jquery'
1293
+                    ), $this->version, $this->is_bs3_compat() );
1294
+                    // if in admin then add to footer for compatibility.
1295
+                    is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' );
1296
+                    $script = $this->inline_script();
1297
+                    wp_add_inline_script( 'bootstrap-js-bundle', $script );
1298
+                } elseif ( $this->settings[ $js_setting ] == 'popper' ) {
1299
+                    $url = $this->url . 'assets/js/popper.min.js';
1300
+                    wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->version );
1301
+                    wp_enqueue_script( 'bootstrap-js-popper' );
1302
+                    $load_inline = true;
1303
+                } else {
1304
+                    $load_inline = true;
1305
+                }
1306 1306
 
1307
-				// Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1308
-				if ( $load_inline ) {
1309
-					wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1310
-					wp_enqueue_script( 'bootstrap-dummy' );
1311
-					$script = $this->inline_script();
1312
-					wp_add_inline_script( 'bootstrap-dummy', $script );
1313
-				}
1314
-			}
1307
+                // Load needed inline scripts by faking the loading of a script if the main script is not being loaded
1308
+                if ( $load_inline ) {
1309
+                    wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) );
1310
+                    wp_enqueue_script( 'bootstrap-dummy' );
1311
+                    $script = $this->inline_script();
1312
+                    wp_add_inline_script( 'bootstrap-dummy', $script );
1313
+                }
1314
+            }
1315 1315
 
1316
-		}
1316
+        }
1317 1317
 
1318
-		/**
1319
-		 * Enqueue flatpickr if called.
1320
-		 */
1321
-		public function enqueue_flatpickr(){
1322
-			wp_enqueue_style( 'flatpickr' );
1323
-			wp_enqueue_script( 'flatpickr' );
1324
-		}
1318
+        /**
1319
+         * Enqueue flatpickr if called.
1320
+         */
1321
+        public function enqueue_flatpickr(){
1322
+            wp_enqueue_style( 'flatpickr' );
1323
+            wp_enqueue_script( 'flatpickr' );
1324
+        }
1325 1325
 
1326
-		/**
1327
-		 * Enqueue iconpicker if called.
1328
-		 */
1329
-		public function enqueue_iconpicker(){
1330
-			wp_enqueue_style( 'iconpicker' );
1331
-			wp_enqueue_script( 'iconpicker' );
1332
-		}
1326
+        /**
1327
+         * Enqueue iconpicker if called.
1328
+         */
1329
+        public function enqueue_iconpicker(){
1330
+            wp_enqueue_style( 'iconpicker' );
1331
+            wp_enqueue_script( 'iconpicker' );
1332
+        }
1333 1333
 
1334
-		/**
1335
-		 * Get the url path to the current folder.
1336
-		 *
1337
-		 * @return string
1338
-		 */
1339
-		public function get_url() {
1334
+        /**
1335
+         * Get the url path to the current folder.
1336
+         *
1337
+         * @return string
1338
+         */
1339
+        public function get_url() {
1340 1340
 
1341
-			$url = '';
1342
-			// check if we are inside a plugin
1343
-			$file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1341
+            $url = '';
1342
+            // check if we are inside a plugin
1343
+            $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) );
1344 1344
 
1345
-			// add check in-case user has changed wp-content dir name.
1346
-			$wp_content_folder_name = basename(WP_CONTENT_DIR);
1347
-			$dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1348
-			$url_parts = explode("/$wp_content_folder_name/",plugins_url());
1345
+            // add check in-case user has changed wp-content dir name.
1346
+            $wp_content_folder_name = basename(WP_CONTENT_DIR);
1347
+            $dir_parts = explode("/$wp_content_folder_name/",$file_dir);
1348
+            $url_parts = explode("/$wp_content_folder_name/",plugins_url());
1349 1349
 
1350
-			if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1351
-				$url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1352
-			}
1350
+            if(!empty($url_parts[0]) && !empty($dir_parts[1])){
1351
+                $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] );
1352
+            }
1353 1353
 
1354
-			return $url;
1355
-		}
1354
+            return $url;
1355
+        }
1356 1356
 
1357
-		/**
1358
-		 * Register the database settings with WordPress.
1359
-		 */
1360
-		public function register_settings() {
1361
-			register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1362
-		}
1357
+        /**
1358
+         * Register the database settings with WordPress.
1359
+         */
1360
+        public function register_settings() {
1361
+            register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' );
1362
+        }
1363 1363
 
1364
-		/**
1365
-		 * Add the WordPress settings menu item.
1366
-		 * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1367
-		 */
1368
-		public function menu_item() {
1369
-			$menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1370
-			call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1371
-				$this,
1372
-				'settings_page'
1373
-			) );
1374
-		}
1364
+        /**
1365
+         * Add the WordPress settings menu item.
1366
+         * @since 1.0.10 Calling function name direct will fail theme check so we don't.
1367
+         */
1368
+        public function menu_item() {
1369
+            $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme
1370
+            call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array(
1371
+                $this,
1372
+                'settings_page'
1373
+            ) );
1374
+        }
1375 1375
 
1376
-		/**
1377
-		 * Get a list of themes and their default JS settings.
1378
-		 *
1379
-		 * @return array
1380
-		 */
1381
-		public function theme_js_settings(){
1382
-			return array(
1383
-				'ayetheme' => 'popper',
1384
-				'listimia' => 'required',
1385
-				'listimia_backend' => 'core-popper',
1386
-				//'avada'    => 'required', // removed as we now add compatibility
1387
-			);
1388
-		}
1376
+        /**
1377
+         * Get a list of themes and their default JS settings.
1378
+         *
1379
+         * @return array
1380
+         */
1381
+        public function theme_js_settings(){
1382
+            return array(
1383
+                'ayetheme' => 'popper',
1384
+                'listimia' => 'required',
1385
+                'listimia_backend' => 'core-popper',
1386
+                //'avada'    => 'required', // removed as we now add compatibility
1387
+            );
1388
+        }
1389 1389
 
1390
-		/**
1391
-		 * Get the current Font Awesome output settings.
1392
-		 *
1393
-		 * @return array The array of settings.
1394
-		 */
1395
-		public function get_settings() {
1396
-
1397
-			$db_settings = get_option( 'ayecode-ui-settings' );
1398
-			$js_default = 'core-popper';
1399
-			$js_default_backend = $js_default;
1400
-
1401
-			// maybe set defaults (if no settings set)
1402
-			if(empty($db_settings)){
1403
-				$active_theme = strtolower( get_template() ); // active parent theme.
1404
-				$theme_js_settings = self::theme_js_settings();
1405
-				if(isset($theme_js_settings[$active_theme])){
1406
-					$js_default = $theme_js_settings[$active_theme];
1407
-					$js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1408
-				}
1409
-			}
1410
-
1411
-			$defaults = array(
1412
-				'css'       => 'compatibility', // core, compatibility
1413
-				'js'        => $js_default, // js to load, core-popper, popper
1414
-				'html_font_size'        => '16', // js to load, core-popper, popper
1415
-				'css_backend'       => 'compatibility', // core, compatibility
1416
-				'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1417
-				'disable_admin'     =>  '', // URL snippets to disable loading on admin
1418
-			);
1419
-
1420
-			$settings = wp_parse_args( $db_settings, $defaults );
1421
-
1422
-			/**
1423
-			 * Filter the Bootstrap settings.
1424
-			 *
1425
-			 * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1426
-			 */
1427
-			return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1428
-		}
1390
+        /**
1391
+         * Get the current Font Awesome output settings.
1392
+         *
1393
+         * @return array The array of settings.
1394
+         */
1395
+        public function get_settings() {
1396
+
1397
+            $db_settings = get_option( 'ayecode-ui-settings' );
1398
+            $js_default = 'core-popper';
1399
+            $js_default_backend = $js_default;
1400
+
1401
+            // maybe set defaults (if no settings set)
1402
+            if(empty($db_settings)){
1403
+                $active_theme = strtolower( get_template() ); // active parent theme.
1404
+                $theme_js_settings = self::theme_js_settings();
1405
+                if(isset($theme_js_settings[$active_theme])){
1406
+                    $js_default = $theme_js_settings[$active_theme];
1407
+                    $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default;
1408
+                }
1409
+            }
1410
+
1411
+            $defaults = array(
1412
+                'css'       => 'compatibility', // core, compatibility
1413
+                'js'        => $js_default, // js to load, core-popper, popper
1414
+                'html_font_size'        => '16', // js to load, core-popper, popper
1415
+                'css_backend'       => 'compatibility', // core, compatibility
1416
+                'js_backend'        => $js_default_backend, // js to load, core-popper, popper
1417
+                'disable_admin'     =>  '', // URL snippets to disable loading on admin
1418
+            );
1419
+
1420
+            $settings = wp_parse_args( $db_settings, $defaults );
1421
+
1422
+            /**
1423
+             * Filter the Bootstrap settings.
1424
+             *
1425
+             * @todo if we add this filer people might use it and then it defeates the purpose of this class :/
1426
+             */
1427
+            return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults );
1428
+        }
1429 1429
 
1430 1430
 
1431
-		/**
1432
-		 * The settings page html output.
1433
-		 */
1434
-		public function settings_page() {
1435
-			if ( ! current_user_can( 'manage_options' ) ) {
1436
-				wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1437
-			}
1438
-			?>
1431
+        /**
1432
+         * The settings page html output.
1433
+         */
1434
+        public function settings_page() {
1435
+            if ( ! current_user_can( 'manage_options' ) ) {
1436
+                wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) );
1437
+            }
1438
+            ?>
1439 1439
 			<div class="wrap">
1440 1440
 				<h1><?php echo $this->name; ?></h1>
1441 1441
 				<p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p>
1442 1442
 				<form method="post" action="options.php">
1443 1443
 					<?php
1444
-					settings_fields( 'ayecode-ui-settings' );
1445
-					do_settings_sections( 'ayecode-ui-settings' );
1446
-					?>
1444
+                    settings_fields( 'ayecode-ui-settings' );
1445
+                    do_settings_sections( 'ayecode-ui-settings' );
1446
+                    ?>
1447 1447
 
1448 1448
 					<h2><?php _e( 'Frontend', 'aui' ); ?></h2>
1449 1449
 					<table class="form-table wpbs-table-settings">
@@ -1523,60 +1523,60 @@  discard block
 block discarded – undo
1523 1523
 					</table>
1524 1524
 
1525 1525
 					<?php
1526
-					submit_button();
1527
-					?>
1526
+                    submit_button();
1527
+                    ?>
1528 1528
 				</form>
1529 1529
 
1530 1530
 				<div id="wpbs-version"><?php echo $this->version; ?></div>
1531 1531
 			</div>
1532 1532
 
1533 1533
 			<?php
1534
-		}
1534
+        }
1535 1535
 
1536
-		public function customizer_settings($wp_customize){
1537
-			$wp_customize->add_section('aui_settings', array(
1538
-				'title'    => __('AyeCode UI','aui'),
1539
-				'priority' => 120,
1540
-			));
1541
-
1542
-			//  =============================
1543
-			//  = Color Picker              =
1544
-			//  =============================
1545
-			$wp_customize->add_setting('aui_options[color_primary]', array(
1546
-				'default'           => AUI_PRIMARY_COLOR,
1547
-				'sanitize_callback' => 'sanitize_hex_color',
1548
-				'capability'        => 'edit_theme_options',
1549
-				'type'              => 'option',
1550
-				'transport'         => 'refresh',
1551
-			));
1552
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1553
-				'label'    => __('Primary Color','aui'),
1554
-				'section'  => 'aui_settings',
1555
-				'settings' => 'aui_options[color_primary]',
1556
-			)));
1557
-
1558
-			$wp_customize->add_setting('aui_options[color_secondary]', array(
1559
-				'default'           => '#6c757d',
1560
-				'sanitize_callback' => 'sanitize_hex_color',
1561
-				'capability'        => 'edit_theme_options',
1562
-				'type'              => 'option',
1563
-				'transport'         => 'refresh',
1564
-			));
1565
-			$wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1566
-				'label'    => __('Secondary Color','aui'),
1567
-				'section'  => 'aui_settings',
1568
-				'settings' => 'aui_options[color_secondary]',
1569
-			)));
1570
-		}
1536
+        public function customizer_settings($wp_customize){
1537
+            $wp_customize->add_section('aui_settings', array(
1538
+                'title'    => __('AyeCode UI','aui'),
1539
+                'priority' => 120,
1540
+            ));
1541
+
1542
+            //  =============================
1543
+            //  = Color Picker              =
1544
+            //  =============================
1545
+            $wp_customize->add_setting('aui_options[color_primary]', array(
1546
+                'default'           => AUI_PRIMARY_COLOR,
1547
+                'sanitize_callback' => 'sanitize_hex_color',
1548
+                'capability'        => 'edit_theme_options',
1549
+                'type'              => 'option',
1550
+                'transport'         => 'refresh',
1551
+            ));
1552
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array(
1553
+                'label'    => __('Primary Color','aui'),
1554
+                'section'  => 'aui_settings',
1555
+                'settings' => 'aui_options[color_primary]',
1556
+            )));
1557
+
1558
+            $wp_customize->add_setting('aui_options[color_secondary]', array(
1559
+                'default'           => '#6c757d',
1560
+                'sanitize_callback' => 'sanitize_hex_color',
1561
+                'capability'        => 'edit_theme_options',
1562
+                'type'              => 'option',
1563
+                'transport'         => 'refresh',
1564
+            ));
1565
+            $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array(
1566
+                'label'    => __('Secondary Color','aui'),
1567
+                'section'  => 'aui_settings',
1568
+                'settings' => 'aui_options[color_secondary]',
1569
+            )));
1570
+        }
1571 1571
 
1572
-		/**
1573
-		 * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1574
-		 *
1575
-		 * @return mixed
1576
-		 */
1577
-		public static function bs3_compat_css() {
1578
-			ob_start();
1579
-			?>
1572
+        /**
1573
+         * CSS to help with conflict issues with other plugins and themes using bootstrap v3.
1574
+         *
1575
+         * @return mixed
1576
+         */
1577
+        public static function bs3_compat_css() {
1578
+            ob_start();
1579
+            ?>
1580 1580
 			<style>
1581 1581
 			/* Bootstrap 3 compatibility */
1582 1582
 			body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;}
@@ -1605,583 +1605,583 @@  discard block
 block discarded – undo
1605 1605
 			<?php } ?>
1606 1606
 			</style>
1607 1607
 			<?php
1608
-			return str_replace( array(
1609
-				'<style>',
1610
-				'</style>'
1611
-			), '', self::minify_css( ob_get_clean() ) );
1612
-		}
1608
+            return str_replace( array(
1609
+                '<style>',
1610
+                '</style>'
1611
+            ), '', self::minify_css( ob_get_clean() ) );
1612
+        }
1613 1613
 
1614 1614
 
1615
-		public static function custom_css($compatibility = true) {
1616
-			$settings = get_option('aui_options');
1615
+        public static function custom_css($compatibility = true) {
1616
+            $settings = get_option('aui_options');
1617 1617
 
1618
-			ob_start();
1618
+            ob_start();
1619 1619
 
1620
-			$primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1621
-			$secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1622
-				//AUI_PRIMARY_COLOR_ORIGINAL
1623
-			?>
1620
+            $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR;
1621
+            $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR;
1622
+                //AUI_PRIMARY_COLOR_ORIGINAL
1623
+            ?>
1624 1624
 			<style>
1625 1625
 				<?php
1626 1626
 
1627
-					// BS v3 compat
1628
-					if( self::is_bs3_compat() ){
1629
-					    echo self::bs3_compat_css();
1630
-					}
1627
+                    // BS v3 compat
1628
+                    if( self::is_bs3_compat() ){
1629
+                        echo self::bs3_compat_css();
1630
+                    }
1631 1631
 
1632
-					if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1633
-						echo self::css_primary($primary_color,$compatibility);
1634
-					}
1632
+                    if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){
1633
+                        echo self::css_primary($primary_color,$compatibility);
1634
+                    }
1635 1635
 
1636
-					if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1637
-						echo self::css_secondary($settings['color_secondary'],$compatibility);
1638
-					}
1636
+                    if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){
1637
+                        echo self::css_secondary($settings['color_secondary'],$compatibility);
1638
+                    }
1639 1639
 
1640
-					// Set admin bar z-index lower when modal is open.
1641
-					echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1640
+                    // Set admin bar z-index lower when modal is open.
1641
+                    echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}';
1642 1642
 
1643
-					if(is_admin()){
1644
-						echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}';
1645
-					}
1643
+                    if(is_admin()){
1644
+                        echo ' body.modal-open #adminmenuwrap{z-index:999} body.modal-open #wpadminbar{z-index:1025}';
1645
+                    }
1646 1646
                 ?>
1647 1647
 			</style>
1648 1648
 			<?php
1649 1649
 
1650 1650
 
1651
-			/*
1651
+            /*
1652 1652
 			 * We only add the <script> tags for code highlighting, so we strip them from the output.
1653 1653
 			 */
1654
-			return str_replace( array(
1655
-				'<style>',
1656
-				'</style>'
1657
-			), '', self::minify_css( ob_get_clean() ) );
1658
-		}
1654
+            return str_replace( array(
1655
+                '<style>',
1656
+                '</style>'
1657
+            ), '', self::minify_css( ob_get_clean() ) );
1658
+        }
1659 1659
 
1660
-		/**
1661
-		 * Check if we should add booststrap 3 compatibility changes.
1662
-		 *
1663
-		 * @return bool
1664
-		 */
1665
-		public static function is_bs3_compat(){
1666
-			return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1667
-		}
1660
+        /**
1661
+         * Check if we should add booststrap 3 compatibility changes.
1662
+         *
1663
+         * @return bool
1664
+         */
1665
+        public static function is_bs3_compat(){
1666
+            return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION');
1667
+        }
1668 1668
 
1669
-		public static function css_primary($color_code,$compatibility){;
1670
-			$color_code = sanitize_hex_color($color_code);
1671
-			if(!$color_code){return '';}
1672
-			/**
1673
-			 * c = color, b = background color, o = border-color, f = fill
1674
-			 */
1675
-			$selectors = array(
1676
-				'a' => array('c'),
1677
-				'.btn-primary' => array('b','o'),
1678
-				'.btn-primary.disabled' => array('b','o'),
1679
-				'.btn-primary:disabled' => array('b','o'),
1680
-				'.btn-outline-primary' => array('c','o'),
1681
-				'.btn-outline-primary:hover' => array('b','o'),
1682
-				'.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1683
-				'.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1684
-				'.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1685
-				'.btn-link' => array('c'),
1686
-				'.dropdown-item.active' => array('b'),
1687
-				'.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1688
-				'.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1669
+        public static function css_primary($color_code,$compatibility){;
1670
+            $color_code = sanitize_hex_color($color_code);
1671
+            if(!$color_code){return '';}
1672
+            /**
1673
+             * c = color, b = background color, o = border-color, f = fill
1674
+             */
1675
+            $selectors = array(
1676
+                'a' => array('c'),
1677
+                '.btn-primary' => array('b','o'),
1678
+                '.btn-primary.disabled' => array('b','o'),
1679
+                '.btn-primary:disabled' => array('b','o'),
1680
+                '.btn-outline-primary' => array('c','o'),
1681
+                '.btn-outline-primary:hover' => array('b','o'),
1682
+                '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'),
1683
+                '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'),
1684
+                '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'),
1685
+                '.btn-link' => array('c'),
1686
+                '.dropdown-item.active' => array('b'),
1687
+                '.custom-control-input:checked~.custom-control-label::before' => array('b','o'),
1688
+                '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'),
1689 1689
 //				'.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules...
1690 1690
 //				'.custom-range::-moz-range-thumb' => array('b'),
1691 1691
 //				'.custom-range::-ms-thumb' => array('b'),
1692
-				'.nav-pills .nav-link.active' => array('b'),
1693
-				'.nav-pills .show>.nav-link' => array('b'),
1694
-				'.page-link' => array('c'),
1695
-				'.page-item.active .page-link' => array('b','o'),
1696
-				'.badge-primary' => array('b'),
1697
-				'.alert-primary' => array('b','o'),
1698
-				'.progress-bar' => array('b'),
1699
-				'.list-group-item.active' => array('b','o'),
1700
-				'.bg-primary' => array('b','f'),
1701
-				'.btn-link.btn-primary' => array('c'),
1702
-				'.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1703
-			);
1704
-
1705
-			$important_selectors = array(
1706
-				'.bg-primary' => array('b','f'),
1707
-				'.border-primary' => array('o'),
1708
-				'.text-primary' => array('c'),
1709
-			);
1710
-
1711
-			$color = array();
1712
-			$color_i = array();
1713
-			$background = array();
1714
-			$background_i = array();
1715
-			$border = array();
1716
-			$border_i = array();
1717
-			$fill = array();
1718
-			$fill_i = array();
1719
-
1720
-			$output = '';
1721
-
1722
-			// build rules into each type
1723
-			foreach($selectors as $selector => $types){
1724
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1725
-				$types = array_combine($types,$types);
1726
-				if(isset($types['c'])){$color[] = $selector;}
1727
-				if(isset($types['b'])){$background[] = $selector;}
1728
-				if(isset($types['o'])){$border[] = $selector;}
1729
-				if(isset($types['f'])){$fill[] = $selector;}
1730
-			}
1731
-
1732
-			// build rules into each type
1733
-			foreach($important_selectors as $selector => $types){
1734
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1735
-				$types = array_combine($types,$types);
1736
-				if(isset($types['c'])){$color_i[] = $selector;}
1737
-				if(isset($types['b'])){$background_i[] = $selector;}
1738
-				if(isset($types['o'])){$border_i[] = $selector;}
1739
-				if(isset($types['f'])){$fill_i[] = $selector;}
1740
-			}
1741
-
1742
-			// add any color rules
1743
-			if(!empty($color)){
1744
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1745
-			}
1746
-			if(!empty($color_i)){
1747
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1748
-			}
1749
-
1750
-			// add any background color rules
1751
-			if(!empty($background)){
1752
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1753
-			}
1754
-			if(!empty($background_i)){
1755
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1756
-			}
1757
-
1758
-			// add any border color rules
1759
-			if(!empty($border)){
1760
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1761
-			}
1762
-			if(!empty($border_i)){
1763
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1764
-			}
1765
-
1766
-			// add any fill color rules
1767
-			if(!empty($fill)){
1768
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1769
-			}
1770
-			if(!empty($fill_i)){
1771
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1772
-			}
1773
-
1774
-
1775
-			$prefix = $compatibility ? ".bsui " : "";
1776
-
1777
-			// darken
1778
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1779
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1780
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1781
-
1782
-			// lighten
1783
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1784
-
1785
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1786
-			$op_25 = $color_code."40"; // 25% opacity
1787
-
1788
-
1789
-			// button states
1790
-			$output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1791
-			$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;} ";
1792
-			$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.";} ";
1793
-			$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;} ";
1794
-
1795
-
1796
-			// dropdown's
1797
-			$output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1798
-
1799
-
1800
-			// input states
1801
-			$output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1802
-
1803
-			// page link
1804
-			$output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1805
-
1806
-			return $output;
1807
-		}
1692
+                '.nav-pills .nav-link.active' => array('b'),
1693
+                '.nav-pills .show>.nav-link' => array('b'),
1694
+                '.page-link' => array('c'),
1695
+                '.page-item.active .page-link' => array('b','o'),
1696
+                '.badge-primary' => array('b'),
1697
+                '.alert-primary' => array('b','o'),
1698
+                '.progress-bar' => array('b'),
1699
+                '.list-group-item.active' => array('b','o'),
1700
+                '.bg-primary' => array('b','f'),
1701
+                '.btn-link.btn-primary' => array('c'),
1702
+                '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'),
1703
+            );
1704
+
1705
+            $important_selectors = array(
1706
+                '.bg-primary' => array('b','f'),
1707
+                '.border-primary' => array('o'),
1708
+                '.text-primary' => array('c'),
1709
+            );
1710
+
1711
+            $color = array();
1712
+            $color_i = array();
1713
+            $background = array();
1714
+            $background_i = array();
1715
+            $border = array();
1716
+            $border_i = array();
1717
+            $fill = array();
1718
+            $fill_i = array();
1719
+
1720
+            $output = '';
1721
+
1722
+            // build rules into each type
1723
+            foreach($selectors as $selector => $types){
1724
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1725
+                $types = array_combine($types,$types);
1726
+                if(isset($types['c'])){$color[] = $selector;}
1727
+                if(isset($types['b'])){$background[] = $selector;}
1728
+                if(isset($types['o'])){$border[] = $selector;}
1729
+                if(isset($types['f'])){$fill[] = $selector;}
1730
+            }
1808 1731
 
1809
-		public static function css_secondary($color_code,$compatibility){;
1810
-			$color_code = sanitize_hex_color($color_code);
1811
-			if(!$color_code){return '';}
1812
-			/**
1813
-			 * c = color, b = background color, o = border-color, f = fill
1814
-			 */
1815
-			$selectors = array(
1816
-				'.btn-secondary' => array('b','o'),
1817
-				'.btn-secondary.disabled' => array('b','o'),
1818
-				'.btn-secondary:disabled' => array('b','o'),
1819
-				'.btn-outline-secondary' => array('c','o'),
1820
-				'.btn-outline-secondary:hover' => array('b','o'),
1821
-				'.btn-outline-secondary.disabled' => array('c'),
1822
-				'.btn-outline-secondary:disabled' => array('c'),
1823
-				'.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1824
-				'.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1825
-				'.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1826
-				'.badge-secondary' => array('b'),
1827
-				'.alert-secondary' => array('b','o'),
1828
-				'.btn-link.btn-secondary' => array('c'),
1829
-			);
1830
-
1831
-			$important_selectors = array(
1832
-				'.bg-secondary' => array('b','f'),
1833
-				'.border-secondary' => array('o'),
1834
-				'.text-secondary' => array('c'),
1835
-			);
1836
-
1837
-			$color = array();
1838
-			$color_i = array();
1839
-			$background = array();
1840
-			$background_i = array();
1841
-			$border = array();
1842
-			$border_i = array();
1843
-			$fill = array();
1844
-			$fill_i = array();
1845
-
1846
-			$output = '';
1847
-
1848
-			// build rules into each type
1849
-			foreach($selectors as $selector => $types){
1850
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1851
-				$types = array_combine($types,$types);
1852
-				if(isset($types['c'])){$color[] = $selector;}
1853
-				if(isset($types['b'])){$background[] = $selector;}
1854
-				if(isset($types['o'])){$border[] = $selector;}
1855
-				if(isset($types['f'])){$fill[] = $selector;}
1856
-			}
1857
-
1858
-			// build rules into each type
1859
-			foreach($important_selectors as $selector => $types){
1860
-				$selector = $compatibility ? ".bsui ".$selector : $selector;
1861
-				$types = array_combine($types,$types);
1862
-				if(isset($types['c'])){$color_i[] = $selector;}
1863
-				if(isset($types['b'])){$background_i[] = $selector;}
1864
-				if(isset($types['o'])){$border_i[] = $selector;}
1865
-				if(isset($types['f'])){$fill_i[] = $selector;}
1866
-			}
1867
-
1868
-			// add any color rules
1869
-			if(!empty($color)){
1870
-				$output .= implode(",",$color) . "{color: $color_code;} ";
1871
-			}
1872
-			if(!empty($color_i)){
1873
-				$output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1874
-			}
1875
-
1876
-			// add any background color rules
1877
-			if(!empty($background)){
1878
-				$output .= implode(",",$background) . "{background-color: $color_code;} ";
1879
-			}
1880
-			if(!empty($background_i)){
1881
-				$output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1882
-			}
1883
-
1884
-			// add any border color rules
1885
-			if(!empty($border)){
1886
-				$output .= implode(",",$border) . "{border-color: $color_code;} ";
1887
-			}
1888
-			if(!empty($border_i)){
1889
-				$output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1890
-			}
1891
-
1892
-			// add any fill color rules
1893
-			if(!empty($fill)){
1894
-				$output .= implode(",",$fill) . "{fill: $color_code;} ";
1895
-			}
1896
-			if(!empty($fill_i)){
1897
-				$output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1898
-			}
1899
-
1900
-
1901
-			$prefix = $compatibility ? ".bsui " : "";
1902
-
1903
-			// darken
1904
-			$darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1905
-			$darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1906
-			$darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1907
-
1908
-			// lighten
1909
-			$lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1910
-
1911
-			// opacity see https://css-tricks.com/8-digit-hex-codes/
1912
-			$op_25 = $color_code."40"; // 25% opacity
1913
-
1914
-
1915
-			// button states
1916
-			$output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1917
-			$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;} ";
1918
-			$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.";} ";
1919
-			$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;} ";
1920
-
1921
-
1922
-			return $output;
1923
-		}
1732
+            // build rules into each type
1733
+            foreach($important_selectors as $selector => $types){
1734
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1735
+                $types = array_combine($types,$types);
1736
+                if(isset($types['c'])){$color_i[] = $selector;}
1737
+                if(isset($types['b'])){$background_i[] = $selector;}
1738
+                if(isset($types['o'])){$border_i[] = $selector;}
1739
+                if(isset($types['f'])){$fill_i[] = $selector;}
1740
+            }
1924 1741
 
1925
-		/**
1926
-		 * Increases or decreases the brightness of a color by a percentage of the current brightness.
1927
-		 *
1928
-		 * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1929
-		 * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1930
-		 *
1931
-		 * @return  string
1932
-		 */
1933
-		public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1934
-			$hexCode = ltrim($hexCode, '#');
1742
+            // add any color rules
1743
+            if(!empty($color)){
1744
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1745
+            }
1746
+            if(!empty($color_i)){
1747
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1748
+            }
1935 1749
 
1936
-			if (strlen($hexCode) == 3) {
1937
-				$hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1938
-			}
1750
+            // add any background color rules
1751
+            if(!empty($background)){
1752
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1753
+            }
1754
+            if(!empty($background_i)){
1755
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1756
+            }
1939 1757
 
1940
-			$hexCode = array_map('hexdec', str_split($hexCode, 2));
1758
+            // add any border color rules
1759
+            if(!empty($border)){
1760
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1761
+            }
1762
+            if(!empty($border_i)){
1763
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1764
+            }
1941 1765
 
1942
-			foreach ($hexCode as & $color) {
1943
-				$adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1944
-				$adjustAmount = ceil($adjustableLimit * $adjustPercent);
1766
+            // add any fill color rules
1767
+            if(!empty($fill)){
1768
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1769
+            }
1770
+            if(!empty($fill_i)){
1771
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1772
+            }
1945 1773
 
1946
-				$color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1947
-			}
1948 1774
 
1949
-			return '#' . implode($hexCode);
1950
-		}
1775
+            $prefix = $compatibility ? ".bsui " : "";
1951 1776
 
1952
-		/**
1953
-		 * Check if we should display examples.
1954
-		 */
1955
-		public function maybe_show_examples(){
1956
-			if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1957
-				echo "<head>";
1958
-				wp_head();
1959
-				echo "</head>";
1960
-				echo "<body>";
1961
-				echo $this->get_examples();
1962
-				echo "</body>";
1963
-				exit;
1964
-			}
1965
-		}
1777
+            // darken
1778
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1779
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1780
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1966 1781
 
1967
-		/**
1968
-		 * Get developer examples.
1969
-		 *
1970
-		 * @return string
1971
-		 */
1972
-		public function get_examples(){
1973
-			$output = '';
1974
-
1975
-
1976
-			// open form
1977
-			$output .= "<form class='p-5 m-5 border rounded'>";
1978
-
1979
-			// input example
1980
-			$output .= aui()->input(array(
1981
-				'type'  =>  'text',
1982
-				'id'    =>  'text-example',
1983
-				'name'    =>  'text-example',
1984
-				'placeholder'   => 'text placeholder',
1985
-				'title'   => 'Text input example',
1986
-				'value' =>  '',
1987
-				'required'  => false,
1988
-				'help_text' => 'help text',
1989
-				'label' => 'Text input example label'
1990
-			));
1991
-
1992
-			// input example
1993
-			$output .= aui()->input(array(
1994
-				'type'  =>  'url',
1995
-				'id'    =>  'text-example2',
1996
-				'name'    =>  'text-example',
1997
-				'placeholder'   => 'url placeholder',
1998
-				'title'   => 'Text input example',
1999
-				'value' =>  '',
2000
-				'required'  => false,
2001
-				'help_text' => 'help text',
2002
-				'label' => 'Text input example label'
2003
-			));
2004
-
2005
-			// checkbox example
2006
-			$output .= aui()->input(array(
2007
-				'type'  =>  'checkbox',
2008
-				'id'    =>  'checkbox-example',
2009
-				'name'    =>  'checkbox-example',
2010
-				'placeholder'   => 'checkbox-example',
2011
-				'title'   => 'Checkbox example',
2012
-				'value' =>  '1',
2013
-				'checked'   => true,
2014
-				'required'  => false,
2015
-				'help_text' => 'help text',
2016
-				'label' => 'Checkbox checked'
2017
-			));
2018
-
2019
-			// checkbox example
2020
-			$output .= aui()->input(array(
2021
-				'type'  =>  'checkbox',
2022
-				'id'    =>  'checkbox-example2',
2023
-				'name'    =>  'checkbox-example2',
2024
-				'placeholder'   => 'checkbox-example',
2025
-				'title'   => 'Checkbox example',
2026
-				'value' =>  '1',
2027
-				'checked'   => false,
2028
-				'required'  => false,
2029
-				'help_text' => 'help text',
2030
-				'label' => 'Checkbox un-checked'
2031
-			));
2032
-
2033
-			// switch example
2034
-			$output .= aui()->input(array(
2035
-				'type'  =>  'checkbox',
2036
-				'id'    =>  'switch-example',
2037
-				'name'    =>  'switch-example',
2038
-				'placeholder'   => 'checkbox-example',
2039
-				'title'   => 'Switch example',
2040
-				'value' =>  '1',
2041
-				'checked'   => true,
2042
-				'switch'    => true,
2043
-				'required'  => false,
2044
-				'help_text' => 'help text',
2045
-				'label' => 'Switch on'
2046
-			));
2047
-
2048
-			// switch example
2049
-			$output .= aui()->input(array(
2050
-				'type'  =>  'checkbox',
2051
-				'id'    =>  'switch-example2',
2052
-				'name'    =>  'switch-example2',
2053
-				'placeholder'   => 'checkbox-example',
2054
-				'title'   => 'Switch example',
2055
-				'value' =>  '1',
2056
-				'checked'   => false,
2057
-				'switch'    => true,
2058
-				'required'  => false,
2059
-				'help_text' => 'help text',
2060
-				'label' => 'Switch off'
2061
-			));
2062
-
2063
-			// close form
2064
-			$output .= "</form>";
2065
-
2066
-			return $output;
2067
-		}
1782
+            // lighten
1783
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
2068 1784
 
2069
-		/**
2070
-		 * Calendar params.
2071
-		 *
2072
-		 * @since 0.1.44
2073
-		 *
2074
-		 * @return array Calendar params.
2075
-		 */
2076
-		public static function calendar_params() {
2077
-			$params = array(
2078
-				'month_long_1' => __( 'January', 'aui' ),
2079
-				'month_long_2' => __( 'February', 'aui' ),
2080
-				'month_long_3' => __( 'March', 'aui' ),
2081
-				'month_long_4' => __( 'April', 'aui' ),
2082
-				'month_long_5' => __( 'May', 'aui' ),
2083
-				'month_long_6' => __( 'June', 'aui' ),
2084
-				'month_long_7' => __( 'July', 'aui' ),
2085
-				'month_long_8' => __( 'August', 'aui' ),
2086
-				'month_long_9' => __( 'September', 'aui' ),
2087
-				'month_long_10' => __( 'October', 'aui' ),
2088
-				'month_long_11' => __( 'November', 'aui' ),
2089
-				'month_long_12' => __( 'December', 'aui' ),
2090
-				'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
2091
-				'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
2092
-				'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
2093
-				'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
2094
-				'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
2095
-				'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
2096
-				'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
2097
-				'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
2098
-				'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
2099
-				'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
2100
-				'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
2101
-				'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
2102
-				'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
2103
-				'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
2104
-				'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
2105
-				'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
2106
-				'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
2107
-				'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
2108
-				'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
2109
-				'day_s2_1' => __( 'Su', 'aui' ),
2110
-				'day_s2_2' => __( 'Mo', 'aui' ),
2111
-				'day_s2_3' => __( 'Tu', 'aui' ),
2112
-				'day_s2_4' => __( 'We', 'aui' ),
2113
-				'day_s2_5' => __( 'Th', 'aui' ),
2114
-				'day_s2_6' => __( 'Fr', 'aui' ),
2115
-				'day_s2_7' => __( 'Sa', 'aui' ),
2116
-				'day_s3_1' => __( 'Sun', 'aui' ),
2117
-				'day_s3_2' => __( 'Mon', 'aui' ),
2118
-				'day_s3_3' => __( 'Tue', 'aui' ),
2119
-				'day_s3_4' => __( 'Wed', 'aui' ),
2120
-				'day_s3_5' => __( 'Thu', 'aui' ),
2121
-				'day_s3_6' => __( 'Fri', 'aui' ),
2122
-				'day_s3_7' => __( 'Sat', 'aui' ),
2123
-				'day_s5_1' => __( 'Sunday', 'aui' ),
2124
-				'day_s5_2' => __( 'Monday', 'aui' ),
2125
-				'day_s5_3' => __( 'Tuesday', 'aui' ),
2126
-				'day_s5_4' => __( 'Wednesday', 'aui' ),
2127
-				'day_s5_5' => __( 'Thursday', 'aui' ),
2128
-				'day_s5_6' => __( 'Friday', 'aui' ),
2129
-				'day_s5_7' => __( 'Saturday', 'aui' ),
2130
-				'am_lower' => __( 'am', 'aui' ),
2131
-				'pm_lower' => __( 'pm', 'aui' ),
2132
-				'am_upper' => __( 'AM', 'aui' ),
2133
-				'pm_upper' => __( 'PM', 'aui' ),
2134
-				'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
2135
-				'time_24hr' => false,
2136
-				'year' => __( 'Year', 'aui' ),
2137
-				'hour' => __( 'Hour', 'aui' ),
2138
-				'minute' => __( 'Minute', 'aui' ),
2139
-				'weekAbbreviation' => __( 'Wk', 'aui' ),
2140
-				'rangeSeparator' => __( ' to ', 'aui' ),
2141
-				'scrollTitle' => __( 'Scroll to increment', 'aui' ),
2142
-				'toggleTitle' => __( 'Click to toggle', 'aui' )
2143
-			);
2144
-
2145
-			return apply_filters( 'ayecode_ui_calendar_params', $params );
2146
-		}
1785
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1786
+            $op_25 = $color_code."40"; // 25% opacity
2147 1787
 
2148
-		/**
2149
-		 * Flatpickr calendar localize.
2150
-		 *
2151
-		 * @since 0.1.44
2152
-		 *
2153
-		 * @return string Calendar locale.
2154
-		 */
2155
-		public static function flatpickr_locale() {
2156
-			$params = self::calendar_params();
2157
-
2158
-			if ( is_string( $params ) ) {
2159
-				$params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
2160
-			} else {
2161
-				foreach ( (array) $params as $key => $value ) {
2162
-					if ( ! is_scalar( $value ) ) {
2163
-						continue;
2164
-					}
2165 1788
 
2166
-					$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2167
-				}
2168
-			}
1789
+            // button states
1790
+            $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1791
+            $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;} ";
1792
+            $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.";} ";
1793
+            $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;} ";
1794
+
1795
+
1796
+            // dropdown's
1797
+            $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} ";
1798
+
1799
+
1800
+            // input states
1801
+            $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} ";
1802
+
1803
+            // page link
1804
+            $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} ";
1805
+
1806
+            return $output;
1807
+        }
1808
+
1809
+        public static function css_secondary($color_code,$compatibility){;
1810
+            $color_code = sanitize_hex_color($color_code);
1811
+            if(!$color_code){return '';}
1812
+            /**
1813
+             * c = color, b = background color, o = border-color, f = fill
1814
+             */
1815
+            $selectors = array(
1816
+                '.btn-secondary' => array('b','o'),
1817
+                '.btn-secondary.disabled' => array('b','o'),
1818
+                '.btn-secondary:disabled' => array('b','o'),
1819
+                '.btn-outline-secondary' => array('c','o'),
1820
+                '.btn-outline-secondary:hover' => array('b','o'),
1821
+                '.btn-outline-secondary.disabled' => array('c'),
1822
+                '.btn-outline-secondary:disabled' => array('c'),
1823
+                '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'),
1824
+                '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'),
1825
+                '.btn-outline-secondary.dropdown-toggle' => array('b','o'),
1826
+                '.badge-secondary' => array('b'),
1827
+                '.alert-secondary' => array('b','o'),
1828
+                '.btn-link.btn-secondary' => array('c'),
1829
+            );
1830
+
1831
+            $important_selectors = array(
1832
+                '.bg-secondary' => array('b','f'),
1833
+                '.border-secondary' => array('o'),
1834
+                '.text-secondary' => array('c'),
1835
+            );
1836
+
1837
+            $color = array();
1838
+            $color_i = array();
1839
+            $background = array();
1840
+            $background_i = array();
1841
+            $border = array();
1842
+            $border_i = array();
1843
+            $fill = array();
1844
+            $fill_i = array();
1845
+
1846
+            $output = '';
1847
+
1848
+            // build rules into each type
1849
+            foreach($selectors as $selector => $types){
1850
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1851
+                $types = array_combine($types,$types);
1852
+                if(isset($types['c'])){$color[] = $selector;}
1853
+                if(isset($types['b'])){$background[] = $selector;}
1854
+                if(isset($types['o'])){$border[] = $selector;}
1855
+                if(isset($types['f'])){$fill[] = $selector;}
1856
+            }
1857
+
1858
+            // build rules into each type
1859
+            foreach($important_selectors as $selector => $types){
1860
+                $selector = $compatibility ? ".bsui ".$selector : $selector;
1861
+                $types = array_combine($types,$types);
1862
+                if(isset($types['c'])){$color_i[] = $selector;}
1863
+                if(isset($types['b'])){$background_i[] = $selector;}
1864
+                if(isset($types['o'])){$border_i[] = $selector;}
1865
+                if(isset($types['f'])){$fill_i[] = $selector;}
1866
+            }
1867
+
1868
+            // add any color rules
1869
+            if(!empty($color)){
1870
+                $output .= implode(",",$color) . "{color: $color_code;} ";
1871
+            }
1872
+            if(!empty($color_i)){
1873
+                $output .= implode(",",$color_i) . "{color: $color_code !important;} ";
1874
+            }
1875
+
1876
+            // add any background color rules
1877
+            if(!empty($background)){
1878
+                $output .= implode(",",$background) . "{background-color: $color_code;} ";
1879
+            }
1880
+            if(!empty($background_i)){
1881
+                $output .= implode(",",$background_i) . "{background-color: $color_code !important;} ";
1882
+            }
1883
+
1884
+            // add any border color rules
1885
+            if(!empty($border)){
1886
+                $output .= implode(",",$border) . "{border-color: $color_code;} ";
1887
+            }
1888
+            if(!empty($border_i)){
1889
+                $output .= implode(",",$border_i) . "{border-color: $color_code !important;} ";
1890
+            }
1891
+
1892
+            // add any fill color rules
1893
+            if(!empty($fill)){
1894
+                $output .= implode(",",$fill) . "{fill: $color_code;} ";
1895
+            }
1896
+            if(!empty($fill_i)){
1897
+                $output .= implode(",",$fill_i) . "{fill: $color_code !important;} ";
1898
+            }
1899
+
1900
+
1901
+            $prefix = $compatibility ? ".bsui " : "";
1902
+
1903
+            // darken
1904
+            $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075");
1905
+            $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10");
1906
+            $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125");
1907
+
1908
+            // lighten
1909
+            $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25");
1910
+
1911
+            // opacity see https://css-tricks.com/8-digit-hex-codes/
1912
+            $op_25 = $color_code."40"; // 25% opacity
2169 1913
 
2170
-			$day_s3 = array();
2171
-			$day_s5 = array();
2172 1914
 
2173
-			for ( $i = 1; $i <= 7; $i ++ ) {
2174
-				$day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
2175
-				$day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
2176
-			}
1915
+            // button states
1916
+            $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075.";    border-color: ".$darker_10.";} ";
1917
+            $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;} ";
1918
+            $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.";} ";
1919
+            $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;} ";
2177 1920
 
2178
-			$month_s = array();
2179
-			$month_long = array();
2180 1921
 
2181
-			for ( $i = 1; $i <= 12; $i ++ ) {
2182
-				$month_s[] = addslashes( $params[ 'month_s_' . $i ] );
2183
-				$month_long[] = addslashes( $params[ 'month_long_' . $i ] );
2184
-			}
1922
+            return $output;
1923
+        }
1924
+
1925
+        /**
1926
+         * Increases or decreases the brightness of a color by a percentage of the current brightness.
1927
+         *
1928
+         * @param   string  $hexCode        Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF`
1929
+         * @param   float   $adjustPercent  A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker.
1930
+         *
1931
+         * @return  string
1932
+         */
1933
+        public static function css_hex_lighten_darken($hexCode, $adjustPercent) {
1934
+            $hexCode = ltrim($hexCode, '#');
1935
+
1936
+            if (strlen($hexCode) == 3) {
1937
+                $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2];
1938
+            }
1939
+
1940
+            $hexCode = array_map('hexdec', str_split($hexCode, 2));
1941
+
1942
+            foreach ($hexCode as & $color) {
1943
+                $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color;
1944
+                $adjustAmount = ceil($adjustableLimit * $adjustPercent);
1945
+
1946
+                $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT);
1947
+            }
1948
+
1949
+            return '#' . implode($hexCode);
1950
+        }
1951
+
1952
+        /**
1953
+         * Check if we should display examples.
1954
+         */
1955
+        public function maybe_show_examples(){
1956
+            if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){
1957
+                echo "<head>";
1958
+                wp_head();
1959
+                echo "</head>";
1960
+                echo "<body>";
1961
+                echo $this->get_examples();
1962
+                echo "</body>";
1963
+                exit;
1964
+            }
1965
+        }
1966
+
1967
+        /**
1968
+         * Get developer examples.
1969
+         *
1970
+         * @return string
1971
+         */
1972
+        public function get_examples(){
1973
+            $output = '';
1974
+
1975
+
1976
+            // open form
1977
+            $output .= "<form class='p-5 m-5 border rounded'>";
1978
+
1979
+            // input example
1980
+            $output .= aui()->input(array(
1981
+                'type'  =>  'text',
1982
+                'id'    =>  'text-example',
1983
+                'name'    =>  'text-example',
1984
+                'placeholder'   => 'text placeholder',
1985
+                'title'   => 'Text input example',
1986
+                'value' =>  '',
1987
+                'required'  => false,
1988
+                'help_text' => 'help text',
1989
+                'label' => 'Text input example label'
1990
+            ));
1991
+
1992
+            // input example
1993
+            $output .= aui()->input(array(
1994
+                'type'  =>  'url',
1995
+                'id'    =>  'text-example2',
1996
+                'name'    =>  'text-example',
1997
+                'placeholder'   => 'url placeholder',
1998
+                'title'   => 'Text input example',
1999
+                'value' =>  '',
2000
+                'required'  => false,
2001
+                'help_text' => 'help text',
2002
+                'label' => 'Text input example label'
2003
+            ));
2004
+
2005
+            // checkbox example
2006
+            $output .= aui()->input(array(
2007
+                'type'  =>  'checkbox',
2008
+                'id'    =>  'checkbox-example',
2009
+                'name'    =>  'checkbox-example',
2010
+                'placeholder'   => 'checkbox-example',
2011
+                'title'   => 'Checkbox example',
2012
+                'value' =>  '1',
2013
+                'checked'   => true,
2014
+                'required'  => false,
2015
+                'help_text' => 'help text',
2016
+                'label' => 'Checkbox checked'
2017
+            ));
2018
+
2019
+            // checkbox example
2020
+            $output .= aui()->input(array(
2021
+                'type'  =>  'checkbox',
2022
+                'id'    =>  'checkbox-example2',
2023
+                'name'    =>  'checkbox-example2',
2024
+                'placeholder'   => 'checkbox-example',
2025
+                'title'   => 'Checkbox example',
2026
+                'value' =>  '1',
2027
+                'checked'   => false,
2028
+                'required'  => false,
2029
+                'help_text' => 'help text',
2030
+                'label' => 'Checkbox un-checked'
2031
+            ));
2032
+
2033
+            // switch example
2034
+            $output .= aui()->input(array(
2035
+                'type'  =>  'checkbox',
2036
+                'id'    =>  'switch-example',
2037
+                'name'    =>  'switch-example',
2038
+                'placeholder'   => 'checkbox-example',
2039
+                'title'   => 'Switch example',
2040
+                'value' =>  '1',
2041
+                'checked'   => true,
2042
+                'switch'    => true,
2043
+                'required'  => false,
2044
+                'help_text' => 'help text',
2045
+                'label' => 'Switch on'
2046
+            ));
2047
+
2048
+            // switch example
2049
+            $output .= aui()->input(array(
2050
+                'type'  =>  'checkbox',
2051
+                'id'    =>  'switch-example2',
2052
+                'name'    =>  'switch-example2',
2053
+                'placeholder'   => 'checkbox-example',
2054
+                'title'   => 'Switch example',
2055
+                'value' =>  '1',
2056
+                'checked'   => false,
2057
+                'switch'    => true,
2058
+                'required'  => false,
2059
+                'help_text' => 'help text',
2060
+                'label' => 'Switch off'
2061
+            ));
2062
+
2063
+            // close form
2064
+            $output .= "</form>";
2065
+
2066
+            return $output;
2067
+        }
2068
+
2069
+        /**
2070
+         * Calendar params.
2071
+         *
2072
+         * @since 0.1.44
2073
+         *
2074
+         * @return array Calendar params.
2075
+         */
2076
+        public static function calendar_params() {
2077
+            $params = array(
2078
+                'month_long_1' => __( 'January', 'aui' ),
2079
+                'month_long_2' => __( 'February', 'aui' ),
2080
+                'month_long_3' => __( 'March', 'aui' ),
2081
+                'month_long_4' => __( 'April', 'aui' ),
2082
+                'month_long_5' => __( 'May', 'aui' ),
2083
+                'month_long_6' => __( 'June', 'aui' ),
2084
+                'month_long_7' => __( 'July', 'aui' ),
2085
+                'month_long_8' => __( 'August', 'aui' ),
2086
+                'month_long_9' => __( 'September', 'aui' ),
2087
+                'month_long_10' => __( 'October', 'aui' ),
2088
+                'month_long_11' => __( 'November', 'aui' ),
2089
+                'month_long_12' => __( 'December', 'aui' ),
2090
+                'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ),
2091
+                'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ),
2092
+                'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ),
2093
+                'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ),
2094
+                'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ),
2095
+                'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ),
2096
+                'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ),
2097
+                'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ),
2098
+                'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ),
2099
+                'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ),
2100
+                'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ),
2101
+                'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ),
2102
+                'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ),
2103
+                'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ),
2104
+                'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ),
2105
+                'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ),
2106
+                'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ),
2107
+                'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ),
2108
+                'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ),
2109
+                'day_s2_1' => __( 'Su', 'aui' ),
2110
+                'day_s2_2' => __( 'Mo', 'aui' ),
2111
+                'day_s2_3' => __( 'Tu', 'aui' ),
2112
+                'day_s2_4' => __( 'We', 'aui' ),
2113
+                'day_s2_5' => __( 'Th', 'aui' ),
2114
+                'day_s2_6' => __( 'Fr', 'aui' ),
2115
+                'day_s2_7' => __( 'Sa', 'aui' ),
2116
+                'day_s3_1' => __( 'Sun', 'aui' ),
2117
+                'day_s3_2' => __( 'Mon', 'aui' ),
2118
+                'day_s3_3' => __( 'Tue', 'aui' ),
2119
+                'day_s3_4' => __( 'Wed', 'aui' ),
2120
+                'day_s3_5' => __( 'Thu', 'aui' ),
2121
+                'day_s3_6' => __( 'Fri', 'aui' ),
2122
+                'day_s3_7' => __( 'Sat', 'aui' ),
2123
+                'day_s5_1' => __( 'Sunday', 'aui' ),
2124
+                'day_s5_2' => __( 'Monday', 'aui' ),
2125
+                'day_s5_3' => __( 'Tuesday', 'aui' ),
2126
+                'day_s5_4' => __( 'Wednesday', 'aui' ),
2127
+                'day_s5_5' => __( 'Thursday', 'aui' ),
2128
+                'day_s5_6' => __( 'Friday', 'aui' ),
2129
+                'day_s5_7' => __( 'Saturday', 'aui' ),
2130
+                'am_lower' => __( 'am', 'aui' ),
2131
+                'pm_lower' => __( 'pm', 'aui' ),
2132
+                'am_upper' => __( 'AM', 'aui' ),
2133
+                'pm_upper' => __( 'PM', 'aui' ),
2134
+                'firstDayOfWeek' => (int) get_option( 'start_of_week' ),
2135
+                'time_24hr' => false,
2136
+                'year' => __( 'Year', 'aui' ),
2137
+                'hour' => __( 'Hour', 'aui' ),
2138
+                'minute' => __( 'Minute', 'aui' ),
2139
+                'weekAbbreviation' => __( 'Wk', 'aui' ),
2140
+                'rangeSeparator' => __( ' to ', 'aui' ),
2141
+                'scrollTitle' => __( 'Scroll to increment', 'aui' ),
2142
+                'toggleTitle' => __( 'Click to toggle', 'aui' )
2143
+            );
2144
+
2145
+            return apply_filters( 'ayecode_ui_calendar_params', $params );
2146
+        }
2147
+
2148
+        /**
2149
+         * Flatpickr calendar localize.
2150
+         *
2151
+         * @since 0.1.44
2152
+         *
2153
+         * @return string Calendar locale.
2154
+         */
2155
+        public static function flatpickr_locale() {
2156
+            $params = self::calendar_params();
2157
+
2158
+            if ( is_string( $params ) ) {
2159
+                $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' );
2160
+            } else {
2161
+                foreach ( (array) $params as $key => $value ) {
2162
+                    if ( ! is_scalar( $value ) ) {
2163
+                        continue;
2164
+                    }
2165
+
2166
+                    $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2167
+                }
2168
+            }
2169
+
2170
+            $day_s3 = array();
2171
+            $day_s5 = array();
2172
+
2173
+            for ( $i = 1; $i <= 7; $i ++ ) {
2174
+                $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] );
2175
+                $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] );
2176
+            }
2177
+
2178
+            $month_s = array();
2179
+            $month_long = array();
2180
+
2181
+            for ( $i = 1; $i <= 12; $i ++ ) {
2182
+                $month_s[] = addslashes( $params[ 'month_s_' . $i ] );
2183
+                $month_long[] = addslashes( $params[ 'month_long_' . $i ] );
2184
+            }
2185 2185
 
2186 2186
 ob_start();
2187 2187
 if ( 0 ) { ?><script><?php } ?>
@@ -2223,189 +2223,189 @@  discard block
 block discarded – undo
2223 2223
 }
2224 2224
 <?php if ( 0 ) { ?></script><?php } ?>
2225 2225
 <?php
2226
-			$locale = ob_get_clean();
2226
+            $locale = ob_get_clean();
2227 2227
 
2228
-			return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2229
-		}
2228
+            return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) );
2229
+        }
2230 2230
 
2231
-		/**
2232
-		 * Select2 JS params.
2233
-		 *
2234
-		 * @since 0.1.44
2235
-		 *
2236
-		 * @return array Select2 JS params.
2237
-		 */
2238
-		public static function select2_params() {
2239
-			$params = array(
2240
-				'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2241
-				'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2242
-				'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2243
-				'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2244
-				'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2245
-				'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2246
-				'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2247
-				'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2248
-				'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2249
-				'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2250
-				'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2251
-			);
2252
-
2253
-			return apply_filters( 'ayecode_ui_select2_params', $params );
2254
-		}
2231
+        /**
2232
+         * Select2 JS params.
2233
+         *
2234
+         * @since 0.1.44
2235
+         *
2236
+         * @return array Select2 JS params.
2237
+         */
2238
+        public static function select2_params() {
2239
+            $params = array(
2240
+                'i18n_select_state_text'    => esc_attr__( 'Select an option&hellip;', 'aui' ),
2241
+                'i18n_no_matches'           => _x( 'No matches found', 'enhanced select', 'aui' ),
2242
+                'i18n_ajax_error'           => _x( 'Loading failed', 'enhanced select', 'aui' ),
2243
+                'i18n_input_too_short_1'    => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ),
2244
+                'i18n_input_too_short_n'    => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ),
2245
+                'i18n_input_too_long_1'     => _x( 'Please delete 1 character', 'enhanced select', 'aui' ),
2246
+                'i18n_input_too_long_n'     => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ),
2247
+                'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ),
2248
+                'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ),
2249
+                'i18n_load_more'            => _x( 'Loading more results&hellip;', 'enhanced select', 'aui' ),
2250
+                'i18n_searching'            => _x( 'Searching&hellip;', 'enhanced select', 'aui' )
2251
+            );
2252
+
2253
+            return apply_filters( 'ayecode_ui_select2_params', $params );
2254
+        }
2255 2255
 
2256
-		/**
2257
-		 * Select2 JS localize.
2258
-		 *
2259
-		 * @since 0.1.44
2260
-		 *
2261
-		 * @return string Select2 JS locale.
2262
-		 */
2263
-		public static function select2_locale() {
2264
-			$params = self::select2_params();
2265
-
2266
-			foreach ( (array) $params as $key => $value ) {
2267
-				if ( ! is_scalar( $value ) ) {
2268
-					continue;
2269
-				}
2256
+        /**
2257
+         * Select2 JS localize.
2258
+         *
2259
+         * @since 0.1.44
2260
+         *
2261
+         * @return string Select2 JS locale.
2262
+         */
2263
+        public static function select2_locale() {
2264
+            $params = self::select2_params();
2265
+
2266
+            foreach ( (array) $params as $key => $value ) {
2267
+                if ( ! is_scalar( $value ) ) {
2268
+                    continue;
2269
+                }
2270 2270
 
2271
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2272
-			}
2271
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2272
+            }
2273 2273
 
2274
-			$locale = json_encode( $params );
2274
+            $locale = json_encode( $params );
2275 2275
 
2276
-			return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2277
-		}
2276
+            return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) );
2277
+        }
2278 2278
 
2279
-		/**
2280
-		 * Time ago JS localize.
2281
-		 *
2282
-		 * @since 0.1.47
2283
-		 *
2284
-		 * @return string Time ago JS locale.
2285
-		 */
2286
-		public static function timeago_locale() {
2287
-			$params = array(
2288
-				'prefix_ago' => '',
2289
-				'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2290
-				'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2291
-				'suffix_after' => '',
2292
-				'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2293
-				'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2294
-				'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2295
-				'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2296
-				'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2297
-				'day' => _x( 'a day', 'time ago', 'aui' ),
2298
-				'days' => _x( '%d days', 'time ago', 'aui' ),
2299
-				'month' => _x( 'about a month', 'time ago', 'aui' ),
2300
-				'months' => _x( '%d months', 'time ago', 'aui' ),
2301
-				'year' => _x( 'about a year', 'time ago', 'aui' ),
2302
-				'years' => _x( '%d years', 'time ago', 'aui' ),
2303
-			);
2304
-
2305
-			$params = apply_filters( 'ayecode_ui_timeago_params', $params );
2306
-
2307
-			foreach ( (array) $params as $key => $value ) {
2308
-				if ( ! is_scalar( $value ) ) {
2309
-					continue;
2310
-				}
2279
+        /**
2280
+         * Time ago JS localize.
2281
+         *
2282
+         * @since 0.1.47
2283
+         *
2284
+         * @return string Time ago JS locale.
2285
+         */
2286
+        public static function timeago_locale() {
2287
+            $params = array(
2288
+                'prefix_ago' => '',
2289
+                'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ),
2290
+                'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ',
2291
+                'suffix_after' => '',
2292
+                'seconds' => _x( 'less than a minute', 'time ago', 'aui' ),
2293
+                'minute' => _x( 'about a minute', 'time ago', 'aui' ),
2294
+                'minutes' => _x( '%d minutes', 'time ago', 'aui' ),
2295
+                'hour' => _x( 'about an hour', 'time ago', 'aui' ),
2296
+                'hours' => _x( 'about %d hours', 'time ago', 'aui' ),
2297
+                'day' => _x( 'a day', 'time ago', 'aui' ),
2298
+                'days' => _x( '%d days', 'time ago', 'aui' ),
2299
+                'month' => _x( 'about a month', 'time ago', 'aui' ),
2300
+                'months' => _x( '%d months', 'time ago', 'aui' ),
2301
+                'year' => _x( 'about a year', 'time ago', 'aui' ),
2302
+                'years' => _x( '%d years', 'time ago', 'aui' ),
2303
+            );
2304
+
2305
+            $params = apply_filters( 'ayecode_ui_timeago_params', $params );
2306
+
2307
+            foreach ( (array) $params as $key => $value ) {
2308
+                if ( ! is_scalar( $value ) ) {
2309
+                    continue;
2310
+                }
2311 2311
 
2312
-				$params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2313
-			}
2312
+                $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' );
2313
+            }
2314 2314
 
2315
-			$locale = json_encode( $params );
2315
+            $locale = json_encode( $params );
2316 2316
 
2317
-			return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2318
-		}
2317
+            return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) );
2318
+        }
2319 2319
 
2320
-		/**
2321
-		 * JavaScript Minifier
2322
-		 *
2323
-		 * @param $input
2324
-		 *
2325
-		 * @return mixed
2326
-		 */
2327
-		public static function minify_js($input) {
2328
-			if(trim($input) === "") return $input;
2329
-			return preg_replace(
2330
-				array(
2331
-					// Remove comment(s)
2332
-					'#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2333
-					// Remove white-space(s) outside the string and regex
2334
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2335
-					// Remove the last semicolon
2336
-					'#;+\}#',
2337
-					// Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2338
-					'#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2339
-					// --ibid. From `foo['bar']` to `foo.bar`
2340
-					'#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2341
-				),
2342
-				array(
2343
-					'$1',
2344
-					'$1$2',
2345
-					'}',
2346
-					'$1$3',
2347
-					'$1.$3'
2348
-				),
2349
-				$input);
2350
-		}
2320
+        /**
2321
+         * JavaScript Minifier
2322
+         *
2323
+         * @param $input
2324
+         *
2325
+         * @return mixed
2326
+         */
2327
+        public static function minify_js($input) {
2328
+            if(trim($input) === "") return $input;
2329
+            return preg_replace(
2330
+                array(
2331
+                    // Remove comment(s)
2332
+                    '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#',
2333
+                    // Remove white-space(s) outside the string and regex
2334
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s',
2335
+                    // Remove the last semicolon
2336
+                    '#;+\}#',
2337
+                    // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}`
2338
+                    '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i',
2339
+                    // --ibid. From `foo['bar']` to `foo.bar`
2340
+                    '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i'
2341
+                ),
2342
+                array(
2343
+                    '$1',
2344
+                    '$1$2',
2345
+                    '}',
2346
+                    '$1$3',
2347
+                    '$1.$3'
2348
+                ),
2349
+                $input);
2350
+        }
2351 2351
 
2352
-		/**
2353
-		 * Minify CSS
2354
-		 *
2355
-		 * @param $input
2356
-		 *
2357
-		 * @return mixed
2358
-		 */
2359
-		public static function minify_css($input) {
2360
-			if(trim($input) === "") return $input;
2361
-			return preg_replace(
2362
-				array(
2363
-					// Remove comment(s)
2364
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2365
-					// Remove unused white-space(s)
2366
-					'#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2367
-					// Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2368
-					'#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2369
-					// Replace `:0 0 0 0` with `:0`
2370
-					'#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2371
-					// Replace `background-position:0` with `background-position:0 0`
2372
-					'#(background-position):0(?=[;\}])#si',
2373
-					// Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2374
-					'#(?<=[\s:,\-])0+\.(\d+)#s',
2375
-					// Minify string value
2376
-					'#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2377
-					'#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2378
-					// Minify HEX color code
2379
-					'#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2380
-					// Replace `(border|outline):none` with `(border|outline):0`
2381
-					'#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2382
-					// Remove empty selector(s)
2383
-					'#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2384
-				),
2385
-				array(
2386
-					'$1',
2387
-					'$1$2$3$4$5$6$7',
2388
-					'$1',
2389
-					':0',
2390
-					'$1:0 0',
2391
-					'.$1',
2392
-					'$1$3',
2393
-					'$1$2$4$5',
2394
-					'$1$2$3',
2395
-					'$1:0',
2396
-					'$1$2'
2397
-				),
2398
-				$input);
2399
-		}
2352
+        /**
2353
+         * Minify CSS
2354
+         *
2355
+         * @param $input
2356
+         *
2357
+         * @return mixed
2358
+         */
2359
+        public static function minify_css($input) {
2360
+            if(trim($input) === "") return $input;
2361
+            return preg_replace(
2362
+                array(
2363
+                    // Remove comment(s)
2364
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s',
2365
+                    // Remove unused white-space(s)
2366
+                    '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si',
2367
+                    // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0`
2368
+                    '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si',
2369
+                    // Replace `:0 0 0 0` with `:0`
2370
+                    '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i',
2371
+                    // Replace `background-position:0` with `background-position:0 0`
2372
+                    '#(background-position):0(?=[;\}])#si',
2373
+                    // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space
2374
+                    '#(?<=[\s:,\-])0+\.(\d+)#s',
2375
+                    // Minify string value
2376
+                    '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si',
2377
+                    '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si',
2378
+                    // Minify HEX color code
2379
+                    '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i',
2380
+                    // Replace `(border|outline):none` with `(border|outline):0`
2381
+                    '#(?<=[\{;])(border|outline):none(?=[;\}\!])#',
2382
+                    // Remove empty selector(s)
2383
+                    '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s'
2384
+                ),
2385
+                array(
2386
+                    '$1',
2387
+                    '$1$2$3$4$5$6$7',
2388
+                    '$1',
2389
+                    ':0',
2390
+                    '$1:0 0',
2391
+                    '.$1',
2392
+                    '$1$3',
2393
+                    '$1$2$4$5',
2394
+                    '$1$2$3',
2395
+                    '$1:0',
2396
+                    '$1$2'
2397
+                ),
2398
+                $input);
2399
+        }
2400 2400
 
2401
-		/**
2402
-		 * Get the conditional fields JavaScript.
2403
-		 *
2404
-		 * @return mixed
2405
-		 */
2406
-		public function conditional_fields_js() {
2407
-			ob_start();
2408
-			?>
2401
+        /**
2402
+         * Get the conditional fields JavaScript.
2403
+         *
2404
+         * @return mixed
2405
+         */
2406
+        public function conditional_fields_js() {
2407
+            ob_start();
2408
+            ?>
2409 2409
 <script>
2410 2410
 /**
2411 2411
  * Conditional Fields
@@ -2909,14 +2909,14 @@  discard block
 block discarded – undo
2909 2909
 <?php do_action( 'aui_conditional_fields_js', $this ); ?>
2910 2910
 </script>
2911 2911
 			<?php
2912
-			$output = ob_get_clean();
2912
+            $output = ob_get_clean();
2913 2913
 
2914
-			return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2915
-		}
2916
-	}
2914
+            return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) );
2915
+        }
2916
+    }
2917 2917
 
2918
-	/**
2919
-	 * Run the class if found.
2920
-	 */
2921
-	AyeCode_UI_Settings::instance();
2918
+    /**
2919
+     * Run the class if found.
2920
+     */
2921
+    AyeCode_UI_Settings::instance();
2922 2922
 }
2923 2923
\ No newline at end of file
Please login to merge, or discard this patch.
vendor/ayecode/wp-ayecode-ui/includes/class-aui.php 1 patch
Indentation   +227 added lines, -227 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 if ( ! defined( 'ABSPATH' ) ) {
4
-	exit; // Exit if accessed directly
4
+    exit; // Exit if accessed directly
5 5
 }
6 6
 
7 7
 /**
@@ -11,231 +11,231 @@  discard block
 block discarded – undo
11 11
  */
12 12
 class AUI {
13 13
 
14
-	/**
15
-	 * Holds the class instance.
16
-	 *
17
-	 * @since 1.0.0
18
-	 * @var null
19
-	 */
20
-	private static $instance = null;
21
-
22
-	/**
23
-	 * Holds the current AUI version number.
24
-	 *
25
-	 * @var string $ver The current version number.
26
-	 */
27
-	public static $ver = '0.1.68';
28
-
29
-	public static $options = null;
30
-
31
-	/**
32
-	 * There can be only one.
33
-	 *
34
-	 * @since 1.0.0
35
-	 * @return AUI|null
36
-	 */
37
-	public static function instance() {
38
-		if ( self::$instance == null ) {
39
-			self::$instance = new AUI();
40
-		}
41
-
42
-		return self::$instance;
43
-	}
44
-
45
-	/**
46
-	 * AUI constructor.
47
-	 *
48
-	 * @since 1.0.0
49
-	 */
50
-	private function __construct() {
51
-		if ( function_exists( "__autoload" ) ) {
52
-			spl_autoload_register( "__autoload" );
53
-		}
54
-		spl_autoload_register( array( $this, 'autoload' ) );
55
-
56
-		// load options
57
-		self::$options = get_option('aui_options');
58
-	}
59
-
60
-	/**
61
-	 * Autoload any components on the fly.
62
-	 *
63
-	 * @since 1.0.0
64
-	 *
65
-	 * @param $classname
66
-	 */
67
-	private function autoload( $classname ) {
68
-		$class     = str_replace( '_', '-', strtolower( $classname ) );
69
-		$file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php';
70
-		if ( $file_path && is_readable( $file_path ) ) {
71
-			include_once( $file_path );
72
-		}
73
-	}
74
-
75
-	/**
76
-	 * Get the AUI options.
77
-	 *
78
-	 * @param $option
79
-	 *
80
-	 * @return string|void
81
-	 */
82
-	public function get_option( $option ){
83
-		$result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : '';
84
-
85
-		if ( ! $result && $option) {
86
-			if( $option == 'color_primary' ){
87
-				$result = AUI_PRIMARY_COLOR;
88
-			}elseif( $option == 'color_secondary' ){
89
-				$result = AUI_SECONDARY_COLOR;
90
-			}
91
-		}
92
-		return $result;
93
-	}
94
-
95
-	public function render( $items = array() ) {
96
-		$output = '';
97
-
98
-		if ( ! empty( $items ) ) {
99
-			foreach ( $items as $args ) {
100
-				$render = isset( $args['render'] ) ? $args['render'] : '';
101
-				if ( $render && method_exists( __CLASS__, $render ) ) {
102
-					$output .= $this->$render( $args );
103
-				}
104
-			}
105
-		}
106
-
107
-		return $output;
108
-	}
109
-
110
-	/**
111
-	 * Render and return a bootstrap alert component.
112
-	 *
113
-	 * @since 1.0.0
114
-	 *
115
-	 * @param array $args
116
-	 *
117
-	 * @return string The rendered component.
118
-	 */
119
-	public function alert( $args = array() ) {
120
-		return AUI_Component_Alert::get( $args );
121
-	}
122
-
123
-	/**
124
-	 * Render and return a bootstrap input component.
125
-	 *
126
-	 * @since 1.0.0
127
-	 *
128
-	 * @param array $args
129
-	 *
130
-	 * @return string The rendered component.
131
-	 */
132
-	public function input( $args = array() ) {
133
-		return AUI_Component_Input::input( $args );
134
-	}
135
-
136
-	/**
137
-	 * Render and return a bootstrap textarea component.
138
-	 *
139
-	 * @since 1.0.0
140
-	 *
141
-	 * @param array $args
142
-	 *
143
-	 * @return string The rendered component.
144
-	 */
145
-	public function textarea( $args = array() ) {
146
-		return AUI_Component_Input::textarea( $args );
147
-	}
148
-
149
-	/**
150
-	 * Render and return a bootstrap button component.
151
-	 *
152
-	 * @since 1.0.0
153
-	 *
154
-	 * @param array $args
155
-	 *
156
-	 * @return string The rendered component.
157
-	 */
158
-	public function button( $args = array() ) {
159
-		return AUI_Component_Button::get( $args );
160
-	}
161
-
162
-	/**
163
-	 * Render and return a bootstrap button component.
164
-	 *
165
-	 * @since 1.0.0
166
-	 *
167
-	 * @param array $args
168
-	 *
169
-	 * @return string The rendered component.
170
-	 */
171
-	public function badge( $args = array() ) {
172
-		$defaults = array(
173
-			'class' => 'badge badge-primary align-middle',
174
-		);
175
-
176
-		// maybe set type
177
-		if ( empty( $args['href'] ) ) {
178
-			$defaults['type'] = 'badge';
179
-		}
180
-
181
-		/**
182
-		 * Parse incoming $args into an array and merge it with $defaults
183
-		 */
184
-		$args = wp_parse_args( $args, $defaults );
185
-
186
-		return AUI_Component_Button::get( $args );
187
-	}
188
-
189
-	/**
190
-	 * Render and return a bootstrap dropdown component.
191
-	 *
192
-	 * @since 1.0.0
193
-	 *
194
-	 * @param array $args
195
-	 *
196
-	 * @return string The rendered component.
197
-	 */
198
-	public function dropdown( $args = array() ) {
199
-		return AUI_Component_Dropdown::get( $args );
200
-	}
201
-
202
-	/**
203
-	 * Render and return a bootstrap select component.
204
-	 *
205
-	 * @since 1.0.0
206
-	 *
207
-	 * @param array $args
208
-	 *
209
-	 * @return string The rendered component.
210
-	 */
211
-	public function select( $args = array() ) {
212
-		return AUI_Component_Input::select( $args );
213
-	}
214
-
215
-	/**
216
-	 * Render and return a bootstrap radio component.
217
-	 *
218
-	 * @since 1.0.0
219
-	 *
220
-	 * @param array $args
221
-	 *
222
-	 * @return string The rendered component.
223
-	 */
224
-	public function radio( $args = array() ) {
225
-		return AUI_Component_Input::radio( $args );
226
-	}
227
-
228
-	/**
229
-	 * Render and return a bootstrap pagination component.
230
-	 *
231
-	 * @since 1.0.0
232
-	 *
233
-	 * @param array $args
234
-	 *
235
-	 * @return string The rendered component.
236
-	 */
237
-	public function pagination( $args = array() ) {
238
-		return AUI_Component_Pagination::get( $args );
239
-	}
14
+    /**
15
+     * Holds the class instance.
16
+     *
17
+     * @since 1.0.0
18
+     * @var null
19
+     */
20
+    private static $instance = null;
21
+
22
+    /**
23
+     * Holds the current AUI version number.
24
+     *
25
+     * @var string $ver The current version number.
26
+     */
27
+    public static $ver = '0.1.68';
28
+
29
+    public static $options = null;
30
+
31
+    /**
32
+     * There can be only one.
33
+     *
34
+     * @since 1.0.0
35
+     * @return AUI|null
36
+     */
37
+    public static function instance() {
38
+        if ( self::$instance == null ) {
39
+            self::$instance = new AUI();
40
+        }
41
+
42
+        return self::$instance;
43
+    }
44
+
45
+    /**
46
+     * AUI constructor.
47
+     *
48
+     * @since 1.0.0
49
+     */
50
+    private function __construct() {
51
+        if ( function_exists( "__autoload" ) ) {
52
+            spl_autoload_register( "__autoload" );
53
+        }
54
+        spl_autoload_register( array( $this, 'autoload' ) );
55
+
56
+        // load options
57
+        self::$options = get_option('aui_options');
58
+    }
59
+
60
+    /**
61
+     * Autoload any components on the fly.
62
+     *
63
+     * @since 1.0.0
64
+     *
65
+     * @param $classname
66
+     */
67
+    private function autoload( $classname ) {
68
+        $class     = str_replace( '_', '-', strtolower( $classname ) );
69
+        $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php';
70
+        if ( $file_path && is_readable( $file_path ) ) {
71
+            include_once( $file_path );
72
+        }
73
+    }
74
+
75
+    /**
76
+     * Get the AUI options.
77
+     *
78
+     * @param $option
79
+     *
80
+     * @return string|void
81
+     */
82
+    public function get_option( $option ){
83
+        $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : '';
84
+
85
+        if ( ! $result && $option) {
86
+            if( $option == 'color_primary' ){
87
+                $result = AUI_PRIMARY_COLOR;
88
+            }elseif( $option == 'color_secondary' ){
89
+                $result = AUI_SECONDARY_COLOR;
90
+            }
91
+        }
92
+        return $result;
93
+    }
94
+
95
+    public function render( $items = array() ) {
96
+        $output = '';
97
+
98
+        if ( ! empty( $items ) ) {
99
+            foreach ( $items as $args ) {
100
+                $render = isset( $args['render'] ) ? $args['render'] : '';
101
+                if ( $render && method_exists( __CLASS__, $render ) ) {
102
+                    $output .= $this->$render( $args );
103
+                }
104
+            }
105
+        }
106
+
107
+        return $output;
108
+    }
109
+
110
+    /**
111
+     * Render and return a bootstrap alert component.
112
+     *
113
+     * @since 1.0.0
114
+     *
115
+     * @param array $args
116
+     *
117
+     * @return string The rendered component.
118
+     */
119
+    public function alert( $args = array() ) {
120
+        return AUI_Component_Alert::get( $args );
121
+    }
122
+
123
+    /**
124
+     * Render and return a bootstrap input component.
125
+     *
126
+     * @since 1.0.0
127
+     *
128
+     * @param array $args
129
+     *
130
+     * @return string The rendered component.
131
+     */
132
+    public function input( $args = array() ) {
133
+        return AUI_Component_Input::input( $args );
134
+    }
135
+
136
+    /**
137
+     * Render and return a bootstrap textarea component.
138
+     *
139
+     * @since 1.0.0
140
+     *
141
+     * @param array $args
142
+     *
143
+     * @return string The rendered component.
144
+     */
145
+    public function textarea( $args = array() ) {
146
+        return AUI_Component_Input::textarea( $args );
147
+    }
148
+
149
+    /**
150
+     * Render and return a bootstrap button component.
151
+     *
152
+     * @since 1.0.0
153
+     *
154
+     * @param array $args
155
+     *
156
+     * @return string The rendered component.
157
+     */
158
+    public function button( $args = array() ) {
159
+        return AUI_Component_Button::get( $args );
160
+    }
161
+
162
+    /**
163
+     * Render and return a bootstrap button component.
164
+     *
165
+     * @since 1.0.0
166
+     *
167
+     * @param array $args
168
+     *
169
+     * @return string The rendered component.
170
+     */
171
+    public function badge( $args = array() ) {
172
+        $defaults = array(
173
+            'class' => 'badge badge-primary align-middle',
174
+        );
175
+
176
+        // maybe set type
177
+        if ( empty( $args['href'] ) ) {
178
+            $defaults['type'] = 'badge';
179
+        }
180
+
181
+        /**
182
+         * Parse incoming $args into an array and merge it with $defaults
183
+         */
184
+        $args = wp_parse_args( $args, $defaults );
185
+
186
+        return AUI_Component_Button::get( $args );
187
+    }
188
+
189
+    /**
190
+     * Render and return a bootstrap dropdown component.
191
+     *
192
+     * @since 1.0.0
193
+     *
194
+     * @param array $args
195
+     *
196
+     * @return string The rendered component.
197
+     */
198
+    public function dropdown( $args = array() ) {
199
+        return AUI_Component_Dropdown::get( $args );
200
+    }
201
+
202
+    /**
203
+     * Render and return a bootstrap select component.
204
+     *
205
+     * @since 1.0.0
206
+     *
207
+     * @param array $args
208
+     *
209
+     * @return string The rendered component.
210
+     */
211
+    public function select( $args = array() ) {
212
+        return AUI_Component_Input::select( $args );
213
+    }
214
+
215
+    /**
216
+     * Render and return a bootstrap radio component.
217
+     *
218
+     * @since 1.0.0
219
+     *
220
+     * @param array $args
221
+     *
222
+     * @return string The rendered component.
223
+     */
224
+    public function radio( $args = array() ) {
225
+        return AUI_Component_Input::radio( $args );
226
+    }
227
+
228
+    /**
229
+     * Render and return a bootstrap pagination component.
230
+     *
231
+     * @since 1.0.0
232
+     *
233
+     * @param array $args
234
+     *
235
+     * @return string The rendered component.
236
+     */
237
+    public function pagination( $args = array() ) {
238
+        return AUI_Component_Pagination::get( $args );
239
+    }
240 240
 
241 241
 }
242 242
\ No newline at end of file
Please login to merge, or discard this patch.
widgets/subscriptions.php 1 patch
Indentation   +342 added lines, -342 removed lines patch added patch discarded remove patch
@@ -14,143 +14,143 @@  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
-		parent::__construct( $options );
49
-	}
50
-
51
-	/**
52
-	 * Retrieves current user's subscriptions.
53
-	 *
54
-	 * @return GetPaid_Subscriptions_Query
55
-	 */
56
-	public function get_subscriptions() {
57
-
58
-		// Prepare license args.
59
-		$args  = array(
60
-			'customer_in' => get_current_user_id(),
61
-			'paged'       => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1,
62
-		);
63
-
64
-		return new GetPaid_Subscriptions_Query( $args );
65
-
66
-	}
67
-
68
-	/**
69
-	 * The Super block output function.
70
-	 *
71
-	 * @param array $args
72
-	 * @param array $widget_args
73
-	 * @param string $content
74
-	 *
75
-	 * @return mixed|string|bool
76
-	 */
77
-	public function output( $args = array(), $widget_args = array(), $content = '' ) {
78
-
79
-		// Ensure that the user is logged in.
80
-		if ( ! is_user_logged_in() ) {
81
-
82
-			return aui()->alert(
83
-				array(
84
-					'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ),
85
-					'type'    => 'error',
86
-				)
87
-			);
88
-
89
-		}
90
-
91
-		// Are we displaying a single subscription?
92
-		if ( isset( $_GET['subscription'] ) ) {
93
-			return $this->display_single_subscription( intval( $_GET['subscription'] ) );
94
-		}
95
-
96
-		// Retrieve the user's subscriptions.
97
-		$subscriptions = $this->get_subscriptions();
98
-
99
-		// Start the output buffer.
100
-		ob_start();
101
-
102
-		// Backwards compatibility.
103
-		do_action( 'wpinv_before_user_subscriptions' );
104
-
105
-		// Display errors and notices.
106
-		wpinv_print_errors();
107
-
108
-		do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions );
109
-
110
-		// Print the table header.
111
-		$this->print_table_header();
112
-
113
-		// Print table body.
114
-		$this->print_table_body( $subscriptions->get_results() );
115
-
116
-		// Print table footer.
117
-		$this->print_table_footer();
118
-
119
-		// Print the navigation.
120
-		$this->print_navigation( $subscriptions->get_total() );
121
-
122
-		// Backwards compatibility.
123
-		do_action( 'wpinv_after_user_subscriptions' );
124
-
125
-		// Return the output.
126
-		return ob_get_clean();
127
-
128
-	}
129
-
130
-	/**
131
-	 * Retrieves the subscription columns.
132
-	 *
133
-	 * @return array
134
-	 */
135
-	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
+        parent::__construct( $options );
49
+    }
50
+
51
+    /**
52
+     * Retrieves current user's subscriptions.
53
+     *
54
+     * @return GetPaid_Subscriptions_Query
55
+     */
56
+    public function get_subscriptions() {
57
+
58
+        // Prepare license args.
59
+        $args  = array(
60
+            'customer_in' => get_current_user_id(),
61
+            'paged'       => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1,
62
+        );
63
+
64
+        return new GetPaid_Subscriptions_Query( $args );
65
+
66
+    }
67
+
68
+    /**
69
+     * The Super block output function.
70
+     *
71
+     * @param array $args
72
+     * @param array $widget_args
73
+     * @param string $content
74
+     *
75
+     * @return mixed|string|bool
76
+     */
77
+    public function output( $args = array(), $widget_args = array(), $content = '' ) {
78
+
79
+        // Ensure that the user is logged in.
80
+        if ( ! is_user_logged_in() ) {
81
+
82
+            return aui()->alert(
83
+                array(
84
+                    'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ),
85
+                    'type'    => 'error',
86
+                )
87
+            );
88
+
89
+        }
90
+
91
+        // Are we displaying a single subscription?
92
+        if ( isset( $_GET['subscription'] ) ) {
93
+            return $this->display_single_subscription( intval( $_GET['subscription'] ) );
94
+        }
95
+
96
+        // Retrieve the user's subscriptions.
97
+        $subscriptions = $this->get_subscriptions();
98
+
99
+        // Start the output buffer.
100
+        ob_start();
101
+
102
+        // Backwards compatibility.
103
+        do_action( 'wpinv_before_user_subscriptions' );
104
+
105
+        // Display errors and notices.
106
+        wpinv_print_errors();
107
+
108
+        do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions );
109
+
110
+        // Print the table header.
111
+        $this->print_table_header();
112
+
113
+        // Print table body.
114
+        $this->print_table_body( $subscriptions->get_results() );
115
+
116
+        // Print table footer.
117
+        $this->print_table_footer();
118
+
119
+        // Print the navigation.
120
+        $this->print_navigation( $subscriptions->get_total() );
121
+
122
+        // Backwards compatibility.
123
+        do_action( 'wpinv_after_user_subscriptions' );
124
+
125
+        // Return the output.
126
+        return ob_get_clean();
127
+
128
+    }
129
+
130
+    /**
131
+     * Retrieves the subscription columns.
132
+     *
133
+     * @return array
134
+     */
135
+    public function get_subscriptions_table_columns() {
136 136
 
137
-		$columns = array(
138
-			'subscription' => __( 'Subscription', 'invoicing' ),
139
-			'amount'       => __( 'Amount', 'invoicing' ),
140
-			'renewal-date' => __( 'Next payment', 'invoicing' ),
141
-			'status'       => __( 'Status', 'invoicing' ),
142
-		);
137
+        $columns = array(
138
+            'subscription' => __( 'Subscription', 'invoicing' ),
139
+            'amount'       => __( 'Amount', 'invoicing' ),
140
+            'renewal-date' => __( 'Next payment', 'invoicing' ),
141
+            'status'       => __( 'Status', 'invoicing' ),
142
+        );
143 143
 
144
-		return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns );
145
-	}
144
+        return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns );
145
+    }
146 146
 
147
-	/**
148
-	 * Displays the table header.
149
-	 *
150
-	 */
151
-	public function print_table_header() {
147
+    /**
148
+     * Displays the table header.
149
+     *
150
+     */
151
+    public function print_table_header() {
152 152
 
153
-		?>
153
+        ?>
154 154
 
155 155
 			<table class="table table-bordered table-striped">
156 156
 
@@ -166,121 +166,121 @@  discard block
 block discarded – undo
166 166
 
167 167
 		<?php
168 168
 
169
-	}
169
+    }
170 170
 
171
-	/**
172
-	 * Displays the table body.
173
-	 *
174
-	 * @param WPInv_Subscription[] $subscriptions
175
-	 */
176
-	public function print_table_body( $subscriptions ) {
171
+    /**
172
+     * Displays the table body.
173
+     *
174
+     * @param WPInv_Subscription[] $subscriptions
175
+     */
176
+    public function print_table_body( $subscriptions ) {
177 177
 
178
-		if ( empty( $subscriptions ) ) {
179
-			$this->print_table_body_no_subscriptions();
180
-		} else {
181
-			$this->print_table_body_subscriptions( $subscriptions );
182
-		}
178
+        if ( empty( $subscriptions ) ) {
179
+            $this->print_table_body_no_subscriptions();
180
+        } else {
181
+            $this->print_table_body_subscriptions( $subscriptions );
182
+        }
183 183
 
184
-	}
184
+    }
185 185
 
186
-	/**
187
-	 * Displays the table body if no subscriptions were found.
188
-	 *
189
-	 */
190
-	public function print_table_body_no_subscriptions() {
186
+    /**
187
+     * Displays the table body if no subscriptions were found.
188
+     *
189
+     */
190
+    public function print_table_body_no_subscriptions() {
191 191
 
192
-		?>
192
+        ?>
193 193
 		<tbody>
194 194
 
195 195
 			<tr>
196 196
 				<td colspan="<?php echo count( $this->get_subscriptions_table_columns() ); ?>">
197 197
 
198 198
 					<?php
199
-						echo aui()->alert(
200
-							array(
201
-								'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ),
202
-								'type'    => 'warning',
203
-							)
204
-						);
205
-					?>
199
+                        echo aui()->alert(
200
+                            array(
201
+                                'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ),
202
+                                'type'    => 'warning',
203
+                            )
204
+                        );
205
+                    ?>
206 206
 
207 207
 				</td>
208 208
 			</tr>
209 209
 
210 210
 		</tbody>
211 211
 		<?php
212
-	}
212
+    }
213 213
 
214
-	/**
215
-	 * Displays the table body if subscriptions were found.
216
-	 *
217
-	 * @param WPInv_Subscription[] $subscriptions
218
-	 */
219
-	public function print_table_body_subscriptions( $subscriptions ) {
214
+    /**
215
+     * Displays the table body if subscriptions were found.
216
+     *
217
+     * @param WPInv_Subscription[] $subscriptions
218
+     */
219
+    public function print_table_body_subscriptions( $subscriptions ) {
220 220
 
221
-		?>
221
+        ?>
222 222
 		<tbody>
223 223
 
224 224
 			<?php foreach ( $subscriptions as $subscription ) : ?>
225 225
 				<tr class="getpaid-subscriptions-table-row subscription-<?php echo (int) $subscription->get_id(); ?>">
226 226
 					<?php
227
-						wpinv_get_template(
228
-							'subscriptions/subscriptions-table-row.php',
229
-							array(
230
-								'subscription' => $subscription,
231
-								'widget'       => $this,
232
-							)
233
-						);
234
-					?>
227
+                        wpinv_get_template(
228
+                            'subscriptions/subscriptions-table-row.php',
229
+                            array(
230
+                                'subscription' => $subscription,
231
+                                'widget'       => $this,
232
+                            )
233
+                        );
234
+                    ?>
235 235
 				</tr>
236 236
 			<?php endforeach; ?>
237 237
 
238 238
 		</tbody>
239 239
 		<?php
240
-	}
241
-
242
-	/**
243
-	 * Adds row actions to a column
244
-	 *
245
-	 * @param string $content column content
246
-	 * @param WPInv_Subscription $subscription
247
-	 * @since       1.0.0
248
-	 * @return      string
249
-	 */
250
-	public function add_row_actions( $content, $subscription ) {
251
-
252
-		// Prepare row actions.
253
-		$actions = array();
254
-
255
-		// View subscription action.
256
-		$view_url        = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) );
257
-		$view_url        = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) );
258
-		$actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>';
259
-
260
-		// Filter the actions.
261
-		$actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription );
262
-
263
-		$sanitized  = array();
264
-		foreach ( $actions as $key => $action ) {
265
-			$key         = sanitize_html_class( $key );
266
-			$action      = wp_kses_post( $action );
267
-			$sanitized[] = "<span class='$key'>$action</span>";
268
-		}
269
-
270
-		$row_actions  = "<small class='form-text getpaid-subscription-item-actions'>";
271
-		$row_actions .= implode( ' | ', $sanitized );
272
-		$row_actions .= '</small>';
273
-
274
-		return $content . $row_actions;
275
-	}
276
-
277
-	/**
278
-	 * Displays the table footer.
279
-	 *
280
-	 */
281
-	public function print_table_footer() {
282
-
283
-		?>
240
+    }
241
+
242
+    /**
243
+     * Adds row actions to a column
244
+     *
245
+     * @param string $content column content
246
+     * @param WPInv_Subscription $subscription
247
+     * @since       1.0.0
248
+     * @return      string
249
+     */
250
+    public function add_row_actions( $content, $subscription ) {
251
+
252
+        // Prepare row actions.
253
+        $actions = array();
254
+
255
+        // View subscription action.
256
+        $view_url        = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) );
257
+        $view_url        = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), $view_url ) );
258
+        $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>';
259
+
260
+        // Filter the actions.
261
+        $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription );
262
+
263
+        $sanitized  = array();
264
+        foreach ( $actions as $key => $action ) {
265
+            $key         = sanitize_html_class( $key );
266
+            $action      = wp_kses_post( $action );
267
+            $sanitized[] = "<span class='$key'>$action</span>";
268
+        }
269
+
270
+        $row_actions  = "<small class='form-text getpaid-subscription-item-actions'>";
271
+        $row_actions .= implode( ' | ', $sanitized );
272
+        $row_actions .= '</small>';
273
+
274
+        return $content . $row_actions;
275
+    }
276
+
277
+    /**
278
+     * Displays the table footer.
279
+     *
280
+     */
281
+    public function print_table_footer() {
282
+
283
+        ?>
284 284
 
285 285
 				<tfoot>
286 286
 					<tr>
@@ -295,142 +295,142 @@  discard block
 block discarded – undo
295 295
 			</table>
296 296
 		<?php
297 297
 
298
-	}
298
+    }
299 299
 
300
-	/**
301
-	 * Displays the navigation.
302
-	 *
303
-	 * @param int $total
304
-	 */
305
-	public function print_navigation( $total ) {
300
+    /**
301
+     * Displays the navigation.
302
+     *
303
+     * @param int $total
304
+     */
305
+    public function print_navigation( $total ) {
306 306
 
307
-		if ( $total < 1 ) {
307
+        if ( $total < 1 ) {
308 308
 
309
-			// Out-of-bounds, run the query again without LIMIT for total count.
310
-			$args  = array(
311
-				'customer_in' => get_current_user_id(),
312
-				'fields'      => 'id',
313
-			);
309
+            // Out-of-bounds, run the query again without LIMIT for total count.
310
+            $args  = array(
311
+                'customer_in' => get_current_user_id(),
312
+                'fields'      => 'id',
313
+            );
314 314
 
315
-			$count_query = new GetPaid_Subscriptions_Query( $args );
316
-			$total       = $count_query->get_total();
317
-		}
315
+            $count_query = new GetPaid_Subscriptions_Query( $args );
316
+            $total       = $count_query->get_total();
317
+        }
318 318
 
319
-		// Abort if we do not have pages.
320
-		if ( 2 > $total ) {
321
-			return;
322
-		}
319
+        // Abort if we do not have pages.
320
+        if ( 2 > $total ) {
321
+            return;
322
+        }
323 323
 
324
-		?>
324
+        ?>
325 325
 
326 326
 		<div class="getpaid-subscriptions-pagination">
327 327
 			<?php
328
-				$big = 999999;
329
-
330
-				echo getpaid_paginate_links(
331
-					array(
332
-						'base'   => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
333
-						'format' => '?paged=%#%',
334
-						'total'  => (int) ceil( $total / 10 ),
335
-					)
336
-				);
337
-			?>
328
+                $big = 999999;
329
+
330
+                echo getpaid_paginate_links(
331
+                    array(
332
+                        'base'   => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
333
+                        'format' => '?paged=%#%',
334
+                        'total'  => (int) ceil( $total / 10 ),
335
+                    )
336
+                );
337
+            ?>
338 338
 		</div>
339 339
 
340 340
 		<?php
341
-	}
342
-
343
-	/**
344
-	 * Returns a single subscription's columns.
345
-	 *
346
-	 * @param WPInv_Subscription $subscription
347
-	 *
348
-	 * @return array
349
-	 */
350
-	public function get_single_subscription_columns( $subscription ) {
351
-
352
-		// Prepare subscription detail columns.
353
-		$subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() );
354
-		$items_count        = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] );
355
-		$fields             = apply_filters(
356
-			'getpaid_single_subscription_details_fields',
357
-			array(
358
-				'status'           => __( 'Status', 'invoicing' ),
359
-				'initial_amount'   => __( 'Initial amount', 'invoicing' ),
360
-				'recurring_amount' => __( 'Recurring amount', 'invoicing' ),
361
-				'start_date'       => __( 'Start date', 'invoicing' ),
362
-				'expiry_date'      => __( 'Next payment', 'invoicing' ),
363
-				'payments'         => __( 'Payments', 'invoicing' ),
364
-				'item'             => _n( 'Item', 'Items', $items_count, 'invoicing' ),
365
-			),
366
-			$subscription
367
-		);
368
-
369
-		if ( isset( $fields['expiry_date'] ) ) {
370
-
371
-			if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) {
372
-				$fields['expiry_date'] = __( 'End date', 'invoicing' );
373
-			}
374
-
375
-			if ( 'pending' == $subscription->get_status() ) {
376
-				unset( $fields['expiry_date'] );
377
-			}
341
+    }
342
+
343
+    /**
344
+     * Returns a single subscription's columns.
345
+     *
346
+     * @param WPInv_Subscription $subscription
347
+     *
348
+     * @return array
349
+     */
350
+    public function get_single_subscription_columns( $subscription ) {
351
+
352
+        // Prepare subscription detail columns.
353
+        $subscription_group = getpaid_get_invoice_subscription_group( $subscription->get_parent_invoice_id(), $subscription->get_id() );
354
+        $items_count        = empty( $subscription_group ) ? 1 : count( $subscription_group['items'] );
355
+        $fields             = apply_filters(
356
+            'getpaid_single_subscription_details_fields',
357
+            array(
358
+                'status'           => __( 'Status', 'invoicing' ),
359
+                'initial_amount'   => __( 'Initial amount', 'invoicing' ),
360
+                'recurring_amount' => __( 'Recurring amount', 'invoicing' ),
361
+                'start_date'       => __( 'Start date', 'invoicing' ),
362
+                'expiry_date'      => __( 'Next payment', 'invoicing' ),
363
+                'payments'         => __( 'Payments', 'invoicing' ),
364
+                'item'             => _n( 'Item', 'Items', $items_count, 'invoicing' ),
365
+            ),
366
+            $subscription
367
+        );
368
+
369
+        if ( isset( $fields['expiry_date'] ) ) {
370
+
371
+            if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) {
372
+                $fields['expiry_date'] = __( 'End date', 'invoicing' );
373
+            }
374
+
375
+            if ( 'pending' == $subscription->get_status() ) {
376
+                unset( $fields['expiry_date'] );
377
+            }
378 378
 }
379 379
 
380
-		if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) {
381
-			unset( $fields['start_date'] );
382
-		}
383
-
384
-		if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) {
385
-			unset( $fields['initial_amount'] );
386
-		}
387
-
388
-		return $fields;
389
-	}
390
-
391
-	/**
392
-	 * Displays a single subscription.
393
-	 *
394
-	 * @param string $subscription
395
-	 *
396
-	 * @return string
397
-	 */
398
-	public function display_single_subscription( $subscription ) {
399
-
400
-		// Fetch the subscription.
401
-		$subscription = new WPInv_Subscription( (int) $subscription );
402
-
403
-		if ( ! $subscription->exists() ) {
404
-
405
-			return aui()->alert(
406
-				array(
407
-					'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ),
408
-					'type'    => 'error',
409
-				)
410
-			);
411
-
412
-		}
413
-
414
-		// Ensure that the user owns this subscription key.
415
-		if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) {
416
-
417
-			return aui()->alert(
418
-				array(
419
-					'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' ) ),
420
-					'type'    => 'error',
421
-				)
422
-			);
423
-
424
-		}
425
-
426
-		return wpinv_get_template_html(
427
-			'subscriptions/subscription-details.php',
428
-			array(
429
-				'subscription' => $subscription,
430
-				'widget'       => $this,
431
-			)
432
-		);
433
-
434
-	}
380
+        if ( isset( $fields['start_date'] ) && 'pending' == $subscription->get_status() ) {
381
+            unset( $fields['start_date'] );
382
+        }
383
+
384
+        if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) {
385
+            unset( $fields['initial_amount'] );
386
+        }
387
+
388
+        return $fields;
389
+    }
390
+
391
+    /**
392
+     * Displays a single subscription.
393
+     *
394
+     * @param string $subscription
395
+     *
396
+     * @return string
397
+     */
398
+    public function display_single_subscription( $subscription ) {
399
+
400
+        // Fetch the subscription.
401
+        $subscription = new WPInv_Subscription( (int) $subscription );
402
+
403
+        if ( ! $subscription->exists() ) {
404
+
405
+            return aui()->alert(
406
+                array(
407
+                    'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ),
408
+                    'type'    => 'error',
409
+                )
410
+            );
411
+
412
+        }
413
+
414
+        // Ensure that the user owns this subscription key.
415
+        if ( get_current_user_id() != $subscription->get_customer_id() && ! wpinv_current_user_can_manage_invoicing() ) {
416
+
417
+            return aui()->alert(
418
+                array(
419
+                    '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' ) ),
420
+                    'type'    => 'error',
421
+                )
422
+            );
423
+
424
+        }
425
+
426
+        return wpinv_get_template_html(
427
+            'subscriptions/subscription-details.php',
428
+            array(
429
+                'subscription' => $subscription,
430
+                'widget'       => $this,
431
+            )
432
+        );
433
+
434
+    }
435 435
 
436 436
 }
Please login to merge, or discard this patch.
widgets/buy-item.php 1 patch
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -37,29 +37,29 @@  discard block
 block discarded – undo
37 37
                     'advanced' => false,
38 38
                 ),
39 39
                 'items'   => array(
40
-	                'title'       => __( 'Items to buy', 'invoicing' ),
41
-	                'desc'        => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2 ', 'invoicing' ),
42
-	                'type'        => 'text',
43
-	                'desc_tip'    => true,
44
-	                'default'     => '',
45
-	                'placeholder' => __( 'Items to buy', 'invoicing' ),
46
-	                'advanced'    => false,
40
+                    'title'       => __( 'Items to buy', 'invoicing' ),
41
+                    'desc'        => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2 ', 'invoicing' ),
42
+                    'type'        => 'text',
43
+                    'desc_tip'    => true,
44
+                    'default'     => '',
45
+                    'placeholder' => __( 'Items to buy', 'invoicing' ),
46
+                    'advanced'    => false,
47 47
                 ),
48 48
                 'label'   => array(
49
-	                'title'    => __( 'Button Label', 'invoicing' ),
50
-	                'desc'     => __( 'Enter button label. Default "Buy Now".', 'invoicing' ),
51
-	                'type'     => 'text',
52
-	                'desc_tip' => true,
53
-	                'default'  => __( 'Buy Now', 'invoicing' ),
54
-	                'advanced' => false,
49
+                    'title'    => __( 'Button Label', 'invoicing' ),
50
+                    'desc'     => __( 'Enter button label. Default "Buy Now".', 'invoicing' ),
51
+                    'type'     => 'text',
52
+                    'desc_tip' => true,
53
+                    'default'  => __( 'Buy Now', 'invoicing' ),
54
+                    'advanced' => false,
55 55
                 ),
56 56
                 'post_id' => array(
57
-	                'title'    => __( 'Post ID', 'invoicing' ),
58
-	                'desc'     => __( 'Enter related post ID. This is for 3rd party add ons and not mandatory field.', 'invoicing' ),
59
-	                'type'     => 'number',
60
-	                'desc_tip' => true,
61
-	                'default'  => '',
62
-	                'advanced' => true,
57
+                    'title'    => __( 'Post ID', 'invoicing' ),
58
+                    'desc'     => __( 'Enter related post ID. This is for 3rd party add ons and not mandatory field.', 'invoicing' ),
59
+                    'type'     => 'number',
60
+                    'desc_tip' => true,
61
+                    'default'  => '',
62
+                    'advanced' => true,
63 63
                 ),
64 64
             ),
65 65
 
@@ -68,43 +68,43 @@  discard block
 block discarded – undo
68 68
         parent::__construct( $options );
69 69
     }
70 70
 
71
-	/**
72
-	 * The Super block output function.
73
-	 *
74
-	 * @param array $args
75
-	 * @param array $widget_args
76
-	 * @param string $content
77
-	 *
78
-	 * @return string
79
-	 */
71
+    /**
72
+     * The Super block output function.
73
+     *
74
+     * @param array $args
75
+     * @param array $widget_args
76
+     * @param string $content
77
+     *
78
+     * @return string
79
+     */
80 80
     public function output( $args = array(), $widget_args = array(), $content = '' ) {
81 81
 
82
-	    $defaults = array(
83
-		    'items'   => '', // should be used like: item_id|quantity,item_id|quantity,item_id|quantity
84
-		    'label'   => __( 'Buy Now', 'invoicing' ), // the button title
85
-		    'post_id' => '', // any related post_id
86
-	    );
82
+        $defaults = array(
83
+            'items'   => '', // should be used like: item_id|quantity,item_id|quantity,item_id|quantity
84
+            'label'   => __( 'Buy Now', 'invoicing' ), // the button title
85
+            'post_id' => '', // any related post_id
86
+        );
87 87
 
88
-	    /**
89
-	     * Parse incoming $args into an array and merge it with $defaults
90
-	     */
91
-	    $args = wp_parse_args( $args, $defaults );
88
+        /**
89
+         * Parse incoming $args into an array and merge it with $defaults
90
+         */
91
+        $args = wp_parse_args( $args, $defaults );
92 92
 
93
-		$html = '<div class="wpi-buy-button-wrapper wpi-g">';
93
+        $html = '<div class="wpi-buy-button-wrapper wpi-g">';
94 94
 
95
-		if ( empty( $args['items'] ) ) {
96
-			$html .= __( 'No items selected', 'invoicing' );
97
-		} else {
98
-			$post_id = isset( $args['post_id'] ) && is_numeric( $args['post_id'] ) ? sanitize_text_field( $args['post_id'] ) : 0;
99
-			$label   = isset( $args['label'] ) ? sanitize_text_field( $args['label'] ) : __( 'Buy Now', 'invoicing' );
100
-			$items   = esc_attr( $args['items'] );
101
-			$html   .= "<button class='button button-primary wpi-buy-button' type='button' onclick=\"wpi_buy(this, '$items','$post_id');\">$label</button>";
102
-		}
95
+        if ( empty( $args['items'] ) ) {
96
+            $html .= __( 'No items selected', 'invoicing' );
97
+        } else {
98
+            $post_id = isset( $args['post_id'] ) && is_numeric( $args['post_id'] ) ? sanitize_text_field( $args['post_id'] ) : 0;
99
+            $label   = isset( $args['label'] ) ? sanitize_text_field( $args['label'] ) : __( 'Buy Now', 'invoicing' );
100
+            $items   = esc_attr( $args['items'] );
101
+            $html   .= "<button class='button button-primary wpi-buy-button' type='button' onclick=\"wpi_buy(this, '$items','$post_id');\">$label</button>";
102
+        }
103 103
 
104
-	    $html .= wp_nonce_field( 'wpinv_buy_items', 'wpinv_buy_nonce', true, false );
105
-	    $html .= '</div>';
104
+        $html .= wp_nonce_field( 'wpinv_buy_items', 'wpinv_buy_nonce', true, false );
105
+        $html .= '</div>';
106 106
 
107
-	    return $html;
107
+        return $html;
108 108
 
109 109
     }
110 110
 
Please login to merge, or discard this patch.
widgets/invoice.php 1 patch
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -36,14 +36,14 @@  discard block
 block discarded – undo
36 36
                     'advanced' => false,
37 37
                 ),
38 38
                 'id'    => array(
39
-	                'title'       => __( 'Invoice', 'invoicing' ),
40
-	                'desc'        => __( 'Enter the invoice ID', 'invoicing' ),
41
-	                'type'        => 'text',
42
-	                'desc_tip'    => true,
43
-	                'default'     => '',
44
-	                'placeholder' => __( '1', 'invoicing' ),
45
-	                'advanced'    => false,
46
-				),
39
+                    'title'       => __( 'Invoice', 'invoicing' ),
40
+                    'desc'        => __( 'Enter the invoice ID', 'invoicing' ),
41
+                    'type'        => 'text',
42
+                    'desc_tip'    => true,
43
+                    'default'     => '',
44
+                    'placeholder' => __( '1', 'invoicing' ),
45
+                    'advanced'    => false,
46
+                ),
47 47
             ),
48 48
 
49 49
         );
@@ -51,26 +51,26 @@  discard block
 block discarded – undo
51 51
         parent::__construct( $options );
52 52
     }
53 53
 
54
-	/**
55
-	 * The Super block output function.
56
-	 *
57
-	 * @param array $args
58
-	 * @param array $widget_args
59
-	 * @param string $content
60
-	 *
61
-	 * @return mixed|string|bool
62
-	 */
54
+    /**
55
+     * The Super block output function.
56
+     *
57
+     * @param array $args
58
+     * @param array $widget_args
59
+     * @param string $content
60
+     *
61
+     * @return mixed|string|bool
62
+     */
63 63
     public function output( $args = array(), $widget_args = array(), $content = '' ) {
64 64
 
65 65
         // Is the shortcode set up correctly?
66
-		if ( empty( $args['id'] ) ) {
67
-			return aui()->alert(
68
-				array(
69
-					'type'    => 'warning',
70
-					'content' => __( 'Missing invoice ID', 'invoicing' ),
71
-				)
72
-			);
73
-		}
66
+        if ( empty( $args['id'] ) ) {
67
+            return aui()->alert(
68
+                array(
69
+                    'type'    => 'warning',
70
+                    'content' => __( 'Missing invoice ID', 'invoicing' ),
71
+                )
72
+            );
73
+        }
74 74
 
75 75
         $invoice = wpinv_get_invoice( (int) $args['id'] );
76 76
 
Please login to merge, or discard this patch.
widgets/getpaid.php 1 patch
Indentation   +102 added lines, -102 removed lines patch added patch discarded remove patch
@@ -36,36 +36,36 @@  discard block
 block discarded – undo
36 36
                     'desc_tip' => true,
37 37
                     'default'  => '',
38 38
                     'advanced' => false,
39
-				),
39
+                ),
40 40
 
41 41
                 'form'   => array(
42
-	                'title'       => __( 'Form', 'invoicing' ),
43
-	                'desc'        => __( 'Enter a form id in case you want to display a specific payment form', 'invoicing' ),
44
-	                'type'        => 'text',
45
-	                'desc_tip'    => true,
46
-	                'default'     => '',
47
-	                'placeholder' => __( '1', 'invoicing' ),
48
-	                'advanced'    => false,
49
-				),
50
-
51
-				'item'   => array(
52
-	                'title'       => __( 'Items', 'invoicing' ),
53
-	                'desc'        => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2. This will be ignored in case you specify a form above. Enter 0 as the quantity to let users select their own quantities', 'invoicing' ),
54
-	                'type'        => 'text',
55
-	                'desc_tip'    => true,
56
-	                'default'     => '',
57
-	                'placeholder' => __( '1', 'invoicing' ),
58
-	                'advanced'    => false,
59
-				),
42
+                    'title'       => __( 'Form', 'invoicing' ),
43
+                    'desc'        => __( 'Enter a form id in case you want to display a specific payment form', 'invoicing' ),
44
+                    'type'        => 'text',
45
+                    'desc_tip'    => true,
46
+                    'default'     => '',
47
+                    'placeholder' => __( '1', 'invoicing' ),
48
+                    'advanced'    => false,
49
+                ),
50
+
51
+                'item'   => array(
52
+                    'title'       => __( 'Items', 'invoicing' ),
53
+                    'desc'        => __( 'Enter comma separated list of invoicing item id and quantity (item_id|quantity). Ex. 101|2. This will be ignored in case you specify a form above. Enter 0 as the quantity to let users select their own quantities', 'invoicing' ),
54
+                    'type'        => 'text',
55
+                    'desc_tip'    => true,
56
+                    'default'     => '',
57
+                    'placeholder' => __( '1', 'invoicing' ),
58
+                    'advanced'    => false,
59
+                ),
60 60
 
61 61
                 'button' => array(
62
-	                'title'    => __( 'Button', 'invoicing' ),
63
-	                'desc'     => __( 'Enter button label in case you would like to display the forms in a popup.', 'invoicing' ),
64
-	                'type'     => 'text',
65
-	                'desc_tip' => true,
66
-	                'default'  => '',
67
-	                'advanced' => false,
68
-				),
62
+                    'title'    => __( 'Button', 'invoicing' ),
63
+                    'desc'     => __( 'Enter button label in case you would like to display the forms in a popup.', 'invoicing' ),
64
+                    'type'     => 'text',
65
+                    'desc_tip' => true,
66
+                    'default'  => '',
67
+                    'advanced' => false,
68
+                ),
69 69
 
70 70
             ),
71 71
 
@@ -74,96 +74,96 @@  discard block
 block discarded – undo
74 74
         parent::__construct( $options );
75 75
     }
76 76
 
77
-	/**
78
-	 * The Super block output function.
79
-	 *
80
-	 * @param array $args
81
-	 * @param array $widget_args
82
-	 * @param string $content
83
-	 *
84
-	 * @return string
85
-	 */
77
+    /**
78
+     * The Super block output function.
79
+     *
80
+     * @param array $args
81
+     * @param array $widget_args
82
+     * @param string $content
83
+     *
84
+     * @return string
85
+     */
86 86
     public function output( $args = array(), $widget_args = array(), $content = '' ) {
87 87
 
88
-	    // Is the shortcode set up correctly?
89
-		if ( empty( $args['form'] ) && empty( $args['item'] ) ) {
90
-			return aui()->alert(
91
-				array(
92
-					'type'    => 'warning',
93
-					'content' => __( 'No payment form or item selected', 'invoicing' ),
94
-				)
95
-			);
96
-		}
97
-
98
-		// Payment form or button?
99
-		if ( ! empty( $args['form'] ) ) {
100
-			return $this->handle_payment_form( $args );
101
-		} else {
102
-			return $this->handle_buy_item( $args );
103
-		}
104
-
105
-	}
106
-
107
-	/**
108
-	 * Displaying a payment form
109
-	 *
110
-	 * @return string
111
-	 */
88
+        // Is the shortcode set up correctly?
89
+        if ( empty( $args['form'] ) && empty( $args['item'] ) ) {
90
+            return aui()->alert(
91
+                array(
92
+                    'type'    => 'warning',
93
+                    'content' => __( 'No payment form or item selected', 'invoicing' ),
94
+                )
95
+            );
96
+        }
97
+
98
+        // Payment form or button?
99
+        if ( ! empty( $args['form'] ) ) {
100
+            return $this->handle_payment_form( $args );
101
+        } else {
102
+            return $this->handle_buy_item( $args );
103
+        }
104
+
105
+    }
106
+
107
+    /**
108
+     * Displaying a payment form
109
+     *
110
+     * @return string
111
+     */
112 112
     protected function handle_payment_form( $args = array() ) {
113 113
 
114
-		if ( empty( $args['button'] ) ) {
115
-			ob_start();
116
-			getpaid_display_payment_form( $args['form'] );
117
-			return ob_get_clean();
118
-		}
114
+        if ( empty( $args['button'] ) ) {
115
+            ob_start();
116
+            getpaid_display_payment_form( $args['form'] );
117
+            return ob_get_clean();
118
+        }
119 119
 
120
-		return $this->payment_form_button( $args['form'], $args['button'] );
121
-	}
120
+        return $this->payment_form_button( $args['form'], $args['button'] );
121
+    }
122 122
 
123
-	/**
124
-	 * Displays a payment form button.
125
-	 *
126
-	 * @return string
127
-	 */
123
+    /**
124
+     * Displays a payment form button.
125
+     *
126
+     * @return string
127
+     */
128 128
     protected function payment_form_button( $form, $button ) {
129
-		return getpaid_get_payment_button( $button, $form );
130
-	}
131
-
132
-	/**
133
-	 * Selling an item
134
-	 *
135
-	 * @return string
136
-	 */
129
+        return getpaid_get_payment_button( $button, $form );
130
+    }
131
+
132
+    /**
133
+     * Selling an item
134
+     *
135
+     * @return string
136
+     */
137 137
     protected function handle_buy_item( $args = array() ) {
138 138
 
139
-		if ( empty( $args['button'] ) ) {
140
-			return $this->buy_item_form( $args['item'] );
141
-		}
139
+        if ( empty( $args['button'] ) ) {
140
+            return $this->buy_item_form( $args['item'] );
141
+        }
142 142
 
143
-		return $this->buy_item_button( $args['item'], $args['button'] );
143
+        return $this->buy_item_button( $args['item'], $args['button'] );
144 144
 
145
-	}
145
+    }
146 146
 
147
-	/**
148
-	 * Displays a buy item form.
149
-	 *
150
-	 * @return string
151
-	 */
147
+    /**
148
+     * Displays a buy item form.
149
+     *
150
+     * @return string
151
+     */
152 152
     protected function buy_item_form( $item ) {
153
-		$items = getpaid_convert_items_to_array( $item );
154
-		ob_start();
155
-		getpaid_display_item_payment_form( $items );
156
-		return ob_get_clean();
157
-	}
158
-
159
-	/**
160
-	 * Displays a buy item button.
161
-	 *
162
-	 * @return string
163
-	 */
153
+        $items = getpaid_convert_items_to_array( $item );
154
+        ob_start();
155
+        getpaid_display_item_payment_form( $items );
156
+        return ob_get_clean();
157
+    }
158
+
159
+    /**
160
+     * Displays a buy item button.
161
+     *
162
+     * @return string
163
+     */
164 164
     protected function buy_item_button( $item, $button ) {
165
-		$button = getpaid_get_payment_button( $button, null, $item );
166
-		return apply_filters( 'getpaid_buy_item_button_widget', $button, $item );
165
+        $button = getpaid_get_payment_button( $button, null, $item );
166
+        return apply_filters( 'getpaid_buy_item_button_widget', $button, $item );
167 167
     }
168 168
 
169 169
 }
Please login to merge, or discard this patch.