Completed
Push — master ( 91d137...969fa9 )
by Fernando
05:03
created
includes/layout.php 1 patch
Spacing   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage layout
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_layout_selector' ) ) :
13
+if ( ! function_exists('lsx_layout_selector')) :
14 14
 
15 15
 	/**
16 16
 	 * Layout selector.
@@ -18,14 +18,14 @@  discard block
 block discarded – undo
18 18
 	 * @package    lsx
19 19
 	 * @subpackage layout
20 20
 	 */
21
-	function lsx_layout_selector( $class, $area = 'site' ) {
21
+	function lsx_layout_selector($class, $area = 'site') {
22 22
 		$return_class = '';
23
-		$layout       = get_theme_mod( 'lsx_layout', '2cr' );
24
-		$layout       = apply_filters( 'lsx_layout', $layout );
23
+		$layout       = get_theme_mod('lsx_layout', '2cr');
24
+		$layout       = apply_filters('lsx_layout', $layout);
25 25
 		$default_size = 'sm';
26
-		$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
26
+		$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
27 27
 
28
-		switch ( $layout ) {
28
+		switch ($layout) {
29 29
 			case '1c':
30 30
 				$main_class    = 'col-' . $size . '-12';
31 31
 				$sidebar_class = 'col-' . $size . '-12';
@@ -44,12 +44,12 @@  discard block
 block discarded – undo
44 44
 				break;
45 45
 		}
46 46
 
47
-		if ( 'main' === $class ) {
48
-			$return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size );
47
+		if ('main' === $class) {
48
+			$return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size);
49 49
 		}
50 50
 
51
-		if ( 'sidebar' === $class ) {
52
-			$return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size );
51
+		if ('sidebar' === $class) {
52
+			$return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size);
53 53
 		}
54 54
 
55 55
 		return $return_class;
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
 
58 58
 endif;
59 59
 
60
-if ( ! function_exists( 'lsx_main_class' ) ) :
60
+if ( ! function_exists('lsx_main_class')) :
61 61
 
62 62
 	/**
63 63
 	 * .main classes.
@@ -66,12 +66,12 @@  discard block
 block discarded – undo
66 66
 	 * @subpackage layout
67 67
 	 */
68 68
 	function lsx_main_class() {
69
-		return lsx_layout_selector( 'main' );
69
+		return lsx_layout_selector('main');
70 70
 	}
71 71
 
72 72
 endif;
73 73
 
74
-if ( ! function_exists( 'lsx_sidebar_class' ) ) :
74
+if ( ! function_exists('lsx_sidebar_class')) :
75 75
 
76 76
 	/**
77 77
 	 * .sidebar classes.
@@ -80,12 +80,12 @@  discard block
 block discarded – undo
80 80
 	 * @subpackage layout
81 81
 	 */
82 82
 	function lsx_sidebar_class() {
83
-		return lsx_layout_selector( 'sidebar' );
83
+		return lsx_layout_selector('sidebar');
84 84
 	}
85 85
 
86 86
 endif;
87 87
 
88
-if ( ! function_exists( 'lsx_header_classes' ) ) :
88
+if ( ! function_exists('lsx_header_classes')) :
89 89
 
90 90
 	/**
91 91
 	 * Output the classes for the header.
@@ -93,19 +93,19 @@  discard block
 block discarded – undo
93 93
 	 * @package    lsx
94 94
 	 * @subpackage layout
95 95
 	 */
96
-	function lsx_header_classes( $additional = false ) {
96
+	function lsx_header_classes($additional = false) {
97 97
 		$classes = 'banner navbar navbar-default';
98 98
 
99
-		if ( false !== $additional ) {
99
+		if (false !== $additional) {
100 100
 			$classes .= ' ' . $additional;
101 101
 		}
102 102
 
103
-		echo esc_attr( $classes );
103
+		echo esc_attr($classes);
104 104
 	}
105 105
 
106 106
 endif;
107 107
 
108
-if ( ! function_exists( 'lsx_top_menu_classes' ) ) :
108
+if ( ! function_exists('lsx_top_menu_classes')) :
109 109
 
110 110
 	/**
111 111
 	 * Output the classes for the top-menu.
@@ -113,19 +113,19 @@  discard block
 block discarded – undo
113 113
 	 * @package    lsx
114 114
 	 * @subpackage layout
115 115
 	 */
116
-	function lsx_top_menu_classes( $additional = false ) {
116
+	function lsx_top_menu_classes($additional = false) {
117 117
 		$classes = 'top-menu-default';
118 118
 
119
-		if ( false !== $additional ) {
119
+		if (false !== $additional) {
120 120
 			$classes .= ' ' . $additional;
121 121
 		}
122 122
 
123
-		echo esc_attr( $classes );
123
+		echo esc_attr($classes);
124 124
 	}
125 125
 
126 126
 endif;
127 127
 
128
-if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) :
128
+if ( ! function_exists('lsx_add_footer_sidebar_area')) :
129 129
 
130 130
 	/**
131 131
 	 * Output the Footer CTA and/pr Footer Widgets.
@@ -134,23 +134,23 @@  discard block
 block discarded – undo
134 134
 	 * @subpackage layout
135 135
 	 */
136 136
 	function lsx_add_footer_sidebar_area() {
137
-		if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?>
137
+		if (is_active_sidebar('sidebar-footer-cta')) : ?>
138 138
 			<div id="footer-cta">
139 139
 				<div class="container">
140 140
 					<div class="lsx-full-width">
141 141
 						<div class="lsx-hero-unit">
142
-							<?php dynamic_sidebar( 'sidebar-footer-cta' ); ?>
142
+							<?php dynamic_sidebar('sidebar-footer-cta'); ?>
143 143
 						</div>
144 144
 					</div>
145 145
 				</div>
146 146
 			</div>
147 147
 		<?php endif; ?>
148 148
 
149
-		<?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?>
149
+		<?php if (is_active_sidebar('sidebar-footer')) : ?>
150 150
 			<div id="footer-widgets">
151 151
 				<div class="container">
152 152
 					<div class="row">
153
-						<?php dynamic_sidebar( 'sidebar-footer' ); ?>
153
+						<?php dynamic_sidebar('sidebar-footer'); ?>
154 154
 					</div>
155 155
 				</div>
156 156
 			</div>
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
 
160 160
 endif;
161 161
 
162
-add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' );
162
+add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area');
163 163
 
164
-if ( ! function_exists( 'lsx_global_header' ) ) :
164
+if ( ! function_exists('lsx_global_header')) :
165 165
 
166 166
 	/**
167 167
 	 * Displays the global header.
@@ -170,14 +170,14 @@  discard block
 block discarded – undo
170 170
 	 * @subpackage layout
171 171
 	 */
172 172
 	function lsx_global_header() {
173
-		$show_on_front  = get_option( 'show_on_front' );
173
+		$show_on_front  = get_option('show_on_front');
174 174
 		$queried_object = get_queried_object();
175 175
 		$default_size   = 'sm';
176
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
176
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
177 177
 
178
-		if ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) :
178
+		if (is_page() && ('page' !== $show_on_front || ! is_front_page())) :
179 179
 			?>
180
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
180
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
181 181
 				<header class="archive-header">
182 182
 					<h1 class="archive-title"><?php the_title(); ?></h1>
183 183
 				</header>
@@ -185,9 +185,9 @@  discard block
 block discarded – undo
185 185
 				<?php lsx_global_header_inner_bottom(); ?>
186 186
 			</div>
187 187
 			<?php
188
-		elseif ( is_single() && ! is_singular( 'post' ) ) :
188
+		elseif (is_single() && ! is_singular('post')) :
189 189
 			?>
190
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
190
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
191 191
 				<header class="archive-header">
192 192
 					<h1 class="archive-title"><?php the_title(); ?></h1>
193 193
 				</header>
@@ -195,15 +195,15 @@  discard block
 block discarded – undo
195 195
 				<?php lsx_global_header_inner_bottom(); ?>
196 196
 			</div>
197 197
 			<?php
198
-		elseif ( is_search() ) :
198
+		elseif (is_search()) :
199 199
 			?>
200
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
200
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
201 201
 				<header class="archive-header">
202 202
 					<h1 class="archive-title">
203 203
 						<?php
204 204
 							printf(
205 205
 								/* Translators: %s: search term/query */
206
-								esc_html__( 'Search Results for: %s', 'lsx' ),
206
+								esc_html__('Search Results for: %s', 'lsx'),
207 207
 								'<span>' . get_search_query() . '</span>'
208 208
 							);
209 209
 						?>
@@ -213,12 +213,12 @@  discard block
 block discarded – undo
213 213
 				<?php lsx_global_header_inner_bottom(); ?>
214 214
 			</div>
215 215
 			<?php
216
-		elseif ( is_author() ) :
216
+		elseif (is_author()) :
217 217
 			$author = get_the_author();
218
-			$author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 );
218
+			$author_avatar = get_avatar(get_the_author_meta('ID'), 256);
219 219
 			$author_bio = get_the_archive_description();
220 220
 			?>
221
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
221
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
222 222
 				<header class="archive-header">
223 223
 					<h1 class="archive-title"><?php the_archive_title(); ?></h1>
224 224
 				</header>
@@ -226,9 +226,9 @@  discard block
 block discarded – undo
226 226
 				<?php lsx_global_header_inner_bottom(); ?>
227 227
 			</div>
228 228
 			<?php
229
-		elseif ( is_archive() ) :
229
+		elseif (is_archive()) :
230 230
 			?>
231
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
231
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
232 232
 				<header class="archive-header">
233 233
 					<h1 class="archive-title"><?php the_archive_title(); ?></h1>
234 234
 					<?php the_archive_description(); ?>
@@ -237,13 +237,13 @@  discard block
 block discarded – undo
237 237
 				<?php lsx_global_header_inner_bottom(); ?>
238 238
 			</div>
239 239
 			<?php
240
-		elseif ( is_archive() ) :
240
+		elseif (is_archive()) :
241 241
 			?>
242
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
242
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
243 243
 				<header class="archive-header">
244 244
 					<h1 class="archive-title">
245
-						<?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?>
246
-							<?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?>
245
+						<?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?>
246
+							<?php the_archive_title(esc_html__('Type:', 'lsx')); ?>
247 247
 						<?php } else { ?>
248 248
 							<?php the_archive_title(); ?>
249 249
 						<?php } ?>
@@ -255,11 +255,11 @@  discard block
 block discarded – undo
255 255
 				<?php lsx_global_header_inner_bottom(); ?>
256 256
 			</div>
257 257
 			<?php
258
-		elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) :
258
+		elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) :
259 259
 			?>
260
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
260
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
261 261
 				<header class="archive-header">
262
-					<h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1>
262
+					<h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1>
263 263
 				</header>
264 264
 
265 265
 				<?php lsx_global_header_inner_bottom(); ?>
@@ -270,9 +270,9 @@  discard block
 block discarded – undo
270 270
 
271 271
 endif;
272 272
 
273
-add_action( 'lsx_content_wrap_before', 'lsx_global_header' );
273
+add_action('lsx_content_wrap_before', 'lsx_global_header');
274 274
 
275
-if ( ! function_exists( 'lsx_author_extra_info' ) ) :
275
+if ( ! function_exists('lsx_author_extra_info')) :
276 276
 
277 277
 	/**
278 278
 	 * Displays the author extra info.
@@ -282,58 +282,58 @@  discard block
 block discarded – undo
282 282
 	 */
283 283
 	function lsx_author_extra_info() {
284 284
 		$default_size   = 'sm';
285
-		$size           = apply_filters( 'lsx_bootstrap_column_size', $default_size );
285
+		$size           = apply_filters('lsx_bootstrap_column_size', $default_size);
286 286
 
287
-		if ( is_author() ) :
288
-			$author_id         = get_the_author_meta( 'ID' );
287
+		if (is_author()) :
288
+			$author_id         = get_the_author_meta('ID');
289 289
 			$author            = get_the_author();
290
-			$author_avatar     = get_avatar( $author_id, 256 );
290
+			$author_avatar     = get_avatar($author_id, 256);
291 291
 			$author_bio        = get_the_archive_description();
292
-			$author_url        = get_the_author_meta( 'url', $author_id );
293
-			$author_email      = get_the_author_meta( 'email', $author_id );
294
-			$author_facebook   = get_the_author_meta( 'facebook', $author_id );
295
-			$author_twitter    = get_the_author_meta( 'twitter', $author_id );
296
-			$author_googleplus = get_the_author_meta( 'googleplus', $author_id );
292
+			$author_url        = get_the_author_meta('url', $author_id);
293
+			$author_email      = get_the_author_meta('email', $author_id);
294
+			$author_facebook   = get_the_author_meta('facebook', $author_id);
295
+			$author_twitter    = get_the_author_meta('twitter', $author_id);
296
+			$author_googleplus = get_the_author_meta('googleplus', $author_id);
297 297
 			?>
298
-			<div class="col-<?php echo esc_attr( $size ); ?>-12">
298
+			<div class="col-<?php echo esc_attr($size); ?>-12">
299 299
 				<div class="archive-author-data">
300
-					<figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure>
300
+					<figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure>
301 301
 
302
-					<?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?>
302
+					<?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?>
303 303
 						<div class="archive-author-social-links">
304
-							<?php if ( ! empty( $author_url ) ) : ?>
305
-								<a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a>
304
+							<?php if ( ! empty($author_url)) : ?>
305
+								<a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a>
306 306
 							<?php endif; ?>
307 307
 
308
-							<?php if ( ! empty( $author_email ) ) : ?>
309
-								<a href="mailto:<?php echo esc_attr( $author_email ); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a>
308
+							<?php if ( ! empty($author_email)) : ?>
309
+								<a href="mailto:<?php echo esc_attr($author_email); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a>
310 310
 							<?php endif; ?>
311 311
 
312
-							<?php if ( ! empty( $author_facebook ) ) : ?>
313
-								<a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a>
312
+							<?php if ( ! empty($author_facebook)) : ?>
313
+								<a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a>
314 314
 							<?php endif; ?>
315 315
 
316
-							<?php if ( ! empty( $author_twitter ) ) : ?>
317
-								<a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a>
316
+							<?php if ( ! empty($author_twitter)) : ?>
317
+								<a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a>
318 318
 							<?php endif; ?>
319 319
 
320
-							<?php if ( ! empty( $author_googleplus ) ) : ?>
321
-								<a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
320
+							<?php if ( ! empty($author_googleplus)) : ?>
321
+								<a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
322 322
 							<?php endif; ?>
323 323
 						</div>
324 324
 					<?php endif; ?>
325 325
 
326
-					<?php if ( ! empty( $author_bio ) ) : ?>
327
-						<h2 class="archive-author-title text-center"><?php esc_html_e( 'About the author', 'lsx' ); ?></h2>
328
-						<p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p>
326
+					<?php if ( ! empty($author_bio)) : ?>
327
+						<h2 class="archive-author-title text-center"><?php esc_html_e('About the author', 'lsx'); ?></h2>
328
+						<p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p>
329 329
 					<?php endif; ?>
330 330
 
331 331
 					<h2 class="archive-author-posts text-center">
332 332
 						<?php
333 333
 							printf(
334 334
 								/* Translators: %s: author name */
335
-								esc_html__( 'All posts by %s', 'lsx' ),
336
-								esc_html( $author )
335
+								esc_html__('All posts by %s', 'lsx'),
336
+								esc_html($author)
337 337
 							);
338 338
 						?>
339 339
 					</h2>
@@ -345,9 +345,9 @@  discard block
 block discarded – undo
345 345
 
346 346
 endif;
347 347
 
348
-add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 );
348
+add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11);
349 349
 
