Passed
Push — master ( 2f4bb8...877d43 )
by Brian
04:59
created
ayecode/wp-ayecode-ui/includes/components/class-aui-component-input.php 1 patch
Spacing   +219 added lines, -219 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if ( ! defined( 'ABSPATH' ) ) {
3
+if (!defined('ABSPATH')) {
4 4
 	exit; // Exit if accessed directly
5 5
 }
6 6
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 	 *
19 19
 	 * @return string The rendered component.
20 20
 	 */
21
-	public static function input($args = array()){
21
+	public static function input($args = array()) {
22 22
 		$defaults = array(
23 23
 			'type'       => 'text',
24 24
 			'name'       => '',
@@ -53,13 +53,13 @@  discard block
 block discarded – undo
53 53
 		/**
54 54
 		 * Parse incoming $args into an array and merge it with $defaults
55 55
 		 */
56
-		$args   = wp_parse_args( $args, $defaults );
56
+		$args   = wp_parse_args($args, $defaults);
57 57
 		$output = '';
58
-		if ( ! empty( $args['type'] ) ) {
58
+		if (!empty($args['type'])) {
59 59
 			// hidden label option needs to be empty
60 60
 			$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
61 61
 
62
-			$type = sanitize_html_class( $args['type'] );
62
+			$type = sanitize_html_class($args['type']);
63 63
 
64 64
 			$help_text = '';
65 65
 			$label = '';
@@ -67,24 +67,24 @@  discard block
 block discarded – undo
67 67
 			$label_args = array(
68 68
 				'title'=> $args['label'],
69 69
 				'for'=> $args['id'],
70
-				'class' => $args['label_class']." ",
70
+				'class' => $args['label_class'] . " ",
71 71
 				'label_type' => $args['label_type']
72 72
 			);
73 73
 
74 74
 			// floating labels need label after
75
-			if( $args['label_type'] == 'floating' && $type != 'checkbox' ){
75
+			if ($args['label_type'] == 'floating' && $type != 'checkbox') {
76 76
 				$label_after = true;
77 77
 				$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
78 78
 			}
79 79
 
80 80
 			// Some special sauce for files
81
-			if($type=='file' ){
81
+			if ($type == 'file') {
82 82
 				$label_after = true; // if type file we need the label after
83 83
 				$args['class'] .= ' custom-file-input ';
84
-			}elseif($type=='checkbox'){
84
+			}elseif ($type == 'checkbox') {
85 85
 				$label_after = true; // if type file we need the label after
86 86
 				$args['class'] .= ' custom-control-input ';
87
-			}elseif($type=='datepicker' || $type=='timepicker'){
87
+			}elseif ($type == 'datepicker' || $type == 'timepicker') {
88 88
 				$type = 'text';
89 89
 				//$args['class'] .= ' aui-flatpickr bg-initial ';
90 90
 				$args['class'] .= ' bg-initial ';
@@ -100,65 +100,65 @@  discard block
 block discarded – undo
100 100
 			$output .= '<input type="' . $type . '" ';
101 101
 
102 102
 			// name
103
-			if(!empty($args['name'])){
104
-				$output .= ' name="'.esc_attr($args['name']).'" ';
103
+			if (!empty($args['name'])) {
104
+				$output .= ' name="' . esc_attr($args['name']) . '" ';
105 105
 			}
106 106
 
107 107
 			// id
108
-			if(!empty($args['id'])){
109
-				$output .= ' id="'.sanitize_html_class($args['id']).'" ';
108
+			if (!empty($args['id'])) {
109
+				$output .= ' id="' . sanitize_html_class($args['id']) . '" ';
110 110
 			}
111 111
 
112 112
 			// placeholder
113
-			if(isset($args['placeholder']) && '' != $args['placeholder'] ){
114
-				$output .= ' placeholder="'.esc_attr($args['placeholder']).'" ';
113
+			if (isset($args['placeholder']) && '' != $args['placeholder']) {
114
+				$output .= ' placeholder="' . esc_attr($args['placeholder']) . '" ';
115 115
 			}
116 116
 
117 117
 			// title
118
-			if(!empty($args['title'])){
119
-				$output .= ' title="'.esc_attr($args['title']).'" ';
118
+			if (!empty($args['title'])) {
119
+				$output .= ' title="' . esc_attr($args['title']) . '" ';
120 120
 			}
121 121
 
122 122
 			// value
123
-			if(!empty($args['value'])){
123
+			if (!empty($args['value'])) {
124 124
 				$output .= AUI_Component_Helper::value($args['value']);
125 125
 			}
126 126
 
127 127
 			// checked, for radio and checkboxes
128
-			if( ( $type == 'checkbox' || $type == 'radio' ) && $args['checked'] ){
128
+			if (($type == 'checkbox' || $type == 'radio') && $args['checked']) {
129 129
 				$output .= ' checked ';
130 130
 			}
131 131
 
132 132
 			// validation text
133
-			if(!empty($args['validation_text'])){
134
-				$output .= ' oninvalid="setCustomValidity(\''.esc_attr($args['validation_text']).'\')" ';
133
+			if (!empty($args['validation_text'])) {
134
+				$output .= ' oninvalid="setCustomValidity(\'' . esc_attr($args['validation_text']) . '\')" ';
135 135
 				$output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
136 136
 			}
137 137
 
138 138
 			// validation_pattern
139
-			if(!empty($args['validation_pattern'])){
140
-				$output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
139
+			if (!empty($args['validation_pattern'])) {
140
+				$output .= ' pattern="' . esc_attr($args['validation_pattern']) . '" ';
141 141
 			}
142 142
 
143 143
 			// step (for numbers)
144
-			if(!empty($args['step'])){
145
-				$output .= ' step="'.$args['step'].'" ';
144
+			if (!empty($args['step'])) {
145
+				$output .= ' step="' . $args['step'] . '" ';
146 146
 			}
147 147
 
148 148
 			// required
149
-			if(!empty($args['required'])){
149
+			if (!empty($args['required'])) {
150 150
 				$output .= ' required ';
151 151
 			}
152 152
 
153 153
 			// class
154
-			$class = !empty($args['class']) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
155
-			$output .= ' class="form-control '.$class.'" ';
154
+			$class = !empty($args['class']) ? AUI_Component_Helper::esc_classes($args['class']) : '';
155
+			$output .= ' class="form-control ' . $class . '" ';
156 156
 
157 157
 			// data-attributes
158 158
 			$output .= AUI_Component_Helper::data_attributes($args);
159 159
 
160 160
 			// extra attributes
161
-			if(!empty($args['extra_attributes'])){
161
+			if (!empty($args['extra_attributes'])) {
162 162
 				$output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']);
163 163
 			}
164 164
 
@@ -167,40 +167,40 @@  discard block
 block discarded – undo
167 167
 
168 168
 
169 169
 			// label
170
-			if(!empty($args['label'])){
171
-				if($type == 'file'){$label_args['class'] .= 'custom-file-label';}
172
-				elseif($type == 'checkbox'){$label_args['class'] .= 'custom-control-label';}
173
-				$label = self::label( $label_args, $type );
170
+			if (!empty($args['label'])) {
171
+				if ($type == 'file') {$label_args['class'] .= 'custom-file-label'; }
172
+				elseif ($type == 'checkbox') {$label_args['class'] .= 'custom-control-label'; }
173
+				$label = self::label($label_args, $type);
174 174
 			}
175 175
 
176 176
 			// help text
177
-			if(!empty($args['help_text'])){
177
+			if (!empty($args['help_text'])) {
178 178
 				$help_text = AUI_Component_Helper::help_text($args['help_text']);
179 179
 			}
180 180
 
181 181
 
182 182
 			// set help text in the correct possition
183
-			if($label_after){
183
+			if ($label_after) {
184 184
 				$output .= $label . $help_text;
185 185
 			}
186 186
 
187 187
 			// some input types need a separate wrap
188
-			if($type == 'file') {
189
-				$output = self::wrap( array(
188
+			if ($type == 'file') {
189
+				$output = self::wrap(array(
190 190
 					'content' => $output,
191 191
 					'class'   => 'form-group custom-file'
192
-				) );
193
-			}elseif($type == 'checkbox'){
192
+				));
193
+			}elseif ($type == 'checkbox') {
194 194
 				$wrap_class = $args['switch'] ? 'custom-switch' : 'custom-checkbox';
195
-				$output = self::wrap( array(
195
+				$output = self::wrap(array(
196 196
 					'content' => $output,
197
-					'class'   => 'custom-control '.$wrap_class
198
-				) );
197
+					'class'   => 'custom-control ' . $wrap_class
198
+				));
199 199
 
200
-				if($args['label_type']=='horizontal'){
200
+				if ($args['label_type'] == 'horizontal') {
201 201
 					$output = '<div class="col-sm-2 col-form-label"></div><div class="col-sm-10">' . $output . '</div>';
202 202
 				}
203
-			}elseif($type == 'password' && $args['password_toggle'] && !$args['input_group_right']){
203
+			}elseif ($type == 'password' && $args['password_toggle'] && !$args['input_group_right']) {
204 204
 
205 205
 
206 206
 				// allow password field to toggle view
@@ -214,48 +214,48 @@  discard block
 block discarded – undo
214 214
 			}
215 215
 
216 216
 			// input group wraps
217
-			if($args['input_group_left'] || $args['input_group_right']){
217
+			if ($args['input_group_left'] || $args['input_group_right']) {
218 218
 				$w100 = strpos($args['class'], 'w-100') !== false ? ' w-100' : '';
219
-				if($args['input_group_left']){
220
-					$output = self::wrap( array(
219
+				if ($args['input_group_left']) {
220
+					$output = self::wrap(array(
221 221
 						'content' => $output,
222
-						'class'   => $args['input_group_left_inside'] ? 'input-group-inside position-relative'.$w100  : 'input-group',
222
+						'class'   => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
223 223
 						'input_group_left' => $args['input_group_left'],
224 224
 						'input_group_left_inside'    => $args['input_group_left_inside']
225
-					) );
225
+					));
226 226
 				}
227
-				if($args['input_group_right']){
228
-					$output = self::wrap( array(
227
+				if ($args['input_group_right']) {
228
+					$output = self::wrap(array(
229 229
 						'content' => $output,
230
-						'class'   => $args['input_group_right_inside'] ? 'input-group-inside position-relative'.$w100 : 'input-group',
230
+						'class'   => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group',
231 231
 						'input_group_right' => $args['input_group_right'],
232 232
 						'input_group_right_inside'    => $args['input_group_right_inside']
233
-					) );
233
+					));
234 234
 				}
235 235
 
236 236
 			}
237 237
 
238
-			if(!$label_after){
238
+			if (!$label_after) {
239 239
 				$output .= $help_text;
240 240
 			}
241 241
 
242 242
 
243
-			if($args['label_type']=='horizontal' && $type != 'checkbox'){
244
-				$output = self::wrap( array(
243
+			if ($args['label_type'] == 'horizontal' && $type != 'checkbox') {
244
+				$output = self::wrap(array(
245 245
 					'content' => $output,
246 246
 					'class'   => 'col-sm-10',
247
-				) );
247
+				));
248 248
 			}
249 249
 
250
-			if(!$label_after){
250
+			if (!$label_after) {
251 251
 				$output = $label . $output;
252 252
 			}
253 253
 
254 254
 			// wrap
255
-			if ( ! $args['no_wrap'] ) {
256
-				$form_group_class = $args['label_type']=='floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group';
257
-				$wrap_class = $args['label_type']=='horizontal' ? $form_group_class . ' row' : $form_group_class;
258
-				$wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class;
255
+			if (!$args['no_wrap']) {
256
+				$form_group_class = $args['label_type'] == 'floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group';
257
+				$wrap_class = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
258
+				$wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
259 259
 				$output = self::wrap(array(
260 260
 					'content' => $output,
261 261
 					'class'   => $wrap_class,
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
 	 *
277 277
 	 * @return string The rendered component.
278 278
 	 */
279
-	public static function textarea($args = array()){
279
+	public static function textarea($args = array()) {
280 280
 		$defaults = array(
281 281
 			'name'       => '',
282 282
 			'class'      => '',
@@ -305,43 +305,43 @@  discard block
 block discarded – undo
305 305
 		/**
306 306
 		 * Parse incoming $args into an array and merge it with $defaults
307 307
 		 */
308
-		$args   = wp_parse_args( $args, $defaults );
308
+		$args   = wp_parse_args($args, $defaults);
309 309
 		$output = '';
310 310
 
311 311
 		// hidden label option needs to be empty
312 312
 		$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
313 313
 
314 314
 		// floating labels don't work with wysiwyg so set it as top
315
-		if($args['label_type'] == 'floating' && !empty($args['wysiwyg'])){
315
+		if ($args['label_type'] == 'floating' && !empty($args['wysiwyg'])) {
316 316
 			$args['label_type'] = 'top';
317 317
 		}
318 318
 
319 319
 		$label_after = $args['label_after'];
320 320
 
321 321
 		// floating labels need label after
322
-		if( $args['label_type'] == 'floating' && empty($args['wysiwyg']) ){
322
+		if ($args['label_type'] == 'floating' && empty($args['wysiwyg'])) {
323 323
 			$label_after = true;
324 324
 			$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
325 325
 		}
326 326
 
327 327
 		// label
328
-		if(!empty($args['label']) && is_array($args['label'])){
329
-		}elseif(!empty($args['label']) && !$label_after){
328
+		if (!empty($args['label']) && is_array($args['label'])) {
329
+		}elseif (!empty($args['label']) && !$label_after) {
330 330
 			$label_args = array(
331 331
 				'title'=> $args['label'],
332 332
 				'for'=> $args['id'],
333
-				'class' => $args['label_class']." ",
333
+				'class' => $args['label_class'] . " ",
334 334
 				'label_type' => $args['label_type']
335 335
 			);
336
-			$output .= self::label( $label_args );
336
+			$output .= self::label($label_args);
337 337
 		}
338 338
 
339 339
 		// maybe horizontal label
340
-		if($args['label_type']=='horizontal'){
340
+		if ($args['label_type'] == 'horizontal') {
341 341
 			$output .= '<div class="col-sm-10">';
342 342
 		}
343 343
 
344
-		if(!empty($args['wysiwyg'])){
344
+		if (!empty($args['wysiwyg'])) {
345 345
 			ob_start();
346 346
 			$content = $args['value'];
347 347
 			$editor_id = !empty($args['id']) ? sanitize_html_class($args['id']) : 'wp_editor';
@@ -355,65 +355,65 @@  discard block
 block discarded – undo
355 355
 			);
356 356
 
357 357
 			// maybe set settings if array
358
-			if(is_array($args['wysiwyg'])){
359
-				$settings  = wp_parse_args( $args['wysiwyg'], $settings );
358
+			if (is_array($args['wysiwyg'])) {
359
+				$settings = wp_parse_args($args['wysiwyg'], $settings);
360 360
 			}
361 361
 
362
-			wp_editor( $content, $editor_id, $settings );
362
+			wp_editor($content, $editor_id, $settings);
363 363
 			$output .= ob_get_clean();
364
-		}else{
364
+		} else {
365 365
 
366 366
 			// open
367 367
 			$output .= '<textarea ';
368 368
 
369 369
 			// name
370
-			if(!empty($args['name'])){
371
-				$output .= ' name="'.esc_attr($args['name']).'" ';
370
+			if (!empty($args['name'])) {
371
+				$output .= ' name="' . esc_attr($args['name']) . '" ';
372 372
 			}
373 373
 
374 374
 			// id
375
-			if(!empty($args['id'])){
376
-				$output .= ' id="'.sanitize_html_class($args['id']).'" ';
375
+			if (!empty($args['id'])) {
376
+				$output .= ' id="' . sanitize_html_class($args['id']) . '" ';
377 377
 			}
378 378
 
379 379
 			// placeholder
380
-			if(isset($args['placeholder']) && '' != $args['placeholder']){
381
-				$output .= ' placeholder="'.esc_attr($args['placeholder']).'" ';
380
+			if (isset($args['placeholder']) && '' != $args['placeholder']) {
381
+				$output .= ' placeholder="' . esc_attr($args['placeholder']) . '" ';
382 382
 			}
383 383
 
384 384
 			// title
385
-			if(!empty($args['title'])){
386
-				$output .= ' title="'.esc_attr($args['title']).'" ';
385
+			if (!empty($args['title'])) {
386
+				$output .= ' title="' . esc_attr($args['title']) . '" ';
387 387
 			}
388 388
 
389 389
 			// validation text
390
-			if(!empty($args['validation_text'])){
391
-				$output .= ' oninvalid="setCustomValidity(\''.esc_attr($args['validation_text']).'\')" ';
390
+			if (!empty($args['validation_text'])) {
391
+				$output .= ' oninvalid="setCustomValidity(\'' . esc_attr($args['validation_text']) . '\')" ';
392 392
 				$output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" ';
393 393
 			}
394 394
 
395 395
 			// validation_pattern
396
-			if(!empty($args['validation_pattern'])){
397
-				$output .= ' pattern="' . esc_attr( $args['validation_pattern'] ) . '" ';
396
+			if (!empty($args['validation_pattern'])) {
397
+				$output .= ' pattern="' . esc_attr($args['validation_pattern']) . '" ';
398 398
 			}
399 399
 
400 400
 			// required
401
-			if(!empty($args['required'])){
401
+			if (!empty($args['required'])) {
402 402
 				$output .= ' required ';
403 403
 			}
404 404
 
405 405
 			// rows
406
-			if(!empty($args['rows'])){
407
-				$output .= ' rows="'.absint($args['rows']).'" ';
406
+			if (!empty($args['rows'])) {
407
+				$output .= ' rows="' . absint($args['rows']) . '" ';
408 408
 			}
409 409
 
410 410
 
411 411
 			// class
412 412
 			$class = !empty($args['class']) ? $args['class'] : '';
413
-			$output .= ' class="form-control '.$class.'" ';
413
+			$output .= ' class="form-control ' . $class . '" ';
414 414
 
415 415
 			// extra attributes
416
-			if(!empty($args['extra_attributes'])){
416
+			if (!empty($args['extra_attributes'])) {
417 417
 				$output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']);
418 418
 			}
419 419
 
@@ -421,11 +421,11 @@  discard block
 block discarded – undo
421 421
 			$output .= ' >';
422 422
 
423 423
 			// value
424
-			if ( ! empty( $args['value'] ) ) {
425
-				if ( ! empty( $args['allow_tags'] ) ) {
426
-					$output .= AUI_Component_Helper::sanitize_html_field( $args['value'], $args ); // Sanitize HTML.
424
+			if (!empty($args['value'])) {
425
+				if (!empty($args['allow_tags'])) {
426
+					$output .= AUI_Component_Helper::sanitize_html_field($args['value'], $args); // Sanitize HTML.
427 427
 				} else {
428
-					$output .= sanitize_textarea_field( $args['value'] );
428
+					$output .= sanitize_textarea_field($args['value']);
429 429
 				}
430 430
 			}
431 431
 
@@ -434,32 +434,32 @@  discard block
 block discarded – undo
434 434
 
435 435
 		}
436 436
 
437
-		if(!empty($args['label']) && $label_after){
437
+		if (!empty($args['label']) && $label_after) {
438 438
 			$label_args = array(
439 439
 				'title'=> $args['label'],
440 440
 				'for'=> $args['id'],
441
-				'class' => $args['label_class']." ",
441
+				'class' => $args['label_class'] . " ",
442 442
 				'label_type' => $args['label_type']
443 443
 			);
444
-			$output .= self::label( $label_args );
444
+			$output .= self::label($label_args);
445 445
 		}
446 446
 
447 447
 		// help text
448
-		if(!empty($args['help_text'])){
448
+		if (!empty($args['help_text'])) {
449 449
 			$output .= AUI_Component_Helper::help_text($args['help_text']);
450 450
 		}
451 451
 
452 452
 		// maybe horizontal label
453
-		if($args['label_type']=='horizontal'){
453
+		if ($args['label_type'] == 'horizontal') {
454 454
 			$output .= '</div>';
455 455
 		}
456 456
 
457 457
 
458 458
 		// wrap
459
-		if(!$args['no_wrap']){
460
-			$form_group_class = $args['label_type']=='floating' ? 'form-label-group' : 'form-group';
461
-			$wrap_class = $args['label_type']=='horizontal' ? $form_group_class . ' row' : $form_group_class;
462
-			$wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class;
459
+		if (!$args['no_wrap']) {
460
+			$form_group_class = $args['label_type'] == 'floating' ? 'form-label-group' : 'form-group';
461
+			$wrap_class = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class;
462
+			$wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
463 463
 			$output = self::wrap(array(
464 464
 				'content' => $output,
465 465
 				'class'   => $wrap_class,
@@ -473,7 +473,7 @@  discard block
 block discarded – undo
473 473
 		return $output;
474 474
 	}
475 475
 
476
-	public static function label($args = array(), $type = ''){
476
+	public static function label($args = array(), $type = '') {
477 477
 		//<label for="exampleInputEmail1">Email address</label>
478 478
 		$defaults = array(
479 479
 			'title'       => 'div',
@@ -485,20 +485,20 @@  discard block
 block discarded – undo
485 485
 		/**
486 486
 		 * Parse incoming $args into an array and merge it with $defaults
487 487
 		 */
488
-		$args   = wp_parse_args( $args, $defaults );
488
+		$args   = wp_parse_args($args, $defaults);
489 489
 		$output = '';
490 490
 
491
-		if($args['title']){
491
+		if ($args['title']) {
492 492
 
493 493
 			// maybe hide labels //@todo set a global option for visibility class
494
-			if($type == 'file' || $type == 'checkbox' || $type == 'radio' || !empty($args['label_type']) ){
494
+			if ($type == 'file' || $type == 'checkbox' || $type == 'radio' || !empty($args['label_type'])) {
495 495
 				$class = $args['class'];
496
-			}else{
497
-				$class = 'sr-only '.$args['class'];
496
+			} else {
497
+				$class = 'sr-only ' . $args['class'];
498 498
 			}
499 499
 
500 500
 			// maybe horizontal
501
-			if($args['label_type']=='horizontal' && $type != 'checkbox'){
501
+			if ($args['label_type'] == 'horizontal' && $type != 'checkbox') {
502 502
 				$class .= ' col-sm-2 col-form-label';
503 503
 			}
504 504
 
@@ -506,20 +506,20 @@  discard block
 block discarded – undo
506 506
 			$output .= '<label ';
507 507
 
508 508
 			// for
509
-			if(!empty($args['for'])){
510
-				$output .= ' for="'.esc_attr($args['for']).'" ';
509
+			if (!empty($args['for'])) {
510
+				$output .= ' for="' . esc_attr($args['for']) . '" ';
511 511
 			}
512 512
 
513 513
 			// class
514
-			$class = $class ? AUI_Component_Helper::esc_classes( $class ) : '';
515
-			$output .= ' class="'.$class.'" ';
514
+			$class = $class ? AUI_Component_Helper::esc_classes($class) : '';
515
+			$output .= ' class="' . $class . '" ';
516 516
 
517 517
 			// close
518 518
 			$output .= '>';
519 519
 
520 520
 
521 521
 			// title, don't escape fully as can contain html
522
-			if(!empty($args['title'])){
522
+			if (!empty($args['title'])) {
523 523
 				$output .= wp_kses_post($args['title']);
524 524
 			}
525 525
 
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
 	 *
541 541
 	 * @return string
542 542
 	 */
543
-	public static function wrap($args = array()){
543
+	public static function wrap($args = array()) {
544 544
 		$defaults = array(
545 545
 			'type'       => 'div',
546 546
 			'class'      => 'form-group',
@@ -557,31 +557,31 @@  discard block
 block discarded – undo
557 557
 		/**
558 558
 		 * Parse incoming $args into an array and merge it with $defaults
559 559
 		 */
560
-		$args   = wp_parse_args( $args, $defaults );
560
+		$args   = wp_parse_args($args, $defaults);
561 561
 		$output = '';
562
-		if($args['type']){
562
+		if ($args['type']) {
563 563
 
564 564
 			// open
565
-			$output .= '<'.sanitize_html_class($args['type']);
565
+			$output .= '<' . sanitize_html_class($args['type']);
566 566
 
567 567
 			// element require
568
-			if(!empty($args['element_require'])){
568
+			if (!empty($args['element_require'])) {
569 569
 				$output .= AUI_Component_Helper::element_require($args['element_require']);
570 570
 				$args['class'] .= " aui-conditional-field";
571 571
 			}
572 572
 
573 573
 			// argument_id
574
-			if( !empty($args['argument_id']) ){
575
-				$output .= ' data-argument="'.esc_attr($args['argument_id']).'"';
574
+			if (!empty($args['argument_id'])) {
575
+				$output .= ' data-argument="' . esc_attr($args['argument_id']) . '"';
576 576
 			}
577 577
 
578 578
 			// class
579
-			$class = !empty($args['class']) ? AUI_Component_Helper::esc_classes( $args['class'] ) : '';
580
-			$output .= ' class="'.$class.'" ';
579
+			$class = !empty($args['class']) ? AUI_Component_Helper::esc_classes($args['class']) : '';
580
+			$output .= ' class="' . $class . '" ';
581 581
 
582 582
 			// Attributes
583
-			if ( ! empty( $args['wrap_attributes'] ) ) {
584
-				$output .= AUI_Component_Helper::extra_attributes( $args['wrap_attributes'] );
583
+			if (!empty($args['wrap_attributes'])) {
584
+				$output .= AUI_Component_Helper::extra_attributes($args['wrap_attributes']);
585 585
 			}
586 586
 
587 587
 			// close wrap
@@ -589,28 +589,28 @@  discard block
 block discarded – undo
589 589
 
590 590
 
591 591
 			// Input group left
592
-			if(!empty($args['input_group_left'])){
592
+			if (!empty($args['input_group_left'])) {
593 593
 				$position_class = !empty($args['input_group_left_inside']) ? 'position-absolute h-100' : '';
594
-				$input_group_left = strpos($args['input_group_left'], '<') !== false ? $args['input_group_left'] : '<span class="input-group-text">'.$args['input_group_left'].'</span>';
595
-				$output .= '<div class="input-group-prepend '.$position_class.'">'.$input_group_left.'</div>';
594
+				$input_group_left = strpos($args['input_group_left'], '<') !== false ? $args['input_group_left'] : '<span class="input-group-text">' . $args['input_group_left'] . '</span>';
595
+				$output .= '<div class="input-group-prepend ' . $position_class . '">' . $input_group_left . '</div>';
596 596
 			}
597 597
 
598 598
 			// content
599 599
 			$output .= $args['content'];
600 600
 
601 601
 			// Input group right
602
-			if(!empty($args['input_group_right'])){
602
+			if (!empty($args['input_group_right'])) {
603 603
 				$position_class = !empty($args['input_group_left_inside']) ? 'position-absolute h-100' : '';
604
-				$input_group_right = strpos($args['input_group_right'], '<') !== false ? $args['input_group_right'] : '<span class="input-group-text">'.$args['input_group_right'].'</span>';
605
-				$output .= '<div class="input-group-append '.$position_class.'">'.$input_group_right.'</div>';
604
+				$input_group_right = strpos($args['input_group_right'], '<') !== false ? $args['input_group_right'] : '<span class="input-group-text">' . $args['input_group_right'] . '</span>';
605
+				$output .= '<div class="input-group-append ' . $position_class . '">' . $input_group_right . '</div>';
606 606
 			}
607 607
 
608 608
 
609 609
 			// close wrap
610
-			$output .= '</'.sanitize_html_class($args['type']).'>';
610
+			$output .= '</' . sanitize_html_class($args['type']) . '>';
611 611
 
612 612
 
613
-		}else{
613
+		} else {
614 614
 			$output = $args['content'];
615 615
 		}
616 616
 
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
 	 *
625 625
 	 * @return string The rendered component.
626 626
 	 */
627
-	public static function select($args = array()){
627
+	public static function select($args = array()) {
628 628
 		$defaults = array(
629 629
 			'class'      => '',
630 630
 			'wrap_class' => '',
@@ -651,11 +651,11 @@  discard block
 block discarded – undo
651 651
 		/**
652 652
 		 * Parse incoming $args into an array and merge it with $defaults
653 653
 		 */
654
-		$args   = wp_parse_args( $args, $defaults );
654
+		$args   = wp_parse_args($args, $defaults);
655 655
 		$output = '';
656 656
 
657 657
 		// for now lets hide floating labels
658
-		if( $args['label_type'] == 'floating' ){$args['label_type'] = 'hidden';}
658
+		if ($args['label_type'] == 'floating') {$args['label_type'] = 'hidden'; }
659 659
 
660 660
 		// hidden label option needs to be empty
661 661
 		$args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type'];
@@ -664,85 +664,85 @@  discard block
 block discarded – undo
664 664
 		$label_after = $args['label_after'];
665 665
 
666 666
 		// floating labels need label after
667
-		if( $args['label_type'] == 'floating' ){
667
+		if ($args['label_type'] == 'floating') {
668 668
 			$label_after = true;
669 669
 			$args['placeholder'] = ' '; // set the placeholder not empty so the floating label works.
670 670
 		}
671 671
 
672 672
 		// Maybe setup select2
673 673
 		$is_select2 = false;
674
-		if(!empty($args['select2'])){
674
+		if (!empty($args['select2'])) {
675 675
 			$args['class'] .= ' aui-select2';
676 676
 			$is_select2 = true;
677
-		}elseif( strpos($args['class'], 'aui-select2') !== false){
677
+		}elseif (strpos($args['class'], 'aui-select2') !== false) {
678 678
 			$is_select2 = true;
679 679
 		}
680 680
 
681 681
 		// select2 tags
682
-		if( !empty($args['select2']) && $args['select2'] === 'tags'){ // triple equals needed here for some reason
682
+		if (!empty($args['select2']) && $args['select2'] === 'tags') { // triple equals needed here for some reason
683 683
 			$args['data-tags'] = 'true';
684 684
 			$args['data-token-separators'] = "[',']";
685 685
 			$args['multiple'] = true;
686 686
 		}
687 687
 
688 688
 		// select2 placeholder
689
-		if($is_select2 && isset($args['placeholder']) && '' != $args['placeholder'] && empty($args['data-placeholder'])){
689
+		if ($is_select2 && isset($args['placeholder']) && '' != $args['placeholder'] && empty($args['data-placeholder'])) {
690 690
 			$args['data-placeholder'] = esc_attr($args['placeholder']);
691 691
 			$args['data-allow-clear'] = isset($args['data-allow-clear']) ? (bool) $args['data-allow-clear'] : true;
692 692
 		}
693 693
 
694 694
 		// label
695
-		if(!empty($args['label']) && is_array($args['label'])){
696
-		}elseif(!empty($args['label']) && !$label_after){
695
+		if (!empty($args['label']) && is_array($args['label'])) {
696
+		}elseif (!empty($args['label']) && !$label_after) {
697 697
 			$label_args = array(
698 698
 				'title'=> $args['label'],
699 699
 				'for'=> $args['id'],
700
-				'class' => $args['label_class']." ",
700
+				'class' => $args['label_class'] . " ",
701 701
 				'label_type' => $args['label_type']
702 702
 			);
703 703
 			$output .= self::label($label_args);
704 704
 		}
705 705
 
706 706
 		// maybe horizontal label
707
-		if($args['label_type']=='horizontal'){
707
+		if ($args['label_type'] == 'horizontal') {
708 708
 			$output .= '<div class="col-sm-10">';
709 709
 		}
710 710
 
711 711
 		// Set hidden input to save empty value for multiselect.
712
-		if ( ! empty( $args['multiple'] ) && ! empty( $args['name'] ) ) {
713
-			$output .= '<input type="hidden" ' . AUI_Component_Helper::name( $args['name'] ) . ' value=""/>';
712
+		if (!empty($args['multiple']) && !empty($args['name'])) {
713
+			$output .= '<input type="hidden" ' . AUI_Component_Helper::name($args['name']) . ' value=""/>';
714 714
 		}
715 715
 
716 716
 		// open/type
717 717
 		$output .= '<select ';
718 718
 
719 719
 		// style
720
-		if($is_select2){
720
+		if ($is_select2) {
721 721
 			$output .= " style='width:100%;' ";
722 722
 		}
723 723
 
724 724
 		// element require
725
-		if(!empty($args['element_require'])){
725
+		if (!empty($args['element_require'])) {
726 726
 			$output .= AUI_Component_Helper::element_require($args['element_require']);
727 727
 			$args['class'] .= " aui-conditional-field";
728 728
 		}
729 729
 
730 730
 		// class
731 731
 		$class = !empty($args['class']) ? $args['class'] : '';
732
-		$output .= AUI_Component_Helper::class_attr('custom-select '.$class);
732
+		$output .= AUI_Component_Helper::class_attr('custom-select ' . $class);
733 733
 
734 734
 		// name
735
-		if(!empty($args['name'])){
736
-			$output .= AUI_Component_Helper::name($args['name'],$args['multiple']);
735
+		if (!empty($args['name'])) {
736
+			$output .= AUI_Component_Helper::name($args['name'], $args['multiple']);
737 737
 		}
738 738
 
739 739
 		// id
740
-		if(!empty($args['id'])){
740
+		if (!empty($args['id'])) {
741 741
 			$output .= AUI_Component_Helper::id($args['id']);
742 742
 		}
743 743
 
744 744
 		// title
745
-		if(!empty($args['title'])){
745
+		if (!empty($args['title'])) {
746 746
 			$output .= AUI_Component_Helper::title($args['title']);
747 747
 		}
748 748
 
@@ -753,17 +753,17 @@  discard block
 block discarded – undo
753 753
 		$output .= AUI_Component_Helper::aria_attributes($args);
754 754
 
755 755
 		// extra attributes
756
-		if(!empty($args['extra_attributes'])){
756
+		if (!empty($args['extra_attributes'])) {
757 757
 			$output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']);
758 758
 		}
759 759
 
760 760
 		// required
761
-		if(!empty($args['required'])){
761
+		if (!empty($args['required'])) {
762 762
 			$output .= ' required ';
763 763
 		}
764 764
 
765 765
 		// multiple
766
-		if(!empty($args['multiple'])){
766
+		if (!empty($args['multiple'])) {
767 767
 			$output .= ' multiple ';
768 768
 		}
769 769
 
@@ -771,21 +771,21 @@  discard block
 block discarded – undo
771 771
 		$output .= ' >';
772 772
 
773 773
 		// placeholder
774
-		if(isset($args['placeholder']) && '' != $args['placeholder'] && !$is_select2){
775
-			$output .= '<option value="" disabled selected hidden>'.esc_attr($args['placeholder']).'</option>';
776
-		}elseif($is_select2 && !empty($args['placeholder'])){
774
+		if (isset($args['placeholder']) && '' != $args['placeholder'] && !$is_select2) {
775
+			$output .= '<option value="" disabled selected hidden>' . esc_attr($args['placeholder']) . '</option>';
776
+		}elseif ($is_select2 && !empty($args['placeholder'])) {
777 777
 			$output .= "<option></option>"; // select2 needs an empty select to fill the placeholder
778 778
 		}
779 779
 
780 780
 		// Options
781
-		if(!empty($args['options'])){
781
+		if (!empty($args['options'])) {
782 782
 
783
-			if(!is_array($args['options'])){
783
+			if (!is_array($args['options'])) {
784 784
 				$output .= $args['options']; // not the preferred way but an option
785
-			}else{
786
-				foreach($args['options'] as $val => $name){
785
+			} else {
786
+				foreach ($args['options'] as $val => $name) {
787 787
 					$selected = '';
788
-					if(is_array($name)){
788
+					if (is_array($name)) {
789 789
 						if (isset($name['optgroup']) && ($name['optgroup'] == 'start' || $name['optgroup'] == 'end')) {
790 790
 							$option_label = isset($name['label']) ? $name['label'] : '';
791 791
 
@@ -793,23 +793,23 @@  discard block
 block discarded – undo
793 793
 						} else {
794 794
 							$option_label = isset($name['label']) ? $name['label'] : '';
795 795
 							$option_value = isset($name['value']) ? $name['value'] : '';
796
-							if(!empty($args['multiple']) && !empty($args['value']) && is_array($args['value']) ){
796
+							if (!empty($args['multiple']) && !empty($args['value']) && is_array($args['value'])) {
797 797
 								$selected = in_array($option_value, stripslashes_deep($args['value'])) ? "selected" : "";
798
-							} elseif(!empty($args['value'])) {
799
-								$selected = selected($option_value,stripslashes_deep($args['value']), false);
798
+							} elseif (!empty($args['value'])) {
799
+								$selected = selected($option_value, stripslashes_deep($args['value']), false);
800 800
 							}
801 801
 
802 802
 							$output .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>';
803 803
 						}
804
-					}else{
805
-						if(!empty($args['value'])){
806
-							if(is_array($args['value'])){
807
-								$selected = in_array($val,$args['value']) ? 'selected="selected"' : '';
808
-							} elseif(!empty($args['value'])) {
809
-								$selected = selected( $args['value'], $val, false);
804
+					} else {
805
+						if (!empty($args['value'])) {
806
+							if (is_array($args['value'])) {
807
+								$selected = in_array($val, $args['value']) ? 'selected="selected"' : '';
808
+							} elseif (!empty($args['value'])) {
809
+								$selected = selected($args['value'], $val, false);
810 810
 							}
811 811
 						}
812
-						$output .= '<option value="'.esc_attr($val).'" '.$selected.'>'.esc_attr($name).'</option>';
812
+						$output .= '<option value="' . esc_attr($val) . '" ' . $selected . '>' . esc_attr($name) . '</option>';
813 813
 					}
814 814
 				}
815 815
 			}
@@ -819,31 +819,31 @@  discard block
 block discarded – undo
819 819
 		// closing tag
820 820
 		$output .= '</select>';
821 821
 
822
-		if(!empty($args['label']) && $label_after){
822
+		if (!empty($args['label']) && $label_after) {
823 823
 			$label_args = array(
824 824
 				'title'=> $args['label'],
825 825
 				'for'=> $args['id'],
826
-				'class' => $args['label_class']." ",
826
+				'class' => $args['label_class'] . " ",
827 827
 				'label_type' => $args['label_type']
828 828
 			);
829 829
 			$output .= self::label($label_args);
830 830
 		}
831 831
 
832 832
 		// help text
833
-		if(!empty($args['help_text'])){
833
+		if (!empty($args['help_text'])) {
834 834
 			$output .= AUI_Component_Helper::help_text($args['help_text']);
835 835
 		}
836 836
 
837 837
 		// maybe horizontal label
838
-		if($args['label_type']=='horizontal'){
838
+		if ($args['label_type'] == 'horizontal') {
839 839
 			$output .= '</div>';
840 840
 		}
841 841
 
842 842
 
843 843
 		// wrap
844
-		if(!$args['no_wrap']){
845
-			$wrap_class = $args['label_type']=='horizontal' ? 'form-group row' : 'form-group';
846
-			$wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class;
844
+		if (!$args['no_wrap']) {
845
+			$wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
846
+			$wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
847 847
 			$output = self::wrap(array(
848 848
 				'content' => $output,
849 849
 				'class'   => $wrap_class,
@@ -864,7 +864,7 @@  discard block
 block discarded – undo
864 864
 	 *
865 865
 	 * @return string The rendered component.
866 866
 	 */
867
-	public static function radio($args = array()){
867
+	public static function radio($args = array()) {
868 868
 		$defaults = array(
869 869
 			'class'      => '',
870 870
 			'wrap_class' => '',
@@ -889,14 +889,14 @@  discard block
 block discarded – undo
889 889
 		/**
890 890
 		 * Parse incoming $args into an array and merge it with $defaults
891 891
 		 */
892
-		$args   = wp_parse_args( $args, $defaults );
892
+		$args = wp_parse_args($args, $defaults);
893 893
 
894 894
 		// for now lets use horizontal for floating
895
-		if( $args['label_type'] == 'floating' ){$args['label_type'] = 'horizontal';}
895
+		if ($args['label_type'] == 'floating') {$args['label_type'] = 'horizontal'; }
896 896
 
897 897
 		$label_args = array(
898 898
 			'title'=> $args['label'],
899
-			'class' => $args['label_class']." pt-0 ",
899
+			'class' => $args['label_class'] . " pt-0 ",
900 900
 			'label_type' => $args['label_type']
901 901
 		);
902 902
 
@@ -905,39 +905,39 @@  discard block
 block discarded – undo
905 905
 
906 906
 
907 907
 		// label before
908
-		if(!empty($args['label'])){
909
-			$output .= self::label( $label_args, 'radio' );
908
+		if (!empty($args['label'])) {
909
+			$output .= self::label($label_args, 'radio');
910 910
 		}
911 911
 
912 912
 		// maybe horizontal label
913
-		if($args['label_type']=='horizontal'){
913
+		if ($args['label_type'] == 'horizontal') {
914 914
 			$output .= '<div class="col-sm-10">';
915 915
 		}
916 916
 
917
-		if(!empty($args['options'])){
917
+		if (!empty($args['options'])) {
918 918
 			$count = 0;
919
-			foreach($args['options'] as $value => $label){
919
+			foreach ($args['options'] as $value => $label) {
920 920
 				$option_args = $args;
921 921
 				$option_args['value'] = $value;
922 922
 				$option_args['label'] = $label;
923 923
 				$option_args['checked'] = $value == $args['value'] ? true : false;
924
-				$output .= self::radio_option($option_args,$count);
924
+				$output .= self::radio_option($option_args, $count);
925 925
 				$count++;
926 926
 			}
927 927
 		}
928 928
 
929 929
 		// help text
930
-		$help_text = ! empty( $args['help_text'] ) ? AUI_Component_Helper::help_text( $args['help_text'] ) : '';
930
+		$help_text = !empty($args['help_text']) ? AUI_Component_Helper::help_text($args['help_text']) : '';
931 931
 		$output .= $help_text;
932 932
 
933 933
 		// maybe horizontal label
934
-		if($args['label_type']=='horizontal'){
934
+		if ($args['label_type'] == 'horizontal') {
935 935
 			$output .= '</div>';
936 936
 		}
937 937
 
938 938
 		// wrap
939
-		$wrap_class = $args['label_type']=='horizontal' ? 'form-group row' : 'form-group';
940
-		$wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class;
939
+		$wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group';
940
+		$wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class;
941 941
 		$output = self::wrap(array(
942 942
 			'content' => $output,
943 943
 			'class'   => $wrap_class,
@@ -957,7 +957,7 @@  discard block
 block discarded – undo
957 957
 	 *
958 958
 	 * @return string The rendered component.
959 959
 	 */
960
-	public static function radio_option($args = array(),$count = ''){
960
+	public static function radio_option($args = array(), $count = '') {
961 961
 		$defaults = array(
962 962
 			'class'      => '',
963 963
 			'id'         => '',
@@ -975,7 +975,7 @@  discard block
 block discarded – undo
975 975
 		/**
976 976
 		 * Parse incoming $args into an array and merge it with $defaults
977 977
 		 */
978
-		$args   = wp_parse_args( $args, $defaults );
978
+		$args   = wp_parse_args($args, $defaults);
979 979
 
980 980
 		$output = '';
981 981
 
@@ -986,27 +986,27 @@  discard block
 block discarded – undo
986 986
 		$output .= ' class="form-check-input" ';
987 987
 
988 988
 		// name
989
-		if(!empty($args['name'])){
989
+		if (!empty($args['name'])) {
990 990
 			$output .= AUI_Component_Helper::name($args['name']);
991 991
 		}
992 992
 
993 993
 		// id
994
-		if(!empty($args['id'])){
995
-			$output .= AUI_Component_Helper::id($args['id'].$count);
994
+		if (!empty($args['id'])) {
995
+			$output .= AUI_Component_Helper::id($args['id'] . $count);
996 996
 		}
997 997
 
998 998
 		// title
999
-		if(!empty($args['title'])){
999
+		if (!empty($args['title'])) {
1000 1000
 			$output .= AUI_Component_Helper::title($args['title']);
1001 1001
 		}
1002 1002
 
1003 1003
 		// value
1004
-		if(isset($args['value'])){
1004
+		if (isset($args['value'])) {
1005 1005
 			$output .= AUI_Component_Helper::value($args['value']);
1006 1006
 		}
1007 1007
 
1008 1008
 		// checked, for radio and checkboxes
1009
-		if( $args['checked'] ){
1009
+		if ($args['checked']) {
1010 1010
 			$output .= ' checked ';
1011 1011
 		}
1012 1012
 
@@ -1017,12 +1017,12 @@  discard block
 block discarded – undo
1017 1017
 		$output .= AUI_Component_Helper::aria_attributes($args);
1018 1018
 
1019 1019
 		// extra attributes
1020
-		if(!empty($args['extra_attributes'])){
1020
+		if (!empty($args['extra_attributes'])) {
1021 1021
 			$output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']);
1022 1022
 		}
1023 1023
 
1024 1024
 		// required
1025
-		if(!empty($args['required'])){
1025
+		if (!empty($args['required'])) {
1026 1026
 			$output .= ' required ';
1027 1027
 		}
1028 1028
 
@@ -1030,29 +1030,29 @@  discard block
 block discarded – undo
1030 1030
 		$output .= ' >';
1031 1031
 
1032 1032
 		// label
1033
-		if(!empty($args['label']) && is_array($args['label'])){
1034
-		}elseif(!empty($args['label'])){
1035
-			$output .= self::label(array('title'=>$args['label'],'for'=>$args['id'].$count,'class'=>'form-check-label'),'radio');
1033
+		if (!empty($args['label']) && is_array($args['label'])) {
1034
+		}elseif (!empty($args['label'])) {
1035
+			$output .= self::label(array('title'=>$args['label'], 'for'=>$args['id'] . $count, 'class'=>'form-check-label'), 'radio');
1036 1036
 		}
1037 1037
 
1038 1038
 		// wrap
1039
-		if ( ! $args['no_wrap'] ) {
1039
+		if (!$args['no_wrap']) {
1040 1040
 			$wrap_class = $args['inline'] ? 'form-check form-check-inline' : 'form-check';
1041 1041
 
1042 1042
 			// Unique wrap class
1043 1043
 			$uniq_class = 'fwrap';
1044
-			if ( ! empty( $args['name'] ) ) {
1044
+			if (!empty($args['name'])) {
1045 1045
 				$uniq_class .= '-' . $args['name'];
1046
-			} else if ( ! empty( $args['id'] ) ) {
1046
+			} else if (!empty($args['id'])) {
1047 1047
 				$uniq_class .= '-' . $args['id'];
1048 1048
 			}
1049 1049
 
1050
-			if ( isset( $args['value'] ) || $args['value'] !== "" ) {
1050
+			if (isset($args['value']) || $args['value'] !== "") {
1051 1051
 				$uniq_class .= '-' . $args['value'];
1052 1052
 			} else {
1053 1053
 				$uniq_class .= '-' . $count;
1054 1054
 			}
1055
-			$wrap_class .= ' ' . sanitize_html_class( $uniq_class );
1055
+			$wrap_class .= ' ' . sanitize_html_class($uniq_class);
1056 1056
 
1057 1057
 			$output = self::wrap(array(
1058 1058
 				'content' => $output,
Please login to merge, or discard this patch.
vendor/composer/autoload_static.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,35 +6,35 @@  discard block
 block discarded – undo
6 6
 
7 7
 class ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5
8 8
 {
9
-    public static $files = array (
9
+    public static $files = array(
10 10
         '24583d3588ebda5228dd453cfaa070da' => __DIR__ . '/..' . '/ayecode/wp-font-awesome-settings/wp-font-awesome-settings.php',
11 11
         '42671a413efb740d7040437ff2a982cd' => __DIR__ . '/..' . '/ayecode/wp-super-duper/sd-functions.php',
12 12
         'e8d544c98e79f913e13eae1306ab635e' => __DIR__ . '/..' . '/ayecode/wp-ayecode-ui/ayecode-ui-loader.php',
13 13
     );
14 14
 
15
-    public static $prefixLengthsPsr4 = array (
15
+    public static $prefixLengthsPsr4 = array(
16 16
         'M' => 
17
-        array (
17
+        array(
18 18
             'MaxMind\\Db\\' => 11,
19 19
         ),
20 20
         'C' => 
21
-        array (
21
+        array(
22 22
             'Composer\\Installers\\' => 20,
23 23
         ),
24 24
     );
25 25
 
26
-    public static $prefixDirsPsr4 = array (
26
+    public static $prefixDirsPsr4 = array(
27 27
         'MaxMind\\Db\\' => 
28
-        array (
28
+        array(
29 29
             0 => __DIR__ . '/..' . '/maxmind-db/reader/src/MaxMind/Db',
30 30
         ),
31 31
         'Composer\\Installers\\' => 
32
-        array (
32
+        array(
33 33
             0 => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers',
34 34
         ),
35 35
     );
36 36
 
37
-    public static $classMap = array (
37
+    public static $classMap = array(
38 38
         'AyeCode_Connect_Helper' => __DIR__ . '/..' . '/ayecode/ayecode-connect-helper/ayecode-connect-helper.php',
39 39
         'AyeCode_Deactivation_Survey' => __DIR__ . '/..' . '/ayecode/wp-deactivation-survey/wp-deactivation-survey.php',
40 40
         'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
     public static function getInitializer(ClassLoader $loader)
45 45
     {
46
-        return \Closure::bind(function () use ($loader) {
46
+        return \Closure::bind(function() use ($loader) {
47 47
             $loader->prefixLengthsPsr4 = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$prefixLengthsPsr4;
48 48
             $loader->prefixDirsPsr4 = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$prefixDirsPsr4;
49 49
             $loader->classMap = ComposerStaticInit8b6d4385c391849a80038f0b0e87c8b5::$classMap;
Please login to merge, or discard this patch.
vendor/composer/InstalledVersions.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -11,102 +11,102 @@
 block discarded – undo
11 11
 
12 12
 class InstalledVersions
13 13
 {
14
-private static $installed = array (
14
+private static $installed = array(
15 15
   'root' => 
16
-  array (
16
+  array(
17 17
     'pretty_version' => 'dev-master',
18 18
     'version' => 'dev-master',
19 19
     'aliases' => 
20
-    array (
20
+    array(
21 21
     ),
22 22
     'reference' => '2f4bb83ae1b73b13f9e7da7557c82e885e4379d0',
23 23
     'name' => 'ayecode/invoicing',
24 24
   ),
25 25
   'versions' => 
26
-  array (
26
+  array(
27 27
     'ayecode/ayecode-connect-helper' => 
28
-    array (
28
+    array(
29 29
       'pretty_version' => '1.0.3',
30 30
       'version' => '1.0.3.0',
31 31
       'aliases' => 
32
-      array (
32
+      array(
33 33
       ),
34 34
       'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4',
35 35
     ),
36 36
     'ayecode/invoicing' => 
37
-    array (
37
+    array(
38 38
       'pretty_version' => 'dev-master',
39 39
       'version' => 'dev-master',
40 40
       'aliases' => 
41
-      array (
41
+      array(
42 42
       ),
43 43
       'reference' => '2f4bb83ae1b73b13f9e7da7557c82e885e4379d0',
44 44
     ),
45 45
     'ayecode/wp-ayecode-ui' => 
46
-    array (
46
+    array(
47 47
       'pretty_version' => '0.1.61',
48 48
       'version' => '0.1.61.0',
49 49
       'aliases' => 
50
-      array (
50
+      array(
51 51
       ),
52 52
       'reference' => 'e97d1e520d6722df2cb323c04a6e818b1e901ab5',
53 53
     ),
54 54
     'ayecode/wp-deactivation-survey' => 
55
-    array (
55
+    array(
56 56
       'pretty_version' => '1.0.3',
57 57
       'version' => '1.0.3.0',
58 58
       'aliases' => 
59
-      array (
59
+      array(
60 60
       ),
61 61
       'reference' => 'c4b0ba914835f17dca0cf69fe621c2db491d4667',
62 62
     ),
63 63
     'ayecode/wp-font-awesome-settings' => 
64
-    array (
64
+    array(
65 65
       'pretty_version' => '1.0.13',
66 66
       'version' => '1.0.13.0',
67 67
       'aliases' => 
68
-      array (
68
+      array(
69 69
       ),
70 70
       'reference' => 'a7a11ee4290674ec214d1fe694139af275350402',
71 71
     ),
72 72
     'ayecode/wp-super-duper' => 
73
-    array (
73
+    array(
74 74
       'pretty_version' => '1.0.27',
75 75
       'version' => '1.0.27.0',
76 76
       'aliases' => 
77
-      array (
77
+      array(
78 78
       ),
79 79
       'reference' => 'ce187bc9afc5cd7f5d790d84eb6fd9b98e56992d',
80 80
     ),
81 81
     'composer/installers' => 
82
-    array (
82
+    array(
83 83
       'pretty_version' => 'v1.12.0',
84 84
       'version' => '1.12.0.0',
85 85
       'aliases' => 
86
-      array (
86
+      array(
87 87
       ),
88 88
       'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',
89 89
     ),
90 90
     'maxmind-db/reader' => 
91
-    array (
91
+    array(
92 92
       'pretty_version' => 'v1.6.0',
93 93
       'version' => '1.6.0.0',
94 94
       'aliases' => 
95
-      array (
95
+      array(
96 96
       ),
97 97
       'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4',
98 98
     ),
99 99
     'roundcube/plugin-installer' => 
100
-    array (
100
+    array(
101 101
       'replaced' => 
102
-      array (
102
+      array(
103 103
         0 => '*',
104 104
       ),
105 105
     ),
106 106
     'shama/baton' => 
107
-    array (
107
+    array(
108 108
       'replaced' => 
109
-      array (
109
+      array(
110 110
         0 => '*',
111 111
       ),
112 112
     ),
Please login to merge, or discard this patch.
vendor/composer/installed.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -1,99 +1,99 @@
 block discarded – undo
1
-<?php return array (
1
+<?php return array(
2 2
   'root' => 
3
-  array (
3
+  array(
4 4
     'pretty_version' => 'dev-master',
5 5
     'version' => 'dev-master',
6 6
     'aliases' => 
7
-    array (
7
+    array(
8 8
     ),
9 9
     'reference' => '2f4bb83ae1b73b13f9e7da7557c82e885e4379d0',
10 10
     'name' => 'ayecode/invoicing',
11 11
   ),
12 12
   'versions' => 
13
-  array (
13
+  array(
14 14
     'ayecode/ayecode-connect-helper' => 
15
-    array (
15
+    array(
16 16
       'pretty_version' => '1.0.3',
17 17
       'version' => '1.0.3.0',
18 18
       'aliases' => 
19
-      array (
19
+      array(
20 20
       ),
21 21
       'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4',
22 22
     ),
23 23
     'ayecode/invoicing' => 
24
-    array (
24
+    array(
25 25
       'pretty_version' => 'dev-master',
26 26
       'version' => 'dev-master',
27 27
       'aliases' => 
28
-      array (
28
+      array(
29 29
       ),
30 30
       'reference' => '2f4bb83ae1b73b13f9e7da7557c82e885e4379d0',
31 31
     ),
32 32
     'ayecode/wp-ayecode-ui' => 
33
-    array (
33
+    array(
34 34
       'pretty_version' => '0.1.61',
35 35
       'version' => '0.1.61.0',
36 36
       'aliases' => 
37
-      array (
37
+      array(
38 38
       ),
39 39
       'reference' => 'e97d1e520d6722df2cb323c04a6e818b1e901ab5',
40 40
     ),
41 41
     'ayecode/wp-deactivation-survey' => 
42
-    array (
42
+    array(
43 43
       'pretty_version' => '1.0.3',
44 44
       'version' => '1.0.3.0',
45 45
       'aliases' => 
46
-      array (
46
+      array(
47 47
       ),
48 48
       'reference' => 'c4b0ba914835f17dca0cf69fe621c2db491d4667',
49 49
     ),
50 50
     'ayecode/wp-font-awesome-settings' => 
51
-    array (
51
+    array(
52 52
       'pretty_version' => '1.0.13',
53 53
       'version' => '1.0.13.0',
54 54
       'aliases' => 
55
-      array (
55
+      array(
56 56
       ),
57 57
       'reference' => 'a7a11ee4290674ec214d1fe694139af275350402',
58 58
     ),
59 59
     'ayecode/wp-super-duper' => 
60
-    array (
60
+    array(
61 61
       'pretty_version' => '1.0.27',
62 62
       'version' => '1.0.27.0',
63 63
       'aliases' => 
64
-      array (
64
+      array(
65 65
       ),
66 66
       'reference' => 'ce187bc9afc5cd7f5d790d84eb6fd9b98e56992d',
67 67
     ),
68 68
     'composer/installers' => 
69
-    array (
69
+    array(
70 70
       'pretty_version' => 'v1.12.0',
71 71
       'version' => '1.12.0.0',
72 72
       'aliases' => 
73
-      array (
73
+      array(
74 74
       ),
75 75
       'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19',
76 76
     ),
77 77
     'maxmind-db/reader' => 
78
-    array (
78
+    array(
79 79
       'pretty_version' => 'v1.6.0',
80 80
       'version' => '1.6.0.0',
81 81
       'aliases' => 
82
-      array (
82
+      array(
83 83
       ),
84 84
       'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4',
85 85
     ),
86 86
     'roundcube/plugin-installer' => 
87
-    array (
87
+    array(
88 88
       'replaced' => 
89
-      array (
89
+      array(
90 90
         0 => '*',
91 91
       ),
92 92
     ),
93 93
     'shama/baton' => 
94
-    array (
94
+    array(
95 95
       'replaced' => 
96
-      array (
96
+      array(
97 97
         0 => '*',
98 98
       ),
99 99
     ),
Please login to merge, or discard this patch.