Completed
Push — master ( 62b20b...ee6676 )
by
unknown
03:31
created
inc/customizer-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
  * Customize 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_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-layout-control', get_template_directory_uri() .'/js/customizer-layout.js', array('jquery'), null, true );
55
+		wp_enqueue_script('lsx-layout-control', get_template_directory_uri() . '/js/customizer-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="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="layout-button" style="padding:2px;'. esc_attr( $sel ) .'" src="' . esc_attr( get_template_directory_uri() ) .'/img/' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">';
84
+				echo '<img class="layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/img/' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">';
85 85
 			}
86 86
 
87 87
 			?>
88
-			<input <?php $this->link(); ?> class="selected-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-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.
functions.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   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
  *
5 5
  * @package lsx
6 6
  */
7
-if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly
7
+if ( ! defined('ABSPATH')) return; // Exit if accessed directly
8 8
 
9 9
 define('LSX_VERSION', '1.7.3');
10 10
 
@@ -21,22 +21,22 @@  discard block
 block discarded – undo
21 21
 require get_template_directory() . '/inc/comment-walker.php';
22 22
 require get_template_directory() . '/inc/jetpack.php';
23 23
 require get_template_directory() . '/inc/lazyload.php';
24
-if(class_exists('BuddyPress')){
24
+if (class_exists('BuddyPress')) {
25 25
 	require get_template_directory() . '/inc/buddypress.php';
26 26
 }
27
-if(class_exists('WooCommerce')){
27
+if (class_exists('WooCommerce')) {
28 28
 	require get_template_directory() . '/inc/woocommerce.php';
29 29
 }
30
-if(class_exists('WP_Job_Manager')){
30
+if (class_exists('WP_Job_Manager')) {
31 31
 	require get_template_directory() . '/inc/wp-job-manager.php';
32 32
 }
33
-if(class_exists('Tribe__Events__Main')){
33
+if (class_exists('Tribe__Events__Main')) {
34 34
 	require get_template_directory() . '/inc/the-events-calendar.php';
35 35
 }
36 36
 require get_template_directory() . '/inc/template-tags.php';
37 37
 require get_template_directory() . '/inc/extras.php';
38 38
 require get_template_directory() . '/inc/wp_bootstrap_navwalker.php';
39
-if(class_exists('Sensei_WC')){
39
+if (class_exists('Sensei_WC')) {
40 40
 	require get_template_directory() . '/inc/sensei.php';
41 41
 }
42 42
 
@@ -48,10 +48,10 @@  discard block
 block discarded – undo
48 48
  * @category	customizer
49 49
  * @return		$lsx_controls array()
50 50
  */
51
-function lsx_customizer_core_controls( $lsx_controls ) {
51
+function lsx_customizer_core_controls($lsx_controls) {
52 52
 	$lsx_controls['sections']['lsx-core'] = array(
53
-		'title'       =>  esc_html__( 'Core Settings', 'lsx' ),
54
-		'description' => __( 'Change the core settings.', 'lsx' ),
53
+		'title'       =>  esc_html__('Core Settings', 'lsx'),
54
+		'description' => __('Change the core settings.', 'lsx'),
55 55
 		'priority'    => 21
56 56
 	);
57 57
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	);
63 63
 
64 64
 	$lsx_controls['fields']['lsx_lazyload_status'] = array(
65
-		'label'         =>  __( 'Lazy Loading Images', 'lsx' ),
65
+		'label'         =>  __('Lazy Loading Images', 'lsx'),
66 66
 		'section'       =>  'lsx-core',
67 67
 		'type'          =>  'checkbox',
68 68
 	);
@@ -74,14 +74,14 @@  discard block
 block discarded – undo
74 74
 	);
75 75
 
76 76
 	$lsx_controls['fields']['lsx_preloader_content_status'] = array(
77
-		'label'         =>  __( 'Preloader Content', 'lsx' ),
77
+		'label'         =>  __('Preloader Content', 'lsx'),
78 78
 		'section'       =>  'lsx-core',
79 79
 		'type'          =>  'checkbox',
80 80
 	);
81 81
 
82 82
 	return $lsx_controls;
83 83
 }
84
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_core_controls' );
84
+add_filter('lsx_customizer_controls', 'lsx_customizer_core_controls');
85 85
 
86 86
 /**
87 87
  * Returns an array of the colour scheme picker.
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
  * @category	customizer
92 92
  * @return		$lsx_controls array()
93 93
  */
94
-function lsx_customizer_colour_scheme_controls( $lsx_controls ) {
94
+function lsx_customizer_colour_scheme_controls($lsx_controls) {
95 95
 	global $customizer_colour_names;
96 96
 	global $customizer_colour_choices;
97 97
 	
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	);
103 103
 
104 104
 	$lsx_controls['fields']['color_scheme'] = array(
105
-		'label'         =>  esc_html__( 'Base Color Scheme', 'lsx' ),
105
+		'label'         =>  esc_html__('Base Color Scheme', 'lsx'),
106 106
 		'section'       =>  'colors',
107 107
 		'type'          =>  'select',
108 108
 		'priority'      =>  1,
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
 	$counter = 0;
114 114
 
115
-	foreach ( $customizer_colour_names as $key => $value ) {
115
+	foreach ($customizer_colour_names as $key => $value) {
116 116
 		$lsx_controls['settings'][$key] = array(
117 117
 			'default'       =>  $customizer_colour_choices['default']['colors'][$counter],
118 118
 			'type'	        =>  'theme_mod',
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
 	return $lsx_controls;
133 133
 }
134
-add_filter( 'lsx_customizer_controls', 'lsx_customizer_colour_scheme_controls' );
134
+add_filter('lsx_customizer_controls', 'lsx_customizer_colour_scheme_controls');
135 135
 
136 136
 /**
137 137
  * Returns an array of the layout panel.
@@ -142,56 +142,56 @@  discard block
 block discarded – undo
142 142
  * @return		$lsx_controls array()
143 143
  */
144 144
 function lsx_customizer_layout_controls($lsx_controls) {
145
-	$lsx_controls['settings']['lsx_header_layout']  = array(
145
+	$lsx_controls['settings']['lsx_header_layout'] = array(
146 146
 			'default'       =>  'inline', //Default setting/value to save
147 147
 			'type'        =>  'theme_mod', //Is this an 'option' or a 'theme_mod'?
148 148
 			'transport'     =>  'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)?
149 149
 	);
150 150
 	$lsx_controls['fields']['lsx_header_layout'] = array(
151
-			'label'         =>  __('Header','lsx'),
151
+			'label'         =>  __('Header', 'lsx'),
152 152
 			'section'       =>  'lsx-layout',
153 153
 			'control'   =>  'LSX_Customize_Header_Layout_Control',
154
-			'choices'		=>	array('central','expanded','inline')
154
+			'choices'		=>	array('central', 'expanded', 'inline')
155 155
 	);	
156 156
 	$lsx_controls['sections']['lsx-layout'] = array(
157
-			'title'       =>  esc_html__( 'Layout', 'lsx' ),
158
-			'description' => __( 'Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx' ),
157
+			'title'       =>  esc_html__('Layout', 'lsx'),
158
+			'description' => __('Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx'),
159 159
 			'priority' => 22
160 160
 	);
161
-	$lsx_controls['settings']['lsx_layout']  = array(
161
+	$lsx_controls['settings']['lsx_layout'] = array(
162 162
 			'default'       =>  '2cr', //Default setting/value to save
163 163
 			'type'        =>  'theme_mod', //Is this an 'option' or a 'theme_mod'?
164 164
 			'transport'     =>  'refresh', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)?
165 165
 	);
166
-	$lsx_controls['settings']['lsx_header_fixed']  = array(
166
+	$lsx_controls['settings']['lsx_header_fixed'] = array(
167 167
 			'default'       =>  false, //Default setting/value to save
168 168
 			'sanitize_callback' => 'lsx_sanitize_checkbox',
169 169
 			'transport'     =>  'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)?
170 170
 	);
171 171
 	$lsx_controls['fields']['lsx_header_fixed'] = array(
172
-			'label'         =>  __('Fixed Header','lsx'),
172
+			'label'         =>  __('Fixed Header', 'lsx'),
173 173
 			'section'       =>  'lsx-layout',
174 174
 			'type'       =>  'checkbox',
175 175
 	);
176
-	$lsx_controls['settings']['lsx_header_search']  = array(
176
+	$lsx_controls['settings']['lsx_header_search'] = array(
177 177
 			'default'       =>  false, //Default setting/value to save
178 178
 			'sanitize_callback' => 'lsx_sanitize_checkbox',
179 179
 			'transport'     =>  'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)?
180 180
 	);
181 181
 	$lsx_controls['fields']['lsx_header_search'] = array(
182
-			'label'         =>  __('Search Box in Header','lsx'),
182
+			'label'         =>  __('Search Box in Header', 'lsx'),
183 183
 			'section'       =>  'lsx-layout',
184 184
 			'type'       =>  'checkbox',
185 185
 	);	
186 186
 	$lsx_controls['fields']['lsx_layout'] = array(
187
-			'label'         =>  __('Body','lsx'),
187
+			'label'         =>  __('Body', 'lsx'),
188 188
 			'section'       =>  'lsx-layout',
189 189
 			'control'   =>  'LSX_Customize_Layout_Control',
190
-			'choices'		=>	array('1c','2cr','2cl')
190
+			'choices'		=>	array('1c', '2cr', '2cl')
191 191
 	);	
192 192
 	return $lsx_controls;
193 193
 }
194
-add_filter('lsx_customizer_controls','lsx_customizer_layout_controls');
194
+add_filter('lsx_customizer_controls', 'lsx_customizer_layout_controls');
195 195
 
196 196
 /**
197 197
  * Returns an array of the font controls.
@@ -203,11 +203,11 @@  discard block
 block discarded – undo
203 203
  */
204 204
 function lsx_customizer_font_controls($lsx_controls) {
205 205
 	$lsx_controls['sections']['lsx-font'] = array(
206
-			'title'       =>  __( 'Font', 'lsx' ),
206
+			'title'       =>  __('Font', 'lsx'),
207 207
 			'description' => 'Change the fonts sitewide.',
208 208
 			'priority' => 41
209 209
 	);
210
-	$lsx_controls['settings']['lsx_font']  = array(
210
+	$lsx_controls['settings']['lsx_font'] = array(
211 211
 			'default'       =>  'raleway_open_sans', //Default setting/value to save
212 212
 			'type'        =>  'theme_mod', //Is this an 'option' or a 'theme_mod'?
213 213
 			'transport'     =>  'refresh', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)?
@@ -221,13 +221,13 @@  discard block
 block discarded – undo
221 221
 			'choices'   =>  array(
222 222
 					'raleway_open_sans' => array(
223 223
 							'header'  => array(
224
-									"title" => __( 'Raleway', 'lsx' ),
224
+									"title" => __('Raleway', 'lsx'),
225 225
 									"location" => "Raleway",
226 226
 									"cssDeclaration" => "'Raleway', sans-serif",
227 227
 									"cssClass" => "raleway",
228 228
 							),
229 229
 							'body'  => array(
230
-									"title" => __( 'Open Sans', 'lsx' ),
230
+									"title" => __('Open Sans', 'lsx'),
231 231
 									"location" => "Open+Sans",
232 232
 									"cssDeclaration" => "'Open Sans', sans-serif",
233 233
 									"cssClass" => "openSans"
@@ -235,13 +235,13 @@  discard block
 block discarded – undo
235 235
 					),
236 236
 					'noto_serif_noto_sans' => array(
237 237
 							'header'  => array(
238
-									"title" => __( 'Noto Serif', 'lsx' ),
238
+									"title" => __('Noto Serif', 'lsx'),
239 239
 									"location" => "Noto+Serif",
240 240
 									"cssDeclaration" => "'Noto Serif', serif",
241 241
 									"cssClass" => "notoSerif",
242 242
 							),
243 243
 							'body'  => array(
244
-									"title" => __( 'Noto Sans', 'lsx' ),
244
+									"title" => __('Noto Sans', 'lsx'),
245 245
 									"location" => "Noto+Sans",
246 246
 									"cssDeclaration" => "'Noto Sans', sans-serif",
247 247
 									"cssClass" => "notoSans",
@@ -249,13 +249,13 @@  discard block
 block discarded – undo
249 249
 					),
250 250
 					'noto_sans_noto_sans' => array(
251 251
 					'header'  => array(
252
-					"title" => __( 'Noto Sans', 'lsx' ),
252
+					"title" => __('Noto Sans', 'lsx'),
253 253
 					"location" => "Noto+Sans",
254 254
 					"cssDeclaration" => "'Noto Sans', sans-serif",
255 255
 					"cssClass" => "notoSans",
256 256
 					),
257 257
 					'body'  => array(
258
-					"title" => __( 'Noto Sans', 'lsx' ),
258
+					"title" => __('Noto Sans', 'lsx'),
259 259
 					"location" => "Noto+Sans",
260 260
 					"cssDeclaration" => "'Noto Sans', sans-serif",
261 261
 					"cssClass" => "notoSans",
@@ -263,13 +263,13 @@  discard block
 block discarded – undo
263 263
 					),
264 264
 					'alegreya_open_sans' => array(
265 265
 					'header'  => array(
266
-					"title" => __( 'Alegreya', 'lsx' ),
266
+					"title" => __('Alegreya', 'lsx'),
267 267
 					"location" => "Alegreya",
268 268
 					"cssDeclaration" => "'Alegreya', serif",
269 269
 					"cssClass" => "alegreya",
270 270
 					),
271 271
 					'body'  => array(
272
-					"title" => __( 'Open Sans', 'lsx' ),
272
+					"title" => __('Open Sans', 'lsx'),
273 273
 					"location" => "Open+Sans",
274 274
 					"cssDeclaration" => "'Open Sans', sans-serif",
275 275
 					"cssClass" => "openSans"
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
 	);	
281 281
 	return $lsx_controls;
282 282
 }
283
-add_filter('lsx_customizer_controls','lsx_customizer_font_controls');
283
+add_filter('lsx_customizer_controls', 'lsx_customizer_font_controls');
284 284
 
285 285
 /**
286 286
  * Returns an array of $controls for the customizer class to generate.
@@ -290,12 +290,12 @@  discard block
 block discarded – undo
290 290
  * @category	customizer
291 291
  * @return		$lsx_controls array()
292 292
  */
293
-function lsx_get_customizer_controls(){
293
+function lsx_get_customizer_controls() {
294 294
 	$lsx_controls = array();
295 295
 	$lsx_controls = apply_filters('lsx_customizer_controls', $lsx_controls);
296 296
 	return $lsx_controls;
297 297
 }
298
-$lsx_customizer = new LSX_Theme_Customizer( lsx_get_customizer_controls() );
298
+$lsx_customizer = new LSX_Theme_Customizer(lsx_get_customizer_controls());
299 299
 
300
-add_image_size( 'lsx-thumbnail-wide', 350, 230, true );
301
-add_image_size( 'lsx-thumbnail-single', 750, 350, true );
302 300
\ No newline at end of file
301
+add_image_size('lsx-thumbnail-wide', 350, 230, true);
302
+add_image_size('lsx-thumbnail-single', 750, 350, true);
303 303
\ No newline at end of file
Please login to merge, or discard this patch.
page-templates/template-full-width.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@  discard block
 block discarded – undo
13 13
 
14 14
 			<?php lsx_content_top(); ?>		
15 15
 			
16
-				<?php while ( have_posts() ) : the_post(); ?>
16
+				<?php while (have_posts()) : the_post(); ?>
17 17
 		
18
-					<?php get_template_part( 'content', 'page' ); ?>
18
+					<?php get_template_part('content', 'page'); ?>
19 19
 		
20 20
 				<?php endwhile; // end of the loop. ?>		
21 21
 				
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 			
24 24
 			<?php
25 25
 				// If comments are open or we have at least one comment, load up the comment template
26
-				if ( comments_open() || '0' != get_comments_number() ) :
26
+				if (comments_open() || '0' != get_comments_number()) :
27 27
 					comments_template();
28 28
 				endif;
29 29
 			?>			
Please login to merge, or discard this patch.
archive.php 2 patches
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,12 @@
 block discarded – undo
44 44
 			
45 45
 			<?php lsx_paging_nav(); ?>
46 46
 
47
-		<?php else : ?>
47
+		<?php else {
48
+	: ?>
48 49
 
49
-			<?php get_template_part( 'content', 'none' ); ?>
50
+			<?php get_template_part( 'content', 'none' );
51
+}
52
+?>
50 53
 
51 54
 		<?php endif; ?>
52 55
 
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 
12 12
 	<?php lsx_content_wrap_before(); ?>
13 13
 
14
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
14
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
15 15
 
16 16
 		<?php lsx_content_before(); ?>
17 17
 
@@ -19,12 +19,12 @@  discard block
 block discarded – undo
19 19
 
20 20
 		<?php lsx_content_top(); ?>
21 21
 
22
-		<?php if ( have_posts() ) : ?>
22
+		<?php if (have_posts()) : ?>
23 23
 			
24 24
 			<?php 
25
-			$layout = get_theme_mod('lsx_layout','2cr');
26
-			$layout = apply_filters( 'lsx_layout', $layout );
27
-			if('1c' === $layout && !is_post_type_archive('tribe_events')){
25
+			$layout = get_theme_mod('lsx_layout', '2cr');
26
+			$layout = apply_filters('lsx_layout', $layout);
27
+			if ('1c' === $layout && ! is_post_type_archive('tribe_events')) {
28 28
 				lsx_breadcrumbs();
29 29
 			}
30 30
 			?>
@@ -33,14 +33,14 @@  discard block
 block discarded – undo
33 33
 			?>			
34 34
 
35 35
 			<?php /* Start the Loop */ ?>
36
-			<?php while ( have_posts() ) : the_post(); ?>
36
+			<?php while (have_posts()) : the_post(); ?>
37 37
 
38 38
 				<?php
39 39
 					/* Include the Post-Format-specific template for the content.
40 40
 					 * If you want to override this in a child theme, then include a file
41 41
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
42 42
 					 */
43
-					get_template_part( 'content', get_post_format() );
43
+					get_template_part('content', get_post_format());
44 44
 				?>
45 45
 
46 46
 			<?php endwhile; ?>
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
 		<?php else : ?>
51 51
 
52
-			<?php get_template_part( 'content', 'none' ); ?>
52
+			<?php get_template_part('content', 'none'); ?>
53 53
 
54 54
 		<?php endif; ?>
55 55
 
Please login to merge, or discard this patch.
index.php 2 patches
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,12 @@
 block discarded – undo
44 44
 			
45 45
 			<?php lsx_paging_nav(); ?>
46 46
 
47
-		<?php else : ?>
47
+		<?php else {
48
+	: ?>
48 49
 
49
-			<?php get_template_part( 'content', 'none' ); ?>
50
+			<?php get_template_part( 'content', 'none' );
51
+}
52
+?>
50 53
 
51 54
 		<?php endif; ?>
52 55
 
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
 	<?php lsx_content_wrap_before(); ?>
17 17
 
18
-	<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
18
+	<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
19 19
 
20 20
 		<?php lsx_content_before(); ?>
21 21
 
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
 		
24 24
 		<?php lsx_content_top(); ?>
25 25
 
26
-		<?php if ( have_posts() ) : ?>
26
+		<?php if (have_posts()) : ?>
27 27
 
28 28
 			<?php /* Start the Loop */ ?>
29
-			<?php while ( have_posts() ) : the_post(); ?>
29
+			<?php while (have_posts()) : the_post(); ?>
30 30
 
31 31
 				<?php
32 32
 					/* Include the Post-Format-specific template for the content.
33 33
 					 * If you want to override this in a child theme, then include a file
34 34
 					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
35 35
 					 */
36
-					get_template_part( 'content', get_post_format() );
36
+					get_template_part('content', get_post_format());
37 37
 				?>
38 38
 
39 39
 			<?php endwhile; ?>
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 			
43 43
 		<?php else : ?>
44 44
 
45
-			<?php get_template_part( 'content', 'none' ); ?>
45
+			<?php get_template_part('content', 'none'); ?>
46 46
 
47 47
 		<?php endif; ?>
48 48
 
@@ -56,5 +56,5 @@  discard block
 block discarded – undo
56 56
 
57 57
 	<?php lsx_content_wrap_after(); ?>
58 58
 
59
-<?php get_sidebar( 'sidebar' ); ?>
59
+<?php get_sidebar('sidebar'); ?>
60 60
 <?php get_footer();
61 61
\ No newline at end of file
Please login to merge, or discard this patch.
inc/customizer-colour-options.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   +61 added lines, -61 removed lines patch added patch discarded remove patch
@@ -1,66 +1,66 @@  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
 global $customizer_colour_names;
5 5
 global $customizer_colour_choices;
6 6
 
7
-$customizer_colour_names = apply_filters( 'lsx_customizer_colour_names', array(
8
-	'button_background_color'           => esc_html__( 'BUTTON: Background', 'lsx' ),
9
-	'button_background_hover_color'     => esc_html__( 'BUTTON: Background (hover)', 'lsx' ),
10
-	'button_text_color'                 => esc_html__( 'BUTTON: Text', 'lsx' ),
11
-	'button_text_color_hover'           => esc_html__( 'BUTTON: Text (hover)', 'lsx' ),
7
+$customizer_colour_names = apply_filters('lsx_customizer_colour_names', array(
8
+	'button_background_color'           => esc_html__('BUTTON: Background', 'lsx'),
9
+	'button_background_hover_color'     => esc_html__('BUTTON: Background (hover)', 'lsx'),
10
+	'button_text_color'                 => esc_html__('BUTTON: Text', 'lsx'),
11
+	'button_text_color_hover'           => esc_html__('BUTTON: Text (hover)', 'lsx'),
12 12
 
13
-	'button_cta_background_color'       => esc_html__( 'BUTTON CTA: Background', 'lsx' ),
14
-	'button_cta_background_hover_color' => esc_html__( 'BUTTON CTA: Background (hover)', 'lsx' ),
15
-	'button_cta_text_color'             => esc_html__( 'BUTTON CTA: Text', 'lsx' ),
16
-	'button_cta_text_color_hover'       => esc_html__( 'BUTTON CTA: Text (hover)', 'lsx' ),
13
+	'button_cta_background_color'       => esc_html__('BUTTON CTA: Background', 'lsx'),
14
+	'button_cta_background_hover_color' => esc_html__('BUTTON CTA: Background (hover)', 'lsx'),
15
+	'button_cta_text_color'             => esc_html__('BUTTON CTA: Text', 'lsx'),
16
+	'button_cta_text_color_hover'       => esc_html__('BUTTON CTA: Text (hover)', 'lsx'),
17 17
 
18
-	'top_menu_background_color'         => esc_html__( 'TOP MENU: Background', 'lsx' ),
19
-	'top_menu_text_color'               => esc_html__( 'TOP MENU: Text', 'lsx' ),
20
-	'top_menu_text_hover_color'         => esc_html__( 'TOP MENU: Text (hover)', 'lsx' ),
18
+	'top_menu_background_color'         => esc_html__('TOP MENU: Background', 'lsx'),
19
+	'top_menu_text_color'               => esc_html__('TOP MENU: Text', 'lsx'),
20
+	'top_menu_text_hover_color'         => esc_html__('TOP MENU: Text (hover)', 'lsx'),
21 21
 
22
-	'header_background_color'           => esc_html__( 'HEADER: Background', 'lsx' ),
23
-	'header_title_color'                => esc_html__( 'HEADER: Title', 'lsx' ),
24
-	'header_title_hover_color'          => esc_html__( 'HEADER: Title (hover)', 'lsx' ),
25
-	'header_description_color'          => esc_html__( 'HEADER: Description', 'lsx' ),
22
+	'header_background_color'           => esc_html__('HEADER: Background', 'lsx'),
23
+	'header_title_color'                => esc_html__('HEADER: Title', 'lsx'),
24
+	'header_title_hover_color'          => esc_html__('HEADER: Title (hover)', 'lsx'),
25
+	'header_description_color'          => esc_html__('HEADER: Description', 'lsx'),
26 26
 
27
-	'main_menu_background_hover1_color' => esc_html__( 'MENU: Background (L1 hover)', 'lsx' ),
28
-	'main_menu_background_hover2_color' => esc_html__( 'MENU: Background (L2 hover)', 'lsx' ),
29
-	'main_menu_text_color'              => esc_html__( 'MENU: Text (L1)', 'lsx' ),
30
-	'main_menu_text_hover1_color'       => esc_html__( 'MENU: Text (L1 hover)', 'lsx' ),
31
-	'main_menu_text_hover2_color'       => esc_html__( 'MENU: Text (L2 hover)', 'lsx' ),
27
+	'main_menu_background_hover1_color' => esc_html__('MENU: Background (L1 hover)', 'lsx'),
28
+	'main_menu_background_hover2_color' => esc_html__('MENU: Background (L2 hover)', 'lsx'),
29
+	'main_menu_text_color'              => esc_html__('MENU: Text (L1)', 'lsx'),
30
+	'main_menu_text_hover1_color'       => esc_html__('MENU: Text (L1 hover)', 'lsx'),
31
+	'main_menu_text_hover2_color'       => esc_html__('MENU: Text (L2 hover)', 'lsx'),
32 32
 
33
-	'banner_background_color'           => esc_html__( 'BANNER: Background', 'lsx' ),
34
-	'banner_text_color'                 => esc_html__( 'BANNER: Text', 'lsx' ),
35
-	'banner_text_image_color'           => esc_html__( 'BANNER: Text (over image)', 'lsx' ),
33
+	'banner_background_color'           => esc_html__('BANNER: Background', 'lsx'),
34
+	'banner_text_color'                 => esc_html__('BANNER: Text', 'lsx'),
35
+	'banner_text_image_color'           => esc_html__('BANNER: Text (over image)', 'lsx'),
36 36
 
37
-	'body_background_color'             => esc_html__( 'BODY: Background', 'lsx' ),
38
-	'body_line_color'                   => esc_html__( 'BODY: Line', 'lsx' ),
39
-	'body_text_heading_color'           => esc_html__( 'BODY: Text (heading)', 'lsx' ),
40
-	'body_text_color'                   => esc_html__( 'BODY: Text', 'lsx' ),
41
-	'body_link_color'                   => esc_html__( 'BODY: Link', 'lsx' ),
42
-	'body_link_hover_color'             => esc_html__( 'BODY: Link (hover)', 'lsx' ),
37
+	'body_background_color'             => esc_html__('BODY: Background', 'lsx'),
38
+	'body_line_color'                   => esc_html__('BODY: Line', 'lsx'),
39
+	'body_text_heading_color'           => esc_html__('BODY: Text (heading)', 'lsx'),
40
+	'body_text_color'                   => esc_html__('BODY: Text', 'lsx'),
41
+	'body_link_color'                   => esc_html__('BODY: Link', 'lsx'),
42
+	'body_link_hover_color'             => esc_html__('BODY: Link (hover)', 'lsx'),
43 43
 
44
-	'footer_cta_background_color'       => esc_html__( 'FOOTER CTA: Background', 'lsx' ),
45
-	'footer_cta_text_color'             => esc_html__( 'FOOTER CTA: Text', 'lsx' ),
46
-	'footer_cta_link_color'             => esc_html__( 'FOOTER CTA: Link', 'lsx' ),
47
-	'footer_cta_link_hover_color'       => esc_html__( 'FOOTER CTA: Link (hover)', 'lsx' ),
44
+	'footer_cta_background_color'       => esc_html__('FOOTER CTA: Background', 'lsx'),
45
+	'footer_cta_text_color'             => esc_html__('FOOTER CTA: Text', 'lsx'),
46
+	'footer_cta_link_color'             => esc_html__('FOOTER CTA: Link', 'lsx'),
47
+	'footer_cta_link_hover_color'       => esc_html__('FOOTER CTA: Link (hover)', 'lsx'),
48 48
 
49
-	'footer_widgets_background_color'   => esc_html__( 'FOOTER WIDGETS: Background', 'lsx' ),
50
-	'footer_widgets_text_color'         => esc_html__( 'FOOTER WIDGETS: Text', 'lsx' ),
51
-	'footer_widgets_link_color'         => esc_html__( 'FOOTER WIDGETS: Link', 'lsx' ),
52
-	'footer_widgets_link_hover_color'   => esc_html__( 'FOOTER WIDGETS: Link (hover)', 'lsx' ),
49
+	'footer_widgets_background_color'   => esc_html__('FOOTER WIDGETS: Background', 'lsx'),
50
+	'footer_widgets_text_color'         => esc_html__('FOOTER WIDGETS: Text', 'lsx'),
51
+	'footer_widgets_link_color'         => esc_html__('FOOTER WIDGETS: Link', 'lsx'),
52
+	'footer_widgets_link_hover_color'   => esc_html__('FOOTER WIDGETS: Link (hover)', 'lsx'),
53 53
 
54
-	'footer_background_color'           => esc_html__( 'FOOTER: Background', 'lsx' ),
55
-	'footer_text_color'                 => esc_html__( 'FOOTER: Text', 'lsx' ),
56
-	'footer_link_color'                 => esc_html__( 'FOOTER: Link', 'lsx' ),
57
-	'footer_link_hover_color'           => esc_html__( 'FOOTER: Link (hover)', 'lsx' )
58
-) );
54
+	'footer_background_color'           => esc_html__('FOOTER: Background', 'lsx'),
55
+	'footer_text_color'                 => esc_html__('FOOTER: Text', 'lsx'),
56
+	'footer_link_color'                 => esc_html__('FOOTER: Link', 'lsx'),
57
+	'footer_link_hover_color'           => esc_html__('FOOTER: Link (hover)', 'lsx')
58
+));
59 59
 
60
-$customizer_colour_choices = apply_filters( 'lsx_customizer_colour_choices', array(
60
+$customizer_colour_choices = apply_filters('lsx_customizer_colour_choices', array(
61 61
 	'default' => array(
62
-		'label'  => __( 'Default', 'lsx' ),
63
-		'colors' => apply_filters( 'lsx_customizer_colour_choices_default', array(
62
+		'label'  => __('Default', 'lsx'),
63
+		'colors' => apply_filters('lsx_customizer_colour_choices_default', array(
64 64
 			// Button
65 65
 			'#428bca', '#2a6496', '#ffffff', '#ffffff',
66 66
 			// Button CTA
@@ -81,11 +81,11 @@  discard block
 block discarded – undo
81 81
 			'#333333', '#eeeeee', '#dddddd', '#cccccc',
82 82
 			// Footer
83 83
 			'#232222', '#ffffff', '#337ab7', '#969696'
84
-		) )
84
+		))
85 85
 	),
86 86
 	'red' => array(
87
-		'label'  => __( 'Red', 'lsx' ),
88
-		'colors' => apply_filters( 'lsx_customizer_colour_choices_red', array(
87
+		'label'  => __('Red', 'lsx'),
88
+		'colors' => apply_filters('lsx_customizer_colour_choices_red', array(
89 89
 			// Button
90 90
 			'#b64d3f', '#87291c', '#ffffff', '#ffffff',
91 91
 			// Button CTA
@@ -106,11 +106,11 @@  discard block
 block discarded – undo
106 106
 			'#333333', '#eeeeee', '#dddddd', '#cccccc',
107 107
 			// Footer
108 108
 			'#232222', '#ffffff', '#b64d3f', '#969696'
109
-		) )
109
+		))
110 110
 	),
111 111
 	'orange' => array(
112
-		'label'  => __( 'Orange', 'lsx' ),
113
-		'colors' => apply_filters( 'lsx_customizer_colour_choices_orange', array(
112
+		'label'  => __('Orange', 'lsx'),
113
+		'colors' => apply_filters('lsx_customizer_colour_choices_orange', array(
114 114
 			// Button
115 115
 			'#fbaf3f', '#e49435', '#260e03', '#260e03',
116 116
 			// Button CTA
@@ -131,11 +131,11 @@  discard block
 block discarded – undo
131 131
 			'#333333', '#eeeeee', '#dddddd', '#cccccc',
132 132
 			// Footer
133 133
 			'#232222', '#ffffff', '#e4701e', '#969696'
134
-		) )
134
+		))
135 135
 	),
136 136
 	'green' => array(
137
-		'label'  => __( 'Green', 'lsx' ),
138
-		'colors' => apply_filters( 'lsx_customizer_colour_choices_green', array(
137
+		'label'  => __('Green', 'lsx'),
138
+		'colors' => apply_filters('lsx_customizer_colour_choices_green', array(
139 139
 			// Button
140 140
 			'#596b46', '#3d4a30', '#ffffff', '#ffffff',
141 141
 			// Button CTA
@@ -156,11 +156,11 @@  discard block
 block discarded – undo
156 156
 			'#333333', '#eeeeee', '#dddddd', '#cccccc',
157 157
 			// Footer
158 158
 			'#232222', '#ffffff', '#596b46', '#969696'
159
-		) )
159
+		))
160 160
 	),
161 161
 	'brown' => array(
162
-		'label'  => __( 'Brown', 'lsx' ),
163
-		'colors' => apply_filters( 'lsx_customizer_colour_choices_brown', array(
162
+		'label'  => __('Brown', 'lsx'),
163
+		'colors' => apply_filters('lsx_customizer_colour_choices_brown', array(
164 164
 			// Button
165 165
 			'#8c6a45', '#5b452e', '#ffffff', '#ffffff',
166 166
 			// Button CTA
@@ -181,6 +181,6 @@  discard block
 block discarded – undo
181 181
 			'#333333', '#eeeeee', '#dddddd', '#cccccc',
182 182
 			// Footer
183 183
 			'#232222', '#ffffff', '#8c6a45', '#969696'
184
-		) )
184
+		))
185 185
 	)
186
-) );
186
+));
Please login to merge, or discard this patch.
inc/customizer-core.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   +7 added lines, -7 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
  * Customize 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_Core_Control extends WP_Customize_Control {
@@ -22,13 +22,13 @@  discard block
 block discarded – undo
22 22
 	public function render_content() {
23 23
 		?> 
24 24
 		<label>
25
-			<?php if ( ! empty( $this->label ) ) { ?>
26
-				<span class="customize-control-title"><?php echo esc_html( $this->label ) ?></span>
25
+			<?php if ( ! empty($this->label)) { ?>
26
+				<span class="customize-control-title"><?php echo esc_html($this->label) ?></span>
27 27
 			<?php }
28
-			if ( ! empty( $this->description ) ) { ?>
29
-				<span class="description customize-control-description"><?php echo esc_html( $this->description ) ?></span>
28
+			if ( ! empty($this->description)) { ?>
29
+				<span class="description customize-control-description"><?php echo esc_html($this->description) ?></span>
30 30
 			<?php } ?>
31
-			<input <?php $this->link() ?> type="checkbox" value="<?php echo esc_attr( $this->value() ) ?>" <?php $this->input_attrs() ?>>
31
+			<input <?php $this->link() ?> type="checkbox" value="<?php echo esc_attr($this->value()) ?>" <?php $this->input_attrs() ?>>
32 32
 		</label>
33 33
 	<?php
34 34
 	}
Please login to merge, or discard this patch.
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.