350
-if ( ! function_exists( 'lsx_post_header' ) ) :
350
+if ( ! function_exists('lsx_post_header')) :
351 351
 
352 352
 	/**
353 353
 	 * Displays the post header.
@@ -357,21 +357,21 @@  discard block
 block discarded – undo
357 357
 	 */
358 358
 	function lsx_post_header() {
359 359
 		$default_size  = 'sm';
360
-		$size          = apply_filters( 'lsx_bootstrap_column_size', $default_size );
360
+		$size          = apply_filters('lsx_bootstrap_column_size', $default_size);
361 361
 
362
-		if ( is_singular( 'post' ) ) :
362
+		if (is_singular('post')) :
363 363
 			$format = get_post_format();
364 364
 
365
-			if ( false === $format ) {
365
+			if (false === $format) {
366 366
 				$format = 'standard';
367 367
 			}
368 368
 
369
-			$format = lsx_translate_format_to_fontawesome( $format );
369
+			$format = lsx_translate_format_to_fontawesome($format);
370 370
 			?>
371
-			<div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12">
371
+			<div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12">
372 372
 				<header class="archive-header">
373 373
 					<h1 class="archive-title">
374
-						<i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i>
374
+						<i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i>
375 375
 						<span><?php the_title(); ?></span>
376 376
 					</h1>
377 377
 				</header>
@@ -382,9 +382,9 @@  discard block
 block discarded – undo
382 382
 
383 383
 endif;
384 384
 
385
-add_action( 'lsx_entry_top', 'lsx_post_header' );
385
+add_action('lsx_entry_top', 'lsx_post_header');
386 386
 
387
-if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) :
387
+if ( ! function_exists('lsx_add_viewport_meta_tag')) :
388 388
 
389 389
 	/**
390 390
 	 * Add Viewport Meta Tag to head.
@@ -400,9 +400,9 @@  discard block
 block discarded – undo
400 400
 
401 401
 endif;
402 402
 
403
-add_action( 'wp_head', 'lsx_add_viewport_meta_tag' );
403
+add_action('wp_head', 'lsx_add_viewport_meta_tag');
404 404
 
405
-if ( ! function_exists( 'lsx_header_search_form' ) ) :
405
+if ( ! function_exists('lsx_header_search_form')) :
406 406
 
407 407
 	/**
408 408
 	 * Add a search form to just above the nav menu.
@@ -411,13 +411,13 @@  discard block
 block discarded – undo
411 411
 	 * @subpackage layout
412 412
 	 */
413 413
 	function lsx_header_search_form() {
414
-		$search_form = get_theme_mod( 'lsx_header_search', false );
414
+		$search_form = get_theme_mod('lsx_header_search', false);
415 415
 
416
-		if ( false !== $search_form || is_customize_preview() ) {
417
-			get_search_form( true );
416
+		if (false !== $search_form || is_customize_preview()) {
417
+			get_search_form(true);
418 418
 		}
419 419
 	}
420 420
 
421 421
 endif;
422 422
 
423
-add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 );
423
+add_action('lsx_nav_before', 'lsx_header_search_form', 0);
Please login to merge, or discard this patch.
includes/classes/class-lsx-lazy-load-images.php 1 patch
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage lazyload
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! class_exists( 'LSX_Lazy_Load_Images' ) ) :
13
+if ( ! class_exists('LSX_Lazy_Load_Images')) :
14 14
 
