Passed
Push — master ( 2d5ff7...d1bd75 )
by Jacques
44s queued 10s
created
includes/gutenberg.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @subpackage Gutenberg
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
@@ -14,41 +14,41 @@  discard block
 block discarded – undo
14 14
  * Enqueue Admin styles on admin area
15 15
  */
16 16
 function load_gutenberg_admin_style() {
17
-	wp_enqueue_style( 'admin_css', get_template_directory_uri() . '/assets/css/admin/gutenberg-admin.css', false, '1.0.0' );
17
+	wp_enqueue_style('admin_css', get_template_directory_uri() . '/assets/css/admin/gutenberg-admin.css', false, '1.0.0');
18 18
 }
19
-add_action( 'admin_enqueue_scripts', 'load_gutenberg_admin_style' );
19
+add_action('admin_enqueue_scripts', 'load_gutenberg_admin_style');
20 20
 
21 21
 // Gutenberg Compatibility.
22
-require_once( get_template_directory() . '/lib/theme-support.php' );
22
+require_once(get_template_directory() . '/lib/theme-support.php');
23 23
 
24 24
 /**
25 25
  * Add custom class for Gutenberg Compatible template
26 26
  */
27
-function add_gutenberg_compatible_body_class( $classes ) {
27
+function add_gutenberg_compatible_body_class($classes) {
28 28
 	// if ( ! is_home() && ! is_front_page() ).
29
-	if ( is_page() || is_page_template() || is_single() )
29
+	if (is_page() || is_page_template() || is_single())
30 30
 		$classes[] = 'gutenberg-compatible-template';
31 31
 
32 32
 	// Add a class if the page is using the Content and Media block.
33 33
 	$post = get_post();
34
-	if ( function_exists( 'has_blocks' ) && isset( $post->post_content ) && has_blocks( $post->post_content ) && ( ! is_search() ) && ( ! is_archive() ) ) {
35
-		$blocks = parse_blocks( $post->post_content );
34
+	if (function_exists('has_blocks') && isset($post->post_content) && has_blocks($post->post_content) && ( ! is_search()) && ( ! is_archive())) {
35
+		$blocks = parse_blocks($post->post_content);
36 36
 
37
-		if ( 'core/media-text' === $blocks[0]['blockName'] ) {
37
+		if ('core/media-text' === $blocks[0]['blockName']) {
38 38
 			$classes[] = 'has-block-media-text';
39 39
 		}
40
-		if ( 'core/cover' === $blocks[0]['blockName'] ) {
40
+		if ('core/cover' === $blocks[0]['blockName']) {
41 41
 			$classes[] = 'has-block-cover';
42 42
 		}
43 43
 	}
44 44
 	return $classes;
45 45
 }
46 46
 
47
-add_filter( 'body_class', __NAMESPACE__ . '\add_gutenberg_compatible_body_class' );
47
+add_filter('body_class', __NAMESPACE__ . '\add_gutenberg_compatible_body_class');
48 48
 
49 49
 // Add custom class for templates that are using the Gutenberg editor.
50
-add_action('body_class', function( $classes ) {
51
-	if ( function_exists( 'has_blocks' ) && has_blocks( get_the_ID() ) && ( ! is_search() ) && ( ! is_archive() ) )
50
+add_action('body_class', function($classes) {
51
+	if (function_exists('has_blocks') && has_blocks(get_the_ID()) && ( ! is_search()) && ( ! is_archive()))
52 52
 		$classes[] = 'using-gutenberg';
53 53
 	return $classes;
54 54
 });
Please login to merge, or discard this patch.
includes/extras.php 1 patch
Spacing   +159 added lines, -159 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@  discard block
 block discarded – undo
6 6
  * @subpackage extras
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
  * @package    lsx
17 17
  * @subpackage extras
18 18
  */
19
-add_filter( 'widget_text', 'shortcode_unautop' );
20
-add_filter( 'widget_text', 'do_shortcode' );
19
+add_filter('widget_text', 'shortcode_unautop');
20
+add_filter('widget_text', 'do_shortcode');
21 21
 
22
-if ( ! function_exists( 'lsx_kses_allowed_html' ) ) :
22
+if ( ! function_exists('lsx_kses_allowed_html')) :
23 23
 
24 24
 	/**
25 25
 	 * Enable extra attributes (srcset, sizes) in img tag.
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 	 * @package    lsx
28 28
 	 * @subpackage extras
29 29
 	 */
30
-	function lsx_kses_allowed_html( $allowedtags, $context ) {
30
+	function lsx_kses_allowed_html($allowedtags, $context) {
31 31
 		$allowedtags['img']['srcset'] = true;
32 32
 		$allowedtags['img']['sizes']  = true;
33 33
 
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
 
43 43
 endif;
44 44
 
45
-add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 );
45
+add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2);
46 46
 
47
-if ( ! function_exists( 'lsx_body_class' ) ) :
47
+if ( ! function_exists('lsx_body_class')) :
48 48
 
49 49
 	/**
50 50
 	 * Add and remove body_class() classes.
@@ -52,60 +52,60 @@  discard block
 block discarded – undo
52 52
 	 * @package    lsx
53 53
 	 * @subpackage extras
54 54
 	 */
55
-	function lsx_body_class( $classes ) {
55
+	function lsx_body_class($classes) {
56 56
 		global $post;
57 57
 
58
-		$header_layout = get_theme_mod( 'lsx_header_layout', 'inline' );
58
+		$header_layout = get_theme_mod('lsx_header_layout', 'inline');
59 59
 		$classes[]     = 'header-' . $header_layout;
60 60
 
61
-		$mobile_header_layout = get_theme_mod( 'lsx_header_mobile_layout', 'navigation-bar' );
61
+		$mobile_header_layout = get_theme_mod('lsx_header_mobile_layout', 'navigation-bar');
62 62
 		$classes[]            = 'mobile-header-' . $mobile_header_layout;
63 63
 
64
-		if ( isset( $post ) ) {
64
+		if (isset($post)) {
65 65
 			$classes[] = $post->post_name;
66 66
 		}
67 67
 
68
-		if ( class_exists( 'LSX_Banners' ) && empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) {
69
-			$post_types = array( 'page', 'post' );
70
-			$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
68
+		if (class_exists('LSX_Banners') && empty(apply_filters('lsx_banner_plugin_disable', false))) {
69
+			$post_types = array('page', 'post');
70
+			$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
71 71
 
72
-			$img_group = get_post_meta( $post->ID, 'image_group', true );
72
+			$img_group = get_post_meta($post->ID, 'image_group', true);
73 73
 
74
-			if ( is_singular( $post_types ) && ! empty( $img_group ) && is_array( $img_group ) && ! empty( $img_group['banner_image'] ) ) {
74
+			if (is_singular($post_types) && ! empty($img_group) && is_array($img_group) && ! empty($img_group['banner_image'])) {
75 75
 				$classes[] = 'page-has-banner';
76 76
 			}
77 77
 		}
78 78
 
79
-		if ( function_exists( 'tour_operator' ) ) {
80
-			$post_types = array( 'page', 'post' );
79
+		if (function_exists('tour_operator')) {
80
+			$post_types = array('page', 'post');
81 81
 
82 82
 			$classes[] = 'to-active';
83 83
 		}
84 84
 
85
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) {
85
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) {
86 86
 			$classes[] = 'has-top-menu';
87 87
 		}
88 88
 
89
-		$fixed_header = get_theme_mod( 'lsx_header_fixed', false );
89
+		$fixed_header = get_theme_mod('lsx_header_fixed', false);
90 90
 
91
-		if ( false !== $fixed_header ) {
91
+		if (false !== $fixed_header) {
92 92
 			$classes[] = 'top-menu-fixed';
93 93
 		}
94 94
 
95
-		$search_form = get_theme_mod( 'lsx_header_search', false );
95
+		$search_form = get_theme_mod('lsx_header_search', false);
96 96
 
97
-		if ( false !== $search_form ) {
97
+		if (false !== $search_form) {
98 98
 			$classes[] = 'has-header-search';
99 99
 		}
100 100
 
101
-		$preloader_content = get_theme_mod( 'lsx_preloader_content_status', false );
101
+		$preloader_content = get_theme_mod('lsx_preloader_content_status', false);
102 102
 
103
-		if ( false !== $preloader_content ) {
103
+		if (false !== $preloader_content) {
104 104
 			$classes[] = 'preloader-content-enable';
105 105
 		}
106 106
 
107
-		$register_enabled = get_option( 'users_can_register', false );
108
-		if ( ( $register_enabled ) && is_page( 'my-account' ) && is_singular() ) {
107
+		$register_enabled = get_option('users_can_register', false);
108
+		if (($register_enabled) && is_page('my-account') && is_singular()) {
109 109
 			$classes[] = 'register-enabled';
110 110
 		}
111 111
 
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
 
115 115
 endif;
116 116
 
117
-add_filter( 'body_class', 'lsx_body_class' );
117
+add_filter('body_class', 'lsx_body_class');
118 118
 
119
-if ( ! function_exists( 'lsx_embed_wrap' ) ) :
119
+if ( ! function_exists('lsx_embed_wrap')) :
120 120
 
121 121
 	/**
122 122
 	 * Wrap embedded media as suggested by Readability.
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
 	 * @link https://gist.github.com/965956
128 128
 	 * @link http://www.readability.com/publishers/guidelines#publisher
129 129
 	 */
130
-	function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) {
131
-		if ( false !== strpos( $cache, '<iframe' ) ) {
130
+	function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') {
131
+		if (false !== strpos($cache, '<iframe')) {
132 132
 			return '<div class="entry-content-asset">' . $cache . '</div>';
133 133
 		}
134 134
 
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
 
138 138
 endif;
139 139
 
140
-add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 );
140
+add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4);
141 141
 
142
-if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) :
142
+if ( ! function_exists('lsx_remove_self_closing_tags')) :
143 143
 
144 144
 	/**
145 145
 	 * Remove unnecessary self-closing tags.
@@ -147,17 +147,17 @@  discard block
 block discarded – undo
147 147
 	 * @package    lsx
148 148
 	 * @subpackage extras
149 149
 	 */
150
-	function lsx_remove_self_closing_tags( $input ) {
151
-		return str_replace( ' />', '>', $input );
150
+	function lsx_remove_self_closing_tags($input) {
151
+		return str_replace(' />', '>', $input);
152 152
 	}
153 153
 
154 154
 endif;
155 155
 
156
-add_filter( 'get_avatar', 'lsx_remove_self_closing_tags' ); // <img />
157
-add_filter( 'comment_id_fields', 'lsx_remove_self_closing_tags' ); // <input />
158
-add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img />
156
+add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img />
157
+add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input />
158
+add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img />
159 159
 
160
-if ( ! function_exists( 'lsx_is_element_empty' ) ) :
160
+if ( ! function_exists('lsx_is_element_empty')) :
161 161
 
162 162
 	/**
163 163
 	 * Checks if a Nav $element is empty or not.
@@ -165,14 +165,14 @@  discard block
 block discarded – undo
165 165
 	 * @package    lsx
166 166
 	 * @subpackage extras
167 167
 	 */
168
-	function lsx_is_element_empty( $element ) {
169
-		$element = trim( $element );
170
-		return empty( $element ) ? false : true;
168
+	function lsx_is_element_empty($element) {
169
+		$element = trim($element);
170
+		return empty($element) ? false : true;
171 171
 	}
172 172
 
173 173
 endif;
174 174
 
175
-if ( ! function_exists( 'lsx_get_thumbnail' ) ) :
175
+if ( ! function_exists('lsx_get_thumbnail')) :
176 176
 
177 177
 	/**
178 178
 	 * return the responsive images.
@@ -180,62 +180,62 @@  discard block
 block discarded – undo
180 180
 	 * @package    lsx
181 181
 	 * @subpackage extras
182 182
 	 */
183
-	function lsx_get_thumbnail( $size, $image_src = false ) {
184
-		if ( false === $image_src ) {
183
+	function lsx_get_thumbnail($size, $image_src = false) {
184
+		if (false === $image_src) {
185 185
 			$post_id           = get_the_ID();
186
-			$post_thumbnail_id = get_post_thumbnail_id( $post_id );
187
-		} elseif ( false !== $image_src ) {
188
-			if ( is_numeric( $image_src ) ) {
186
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
187
+		} elseif (false !== $image_src) {
188
+			if (is_numeric($image_src)) {
189 189
 				$post_thumbnail_id = $image_src;
190 190
 			} else {
191
-				$post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src );
191
+				$post_thumbnail_id = lsx_get_attachment_id_from_src($image_src);
192 192
 			}
193 193
 		}
194 194
 
195
-		$size      = apply_filters( 'lsx_thumbnail_size', $size );
195
+		$size      = apply_filters('lsx_thumbnail_size', $size);
196 196
 		$img       = '';
197 197
 		$lazy_img  = '';
198 198
 		$image_url = '';
199 199
 
200
-		if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) {
200
+		if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) {
201 201
 			$srcset = false;
202
-			if ( ( ( 'team' === get_post_type() ) || ( 'testimonial' === get_post_type() ) ) && is_search() ) {
203
-				$img = get_the_post_thumbnail_url( get_the_ID(), 'lsx-thumbnail-wide' );
202
+			if ((('team' === get_post_type()) || ('testimonial' === get_post_type())) && is_search()) {
203
+				$img = get_the_post_thumbnail_url(get_the_ID(), 'lsx-thumbnail-wide');
204 204
 			} else {
205
-				$temp_img = wp_get_attachment_image_src( $post_thumbnail_id, $size );
206
-				if ( ! empty( $temp_img ) ) {
205
+				$temp_img = wp_get_attachment_image_src($post_thumbnail_id, $size);
206
+				if ( ! empty($temp_img)) {
207 207
 					$img = $temp_img[0];
208 208
 				}
209 209
 			}
210 210
 		} else {
211 211
 			$srcset = true;
212
-			$img    = wp_get_attachment_image_srcset( $post_thumbnail_id, $size );
212
+			$img    = wp_get_attachment_image_srcset($post_thumbnail_id, $size);
213 213
 
214
-			$temp_lazy = wp_get_attachment_image_src( $post_thumbnail_id, $size );
215
-			if ( ! empty( $temp_lazy ) ) {
214
+			$temp_lazy = wp_get_attachment_image_src($post_thumbnail_id, $size);
215
+			if ( ! empty($temp_lazy)) {
216 216
 				$lazy_img = $temp_lazy[0];
217 217
 			}
218 218
 
219
-			if ( empty( $img ) ) {
219
+			if (empty($img)) {
220 220
 				$srcset = false;
221
-				if ( ! empty( $lazy_img ) ) {
221
+				if ( ! empty($lazy_img)) {
222 222
 					$img = $lazy_img;
223 223
 				}
224 224
 			}
225 225
 		}
226 226
 
227
-		if ( '' !== $img ) {
227
+		if ('' !== $img) {
228 228
 			$image_url = $img;
229
-			$img       = '<img title="' . the_title_attribute( 'echo=0' ) . '" alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" ';
230
-			if ( $srcset ) {
231
-				$img .= 'srcset="' . esc_attr( $image_url ) . '" ';
229
+			$img       = '<img title="' . the_title_attribute('echo=0') . '" alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" ';
230
+			if ($srcset) {
231
+				$img .= 'srcset="' . esc_attr($image_url) . '" ';
232 232
 			} else {
233
-				$img .= 'src="' . esc_url( $image_url ) . '" ';
233
+				$img .= 'src="' . esc_url($image_url) . '" ';
234 234
 			}
235 235
 			$img .= '/>';
236 236
 
237
-			$img = apply_filters( 'lsx_lazyload_filter_images', $img );
238
-			$img = apply_filters( 'lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url );
237
+			$img = apply_filters('lsx_lazyload_filter_images', $img);
238
+			$img = apply_filters('lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url);
239 239
 		}
240 240
 
241 241
 		return $img;
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
 endif;
245 245
 
246
-if ( ! function_exists( 'lsx_thumbnail' ) ) :
246
+if ( ! function_exists('lsx_thumbnail')) :
247 247
 
248 248
 	/**
249 249
 	 * Output the Resonsive Images.
@@ -251,13 +251,13 @@  discard block
 block discarded – undo
251 251
 	 * @package    lsx
252 252
 	 * @subpackage extras
253 253
 	 */
254
-	function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) {
255
-		echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) );
254
+	function lsx_thumbnail($size = 'thumbnail', $image_src = false) {
255
+		echo wp_kses_post(lsx_get_thumbnail($size, $image_src));
256 256
 	}
257 257
 
258 258
 endif;
259 259
 
260
-if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) :
260
+if ( ! function_exists('lsx_get_attachment_id_from_src')) :
261 261
 
262 262
 	/**
263 263
 	 * Gets the attachments ID from the src.
@@ -265,13 +265,13 @@  discard block
 block discarded – undo
265 265
 	 * @package    lsx
266 266
 	 * @subpackage extras
267 267
 	 */
268
-	function lsx_get_attachment_id_from_src( $image_src ) {
269
-		$post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' );
268
+	function lsx_get_attachment_id_from_src($image_src) {
269
+		$post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src');
270 270
 
271
-		if ( false === $post_id ) {
271
+		if (false === $post_id) {
272 272
 			global $wpdb;
273
-			$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) );
274
-			wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 );
273
+			$post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src));
274
+			wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600);
275 275
 		}
276 276
 
277 277
 		return $post_id;
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 
280 280
 endif;
281 281
 
282
-if ( ! function_exists( 'lsx_page_banner' ) ) :
282
+if ( ! function_exists('lsx_page_banner')) :
283 283
 
284 284
 	/**
285 285
 	 * Add Featured Image as Banner on Single Pages.
@@ -288,30 +288,30 @@  discard block
 block discarded – undo
288 288
 	 * @subpackage extras
289 289
 	 */
290 290
 	function lsx_page_banner() {
291
-		if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) {
291
+		if (true === apply_filters('lsx_page_banner_disable', false)) {
292 292
 			return;
293 293
 		}
294 294
 
295
-		$post_types = array( 'page', 'post' );
296
-		$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
295
+		$post_types = array('page', 'post');
296
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
297 297
 
298
-		if ( is_singular( $post_types ) && has_post_thumbnail() ) :
298
+		if (is_singular($post_types) && has_post_thumbnail()) :
299 299
 			$bg_image = '';
300 300
 
301
-			if ( has_post_thumbnail() ) {
302
-				$temp_bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
303
-				if ( ! empty( $temp_bg_image ) ) {
301
+			if (has_post_thumbnail()) {
302
+				$temp_bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
303
+				if ( ! empty($temp_bg_image)) {
304 304
 					$bg_image = $temp_bg_image[0];
305 305
 				}
306 306
 			}
307 307
 
308
-			if ( '' !== $bg_image ) :
308
+			if ('' !== $bg_image) :
309 309
 				?>
310 310
 					<div class="page-banner-wrap">
311 311
 						<div class="page-banner">
312 312
 							<?php lsx_banner_inner_top(); ?>
313 313
 
314
-							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div>
314
+							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div>
315 315
 
316 316
 							<div class="container">
317 317
 								<header class="page-header">
@@ -330,11 +330,11 @@  discard block
 block discarded – undo
330 330
 
331 331
 endif;
332 332
 
333
-add_filter( 'lsx_banner_disable', 'lsx_disable_banner_for_blocks' );
334
-add_filter( 'lsx_global_header_disable', 'lsx_disable_banner_for_blocks' );
333
+add_filter('lsx_banner_disable', 'lsx_disable_banner_for_blocks');
334
+add_filter('lsx_global_header_disable', 'lsx_disable_banner_for_blocks');
335 335
 
336 336
 
337
-if ( ! function_exists( 'lsx_disable_banner_for_blocks' ) ) :
337
+if ( ! function_exists('lsx_disable_banner_for_blocks')) :
338 338
 
339 339
 	/**
340 340
 	 * Disable the Banner if the page is using Blocks
@@ -345,15 +345,15 @@  discard block
 block discarded – undo
345 345
 	 * @param  $disable boolean
346 346
 	 * @return boolean
347 347
 	 */
348
-	function lsx_disable_banner_for_blocks( $disable ) {
348
+	function lsx_disable_banner_for_blocks($disable) {
349 349
 		$queried_object = get_queried_object_id();
350
-		$show_on_front  = get_option( 'show_on_front' );
350
+		$show_on_front  = get_option('show_on_front');
351 351
 
352
-		if ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object ) {
352
+		if ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object) {
353 353
 			return $disable;
354 354
 		}
355 355
 
356
-		if ( function_exists( 'has_blocks' ) && has_blocks() && ( ! is_archive() ) ) {
356
+		if (function_exists('has_blocks') && has_blocks() && ( ! is_archive())) {
357 357
 			$disable = true;
358 358
 		}
359 359
 		return $disable;
@@ -361,9 +361,9 @@  discard block
 block discarded – undo
361 361
 
362 362
 endif;
363 363
 
364
-add_action( 'lsx_header_after', 'lsx_page_banner' );
364
+add_action('lsx_header_after', 'lsx_page_banner');
365 365
 
366
-if ( ! function_exists( 'lsx_form_submit_button' ) ) :
366
+if ( ! function_exists('lsx_form_submit_button')) :
367 367
 
368 368
 	/**
369 369
 	 * filter the Gravity Forms button type.
@@ -375,15 +375,15 @@  discard block
 block discarded – undo
375 375
 	 * @param  $form   Object
376 376
 	 * @return String
377 377
 	 */
378
-	function lsx_form_submit_button( $button, $form ) {
378
+	function lsx_form_submit_button($button, $form) {
379 379
 		return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>";
380 380
 	}
381 381
 
382 382
 endif;
383 383
 
384
-add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 );
384
+add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2);
385 385
 
386
-if ( ! function_exists( 'lsx_excerpt_more' ) ) :
386
+if ( ! function_exists('lsx_excerpt_more')) :
387 387
 
388 388
 	/**
389 389
 	 * Replaces the excerpt "more" text by a link.
@@ -391,15 +391,15 @@  discard block
 block discarded – undo
391 391
 	 * @package    lsx
392 392
 	 * @subpackage extras
393 393
 	 */
394
-	function lsx_excerpt_more( $more ) {
394
+	function lsx_excerpt_more($more) {
395 395
 		return '...';
396 396
 	}
397 397
 
398 398
 endif;
399 399
 
400
-add_filter( 'excerpt_more', 'lsx_excerpt_more' );
400
+add_filter('excerpt_more', 'lsx_excerpt_more');
401 401
 
402
-if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) :
402
+if ( ! function_exists('lsx_the_excerpt_filter')) :
403 403
 
404 404
 	/**
405 405
 	 * Add a continue reading link to the excerpt.
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
 	 * @package    lsx
408 408
 	 * @subpackage extras
409 409
 	 */
410
-	function lsx_the_excerpt_filter( $excerpt ) {
410
+	function lsx_the_excerpt_filter($excerpt) {
411 411
 
412 412
 		$post_formats = array(
413 413
 			'aside'   => 'aside',
@@ -420,10 +420,10 @@  discard block
 block discarded – undo
420 420
 			'audio'   => 'audio',
421 421
 		);
422 422
 
423
-		$show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) );
423
+		$show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats));
424 424
 
425
-		if ( ! $show_full_content ) {
426
-			if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) {
425
+		if ( ! $show_full_content) {
426
+			if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) {
427 427
 				$pagination = wp_link_pages(
428 428
 					array(
429 429
 						'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
@@ -434,11 +434,11 @@  discard block
 block discarded – undo
434 434
 					)
435 435
 				);
436 436
 
437
-				if ( ! empty( $pagination ) ) {
437
+				if ( ! empty($pagination)) {
438 438
 					$excerpt .= $pagination;
439 439
 				} else {
440
-					$excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>';
441
-					$excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more );
440
+					$excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>';
441
+					$excerpt .= apply_filters('excerpt_more_p', $excerpt_more);
442 442
 				}
443 443
 			}
444 444
 		}
@@ -448,9 +448,9 @@  discard block
 block discarded – undo
448 448
 
449 449
 endif;
450 450
 
451
-add_filter( 'the_excerpt', 'lsx_the_excerpt_filter', 1, 20 );
451
+add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20);
452 452
 
453
-if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) :
453
+if ( ! function_exists('lsx_full_width_widget_classes')) :
454 454
 
455 455
 	/**
456 456
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -458,8 +458,8 @@  discard block
 block discarded – undo
458 458
 	 * @package    lsx
459 459
 	 * @subpackage extras
460 460
 	 */
461
-	function lsx_full_width_widget_classes( $params ) {
462
-		if ( is_admin() ) {
461
+	function lsx_full_width_widget_classes($params) {
462
+		if (is_admin()) {
463 463
 			return $params;
464 464
 		}
465 465
 
@@ -468,9 +468,9 @@  discard block
 block discarded – undo
468 468
 		$widget_id   = $params[0]['widget_id'];
469 469
 		$widget_name = $params[0]['widget_name'];
470 470
 
471
-		if ( 'Text' === $widget_name ) {
472
-			$wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback'];
473
-			$wp_registered_widgets[ $widget_id ]['callback']          = 'lsx_full_width_widget_custom_callback';
471
+		if ('Text' === $widget_name) {
472
+			$wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback'];
473
+			$wp_registered_widgets[$widget_id]['callback']          = 'lsx_full_width_widget_custom_callback';
474 474
 		}
475 475
 
476 476
 		return $params;
@@ -478,9 +478,9 @@  discard block
 block discarded – undo
478 478
 
479 479
 endif;
480 480
 
481
-add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' );
481
+add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes');
482 482
 
483
-if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) :
483
+if ( ! function_exists('lsx_full_width_widget_custom_callback')) :
484 484
 
485 485
 	/**
486 486
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -494,25 +494,25 @@  discard block
 block discarded – undo
494 494
 		$original_callback_params = func_get_args();
495 495
 		$widget_id                = $original_callback_params[0]['widget_id'];
496 496
 
497
-		$original_callback                               = $wp_registered_widgets[ $widget_id ]['original_callback'];
498
-		$wp_registered_widgets[ $widget_id ]['callback'] = $original_callback;
497
+		$original_callback                               = $wp_registered_widgets[$widget_id]['original_callback'];
498
+		$wp_registered_widgets[$widget_id]['callback'] = $original_callback;
499 499
 
500
-		$widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base;
500
+		$widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base;
501 501
 
502 502
 		$widget_classname = '';
503 503
 
504
-		if ( is_callable( $original_callback ) ) {
504
+		if (is_callable($original_callback)) {
505 505
 			ob_start();
506
-			call_user_func_array( $original_callback, $original_callback_params );
506
+			call_user_func_array($original_callback, $original_callback_params);
507 507
 			$widget_output = ob_get_clean();
508 508
 
509
-			echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) );
509
+			echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id));
510 510
 		}
511 511
 	}
512 512
 
513 513
 endif;
514 514
 
515
-if ( ! function_exists( 'lsx_full_width_widget_output' ) ) :
515
+if ( ! function_exists('lsx_full_width_widget_output')) :
516 516
 
517 517
 	/**
518 518
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -520,12 +520,12 @@  discard block
 block discarded – undo
520 520
 	 * @package    lsx
521 521
 	 * @subpackage extras
522 522
 	 */
523
-	function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) {
524
-		if ( 'text' === $widget_id_base ) {
525
-			if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) {
526
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output );
527
-			} elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) {
528
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output );
523
+	function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) {
524
+		if ('text' === $widget_id_base) {
525
+			if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) {
526
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output);
527
+			} elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) {
528
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output);
529 529
 			}
530 530
 		}
531 531
 
@@ -534,13 +534,13 @@  discard block
 block discarded – undo
534 534
 
535 535
 endif;
536 536
 
537
-add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 );
537
+add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3);
538 538
 
539 539
 /**
540 540
  * Check if the content has a restricted post format that needs to show a full excerpt.
541 541
  */
542 542
 function lsx_post_format_force_content_on_list() {
543
-	$post_formats = apply_filters( 'lsx_post_format_force_content_on_list',
543
+	$post_formats = apply_filters('lsx_post_format_force_content_on_list',
544 544
 		array(
545 545
 			'video' => 'video',
546 546
 			'audio' => 'audio',
@@ -548,8 +548,8 @@  discard block
 block discarded – undo
548 548
 			'link'  => 'link',
549 549
 		)
550 550
 	);
551
-	$return       = false;
552
-	if ( ! has_post_format( $post_formats ) ) {
551
+	$return = false;
552
+	if ( ! has_post_format($post_formats)) {
553 553
 		$return = true;
554 554
 	}
555 555
 	return $return;
@@ -558,38 +558,38 @@  discard block
 block discarded – undo
558 558
 /**
559 559
  * Remove the Hentry Class Every
560 560
  */
561
-function lsx_remove_hentry( $classes ) {
562
-	if ( 'post' !== get_post_type() ) {
563
-		$classes = array_diff( $classes, array( 'hentry' ) );
561
+function lsx_remove_hentry($classes) {
562
+	if ('post' !== get_post_type()) {
563
+		$classes = array_diff($classes, array('hentry'));
564 564
 	}
565 565
 	return $classes;
566 566
 }
567
-add_filter( 'post_class', 'lsx_remove_hentry' );
567
+add_filter('post_class', 'lsx_remove_hentry');
568 568
 
569 569
 /**
570 570
  * Strip Excerpts.
571 571
  */
572
-function lsx_strip_excerpt( $content ) {
573
-	if ( is_search() || is_archive() || ( is_blog_installed() && ! is_single() && ! is_page() ) ) {
574
-		$content = strip_shortcodes( $content );
575
-		$content = str_replace( ']]>', ']]&gt;', $content );
576
-		$content = strip_tags( $content );
572
+function lsx_strip_excerpt($content) {
573
+	if (is_search() || is_archive() || (is_blog_installed() && ! is_single() && ! is_page())) {
574
+		$content = strip_shortcodes($content);
575
+		$content = str_replace(']]>', ']]&gt;', $content);
576
+		$content = strip_tags($content);
577 577
 	}
578 578
 	return $content;
579 579
 }
580
-add_filter( 'the_content', 'lsx_strip_excerpt' );
580
+add_filter('the_content', 'lsx_strip_excerpt');
581 581
 
582 582
 /**
583 583
  * Disable Gutenberg for LSX Custom Post Types.
584 584
  */
585
-function lsx_disable_gutenberg_product_type( $is_enabled, $post_type ) {
586
-	if ( 'testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type ) {
585
+function lsx_disable_gutenberg_product_type($is_enabled, $post_type) {
586
+	if ('testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type) {
587 587
 		return false;
588 588
 	}
589 589
 
590 590
 	return $is_enabled;
591 591
 }
592
-add_filter( 'gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2 );
592
+add_filter('gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2);
593 593
 
594 594
 /**
595 595
  * Add the "Blog" link to the breadcrumbs
@@ -597,27 +597,27 @@  discard block
 block discarded – undo
597 597
  * @param $crumbs
598 598
  * @return array
599 599
  */
600
-function lsx_breadcrumbs_blog_link( $crumbs ) {
600
+function lsx_breadcrumbs_blog_link($crumbs) {
601 601
 
602
-	$show_on_front = get_option( 'show_on_front' );
602
+	$show_on_front = get_option('show_on_front');
603 603
 
604
-	if ( 'page' === $show_on_front && ( is_category() || is_tag() ) ) {
604
+	if ('page' === $show_on_front && (is_category() || is_tag())) {
605 605
 
606
-		$blog_page = get_option( 'page_for_posts' );
607
-		if ( false !== $blog_page && '' !== $blog_page ) {
606
+		$blog_page = get_option('page_for_posts');
607
+		if (false !== $blog_page && '' !== $blog_page) {
608 608
 
609 609
 			$new_crumbs    = array();
610 610
 			$new_crumbs[0] = $crumbs[0];
611 611
 
612
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
612
+			if (function_exists('woocommerce_breadcrumb')) {
613 613
 				$new_crumbs[1] = array(
614
-					0 => get_the_title( $blog_page ),
615
-					1 => get_permalink( $blog_page ),
614
+					0 => get_the_title($blog_page),
615
+					1 => get_permalink($blog_page),
616 616
 				);
617 617
 			} else {
618 618
 				$new_crumbs[1] = array(
619
-					'text' => get_the_title( $blog_page ),
620
-					'url'  => get_permalink( $blog_page ),
619
+					'text' => get_the_title($blog_page),
620
+					'url'  => get_permalink($blog_page),
621 621
 				);
622 622
 			}
623 623
 			$new_crumbs[2] = $crumbs[1];
@@ -627,5 +627,5 @@  discard block
 block discarded – undo
627 627
 	}
628 628
 	return $crumbs;
629 629
 }
630
-add_filter( 'wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1 );
631
-add_filter( 'woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1 );
630
+add_filter('wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1);
631
+add_filter('woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1);
Please login to merge, or discard this patch.
tribe-events/list/single-event.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
  * @package TribeEventsCalendarPro
10 10
  */
11 11
 
12
-if ( ! defined( 'ABSPATH' ) ) {
13
-	die( '-1' );
12
+if ( ! defined('ABSPATH')) {
13
+	die('-1');
14 14
 }
15 15
 
16 16
 // Setup an array of venue details for use later in the template.
@@ -21,46 +21,46 @@  discard block
 block discarded – undo
21 21
 $venue_address = tribe_get_address();
22 22
 
23 23
 // Venue.
24
-$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : '';
24
+$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : '';
25 25
 
26 26
 // Organizer.
27 27
 $organizer = tribe_get_organizer();
28 28
 
29 29
 // Event Image.
30
-echo wp_kses_post( tribe_event_featured_image( null, 'medium' ) );
30
+echo wp_kses_post(tribe_event_featured_image(null, 'medium'));
31 31
 ?>
32 32
 
33 33
 <div class="tribe-events-event-content">
34 34
 	<!-- Event Title -->
35
-	<?php do_action( 'tribe_events_before_the_event_title' ); ?>
35
+	<?php do_action('tribe_events_before_the_event_title'); ?>
36 36
 	<h2 class="tribe-events-list-event-title">
37
-		<a class="tribe-event-url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
37
+		<a class="tribe-event-url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
38 38
 			<?php the_title(); ?>
39 39
 		</a>
40 40
 	</h2>
41
-	<?php do_action( 'tribe_events_after_the_event_title' ); ?>
41
+	<?php do_action('tribe_events_after_the_event_title'); ?>
42 42
 
43 43
 	<!-- Event Meta -->
44
-	<?php do_action( 'tribe_events_before_the_meta' ); ?>
44
+	<?php do_action('tribe_events_before_the_meta'); ?>
45 45
 	<div class="tribe-events-event-meta">
46
-		<div class="author <?php echo esc_attr( $has_venue_address ); ?>">
46
+		<div class="author <?php echo esc_attr($has_venue_address); ?>">
47 47
 
48 48
 			<!-- Schedule & Recurrence Details -->
49 49
 			<div class="tribe-event-schedule-details">
50
-				<?php echo wp_kses_post( tribe_events_event_schedule_details() ); ?>
50
+				<?php echo wp_kses_post(tribe_events_event_schedule_details()); ?>
51 51
 			</div>
52 52
 
53
-			<?php if ( $venue_details ) : ?>
53
+			<?php if ($venue_details) : ?>
54 54
 				<!-- Venue Display Info -->
55 55
 				<div class="tribe-events-venue-details">
56 56
 				<?php
57
-				$address_delimiter = empty( $venue_address ) ? ' ' : ', ';
57
+				$address_delimiter = empty($venue_address) ? ' ' : ', ';
58 58
 
59 59
 				// These details are already escaped in various ways earlier in the process.
60
-				echo implode( $address_delimiter, $venue_details );
60
+				echo implode($address_delimiter, $venue_details);
61 61
 
62
-				if ( tribe_show_google_map_link() ) {
63
-					echo wp_kses_post( tribe_get_map_link_html() );
62
+				if (tribe_show_google_map_link()) {
63
+					echo wp_kses_post(tribe_get_map_link_html());
64 64
 				}
65 65
 				?>
66 66
 				</div> <!-- .tribe-events-venue-details -->
@@ -70,29 +70,29 @@  discard block
 block discarded – undo
70 70
 	</div><!-- .tribe-events-event-meta -->
71 71
 
72 72
 	<!-- Event Cost -->
73
-	<?php if ( tribe_get_cost() ) : ?>
73
+	<?php if (tribe_get_cost()) : ?>
74 74
 		<div class="tribe-events-event-cost">
75
-			<?php esc_html_e( 'Price:', 'lsx' ); ?>
76
-			<span class="ticket-cost"><?php echo tribe_get_cost( null, true ); ?></span>
75
+			<?php esc_html_e('Price:', 'lsx'); ?>
76
+			<span class="ticket-cost"><?php echo tribe_get_cost(null, true); ?></span>
77 77
 			<?php
78 78
 			/**
79 79
 			 * Runs after cost is displayed in list style views
80 80
 			 *
81 81
 			 * @since 4.5
82 82
 			 */
83
-			do_action( 'tribe_events_inside_cost' )
83
+			do_action('tribe_events_inside_cost')
84 84
 			?>
85 85
 		</div>
86 86
 	<?php endif; ?>
87 87
 
88
-	<?php do_action( 'tribe_events_after_the_meta' ); ?>
88
+	<?php do_action('tribe_events_after_the_meta'); ?>
89 89
 
90 90
 	<!-- Event Content -->
91
-	<?php do_action( 'tribe_events_before_the_content' ); ?>
91
+	<?php do_action('tribe_events_before_the_content'); ?>
92 92
 	<div class="tribe-events-list-event-description tribe-events-content description entry-summary">
93
-		<?php echo wp_kses_post( tribe_events_get_the_excerpt() ); ?>
94
-		<a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'lsx' ); ?></a>
93
+		<?php echo wp_kses_post(tribe_events_get_the_excerpt()); ?>
94
+		<a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'lsx'); ?></a>
95 95
 	</div><!-- .tribe-events-list-event-description -->
96 96
 
97
-	<?php do_action( 'tribe_events_after_the_content' ); ?>
97
+	<?php do_action('tribe_events_after_the_content'); ?>
98 98
 </div>
Please login to merge, or discard this patch.
tribe-events/list/single-featured.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -9,52 +9,52 @@  discard block
 block discarded – undo
9 9
  * @package TribeEventsCalendarPro
10 10
  */
11 11
 
12
-if ( ! defined( 'ABSPATH' ) ) {
13
-	die( '-1' );
12
+if ( ! defined('ABSPATH')) {
13
+	die('-1');
14 14
 }
15 15
 
16 16
 // Setup an array of venue details for use later in the template.
17 17
 $venue_details = tribe_get_venue_details();
18 18
 
19 19
 // Venue.
20
-$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : '';
20
+$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : '';
21 21
 
22 22
 // Organizer.
23 23
 $organizer = tribe_get_organizer();
24 24
 
25 25
 // Event Image.
26
-echo wp_kses_post( tribe_event_featured_image( null, 'large' ) );
26
+echo wp_kses_post(tribe_event_featured_image(null, 'large'));
27 27
 ?>
28 28
 
29 29
 <div class="tribe-events-event-content">
30 30
 	<!-- Event Title -->
31
-	<?php do_action( 'tribe_events_before_the_event_title' ); ?>
31
+	<?php do_action('tribe_events_before_the_event_title'); ?>
32 32
 	<h2 class="tribe-events-list-event-title">
33
-		<a class="tribe-event-url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
33
+		<a class="tribe-event-url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
34 34
 			<?php the_title(); ?>
35 35
 		</a>
36 36
 
37
-		<span class="label label-default"><?php esc_html_e( 'Featured', 'lsx' ); ?></span>
37
+		<span class="label label-default"><?php esc_html_e('Featured', 'lsx'); ?></span>
38 38
 	</h2>
39
-	<?php do_action( 'tribe_events_after_the_event_title' ); ?>
39
+	<?php do_action('tribe_events_after_the_event_title'); ?>
40 40
 
41 41
 	<!-- Event Meta -->
42
-	<?php do_action( 'tribe_events_before_the_meta' ); ?>
42
+	<?php do_action('tribe_events_before_the_meta'); ?>
43 43
 	<div class="tribe-events-event-meta">
44
-		<div class="author <?php echo esc_attr( $has_venue_address ); ?>">
44
+		<div class="author <?php echo esc_attr($has_venue_address); ?>">
45 45
 
46 46
 			<!-- Schedule & Recurrence Details -->
47 47
 			<div class="tribe-event-schedule-details">
48
-				<?php echo wp_kses_post( tribe_events_event_schedule_details() ); ?>
48
+				<?php echo wp_kses_post(tribe_events_event_schedule_details()); ?>
49 49
 			</div>
50 50
 
51
-			<?php if ( $venue_details ) : ?>
51
+			<?php if ($venue_details) : ?>
52 52
 				<!-- Venue Display Info -->
53 53
 				<div class="tribe-events-venue-details">
54
-					<?php echo wp_kses_post( implode( ', ', $venue_details ) ); ?>
54
+					<?php echo wp_kses_post(implode(', ', $venue_details)); ?>
55 55
 					<?php
56
-					if ( tribe_show_google_map_link() ) {
57
-						echo wp_kses_post( tribe_get_map_link_html() );
56
+					if (tribe_show_google_map_link()) {
57
+						echo wp_kses_post(tribe_get_map_link_html());
58 58
 					}
59 59
 					?>
60 60
 				</div> <!-- .tribe-events-venue-details -->
@@ -62,26 +62,26 @@  discard block
 block discarded – undo
62 62
 
63 63
 		</div>
64 64
 	</div><!-- .tribe-events-event-meta -->
65
-	<?php do_action( 'tribe_events_after_the_meta' ); ?>
65
+	<?php do_action('tribe_events_after_the_meta'); ?>
66 66
 
67 67
 	<!-- Event Cost -->
68
-	<?php if ( tribe_get_cost() ) : ?>
68
+	<?php if (tribe_get_cost()) : ?>
69 69
 		<div class="tribe-events-event-cost featured-event">
70
-			<?php esc_html_e( 'Price:', 'lsx' ); ?>
71
-			<span class="ticket-cost"><?php echo esc_html( tribe_get_cost( null, true ) ); ?></span>
70
+			<?php esc_html_e('Price:', 'lsx'); ?>
71
+			<span class="ticket-cost"><?php echo esc_html(tribe_get_cost(null, true)); ?></span>
72 72
 			<?php
73 73
 			/** This action is documented in the-events-calendar/src/views/list/single-event.php */
74
-			do_action( 'tribe_events_inside_cost' )
74
+			do_action('tribe_events_inside_cost')
75 75
 			?>
76 76
 		</div>
77 77
 	<?php endif; ?>
78 78
 
79 79
 	<!-- Event Content -->
80
-	<?php do_action( 'tribe_events_before_the_content' ); ?>
80
+	<?php do_action('tribe_events_before_the_content'); ?>
81 81
 	<div class="tribe-events-list-event-description tribe-events-content">
82
-		<?php echo wp_kses_post( tribe_events_get_the_excerpt() ); ?>
83
-		<a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'lsx' ); ?></a>
82
+		<?php echo wp_kses_post(tribe_events_get_the_excerpt()); ?>
83
+		<a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'lsx'); ?></a>
84 84
 	</div><!-- .tribe-events-list-event-description -->
85 85
 
86
-	<?php do_action( 'tribe_events_after_the_content' ); ?>
86
+	<?php do_action('tribe_events_after_the_content'); ?>
87 87
 </div>
Please login to merge, or discard this patch.
tribe-events/day/single-event.php 1 patch
Spacing   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -9,76 +9,76 @@
 block discarded – undo
9 9
  * @package TribeEventsCalendarPro
10 10
  */
11 11
 
12
-if ( ! defined( 'ABSPATH' ) ) {
13
-	die( '-1' );
12
+if ( ! defined('ABSPATH')) {
13
+	die('-1');
14 14
 }
15 15
 
16 16
 $venue_details = tribe_get_venue_details();
17 17
 
18 18
 // Venue microformats.
19
-$has_venue         = ( $venue_details ) ? ' vcard' : '';
20
-$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : '';
19
+$has_venue         = ($venue_details) ? ' vcard' : '';
20
+$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : '';
21 21
 
22 22
 // The address string via tribe_get_venue_details will often be populated even when there's
23 23
 // no address, so let's get the address string on its own for a couple of checks below.
24 24
 $venue_address = tribe_get_address();
25 25
 
26 26
 // Event Image.
27
-echo wp_kses_post( tribe_event_featured_image( null, 'medium' ) );
27
+echo wp_kses_post(tribe_event_featured_image(null, 'medium'));
28 28
 ?>
29 29
 
30 30
 <div class="tribe-events-event-content">
31 31
 	<!-- Event Title -->
32
-	<?php do_action( 'tribe_events_before_the_event_title' ); ?>
32
+	<?php do_action('tribe_events_before_the_event_title'); ?>
33 33
 	<h2 class="tribe-events-list-event-title summary">
34
-		<a class="url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
34
+		<a class="url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
35 35
 			<?php the_title(); ?>
36 36
 		</a>
37 37
 	</h2>
38
-	<?php do_action( 'tribe_events_after_the_event_title' ); ?>
38
+	<?php do_action('tribe_events_after_the_event_title'); ?>
39 39
 
40 40
 	<!-- Event Meta -->
41
-	<?php do_action( 'tribe_events_before_the_meta' ); ?>
42
-	<div class="tribe-events-event-meta <?php echo esc_attr( $has_venue . $has_venue_address ); ?>">
41
+	<?php do_action('tribe_events_before_the_meta'); ?>
42
+	<div class="tribe-events-event-meta <?php echo esc_attr($has_venue . $has_venue_address); ?>">
43 43
 
44 44
 		<!-- Schedule & Recurrence Details -->
45 45
 		<div class="tribe-updated published time-details">
46
-			<?php echo wp_kses_post( tribe_events_event_schedule_details() ); ?>
46
+			<?php echo wp_kses_post(tribe_events_event_schedule_details()); ?>
47 47
 		</div>
48 48
 
49
-		<?php if ( $venue_details ) : ?>
49
+		<?php if ($venue_details) : ?>
50 50
 			<!-- Venue Display Info -->
51 51
 			<div class="tribe-events-venue-details">
52 52
 			<?php
53
-				$address_delimiter = empty( $venue_address ) ? ' ' : ', ';
53
+				$address_delimiter = empty($venue_address) ? ' ' : ', ';
54 54
 
55 55
 				// These details are already escaped in various ways earlier in the code.
56
-				echo implode( $address_delimiter, $venue_details );
56
+				echo implode($address_delimiter, $venue_details);
57 57
 			?>
58 58
 			</div> <!-- .tribe-events-venue-details -->
59 59
 		<?php endif; ?>
60 60
 
61 61
 	</div><!-- .tribe-events-event-meta -->
62 62
 
63
-	<?php if ( tribe_get_cost() ) : ?>
63
+	<?php if (tribe_get_cost()) : ?>
64 64
 		<div class="tribe-events-event-cost">
65
-			<?php esc_html_e( 'Price:', 'lsx' ); ?>
66
-			<span class="ticket-cost"><?php echo tribe_get_cost( null, true ); ?></span>
65
+			<?php esc_html_e('Price:', 'lsx'); ?>
66
+			<span class="ticket-cost"><?php echo tribe_get_cost(null, true); ?></span>
67 67
 			<?php
68 68
 			/** This action is documented in the-events-calendar/src/views/list/single-event.php */
69
-			do_action( 'tribe_events_inside_cost' )
69
+			do_action('tribe_events_inside_cost')
70 70
 			?>
71 71
 		</div>
72 72
 	<?php endif; ?>
73 73
 
74
-	<?php do_action( 'tribe_events_after_the_meta' ); ?>
74
+	<?php do_action('tribe_events_after_the_meta'); ?>
75 75
 
76 76
 	<!-- Event Content -->
77
-	<?php do_action( 'tribe_events_before_the_content' ); ?>
77
+	<?php do_action('tribe_events_before_the_content'); ?>
78 78
 	<div class="tribe-events-list-event-description tribe-events-content description entry-summary">
79
-		<?php echo wp_kses_post( tribe_events_get_the_excerpt() ); ?>
80
-		<a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'lsx' ); ?></a>
79
+		<?php echo wp_kses_post(tribe_events_get_the_excerpt()); ?>
80
+		<a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'lsx'); ?></a>
81 81
 	</div><!-- .tribe-events-list-event-description -->
82 82
 
83
-	<?php do_action( 'tribe_events_after_the_content' ); ?>
83
+	<?php do_action('tribe_events_after_the_content'); ?>
84 84
 </div>
Please login to merge, or discard this patch.
tribe-events/day/single-featured.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -9,66 +9,66 @@
 block discarded – undo
9 9
  * @package TribeEventsCalendarPro
10 10
  */
11 11
 
12
-if ( ! defined( 'ABSPATH' ) ) {
13
-	die( '-1' );
12
+if ( ! defined('ABSPATH')) {
13
+	die('-1');
14 14
 }
15 15
 
16 16
 $venue_details = tribe_get_venue_details();
17 17
 
18 18
 // Venue microformats.
19
-$has_venue         = ( $venue_details ) ? ' vcard' : '';
20
-$has_venue_address = ( ! empty( $venue_details['address'] ) ) ? ' location' : '';
19
+$has_venue         = ($venue_details) ? ' vcard' : '';
20
+$has_venue_address = ( ! empty($venue_details['address'])) ? ' location' : '';
21 21
 
22 22
 // Event Image.
23
-echo wp_kses_post( tribe_event_featured_image( null, 'large' ) );
23
+echo wp_kses_post(tribe_event_featured_image(null, 'large'));
24 24
 ?>
25 25
 
26 26
 <div class="tribe-events-event-content">
27 27
 	<!-- Event Title -->
28
-	<?php do_action( 'tribe_events_before_the_event_title' ); ?>
28
+	<?php do_action('tribe_events_before_the_event_title'); ?>
29 29
 	<h2 class="tribe-events-list-event-title summary">
30
-		<a class="url" href="<?php echo esc_url( tribe_get_event_link() ); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
30
+		<a class="url" href="<?php echo esc_url(tribe_get_event_link()); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark">
31 31
 			<?php the_title(); ?>
32 32
 		</a>
33 33
 	</h2>
34
-	<?php do_action( 'tribe_events_after_the_event_title' ); ?>
34
+	<?php do_action('tribe_events_after_the_event_title'); ?>
35 35
 
36 36
 	<!-- Event Meta -->
37
-	<?php do_action( 'tribe_events_before_the_meta' ); ?>
38
-	<div class="tribe-events-event-meta <?php echo esc_attr( $has_venue . $has_venue_address ); ?>">
37
+	<?php do_action('tribe_events_before_the_meta'); ?>
38
+	<div class="tribe-events-event-meta <?php echo esc_attr($has_venue . $has_venue_address); ?>">
39 39
 
40 40
 		<!-- Schedule & Recurrence Details -->
41 41
 		<div class="tribe-updated published time-details">
42
-			<?php echo wp_kses_post( tribe_events_event_schedule_details() ); ?>
42
+			<?php echo wp_kses_post(tribe_events_event_schedule_details()); ?>
43 43
 		</div>
44 44
 
45
-		<?php if ( $venue_details ) : ?>
45
+		<?php if ($venue_details) : ?>
46 46
 			<!-- Venue Display Info -->
47 47
 			<div class="tribe-events-venue-details">
48
-				<?php echo implode( ', ', $venue_details ); ?>
48
+				<?php echo implode(', ', $venue_details); ?>
49 49
 			</div> <!-- .tribe-events-venue-details -->
50 50
 		<?php endif; ?>
51 51
 
52 52
 	</div><!-- .tribe-events-event-meta -->
53
-	<?php do_action( 'tribe_events_after_the_meta' ); ?>
53
+	<?php do_action('tribe_events_after_the_meta'); ?>
54 54
 
55
-	<?php if ( tribe_get_cost() ) : ?>
55
+	<?php if (tribe_get_cost()) : ?>
56 56
 		<div class="tribe-events-event-cost">
57
-			<?php esc_html_e( 'Price:', 'lsx' ); ?>
58
-			<span class="ticket-cost"><?php echo tribe_get_cost( null, true ); ?></span>
57
+			<?php esc_html_e('Price:', 'lsx'); ?>
58
+			<span class="ticket-cost"><?php echo tribe_get_cost(null, true); ?></span>
59 59
 			<?php
60 60
 			/** This action is documented in the-events-calendar/src/views/list/single-event.php */
61
-			do_action( 'tribe_events_inside_cost' )
61
+			do_action('tribe_events_inside_cost')
62 62
 			?>
63 63
 		</div>
64 64
 	<?php endif; ?>
65 65
 
66 66
 	<!-- Event Content -->
67
-	<?php do_action( 'tribe_events_before_the_content' ); ?>
67
+	<?php do_action('tribe_events_before_the_content'); ?>
68 68
 	<div class="tribe-events-list-event-description tribe-events-content description entry-summary">
69
-		<?php echo wp_kses_post( tribe_events_get_the_excerpt() ); ?>
70
-		<a href="<?php echo esc_url( tribe_get_event_link() ); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e( 'Find out more', 'lsx' ); ?></a>
69
+		<?php echo wp_kses_post(tribe_events_get_the_excerpt()); ?>
70
+		<a href="<?php echo esc_url(tribe_get_event_link()); ?>" class="tribe-events-read-more" rel="bookmark"><?php esc_html_e('Find out more', 'lsx'); ?></a>
71 71
 	</div><!-- .tribe-events-list-event-description -->
72 72
 
73
-	<?php do_action( 'tribe_events_after_the_content' ); ?>
73
+	<?php do_action('tribe_events_after_the_content'); ?>
74 74
 </div>
Please login to merge, or discard this patch.
tribe-events/pro/related-events.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -14,31 +14,31 @@
 block discarded – undo
14 14
  * @package TribeEventsCalendarPro
15 15
  */
16 16
 
17
-if ( ! defined( 'ABSPATH' ) ) {
18
-	die( '-1' );
17
+if ( ! defined('ABSPATH')) {
18
+	die('-1');
19 19
 }
20 20
 
21 21
 $posts = tribe_get_related_posts();
22 22
 
23
-if ( is_array( $posts ) && ! empty( $posts ) ) : ?>
23
+if (is_array($posts) && ! empty($posts)) : ?>
24 24
 <?php /* Translators: %s: related */ ?>
25
-<h3 class="tribe-events-related-events-title"><?php printf( esc_html__( 'Related %s', 'lsx' ), esc_html( tribe_get_event_label_plural() ) ); ?></h3>
25
+<h3 class="tribe-events-related-events-title"><?php printf(esc_html__('Related %s', 'lsx'), esc_html(tribe_get_event_label_plural())); ?></h3>
26 26
 
27 27
 <ul class="tribe-related-events tribe-clearfix">
28
-	<?php foreach ( $posts as $post ) : ?>
28
+	<?php foreach ($posts as $post) : ?>
29 29
 	<li>
30
-		<?php $thumb = ( has_post_thumbnail( $post->ID ) ) ? get_the_post_thumbnail( $post->ID, 'large' ) : '<img src="' . esc_url( trailingslashit( Tribe__Events__Pro__Main::instance()->pluginUrl ) . 'src/resources/images/tribe-related-events-placeholder.png' ) . '" alt="' . esc_attr( get_the_title( $post->ID ) ) . '" />'; ?>
30
+		<?php $thumb = (has_post_thumbnail($post->ID)) ? get_the_post_thumbnail($post->ID, 'large') : '<img src="' . esc_url(trailingslashit(Tribe__Events__Pro__Main::instance()->pluginUrl) . 'src/resources/images/tribe-related-events-placeholder.png') . '" alt="' . esc_attr(get_the_title($post->ID)) . '" />'; ?>
31 31
 		<div class="tribe-related-events-thumbnail">
32
-			<a href="<?php echo esc_url( tribe_get_event_link( $post ) ); ?>" class="url" rel="bookmark"><?php echo wp_kses_post( $thumb ); ?></a>
32
+			<a href="<?php echo esc_url(tribe_get_event_link($post)); ?>" class="url" rel="bookmark"><?php echo wp_kses_post($thumb); ?></a>
33 33
 		</div>
34 34
 		<div class="tribe-related-event-info">
35
-			<h3 class="tribe-related-events-title"><a href="<?php echo esc_url( tribe_get_event_link( $post ) ); ?>" class="tribe-event-url" rel="bookmark"><?php echo get_the_title( $post->ID ); ?></a></h3>
35
+			<h3 class="tribe-related-events-title"><a href="<?php echo esc_url(tribe_get_event_link($post)); ?>" class="tribe-event-url" rel="bookmark"><?php echo get_the_title($post->ID); ?></a></h3>
36 36
 			<?php
37
-			if ( Tribe__Events__Main::POSTTYPE === $post->post_type ) {
38
-				echo wp_kses_post( tribe_events_event_schedule_details( $post ) );
37
+			if (Tribe__Events__Main::POSTTYPE === $post->post_type) {
38
+				echo wp_kses_post(tribe_events_event_schedule_details($post));
39 39
 			}
40 40
 			?>
41
-			<a href="<?php echo esc_url( tribe_get_event_link( $post ) ); ?>" class="moretag"><?php esc_html_e( 'View event', 'lsx' ); ?></a>
41
+			<a href="<?php echo esc_url(tribe_get_event_link($post)); ?>" class="moretag"><?php esc_html_e('View event', 'lsx'); ?></a>
42 42
 		</div>
43 43
 	</li>
44 44
 	<?php endforeach; ?>
Please login to merge, or discard this patch.
includes/widgets.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage widgets
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_widget_area_init' ) ) :
13
+if ( ! function_exists('lsx_widget_area_init')) :
14 14
 
15 15
 	/**
16 16
 	 * Register widgetized area and update sidebar with default widgets.
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	function lsx_widget_area_init() {
22 22
 		register_sidebar(
23 23
 			array(
24
-				'name'          => esc_html__( 'Home', 'lsx' ),
24
+				'name'          => esc_html__('Home', 'lsx'),
25 25
 				'id'            => 'sidebar-home',
26 26
 				'before_widget' => '<aside id="%1$s" class="widget %2$s">',
27 27
 				'after_widget'  => '</aside>',
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
 		register_sidebar(
34 34
 			array(
35
-				'name'          => esc_html__( 'Sidebar', 'lsx' ),
35
+				'name'          => esc_html__('Sidebar', 'lsx'),
36 36
 				'id'            => 'sidebar-1',
37 37
 				'before_widget' => '<aside id="%1$s" class="widget %2$s">',
38 38
 				'after_widget'  => '</aside>',
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 		register_sidebar(
45 45
 			array(
46
-				'name'          => esc_html__( 'Footer', 'lsx' ),
46
+				'name'          => esc_html__('Footer', 'lsx'),
47 47
 				'id'            => 'sidebar-footer',
48 48
 				'before_widget' => '<div class="styler"><aside id="%1$s" class="widget %2$s">',
49 49
 				'after_widget'  => '</aside></div>',
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
 		register_sidebar(
56 56
 			array(
57
-				'name'          => esc_html__( 'Footer Call to Action', 'lsx' ),
57
+				'name'          => esc_html__('Footer Call to Action', 'lsx'),
58 58
 				'id'            => 'sidebar-footer-cta',
59 59
 				'before_widget' => '<aside id="%1$s" class="widget %2$s">',
60 60
 				'after_widget'  => '</aside>',
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
 
67 67
 endif;
68 68
 
69
-add_action( 'widgets_init', 'lsx_widget_area_init' );
69
+add_action('widgets_init', 'lsx_widget_area_init');
70 70
 
71
-if ( ! function_exists( 'lsx_sidebar_footer_params' ) ) :
71
+if ( ! function_exists('lsx_sidebar_footer_params')) :
72 72
 
73 73
 	/**
74 74
 	 * Register widgetized area and update sidebar with default widgets.
@@ -77,13 +77,13 @@  discard block
 block discarded – undo
77 77
 	 * @subpackage widgets
78 78
 	 * @return $params
79 79
 	 */
80
-	function lsx_sidebar_footer_params( $params ) {
80
+	function lsx_sidebar_footer_params($params) {
81 81
 		$sidebar_id = $params[0]['id'];
82 82
 
83
-		if ( 'sidebar-footer' === $sidebar_id ) {
83
+		if ('sidebar-footer' === $sidebar_id) {
84 84
 			$total_widgets              = wp_get_sidebars_widgets();
85
-			$sidebar_widgets            = count( $total_widgets[ $sidebar_id ] );
86
-			$params[0]['before_widget'] = str_replace( 'class="styler', 'class="col-md-' . floor( 12 / $sidebar_widgets ), $params[0]['before_widget'] );
85
+			$sidebar_widgets            = count($total_widgets[$sidebar_id]);
86
+			$params[0]['before_widget'] = str_replace('class="styler', 'class="col-md-' . floor(12 / $sidebar_widgets), $params[0]['before_widget']);
87 87
 		}
88 88
 
89 89
 		return $params;
@@ -91,4 +91,4 @@  discard block
 block discarded – undo
91 91
 
92 92
 endif;
93 93
 
94
-add_filter( 'dynamic_sidebar_params', 'lsx_sidebar_footer_params' );
94
+add_filter('dynamic_sidebar_params', 'lsx_sidebar_footer_params');
Please login to merge, or discard this patch.
includes/config.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 config
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_setup' ) ) :
13
+if ( ! function_exists('lsx_setup')) :
14 14
 
15 15
 	/**
16 16
 	 * Theme after_setup_theme action.
@@ -22,26 +22,26 @@  discard block
 block discarded – undo
22 22
 		global $content_width;
23 23
 		$content_width = 1140;
24 24
 
25
-		load_theme_textdomain( 'lsx', get_template_directory() . '/languages' );
25
+		load_theme_textdomain('lsx', get_template_directory() . '/languages');
26 26
 
27
-		add_image_size( 'lsx-thumbnail-carousel', 350, 230, true );
28
-		add_image_size( 'lsx-thumbnail-wide', 360, 168, true );
29
-		add_image_size( 'lsx-thumbnail-square', 350, 350, true );
30
-		add_image_size( 'lsx-thumbnail-single', 750, 350, true );
31
-		add_image_size( 'lsx-banner', 1920, 600, true );
27
+		add_image_size('lsx-thumbnail-carousel', 350, 230, true);
28
+		add_image_size('lsx-thumbnail-wide', 360, 168, true);
29
+		add_image_size('lsx-thumbnail-square', 350, 350, true);
30
+		add_image_size('lsx-thumbnail-single', 750, 350, true);
31
+		add_image_size('lsx-banner', 1920, 600, true);
32 32
 
33 33
 		register_nav_menus(
34 34
 			array(
35
-				'primary'       => esc_html__( 'Primary Menu', 'lsx' ),
36
-				'top-menu'      => esc_html__( 'Top Menu (right)', 'lsx' ),
37
-				'top-menu-left' => esc_html__( 'Top Menu (left)', 'lsx' ),
38
-				'social'        => esc_html__( 'Social Menu', 'lsx' ),
39
-				'footer'        => esc_html__( 'Footer Menu', 'lsx' ),
35
+				'primary'       => esc_html__('Primary Menu', 'lsx'),
36
+				'top-menu'      => esc_html__('Top Menu (right)', 'lsx'),
37
+				'top-menu-left' => esc_html__('Top Menu (left)', 'lsx'),
38
+				'social'        => esc_html__('Social Menu', 'lsx'),
39
+				'footer'        => esc_html__('Footer Menu', 'lsx'),
40 40
 			)
41 41
 		);
42 42
 
43
-		add_theme_support( 'automatic-feed-links' );
44
-		add_theme_support( 'custom-background' );
43
+		add_theme_support('automatic-feed-links');
44
+		add_theme_support('custom-background');
45 45
 
46 46
 		add_theme_support(
47 47
 			'custom-logo',
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 			)
54 54
 		);
55 55
 
56
-		add_theme_support( 'html5', array( 'caption' ) );
56
+		add_theme_support('html5', array('caption'));
57 57
 
58 58
 		add_theme_support(
59 59
 			'post-formats',
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
 			)
67 67
 		);
68 68
 
69
-		add_theme_support( 'post-thumbnails' );
70
-		add_theme_support( 'sensei' );
69
+		add_theme_support('post-thumbnails');
70
+		add_theme_support('sensei');
71 71
 
72 72
 		add_theme_support(
73 73
 			'site-logo',
@@ -80,14 +80,14 @@  discard block
 block discarded – undo
80 80
 			)
81 81
 		);
82 82
 
83
-		add_theme_support( 'title-tag' );
83
+		add_theme_support('title-tag');
84 84
 
85 85
 		/*
86 86
 		 * @TODO - Necessary to test it
87 87
 		 */
88 88
 
89 89
 		// add_theme_support( 'woocommerce' );.
90
-		add_theme_support( 'starter-content', array(
90
+		add_theme_support('starter-content', array(
91 91
 			'widgets'     => array(
92 92
 				'sidebar-home'       => array(
93 93
 					'custom_widget_1' => array(
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
 						array(
97 97
 							'title' => '',
98
-							'text'  => wp_kses_post( '<div class="row"><div class="col-sm-12 text-center"><h3>Build your perfect website <small>with the LSX theme</small></h3></div></div><div class="row"><div class="col-sm-4 text-center"><h4>Fast</h4><p>"Quick" isn\'t a word most people use when describing their website building experience.</p></div><div class="col-sm-4 text-center"><h4>Easy</h4><p>We\'ve built websites for countless clients, and we know what kind of back-end makes sense easily.</p></div><div class="col-sm-4 text-center"><h4>Comprehensive</h4><p>The LSX extensions come with features out the box that are essential.</p></div></div>' ),
98
+							'text'  => wp_kses_post('<div class="row"><div class="col-sm-12 text-center"><h3>Build your perfect website <small>with the LSX theme</small></h3></div></div><div class="row"><div class="col-sm-4 text-center"><h4>Fast</h4><p>"Quick" isn\'t a word most people use when describing their website building experience.</p></div><div class="col-sm-4 text-center"><h4>Easy</h4><p>We\'ve built websites for countless clients, and we know what kind of back-end makes sense easily.</p></div><div class="col-sm-4 text-center"><h4>Comprehensive</h4><p>The LSX extensions come with features out the box that are essential.</p></div></div>'),
99 99
 						),
100 100
 					),
101 101
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
 						array(
106 106
 							'title' => '',
107
-							'text'  => wp_kses_post( '<div class="lsx-full-width-alt"><div class="row"><div class="col-xs-12"><h3>A big CTA title</h3><p class="text-center"><a class="btn cta-btn" href="http://www.lsdeb.biz/" target="_blank" rel="noreferrer noopener">Hire Us</a><p></div></div></div>' ),
107
+							'text'  => wp_kses_post('<div class="lsx-full-width-alt"><div class="row"><div class="col-xs-12"><h3>A big CTA title</h3><p class="text-center"><a class="btn cta-btn" href="http://www.lsdeb.biz/" target="_blank" rel="noreferrer noopener">Hire Us</a><p></div></div></div>'),
108 108
 						),
109 109
 					),
110 110
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
 						array(
115 115
 							'title' => '',
116
-							'text'  => wp_kses_post( '<div class="row"><div class="col-xs-12"><h3>Homepage Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p></div></div>' ),
116
+							'text'  => wp_kses_post('<div class="row"><div class="col-xs-12"><h3>Homepage Widget</h3><p>Lorem ipsum dolor sit amet, <a href="#">consectetuer adipiscing elit</a>. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.</p></div></div>'),
117 117
 						),
118 118
 					),
119 119
 				),
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
 						'text',
124 124
 
125 125
 						array(
126
-							'title' => esc_html__( 'Space for Footer Widgets', 'lsx' ),
127
-							'text'  => esc_html__( 'This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx' ),
126
+							'title' => esc_html__('Space for Footer Widgets', 'lsx'),
127
+							'text'  => esc_html__('This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx'),
128 128
 						),
129 129
 					),
130 130
 
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
 						'text',
133 133
 
134 134
 						array(
135
-							'title' => esc_html__( 'Space for Footer Widgets', 'lsx' ),
136
-							'text'  => esc_html__( 'This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx' ),
135
+							'title' => esc_html__('Space for Footer Widgets', 'lsx'),
136
+							'text'  => esc_html__('This is here to showcase some footer widgets. You can decide what to add and what to hide. Nam nostrum evertitur ad, ut pri nibh veniam, urbanitas definitionem eum ex.', 'lsx'),
137 137
 						),
138 138
 					),
139 139
 
@@ -141,8 +141,8 @@  discard block
 block discarded – undo
141 141
 						'text',
142 142
 
143 143
 						array(
144
-							'title' => esc_html__( 'Contact us:', 'lsx' ),
145
-							'text'  => wp_kses_post( '<a href="mailto:[email protected]><i class="fa fa-envelope fa-fw"></i> [email protected]</a><br><a href="tel:+27214489843"><i class="fa fa-phone fa-fw"></i> +27 21 448 9843</a><br><i class="fa fa-skype fa-fw"></i> /lightspeeddevelopment' ),
144
+							'title' => esc_html__('Contact us:', 'lsx'),
145
+							'text'  => wp_kses_post('<a href="mailto:[email protected]><i class="fa fa-envelope fa-fw"></i> [email protected]</a><br><a href="tel:+27214489843"><i class="fa fa-phone fa-fw"></i> +27 21 448 9843</a><br><i class="fa fa-skype fa-fw"></i> /lightspeeddevelopment'),
146 146
 						),
147 147
 					),
148 148
 				),
@@ -152,8 +152,8 @@  discard block
 block discarded – undo
152 152
 						'text',
153 153
 
154 154
 						array(
155
-							'title' => esc_html__( 'A Footer Call to Action', 'lsx' ),
156
-							'text'  => esc_html__( 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'lsx' ),
155
+							'title' => esc_html__('A Footer Call to Action', 'lsx'),
156
+							'text'  => esc_html__('Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.', 'lsx'),
157 157
 						),
158 158
 					),
159 159
 				),
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 				'home'    => array(
164 164
 					'template'     => 'page-templates/template-front-page.php',
165 165
 					'thumbnail'    => '{{image-banner-example-01}}',
166
-					'post_title'   => esc_html__( 'LSX is a free WordPress theme', 'lsx' ),
166
+					'post_title'   => esc_html__('LSX is a free WordPress theme', 'lsx'),
167 167
 					'post_content' => '',
168 168
 				),
169 169
 
@@ -180,17 +180,17 @@  discard block
 block discarded – undo
180 180
 
181 181
 			'attachments' => array(
182 182
 				'image-banner-example-01' => array(
183
-					'post_title' => esc_html_x( 'Banner Example 01', 'Theme starter content', 'lsx' ),
183
+					'post_title' => esc_html_x('Banner Example 01', 'Theme starter content', 'lsx'),
184 184
 					'file'       => 'assets/images/admin/banner-example-01.jpg',
185 185
 				),
186 186
 
187 187
 				'image-banner-example-02' => array(
188
-					'post_title' => esc_html_x( 'Banner Example 02', 'Theme starter content', 'lsx' ),
188
+					'post_title' => esc_html_x('Banner Example 02', 'Theme starter content', 'lsx'),
189 189
 					'file'       => 'assets/images/admin/banner-example-02.jpg',
190 190
 				),
191 191
 
192 192
 				'image-banner-example-03' => array(
193
-					'post_title' => esc_html_x( 'Banner Example 03', 'Theme starter content', 'lsx' ),
193
+					'post_title' => esc_html_x('Banner Example 03', 'Theme starter content', 'lsx'),
194 194
 					'file'       => 'assets/images/admin/banner-example-03.jpg',
195 195
 				),
196 196
 			),
@@ -199,12 +199,12 @@  discard block
 block discarded – undo
199 199
 				'show_on_front'   => 'page',
200 200
 				'page_on_front'   => '{{home}}',
201 201
 				'page_for_posts'  => '{{blog}}',
202
-				'blogdescription' => esc_html__( 'LSX starter content example', 'lsx' ),
202
+				'blogdescription' => esc_html__('LSX starter content example', 'lsx'),
203 203
 			),
204 204
 
205 205
 			'nav_menus'   => array(
206 206
 				'primary'  => array(
207
-					'name'  => esc_html__( 'Primary Menu', 'lsx' ),
207
+					'name'  => esc_html__('Primary Menu', 'lsx'),
208 208
 
209 209
 					'items' => array(
210 210
 						'page_home',
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
 				),
216 216
 
217 217
 				'top-menu' => array(
218
-					'name'  => esc_html__( 'Top Menu', 'lsx' ),
218
+					'name'  => esc_html__('Top Menu', 'lsx'),
219 219
 
220 220
 					'items' => array(
221 221
 						'custom_link_1' => array(
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 				),
244 244
 
245 245
 				'social'   => array(
246
-					'name'  => esc_html__( 'Social Menu', 'lsx' ),
246
+					'name'  => esc_html__('Social Menu', 'lsx'),
247 247
 
248 248
 					'items' => array(
249 249
 						'link_facebook',
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
 				),
259 259
 
260 260
 				'footer'   => array(
261
-					'name'  => esc_html__( 'Footer Menu', 'lsx' ),
261
+					'name'  => esc_html__('Footer Menu', 'lsx'),
262 262
 
263 263
 					'items' => array(
264 264
 						'page_about',
@@ -272,14 +272,14 @@  discard block
 block discarded – undo
272 272
 				'lsx_header_search' => false,
273 273
 				'lsx_layout'        => '1c',
274 274
 			),
275
-		) );
275
+		));
276 276
 	}
277 277
 
278 278
 endif;
279 279
 
280
-add_action( 'after_setup_theme', 'lsx_setup' );
280
+add_action('after_setup_theme', 'lsx_setup');
281 281
 
282
-if ( ! function_exists( 'lsx_init' ) ) :
282
+if ( ! function_exists('lsx_init')) :
283 283
 
284 284
 	/**
285 285
 	 * Theme init action.
@@ -288,20 +288,20 @@  discard block
 block discarded – undo
288 288
 	 * @subpackage config
289 289
 	 */
290 290
 	function lsx_init() {
291
-		add_post_type_support( 'page', 'excerpt' );
291
+		add_post_type_support('page', 'excerpt');
292 292
 
293
-		if ( class_exists( 'WooCommerce' ) ) {
294
-			remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );
293
+		if (class_exists('WooCommerce')) {
294
+			remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20);
295 295
 		}
296 296
 
297
-		remove_action( 'comment_form', 'wp_comment_form_unfiltered_html_nonce', 10 );
297
+		remove_action('comment_form', 'wp_comment_form_unfiltered_html_nonce', 10);
298 298
 	}
299 299
 
300 300
 endif;
301 301
 
302
-add_action( 'init', 'lsx_init', 100 );
302
+add_action('init', 'lsx_init', 100);
303 303
 
304
-if ( ! function_exists( 'lsx_process_content_width' ) ) :
304
+if ( ! function_exists('lsx_process_content_width')) :
305 305
 
306 306
 	/**
307 307
 	 * Overwrite the $content_width var, based on the layout of the page.
@@ -313,8 +313,8 @@  discard block
 block discarded – undo
313 313
 		global $content_width;
314 314
 
315 315
 		if (
316
-			is_page_template( 'page-templates/template-front-page.php' ) ||
317
-			is_page_template( 'page-templates/template-full-width.php' )
316
+			is_page_template('page-templates/template-front-page.php') ||
317
+			is_page_template('page-templates/template-full-width.php')
318 318
 		) {
319 319
 			$content_width = 1140;
320 320
 		}
@@ -322,9 +322,9 @@  discard block
 block discarded – undo
322 322
 
323 323
 endif;
324 324
 
325
-add_action( 'wp_head', 'lsx_process_content_width' );
325
+add_action('wp_head', 'lsx_process_content_width');
326 326
 
327
-if ( ! function_exists( 'lsx_file_get_contents' ) ) :
327
+if ( ! function_exists('lsx_file_get_contents')) :
328 328
 
329 329
 	/**
330 330
 	 * Get file contents.
@@ -332,19 +332,19 @@  discard block
 block discarded – undo
332 332
 	 * @package    lsx
333 333
 	 * @subpackage config
334 334
 	 */
335
-	function lsx_file_get_contents( $file ) {
336
-		if ( file_exists( $file ) ) {
335
+	function lsx_file_get_contents($file) {
336
+		if (file_exists($file)) {
337 337
 			global $wp_filesystem;
338 338
 
339
-			if ( empty( $wp_filesystem ) ) {
339
+			if (empty($wp_filesystem)) {
340 340
 				require_once ABSPATH . 'wp-admin/includes/file.php';
341 341
 				WP_Filesystem();
342 342
 			}
343 343
 
344
-			if ( $wp_filesystem ) {
345
-				$contents = $wp_filesystem->get_contents( $file );
344
+			if ($wp_filesystem) {
345
+				$contents = $wp_filesystem->get_contents($file);
346 346
 
347
-				if ( ! empty( $contents ) ) {
347
+				if ( ! empty($contents)) {
348 348
 					return $contents;
349 349
 				}
350 350
 			}
Please login to merge, or discard this patch.