Completed
Push — master ( bcb77d...aa4fea )
by
unknown
03:19
created
inc/customizer-header-fixed.php 2 patches
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	return;
4
+}
5
+// Exit if accessed directly
3 6
 
4 7
 /**
5 8
  * Customize Swatch Control Class
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Customizer Header Fixed Class
6 6
  *
7 7
  * @since 1.0.0
8 8
  */
9
-if( !class_exists( 'WP_Customize_Control' ) ){
9
+if ( ! class_exists('WP_Customize_Control')) {
10 10
 	return;
11 11
 }
12 12
 class LSX_Customize_Header_Fixed_Control extends WP_Customize_Control {
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 * @param string $id
39 39
 	 * @param array $args
40 40
 	 */
41
-	public function __construct( $manager, $id, $args = array() ) {
42
-		parent::__construct( $manager, $id, $args );
43
-		if( !empty( $args['choices'] ) ){
41
+	public function __construct($manager, $id, $args = array()) {
42
+		parent::__construct($manager, $id, $args);
43
+		if ( ! empty($args['choices'])) {
44 44
 			$this->layouts = $args['choices'];
45 45
 		}
46 46
 	}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function enqueue() {
54 54
 		// 
55
-		wp_enqueue_script( 'lsx-header-fixed-control', get_template_directory_uri() .'/js/customizer-header-fixed.js', array('jquery'), null, true );
55
+		wp_enqueue_script('lsx-header-fixed-control', get_template_directory_uri() . '/js/customizer-header-fixed.js', array('jquery'), null, true);
56 56
 	}
57 57
 
58 58
 	/**
@@ -62,21 +62,21 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public function render_content() {
64 64
 		
65
-		$post_id    = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) );
65
+		$post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id));
66 66
 		$class = 'customize-control customize-control-' . $this->type;
67 67
 		$value = $this->value();
68 68
 
69 69
 		?>
70 70
 		<label>
71
-			<?php if ( ! empty( $this->label ) ) { ?>
72
-				<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
71
+			<?php if ( ! empty($this->label)) { ?>
72
+				<span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
73 73
 			<?php }
74
-			if ( ! empty( $this->description ) ) { ?>
75
-				<span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>
74
+			if ( ! empty($this->description)) { ?>
75
+				<span class="description customize-control-description"><?php echo esc_html($this->description); ?></span>
76 76
 			<?php } ?>
77 77
 			<div class="header-fixed">
78 78
 				<label>
79
-					<input <?php $this->link(); ?> type="checkbox" id="<?php echo esc_attr( $post_id ); ?>" class="header-fixed <?php echo esc_attr( $class ); ?>" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>> Uncheck for standard header
79
+					<input <?php $this->link(); ?> type="checkbox" id="<?php echo esc_attr($post_id); ?>" class="header-fixed <?php echo esc_attr($class); ?>" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>> Uncheck for standard header
80 80
 				</label>
81 81
 			</div>
82 82
 		</label>
Please login to merge, or discard this patch.
inc/customizer-colour.php 2 patches
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	return;
4
+}
5
+// Exit if accessed directly
3 6
 
4 7
 /**
5 8
  * Customize Swatch Control Class
Please login to merge, or discard this patch.
Spacing   +261 added lines, -261 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Transform SCSS to CSS
6 6
  */
7
-function lsx_customizer_colour__scss_to_css( $scss ) {
7
+function lsx_customizer_colour__scss_to_css($scss) {
8 8
 	$css = '';
9
-	$scssphp_file = get_template_directory() .'/vendor/leafo/scssphp/scss.inc.php';
9
+	$scssphp_file = get_template_directory() . '/vendor/leafo/scssphp/scss.inc.php';
10 10
 
11
-	if ( ! empty( $scss ) && file_exists( $scssphp_file ) ) {
11
+	if ( ! empty($scss) && file_exists($scssphp_file)) {
12 12
 		require_once $scssphp_file;
13 13
 
14 14
 		$compiler = new \Leafo\ScssPhp\Compiler();
15
-		$compiler->setFormatter( 'Leafo\ScssPhp\Formatter\Compact' );
15
+		$compiler->setFormatter('Leafo\ScssPhp\Formatter\Compact');
16 16
 
17 17
 		try {
18
-			$css = $compiler->compile( $scss );
19
-		} catch ( Exception $e ) {
18
+			$css = $compiler->compile($scss);
19
+		} catch (Exception $e) {
20 20
 			$error = $e->getMessage();
21 21
 			return "/*\n\n\$error:\n\n{$error}\n\n\$scss:\n\n{$scss} */";
22 22
 		}
@@ -29,9 +29,9 @@  discard block
 block discarded – undo
29 29
  * 
30 30
  */
31 31
 function lsx_customizer_colour__add_footer_styles() {
32
-	wp_enqueue_style( 'lsx_customizer_colour', get_stylesheet_uri() );
32
+	wp_enqueue_style('lsx_customizer_colour', get_stylesheet_uri());
33 33
 }
34
-add_action( 'wp_footer', 'lsx_customizer_colour__add_footer_styles', 11 );
34
+add_action('wp_footer', 'lsx_customizer_colour__add_footer_styles', 11);
35 35
 
36 36
 /**
37 37
  * Outputs an Underscore template for generating CSS for the color scheme.
@@ -41,28 +41,28 @@  discard block
 block discarded – undo
41 41
 	
42 42
 	$colors = array();
43 43
 
44
-	foreach ( $customizer_colour_names as $key => $value ) {
45
-		$colors[$key] = 'unquote("{{ data.'.$key.' }}")';
44
+	foreach ($customizer_colour_names as $key => $value) {
45
+		$colors[$key] = 'unquote("{{ data.' . $key . ' }}")';
46 46
 	}
47 47
 	?>
48 48
 	<script type="text/html" id="tmpl-lsx-color-scheme">
49
-		<?php echo esc_html( lsx_customizer_colour__top_menu_get_css( $colors ) ) ?>
50
-		<?php echo esc_html( lsx_customizer_colour__header_get_css( $colors ) ) ?>
51
-		<?php echo esc_html( lsx_customizer_colour__main_menu_get_css( $colors ) ) ?>
49
+		<?php echo esc_html(lsx_customizer_colour__top_menu_get_css($colors)) ?>
50
+		<?php echo esc_html(lsx_customizer_colour__header_get_css($colors)) ?>
51
+		<?php echo esc_html(lsx_customizer_colour__main_menu_get_css($colors)) ?>
52 52
 
53
-		<?php echo esc_html( lsx_customizer_colour__banner_get_css( $colors ) ) ?>
54
-		<?php echo esc_html( lsx_customizer_colour__body_get_css( $colors ) ) ?>
53
+		<?php echo esc_html(lsx_customizer_colour__banner_get_css($colors)) ?>
54
+		<?php echo esc_html(lsx_customizer_colour__body_get_css($colors)) ?>
55 55
 
56
-		<?php echo esc_html( lsx_customizer_colour__footer_cta_get_css( $colors ) ) ?>
57
-		<?php echo esc_html( lsx_customizer_colour__footer_widgets_get_css( $colors ) ) ?>
58
-		<?php echo esc_html( lsx_customizer_colour__footer_get_css( $colors ) ) ?>
56
+		<?php echo esc_html(lsx_customizer_colour__footer_cta_get_css($colors)) ?>
57
+		<?php echo esc_html(lsx_customizer_colour__footer_widgets_get_css($colors)) ?>
58
+		<?php echo esc_html(lsx_customizer_colour__footer_get_css($colors)) ?>
59 59
 
60
-		<?php echo esc_html( lsx_customizer_colour__button_get_css( $colors ) ) ?>
61
-		<?php echo esc_html( lsx_customizer_colour__button_cta_get_css( $colors ) ) ?>
60
+		<?php echo esc_html(lsx_customizer_colour__button_get_css($colors)) ?>
61
+		<?php echo esc_html(lsx_customizer_colour__button_cta_get_css($colors)) ?>
62 62
 	</script>
63 63
 	<?php
64 64
 }
65
-add_action( 'customize_controls_print_footer_scripts', 'lsx_customizer_colour__color_scheme_css_template' );
65
+add_action('customize_controls_print_footer_scripts', 'lsx_customizer_colour__color_scheme_css_template');
66 66
 
67 67
 /**
68 68
  * Retrieves the current color scheme.
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
 function lsx_customizer_colour__get_color_scheme() {
71 71
 	global $customizer_colour_choices;
72 72
 
73
-	$color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
73
+	$color_scheme_option = get_theme_mod('color_scheme', 'default');
74 74
 	$color_schemes = $customizer_colour_choices;
75 75
 
76
-	if ( array_key_exists( $color_scheme_option, $color_schemes ) ) {
77
-		return $color_schemes[ $color_scheme_option ]['colors'];
76
+	if (array_key_exists($color_scheme_option, $color_schemes)) {
77
+		return $color_schemes[$color_scheme_option]['colors'];
78 78
 	}
79 79
 
80 80
 	return $color_schemes['default']['colors'];
@@ -83,22 +83,22 @@  discard block
 block discarded – undo
83 83
 /**
84 84
  * Converts a HEX value to RGB.
85 85
  */
86
-function lsx_customizer_colour__hex2rgb( $color ) {
87
-	$color = trim( $color, '#' );
88
-
89
-	if ( strlen( $color ) === 3 ) {
90
-		$r = hexdec( substr( $color, 0, 1 ).substr( $color, 0, 1 ) );
91
-		$g = hexdec( substr( $color, 1, 1 ).substr( $color, 1, 1 ) );
92
-		$b = hexdec( substr( $color, 2, 1 ).substr( $color, 2, 1 ) );
93
-	} else if ( strlen( $color ) === 6 ) {
94
-		$r = hexdec( substr( $color, 0, 2 ) );
95
-		$g = hexdec( substr( $color, 2, 2 ) );
96
-		$b = hexdec( substr( $color, 4, 2 ) );
86
+function lsx_customizer_colour__hex2rgb($color) {
87
+	$color = trim($color, '#');
88
+
89
+	if (strlen($color) === 3) {
90
+		$r = hexdec(substr($color, 0, 1) . substr($color, 0, 1));
91
+		$g = hexdec(substr($color, 1, 1) . substr($color, 1, 1));
92
+		$b = hexdec(substr($color, 2, 1) . substr($color, 2, 1));
93
+	} else if (strlen($color) === 6) {
94
+		$r = hexdec(substr($color, 0, 2));
95
+		$g = hexdec(substr($color, 2, 2));
96
+		$b = hexdec(substr($color, 4, 2));
97 97
 	} else {
98 98
 		return array();
99 99
 	}
100 100
 
101
-	return array( 'red' => $r, 'green' => $g, 'blue' => $b );
101
+	return array('red' => $r, 'green' => $g, 'blue' => $b);
102 102
 }
103 103
 
104 104
 /* ################################################################################# */
@@ -109,33 +109,33 @@  discard block
 block discarded – undo
109 109
  */
110 110
 function lsx_customizer_colour__button_set_theme_mod() {
111 111
 	$theme_mods = lsx_customizer_colour__button_get_theme_mods();
112
-	$styles     = lsx_customizer_colour__button_get_css( $theme_mods );
112
+	$styles     = lsx_customizer_colour__button_get_css($theme_mods);
113 113
 	
114
-	set_theme_mod( 'lsx_customizer_colour__button_theme_mod', $styles );
114
+	set_theme_mod('lsx_customizer_colour__button_theme_mod', $styles);
115 115
 }
116
-add_action( 'after_switch_theme',   'lsx_customizer_colour__button_set_theme_mod' );
117
-add_action( 'customize_save_after', 'lsx_customizer_colour__button_set_theme_mod' );
116
+add_action('after_switch_theme', 'lsx_customizer_colour__button_set_theme_mod');
117
+add_action('customize_save_after', 'lsx_customizer_colour__button_set_theme_mod');
118 118
 
119 119
 /**
120 120
  * Enqueues front-end CSS for the button.
121 121
  */
122 122
 function lsx_customizer_colour__button_css() {
123
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__button_theme_mod' );
123
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__button_theme_mod');
124 124
 	
125
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
125
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
126 126
 		$theme_mods = lsx_customizer_colour__button_get_theme_mods();
127
-		$styles     = lsx_customizer_colour__button_get_css( $theme_mods );
127
+		$styles     = lsx_customizer_colour__button_get_css($theme_mods);
128 128
 		
129
-		if ( false === $styles_from_theme_mod ) {
130
-			set_theme_mod( 'lsx_customizer_colour__button_theme_mod', $styles );
129
+		if (false === $styles_from_theme_mod) {
130
+			set_theme_mod('lsx_customizer_colour__button_theme_mod', $styles);
131 131
 		}
132 132
 	} else {
133 133
 		$styles = $styles_from_theme_mod;
134 134
 	}
135 135
 
136
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
136
+	wp_add_inline_style('lsx_customizer_colour', $styles);
137 137
 }
138
-add_action( 'wp_footer', 'lsx_customizer_colour__button_css', 12 );
138
+add_action('wp_footer', 'lsx_customizer_colour__button_css', 12);
139 139
 
140 140
 /**
141 141
  * Get button CSS theme mods.
@@ -147,32 +147,32 @@  discard block
 block discarded – undo
147 147
 	$colors       = array();
148 148
 	$counter      = 0;
149 149
 
150
-	foreach ( $customizer_colour_names as $key => $value ) {
150
+	foreach ($customizer_colour_names as $key => $value) {
151 151
 		$colors[$key] = $color_scheme[$counter];
152 152
 		$counter++;
153 153
 	}
154 154
 
155 155
 	return array(
156
-		'button_background_color' =>       get_theme_mod( 'button_background_color',       $colors['button_background_color'] ),
157
-		'button_background_hover_color' => get_theme_mod( 'button_background_hover_color', $colors['button_background_hover_color'] ),
158
-		'button_text_color' =>             get_theme_mod( 'button_text_color',             $colors['button_text_color'] ),
159
-		'button_text_color_hover' =>       get_theme_mod( 'button_text_color_hover',       $colors['button_text_color_hover'] )
156
+		'button_background_color' =>       get_theme_mod('button_background_color', $colors['button_background_color']),
157
+		'button_background_hover_color' => get_theme_mod('button_background_hover_color', $colors['button_background_hover_color']),
158
+		'button_text_color' =>             get_theme_mod('button_text_color', $colors['button_text_color']),
159
+		'button_text_color_hover' =>       get_theme_mod('button_text_color_hover', $colors['button_text_color_hover'])
160 160
 	);
161 161
 }
162 162
 
163 163
 /**
164 164
  * Returns CSS for the button.
165 165
  */
166
-function lsx_customizer_colour__button_get_css( $colors ) {
166
+function lsx_customizer_colour__button_get_css($colors) {
167 167
 	global $customizer_colour_names;
168 168
 	
169 169
 	$colors_template = array();
170 170
 
171
-	foreach ( $customizer_colour_names as $key => $value ) {
171
+	foreach ($customizer_colour_names as $key => $value) {
172 172
 		$colors_template[$key] = '';
173 173
 	}
174 174
 
175
-	$colors = wp_parse_args( $colors, $colors_template );
175
+	$colors = wp_parse_args($colors, $colors_template);
176 176
 
177 177
 	$css = <<<CSS
178 178
 		/*
@@ -350,8 +350,8 @@  discard block
 block discarded – undo
350 350
 		}
351 351
 CSS;
352 352
 
353
-	$css = apply_filters( 'lsx_customizer_colour_selectors_button', $css, $colors );
354
-	$css = lsx_customizer_colour__scss_to_css( $css );
353
+	$css = apply_filters('lsx_customizer_colour_selectors_button', $css, $colors);
354
+	$css = lsx_customizer_colour__scss_to_css($css);
355 355
 	return $css;
356 356
 }
357 357
 
@@ -364,33 +364,33 @@  discard block
 block discarded – undo
364 364
  */
365 365
 function lsx_customizer_colour__button_cta_set_theme_mod() {
366 366
 	$theme_mods = lsx_customizer_colour__button_cta_get_theme_mods();
367
-	$styles     = lsx_customizer_colour__button_cta_get_css( $theme_mods );
367
+	$styles     = lsx_customizer_colour__button_cta_get_css($theme_mods);
368 368
 	
369
-	set_theme_mod( 'lsx_customizer_colour__button_cta_theme_mod', $styles );
369
+	set_theme_mod('lsx_customizer_colour__button_cta_theme_mod', $styles);
370 370
 }
371
-add_action( 'after_switch_theme',   'lsx_customizer_colour__button_cta_set_theme_mod' );
372
-add_action( 'customize_save_after', 'lsx_customizer_colour__button_cta_set_theme_mod' );
371
+add_action('after_switch_theme', 'lsx_customizer_colour__button_cta_set_theme_mod');
372
+add_action('customize_save_after', 'lsx_customizer_colour__button_cta_set_theme_mod');
373 373
 
374 374
 /**
375 375
  * Enqueues front-end CSS for the button cta.
376 376
  */
377 377
 function lsx_customizer_colour__button_cta_css() {
378
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__button_cta_theme_mod' );
378
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__button_cta_theme_mod');
379 379
 	
380
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
380
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
381 381
 		$theme_mods = lsx_customizer_colour__button_cta_get_theme_mods();
382
-		$styles     = lsx_customizer_colour__button_cta_get_css( $theme_mods );
382
+		$styles     = lsx_customizer_colour__button_cta_get_css($theme_mods);
383 383
 		
384
-		if ( false === $styles_from_theme_mod ) {
385
-			set_theme_mod( 'lsx_customizer_colour__button_cta_theme_mod', $styles );
384
+		if (false === $styles_from_theme_mod) {
385
+			set_theme_mod('lsx_customizer_colour__button_cta_theme_mod', $styles);
386 386
 		}
387 387
 	} else {
388 388
 		$styles = $styles_from_theme_mod;
389 389
 	}
390 390
 
391
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
391
+	wp_add_inline_style('lsx_customizer_colour', $styles);
392 392
 }
393
-add_action( 'wp_footer', 'lsx_customizer_colour__button_cta_css', 12 );
393
+add_action('wp_footer', 'lsx_customizer_colour__button_cta_css', 12);
394 394
 
395 395
 /**
396 396
  * Get button cta CSS theme mods.
@@ -402,32 +402,32 @@  discard block
 block discarded – undo
402 402
 	$colors       = array();
403 403
 	$counter      = 0;
404 404
 
405
-	foreach ( $customizer_colour_names as $key => $value ) {
405
+	foreach ($customizer_colour_names as $key => $value) {
406 406
 		$colors[$key] = $color_scheme[$counter];
407 407
 		$counter++;
408 408
 	}
409 409
 
410 410
 	return array(
411
-		'button_cta_background_color' =>       get_theme_mod( 'button_cta_background_color',       $colors['button_cta_background_color'] ),
412
-		'button_cta_background_hover_color' => get_theme_mod( 'button_cta_background_hover_color', $colors['button_cta_background_hover_color'] ),
413
-		'button_cta_text_color' =>             get_theme_mod( 'button_cta_text_color',             $colors['button_cta_text_color'] ),
414
-		'button_cta_text_color_hover' =>       get_theme_mod( 'button_cta_text_color_hover',       $colors['button_cta_text_color_hover'] )
411
+		'button_cta_background_color' =>       get_theme_mod('button_cta_background_color', $colors['button_cta_background_color']),
412
+		'button_cta_background_hover_color' => get_theme_mod('button_cta_background_hover_color', $colors['button_cta_background_hover_color']),
413
+		'button_cta_text_color' =>             get_theme_mod('button_cta_text_color', $colors['button_cta_text_color']),
414
+		'button_cta_text_color_hover' =>       get_theme_mod('button_cta_text_color_hover', $colors['button_cta_text_color_hover'])
415 415
 	);
416 416
 }
417 417
 
418 418
 /**
419 419
  * Returns CSS for the button cta.
420 420
  */
421
-function lsx_customizer_colour__button_cta_get_css( $colors ) {
421
+function lsx_customizer_colour__button_cta_get_css($colors) {
422 422
 	global $customizer_colour_names;
423 423
 	
424 424
 	$colors_template = array();
425 425
 
426
-	foreach ( $customizer_colour_names as $key => $value ) {
426
+	foreach ($customizer_colour_names as $key => $value) {
427 427
 		$colors_template[$key] = '';
428 428
 	}
429 429
 
430
-	$colors = wp_parse_args( $colors, $colors_template );
430
+	$colors = wp_parse_args($colors, $colors_template);
431 431
 
432 432
 	$css = <<<CSS
433 433
 		/*
@@ -522,8 +522,8 @@  discard block
 block discarded – undo
522 522
 		}
523 523
 CSS;
524 524
 
525
-	$css = apply_filters( 'lsx_customizer_colour_selectors_button_cta', $css, $colors );
526
-	$css = lsx_customizer_colour__scss_to_css( $css );
525
+	$css = apply_filters('lsx_customizer_colour_selectors_button_cta', $css, $colors);
526
+	$css = lsx_customizer_colour__scss_to_css($css);
527 527
 	return $css;
528 528
 }
529 529
 
@@ -536,33 +536,33 @@  discard block
 block discarded – undo
536 536
  */
537 537
 function lsx_customizer_colour__top_menu_set_theme_mod() {
538 538
 	$theme_mods = lsx_customizer_colour__top_menu_get_theme_mods();
539
-	$styles     = lsx_customizer_colour__top_menu_get_css( $theme_mods );
539
+	$styles     = lsx_customizer_colour__top_menu_get_css($theme_mods);
540 540
 	
541
-	set_theme_mod( 'lsx_customizer_colour__top_menu_theme_mod', $styles );
541
+	set_theme_mod('lsx_customizer_colour__top_menu_theme_mod', $styles);
542 542
 }
543
-add_action( 'after_switch_theme',   'lsx_customizer_colour__top_menu_set_theme_mod' );
544
-add_action( 'customize_save_after', 'lsx_customizer_colour__top_menu_set_theme_mod' );
543
+add_action('after_switch_theme', 'lsx_customizer_colour__top_menu_set_theme_mod');
544
+add_action('customize_save_after', 'lsx_customizer_colour__top_menu_set_theme_mod');
545 545
 
546 546
 /**
547 547
  * Enqueues front-end CSS for the top menu.
548 548
  */
549 549
 function lsx_customizer_colour__top_menu_css() {
550
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__top_menu_theme_mod' );
550
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__top_menu_theme_mod');
551 551
 	
552
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
552
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
553 553
 		$theme_mods = lsx_customizer_colour__top_menu_get_theme_mods();
554
-		$styles     = lsx_customizer_colour__top_menu_get_css( $theme_mods );
554
+		$styles     = lsx_customizer_colour__top_menu_get_css($theme_mods);
555 555
 		
556
-		if ( false === $styles_from_theme_mod ) {
557
-			set_theme_mod( 'lsx_customizer_colour__top_menu_theme_mod', $styles );
556
+		if (false === $styles_from_theme_mod) {
557
+			set_theme_mod('lsx_customizer_colour__top_menu_theme_mod', $styles);
558 558
 		}
559 559
 	} else {
560 560
 		$styles = $styles_from_theme_mod;
561 561
 	}
562 562
 
563
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
563
+	wp_add_inline_style('lsx_customizer_colour', $styles);
564 564
 }
565
-add_action( 'wp_footer', 'lsx_customizer_colour__top_menu_css', 12 );
565
+add_action('wp_footer', 'lsx_customizer_colour__top_menu_css', 12);
566 566
 
567 567
 /**
568 568
  * Get top menu CSS theme mods.
@@ -574,31 +574,31 @@  discard block
 block discarded – undo
574 574
 	$colors       = array();
575 575
 	$counter      = 0;
576 576
 
577
-	foreach ( $customizer_colour_names as $key => $value ) {
577
+	foreach ($customizer_colour_names as $key => $value) {
578 578
 		$colors[$key] = $color_scheme[$counter];
579 579
 		$counter++;
580 580
 	}
581 581
 
582 582
 	return array(
583
-		'top_menu_background_color' => get_theme_mod( 'top_menu_background_color', $colors['top_menu_background_color'] ),
584
-		'top_menu_text_color' =>       get_theme_mod( 'top_menu_text_color',       $colors['top_menu_text_color'] ),
585
-		'top_menu_text_hover_color' => get_theme_mod( 'top_menu_text_hover_color', $colors['top_menu_text_hover_color'] )
583
+		'top_menu_background_color' => get_theme_mod('top_menu_background_color', $colors['top_menu_background_color']),
584
+		'top_menu_text_color' =>       get_theme_mod('top_menu_text_color', $colors['top_menu_text_color']),
585
+		'top_menu_text_hover_color' => get_theme_mod('top_menu_text_hover_color', $colors['top_menu_text_hover_color'])
586 586
 	);
587 587
 }
588 588
 
589 589
 /**
590 590
  * Returns CSS for the top menu.
591 591
  */
592
-function lsx_customizer_colour__top_menu_get_css( $colors ) {
592
+function lsx_customizer_colour__top_menu_get_css($colors) {
593 593
 	global $customizer_colour_names;
594 594
 	
595 595
 	$colors_template = array();
596 596
 
597
-	foreach ( $customizer_colour_names as $key => $value ) {
597
+	foreach ($customizer_colour_names as $key => $value) {
598 598
 		$colors_template[$key] = '';
599 599
 	}
600 600
 
601
-	$colors = wp_parse_args( $colors, $colors_template );
601
+	$colors = wp_parse_args($colors, $colors_template);
602 602
 
603 603
 	$css = <<<CSS
604 604
 		/*
@@ -638,8 +638,8 @@  discard block
 block discarded – undo
638 638
 		}
639 639
 CSS;
640 640
 
641
-	$css = apply_filters( 'lsx_customizer_colour_selectors_top_menu', $css, $colors );
642
-	$css = lsx_customizer_colour__scss_to_css( $css );
641
+	$css = apply_filters('lsx_customizer_colour_selectors_top_menu', $css, $colors);
642
+	$css = lsx_customizer_colour__scss_to_css($css);
643 643
 	return $css;
644 644
 }
645 645
 
@@ -652,33 +652,33 @@  discard block
 block discarded – undo
652 652
  */
653 653
 function lsx_customizer_colour__header_set_theme_mod() {
654 654
 	$theme_mods = lsx_customizer_colour__header_get_theme_mods();
655
-	$styles     = lsx_customizer_colour__header_get_css( $theme_mods );
655
+	$styles     = lsx_customizer_colour__header_get_css($theme_mods);
656 656
 	
657
-	set_theme_mod( 'lsx_customizer_colour__header_theme_mod', $styles );
657
+	set_theme_mod('lsx_customizer_colour__header_theme_mod', $styles);
658 658
 }
659
-add_action( 'after_switch_theme',   'lsx_customizer_colour__header_set_theme_mod' );
660
-add_action( 'customize_save_after', 'lsx_customizer_colour__header_set_theme_mod' );
659
+add_action('after_switch_theme', 'lsx_customizer_colour__header_set_theme_mod');
660
+add_action('customize_save_after', 'lsx_customizer_colour__header_set_theme_mod');
661 661
 
662 662
 /**
663 663
  * Enqueues front-end CSS for the header.
664 664
  */
665 665
 function lsx_customizer_colour__header_css() {
666
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__header_theme_mod' );
666
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__header_theme_mod');
667 667
 	
668
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
668
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
669 669
 		$theme_mods = lsx_customizer_colour__header_get_theme_mods();
670
-		$styles     = lsx_customizer_colour__header_get_css( $theme_mods );
670
+		$styles     = lsx_customizer_colour__header_get_css($theme_mods);
671 671
 		
672
-		if ( false === $styles_from_theme_mod ) {
673
-			set_theme_mod( 'lsx_customizer_colour__header_theme_mod', $styles );
672
+		if (false === $styles_from_theme_mod) {
673
+			set_theme_mod('lsx_customizer_colour__header_theme_mod', $styles);
674 674
 		}
675 675
 	} else {
676 676
 		$styles = $styles_from_theme_mod;
677 677
 	}
678 678
 
679
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
679
+	wp_add_inline_style('lsx_customizer_colour', $styles);
680 680
 }
681
-add_action( 'wp_footer', 'lsx_customizer_colour__header_css', 12 );
681
+add_action('wp_footer', 'lsx_customizer_colour__header_css', 12);
682 682
 
683 683
 /**
684 684
  * Get header CSS theme mods.
@@ -690,32 +690,32 @@  discard block
 block discarded – undo
690 690
 	$colors       = array();
691 691
 	$counter      = 0;
692 692
 
693
-	foreach ( $customizer_colour_names as $key => $value ) {
693
+	foreach ($customizer_colour_names as $key => $value) {
694 694
 		$colors[$key] = $color_scheme[$counter];
695 695
 		$counter++;
696 696
 	}
697 697
 
698 698
 	return array(
699
-		'header_background_color'  => get_theme_mod( 'header_background_color',  $colors['header_background_color'] ),
700
-		'header_title_color'       => get_theme_mod( 'header_title_color',       $colors['header_title_color'] ),
701
-		'header_title_hover_color' => get_theme_mod( 'header_title_hover_color', $colors['header_title_hover_color'] ),
702
-		'header_description_color' => get_theme_mod( 'header_description_color', $colors['header_description_color'] )
699
+		'header_background_color'  => get_theme_mod('header_background_color', $colors['header_background_color']),
700
+		'header_title_color'       => get_theme_mod('header_title_color', $colors['header_title_color']),
701
+		'header_title_hover_color' => get_theme_mod('header_title_hover_color', $colors['header_title_hover_color']),
702
+		'header_description_color' => get_theme_mod('header_description_color', $colors['header_description_color'])
703 703
 	);
704 704
 }
705 705
 
706 706
 /**
707 707
  * Returns CSS for the header.
708 708
  */
709
-function lsx_customizer_colour__header_get_css( $colors ) {
709
+function lsx_customizer_colour__header_get_css($colors) {
710 710
 	global $customizer_colour_names;
711 711
 	
712 712
 	$colors_template = array();
713 713
 
714
-	foreach ( $customizer_colour_names as $key => $value ) {
714
+	foreach ($customizer_colour_names as $key => $value) {
715 715
 		$colors_template[$key] = '';
716 716
 	}
717 717
 
718
-	$colors = wp_parse_args( $colors, $colors_template );
718
+	$colors = wp_parse_args($colors, $colors_template);
719 719
 
720 720
 	$css = <<<CSS
721 721
 		/*
@@ -752,8 +752,8 @@  discard block
 block discarded – undo
752 752
 		}
753 753
 CSS;
754 754
 
755
-	$css = apply_filters( 'lsx_customizer_colour_selectors_header', $css, $colors );
756
-	$css = lsx_customizer_colour__scss_to_css( $css );
755
+	$css = apply_filters('lsx_customizer_colour_selectors_header', $css, $colors);
756
+	$css = lsx_customizer_colour__scss_to_css($css);
757 757
 	return $css;
758 758
 }
759 759
 
@@ -766,33 +766,33 @@  discard block
 block discarded – undo
766 766
  */
767 767
 function lsx_customizer_colour__main_menu_set_theme_mod() {
768 768
 	$theme_mods = lsx_customizer_colour__main_menu_get_theme_mods();
769
-	$styles     = lsx_customizer_colour__main_menu_get_css( $theme_mods );
769
+	$styles     = lsx_customizer_colour__main_menu_get_css($theme_mods);
770 770
 	
771
-	set_theme_mod( 'lsx_customizer_colour__main_menu_theme_mod', $styles );
771
+	set_theme_mod('lsx_customizer_colour__main_menu_theme_mod', $styles);
772 772
 }
773
-add_action( 'after_switch_theme',   'lsx_customizer_colour__main_menu_set_theme_mod' );
774
-add_action( 'customize_save_after', 'lsx_customizer_colour__main_menu_set_theme_mod' );
773
+add_action('after_switch_theme', 'lsx_customizer_colour__main_menu_set_theme_mod');
774
+add_action('customize_save_after', 'lsx_customizer_colour__main_menu_set_theme_mod');
775 775
 
776 776
 /**
777 777
  * Enqueues front-end CSS for the main menu.
778 778
  */
779 779
 function lsx_customizer_colour__main_menu_css() {
780
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__main_menu_theme_mod' );
780
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__main_menu_theme_mod');
781 781
 	
782
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
782
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
783 783
 		$theme_mods = lsx_customizer_colour__main_menu_get_theme_mods();
784
-		$styles     = lsx_customizer_colour__main_menu_get_css( $theme_mods );
784
+		$styles     = lsx_customizer_colour__main_menu_get_css($theme_mods);
785 785
 		
786
-		if ( false === $styles_from_theme_mod ) {
787
-			set_theme_mod( 'lsx_customizer_colour__main_menu_theme_mod', $styles );
786
+		if (false === $styles_from_theme_mod) {
787
+			set_theme_mod('lsx_customizer_colour__main_menu_theme_mod', $styles);
788 788
 		}
789 789
 	} else {
790 790
 		$styles = $styles_from_theme_mod;
791 791
 	}
792 792
 
793
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
793
+	wp_add_inline_style('lsx_customizer_colour', $styles);
794 794
 }
795
-add_action( 'wp_footer', 'lsx_customizer_colour__main_menu_css', 12 );
795
+add_action('wp_footer', 'lsx_customizer_colour__main_menu_css', 12);
796 796
 
797 797
 /**
798 798
  * Get main menu CSS theme mods.
@@ -804,33 +804,33 @@  discard block
 block discarded – undo
804 804
 	$colors       = array();
805 805
 	$counter      = 0;
806 806
 
807
-	foreach ( $customizer_colour_names as $key => $value ) {
807
+	foreach ($customizer_colour_names as $key => $value) {
808 808
 		$colors[$key] = $color_scheme[$counter];
809 809
 		$counter++;
810 810
 	}
811 811
 
812 812
 	return array(
813
-		'main_menu_background_hover1_color' => get_theme_mod( 'main_menu_background_hover1_color', $colors['main_menu_background_hover1_color'] ),
814
-		'main_menu_background_hover2_color' => get_theme_mod( 'main_menu_background_hover2_color', $colors['main_menu_background_hover2_color'] ),
815
-		'main_menu_text_color' =>              get_theme_mod( 'main_menu_text_color',              $colors['main_menu_text_color'] ),
816
-		'main_menu_text_hover1_color' =>       get_theme_mod( 'main_menu_text_hover1_color',       $colors['main_menu_text_hover1_color'] ),
817
-		'main_menu_text_hover2_color' =>       get_theme_mod( 'main_menu_text_hover2_color',       $colors['main_menu_text_hover2_color'] )
813
+		'main_menu_background_hover1_color' => get_theme_mod('main_menu_background_hover1_color', $colors['main_menu_background_hover1_color']),
814
+		'main_menu_background_hover2_color' => get_theme_mod('main_menu_background_hover2_color', $colors['main_menu_background_hover2_color']),
815
+		'main_menu_text_color' =>              get_theme_mod('main_menu_text_color', $colors['main_menu_text_color']),
816
+		'main_menu_text_hover1_color' =>       get_theme_mod('main_menu_text_hover1_color', $colors['main_menu_text_hover1_color']),
817
+		'main_menu_text_hover2_color' =>       get_theme_mod('main_menu_text_hover2_color', $colors['main_menu_text_hover2_color'])
818 818
 	);
819 819
 }
820 820
 
821 821
 /**
822 822
  * Returns CSS for the main menu.
823 823
  */
824
-function lsx_customizer_colour__main_menu_get_css( $colors ) {
824
+function lsx_customizer_colour__main_menu_get_css($colors) {
825 825
 	global $customizer_colour_names;
826 826
 	
827 827
 	$colors_template = array();
828 828
 
829
-	foreach ( $customizer_colour_names as $key => $value ) {
829
+	foreach ($customizer_colour_names as $key => $value) {
830 830
 		$colors_template[$key] = '';
831 831
 	}
832 832
 
833
-	$colors = wp_parse_args( $colors, $colors_template );
833
+	$colors = wp_parse_args($colors, $colors_template);
834 834
 
835 835
 	$css = <<<CSS
836 836
 		/*
@@ -929,8 +929,8 @@  discard block
 block discarded – undo
929 929
 		}
930 930
 CSS;
931 931
 
932
-	$css = apply_filters( 'lsx_customizer_colour_selectors_main_menu', $css, $colors );
933
-	$css = lsx_customizer_colour__scss_to_css( $css );
932
+	$css = apply_filters('lsx_customizer_colour_selectors_main_menu', $css, $colors);
933
+	$css = lsx_customizer_colour__scss_to_css($css);
934 934
 	return $css;
935 935
 }
936 936
 
@@ -943,33 +943,33 @@  discard block
 block discarded – undo
943 943
  */
944 944
 function lsx_customizer_colour__banner_set_theme_mod() {
945 945
 	$theme_mods = lsx_customizer_colour__banner_get_theme_mods();
946
-	$styles     = lsx_customizer_colour__banner_get_css( $theme_mods );
946
+	$styles     = lsx_customizer_colour__banner_get_css($theme_mods);
947 947
 	
948
-	set_theme_mod( 'lsx_customizer_colour__banner_theme_mod', $styles );
948
+	set_theme_mod('lsx_customizer_colour__banner_theme_mod', $styles);
949 949
 }
950
-add_action( 'after_switch_theme',   'lsx_customizer_colour__banner_set_theme_mod' );
951
-add_action( 'customize_save_after', 'lsx_customizer_colour__banner_set_theme_mod' );
950
+add_action('after_switch_theme', 'lsx_customizer_colour__banner_set_theme_mod');
951
+add_action('customize_save_after', 'lsx_customizer_colour__banner_set_theme_mod');
952 952
 
953 953
 /**
954 954
  * Enqueues front-end CSS for the banner.
955 955
  */
956 956
 function lsx_customizer_colour__banner_css() {
957
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__banner_theme_mod' );
957
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__banner_theme_mod');
958 958
 	
959
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
959
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
960 960
 		$theme_mods = lsx_customizer_colour__banner_get_theme_mods();
961
-		$styles     = lsx_customizer_colour__banner_get_css( $theme_mods );
961
+		$styles     = lsx_customizer_colour__banner_get_css($theme_mods);
962 962
 		
963
-		if ( false === $styles_from_theme_mod ) {
964
-			set_theme_mod( 'lsx_customizer_colour__banner_theme_mod', $styles );
963
+		if (false === $styles_from_theme_mod) {
964
+			set_theme_mod('lsx_customizer_colour__banner_theme_mod', $styles);
965 965
 		}
966 966
 	} else {
967 967
 		$styles = $styles_from_theme_mod;
968 968
 	}
969 969
 
970
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
970
+	wp_add_inline_style('lsx_customizer_colour', $styles);
971 971
 }
972
-add_action( 'wp_footer', 'lsx_customizer_colour__banner_css', 12 );
972
+add_action('wp_footer', 'lsx_customizer_colour__banner_css', 12);
973 973
 
974 974
 /**
975 975
  * Get banner CSS theme mods.
@@ -981,31 +981,31 @@  discard block
 block discarded – undo
981 981
 	$colors       = array();
982 982
 	$counter      = 0;
983 983
 
984
-	foreach ( $customizer_colour_names as $key => $value ) {
984
+	foreach ($customizer_colour_names as $key => $value) {
985 985
 		$colors[$key] = $color_scheme[$counter];
986 986
 		$counter++;
987 987
 	}
988 988
 
989 989
 	return array(
990
-		'banner_background_color' => get_theme_mod( 'banner_background_color', $colors['banner_background_color'] ),
991
-		'banner_text_color' =>       get_theme_mod( 'banner_text_color',       $colors['banner_text_color'] ),
992
-		'banner_text_image_color' => get_theme_mod( 'banner_text_image_color', $colors['banner_text_image_color'] )
990
+		'banner_background_color' => get_theme_mod('banner_background_color', $colors['banner_background_color']),
991
+		'banner_text_color' =>       get_theme_mod('banner_text_color', $colors['banner_text_color']),
992
+		'banner_text_image_color' => get_theme_mod('banner_text_image_color', $colors['banner_text_image_color'])
993 993
 	);
994 994
 }
995 995
 
996 996
 /**
997 997
  * Returns CSS for the banner.
998 998
  */
999
-function lsx_customizer_colour__banner_get_css( $colors ) {
999
+function lsx_customizer_colour__banner_get_css($colors) {
1000 1000
 	global $customizer_colour_names;
1001 1001
 	
1002 1002
 	$colors_template = array();
1003 1003
 
1004
-	foreach ( $customizer_colour_names as $key => $value ) {
1004
+	foreach ($customizer_colour_names as $key => $value) {
1005 1005
 		$colors_template[$key] = '';
1006 1006
 	}
1007 1007
 
1008
-	$colors = wp_parse_args( $colors, $colors_template );
1008
+	$colors = wp_parse_args($colors, $colors_template);
1009 1009
 
1010 1010
 	$css = <<<CSS
1011 1011
 		/*
@@ -1034,8 +1034,8 @@  discard block
 block discarded – undo
1034 1034
 		}
1035 1035
 CSS;
1036 1036
 
1037
-	$css = apply_filters( 'lsx_customizer_colour_selectors_banner', $css, $colors );
1038
-	$css = lsx_customizer_colour__scss_to_css( $css );
1037
+	$css = apply_filters('lsx_customizer_colour_selectors_banner', $css, $colors);
1038
+	$css = lsx_customizer_colour__scss_to_css($css);
1039 1039
 	return $css;
1040 1040
 }
1041 1041
 
@@ -1048,33 +1048,33 @@  discard block
 block discarded – undo
1048 1048
  */
1049 1049
 function lsx_customizer_colour__body_set_theme_mod() {
1050 1050
 	$theme_mods = lsx_customizer_colour__body_get_theme_mods();
1051
-	$styles     = lsx_customizer_colour__body_get_css( $theme_mods );
1051
+	$styles     = lsx_customizer_colour__body_get_css($theme_mods);
1052 1052
 	
1053
-	set_theme_mod( 'lsx_customizer_colour__body_theme_mod', $styles );
1053
+	set_theme_mod('lsx_customizer_colour__body_theme_mod', $styles);
1054 1054
 }
1055
-add_action( 'after_switch_theme',   'lsx_customizer_colour__body_set_theme_mod' );
1056
-add_action( 'customize_save_after', 'lsx_customizer_colour__body_set_theme_mod' );
1055
+add_action('after_switch_theme', 'lsx_customizer_colour__body_set_theme_mod');
1056
+add_action('customize_save_after', 'lsx_customizer_colour__body_set_theme_mod');
1057 1057
 
1058 1058
 /**
1059 1059
  * Enqueues front-end CSS for the body.
1060 1060
  */
1061 1061
 function lsx_customizer_colour__body_css() {
1062
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__body_theme_mod' );
1062
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__body_theme_mod');
1063 1063
 	
1064
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
1064
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
1065 1065
 		$theme_mods = lsx_customizer_colour__body_get_theme_mods();
1066
-		$styles     = lsx_customizer_colour__body_get_css( $theme_mods );
1066
+		$styles     = lsx_customizer_colour__body_get_css($theme_mods);
1067 1067
 		
1068
-		if ( false === $styles_from_theme_mod ) {
1069
-			set_theme_mod( 'lsx_customizer_colour__body_theme_mod', $styles );
1068
+		if (false === $styles_from_theme_mod) {
1069
+			set_theme_mod('lsx_customizer_colour__body_theme_mod', $styles);
1070 1070
 		}
1071 1071
 	} else {
1072 1072
 		$styles = $styles_from_theme_mod;
1073 1073
 	}
1074 1074
 
1075
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
1075
+	wp_add_inline_style('lsx_customizer_colour', $styles);
1076 1076
 }
1077
-add_action( 'wp_footer', 'lsx_customizer_colour__body_css', 12 );
1077
+add_action('wp_footer', 'lsx_customizer_colour__body_css', 12);
1078 1078
 
1079 1079
 /**
1080 1080
  * Get body CSS theme mods.
@@ -1086,36 +1086,36 @@  discard block
 block discarded – undo
1086 1086
 	$colors       = array();
1087 1087
 	$counter      = 0;
1088 1088
 
1089
-	foreach ( $customizer_colour_names as $key => $value ) {
1089
+	foreach ($customizer_colour_names as $key => $value) {
1090 1090
 		$colors[$key] = $color_scheme[$counter];
1091 1091
 		$counter++;
1092 1092
 	}
1093 1093
 
1094 1094
 	return array(
1095
-		'body_background_color' =>   get_theme_mod( 'body_background_color',   $colors['body_background_color'] ),
1096
-		'body_line_color' =>         get_theme_mod( 'body_line_color',         $colors['body_line_color'] ),
1097
-		'body_text_heading_color' => get_theme_mod( 'body_text_heading_color', $colors['body_text_heading_color'] ),
1098
-		'body_text_color' =>         get_theme_mod( 'body_text_color',         $colors['body_text_color'] ),
1099
-		'body_link_color' =>         get_theme_mod( 'body_link_color',         $colors['body_link_color'] ),
1100
-		'body_link_hover_color' =>   get_theme_mod( 'body_link_hover_color',   $colors['body_link_hover_color'] )
1095
+		'body_background_color' =>   get_theme_mod('body_background_color', $colors['body_background_color']),
1096
+		'body_line_color' =>         get_theme_mod('body_line_color', $colors['body_line_color']),
1097
+		'body_text_heading_color' => get_theme_mod('body_text_heading_color', $colors['body_text_heading_color']),
1098
+		'body_text_color' =>         get_theme_mod('body_text_color', $colors['body_text_color']),
1099
+		'body_link_color' =>         get_theme_mod('body_link_color', $colors['body_link_color']),
1100
+		'body_link_hover_color' =>   get_theme_mod('body_link_hover_color', $colors['body_link_hover_color'])
1101 1101
 	);
1102 1102
 }
1103 1103
 
1104 1104
 /**
1105 1105
  * Returns CSS for the body.
1106 1106
  */
1107
-function lsx_customizer_colour__body_get_css( $colors ) {
1107
+function lsx_customizer_colour__body_get_css($colors) {
1108 1108
 	global $customizer_colour_names;
1109 1109
 	
1110 1110
 	$colors_template = array();
1111 1111
 
1112
-	foreach ( $customizer_colour_names as $key => $value ) {
1112
+	foreach ($customizer_colour_names as $key => $value) {
1113 1113
 		$colors_template[$key] = '';
1114 1114
 	}
1115 1115
 
1116
-	$colors = wp_parse_args( $colors, $colors_template );
1116
+	$colors = wp_parse_args($colors, $colors_template);
1117 1117
 
1118
-	$rgb = lsx_customizer_colour__hex2rgb( $colors['body_line_color'] );
1118
+	$rgb = lsx_customizer_colour__hex2rgb($colors['body_line_color']);
1119 1119
 	$colors['body_line_color_rgba'] = "rgba({$rgb['red']}, {$rgb['green']}, {$rgb['blue']}, 0.5)";
1120 1120
 
1121 1121
 	$css = <<<CSS
@@ -1350,8 +1350,8 @@  discard block
 block discarded – undo
1350 1350
 		}
1351 1351
 CSS;
1352 1352
 
1353
-	$css = apply_filters( 'lsx_customizer_colour_selectors_body', $css, $colors );
1354
-	$css = lsx_customizer_colour__scss_to_css( $css );
1353
+	$css = apply_filters('lsx_customizer_colour_selectors_body', $css, $colors);
1354
+	$css = lsx_customizer_colour__scss_to_css($css);
1355 1355
 	return $css;
1356 1356
 }
1357 1357
 
@@ -1364,33 +1364,33 @@  discard block
 block discarded – undo
1364 1364
  */
1365 1365
 function lsx_customizer_colour__footer_cta_set_theme_mod() {
1366 1366
 	$theme_mods = lsx_customizer_colour__footer_cta_get_theme_mods();
1367
-	$styles     = lsx_customizer_colour__footer_cta_get_css( $theme_mods );
1367
+	$styles     = lsx_customizer_colour__footer_cta_get_css($theme_mods);
1368 1368
 	
1369
-	set_theme_mod( 'lsx_customizer_colour__footer_cta_theme_mod', $styles );
1369
+	set_theme_mod('lsx_customizer_colour__footer_cta_theme_mod', $styles);
1370 1370
 }
1371
-add_action( 'after_switch_theme',   'lsx_customizer_colour__footer_cta_set_theme_mod' );
1372
-add_action( 'customize_save_after', 'lsx_customizer_colour__footer_cta_set_theme_mod' );
1371
+add_action('after_switch_theme', 'lsx_customizer_colour__footer_cta_set_theme_mod');
1372
+add_action('customize_save_after', 'lsx_customizer_colour__footer_cta_set_theme_mod');
1373 1373
 
1374 1374
 /**
1375 1375
  * Enqueues front-end CSS for the footer cta.
1376 1376
  */
1377 1377
 function lsx_customizer_colour__footer_cta_css() {
1378
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__footer_cta_theme_mod' );
1378
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__footer_cta_theme_mod');
1379 1379
 	
1380
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
1380
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
1381 1381
 		$theme_mods = lsx_customizer_colour__footer_cta_get_theme_mods();
1382
-		$styles     = lsx_customizer_colour__footer_cta_get_css( $theme_mods );
1382
+		$styles     = lsx_customizer_colour__footer_cta_get_css($theme_mods);
1383 1383
 		
1384
-		if ( false === $styles_from_theme_mod ) {
1385
-			set_theme_mod( 'lsx_customizer_colour__footer_cta_theme_mod', $styles );
1384
+		if (false === $styles_from_theme_mod) {
1385
+			set_theme_mod('lsx_customizer_colour__footer_cta_theme_mod', $styles);
1386 1386
 		}
1387 1387
 	} else {
1388 1388
 		$styles = $styles_from_theme_mod;
1389 1389
 	}
1390 1390
 
1391
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
1391
+	wp_add_inline_style('lsx_customizer_colour', $styles);
1392 1392
 }
1393
-add_action( 'wp_footer', 'lsx_customizer_colour__footer_cta_css', 12 );
1393
+add_action('wp_footer', 'lsx_customizer_colour__footer_cta_css', 12);
1394 1394
 
1395 1395
 /**
1396 1396
  * Get footer cta CSS theme mods.
@@ -1402,32 +1402,32 @@  discard block
 block discarded – undo
1402 1402
 	$colors       = array();
1403 1403
 	$counter      = 0;
1404 1404
 
1405
-	foreach ( $customizer_colour_names as $key => $value ) {
1405
+	foreach ($customizer_colour_names as $key => $value) {
1406 1406
 		$colors[$key] = $color_scheme[$counter];
1407 1407
 		$counter++;
1408 1408
 	}
1409 1409
 
1410 1410
 	return array(
1411
-		'footer_cta_background_color' => get_theme_mod( 'footer_cta_background_color', $colors['footer_cta_background_color'] ),
1412
-		'footer_cta_text_color'       => get_theme_mod( 'footer_cta_text_color',       $colors['footer_cta_text_color'] ),
1413
-		'footer_cta_link_color'       => get_theme_mod( 'footer_cta_link_color',       $colors['footer_cta_link_color'] ),
1414
-		'footer_cta_link_hover_color' => get_theme_mod( 'footer_cta_link_hover_color', $colors['footer_cta_link_hover_color'] )
1411
+		'footer_cta_background_color' => get_theme_mod('footer_cta_background_color', $colors['footer_cta_background_color']),
1412
+		'footer_cta_text_color'       => get_theme_mod('footer_cta_text_color', $colors['footer_cta_text_color']),
1413
+		'footer_cta_link_color'       => get_theme_mod('footer_cta_link_color', $colors['footer_cta_link_color']),
1414
+		'footer_cta_link_hover_color' => get_theme_mod('footer_cta_link_hover_color', $colors['footer_cta_link_hover_color'])
1415 1415
 	);
1416 1416
 }
1417 1417
 
1418 1418
 /**
1419 1419
  * Returns CSS for the footer cta.
1420 1420
  */
1421
-function lsx_customizer_colour__footer_cta_get_css( $colors ) {
1421
+function lsx_customizer_colour__footer_cta_get_css($colors) {
1422 1422
 	global $customizer_colour_names;
1423 1423
 	
1424 1424
 	$colors_template = array();
1425 1425
 
1426
-	foreach ( $customizer_colour_names as $key => $value ) {
1426
+	foreach ($customizer_colour_names as $key => $value) {
1427 1427
 		$colors_template[$key] = '';
1428 1428
 	}
1429 1429
 
1430
-	$colors = wp_parse_args( $colors, $colors_template );
1430
+	$colors = wp_parse_args($colors, $colors_template);
1431 1431
 
1432 1432
 	$css = <<<CSS
1433 1433
 		/*
@@ -1462,8 +1462,8 @@  discard block
 block discarded – undo
1462 1462
 		}
1463 1463
 CSS;
1464 1464
 
1465
-	$css = apply_filters( 'lsx_customizer_colour_selectors_footer_cta', $css, $colors );
1466
-	$css = lsx_customizer_colour__scss_to_css( $css );
1465
+	$css = apply_filters('lsx_customizer_colour_selectors_footer_cta', $css, $colors);
1466
+	$css = lsx_customizer_colour__scss_to_css($css);
1467 1467
 	return $css;
1468 1468
 }
1469 1469
 
@@ -1475,33 +1475,33 @@  discard block
 block discarded – undo
1475 1475
  */
1476 1476
 function lsx_customizer_colour__footer_widgets_set_theme_mod() {
1477 1477
 	$theme_mods = lsx_customizer_colour__footer_widgets_get_theme_mods();
1478
-	$styles     = lsx_customizer_colour__footer_widgets_get_css( $theme_mods );
1478
+	$styles     = lsx_customizer_colour__footer_widgets_get_css($theme_mods);
1479 1479
 	
1480
-	set_theme_mod( 'lsx_customizer_colour__footer_widgets_theme_mod', $styles );
1480
+	set_theme_mod('lsx_customizer_colour__footer_widgets_theme_mod', $styles);
1481 1481
 }
1482
-add_action( 'after_switch_theme',   'lsx_customizer_colour__footer_widgets_set_theme_mod' );
1483
-add_action( 'customize_save_after', 'lsx_customizer_colour__footer_widgets_set_theme_mod' );
1482
+add_action('after_switch_theme', 'lsx_customizer_colour__footer_widgets_set_theme_mod');
1483
+add_action('customize_save_after', 'lsx_customizer_colour__footer_widgets_set_theme_mod');
1484 1484
 
1485 1485
 /**
1486 1486
  * Enqueues front-end CSS for the footer widgets.
1487 1487
  */
1488 1488
 function lsx_customizer_colour__footer_widgets_css() {
1489
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__footer_widgets_theme_mod' );
1489
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__footer_widgets_theme_mod');
1490 1490
 	
1491
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
1491
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
1492 1492
 		$theme_mods = lsx_customizer_colour__footer_widgets_get_theme_mods();
1493
-		$styles     = lsx_customizer_colour__footer_widgets_get_css( $theme_mods );
1493
+		$styles     = lsx_customizer_colour__footer_widgets_get_css($theme_mods);
1494 1494
 		
1495
-		if ( false === $styles_from_theme_mod ) {
1496
-			set_theme_mod( 'lsx_customizer_colour__footer_widgets_theme_mod', $styles );
1495
+		if (false === $styles_from_theme_mod) {
1496
+			set_theme_mod('lsx_customizer_colour__footer_widgets_theme_mod', $styles);
1497 1497
 		}
1498 1498
 	} else {
1499 1499
 		$styles = $styles_from_theme_mod;
1500 1500
 	}
1501 1501
 
1502
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
1502
+	wp_add_inline_style('lsx_customizer_colour', $styles);
1503 1503
 }
1504
-add_action( 'wp_footer', 'lsx_customizer_colour__footer_widgets_css', 12 );
1504
+add_action('wp_footer', 'lsx_customizer_colour__footer_widgets_css', 12);
1505 1505
 
1506 1506
 /**
1507 1507
  * Get footer widgets CSS theme mods.
@@ -1513,32 +1513,32 @@  discard block
 block discarded – undo
1513 1513
 	$colors       = array();
1514 1514
 	$counter      = 0;
1515 1515
 
1516
-	foreach ( $customizer_colour_names as $key => $value ) {
1516
+	foreach ($customizer_colour_names as $key => $value) {
1517 1517
 		$colors[$key] = $color_scheme[$counter];
1518 1518
 		$counter++;
1519 1519
 	}
1520 1520
 
1521 1521
 	return array(
1522
-		'footer_widgets_background_color' => get_theme_mod( 'footer_widgets_background_color', $colors['footer_widgets_background_color'] ),
1523
-		'footer_widgets_text_color'       => get_theme_mod( 'footer_widgets_text_color',       $colors['footer_widgets_text_color'] ),
1524
-		'footer_widgets_link_color'       => get_theme_mod( 'footer_widgets_link_color',       $colors['footer_widgets_link_color'] ),
1525
-		'footer_widgets_link_hover_color' => get_theme_mod( 'footer_widgets_link_hover_color', $colors['footer_widgets_link_hover_color'] )
1522
+		'footer_widgets_background_color' => get_theme_mod('footer_widgets_background_color', $colors['footer_widgets_background_color']),
1523
+		'footer_widgets_text_color'       => get_theme_mod('footer_widgets_text_color', $colors['footer_widgets_text_color']),
1524
+		'footer_widgets_link_color'       => get_theme_mod('footer_widgets_link_color', $colors['footer_widgets_link_color']),
1525
+		'footer_widgets_link_hover_color' => get_theme_mod('footer_widgets_link_hover_color', $colors['footer_widgets_link_hover_color'])
1526 1526
 	);
1527 1527
 }
1528 1528
 
1529 1529
 /**
1530 1530
  * Returns CSS for the footer widgets.
1531 1531
  */
1532
-function lsx_customizer_colour__footer_widgets_get_css( $colors ) {
1532
+function lsx_customizer_colour__footer_widgets_get_css($colors) {
1533 1533
 	global $customizer_colour_names;
1534 1534
 	
1535 1535
 	$colors_template = array();
1536 1536
 
1537
-	foreach ( $customizer_colour_names as $key => $value ) {
1537
+	foreach ($customizer_colour_names as $key => $value) {
1538 1538
 		$colors_template[$key] = '';
1539 1539
 	}
1540 1540
 
1541
-	$colors = wp_parse_args( $colors, $colors_template );
1541
+	$colors = wp_parse_args($colors, $colors_template);
1542 1542
 
1543 1543
 	$css = <<<CSS
1544 1544
 		/*
@@ -1577,8 +1577,8 @@  discard block
 block discarded – undo
1577 1577
 		}
1578 1578
 CSS;
1579 1579
 
1580
-	$css = apply_filters( 'lsx_customizer_colour_selectors_footer_widgets', $css, $colors );
1581
-	$css = lsx_customizer_colour__scss_to_css( $css );
1580
+	$css = apply_filters('lsx_customizer_colour_selectors_footer_widgets', $css, $colors);
1581
+	$css = lsx_customizer_colour__scss_to_css($css);
1582 1582
 	return $css;
1583 1583
 }
1584 1584
 
@@ -1590,33 +1590,33 @@  discard block
 block discarded – undo
1590 1590
  */
1591 1591
 function lsx_customizer_colour__footer_set_theme_mod() {
1592 1592
 	$theme_mods = lsx_customizer_colour__footer_get_theme_mods();
1593
-	$styles     = lsx_customizer_colour__footer_get_css( $theme_mods );
1593
+	$styles     = lsx_customizer_colour__footer_get_css($theme_mods);
1594 1594
 	
1595
-	set_theme_mod( 'lsx_customizer_colour__footer_theme_mod', $styles );
1595
+	set_theme_mod('lsx_customizer_colour__footer_theme_mod', $styles);
1596 1596
 }
1597
-add_action( 'after_switch_theme',   'lsx_customizer_colour__footer_set_theme_mod' );
1598
-add_action( 'customize_save_after', 'lsx_customizer_colour__footer_set_theme_mod' );
1597
+add_action('after_switch_theme', 'lsx_customizer_colour__footer_set_theme_mod');
1598
+add_action('customize_save_after', 'lsx_customizer_colour__footer_set_theme_mod');
1599 1599
 
1600 1600
 /**
1601 1601
  * Enqueues front-end CSS for the footer.
1602 1602
  */
1603 1603
 function lsx_customizer_colour__footer_css() {
1604
-	$styles_from_theme_mod = get_theme_mod( 'lsx_customizer_colour__footer_theme_mod' );
1604
+	$styles_from_theme_mod = get_theme_mod('lsx_customizer_colour__footer_theme_mod');
1605 1605
 
1606
-	if ( is_customize_preview() || false === $styles_from_theme_mod ) {
1606
+	if (is_customize_preview() || false === $styles_from_theme_mod) {
1607 1607
 		$theme_mods = lsx_customizer_colour__footer_get_theme_mods();
1608
-		$styles     = lsx_customizer_colour__footer_get_css( $theme_mods );
1608
+		$styles     = lsx_customizer_colour__footer_get_css($theme_mods);
1609 1609
 		
1610
-		if ( false === $styles_from_theme_mod ) {
1611
-			set_theme_mod( 'lsx_customizer_colour__footer_theme_mod', $styles );
1610
+		if (false === $styles_from_theme_mod) {
1611
+			set_theme_mod('lsx_customizer_colour__footer_theme_mod', $styles);
1612 1612
 		}
1613 1613
 	} else {
1614 1614
 		$styles = $styles_from_theme_mod;
1615 1615
 	}
1616 1616
 
1617
-	wp_add_inline_style( 'lsx_customizer_colour', $styles );
1617
+	wp_add_inline_style('lsx_customizer_colour', $styles);
1618 1618
 }
1619
-add_action( 'wp_footer', 'lsx_customizer_colour__footer_css', 12 );
1619
+add_action('wp_footer', 'lsx_customizer_colour__footer_css', 12);
1620 1620
 
1621 1621
 /**
1622 1622
  * Get footer CSS theme mods.
@@ -1628,32 +1628,32 @@  discard block
 block discarded – undo
1628 1628
 	$colors       = array();
1629 1629
 	$counter      = 0;
1630 1630
 
1631
-	foreach ( $customizer_colour_names as $key => $value ) {
1631
+	foreach ($customizer_colour_names as $key => $value) {
1632 1632
 		$colors[$key] = $color_scheme[$counter];
1633 1633
 		$counter++;
1634 1634
 	}
1635 1635
 
1636 1636
 	return array(
1637
-		'footer_background_color' => get_theme_mod( 'footer_background_color', $colors['footer_background_color'] ),
1638
-		'footer_text_color'       => get_theme_mod( 'footer_text_color',       $colors['footer_text_color'] ),
1639
-		'footer_link_color'       => get_theme_mod( 'footer_link_color',       $colors['footer_link_color'] ),
1640
-		'footer_link_hover_color' => get_theme_mod( 'footer_link_hover_color', $colors['footer_link_hover_color'] )
1637
+		'footer_background_color' => get_theme_mod('footer_background_color', $colors['footer_background_color']),
1638
+		'footer_text_color'       => get_theme_mod('footer_text_color', $colors['footer_text_color']),
1639
+		'footer_link_color'       => get_theme_mod('footer_link_color', $colors['footer_link_color']),
1640
+		'footer_link_hover_color' => get_theme_mod('footer_link_hover_color', $colors['footer_link_hover_color'])
1641 1641
 	);
1642 1642
 }
1643 1643
 
1644 1644
 /**
1645 1645
  * Returns CSS for the footer.
1646 1646
  */
1647
-function lsx_customizer_colour__footer_get_css( $colors ) {
1647
+function lsx_customizer_colour__footer_get_css($colors) {
1648 1648
 	global $customizer_colour_names;
1649 1649
 	
1650 1650
 	$colors_template = array();
1651 1651
 
1652
-	foreach ( $customizer_colour_names as $key => $value ) {
1652
+	foreach ($customizer_colour_names as $key => $value) {
1653 1653
 		$colors_template[$key] = '';
1654 1654
 	}
1655 1655
 
1656
-	$colors = wp_parse_args( $colors, $colors_template );
1656
+	$colors = wp_parse_args($colors, $colors_template);
1657 1657
 
1658 1658
 	$css = <<<CSS
1659 1659
 		/*
@@ -1693,8 +1693,8 @@  discard block
 block discarded – undo
1693 1693
 		}
1694 1694
 CSS;
1695 1695
 
1696
-	$css = apply_filters( 'lsx_customizer_colour_selectors_footer', $css, $colors );
1697
-	$css = lsx_customizer_colour__scss_to_css( $css );
1696
+	$css = apply_filters('lsx_customizer_colour_selectors_footer', $css, $colors);
1697
+	$css = lsx_customizer_colour__scss_to_css($css);
1698 1698
 	return $css;
1699 1699
 }
1700 1700
 
@@ -1706,7 +1706,7 @@  discard block
 block discarded – undo
1706 1706
  * Customize Colour Control Class
1707 1707
  */
1708 1708
 
1709
-if ( ! class_exists( 'WP_Customize_Control' ) ) {
1709
+if ( ! class_exists('WP_Customize_Control')) {
1710 1710
 	return;
1711 1711
 }
1712 1712
 
@@ -1716,37 +1716,37 @@  discard block
 block discarded – undo
1716 1716
 	 * Enqueue control related scripts/styles.
1717 1717
 	 */
1718 1718
 	public function enqueue() {
1719
-		wp_enqueue_script( 'lsx-colour-control', get_template_directory_uri() .'/js/customizer-colour.js', array( 'customize-controls', 'iris', 'underscore', 'wp-util' ), null, true );
1720
-		wp_localize_script( 'lsx-colour-control', 'colorScheme', $this->choices );
1719
+		wp_enqueue_script('lsx-colour-control', get_template_directory_uri() . '/js/customizer-colour.js', array('customize-controls', 'iris', 'underscore', 'wp-util'), null, true);
1720
+		wp_localize_script('lsx-colour-control', 'colorScheme', $this->choices);
1721 1721
 
1722 1722
 		global $customizer_colour_names;
1723 1723
 		$colors = array();
1724
-		foreach ( $customizer_colour_names as $key => $value ) {
1724
+		foreach ($customizer_colour_names as $key => $value) {
1725 1725
 			$colors[] = $key;
1726 1726
 		}
1727
-		wp_localize_script( 'lsx-colour-control', 'colorSchemeKeys', $colors );
1727
+		wp_localize_script('lsx-colour-control', 'colorSchemeKeys', $colors);
1728 1728
 	}
1729 1729
 
1730 1730
 	/**
1731 1731
 	 * Render the control's content.
1732 1732
 	 */
1733 1733
 	public function render_content() {
1734
-		if ( empty( $this->choices ) ) {
1734
+		if (empty($this->choices)) {
1735 1735
 			return;
1736 1736
 		}
1737 1737
 
1738 1738
 		?> 
1739 1739
 		<label>
1740
-			<?php if ( ! empty( $this->label ) ) { ?>
1741
-				<span class="customize-control-title"><?php echo esc_html( $this->label ) ?></span>
1740
+			<?php if ( ! empty($this->label)) { ?>
1741
+				<span class="customize-control-title"><?php echo esc_html($this->label) ?></span>
1742 1742
 			<?php }
1743
-			if ( ! empty( $this->description ) ) { ?>
1744
-				<span class="description customize-control-description"><?php echo esc_html( $this->description ) ?></span>
1743
+			if ( ! empty($this->description)) { ?>
1744
+				<span class="description customize-control-description"><?php echo esc_html($this->description) ?></span>
1745 1745
 			<?php } ?>
1746 1746
 			<select <?php $this->link() ?>>
1747 1747
 				<?php
1748
-					foreach ( $this->choices as $value => $label ) {
1749
-						echo '<option value="'. esc_attr( $value ) .'"'. selected( $this->value(), $value, false ) .'>'. esc_html( $label['label'] ) .'</option>';
1748
+					foreach ($this->choices as $value => $label) {
1749
+						echo '<option value="' . esc_attr($value) . '"' . selected($this->value(), $value, false) . '>' . esc_html($label['label']) . '</option>';
1750 1750
 					}
1751 1751
 				?>
1752 1752
 			</select>
Please login to merge, or discard this patch.
inc/example/customizer-colour-extended.php 2 patches
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	return;
4
+}
5
+// Exit if accessed directly
3 6
 
4 7
 /**
5 8
  * Customize Swatch Control Class
Please login to merge, or discard this patch.
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -1,77 +1,77 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Filter: lsx_customizer_colour_names
6 6
  *
7 7
  * Add two new colors (test) in main array of colors
8 8
  */
9
-function test_lsx_customizer_colour_names( $array ) {
10
-	$array['test_text_color'] = esc_html__( 'TEST: Text', 'lsx' );
11
-	$array['test_text_color_hover'] = esc_html__( 'TEST: Text (hover)', 'lsx' );
9
+function test_lsx_customizer_colour_names($array) {
10
+	$array['test_text_color'] = esc_html__('TEST: Text', 'lsx');
11
+	$array['test_text_color_hover'] = esc_html__('TEST: Text (hover)', 'lsx');
12 12
 	return $array;
13 13
 }
14
-add_filter( 'lsx_customizer_colour_names', 'test_lsx_customizer_colour_names' );
14
+add_filter('lsx_customizer_colour_names', 'test_lsx_customizer_colour_names');
15 15
 
16 16
 /**
17 17
  * Filter: lsx_customizer_colour_choices_default
18 18
  *
19 19
  * Add the new colors (test) in default scheme
20 20
  */
21
-function test_lsx_customizer_colour_choices_default( $array ) {
21
+function test_lsx_customizer_colour_choices_default($array) {
22 22
 	$array[] = '#ddddd1';
23 23
 	$array[] = '#eeeee1';
24 24
 	return $array;
25 25
 }
26
-add_filter( 'lsx_customizer_colour_choices_default', 'test_lsx_customizer_colour_choices_default' );
26
+add_filter('lsx_customizer_colour_choices_default', 'test_lsx_customizer_colour_choices_default');
27 27
 
28 28
 /**
29 29
  * Filter: lsx_customizer_colour_choices_red
30 30
  *
31 31
  * Add the new colors (test) in red scheme
32 32
  */
33
-function test_lsx_customizer_colour_choices_red( $array ) {
33
+function test_lsx_customizer_colour_choices_red($array) {
34 34
 	$array[] = '#ddddd2';
35 35
 	$array[] = '#eeeee2';
36 36
 	return $array;
37 37
 }
38
-add_filter( 'lsx_customizer_colour_choices_red', 'test_lsx_customizer_colour_choices_red' );
38
+add_filter('lsx_customizer_colour_choices_red', 'test_lsx_customizer_colour_choices_red');
39 39
 
40 40
 /**
41 41
  * Filter: lsx_customizer_colour_choices_orange
42 42
  *
43 43
  * Add the new colors (test) in orange scheme
44 44
  */
45
-function test_lsx_customizer_colour_choices_orange( $array ) {
45
+function test_lsx_customizer_colour_choices_orange($array) {
46 46
 	$array[] = '#ddddd3';
47 47
 	$array[] = '#eeeee3';
48 48
 	return $array;
49 49
 }
50
-add_filter( 'lsx_customizer_colour_choices_orange', 'test_lsx_customizer_colour_choices_orange' );
50
+add_filter('lsx_customizer_colour_choices_orange', 'test_lsx_customizer_colour_choices_orange');
51 51
 
52 52
 /**
53 53
  * Filter: lsx_customizer_colour_choices_green
54 54
  *
55 55
  * Add the new colors (test) in green scheme
56 56
  */
57
-function test_lsx_customizer_colour_choices_green( $array ) {
57
+function test_lsx_customizer_colour_choices_green($array) {
58 58
 	$array[] = '#ddddd4';
59 59
 	$array[] = '#eeeee4';
60 60
 	return $array;
61 61
 }
62
-add_filter( 'lsx_customizer_colour_choices_green', 'test_lsx_customizer_colour_choices_green' );
62
+add_filter('lsx_customizer_colour_choices_green', 'test_lsx_customizer_colour_choices_green');
63 63
 
64 64
 /**
65 65
  * Filter: lsx_customizer_colour_choices_brown
66 66
  *
67 67
  * Add the new colors (test) in brown scheme
68 68
  */
69
-function test_lsx_customizer_colour_choices_brown( $array ) {
69
+function test_lsx_customizer_colour_choices_brown($array) {
70 70
 	$array[] = '#ddddd5';
71 71
 	$array[] = '#eeeee5';
72 72
 	return $array;
73 73
 }
74
-add_filter( 'lsx_customizer_colour_choices_brown', 'test_lsx_customizer_colour_choices_brown' );
74
+add_filter('lsx_customizer_colour_choices_brown', 'test_lsx_customizer_colour_choices_brown');
75 75
 
76 76
 /**
77 77
  * Filter: lsx_customizer_colour_choices
@@ -79,9 +79,9 @@  discard block
 block discarded – undo
79 79
  * Add a new scheme
80 80
  * Also add the new colors (test) in new scheme
81 81
  */
82
-function test_lsx_customizer_colour_choices( $array ) {
82
+function test_lsx_customizer_colour_choices($array) {
83 83
 	$array['test'] = array(
84
-		'label'  => __( 'Test', 'lsx' ),
84
+		'label'  => __('Test', 'lsx'),
85 85
 		'colors' => array(
86 86
 			// Button
87 87
 			'#428bca', '#2a6496', '#ffffff', '#ffffff',
@@ -110,14 +110,14 @@  discard block
 block discarded – undo
110 110
 
111 111
 	return $array;
112 112
 }
113
-add_filter( 'lsx_customizer_colour_choices', 'test_lsx_customizer_colour_choices' );
113
+add_filter('lsx_customizer_colour_choices', 'test_lsx_customizer_colour_choices');
114 114
 
115 115
 /**
116 116
  * Filter: lsx_customizer_colour_selectors_button
117 117
  *
118 118
  * Add new selectors in "button" group of colours
119 119
  */
120
-function test_lsx_customizer_colour_selectors_button( $css, $colors ) {
120
+function test_lsx_customizer_colour_selectors_button($css, $colors) {
121 121
 	$css .= <<<CSS
122 122
 	
123 123
 	/* Button TEST */
@@ -132,14 +132,14 @@  discard block
 block discarded – undo
132 132
 
133 133
 	return $css;
134 134
 }
135
-add_filter( 'lsx_customizer_colour_selectors_button', 'test_lsx_customizer_colour_selectors_button', 10, 2 );
135
+add_filter('lsx_customizer_colour_selectors_button', 'test_lsx_customizer_colour_selectors_button', 10, 2);
136 136
 
137 137
 /**
138 138
  * Filter: lsx_customizer_colour_selectors_button_cta
139 139
  *
140 140
  * Add new selectors in "button cta" group of colours
141 141
  */
142
-function test_lsx_customizer_colour_selectors_button_cta( $css, $colors ) {
142
+function test_lsx_customizer_colour_selectors_button_cta($css, $colors) {
143 143
 	$css .= <<<CSS
144 144
 	
145 145
 	/* Button CTA TEST */
@@ -154,14 +154,14 @@  discard block
 block discarded – undo
154 154
 
155 155
 	return $css;
156 156
 }
157
-add_filter( 'lsx_customizer_colour_selectors_button_cta', 'test_lsx_customizer_colour_selectors_button_cta', 10, 2 );
157
+add_filter('lsx_customizer_colour_selectors_button_cta', 'test_lsx_customizer_colour_selectors_button_cta', 10, 2);
158 158
 
159 159
 /**
160 160
  * Filter: lsx_customizer_colour_selectors_top_menu
161 161
  *
162 162
  * Add new selectors in "top menu" group of colours
163 163
  */
164
-function test_lsx_customizer_colour_selectors_top_menu( $css, $colors ) {
164
+function test_lsx_customizer_colour_selectors_top_menu($css, $colors) {
165 165
 	$css .= <<<CSS
166 166
 	
167 167
 	/* Top Menu TEST */
@@ -175,14 +175,14 @@  discard block
 block discarded – undo
175 175
 
176 176
 	return $css;
177 177
 }
178
-add_filter( 'lsx_customizer_colour_selectors_top_menu', 'test_lsx_customizer_colour_selectors_top_menu', 10, 2 );
178
+add_filter('lsx_customizer_colour_selectors_top_menu', 'test_lsx_customizer_colour_selectors_top_menu', 10, 2);
179 179
 
180 180
 /**
181 181
  * Filter: lsx_customizer_colour_selectors_header
182 182
  *
183 183
  * Add new selectors in "header" group of colours
184 184
  */
185
-function test_lsx_customizer_colour_selectors_header( $css, $colors ) {
185
+function test_lsx_customizer_colour_selectors_header($css, $colors) {
186 186
 	$css .= <<<CSS
187 187
 	
188 188
 	/* Header TEST */
@@ -197,14 +197,14 @@  discard block
 block discarded – undo
197 197
 
198 198
 	return $css;
199 199
 }
200
-add_filter( 'lsx_customizer_colour_selectors_header', 'test_lsx_customizer_colour_selectors_header', 10, 2 );
200
+add_filter('lsx_customizer_colour_selectors_header', 'test_lsx_customizer_colour_selectors_header', 10, 2);
201 201
 
202 202
 /**
203 203
  * Filter: lsx_customizer_colour_selectors_main_menu
204 204
  *
205 205
  * Add new selectors in "main meun" group of colours
206 206
  */
207
-function test_lsx_customizer_colour_selectors_main_menu( $css, $colors ) {
207
+function test_lsx_customizer_colour_selectors_main_menu($css, $colors) {
208 208
 	$css .= <<<CSS
209 209
 	
210 210
 	/* Main Menu TEST */
@@ -220,14 +220,14 @@  discard block
 block discarded – undo
220 220
 
221 221
 	return $css;
222 222
 }
223
-add_filter( 'lsx_customizer_colour_selectors_main_menu', 'test_lsx_customizer_colour_selectors_main_menu', 10, 2 );
223
+add_filter('lsx_customizer_colour_selectors_main_menu', 'test_lsx_customizer_colour_selectors_main_menu', 10, 2);
224 224
 
225 225
 /**
226 226
  * Filter: lsx_customizer_colour_selectors_banner
227 227
  *
228 228
  * Add new selectors in "banner" group of colours
229 229
  */
230
-function test_lsx_customizer_colour_selectors_banner( $css, $colors ) {
230
+function test_lsx_customizer_colour_selectors_banner($css, $colors) {
231 231
 	$css .= <<<CSS
232 232
 	
233 233
 	/* Banner TEST */
@@ -241,14 +241,14 @@  discard block
 block discarded – undo
241 241
 
242 242
 	return $css;
243 243
 }
244
-add_filter( 'lsx_customizer_colour_selectors_banner', 'test_lsx_customizer_colour_selectors_banner', 10, 2 );
244
+add_filter('lsx_customizer_colour_selectors_banner', 'test_lsx_customizer_colour_selectors_banner', 10, 2);
245 245
 
246 246
 /**
247 247
  * Filter: lsx_customizer_colour_selectors_body
248 248
  *
249 249
  * Add new selectors in "body" group of colours
250 250
  */
251
-function test_lsx_customizer_colour_selectors_body( $css, $colors ) {
251
+function test_lsx_customizer_colour_selectors_body($css, $colors) {
252 252
 	$css .= <<<CSS
253 253
 	
254 254
 	/* Body TEST */
@@ -265,14 +265,14 @@  discard block
 block discarded – undo
265 265
 
266 266
 	return $css;
267 267
 }
268
-add_filter( 'lsx_customizer_colour_selectors_body', 'test_lsx_customizer_colour_selectors_body', 10, 2 );
268
+add_filter('lsx_customizer_colour_selectors_body', 'test_lsx_customizer_colour_selectors_body', 10, 2);
269 269
 
270 270
 /**
271 271
  * Filter: lsx_customizer_colour_selectors_footer_cta
272 272
  *
273 273
  * Add new selectors in "footer cta" group of colours
274 274
  */
275
-function test_lsx_customizer_colour_selectors_footer_cta( $css, $colors ) {
275
+function test_lsx_customizer_colour_selectors_footer_cta($css, $colors) {
276 276
 	$css .= <<<CSS
277 277
 	
278 278
 	/* Footer CTA TEST */
@@ -287,14 +287,14 @@  discard block
 block discarded – undo
287 287
 
288 288
 	return $css;
289 289
 }
290
-add_filter( 'lsx_customizer_colour_selectors_footer_cta', 'test_lsx_customizer_colour_selectors_footer_cta', 10, 2 );
290
+add_filter('lsx_customizer_colour_selectors_footer_cta', 'test_lsx_customizer_colour_selectors_footer_cta', 10, 2);
291 291
 
292 292
 /**
293 293
  * Filter: lsx_customizer_colour_selectors_footer_widgets
294 294
  *
295 295
  * Add new selectors in "footer widgets" group of colours
296 296
  */
297
-function test_lsx_customizer_colour_selectors_footer_widgets( $css, $colors ) {
297
+function test_lsx_customizer_colour_selectors_footer_widgets($css, $colors) {
298 298
 	$css .= <<<CSS
299 299
 	
300 300
 	/* Footer Widgets TEST */
@@ -309,14 +309,14 @@  discard block
 block discarded – undo
309 309
 
310 310
 	return $css;
311 311
 }
312
-add_filter( 'lsx_customizer_colour_selectors_footer_widgets', 'test_lsx_customizer_colour_selectors_footer_widgets', 10, 2 );
312
+add_filter('lsx_customizer_colour_selectors_footer_widgets', 'test_lsx_customizer_colour_selectors_footer_widgets', 10, 2);
313 313
 
314 314
 /**
315 315
  * Filter: lsx_customizer_colour_selectors_footer
316 316
  *
317 317
  * Add new selectors in "footer" group of colours
318 318
  */
319
-function test_lsx_customizer_colour_selectors_footer( $css, $colors ) {
319
+function test_lsx_customizer_colour_selectors_footer($css, $colors) {
320 320
 	$css .= <<<CSS
321 321
 	
322 322
 	/* Footer TEST */
@@ -331,4 +331,4 @@  discard block
 block discarded – undo
331 331
 
332 332
 	return $css;
333 333
 }
334
-add_filter( 'lsx_customizer_colour_selectors_footer', 'test_lsx_customizer_colour_selectors_footer', 10, 2 );
334
+add_filter('lsx_customizer_colour_selectors_footer', 'test_lsx_customizer_colour_selectors_footer', 10, 2);
Please login to merge, or discard this patch.
inc/customizer-font.php 3 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 	/**
14 14
 	 * Constructor
15
-	**/
15
+	 **/
16 16
 	public function __construct($title, $location, $cssDeclaration, $cssClass)
17 17
 	{
18 18
 		$this->title = $title;
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 	/**
25 25
 	 * Getters
26 26
 	 * taken from: http://stackoverflow.com/questions/4478661/getter-and-setter
27
-	**/
27
+	 **/
28 28
 	public function __get($property) 
29 29
 	{
30 30
 		if (property_exists($this, $property)) {
Please login to merge, or discard this patch.
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	return;
4
+}
5
+// Exit if accessed directly
3 6
 
4 7
 /**
5 8
  * Customize Swatch Control Class
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,42 +1,42 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * LSX_Customize_Font_Control Class
6 6
 **/
7
-if( !class_exists( 'WP_Customize_Control' ) ){
7
+if ( ! class_exists('WP_Customize_Control')) {
8 8
 	return;
9 9
 }
10
-class LSX_Customize_Font_Control extends WP_Customize_Control{
10
+class LSX_Customize_Font_Control extends WP_Customize_Control {
11 11
 	public $fonts;
12 12
 
13 13
 	/**
14 14
 	 * Enqueue the styles and scripts
15 15
 	**/
16
-	public function enqueue(){
16
+	public function enqueue() {
17 17
 		// styles
18
-		wp_enqueue_style( 'lsx-font-picker-custom-control', get_template_directory_uri() .'/css/customizer-font.css');
18
+		wp_enqueue_style('lsx-font-picker-custom-control', get_template_directory_uri() . '/css/customizer-font.css');
19 19
 			
20 20
 		// scripts
21
-		wp_enqueue_script( 'lsx-font-picker-custom-control', get_template_directory_uri() .'/js/customizer-font.js');
21
+		wp_enqueue_script('lsx-font-picker-custom-control', get_template_directory_uri() . '/js/customizer-font.js');
22 22
 	}
23 23
 
24 24
 	/**
25 25
 	 * Render the content on the theme customizer page
26 26
 	**/
27
-	public function render_content(){
28
-		if ( empty( $this->choices ) ){
27
+	public function render_content() {
28
+		if (empty($this->choices)) {
29 29
 			// if there are no choices then don't print anything
30 30
 			return;
31 31
 		}
32 32
 		$fonts = array();
33
-		foreach( $this->choices as $slug=>$font ){
33
+		foreach ($this->choices as $slug=>$font) {
34 34
 			$fonts[] = $font['header'];
35 35
 			$fonts[] = $font['body'];
36 36
 			$this->choices[$slug] = $font;
37 37
 		}
38 38
 		
39
-		$this->fonts = new LSX_Google_Font_Collection( $fonts );
39
+		$this->fonts = new LSX_Google_Font_Collection($fonts);
40 40
 
41 41
 		$fonts = $this->fonts->get_font_family_name_array();
42 42
 		//print links to css files
@@ -51,8 +51,8 @@  discard block
 block discarded – undo
51 51
 		<div class="fontPickerCustomControl">
52 52
 			<select <?php $this->link(); ?>>
53 53
 				<?php
54
-				foreach ( $this->choices as $value => $conf ){
55
-					echo '<option value="' . esc_attr( $value ) . '">' . esc_html( $value ) . '</option>';
54
+				foreach ($this->choices as $value => $conf) {
55
+					echo '<option value="' . esc_attr($value) . '">' . esc_html($value) . '</option>';
56 56
 				}
57 57
 				?>
58 58
 			</select>
@@ -60,16 +60,16 @@  discard block
 block discarded – undo
60 60
 				<ul>
61 61
 					<?php
62 62
 					//$cssClassArray = $this->fonts->get_css_class_array();
63
-					foreach ($this->choices as $key => $font){
63
+					foreach ($this->choices as $key => $font) {
64 64
 						$class = null;
65
-						if( $key == $set_value ){
65
+						if ($key == $set_value) {
66 66
 							$class = ' selected';
67 67
 						}
68 68
 						
69 69
 						?>
70
-						<li class="font-choice <?php echo esc_attr( $class ); ?>">
71
-							<div class="<?php echo esc_attr( $font['header']['cssClass'] ); ?>"><?php echo esc_html( $font['header']['title'] ); ?></div>
72
-							<small class="<?php echo esc_attr( $font['body']['cssClass'] ); ?>"><?php echo esc_html( $font['body']['title'] ); ?></small>
70
+						<li class="font-choice <?php echo esc_attr($class); ?>">
71
+							<div class="<?php echo esc_attr($font['header']['cssClass']); ?>"><?php echo esc_html($font['header']['title']); ?></div>
72
+							<small class="<?php echo esc_attr($font['body']['cssClass']); ?>"><?php echo esc_html($font['body']['title']); ?></small>
73 73
 						</li>
74 74
 						<?php
75 75
 					}
Please login to merge, or discard this patch.
inc/customizer-header-layout.php 2 patches
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	return;
4
+}
5
+// Exit if accessed directly
3 6
 
4 7
 /**
5 8
  * Customize Swatch Control Class
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
2
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
3 3
 
4 4
 /**
5 5
  * Customizer Header Swatch Control Class
6 6
  *
7 7
  * @since 1.0.0
8 8
  */
9
-if( !class_exists( 'WP_Customize_Control' ) ){
9
+if ( ! class_exists('WP_Customize_Control')) {
10 10
 	return;
11 11
 }
12 12
 class LSX_Customize_Header_Layout_Control extends WP_Customize_Control {
@@ -38,9 +38,9 @@  discard block
 block discarded – undo
38 38
 	 * @param string $id
39 39
 	 * @param array $args
40 40
 	 */
41
-	public function __construct( $manager, $id, $args = array() ) {
42
-		parent::__construct( $manager, $id, $args );
43
-		if( !empty( $args['choices'] ) ){
41
+	public function __construct($manager, $id, $args = array()) {
42
+		parent::__construct($manager, $id, $args);
43
+		if ( ! empty($args['choices'])) {
44 44
 			$this->layouts = $args['choices'];
45 45
 		}
46 46
 	}
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 	 */
53 53
 	public function enqueue() {
54 54
 		// 
55
-		wp_enqueue_script( 'lsx-header-layout-control', get_template_directory_uri() .'/js/customizer-header-layout.js', array('jquery'), null, true );
55
+		wp_enqueue_script('lsx-header-layout-control', get_template_directory_uri() . '/js/customizer-header-layout.js', array('jquery'), null, true);
56 56
 	}
57 57
 
58 58
 	/**
@@ -62,30 +62,30 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public function render_content() {
64 64
 		
65
-		$post_id    = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) );
65
+		$post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id));
66 66
 		$class = 'customize-control customize-control-' . $this->type;
67 67
 		$value = $this->value();
68 68
 
69 69
 		?>
70 70
 		<label>
71
-			<?php if ( ! empty( $this->label ) ) { ?>
72
-				<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
71
+			<?php if ( ! empty($this->label)) { ?>
72
+				<span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
73 73
 			<?php }
74
-			if ( ! empty( $this->description ) ) { ?>
75
-				<span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>
74
+			if ( ! empty($this->description)) { ?>
75
+				<span class="description customize-control-description"><?php echo esc_html($this->description); ?></span>
76 76
 			<?php } ?>
77 77
 			<div class="header-layouts-selector">
78 78
 			<?php
79
-			foreach( $this->layouts as $layout ){
79
+			foreach ($this->layouts as $layout) {
80 80
 				$sel = 'border: 1px solid transparent;';
81
-				if( $value == $layout ){
81
+				if ($value == $layout) {
82 82
 					$sel = 'border: 1px solid rgb(43, 166, 203);';
83 83
 				}
84
-				echo '<img class="header-layout-button" style="padding:2px;'. esc_attr( $sel ) .'" src="' . esc_attr( get_template_directory_uri() ) .'/img/header-' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">';
84
+				echo '<img class="header-layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/img/header-' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">';
85 85
 			}
86 86
 
87 87
 			?>
88
-			<input <?php $this->link(); ?> class="selected-header-layout <?php echo esc_attr( $class ); ?>" id="<?php echo esc_attr( $post_id ); ?>" type="hidden" value="<?php echo esc_attr( $value ); ?>" <?php $this->input_attrs(); ?>>
88
+			<input <?php $this->link(); ?> class="selected-header-layout <?php echo esc_attr($class); ?>" id="<?php echo esc_attr($post_id); ?>" type="hidden" value="<?php echo esc_attr($value); ?>" <?php $this->input_attrs(); ?>>
89 89
 			</div>
90 90
 		</label>
91 91
 	<?php
Please login to merge, or discard this patch.
inc/woocommerce.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
 add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
70 70
 
71 71
 function lsx_woocommerce_styles() {
72
-    wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), WC_VERSION, 'all' );
73
-    wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), WC_VERSION, 'only screen and (max-width: 767px)' );
74
-    wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), WC_VERSION, 'all' );
72
+	wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), WC_VERSION, 'all' );
73
+	wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), WC_VERSION, 'only screen and (max-width: 767px)' );
74
+	wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), WC_VERSION, 'all' );
75 75
 }
76 76
 add_action( 'wp_enqueue_scripts', 'lsx_woocommerce_styles' );
77 77
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 /*
10 10
  * Hooks
11 11
  */
12
-remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
13
-remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
12
+remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
13
+remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
14 14
 
15 15
 add_action('woocommerce_before_main_content', 'lsx_woocommerce_before_content', 10);
16 16
 add_action('woocommerce_after_main_content', 'lsx_woocommerce_after_content', 10);
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
  * @subpackage woocommerce
26 26
  * @category 	layout
27 27
  */
28
-function lsx_woocommerce_before_content(){ ?>
28
+function lsx_woocommerce_before_content() { ?>
29 29
 	<?php lsx_content_wrap_before(); ?>
30 30
 
31
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
31
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
32 32
 
33 33
 		<?php lsx_content_before(); ?>
34 34
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
  * @subpackage woocommerce
44 44
  * @category 	layout
45 45
  */
46
-function lsx_woocommerce_after_content(){ ?>
46
+function lsx_woocommerce_after_content() { ?>
47 47
 		<?php lsx_content_bottom(); ?>
48 48
 
49 49
 		</main><!-- #main -->
@@ -66,11 +66,11 @@  discard block
 block discarded – undo
66 66
  * @subpackage woocommerce
67 67
  * @category 	styles
68 68
  */
69
-add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );
69
+add_filter('woocommerce_enqueue_styles', '__return_empty_array');
70 70
 
71 71
 function lsx_woocommerce_styles() {
72
-    wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), WC_VERSION, 'all' );
73
-    wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), WC_VERSION, 'only screen and (max-width: 767px)' );
74
-    wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), WC_VERSION, 'all' );
72
+    wp_enqueue_style('woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), WC_VERSION, 'all');
73
+    wp_enqueue_style('woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array('woocommerce-layout'), WC_VERSION, 'only screen and (max-width: 767px)');
74
+    wp_enqueue_style('woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), WC_VERSION, 'all');
75 75
 }
76
-add_action( 'wp_enqueue_scripts', 'lsx_woocommerce_styles' );
77 76
\ No newline at end of file
77
+add_action('wp_enqueue_scripts', 'lsx_woocommerce_styles');
78 78
\ No newline at end of file
Please login to merge, or discard this patch.
comment.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@  discard block
 block discarded – undo
1 1
 <?php 
2
-	if ( isset( $GLOBALS['comment_depth'] ) ) {
3
-		$depth = intval( $GLOBALS['comment_depth'] );
2
+	if (isset($GLOBALS['comment_depth'])) {
3
+		$depth = intval($GLOBALS['comment_depth']);
4 4
 	} else {
5 5
 		$depth = 1;
6 6
 	}
7 7
 
8
-	$max_depth = intval( get_option( 'thread_comments_depth' ) );
8
+	$max_depth = intval(get_option('thread_comments_depth'));
9 9
 ?>
10 10
 
11 11
 <?php echo get_avatar($comment, '64'); ?>
12 12
 <div class="media-body">
13 13
   <h4 class="media-heading"><?php echo get_comment_author_link(); ?></h4>
14
-  <time datetime="<?php echo comment_date('c'); ?>"><a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php printf(esc_html__('%1$s on %2$s', 'lsx'), get_comment_date(),  get_comment_time()); ?></a></time>
14
+  <time datetime="<?php echo comment_date('c'); ?>"><a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php printf(esc_html__('%1$s on %2$s', 'lsx'), get_comment_date(), get_comment_time()); ?></a></time>
15 15
   <?php edit_comment_link(esc_html__('(Edit)', 'lsx'), '', ''); ?>
16 16
   
17 17
   <?php if ($comment->comment_approved == '0') : ?>
@@ -21,4 +21,4 @@  discard block
 block discarded – undo
21 21
 <?php endif; ?>
22 22
 
23 23
 <?php comment_text(); ?>
24
-<?php comment_reply_link( array( 'depth' => $depth, 'max_depth' => $max_depth ) );
25 24
\ No newline at end of file
25
+<?php comment_reply_link(array('depth' => $depth, 'max_depth' => $max_depth));
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
page.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 
15 15
 	<?php lsx_content_wrap_before(); ?>
16 16
 
17
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
17
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
18 18
 
19 19
 		<?php lsx_content_before(); ?>
20 20
 
@@ -22,9 +22,9 @@  discard block
 block discarded – undo
22 22
 
23 23
 			<?php lsx_content_top(); ?>
24 24
 
25
-			<?php while ( have_posts() ) : the_post(); ?>
25
+			<?php while (have_posts()) : the_post(); ?>
26 26
 
27
-				<?php get_template_part( 'content', get_post_type() ); ?>
27
+				<?php get_template_part('content', get_post_type()); ?>
28 28
 
29 29
 			<?php endwhile; // end of the loop. ?>
30 30
 			
Please login to merge, or discard this patch.
archive-jetpack-portfolio.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -10,23 +10,23 @@  discard block
 block discarded – undo
10 10
 
11 11
 			<?php lsx_content_top(); ?>
12 12
 			
13
-			<?php if(is_tax()){ ?> 
13
+			<?php if (is_tax()) { ?> 
14 14
 				<div class="entry-content">		
15 15
 					<?php the_archive_description(); ?>
16 16
 				</div>
17 17
 			<?php } ?>
18 18
 			
19 19
 			<?php
20
-				if ( post_type_exists( 'jetpack-portfolio' ) && have_posts() ) :
20
+				if (post_type_exists('jetpack-portfolio') && have_posts()) :
21 21
 			?>
22 22
 				
23
-				<?php if(!is_tax()){ lsx_portfolio_sorter(); } ?>
23
+				<?php if ( ! is_tax()) { lsx_portfolio_sorter(); } ?>
24 24
 
25 25
 				<div class="filter-items-wrapper lsx-portfolio-wrapper">
26 26
 					<div id="portfolio-infinite-scroll-wrapper" class="filter-items-container lsx-portfolio masonry">
27
-						<?php while ( have_posts() ) : the_post(); ?>
27
+						<?php while (have_posts()) : the_post(); ?>
28 28
 
29
-							<?php get_template_part( 'content', 'portfolio' ); ?>
29
+							<?php get_template_part('content', 'portfolio'); ?>
30 30
 
31 31
 						<?php endwhile; ?>
32 32
 					</div>
@@ -40,17 +40,17 @@  discard block
 block discarded – undo
40 40
 
41 41
 				<section class="no-results not-found">
42 42
 					<header class="page-header">
43
-						<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); ?></h1>
43
+						<h1 class="page-title"><?php esc_html_e('Nothing Found', 'lsx'); ?></h1>
44 44
 					</header><!-- .page-header -->
45 45
 
46 46
 					<div class="page-content">
47
-						<?php if ( current_user_can( 'publish_posts' ) ) : ?>
47
+						<?php if (current_user_can('publish_posts')) : ?>
48 48
 
49
-							<p><?php esc_html_e( 'Ready to publish your first project?', 'lsx' ); ?> <a href="<?php echo esc_url( admin_url( 'post-new.php?post_type=jetpack-portfolio' ) ) ?>"><?php esc_html_e( 'Get started here', 'lsx' ); ?></a></p>
49
+							<p><?php esc_html_e('Ready to publish your first project?', 'lsx'); ?> <a href="<?php echo esc_url(admin_url('post-new.php?post_type=jetpack-portfolio')) ?>"><?php esc_html_e('Get started here', 'lsx'); ?></a></p>
50 50
 
51 51
 						<?php else : ?>
52 52
 
53
-							<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'lsx' ); ?></p>
53
+							<p><?php esc_html_e('It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'lsx'); ?></p>
54 54
 							<?php get_search_form(); ?>
55 55
 
56 56
 						<?php endif; ?>
Please login to merge, or discard this patch.
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,11 +36,14 @@  discard block
 block discarded – undo
36 36
 				
37 37
 				<?php lsx_paging_nav(); ?>
38 38
 
39
-			<?php else : ?>
39
+			<?php else {
40
+	: ?>
40 41
 
41 42
 				<section class="no-results not-found">
42 43
 					<header class="page-header">
43
-						<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); ?></h1>
44
+						<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' );
45
+}
46
+?></h1>
44 47
 					</header><!-- .page-header -->
45 48
 
46 49
 					<div class="page-content">
@@ -48,9 +51,12 @@  discard block
 block discarded – undo
48 51
 
49 52
 							<p><?php esc_html_e( 'Ready to publish your first project?', 'lsx' ); ?> <a href="<?php echo esc_url( admin_url( 'post-new.php?post_type=jetpack-portfolio' ) ) ?>"><?php esc_html_e( 'Get started here', 'lsx' ); ?></a></p>
50 53
 
51
-						<?php else : ?>
54
+						<?php else {
55
+	: ?>
52 56
 
53
-							<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'lsx' ); ?></p>
57
+							<p><?php esc_html_e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'lsx' );
58
+}
59
+?></p>
54 60
 							<?php get_search_form(); ?>
55 61
 
56 62
 						<?php endif; ?>
Please login to merge, or discard this patch.