15 15
 	/*
16 16
 	 * LSX Lazy Load Images Class
@@ -39,143 +39,143 @@  discard block
 block discarded – undo
39 39
 		protected static $noscripts   = array();
40 40
 
41 41
 		static function init() {
42
-			if ( is_admin() ) {
42
+			if (is_admin()) {
43 43
 				return;
44 44
 			}
45 45
 
46
-			if ( get_theme_mod( 'lsx_lazyload_status', '1' ) === false ) {
46
+			if (get_theme_mod('lsx_lazyload_status', '1') === false) {
47 47
 				self::$enabled = false;
48 48
 				return;
49 49
 			}
50 50
 
51
-			if ( ! apply_filters( 'lsx_lazyload_is_enabled', true ) ) {
51
+			if ( ! apply_filters('lsx_lazyload_is_enabled', true)) {
52 52
 				self::$enabled = false;
53 53
 				return;
54 54
 			}
55 55
 
56
-			add_action( 'wp_enqueue_scripts', array( __CLASS__, 'add_scripts' ) );
57
-			add_action( 'wp_head', array( __CLASS__, 'setup_filters' ), 9999 );
58
-			add_filter( 'wp_kses_allowed_html', array( __CLASS__, 'kses_allowed_html' ), 10, 2 );
56
+			add_action('wp_enqueue_scripts', array(__CLASS__, 'add_scripts'));
57
+			add_action('wp_head', array(__CLASS__, 'setup_filters'), 9999);
58
+			add_filter('wp_kses_allowed_html', array(__CLASS__, 'kses_allowed_html'), 10, 2);
59 59
 		}
60 60
 
61 61
 		static function setup_filters() {
62 62
 			// WordPress
63
-			add_filter( 'the_content', array( __CLASS__, 'filter_images' ), 200 );
64
-			add_filter( 'widget_text', array( __CLASS__, 'filter_images' ), 200 );
65
-			add_filter( 'post_thumbnail_html', array( __CLASS__, 'filter_images' ), 200 );
66
-			add_filter( 'get_avatar', array( __CLASS__, 'filter_images' ), 200 );
63
+			add_filter('the_content', array(__CLASS__, 'filter_images'), 200);
64
+			add_filter('widget_text', array(__CLASS__, 'filter_images'), 200);
65
+			add_filter('post_thumbnail_html', array(__CLASS__, 'filter_images'), 200);
66
+			add_filter('get_avatar', array(__CLASS__, 'filter_images'), 200);
67 67
 
68 68
 			// LSX
69
-			add_filter( 'lsx_lazyload_filter_images', array( __CLASS__, 'filter_images' ), 200 );
69
+			add_filter('lsx_lazyload_filter_images', array(__CLASS__, 'filter_images'), 200);
70 70
 
71 71
 			// Envira Gallery
72
-			add_filter( 'envira_gallery_output_image', array( __CLASS__, 'filter_images' ), 200 );
72
+			add_filter('envira_gallery_output_image', array(__CLASS__, 'filter_images'), 200);
73 73
 		}
74 74
 
75 75
 		static function add_scripts() {
76
-			wp_enqueue_script( 'lazysizes', get_template_directory_uri() . '/assets/js/vendor/lazysizes.min.js', array( 'jquery' ), LSX_VERSION, true );
76
+			wp_enqueue_script('lazysizes', get_template_directory_uri() . '/assets/js/vendor/lazysizes.min.js', array('jquery'), LSX_VERSION, true);
77 77
 			// Plugin that enables use lazysizes in brackground images
78 78
 			//wp_enqueue_script( 'lazysizes', get_template_directory_uri() . '/assets/js/vendor/ls.unveilhooks.min.js', array( 'jquery', 'lazysizes' ), LSX_VERSION, true );
79 79
 		}
80 80
 
81
-		static function filter_images( $content ) {
82
-			if ( ! self::is_enabled() ) {
81
+		static function filter_images($content) {
82
+			if ( ! self::is_enabled()) {
83 83
 				return $content;
84 84
 			}
85 85
 
86
-			$http_user_agent = sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) );
87
-			$http_user_agent = ! empty( $http_user_agent ) ? $http_user_agent : '';
86
+			$http_user_agent = sanitize_text_field(wp_unslash($_SERVER['HTTP_USER_AGENT']));
87
+			$http_user_agent = ! empty($http_user_agent) ? $http_user_agent : '';
88 88
 
89
-			if ( is_feed()
89
+			if (is_feed()
90 90
 				|| is_preview()
91
-				|| 1 === intval( get_query_var( 'print' ) )
92
-				|| 1 === intval( get_query_var( 'printpage' ) )
93
-				|| strpos( $http_user_agent, 'Opera Mini' ) !== false
91
+				|| 1 === intval(get_query_var('print'))
92
+				|| 1 === intval(get_query_var('printpage'))
93
+				|| strpos($http_user_agent, 'Opera Mini') !== false
94 94
 			) {
95 95
 				return $content;
96 96
 			}
97 97
 
98 98
 			$skip_images_regex = '/class=".*(lazyload|disable-lazyload).*"/';
99
-			$placeholder_image = apply_filters( 'lsx_lazyload_placeholder_image', get_template_directory_uri() . '/assets/images/empty.gif' );
99
+			$placeholder_image = apply_filters('lsx_lazyload_placeholder_image', get_template_directory_uri() . '/assets/images/empty.gif');
100 100
 
101 101
 			$matches = array();
102 102
 			$search = array();
103 103
 			$replace = array();
104 104
 
105
-			$content = preg_replace_callback( '~<noscript.+?</noscript>~s', 'self::noscripts_remove', $content );
106
-			preg_match_all( '/<img[^>]*>/', $content, $matches );
105
+			$content = preg_replace_callback('~<noscript.+?</noscript>~s', 'self::noscripts_remove', $content);
106
+			preg_match_all('/<img[^>]*>/', $content, $matches);
107 107
 
108
-			foreach ( $matches[0] as $img_html ) {
109
-				if ( ! ( preg_match( $skip_images_regex, $img_html ) ) ) {
108
+			foreach ($matches[0] as $img_html) {
109
+				if ( ! (preg_match($skip_images_regex, $img_html))) {
110 110
 					$add_class = false;
111 111
 
112
-					if ( ! preg_match( '/src=[\'"]([^\'"]+)[\'"]/', $img_html ) && preg_match( '/srcset=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
113
-						$replace_html = preg_replace( '/<img(.*?)srcset=/i', '<img$1srcset="' . $placeholder_image . '" data-srcset=', $img_html );
112
+					if ( ! preg_match('/src=[\'"]([^\'"]+)[\'"]/', $img_html) && preg_match('/srcset=[\'"]([^\'"]+)[\'"]/', $img_html)) {
113
+						$replace_html = preg_replace('/<img(.*?)srcset=/i', '<img$1srcset="' . $placeholder_image . '" data-srcset=', $img_html);
114 114
 
115
-						if ( preg_match( '/sizes=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
116
-							$replace_html = preg_replace( '/sizes=/i', 'data-sizes=', $replace_html );
115
+						if (preg_match('/sizes=[\'"]([^\'"]+)[\'"]/', $img_html)) {
116
+							$replace_html = preg_replace('/sizes=/i', 'data-sizes=', $replace_html);
117 117
 						} else {
118
-							$replace_html = preg_replace( '/data-srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html );
118
+							$replace_html = preg_replace('/data-srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html);
119 119
 						}
120 120
 
121 121
 						$add_class = true;
122
-					} elseif ( preg_match( '/src=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
123
-						$replace_html = preg_replace( '/<img(.*?)src=/i', '<img$1src="' . $placeholder_image . '" data-src=', $img_html );
122
+					} elseif (preg_match('/src=[\'"]([^\'"]+)[\'"]/', $img_html)) {
123
+						$replace_html = preg_replace('/<img(.*?)src=/i', '<img$1src="' . $placeholder_image . '" data-src=', $img_html);
124 124
 
125
-						if ( preg_match( '/srcset=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
126
-							if ( preg_match( '/sizes=[\'"]([^\'"]+)[\'"]/', $img_html ) ) {
127
-								$replace_html = preg_replace( '/srcset=/i', 'data-srcset=', $replace_html );
128
-								$replace_html = preg_replace( '/sizes=/i', 'data-sizes=', $replace_html );
125
+						if (preg_match('/srcset=[\'"]([^\'"]+)[\'"]/', $img_html)) {
126
+							if (preg_match('/sizes=[\'"]([^\'"]+)[\'"]/', $img_html)) {
127
+								$replace_html = preg_replace('/srcset=/i', 'data-srcset=', $replace_html);
128
+								$replace_html = preg_replace('/sizes=/i', 'data-sizes=', $replace_html);
129 129
 							} else {
130
-								$replace_html = preg_replace( '/srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html );
130
+								$replace_html = preg_replace('/srcset=/i', 'data-sizes="auto" data-srcset=', $replace_html);
131 131
 							}
132 132
 						}
133 133
 
134 134
 						$add_class = true;
135 135
 					}
136 136
 
137
-					if ( $add_class ) {
138
-						$replace_html = self::add_class( $replace_html, 'lazyload' );
137
+					if ($add_class) {
138
+						$replace_html = self::add_class($replace_html, 'lazyload');
139 139
 						$replace_html .= '<noscript>' . $img_html . '</noscript>';
140 140
 
141
-						array_push( $search, $img_html );
142
-						array_push( $replace, $replace_html );
141
+						array_push($search, $img_html);
142
+						array_push($replace, $replace_html);
143 143
 					}
144 144
 				}
145 145
 			}
146 146
 
147
-			$content = str_replace( $search, $replace, $content );
148
-			$content = preg_replace_callback( '~' . chr( 20 ) . '([0-9]+)' . chr( 20 ) . '~', 'self::noscripts_restore', $content );
147
+			$content = str_replace($search, $replace, $content);
148
+			$content = preg_replace_callback('~' . chr(20) . '([0-9]+)' . chr(20) . '~', 'self::noscripts_restore', $content);
149 149
 			return $content;
150 150
 		}
151 151
 
152
-		static function noscripts_remove( $match ) {
152
+		static function noscripts_remove($match) {
153 153
 			self::$noscript_id++;
154
-			self::$noscripts[ self::$noscript_id ] = $match[0];
155
-			return chr( 20 ) . self::$noscript_id . chr( 20 );
154
+			self::$noscripts[self::$noscript_id] = $match[0];
155
+			return chr(20) . self::$noscript_id . chr(20);
156 156
 		}
157 157
 
158
-		static function noscripts_restore( $match ) {
159
-			return self::$noscripts[ (int) $match[1] ];
158
+		static function noscripts_restore($match) {
159
+			return self::$noscripts[(int) $match[1]];
160 160
 		}
161 161
 
162
-		static function add_class( $html_string = '', $new_class ) {
162
+		static function add_class($html_string = '', $new_class) {
163 163
 			$pattern = '/class=[\'"]([^\'"]*)[\'"]/';
164 164
 
165
-			if ( preg_match( $pattern, $html_string, $matches ) ) {
166
-				$defined_classes = explode( ' ', $matches[1] );
165
+			if (preg_match($pattern, $html_string, $matches)) {
166
+				$defined_classes = explode(' ', $matches[1]);
167 167
 
168
-				if ( ! in_array( $new_class, $defined_classes ) ) {
168
+				if ( ! in_array($new_class, $defined_classes)) {
169 169
 					$defined_classes[] = $new_class;
170 170
 
171 171
 					$html_string = str_replace(
172 172
 						$matches[0],
173
-						sprintf( 'class="%s"', implode( ' ', $defined_classes ) ),
173
+						sprintf('class="%s"', implode(' ', $defined_classes)),
174 174
 						$html_string
175 175
 					);
176 176
 				}
177 177
 			} else {
178
-				$html_string = preg_replace( '/(\<.+\s)/', sprintf( '$1class="%s" ', $new_class ), $html_string );
178
+				$html_string = preg_replace('/(\<.+\s)/', sprintf('$1class="%s" ', $new_class), $html_string);
179 179
 			}
180 180
 
181 181
 			return $html_string;
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 			return self::$enabled;
186 186
 		}
187 187
 
188
-		static function kses_allowed_html( $allowedtags, $context ) {
188
+		static function kses_allowed_html($allowedtags, $context) {
189 189
 			$allowedtags['noscript'] = array();
190 190
 
191 191
 			$allowedtags['img']['data-src'] = true;
@@ -198,4 +198,4 @@  discard block
 block discarded – undo
198 198
 
199 199
 endif;
200 200
 
201
-add_action( 'init', array( 'LSX_Lazy_Load_Images', 'init' ) );
201
+add_action('init', array('LSX_Lazy_Load_Images', 'init'));
Please login to merge, or discard this patch.
includes/classes/class-lsx-walker-comment.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -6,15 +6,15 @@  discard block
 block discarded – undo
6 6
  * @subpackage comment
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! class_exists( 'Walker_Comment' ) ) {
13
+if ( ! class_exists('Walker_Comment')) {
14 14
 	return;
15 15
 }
16 16
 
17
-if ( ! class_exists( 'LSX_Walker_Comment' ) ) :
17
+if ( ! class_exists('LSX_Walker_Comment')) :
18 18
 
19 19
 	/**
20 20
 	 * Use Bootstrap's media object for listing comments.
@@ -26,35 +26,35 @@  discard block
 block discarded – undo
26 26
 	 */
27 27
 	class LSX_Walker_Comment extends Walker_Comment {
28 28
 
29
-		function start_lvl( &$output, $depth = 0, $args = array() ) {
29
+		function start_lvl(&$output, $depth = 0, $args = array()) {
30 30
 			$GLOBALS['comment_depth'] = $depth + 1; ?>
31
-			<ul <?php comment_class( 'media media-reply unstyled list-unstyled comment-' . get_comment_ID() ); ?>>
31
+			<ul <?php comment_class('media media-reply unstyled list-unstyled comment-' . get_comment_ID()); ?>>
32 32
 			<?php
33 33
 		}
34 34
 
35
-		function end_lvl( &$output, $depth = 0, $args = array() ) {
35
+		function end_lvl(&$output, $depth = 0, $args = array()) {
36 36
 			$GLOBALS['comment_depth'] = $depth + 1;
37 37
 			echo '</ul>';
38 38
 		}
39 39
 
40
-		function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) {
40
+		function start_el(&$output, $comment, $depth = 0, $args = array(), $id = 0) {
41 41
 			$depth++;
42 42
 			$GLOBALS['comment_depth'] = $depth;
43 43
 			$GLOBALS['comment']       = $comment;
44 44
 
45
-			if ( ! empty( $args['callback'] ) ) {
46
-				call_user_func( $args['callback'], $comment, $args, $depth );
45
+			if ( ! empty($args['callback'])) {
46
+				call_user_func($args['callback'], $comment, $args, $depth);
47 47
 				return;
48 48
 			}?>
49 49
 
50
-			<li id="comment-<?php comment_ID(); ?>" <?php comment_class( 'media comment-' . get_comment_ID() ); ?>>
51
-			<?php get_template_part( 'comment' ); ?>
50
+			<li id="comment-<?php comment_ID(); ?>" <?php comment_class('media comment-' . get_comment_ID()); ?>>
51
+			<?php get_template_part('comment'); ?>
52 52
 			<?php
53 53
 		}
54 54
 
55
-		function end_el( &$output, $comment, $depth = 0, $args = array() ) {
56
-			if ( ! empty( $args['end-callback'] ) ) {
57
-				call_user_func( $args['end-callback'], $comment, $args, $depth );
55
+		function end_el(&$output, $comment, $depth = 0, $args = array()) {
56
+			if ( ! empty($args['end-callback'])) {
57
+				call_user_func($args['end-callback'], $comment, $args, $depth);
58 58
 				return;
59 59
 			}
60 60
 
Please login to merge, or discard this patch.
includes/classes/class-lsx-wc-widget-recent-reviews.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-if ( ! defined( 'ABSPATH' ) ) {
3
+if ( ! defined('ABSPATH')) {
4 4
 	exit;
5 5
 }
6 6
 
@@ -20,14 +20,14 @@  discard block
 block discarded – undo
20 20
 	 */
21 21
 	public function __construct() {
22 22
 		$this->widget_cssclass    = 'woocommerce widget_recent_reviews';
23
-		$this->widget_description = __( 'Display a list of your most recent reviews on your site.', 'woocommerce' );
23
+		$this->widget_description = __('Display a list of your most recent reviews on your site.', 'woocommerce');
24 24
 		$this->widget_id          = 'woocommerce_recent_reviews';
25
-		$this->widget_name        = __( 'WooCommerce recent reviews', 'woocommerce' );
25
+		$this->widget_name        = __('WooCommerce recent reviews', 'woocommerce');
26 26
 		$this->settings           = array(
27 27
 			'title'  => array(
28 28
 				'type'  => 'text',
29
-				'std'   => __( 'Recent reviews', 'woocommerce' ),
30
-				'label' => __( 'Title', 'woocommerce' ),
29
+				'std'   => __('Recent reviews', 'woocommerce'),
30
+				'label' => __('Title', 'woocommerce'),
31 31
 			),
32 32
 			'number' => array(
33 33
 				'type'  => 'number',
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 				'min'   => 1,
36 36
 				'max'   => '',
37 37
 				'std'   => 10,
38
-				'label' => __( 'Number of reviews to show', 'woocommerce' ),
38
+				'label' => __('Number of reviews to show', 'woocommerce'),
39 39
 			),
40 40
 		);
41 41
 
@@ -50,44 +50,44 @@  discard block
 block discarded – undo
50 50
 	 * @param array $args
51 51
 	 * @param array $instance
52 52
 	 */
53
-	 public function widget( $args, $instance ) {
53
+	 public function widget($args, $instance) {
54 54
 		global $comments, $comment;
55 55
 
56
-		if ( $this->get_cached_widget( $args ) ) {
56
+		if ($this->get_cached_widget($args)) {
57 57
 			return;
58 58
 		}
59 59
 
60 60
 		ob_start();
61 61
 
62
-		$number   = ! empty( $instance['number'] ) ? absint( $instance['number'] ) : $this->settings['number']['std'];
62
+		$number   = ! empty($instance['number']) ? absint($instance['number']) : $this->settings['number']['std'];
63 63
 
64
-		$comments = get_comments( array(
64
+		$comments = get_comments(array(
65 65
 			'number' => $number,
66 66
 			'status' => 'approve',
67 67
 			'post_status' => 'publish',
68 68
 			'post_type' => 'product',
69 69
 			'parent' => 0,
70
-		) );
70
+		));
71 71
 
72
-		if ( $comments ) {
73
-			$this->widget_start( $args, $instance );
72
+		if ($comments) {
73
+			$this->widget_start($args, $instance);
74 74
 
75 75
 			// @codingStandardsIgnoreLine
76
-			echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' );
76
+			echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">');
77 77
 
78 78
 			global $comment, $_product, $rating;
79 79
 
80
-			foreach ( (array) $comments as $comment ) {
81
-				$_product = wc_get_product( $comment->comment_post_ID );
82
-				$rating = intval( get_comment_meta( $comment->comment_ID, 'rating', true ) );
80
+			foreach ((array) $comments as $comment) {
81
+				$_product = wc_get_product($comment->comment_post_ID);
82
+				$rating = intval(get_comment_meta($comment->comment_ID, 'rating', true));
83 83
 
84
-				wc_get_template( 'content-widget-review.php' );
84
+				wc_get_template('content-widget-review.php');
85 85
 			}
86 86
 
87 87
 			// @codingStandardsIgnoreLine
88
-			echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' );
88
+			echo apply_filters('woocommerce_after_widget_product_list', '</ul>');
89 89
 
90
-			$this->widget_end( $args );
90
+			$this->widget_end($args);
91 91
 		}
92 92
 
93 93
 		$content = ob_get_clean();
@@ -95,6 +95,6 @@  discard block
 block discarded – undo
95 95
 		// @codingStandardsIgnoreLine
96 96
 		echo $content;
97 97
 
98
-		$this->cache_widget( $args, $content );
98
+		$this->cache_widget($args, $content);
99 99
 	}
100 100
 }
Please login to merge, or discard this patch.
includes/classes/class-lsx-bootstrap-navwalker.php 1 patch
Spacing   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -7,15 +7,15 @@  discard block
 block discarded – undo
7 7
  * @category   bootstrap-navigation-walker
8 8
  */
9 9
 
10
-if ( ! defined( 'ABSPATH' ) ) {
10
+if ( ! defined('ABSPATH')) {
11 11
 	exit;
12 12
 }
13 13
 
14
-if ( ! class_exists( 'Walker_Nav_Menu' ) ) {
14
+if ( ! class_exists('Walker_Nav_Menu')) {
15 15
 	return;
16 16
 }
17 17
 
18
-if ( ! class_exists( 'LSX_Bootstrap_Navwalker' ) ) :
18
+if ( ! class_exists('LSX_Bootstrap_Navwalker')) :
19 19
 
20 20
 	/**
21 21
 	 * Cleaner Bootstrap walker
@@ -33,15 +33,15 @@  discard block
 block discarded – undo
33 33
 		 * @param string $output Passed by reference. Used to append additional content.
34 34
 		 * @param int $depth Depth of page. Used for padding.
35 35
 		 */
36
-		public function start_lvl( &$output, $depth = 0, $args = array() ) {
37
-			$indent = str_repeat( "\t", $depth );
36
+		public function start_lvl(&$output, $depth = 0, $args = array()) {
37
+			$indent = str_repeat("\t", $depth);
38 38
 			$output .= "\n$indent<ul role=\"menu\" class=\" dropdown-menu\">\n";
39 39
 		}
40 40
 
41 41
 		/**
42 42
 		 * @param string $item Passed by reference. Used to append additional content.
43 43
 		 */
44
-		public function filter_default_pages( &$item ) {
44
+		public function filter_default_pages(&$item) {
45 45
 			return $item;
46 46
 		}
47 47
 
@@ -55,14 +55,14 @@  discard block
 block discarded – undo
55 55
 		 * @param int $current_page Menu item ID.
56 56
 		 * @param object $args
57 57
 		 */
58
-		public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
59
-			$indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
58
+		public function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) {
59
+			$indent = ($depth) ? str_repeat("\t", $depth) : '';
60 60
 
61 61
 			/**
62 62
 			 * If this is a default menu being called we need to fix
63 63
 			 * the item object thats coming through.
64 64
 			 */
65
-			if ( ! isset( $item->title ) ) {
65
+			if ( ! isset($item->title)) {
66 66
 				return;
67 67
 			}
68 68
 
@@ -74,63 +74,63 @@  discard block
 block discarded – undo
74 74
 			 * comparison that is not case sensitive. The strcasecmp() function returns
75 75
 			 * a 0 if the strings are equal.
76 76
 			 */
77
-			if ( 0 == strcasecmp( $item->attr_title, 'divider' ) && 1 === $depth ) {
77
+			if (0 == strcasecmp($item->attr_title, 'divider') && 1 === $depth) {
78 78
 				$output .= $indent . '<li role="presentation" class="divider">';
79
-			} elseif ( 0 == strcasecmp( $item->title, 'divider' ) && 1 === $depth ) {
79
+			} elseif (0 == strcasecmp($item->title, 'divider') && 1 === $depth) {
80 80
 				$output .= $indent . '<li role="presentation" class="divider">';
81
-			} elseif ( 0 == strcasecmp( $item->attr_title, 'dropdown-header' ) && 1 === $depth ) {
82
-				$output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr( $item->title );
83
-			} elseif ( 0 == strcasecmp( $item->attr_title, 'disabled' ) ) {
84
-				$output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr( $item->title ) . '</a>';
81
+			} elseif (0 == strcasecmp($item->attr_title, 'dropdown-header') && 1 === $depth) {
82
+				$output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr($item->title);
83
+			} elseif (0 == strcasecmp($item->attr_title, 'disabled')) {
84
+				$output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr($item->title) . '</a>';
85 85
 			} else {
86 86
 				$class_names = '';
87 87
 				$value       = '';
88 88
 
89
-				$classes = empty( $item->classes ) ? array() : (array) $item->classes;
89
+				$classes = empty($item->classes) ? array() : (array) $item->classes;
90 90
 				$classes[] = 'menu-item-' . $item->ID;
91 91
 
92
-				$classes = apply_filters( 'lsx_nav_menu_css_class', array_filter( $classes ), $item, $args , $depth );
92
+				$classes = apply_filters('lsx_nav_menu_css_class', array_filter($classes), $item, $args, $depth);
93 93
 
94
-				$class_names = join( ' ', $classes );
94
+				$class_names = join(' ', $classes);
95 95
 
96
-				if ( $args->has_children )
96
+				if ($args->has_children)
97 97
 					$class_names .= ' dropdown';
98 98
 
99
-				if ( in_array( 'current-menu-item', $classes ) )
99
+				if (in_array('current-menu-item', $classes))
100 100
 					$class_names .= ' active';
101 101
 
102
-				if ( in_array( 'current-menu-parent', $classes ) )
102
+				if (in_array('current-menu-parent', $classes))
103 103
 					$class_names .= ' active';
104 104
 
105 105
 				//Check if this is ment to be a "social" type menu
106
-				$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
106
+				$class_names = $class_names ? ' class="' . esc_attr($class_names) . '"' : '';
107 107
 
108
-				$id = apply_filters( 'nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args );
109
-				$id = $id ? ' id="' . esc_attr( $id ) . '"' : '';
108
+				$id = apply_filters('nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args);
109
+				$id = $id ? ' id="' . esc_attr($id) . '"' : '';
110 110
 
111 111
 				$output .= $indent . '<li' . $id . $value . $class_names . '>';
112 112
 
113 113
 				$atts = array();
114
-				$atts['title']  = ! empty( $item->title ) ? $item->title : '';
115
-				$atts['target'] = ! empty( $item->target ) ? $item->target : '';
116
-				$atts['rel']    = ! empty( $item->xfn ) ? $item->xfn : '';
114
+				$atts['title']  = ! empty($item->title) ? $item->title : '';
115
+				$atts['target'] = ! empty($item->target) ? $item->target : '';
116
+				$atts['rel']    = ! empty($item->xfn) ? $item->xfn : '';
117 117
 
118 118
 				// If item has_children add atts to a.
119
-				if ( $args->has_children ) {
120
-					$atts['href']          = ! empty( $item->url ) ? $item->url : '';
119
+				if ($args->has_children) {
120
+					$atts['href']          = ! empty($item->url) ? $item->url : '';
121 121
 					$atts['data-toggle']   = 'dropdown';
122 122
 					$atts['class']         = 'dropdown-toggle';
123 123
 					$atts['aria-haspopup'] = 'true';
124 124
 				} else {
125
-					$atts['href'] = ! empty( $item->url ) ? $item->url : '';
125
+					$atts['href'] = ! empty($item->url) ? $item->url : '';
126 126
 				}
127 127
 
128
-				$atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args );
128
+				$atts = apply_filters('nav_menu_link_attributes', $atts, $item, $args);
129 129
 
130 130
 				$attributes = '';
131
-				foreach ( $atts as $attr => $value ) {
132
-					if ( ! empty( $value ) ) {
133
-						$value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value );
131
+				foreach ($atts as $attr => $value) {
132
+					if ( ! empty($value)) {
133
+						$value = ('href' === $attr) ? esc_url($value) : esc_attr($value);
134 134
 						$attributes .= ' ' . $attr . '="' . $value . '"';
135 135
 					}
136 136
 				}
@@ -138,11 +138,11 @@  discard block
 block discarded – undo
138 138
 				$item_output = $args->before;
139 139
 
140 140
 				$item_output .= '<a' . $attributes . '>';
141
-				$item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after;
142
-				$item_output .= ( $args->has_children && 0 === $depth ) ? ' <span class="caret"></span></a>' : '</a>';
141
+				$item_output .= $args->link_before . apply_filters('the_title', $item->title, $item->ID) . $args->link_after;
142
+				$item_output .= ($args->has_children && 0 === $depth) ? ' <span class="caret"></span></a>' : '</a>';
143 143
 				$item_output .= $args->after;
144 144
 
145
-				$output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args );
145
+				$output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args);
146 146
 			}
147 147
 		}
148 148
 
@@ -166,18 +166,18 @@  discard block
 block discarded – undo
166 166
 		 * @param string $output Passed by reference. Used to append additional content.
167 167
 		 * @return null Null on failure with no changes to parameters.
168 168
 		 */
169
-		public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {
170
-			if ( ! $element ) {
169
+		public function display_element($element, &$children_elements, $max_depth, $depth, $args, &$output) {
170
+			if ( ! $element) {
171 171
 				return;
172 172
 			}
173 173
 
174 174
 			$id_field = $this->db_fields['id'];
175 175
 
176
-			if ( is_object( $args[0] ) ) {
177
-				$args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] );
176
+			if (is_object($args[0])) {
177
+				$args[0]->has_children = ! empty($children_elements[$element->$id_field]);
178 178
 			}
179 179
 
180
-			parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
180
+			parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output);
181 181
 		}
182 182
 
183 183
 		/**
@@ -191,18 +191,18 @@  discard block
 block discarded – undo
191 191
 		 * @param array $args passed from the wp_nav_menu function.
192 192
 		 *
193 193
 		 */
194
-		public static function fallback( $args ) {
195
-			if ( current_user_can( 'manage_options' ) ) {
194
+		public static function fallback($args) {
195
+			if (current_user_can('manage_options')) {
196 196
 				$fb_output = null;
197 197
 
198
-				if ( $args['container'] ) {
198
+				if ($args['container']) {
199 199
 					$fb_output = '<' . $args['container'];
200 200
 
201
-					if ( $args['container_id'] ) {
201
+					if ($args['container_id']) {
202 202
 						$fb_output .= ' id="' . $args['container_id'] . '"';
203 203
 					}
204 204
 
205
-					if ( $args['container_class'] ) {
205
+					if ($args['container_class']) {
206 206
 						$fb_output .= ' class="' . $args['container_class'] . '"';
207 207
 					}
208 208
 
@@ -211,23 +211,23 @@  discard block
 block discarded – undo
211 211
 
212 212
 				$fb_output .= '<ul';
213 213
 
214
-				if ( $args['menu_id'] ) {
214
+				if ($args['menu_id']) {
215 215
 					$fb_output .= ' id="' . $args['menu_id'] . '"';
216 216
 				}
217 217
 
218
-				if ( $args['menu_class'] ) {
218
+				if ($args['menu_class']) {
219 219
 					$fb_output .= ' class="' . $args['menu_class'] . '"';
220 220
 				}
221 221
 
222 222
 				$fb_output .= '>';
223
-				$fb_output .= '<li><a href="' . esc_url( admin_url( 'nav-menus.php' ) ) . '">' . esc_html__( 'Add a menu', 'lsx' ) . '</a></li>';
223
+				$fb_output .= '<li><a href="' . esc_url(admin_url('nav-menus.php')) . '">' . esc_html__('Add a menu', 'lsx') . '</a></li>';
224 224
 				$fb_output .= '</ul>';
225 225
 
226
-				if ( $args['container'] ) {
226
+				if ($args['container']) {
227 227
 					$fb_output .= '</' . $args['container'] . '>';
228 228
 				}
229 229
 
230
-				echo wp_kses_post( $fb_output );
230
+				echo wp_kses_post($fb_output);
231 231
 			}
232 232
 		}
233 233
 
Please login to merge, or discard this patch.
includes/classes/class-lsx-theme-customizer.php 1 patch
Spacing   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage customizer
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! class_exists( 'LSX_Theme_Customizer' ) ) :
13
+if ( ! class_exists('LSX_Theme_Customizer')) :
14 14
 
15 15
 	/**
16 16
 	 * Customizer Configuration File
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 		/**
27 27
 		 * Initialize the plugin by setting localization and loading public scripts and styles.
28 28
 		 */
29
-		public function __construct( $controls ) {
29
+		public function __construct($controls) {
30 30
 			require get_template_directory() . '/includes/classes/class-lsx-customize-core-control.php';
31 31
 			require get_template_directory() . '/includes/classes/class-lsx-customize-layout-control.php';
32 32
 			require get_template_directory() . '/includes/classes/class-lsx-customize-font-control.php';
@@ -34,83 +34,83 @@  discard block
 block discarded – undo
34 34
 
35 35
 			$this->controls = $controls;
36 36
 
37
-			add_action( 'customize_preview_init', array( $this, 'customize_preview_js' ), 20 );
38
-			add_action( 'customize_register',     array( $this, 'customizer' ), 11 );
37
+			add_action('customize_preview_init', array($this, 'customize_preview_js'), 20);
38
+			add_action('customize_register', array($this, 'customizer'), 11);
39 39
 		}
40 40
 
41 41
 		/**
42 42
 		 * Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
43 43
 		 */
44 44
 		public function customize_preview_js() {
45
-			wp_enqueue_script( 'lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array( 'customize-preview' ), LSX_VERSION, true );
45
+			wp_enqueue_script('lsx_customizer', get_template_directory_uri() . '/assets/js/admin/customizer.js', array('customize-preview'), LSX_VERSION, true);
46 46
 
47
-			wp_localize_script( 'lsx_customizer', 'lsx_customizer_params', array(
47
+			wp_localize_script('lsx_customizer', 'lsx_customizer_params', array(
48 48
 				'template_directory' => get_template_directory_uri(),
49
-			) );
49
+			));
50 50
 		}
51 51
 
52 52
 		/**
53 53
 		 * Create customiser controls.
54 54
 		 */
55
-		public function customizer( $wp_customize ) {
55
+		public function customizer($wp_customize) {
56 56
 			// Start panels
57
-			if ( ! empty( $this->controls['panels'] ) ) {
58
-				foreach ( $this->controls['panels'] as $panel_slug => $args ) {
59
-					$this->add_panel( $panel_slug, $args, $wp_customize );
57
+			if ( ! empty($this->controls['panels'])) {
58
+				foreach ($this->controls['panels'] as $panel_slug => $args) {
59
+					$this->add_panel($panel_slug, $args, $wp_customize);
60 60
 				}
61 61
 			}
62 62
 
63 63
 			// Start sections
64
-			if ( ! empty( $this->controls['sections'] ) ) {
65
-				foreach ( $this->controls['sections'] as $section_slug => $args ) {
66
-					$this->add_section( $section_slug, $args, $wp_customize );
64
+			if ( ! empty($this->controls['sections'])) {
65
+				foreach ($this->controls['sections'] as $section_slug => $args) {
66
+					$this->add_section($section_slug, $args, $wp_customize);
67 67
 				}
68 68
 			}
69 69
 
70 70
 			// Start settings
71
-			if ( ! empty( $this->controls['settings'] ) ) {
72
-				foreach ( $this->controls['settings'] as $settings_slug => $args ) {
73
-					$this->add_setting( $settings_slug, $args, $wp_customize );
71
+			if ( ! empty($this->controls['settings'])) {
72
+				foreach ($this->controls['settings'] as $settings_slug => $args) {
73
+					$this->add_setting($settings_slug, $args, $wp_customize);
74 74
 				}
75 75
 			}
76 76
 
77 77
 			// Start fields
78
-			if ( ! empty( $this->controls['fields'] ) ) {
79
-				foreach ( $this->controls['fields'] as $field_slug => $args ) {
80
-					$this->add_control( $field_slug, $args, $wp_customize );
78
+			if ( ! empty($this->controls['fields'])) {
79
+				foreach ($this->controls['fields'] as $field_slug => $args) {
80
+					$this->add_control($field_slug, $args, $wp_customize);
81 81
 				}
82 82
 			}
83 83
 
84 84
 			// Start selective refresh
85
-			if ( ! empty( $this->controls['selective_refresh'] ) ) {
86
-				foreach ( $this->controls['selective_refresh'] as $field_slug => $args ) {
87
-					$this->add_selective_refresh( $field_slug, $args, $wp_customize );
85
+			if ( ! empty($this->controls['selective_refresh'])) {
86
+				foreach ($this->controls['selective_refresh'] as $field_slug => $args) {
87
+					$this->add_selective_refresh($field_slug, $args, $wp_customize);
88 88
 				}
89 89
 			}
90 90
 
91
-			$wp_customize->get_setting( 'blogname' )->transport         = 'postMessage';
92
-			$wp_customize->get_setting( 'blogdescription' )->transport  = 'postMessage';
93
-			$wp_customize->get_setting( 'background_color' )->transport = 'postMessage';
91
+			$wp_customize->get_setting('blogname')->transport         = 'postMessage';
92
+			$wp_customize->get_setting('blogdescription')->transport  = 'postMessage';
93
+			$wp_customize->get_setting('background_color')->transport = 'postMessage';
94 94
 
95
-			$wp_customize->selective_refresh->add_partial( 'blogname', array(
95
+			$wp_customize->selective_refresh->add_partial('blogname', array(
96 96
 				'selector'          => 'h1.site-title a',
97 97
 				'render_callback'   => function() {
98
-					bloginfo( 'name' );
98
+					bloginfo('name');
99 99
 				},
100
-			) );
100
+			));
101 101
 
102
-			$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
102
+			$wp_customize->selective_refresh->add_partial('blogdescription', array(
103 103
 				'selector'          => '.site-description',
104 104
 				'render_callback'   => function() {
105
-					bloginfo( 'description' );
105
+					bloginfo('description');
106 106
 				},
107
-			) );
107
+			));
108 108
 		}
109 109
 
110 110
 		/**
111 111
 		 * Create a panel.
112 112
 		 */
113
-		private function add_panel( $slug, $args, $wp_customize ) {
113
+		private function add_panel($slug, $args, $wp_customize) {
114 114
 			$default_args = array(
115 115
 				'title'       => null,
116 116
 				'description' => null,
@@ -118,57 +118,57 @@  discard block
 block discarded – undo
118 118
 
119 119
 			$wp_customize->add_panel(
120 120
 				$slug,
121
-				array_merge( $default_args, $args )
121
+				array_merge($default_args, $args)
122 122
 			);
123 123
 		}
124 124
 
125 125
 		/**
126 126
 		 * Create a section.
127 127
 		 */
128
-		private function add_section( $slug, $args, $wp_customize ) {
128
+		private function add_section($slug, $args, $wp_customize) {
129 129
 			$default_args = array(
130 130
 				'capability'  => 'edit_theme_options',
131 131
 				'description' => null,
132 132
 			);
133 133
 
134
-			$wp_customize->add_section( $slug, array_merge( $default_args, $args ) );
134
+			$wp_customize->add_section($slug, array_merge($default_args, $args));
135 135
 		}
136 136
 
137 137
 		/**
138 138
 		 * Create a setting.
139 139
 		 */
140
-		private function add_setting( $slug, $args, $wp_customize ) {
141
-			$wp_customize->add_setting( $slug,
142
-				array_merge( array(
140
+		private function add_setting($slug, $args, $wp_customize) {
141
+			$wp_customize->add_setting($slug,
142
+				array_merge(array(
143 143
 					'default'           => null,
144 144
 					'type'              => 'theme_mod',
145 145
 					'capability'        => 'edit_theme_options',
146 146
 					'transport'         => 'postMessage',
147 147
 					'sanitize_callback' => 'lsx_sanitize_choices',
148
-				), $args )
148
+				), $args)
149 149
 			);
150 150
 		}
151 151
 
152 152
 		/**
153 153
 		 * Create a control.
154 154
 		 */
155
-		private function add_control( $slug, $args, $wp_customize ) {
155
+		private function add_control($slug, $args, $wp_customize) {
156 156
 			$default_args = array();
157 157
 
158
-			if ( isset( $args['control'] ) && class_exists( $args['control'] ) ) {
158
+			if (isset($args['control']) && class_exists($args['control'])) {
159 159
 				$control_class = $args['control'];
160
-				unset( $args['control'] );
160
+				unset($args['control']);
161 161
 
162
-				$control = new $control_class( $wp_customize, $slug, array_merge( $default_args, $args ) );
163
-				$wp_customize->add_control( $control );
162
+				$control = new $control_class($wp_customize, $slug, array_merge($default_args, $args));
163
+				$wp_customize->add_control($control);
164 164
 			} else {
165
-				if ( isset( $args['control'] ) ) {
166
-					unset( $args['control'] );
165
+				if (isset($args['control'])) {
166
+					unset($args['control']);
167 167
 				}
168 168
 
169 169
 				$wp_customize->add_control(
170 170
 					$slug,
171
-					array_merge( $default_args, $args )
171
+					array_merge($default_args, $args)
172 172
 				);
173 173
 			}
174 174
 		}
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 		/**
177 177
 		 * Create a selective refresh.
178 178
 		 */
179
-		private function add_selective_refresh( $slug, $args, $wp_customize ) {
179
+		private function add_selective_refresh($slug, $args, $wp_customize) {
180 180
 			$default_args = array(
181 181
 				'selector'        => null,
182 182
 				'render_callback' => null,
@@ -184,23 +184,23 @@  discard block
 block discarded – undo
184 184
 
185 185
 			$wp_customize->selective_refresh->add_partial(
186 186
 				$slug,
187
-				array_merge( $default_args, $args )
187
+				array_merge($default_args, $args)
188 188
 			);
189 189
 		}
190 190
 
191 191
 		/**
192 192
 		 * Returns a registered field.
193 193
 		 */
194
-		public function get_control( $id ) {
195
-			$field = $this->controls['fields'][ $id ];
194
+		public function get_control($id) {
195
+			$field = $this->controls['fields'][$id];
196 196
 			return $field;
197 197
 		}
198 198
 
199 199
 		/**
200 200
 		 * Returns a registered setting.
201 201
 		 */
202
-		public function get_setting( $id ) {
203
-			$setting = $this->controls['settings'][ $id ];
202
+		public function get_setting($id) {
203
+			$setting = $this->controls['settings'][$id];
204 204
 			return $setting;
205 205
 		}
206 206
 
Please login to merge, or discard this patch.
includes/classes/class-lsx-customize-core-control.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -7,15 +7,15 @@  discard block
 block discarded – undo
7 7
  * @category   core
8 8
  */
9 9
 
10
-if ( ! defined( 'ABSPATH' ) ) {
10
+if ( ! defined('ABSPATH')) {
11 11
 	exit;
12 12
 }
13 13
 
14
-if ( ! class_exists( 'WP_Customize_Control' ) ) {
14
+if ( ! class_exists('WP_Customize_Control')) {
15 15
 	return;
16 16
 }
17 17
 
18
-if ( ! class_exists( 'LSX_Customize_Core_Control' ) ) :
18
+if ( ! class_exists('LSX_Customize_Core_Control')) :
19 19
 
20 20
 	/**
21 21
 	 * LSX_Customize_Core_Control Class
@@ -34,13 +34,13 @@  discard block
 block discarded – undo
34 34
 		public function render_content() {
35 35
 			?>
36 36
 			<label>
37
-				<?php if ( ! empty( $this->label ) ) { ?>
38
-					<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
37
+				<?php if ( ! empty($this->label)) { ?>
38
+					<span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
39 39
 				<?php }
40
-				if ( ! empty( $this->description ) ) { ?>
41
-					<span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>
40
+				if ( ! empty($this->description)) { ?>
41
+					<span class="description customize-control-description"><?php echo esc_html($this->description); ?></span>
42 42
 				<?php } ?>
43
-				<input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->input_attrs(); ?>>
43
+				<input <?php $this->link(); ?> type="checkbox" value="<?php echo esc_attr($this->value()); ?>" <?php $this->input_attrs(); ?>>
44 44
 			</label>
45 45
 			<?php
46 46
 		}
Please login to merge, or discard this patch.
includes/classes/class-lsx-customize-font-control.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -7,15 +7,15 @@  discard block
 block discarded – undo
7 7
  * @category   font
8 8
  */
9 9
 
10
-if ( ! defined( 'ABSPATH' ) ) {
10
+if ( ! defined('ABSPATH')) {
11 11
 	exit;
12 12
 }
13 13
 
14
-if ( ! class_exists( 'WP_Customize_Control' ) ) {
14
+if ( ! class_exists('WP_Customize_Control')) {
15 15
 	return;
16 16
 }
17 17
 
18
-if ( ! class_exists( 'LSX_Customize_Font_Control' ) ) :
18
+if ( ! class_exists('LSX_Customize_Font_Control')) :
19 19
 
20 20
 	/**
21 21
 	 * LSX_Customize_Font_Control Class
@@ -31,37 +31,37 @@  discard block
 block discarded – undo
31 31
 		/**
32 32
 		 * Constructor.
33 33
 		 */
34
-		public function __construct( $manager, $id, $args ) {
35
-			parent::__construct( $manager, $id, $args );
34
+		public function __construct($manager, $id, $args) {
35
+			parent::__construct($manager, $id, $args);
36 36
 
37
-			add_action( 'after_switch_theme',   array( $this, 'set_theme_mod' ) );
38
-			add_action( 'customize_save_after', array( $this, 'set_theme_mod' ) );
37
+			add_action('after_switch_theme', array($this, 'set_theme_mod'));
38
+			add_action('customize_save_after', array($this, 'set_theme_mod'));
39 39
 		}
40 40
 
41 41
 		/**
42 42
 		 * Enqueue the styles and scripts.
43 43
 		 */
44 44
 		public function enqueue() {
45
-			wp_enqueue_style( 'lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/css/admin/customizer-font.css', array(), LSX_VERSION );
46
-			wp_style_add_data( 'lsx-font-picker-custom-control', 'rtl', 'replace' );
45
+			wp_enqueue_style('lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/css/admin/customizer-font.css', array(), LSX_VERSION);
46
+			wp_style_add_data('lsx-font-picker-custom-control', 'rtl', 'replace');
47 47
 
48
-			wp_enqueue_script( 'lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/js/admin/customizer-font.js', array(), LSX_VERSION );
48
+			wp_enqueue_script('lsx-font-picker-custom-control', get_template_directory_uri() . '/assets/js/admin/customizer-font.js', array(), LSX_VERSION);
49 49
 		}
50 50
 
51 51
 		/**
52 52
 		 * Render the content on the theme customizer page.
53 53
 		 */
54 54
 		public function render_content() {
55
-			if ( empty( $this->choices ) ) {
55
+			if (empty($this->choices)) {
56 56
 				return;
57 57
 			}
58 58
 
59 59
 			$fonts = array();
60 60
 
61
-			foreach ( $this->choices as $slug => $font ) {
61
+			foreach ($this->choices as $slug => $font) {
62 62
 				$fonts[] = $font['header'];
63 63
 				$fonts[] = $font['body'];
64
-				$this->choices[ $slug ] = $font;
64
+				$this->choices[$slug] = $font;
65 65
 			}
66 66
 
67 67
 			$saved_value = $this->value();
@@ -69,25 +69,25 @@  discard block
 block discarded – undo
69 69
 			<div class="fontPickerCustomControl">
70 70
 				<select <?php $this->link(); ?>>
71 71
 					<?php
72
-						foreach ( $this->choices as $value => $conf ) {
73
-							echo '<option value="' . esc_attr( $value ) . '">' . esc_html( $value ) . '</option>';
72
+						foreach ($this->choices as $value => $conf) {
73
+							echo '<option value="' . esc_attr($value) . '">' . esc_html($value) . '</option>';
74 74
 						}
75 75
 					?>
76 76
 				</select>
77 77
 				<div class="fancyDisplay">
78 78
 					<ul>
79 79
 						<?php
80
-						foreach ( $this->choices as $key => $font ) {
80
+						foreach ($this->choices as $key => $font) {
81 81
 							$class = null;
82 82
 
83
-							if ( $key === $saved_value ) {
83
+							if ($key === $saved_value) {
84 84
 								$class = ' selected';
85 85
 							}
86 86
 
87 87
 							?>
88
-							<li class="font-choice <?php echo esc_attr( $class ); ?>">
89
-								<div class="<?php echo esc_attr( $font['header']['cssClass'] ); ?>"><?php echo esc_html( $font['header']['title'] ); ?></div>
90
-								<small class="<?php echo esc_attr( $font['body']['cssClass'] ); ?>"><?php echo esc_html( $font['body']['title'] ); ?></small>
88
+							<li class="font-choice <?php echo esc_attr($class); ?>">
89
+								<div class="<?php echo esc_attr($font['header']['cssClass']); ?>"><?php echo esc_html($font['header']['title']); ?></div>
90
+								<small class="<?php echo esc_attr($font['body']['cssClass']); ?>"><?php echo esc_html($font['body']['title']); ?></small>
91 91
 							</li>
92 92
 							<?php
93 93
 						}
@@ -109,12 +109,12 @@  discard block
 block discarded – undo
109 109
 		public function set_theme_mod() {
110 110
 			$saved_value = $this->value();
111 111
 
112
-			foreach ( $this->choices as $key => $font ) {
113
-				if ( $key === $saved_value ) {
114
-					$font_styles = $this->get_css( $font['header']['cssDeclaration'], $font['body']['cssDeclaration'] );
112
+			foreach ($this->choices as $key => $font) {
113
+				if ($key === $saved_value) {
114
+					$font_styles = $this->get_css($font['header']['cssDeclaration'], $font['body']['cssDeclaration']);
115 115
 
116
-					if ( ! empty( $font_styles ) ) {
117
-						set_transient( 'lsx_font_styles', $font_styles, ( 24 * 60 * 60 ) );
116
+					if ( ! empty($font_styles)) {
117
+						set_transient('lsx_font_styles', $font_styles, (24 * 60 * 60));
118 118
 					}
119 119
 				}
120 120
 			}
@@ -123,15 +123,15 @@  discard block
 block discarded – undo
123 123
 		/**
124 124
 		 * Returns CSS.
125 125
 		 */
126
-		public function get_css( $font_header, $font_body ) {
126
+		public function get_css($font_header, $font_body) {
127 127
 			$css_fonts_file = get_template_directory() . '/assets/css/lsx-fonts.css';
128
-			$css_fonts = lsx_file_get_contents( $css_fonts_file );
129
-			$css_fonts = apply_filters( 'lsx_fonts_css', $css_fonts );
128
+			$css_fonts = lsx_file_get_contents($css_fonts_file);
129
+			$css_fonts = apply_filters('lsx_fonts_css', $css_fonts);
130 130
 
131
-			if ( ! empty( $css_fonts ) ) {
132
-				$css_fonts = str_replace( '[font-family-headings]', $font_header, $css_fonts );
133
-				$css_fonts = str_replace( '[font-family-body]', $font_body, $css_fonts );
134
-				$css_fonts = preg_replace( '/(\/\*# ).+( \*\/)/', '', $css_fonts );
131
+			if ( ! empty($css_fonts)) {
132
+				$css_fonts = str_replace('[font-family-headings]', $font_header, $css_fonts);
133
+				$css_fonts = str_replace('[font-family-body]', $font_body, $css_fonts);
134
+				$css_fonts = preg_replace('/(\/\*# ).+( \*\/)/', '', $css_fonts);
135 135
 				return $css_fonts;
136 136
 			}
137 137
 
Please login to merge, or discard this patch.
includes/classes/class-lsx-customize-layout-control.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -7,15 +7,15 @@  discard block
 block discarded – undo
7 7
  * @category   layout
8 8
  */
9 9
 
10
-if ( ! defined( 'ABSPATH' ) ) {
10
+if ( ! defined('ABSPATH')) {
11 11
 	exit;
12 12
 }
13 13
 
14
-if ( ! class_exists( 'WP_Customize_Control' ) ) {
14
+if ( ! class_exists('WP_Customize_Control')) {
15 15
 	return;
16 16
 }
17 17
 
18
-if ( ! class_exists( 'LSX_Customize_Layout_Control' ) ) :
18
+if ( ! class_exists('LSX_Customize_Layout_Control')) :
19 19
 
20 20
 	/**
21 21
 	 * LSX_Customize_Layout_Control Class.
@@ -30,9 +30,9 @@  discard block
 block discarded – undo
30 30
 		public $statuses;
31 31
 		public $layouts  = array();
32 32
 
33
-		public function __construct( $manager, $id, $args = array() ) {
34
-			parent::__construct( $manager, $id, $args );
35
-			if ( ! empty( $args['choices'] ) ) {
33
+		public function __construct($manager, $id, $args = array()) {
34
+			parent::__construct($manager, $id, $args);
35
+			if ( ! empty($args['choices'])) {
36 36
 				$this->layouts = $args['choices'];
37 37
 			}
38 38
 		}
@@ -41,35 +41,35 @@  discard block
 block discarded – undo
41 41
 		 * Enqueue scripts/styles for the color picker.
42 42
 		 */
43 43
 		public function enqueue() {
44
-			wp_enqueue_script( 'lsx-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-layout.js', array( 'jquery' ), LSX_VERSION, true );
44
+			wp_enqueue_script('lsx-layout-control', get_template_directory_uri() . '/assets/js/admin/customizer-layout.js', array('jquery'), LSX_VERSION, true);
45 45
 		}
46 46
 
47 47
 		/**
48 48
 		 * Render output.
49 49
 		 */
50 50
 		public function render_content() {
51
-			$post_id = 'customize-control-' . str_replace( '[', '-', str_replace( ']', '', $this->id ) );
51
+			$post_id = 'customize-control-' . str_replace('[', '-', str_replace(']', '', $this->id));
52 52
 			$class   = 'customize-control customize-control-' . $this->type;
53 53
 			$value   = $this->value();
54 54
 			?>
55 55
 			<label>
56
-				<?php if ( ! empty( $this->label ) ) { ?>
57
-					<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
56
+				<?php if ( ! empty($this->label)) { ?>
57
+					<span class="customize-control-title"><?php echo esc_html($this->label); ?></span>
58 58
 				<?php }
59
-				if ( ! empty( $this->description ) ) { ?>
60
-					<span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span>
59
+				if ( ! empty($this->description)) { ?>
60
+					<span class="description customize-control-description"><?php echo esc_html($this->description); ?></span>
61 61
 				<?php } ?>
62 62
 				<div class="layouts-selector">
63 63
 					<?php
64
-						foreach ( $this->layouts as $layout ) {
64
+						foreach ($this->layouts as $layout) {
65 65
 							$sel = 'border: 1px solid transparent;';
66
-							if ( $value === $layout ) {
66
+							if ($value === $layout) {
67 67
 								$sel = 'border: 1px solid rgb(43, 166, 203);';
68 68
 							}
69
-							echo '<img class="layout-button" style="padding:2px;' . esc_attr( $sel ) . '" src="' . esc_attr( get_template_directory_uri() ) . '/assets/images/admin/' . esc_attr( $layout ) . '.png" data-option="' . esc_attr( $layout ) . '">';
69
+							echo '<img class="layout-button" style="padding:2px;' . esc_attr($sel) . '" src="' . esc_attr(get_template_directory_uri()) . '/assets/images/admin/' . esc_attr($layout) . '.png" data-option="' . esc_attr($layout) . '">';
70 70
 						}
71 71
 					?>
72
-					<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(); ?>>
72
+					<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(); ?>>
73 73
 				</div>
74 74
 			</label>
75 75
 			<?php
Please login to merge, or discard this patch.