Passed
Push — master ( cdd39e...ebde67 )
by Warwick
02:47 queued 12s
created
includes/sensei/class-lsx-sensei.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -645,7 +645,6 @@
 block discarded – undo
645 645
 		/**
646 646
 		 * Show the 'Back to My Courses' button on messages.
647 647
 		 *
648
-		 * @param [type] $message_post_id
649 648
 		 * @return void
650 649
 		 */
651 650
 		public function lsx_sensei_back_message_button( $courses_link ) {
Please login to merge, or discard this patch.
Spacing   +158 added lines, -158 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage sensei
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! class_exists( 'LSX_Sensei' ) ) :
13
+if ( ! class_exists('LSX_Sensei')) :
14 14
 
15 15
 	/**
16 16
 	 * The LSX Sensei integration class
@@ -35,57 +35,57 @@  discard block
 block discarded – undo
35 35
 
36 36
 			global $woothemes_sensei;
37 37
 
38
-			add_action( 'wp_enqueue_scripts', array( $this, 'lsx_sensei_scripts_add_styles' ) );
38
+			add_action('wp_enqueue_scripts', array($this, 'lsx_sensei_scripts_add_styles'));
39 39
 
40
-			remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 );
41
-			add_action( 'sensei_before_main_content', array( $this, 'lsx_sensei_theme_wrapper_start' ) );
40
+			remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10);
41
+			add_action('sensei_before_main_content', array($this, 'lsx_sensei_theme_wrapper_start'));
42 42
 
43
-			remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 );
44
-			add_action( 'sensei_after_main_content', array( $this, 'lsx_sensei_theme_wrapper_end' ) );
43
+			remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10);
44
+			add_action('sensei_after_main_content', array($this, 'lsx_sensei_theme_wrapper_end'));
45 45
 
46
-			add_filter( 'get_the_archive_title', array( $this, 'lsx_sensei_modify_archive_title' ), 99, 1 );
46
+			add_filter('get_the_archive_title', array($this, 'lsx_sensei_modify_archive_title'), 99, 1);
47 47
 
48 48
 			// LSX
49
-			add_filter( 'lsx_global_header_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
49
+			add_filter('lsx_global_header_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
50 50
 			// LSX Banners - Plugin, Placeholders
51
-			add_filter( 'lsx_banner_plugin_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
51
+			add_filter('lsx_banner_plugin_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
52 52
 			// LSX Banners - Banner
53
-			add_filter( 'lsx_banner_disable', array( $this, 'lsx_sensei_disable_lsx_banner' ) );
53
+			add_filter('lsx_banner_disable', array($this, 'lsx_sensei_disable_lsx_banner'));
54 54
 
55
-			add_filter( 'course_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 );
56
-			add_filter( 'sensei_lesson_archive_title', array( $this, 'lsx_sensei_archive_title' ), 10, 1 );
55
+			add_filter('course_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1);
56
+			add_filter('sensei_lesson_archive_title', array($this, 'lsx_sensei_archive_title'), 10, 1);
57 57
 
58
-			add_filter( 'course_category_title', array( $this, 'lsx_sensei_category_title' ), 10, 1 );
58
+			add_filter('course_category_title', array($this, 'lsx_sensei_category_title'), 10, 1);
59 59
 
60
-			add_action( 'sensei_course_content_inside_after', array( $this, 'lsx_sensei_add_buttons' ), 9 );
60
+			add_action('sensei_course_content_inside_after', array($this, 'lsx_sensei_add_buttons'), 9);
61 61
 
62
-			add_filter( 'sensei_wc_single_add_to_cart_button_text', array( $this, 'lsx_sensei_add_to_cart_text' ) );
62
+			add_filter('sensei_wc_single_add_to_cart_button_text', array($this, 'lsx_sensei_add_to_cart_text'));
63 63
 
64
-			add_action( 'lsx_content_wrap_before', array( $this, 'lsx_sensei_results_header' ) );
64
+			add_action('lsx_content_wrap_before', array($this, 'lsx_sensei_results_header'));
65 65
 
66
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 );
67
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_course_breadcrumb_filter' ), 40, 1 );
66
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1);
67
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_course_breadcrumb_filter'), 40, 1);
68 68
 
69
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 );
70
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_lesson_breadcrumb_filter' ), 40, 1 );
69
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1);
70
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_lesson_breadcrumb_filter'), 40, 1);
71 71
 
72
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 );
73
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_module_breadcrumb_filter' ), 40, 1 );
72
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1);
73
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_module_breadcrumb_filter'), 40, 1);
74 74
 
75
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 );
76
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_learner_breadcrumb_filter' ), 40, 1 );
75
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1);
76
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_learner_breadcrumb_filter'), 40, 1);
77 77
 
78
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 );
79
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_quiz_breadcrumb_filter' ), 40, 1 );
78
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1);
79
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_quiz_breadcrumb_filter'), 40, 1);
80 80
 
81
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 );
82
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_messages_breadcrumb_filter' ), 40, 1 );
81
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1);
82
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_messages_breadcrumb_filter'), 40, 1);
83 83
 
84
-			add_filter( 'wpseo_breadcrumb_links', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 );
85
-			add_filter( 'woocommerce_get_breadcrumb', array( $this, 'lsx_sensei_results_breadcrumb_filter' ), 40, 1 );
84
+			add_filter('wpseo_breadcrumb_links', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
85
+			add_filter('woocommerce_get_breadcrumb', array($this, 'lsx_sensei_results_breadcrumb_filter'), 40, 1);
86 86
 
87
-			add_action( 'sensei_archive_before_message_loop', array( $this, 'lsx_sensei_back_message_button' ) );
88
-			add_action( 'sensei_content_message_after', array( $this, 'lsx_sensei_view_message_button' ) );
87
+			add_action('sensei_archive_before_message_loop', array($this, 'lsx_sensei_back_message_button'));
88
+			add_action('sensei_content_message_after', array($this, 'lsx_sensei_view_message_button'));
89 89
 
90 90
 		}
91 91
 
@@ -96,8 +96,8 @@  discard block
 block discarded – undo
96 96
 		 * @subpackage sensei
97 97
 		 */
98 98
 		public function lsx_sensei_scripts_add_styles() {
99
-			wp_enqueue_style( 'sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array( 'lsx_main' ), LSX_VERSION );
100
-			wp_style_add_data( 'sensei-lsx', 'rtl', 'replace' );
99
+			wp_enqueue_style('sensei-lsx', get_template_directory_uri() . '/assets/css/sensei/sensei.css', array('lsx_main'), LSX_VERSION);
100
+			wp_style_add_data('sensei-lsx', 'rtl', 'replace');
101 101
 		}
102 102
 
103 103
 		/**
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 		 */
109 109
 		public function lsx_sensei_theme_wrapper_start() {
110 110
 			lsx_content_wrap_before();
111
-			echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
111
+			echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
112 112
 			lsx_content_before();
113 113
 			echo '<main id="main" class="site-main" role="main">';
114 114
 			lsx_content_top();
@@ -134,18 +134,18 @@  discard block
 block discarded – undo
134 134
 		 * @param [type] $title
135 135
 		 * @return void
136 136
 		 */
137
-		public function lsx_sensei_modify_archive_title( $title ) {
138
-			if ( is_archive() && is_post_type_archive( 'course' ) ) {
139
-				$title = __( 'Courses', 'lsx' );
137
+		public function lsx_sensei_modify_archive_title($title) {
138
+			if (is_archive() && is_post_type_archive('course')) {
139
+				$title = __('Courses', 'lsx');
140 140
 			}
141
-			if ( is_archive() && is_post_type_archive( 'sensei_message' ) ) {
142
-				$title = __( 'Messages', 'lsx' );
141
+			if (is_archive() && is_post_type_archive('sensei_message')) {
142
+				$title = __('Messages', 'lsx');
143 143
 			}
144
-			if ( is_archive() && is_post_type_archive( 'lesson' ) ) {
145
-				$title = __( 'Lessons', 'lsx' );
144
+			if (is_archive() && is_post_type_archive('lesson')) {
145
+				$title = __('Lessons', 'lsx');
146 146
 			}
147
-			if ( is_archive() && is_tax() ) {
148
-				$title = single_term_title( '', false );
147
+			if (is_archive() && is_tax()) {
148
+				$title = single_term_title('', false);
149 149
 			}
150 150
 			return $title;
151 151
 		}
@@ -156,8 +156,8 @@  discard block
 block discarded – undo
156 156
 		 * @package    lsx
157 157
 		 * @subpackage sensei
158 158
 		 */
159
-		public function lsx_sensei_disable_lsx_banner( $disabled ) {
160
-			if ( is_sensei() ) {
159
+		public function lsx_sensei_disable_lsx_banner($disabled) {
160
+			if (is_sensei()) {
161 161
 				$disabled = true;
162 162
 			}
163 163
 
@@ -170,8 +170,8 @@  discard block
 block discarded – undo
170 170
 		 * @package    lsx
171 171
 		 * @subpackage sensei
172 172
 		 */
173
-		public function lsx_sensei_archive_title( $html ) {
174
-			$html = preg_replace( '/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html );
173
+		public function lsx_sensei_archive_title($html) {
174
+			$html = preg_replace('/<header class="archive-header"><h1>([^<]+)<\/h1><\/header>/i', '<h1>$1</h1>', $html);
175 175
 			return $html;
176 176
 		}
177 177
 
@@ -181,8 +181,8 @@  discard block
 block discarded – undo
181 181
 		 * @package    lsx
182 182
 		 * @subpackage sensei
183 183
 		 */
184
-		public function lsx_sensei_category_title( $html ) {
185
-			$html = str_replace( 'h2', 'h1', $html );
184
+		public function lsx_sensei_category_title($html) {
185
+			$html = str_replace('h2', 'h1', $html);
186 186
 			return $html;
187 187
 		}
188 188
 
@@ -192,18 +192,18 @@  discard block
 block discarded – undo
192 192
 		 * @package    lsx
193 193
 		 * @subpackage sensei
194 194
 		 */
195
-		public function lsx_sensei_add_buttons( $course_id ) {
195
+		public function lsx_sensei_add_buttons($course_id) {
196 196
 			global $post, $current_user;
197
-			$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
198
-			$course_purchasable = Sensei_WC::is_course_purchasable( $post->ID );
197
+			$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
198
+			$course_purchasable = Sensei_WC::is_course_purchasable($post->ID);
199 199
 
200 200
 			?>
201 201
 				<section class="entry-actions">
202
-					<a class="button" href="<?php echo esc_url( tribe_get_event_link() ); ?>"><?php esc_html_e( 'View course', 'lsx' ); ?></a>
202
+					<a class="button" href="<?php echo esc_url(tribe_get_event_link()); ?>"><?php esc_html_e('View course', 'lsx'); ?></a>
203 203
 
204 204
 					<?php
205
-					if ( ( ! $is_user_taking_course ) && $course_purchasable ) {
206
-						Sensei_WC::the_add_to_cart_button_html( $post->ID );
205
+					if (( ! $is_user_taking_course) && $course_purchasable) {
206
+						Sensei_WC::the_add_to_cart_button_html($post->ID);
207 207
 					}
208 208
 					?>
209 209
 				</section>
@@ -216,8 +216,8 @@  discard block
 block discarded – undo
216 216
 		 * @package    lsx
217 217
 		 * @subpackage sensei
218 218
 		 */
219
-		public function lsx_sensei_add_to_cart_text( $text ) {
220
-			$text = esc_html__( 'Add to cart', 'lsx' );
219
+		public function lsx_sensei_add_to_cart_text($text) {
220
+			$text = esc_html__('Add to cart', 'lsx');
221 221
 			return $text;
222 222
 		}
223 223
 
@@ -227,46 +227,46 @@  discard block
 block discarded – undo
227 227
 		 * @package    lsx
228 228
 		 * @subpackage layout
229 229
 		 */
230
-		public function lsx_sensei_results_header( $user ) {
230
+		public function lsx_sensei_results_header($user) {
231 231
 
232 232
 			$default_size = 'sm';
233
-			$size         = apply_filters( 'lsx_bootstrap_column_size', $default_size );
233
+			$size         = apply_filters('lsx_bootstrap_column_size', $default_size);
234 234
 			global $wp_query;
235
-			if ( isset( $wp_query->query_vars['course_results'] ) ) {
235
+			if (isset($wp_query->query_vars['course_results'])) {
236 236
 				$is_results = $wp_query->query_vars['course_results'];
237 237
 			} else {
238 238
 				$is_results = false;
239 239
 			}
240
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
240
+			if (isset($wp_query->query_vars['learner_profile'])) {
241 241
 				$is_profile = $wp_query->query_vars['learner_profile'];
242 242
 			} else {
243 243
 				$is_profile = false;
244 244
 			}
245 245
 
246
-			if ( is_sticky() && $is_results ) :
247
-				$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
246
+			if (is_sticky() && $is_results) :
247
+				$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
248 248
 
249
-					$course_title = esc_html( $course_for_results->post_title );
249
+					$course_title = esc_html($course_for_results->post_title);
250 250
 				?>
251
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
251
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
252 252
 					<?php lsx_global_header_inner_bottom(); ?>
253 253
 					<header class="archive-header">
254
-						<h1 class="archive-title"><?php echo wp_kses_post( $course_title ); ?></h1>
254
+						<h1 class="archive-title"><?php echo wp_kses_post($course_title); ?></h1>
255 255
 					</header>
256 256
 
257 257
 				</div>
258 258
 				<?php
259 259
 			endif;
260 260
 
261
-			if ( is_sticky() && $is_profile ) :
261
+			if (is_sticky() && $is_profile) :
262 262
 				$query_var    = $wp_query->query_vars['learner_profile'];
263
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
263
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
264 264
 				$learner_name = $learner_user->display_name;
265 265
 				?>
266
-				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr( $size ); ?>-12">
266
+				<div class="archive-header-wrapper banner-single col-<?php echo esc_attr($size); ?>-12">
267 267
 					<?php lsx_global_header_inner_bottom(); ?>
268 268
 					<header class="archive-header">
269
-						<h1 class="archive-title"><?php echo esc_html( $learner_name ); ?></h1>
269
+						<h1 class="archive-title"><?php echo esc_html($learner_name); ?></h1>
270 270
 					</header>
271 271
 
272 272
 				</div>
@@ -279,21 +279,21 @@  discard block
 block discarded – undo
279 279
 		 * @param $crumbs
280 280
 		 * @return array
281 281
 		 */
282
-		public function lsx_sensei_course_breadcrumb_filter( $crumbs, $id = 0 ) {
283
-			if ( is_single() && ( is_singular( 'course' ) ) ) {
282
+		public function lsx_sensei_course_breadcrumb_filter($crumbs, $id = 0) {
283
+			if (is_single() && (is_singular('course'))) {
284 284
 				global $course;
285 285
 				$lesson          = get_the_title();
286
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
287
-				$course_page_url = get_permalink( $course_page_url );
286
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
287
+				$course_page_url = get_permalink($course_page_url);
288 288
 
289
-				if ( $lesson ) {
289
+				if ($lesson) {
290 290
 
291 291
 					$new_crumbs    = array();
292 292
 					$new_crumbs[0] = $crumbs[0];
293 293
 
294
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
294
+					if (function_exists('woocommerce_breadcrumb')) {
295 295
 						$new_crumbs[1] = array(
296
-							0 => __( 'All Courses', 'lsx' ),
296
+							0 => __('All Courses', 'lsx'),
297 297
 							1 => $course_page_url,
298 298
 						);
299 299
 						$new_crumbs[2] = array(
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 						);
302 302
 					} else {
303 303
 						$new_crumbs[1] = array(
304
-							'text' => __( 'All Courses', 'lsx' ),
304
+							'text' => __('All Courses', 'lsx'),
305 305
 							'url'  => $course_page_url,
306 306
 						);
307 307
 						$new_crumbs[2] = array(
@@ -319,34 +319,34 @@  discard block
 block discarded – undo
319 319
 		 * @param $crumbs
320 320
 		 * @return array
321 321
 		 */
322
-		public function lsx_sensei_lesson_breadcrumb_filter( $crumbs, $id = 0 ) {
323
-			if ( is_single() && ( is_singular( 'lesson' ) ) ) {
322
+		public function lsx_sensei_lesson_breadcrumb_filter($crumbs, $id = 0) {
323
+			if (is_single() && (is_singular('lesson'))) {
324 324
 				global $course;
325 325
 				$lesson          = get_the_title();
326
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
327
-				$course_page_url = get_permalink( $course_page_url );
326
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
327
+				$course_page_url = get_permalink($course_page_url);
328 328
 
329
-				if ( empty( $id ) ) {
329
+				if (empty($id)) {
330 330
 					$id = get_the_ID();
331 331
 				}
332 332
 
333
-				if ( 0 < intval( $id ) ) {
334
-					$course       = intval( get_post_meta( $id, '_lesson_course', true ) );
335
-					$course_id    = esc_url( get_permalink( $course ) );
336
-					$course_title = esc_html( get_the_title( $course ) );
337
-					if ( ! $course ) {
333
+				if (0 < intval($id)) {
334
+					$course       = intval(get_post_meta($id, '_lesson_course', true));
335
+					$course_id    = esc_url(get_permalink($course));
336
+					$course_title = esc_html(get_the_title($course));
337
+					if ( ! $course) {
338 338
 						return;
339 339
 					}
340 340
 				}
341 341
 
342
-				if ( $course_id ) {
342
+				if ($course_id) {
343 343
 
344 344
 					$new_crumbs    = array();
345 345
 					$new_crumbs[0] = $crumbs[0];
346 346
 
347
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
347
+					if (function_exists('woocommerce_breadcrumb')) {
348 348
 						$new_crumbs[1] = array(
349
-							0 => __( 'Courses', 'lsx' ),
349
+							0 => __('Courses', 'lsx'),
350 350
 							1 => $course_page_url,
351 351
 						);
352 352
 						$new_crumbs[2] = array(
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
 						);
359 359
 					} else {
360 360
 						$new_crumbs[1] = array(
361
-							'text' => __( 'Courses', 'lsx' ),
361
+							'text' => __('Courses', 'lsx'),
362 362
 							'url'  => $course_page_url,
363 363
 						);
364 364
 						$new_crumbs[2] = array(
@@ -380,25 +380,25 @@  discard block
 block discarded – undo
380 380
 		 * @param $crumbs
381 381
 		 * @return array
382 382
 		 */
383
-		public function lsx_sensei_module_breadcrumb_filter( $crumbs, $id = 0 ) {
384
-			$title = apply_filters( 'sensei_module_archive_title', get_queried_object()->name );
383
+		public function lsx_sensei_module_breadcrumb_filter($crumbs, $id = 0) {
384
+			$title = apply_filters('sensei_module_archive_title', get_queried_object()->name);
385 385
 
386
-			if ( is_tax() && is_archive() && ( ! empty( $title ) ) ) {
386
+			if (is_tax() && is_archive() && ( ! empty($title))) {
387 387
 
388 388
 				$lesson          = get_the_archive_title();
389
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
390
-				$course_page_url = get_permalink( $course_page_url );
389
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
390
+				$course_page_url = get_permalink($course_page_url);
391 391
 
392
-				if ( empty( $id ) ) {
392
+				if (empty($id)) {
393 393
 					$id = get_the_ID();
394 394
 				}
395 395
 
396 396
 				$new_crumbs    = array();
397 397
 				$new_crumbs[0] = $crumbs[0];
398 398
 
399
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
399
+				if (function_exists('woocommerce_breadcrumb')) {
400 400
 					$new_crumbs[1] = array(
401
-						0 => __( 'Courses', 'lsx' ),
401
+						0 => __('Courses', 'lsx'),
402 402
 						1 => $course_page_url,
403 403
 					);
404 404
 					$new_crumbs[2] = array(
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
 					);
407 407
 				} else {
408 408
 					$new_crumbs[1] = array(
409
-						'text' => __( 'Courses', 'lsx' ),
409
+						'text' => __('Courses', 'lsx'),
410 410
 						'url'  => $course_page_url,
411 411
 					);
412 412
 					$new_crumbs[2] = array(
@@ -423,38 +423,38 @@  discard block
 block discarded – undo
423 423
 		 * @param $crumbs
424 424
 		 * @return array
425 425
 		 */
426
-		public function lsx_sensei_learner_breadcrumb_filter( $crumbs, $id = 0 ) {
426
+		public function lsx_sensei_learner_breadcrumb_filter($crumbs, $id = 0) {
427 427
 			global $wp_query;
428 428
 
429
-			if ( isset( $wp_query->query_vars['learner_profile'] ) ) {
429
+			if (isset($wp_query->query_vars['learner_profile'])) {
430 430
 				$is_profile = $wp_query->query_vars['learner_profile'];
431 431
 			} else {
432 432
 				$is_profile = false;
433 433
 			}
434 434
 
435
-			if ( is_sticky() && $is_profile ) {
435
+			if (is_sticky() && $is_profile) {
436 436
 
437
-				if ( empty( $id ) ) {
437
+				if (empty($id)) {
438 438
 					$id = get_the_ID();
439 439
 				}
440 440
 
441 441
 				$query_var    = $wp_query->query_vars['learner_profile'];
442
-				$learner_user = Sensei_Learner::find_by_query_var( $query_var );
442
+				$learner_user = Sensei_Learner::find_by_query_var($query_var);
443 443
 				$learner_name = $learner_user->display_name;
444 444
 
445 445
 				$new_crumbs    = array();
446 446
 				$new_crumbs[0] = $crumbs[0];
447 447
 
448
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
448
+				if (function_exists('woocommerce_breadcrumb')) {
449 449
 					$new_crumbs[1] = array(
450
-						0 => __( 'Learners', 'lsx' ),
450
+						0 => __('Learners', 'lsx'),
451 451
 					);
452 452
 					$new_crumbs[2] = array(
453 453
 						0 => $learner_name,
454 454
 					);
455 455
 				} else {
456 456
 					$new_crumbs[1] = array(
457
-						'text' => __( 'Learners', 'lsx' ),
457
+						'text' => __('Learners', 'lsx'),
458 458
 					);
459 459
 					$new_crumbs[2] = array(
460 460
 						'text' => $learner_name,
@@ -470,36 +470,36 @@  discard block
 block discarded – undo
470 470
 		 * @param $crumbs
471 471
 		 * @return array
472 472
 		 */
473
-		public function lsx_sensei_messages_breadcrumb_filter( $crumbs, $id = 0 ) {
474
-			if ( is_archive() && ( is_post_type_archive( 'sensei_message' ) ) ) {
473
+		public function lsx_sensei_messages_breadcrumb_filter($crumbs, $id = 0) {
474
+			if (is_archive() && (is_post_type_archive('sensei_message'))) {
475 475
 
476
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
477
-				$course_page_url = get_permalink( $course_page_url );
476
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
477
+				$course_page_url = get_permalink($course_page_url);
478 478
 
479
-				if ( empty( $id ) ) {
479
+				if (empty($id)) {
480 480
 					$id = get_the_ID();
481 481
 				}
482 482
 
483
-				if ( $id ) {
483
+				if ($id) {
484 484
 
485 485
 					$new_crumbs    = array();
486 486
 					$new_crumbs[0] = $crumbs[0];
487 487
 
488
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
488
+					if (function_exists('woocommerce_breadcrumb')) {
489 489
 						$new_crumbs[1] = array(
490
-							0 => __( 'Courses', 'lsx' ),
490
+							0 => __('Courses', 'lsx'),
491 491
 							1 => $course_page_url,
492 492
 						);
493 493
 						$new_crumbs[2] = array(
494
-							0 => __( 'Messages', 'lsx' ),
494
+							0 => __('Messages', 'lsx'),
495 495
 						);
496 496
 					} else {
497 497
 						$new_crumbs[1] = array(
498
-							'text' => __( 'Courses', 'lsx' ),
498
+							'text' => __('Courses', 'lsx'),
499 499
 							'url'  => $course_page_url,
500 500
 						);
501 501
 						$new_crumbs[2] = array(
502
-							'text' => __( 'Messages', 'lsx' ),
502
+							'text' => __('Messages', 'lsx'),
503 503
 						);
504 504
 					}
505 505
 					$crumbs = $new_crumbs;
@@ -513,35 +513,35 @@  discard block
 block discarded – undo
513 513
 		 * @param $crumbs
514 514
 		 * @return array
515 515
 		 */
516
-		public function lsx_sensei_quiz_breadcrumb_filter( $crumbs, $id = 0 ) {
517
-			if ( ( is_single() && ( is_singular( 'quiz' ) ) ) ) {
516
+		public function lsx_sensei_quiz_breadcrumb_filter($crumbs, $id = 0) {
517
+			if ((is_single() && (is_singular('quiz')))) {
518 518
 				global $course;
519
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
520
-				$course_page_url = get_permalink( $course_page_url );
519
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
520
+				$course_page_url = get_permalink($course_page_url);
521 521
 				$lesson          = get_the_title();
522 522
 
523
-				if ( empty( $id ) ) {
523
+				if (empty($id)) {
524 524
 					$id = get_the_ID();
525 525
 				}
526 526
 
527
-				if ( 0 < intval( $id ) ) {
527
+				if (0 < intval($id)) {
528 528
 
529
-					$course       = intval( get_post_meta( $id, '_quiz_lesson', true ) );
530
-					$course_id    = esc_url( get_permalink( $course ) );
531
-					$course_title = esc_html( get_the_title( $course ) );
532
-					if ( ! $course ) {
529
+					$course       = intval(get_post_meta($id, '_quiz_lesson', true));
530
+					$course_id    = esc_url(get_permalink($course));
531
+					$course_title = esc_html(get_the_title($course));
532
+					if ( ! $course) {
533 533
 						return;
534 534
 					}
535 535
 				}
536 536
 
537
-				if ( $course_id ) {
537
+				if ($course_id) {
538 538
 
539 539
 					$new_crumbs    = array();
540 540
 					$new_crumbs[0] = $crumbs[0];
541 541
 
542
-					if ( function_exists( 'woocommerce_breadcrumb' ) ) {
542
+					if (function_exists('woocommerce_breadcrumb')) {
543 543
 						$new_crumbs[1] = array(
544
-							0 => __( 'Courses', 'lsx' ),
544
+							0 => __('Courses', 'lsx'),
545 545
 							1 => $course_page_url,
546 546
 						);
547 547
 						$new_crumbs[2] = array(
@@ -553,7 +553,7 @@  discard block
 block discarded – undo
553 553
 						);
554 554
 					} else {
555 555
 						$new_crumbs[1] = array(
556
-							'text' => __( 'Courses', 'lsx' ),
556
+							'text' => __('Courses', 'lsx'),
557 557
 							'url'  => $course_page_url,
558 558
 						);
559 559
 						$new_crumbs[2] = array(
@@ -576,36 +576,36 @@  discard block
 block discarded – undo
576 576
 		 * @param $crumbs
577 577
 		 * @return array
578 578
 		 */
579
-		public function lsx_sensei_results_breadcrumb_filter( $crumbs, $id = 0 ) {
580
-			if ( is_sticky() ) {
579
+		public function lsx_sensei_results_breadcrumb_filter($crumbs, $id = 0) {
580
+			if (is_sticky()) {
581 581
 				global $wp_query;
582 582
 				$course_id = '';
583
-				if ( isset( $wp_query->query_vars['course_results'] ) ) {
583
+				if (isset($wp_query->query_vars['course_results'])) {
584 584
 					$is_results = $wp_query->query_vars['course_results'];
585 585
 				}
586
-				$course_page_url = intval( Sensei()->settings->settings['course_page'] );
587
-				$course_page_url = get_permalink( $course_page_url );
586
+				$course_page_url = intval(Sensei()->settings->settings['course_page']);
587
+				$course_page_url = get_permalink($course_page_url);
588 588
 
589
-				if ( empty( $id ) ) {
589
+				if (empty($id)) {
590 590
 					$id = get_the_ID();
591 591
 				}
592 592
 
593
-				if ( isset( $is_results ) ) {
594
-					$course_for_results = get_page_by_path( $is_results, OBJECT, 'course' );
593
+				if (isset($is_results)) {
594
+					$course_for_results = get_page_by_path($is_results, OBJECT, 'course');
595 595
 
596
-					$course_id    = esc_url( get_permalink( $course_for_results ) );
597
-					$course_title = esc_html( $course_for_results->post_title );
596
+					$course_id    = esc_url(get_permalink($course_for_results));
597
+					$course_title = esc_html($course_for_results->post_title);
598 598
 
599 599
 				}
600 600
 
601
-				if ( $course_id ) {
601
+				if ($course_id) {
602 602
 					$new_crumbs    = array();
603 603
 					$new_crumbs[0] = $crumbs[0];
604 604
 
605
-					if ( $is_results ) {
606
-						if ( function_exists( 'woocommerce_breadcrumb' ) ) {
605
+					if ($is_results) {
606
+						if (function_exists('woocommerce_breadcrumb')) {
607 607
 							$new_crumbs[1] = array(
608
-								0 => __( 'Courses', 'lsx' ),
608
+								0 => __('Courses', 'lsx'),
609 609
 								1 => $course_page_url,
610 610
 							);
611 611
 							$new_crumbs[2] = array(
@@ -613,15 +613,15 @@  discard block
 block discarded – undo
613 613
 								1 => $course_id,
614 614
 							);
615 615
 							$new_crumbs[3] = array(
616
-								0 => __( 'Results', 'lsx' ),
616
+								0 => __('Results', 'lsx'),
617 617
 							);
618 618
 						} else {
619 619
 							$new_crumbs[1] = array(
620
-								'text' => __( 'Courses', 'lsx' ),
620
+								'text' => __('Courses', 'lsx'),
621 621
 								'url'  => $course_page_url,
622 622
 							);
623 623
 							$new_crumbs[2] = array(
624
-								'text' => __( 'Results', 'lsx' ),
624
+								'text' => __('Results', 'lsx'),
625 625
 							);
626 626
 						}
627 627
 					}
@@ -637,9 +637,9 @@  discard block
 block discarded – undo
637 637
 		 * @param [type] $message_post_id
638 638
 		 * @return void
639 639
 		 */
640
-		public function lsx_sensei_view_message_button( $message_post_id ) {
641
-			$message_link = get_the_permalink( $message_post_id );
642
-			echo '<a href="' . esc_url_raw( $message_link ) . '" class="btn view-msg-btn">' . wp_kses_post( 'View Message', 'lsx' ) . '</a>';
640
+		public function lsx_sensei_view_message_button($message_post_id) {
641
+			$message_link = get_the_permalink($message_post_id);
642
+			echo '<a href="' . esc_url_raw($message_link) . '" class="btn view-msg-btn">' . wp_kses_post('View Message', 'lsx') . '</a>';
643 643
 		}
644 644
 
645 645
 		/**
@@ -648,9 +648,9 @@  discard block
 block discarded – undo
648 648
 		 * @param [type] $message_post_id
649 649
 		 * @return void
650 650
 		 */
651
-		public function lsx_sensei_back_message_button( $courses_link ) {
651
+		public function lsx_sensei_back_message_button($courses_link) {
652 652
 			$courses_link = '/my-courses/';
653
-			echo '<a href="' . esc_url_raw( $courses_link ) . '" class="btn border-btn my-courses-btn">' . wp_kses_post( 'My Courses', 'lsx' ) . '</a>';
653
+			echo '<a href="' . esc_url_raw($courses_link) . '" class="btn border-btn my-courses-btn">' . wp_kses_post('My Courses', 'lsx') . '</a>';
654 654
 		}
655 655
 	}
656 656
 
Please login to merge, or discard this patch.
functions.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -7,25 +7,25 @@
 block discarded – undo
7 7
  * @package lsx
8 8
  */
9 9
 
10
-if ( ! defined( 'ABSPATH' ) ) {
10
+if ( ! defined('ABSPATH')) {
11 11
 	exit;
12 12
 }
13 13
 
14
-define( 'LSX_VERSION', '2.5.0' );
14
+define('LSX_VERSION', '2.5.0');
15 15
 
16
-if ( class_exists( 'WooCommerce' ) ) {
16
+if (class_exists('WooCommerce')) {
17 17
 	require get_template_directory() . '/includes/woocommerce/woocommerce.php';
18 18
 }
19 19
 
20
-if ( class_exists( 'Tribe__Events__Main' ) ) {
20
+if (class_exists('Tribe__Events__Main')) {
21 21
 	require get_template_directory() . '/includes/the-events-calendar/the-events-calendar.php';
22 22
 }
23 23
 
24
-if ( class_exists( 'Sensei_Main' ) || class_exists( 'Sensei_WC' ) ) {
24
+if (class_exists('Sensei_Main') || class_exists('Sensei_WC')) {
25 25
 	require get_template_directory() . '/includes/sensei/class-lsx-sensei.php';
26 26
 }
27 27
 
28
-if ( class_exists( 'bbPress' ) ) {
28
+if (class_exists('bbPress')) {
29 29
 	require get_template_directory() . '/includes/bbpress/bbpress.php';
30 30
 }
31 31
 
Please login to merge, or discard this patch.
includes/woocommerce/woocommerce.php 1 patch
Spacing   +190 added lines, -190 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage woocommerce
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_wc_support' ) ) :
13
+if ( ! function_exists('lsx_wc_support')) :
14 14
 
15 15
 	/**
16 16
 	 * WooCommerce support.
@@ -19,17 +19,17 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage woocommerce
20 20
 	 */
21 21
 	function lsx_wc_support() {
22
-		add_theme_support( 'woocommerce' );
23
-		add_theme_support( 'wc-product-gallery-zoom' );
24
-		add_theme_support( 'wc-product-gallery-lightbox' );
25
-		add_theme_support( 'wc-product-gallery-slider' );
22
+		add_theme_support('woocommerce');
23
+		add_theme_support('wc-product-gallery-zoom');
24
+		add_theme_support('wc-product-gallery-lightbox');
25
+		add_theme_support('wc-product-gallery-slider');
26 26
 	}
27 27
 
28
-	add_action( 'after_setup_theme', 'lsx_wc_support' );
28
+	add_action('after_setup_theme', 'lsx_wc_support');
29 29
 
30 30
 endif;
31 31
 
32
-if ( ! function_exists( 'lsx_wc_scripts_add_styles' ) ) :
32
+if ( ! function_exists('lsx_wc_scripts_add_styles')) :
33 33
 
34 34
 	/**
35 35
 	 * WooCommerce enqueue styles.
@@ -38,18 +38,18 @@  discard block
 block discarded – undo
38 38
 	 * @subpackage woocommerce
39 39
 	 */
40 40
 	function lsx_wc_scripts_add_styles() {
41
-		wp_enqueue_style( 'woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array( 'lsx_main' ), LSX_VERSION );
42
-		wp_style_add_data( 'woocommerce-lsx', 'rtl', 'replace' );
41
+		wp_enqueue_style('woocommerce-lsx', get_template_directory_uri() . '/assets/css/woocommerce/woocommerce.css', array('lsx_main'), LSX_VERSION);
42
+		wp_style_add_data('woocommerce-lsx', 'rtl', 'replace');
43 43
 
44 44
 		// Remove WC Shipping Multiple Addresses specific script causing issues on checkout.
45
-		wp_dequeue_script( 'wcms-country-select' );
45
+		wp_dequeue_script('wcms-country-select');
46 46
 	}
47 47
 
48
-	add_action( 'wp_enqueue_scripts', 'lsx_wc_scripts_add_styles' );
48
+	add_action('wp_enqueue_scripts', 'lsx_wc_scripts_add_styles');
49 49
 
50 50
 endif;
51 51
 
52
-if ( ! function_exists( 'lsx_wc_form_field_args' ) ) :
52
+if ( ! function_exists('lsx_wc_form_field_args')) :
53 53
 
54 54
 	/**
55 55
 	 * WooCommerce form fields.
@@ -57,17 +57,17 @@  discard block
 block discarded – undo
57 57
 	 * @package    lsx
58 58
 	 * @subpackage woocommerce
59 59
 	 */
60
-	function lsx_wc_form_field_args( $args, $key, $value ) {
60
+	function lsx_wc_form_field_args($args, $key, $value) {
61 61
 		$args['input_class'][] = 'form-control';
62 62
 
63 63
 		return $args;
64 64
 	}
65 65
 
66
-	add_action( 'woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3 );
66
+	add_action('woocommerce_form_field_args', 'lsx_wc_form_field_args', 10, 3);
67 67
 
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_wc_theme_wrapper_start' ) ) :
70
+if ( ! function_exists('lsx_wc_theme_wrapper_start')) :
71 71
 
72 72
 	/**
73 73
 	 * WooCommerce wrapper start.
@@ -77,18 +77,18 @@  discard block
 block discarded – undo
77 77
 	 */
78 78
 	function lsx_wc_theme_wrapper_start() {
79 79
 		lsx_content_wrap_before();
80
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
80
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
81 81
 		lsx_content_before();
82 82
 		echo '<main id="main" class="site-main" role="main">';
83 83
 		lsx_content_top();
84 84
 	}
85 85
 
86
-	remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
87
-	add_action( 'woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start' );
86
+	remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10);
87
+	add_action('woocommerce_before_main_content', 'lsx_wc_theme_wrapper_start');
88 88
 
89 89
 endif;
90 90
 
91
-if ( ! function_exists( 'lsx_wc_theme_wrapper_end' ) ) :
91
+if ( ! function_exists('lsx_wc_theme_wrapper_end')) :
92 92
 
93 93
 	/**
94 94
 	 * WooCommerce wrapper end.
@@ -104,12 +104,12 @@  discard block
 block discarded – undo
104 104
 		lsx_content_wrap_after();
105 105
 	}
106 106
 
107
-	remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );
108
-	add_action( 'woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end' );
107
+	remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10);
108
+	add_action('woocommerce_after_main_content', 'lsx_wc_theme_wrapper_end');
109 109
 
110 110
 endif;
111 111
 
112
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner_plugin' ) ) :
112
+if ( ! function_exists('lsx_wc_disable_lsx_banner_plugin')) :
113 113
 
114 114
 	/**
115 115
 	 * Disable LSX Banners plugin in some WC pages.
@@ -117,21 +117,21 @@  discard block
 block discarded – undo
117 117
 	 * @package    lsx
118 118
 	 * @subpackage woocommerce
119 119
 	 */
120
-	function lsx_wc_disable_lsx_banner_plugin( $disabled ) {
120
+	function lsx_wc_disable_lsx_banner_plugin($disabled) {
121 121
 		global $post;
122 122
 
123
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
123
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
124 124
 			$disabled = true;
125 125
 		}
126 126
 
127 127
 		return $disabled;
128 128
 	}
129 129
 
130
-	add_filter( 'lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin' );
130
+	add_filter('lsx_banner_plugin_disable', 'lsx_wc_disable_lsx_banner_plugin');
131 131
 
132 132
 endif;
133 133
 
134
-if ( ! function_exists( 'lsx_wc_disable_lsx_banner' ) ) :
134
+if ( ! function_exists('lsx_wc_disable_lsx_banner')) :
135 135
 
136 136
 	/**
137 137
 	 * Disable LSX Banners banner in some WC pages.
@@ -139,19 +139,19 @@  discard block
 block discarded – undo
139 139
 	 * @package    lsx
140 140
 	 * @subpackage woocommerce
141 141
 	 */
142
-	function lsx_wc_disable_lsx_banner( $disabled ) {
143
-		if ( is_shop() || is_product_category() || is_product_tag() || is_product() ) {
142
+	function lsx_wc_disable_lsx_banner($disabled) {
143
+		if (is_shop() || is_product_category() || is_product_tag() || is_product()) {
144 144
 			$disabled = true;
145 145
 		}
146 146
 
147 147
 		return $disabled;
148 148
 	}
149 149
 
150
-	add_filter( 'lsx_banner_disable', 'lsx_wc_disable_lsx_banner' );
150
+	add_filter('lsx_banner_disable', 'lsx_wc_disable_lsx_banner');
151 151
 
152 152
 endif;
153 153
 
154
-if ( ! function_exists( 'lsx_wc_add_cart' ) ) :
154
+if ( ! function_exists('lsx_wc_add_cart')) :
155 155
 
156 156
 	/**
157 157
 	 * Adds WC cart to the header.
@@ -159,34 +159,34 @@  discard block
 block discarded – undo
159 159
 	 * @package    lsx
160 160
 	 * @subpackage template-tags
161 161
 	 */
162
-	function lsx_wc_add_cart( $items, $args ) {
163
-		$cart_menu_item_position = apply_filters( 'lsx_wc_cart_menu_item_position', 'primary' );
162
+	function lsx_wc_add_cart($items, $args) {
163
+		$cart_menu_item_position = apply_filters('lsx_wc_cart_menu_item_position', 'primary');
164 164
 
165 165
 		$cart_logged_out_position = $cart_menu_item_position . '_logged_out';
166 166
 
167
-		if ( $cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location ) {
168
-			$customizer_option  = get_theme_mod( 'lsx_header_wc_cart', false );
167
+		if ($cart_menu_item_position === $args->theme_location || $cart_logged_out_position === $args->theme_location) {
168
+			$customizer_option = get_theme_mod('lsx_header_wc_cart', false);
169 169
 
170
-			if ( ! empty( $customizer_option ) ) {
170
+			if ( ! empty($customizer_option)) {
171 171
 				ob_start();
172
-				the_widget( 'WC_Widget_Cart', 'title=' );
172
+				the_widget('WC_Widget_Cart', 'title=');
173 173
 				$widget = ob_get_clean();
174 174
 
175
-				if ( is_cart() ) {
175
+				if (is_cart()) {
176 176
 					$class = 'current-menu-item';
177 177
 				} else {
178 178
 					$class = '';
179 179
 				}
180 180
 
181 181
 				$item_class = 'menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children dropdown lsx-wc-cart-menu-item ' . $class;
182
-				$item_class = apply_filters( 'lsx_wc_cart_menu_item_class', $item_class );
182
+				$item_class = apply_filters('lsx_wc_cart_menu_item_class', $item_class);
183 183
 
184 184
 				$item = '<li class="' . $item_class . '">' .
185
-							'<a title="' . esc_attr__( 'View your shopping cart', 'lsx' ) . '" href="' . esc_url( wc_get_cart_url() ) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' .
186
-								'<span class="lsx-wc-cart-amount">' . wp_kses_data( WC()->cart->get_cart_subtotal() ) . '</span>' .
185
+							'<a title="' . esc_attr__('View your shopping cart', 'lsx') . '" href="' . esc_url(wc_get_cart_url()) . '" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">' .
186
+								'<span class="lsx-wc-cart-amount">' . wp_kses_data(WC()->cart->get_cart_subtotal()) . '</span>' .
187 187
 								/* Translators: %s: items quantity */
188
-								'<span class="lsx-wc-cart-count">' . wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) ) . '</span>' .
189
-								( ! empty( WC()->cart->get_cart_contents_count() ) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data( WC()->cart->get_cart_contents_count() ) . '</span>' : '' ) .
188
+								'<span class="lsx-wc-cart-count">' . wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())) . '</span>' .
189
+								( ! empty(WC()->cart->get_cart_contents_count()) ? '<span class="lsx-wc-cart-count-badge">' . wp_kses_data(WC()->cart->get_cart_contents_count()) . '</span>' : '') .
190 190
 							'</a>' .
191 191
 							'<ul role="menu" class=" dropdown-menu lsx-wc-cart-sub-menu">' .
192 192
 								'<li>' .
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 							'</ul>' .
196 196
 						'</li>';
197 197
 
198
-				if ( 'top-menu' === $args->theme_location ) {
198
+				if ('top-menu' === $args->theme_location) {
199 199
 					$items = $item . $items;
200 200
 				} else {
201 201
 					$items = $items . $item;
@@ -206,11 +206,11 @@  discard block
 block discarded – undo
206 206
 		return $items;
207 207
 	}
208 208
 
209
-	add_filter( 'wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2 );
209
+	add_filter('wp_nav_menu_items', 'lsx_wc_add_cart', 10, 2);
210 210
 
211 211
 endif;
212 212
 
213
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_before' ) ) :
213
+if ( ! function_exists('lsx_wc_products_widget_wrapper_before')) :
214 214
 
215 215
 	/**
216 216
 	 * Change WC products widget wrapper (before).
@@ -218,16 +218,16 @@  discard block
 block discarded – undo
218 218
 	 * @package    lsx
219 219
 	 * @subpackage woocommerce
220 220
 	 */
221
-	function lsx_wc_products_widget_wrapper_before( $html ) {
221
+	function lsx_wc_products_widget_wrapper_before($html) {
222 222
 		$html = '<div class="lsx-woocommerce-slider lsx-woocommerce-shortcode">';
223 223
 		return $html;
224 224
 	}
225 225
 
226
-	add_filter( 'woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15 );
226
+	add_filter('woocommerce_before_widget_product_list', 'lsx_wc_products_widget_wrapper_before', 15);
227 227
 
228 228
 endif;
229 229
 
230
-if ( ! function_exists( 'lsx_wc_products_widget_wrapper_after' ) ) :
230
+if ( ! function_exists('lsx_wc_products_widget_wrapper_after')) :
231 231
 
232 232
 	/**
233 233
 	 * Change WC products widget wrapper (after).
@@ -235,16 +235,16 @@  discard block
 block discarded – undo
235 235
 	 * @package    lsx
236 236
 	 * @subpackage woocommerce
237 237
 	 */
238
-	function lsx_wc_products_widget_wrapper_after( $html ) {
238
+	function lsx_wc_products_widget_wrapper_after($html) {
239 239
 		$html = '</div>';
240 240
 		return $html;
241 241
 	}
242 242
 
243
-	add_filter( 'woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15 );
243
+	add_filter('woocommerce_after_widget_product_list', 'lsx_wc_products_widget_wrapper_after', 15);
244 244
 
245 245
 endif;
246 246
 
247
-if ( ! function_exists( 'lsx_wc_reviews_widget_override' ) ) :
247
+if ( ! function_exists('lsx_wc_reviews_widget_override')) :
248 248
 
249 249
 	/**
250 250
 	 * Override WC ewviews widget.
@@ -253,18 +253,18 @@  discard block
 block discarded – undo
253 253
 	 * @subpackage woocommerce
254 254
 	 */
255 255
 	function lsx_wc_reviews_widget_override() {
256
-		if ( class_exists( 'WC_Widget_Recent_Reviews' ) ) {
257
-			unregister_widget( 'WC_Widget_Recent_Reviews' );
256
+		if (class_exists('WC_Widget_Recent_Reviews')) {
257
+			unregister_widget('WC_Widget_Recent_Reviews');
258 258
 			require get_template_directory() . '/includes/classes/class-lsx-wc-widget-recent-reviews.php';
259
-			register_widget( 'LSX_WC_Widget_Recent_Reviews' );
259
+			register_widget('LSX_WC_Widget_Recent_Reviews');
260 260
 		}
261 261
 	}
262 262
 
263
-	add_action( 'widgets_init', 'lsx_wc_reviews_widget_override', 15 );
263
+	add_action('widgets_init', 'lsx_wc_reviews_widget_override', 15);
264 264
 
265 265
 endif;
266 266
 
267
-if ( ! function_exists( 'lsx_wc_change_price_html' ) ) :
267
+if ( ! function_exists('lsx_wc_change_price_html')) :
268 268
 
269 269
 	/**
270 270
 	 * Change WC ZERO price to "free".
@@ -276,28 +276,28 @@  discard block
 block discarded – undo
276 276
 	 * @param $product WC_Product
277 277
 	 * @return string
278 278
 	 */
279
-	function lsx_wc_change_price_html( $price, $product ) {
280
-		if ( empty( $product->get_price() ) ) {
281
-			if ( $product->is_on_sale() && $product->get_regular_price() ) {
282
-				$regular_price = wc_get_price_to_display( $product, array(
279
+	function lsx_wc_change_price_html($price, $product) {
280
+		if (empty($product->get_price())) {
281
+			if ($product->is_on_sale() && $product->get_regular_price()) {
282
+				$regular_price = wc_get_price_to_display($product, array(
283 283
 					'qty' => 1,
284 284
 					'price' => $product->get_regular_price(),
285
-				) );
285
+				));
286 286
 
287
-				$price = wc_format_price_range( $regular_price, esc_html__( 'Free!', 'lsx' ) );
287
+				$price = wc_format_price_range($regular_price, esc_html__('Free!', 'lsx'));
288 288
 			} else {
289
-				$price = '<span class="amount">' . esc_html__( 'Free!', 'lsx' ) . '</span>';
289
+				$price = '<span class="amount">' . esc_html__('Free!', 'lsx') . '</span>';
290 290
 			}
291 291
 		}
292 292
 
293 293
 		return $price;
294 294
 	}
295 295
 
296
-	add_filter( 'woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2 );
296
+	add_filter('woocommerce_get_price_html', 'lsx_wc_change_price_html', 15, 2);
297 297
 
298 298
 endif;
299 299
 
300
-if ( ! function_exists( 'lsx_wc_cart_link_fragment' ) ) :
300
+if ( ! function_exists('lsx_wc_cart_link_fragment')) :
301 301
 
302 302
 	/**
303 303
 	 * Cart Fragments.
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 	 * @package    lsx
307 307
 	 * @subpackage woocommerce
308 308
 	 */
309
-	function lsx_wc_cart_link_fragment( $fragments ) {
309
+	function lsx_wc_cart_link_fragment($fragments) {
310 310
 		global $woocommerce;
311 311
 
312 312
 		ob_start();
@@ -317,8 +317,8 @@  discard block
 block discarded – undo
317 317
 		lsx_wc_items_counter();
318 318
 		$items_counter = ob_get_clean();
319 319
 
320
-		if ( ! empty( $items_counter ) ) {
321
-			$fragments['div.widget_shopping_cart_content'] = preg_replace( '/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content'] );
320
+		if ( ! empty($items_counter)) {
321
+			$fragments['div.widget_shopping_cart_content'] = preg_replace('/(.+)(<\/ul>)[\s\n]*(<p class="woocommerce-mini-cart__total)(.+)/', '$1' . $items_counter . '$2$3$4', $fragments['div.widget_shopping_cart_content']);
322 322
 		}
323 323
 
324 324
 		return $fragments;
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
 
327 327
 endif;
328 328
 
329
-if ( ! function_exists( 'lsx_wc_cart_link' ) ) :
329
+if ( ! function_exists('lsx_wc_cart_link')) :
330 330
 
331 331
 	/**
332 332
 	 * Cart Link.
@@ -337,14 +337,14 @@  discard block
 block discarded – undo
337 337
 	 */
338 338
 	function lsx_wc_cart_link() {
339 339
 		?>
340
-			<a title="<?php esc_attr_e( 'View your shopping cart', 'lsx' ); ?>" href="<?php echo esc_url( wc_get_cart_url() ); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">
341
-				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data( WC()->cart->get_cart_subtotal() ); ?></span>
340
+			<a title="<?php esc_attr_e('View your shopping cart', 'lsx'); ?>" href="<?php echo esc_url(wc_get_cart_url()); ?>" data-toggle="dropdown" class="dropdown-toggle" aria-haspopup="true">
341
+				<span class="lsx-wc-cart-amount"><?php echo wp_kses_data(WC()->cart->get_cart_subtotal()); ?></span>
342 342
 
343 343
 				<?php /* Translators: %s: items quantity */ ?>
344
-				<span class="lsx-wc-cart-count"><?php echo wp_kses_data( sprintf( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx' ), WC()->cart->get_cart_contents_count() ) );?></span>
344
+				<span class="lsx-wc-cart-count"><?php echo wp_kses_data(sprintf(_n('%d item', '%d items', WC()->cart->get_cart_contents_count(), 'lsx'), WC()->cart->get_cart_contents_count())); ?></span>
345 345
 
346
-				<?php if ( ! empty( WC()->cart->get_cart_contents_count() ) ) : ?>
347
-					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data( WC()->cart->get_cart_contents_count() );?></span>
346
+				<?php if ( ! empty(WC()->cart->get_cart_contents_count())) : ?>
347
+					<span class="lsx-wc-cart-count-badge"><?php echo wp_kses_data(WC()->cart->get_cart_contents_count()); ?></span>
348 348
 				<?php endif; ?>
349 349
 			</a>
350 350
 		<?php
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
 
353 353
 endif;
354 354
 
355
-if ( ! function_exists( 'lsx_wc_items_counter' ) ) :
355
+if ( ! function_exists('lsx_wc_items_counter')) :
356 356
 
357 357
 	/**
358 358
 	 * Add car item hidden items counter.
@@ -364,21 +364,21 @@  discard block
 block discarded – undo
364 364
 		$count = (int) WC()->cart->get_cart_contents_count();
365 365
 		$items_counter = '';
366 366
 
367
-		if ( ! empty( $count ) ) {
367
+		if ( ! empty($count)) {
368 368
 			$count -= 3;
369 369
 
370
-			if ( 1 === $count ) {
371
-				$items_counter = esc_html__( '1 other item in cart', 'lsx' );
372
-			} elseif ( $count > 1 ) {
370
+			if (1 === $count) {
371
+				$items_counter = esc_html__('1 other item in cart', 'lsx');
372
+			} elseif ($count > 1) {
373 373
 				/* Translators: %s: items counter */
374
-				$items_counter = sprintf( esc_html__( '%s other items in cart', 'lsx' ), $count );
374
+				$items_counter = sprintf(esc_html__('%s other items in cart', 'lsx'), $count);
375 375
 			}
376 376
 		}
377
-		$cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url();
378
-		if ( ! empty( $items_counter ) ) :
377
+		$cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url();
378
+		if ( ! empty($items_counter)) :
379 379
 			?>
380 380
 				<li class="woocommerce-mini-cart-item mini_cart_item" style="display: block;">
381
-					<a href="<?php echo esc_url( $cart_url ); ?>"><?php echo esc_html( $items_counter ); ?></a>
381
+					<a href="<?php echo esc_url($cart_url); ?>"><?php echo esc_html($items_counter); ?></a>
382 382
 				</li>
383 383
 			<?php
384 384
 		endif;
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
 
387 387
 endif;
388 388
 
389
-if ( ! function_exists( 'lsx_wc_loop_shop_per_page' ) ) :
389
+if ( ! function_exists('lsx_wc_loop_shop_per_page')) :
390 390
 
391 391
 	/**
392 392
 	 * Changes the number of products to display on shop.
@@ -394,16 +394,16 @@  discard block
 block discarded – undo
394 394
 	 * @package    lsx
395 395
 	 * @subpackage woocommerce
396 396
 	 */
397
-	function lsx_wc_loop_shop_per_page( $items ) {
397
+	function lsx_wc_loop_shop_per_page($items) {
398 398
 		$items = 20;
399 399
 		return $items;
400 400
 	}
401 401
 
402
-	add_filter( 'loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20 );
402
+	add_filter('loop_shop_per_page', 'lsx_wc_loop_shop_per_page', 20);
403 403
 
404 404
 endif;
405 405
 
406
-if ( ! function_exists( 'lsx_wc_add_to_cart_message_html' ) ) :
406
+if ( ! function_exists('lsx_wc_add_to_cart_message_html')) :
407 407
 
408 408
 	/**
409 409
 	 * Changes the "added to cart" message HTML.
@@ -411,39 +411,39 @@  discard block
 block discarded – undo
411 411
 	 * @package    lsx
412 412
 	 * @subpackage woocommerce
413 413
 	 */
414
-	function lsx_wc_add_to_cart_message_html( $message, $products ) {
414
+	function lsx_wc_add_to_cart_message_html($message, $products) {
415 415
 		$message = '<div class="woocommerce-message-added-to-cart">' . $message . '</div>';
416 416
 		return $message;
417 417
 	}
418 418
 
419
-	add_filter( 'wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2 );
419
+	add_filter('wc_add_to_cart_message_html', 'lsx_wc_add_to_cart_message_html', 20, 2);
420 420
 
421 421
 endif;
422 422
 
423
-if ( defined( 'WC_VERSION' ) && version_compare( WC_VERSION, '2.3', '>=' ) ) {
424
-	add_filter( 'woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
423
+if (defined('WC_VERSION') && version_compare(WC_VERSION, '2.3', '>=')) {
424
+	add_filter('woocommerce_add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
425 425
 } else {
426
-	add_filter( 'add_to_cart_fragments', 'lsx_wc_cart_link_fragment' );
426
+	add_filter('add_to_cart_fragments', 'lsx_wc_cart_link_fragment');
427 427
 }
428 428
 
429
-remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );
429
+remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10);
430 430
 
431
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
432
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
433
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
434
-add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
435
-add_action( 'woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
431
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper', 9);
432
+add_action('woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10);
433
+add_action('woocommerce_after_shop_loop', 'woocommerce_result_count', 20);
434
+add_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 30);
435
+add_action('woocommerce_after_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
436 436
 
437
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
438
-remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );
437
+remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
438
+remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30);
439 439
 
440
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9 );
441
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
442
-add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
443
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30 );
444
-add_action( 'woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31 );
440
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper', 9);
441
+add_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10);
442
+add_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20);
443
+add_action('woocommerce_before_shop_loop', 'lsx_wc_woocommerce_pagination', 30);
444
+add_action('woocommerce_before_shop_loop', 'lsx_wc_sorting_wrapper_close', 31);
445 445
 
446
-if ( ! function_exists( 'lsx_wc_sorting_wrapper' ) ) :
446
+if ( ! function_exists('lsx_wc_sorting_wrapper')) :
447 447
 
448 448
 	/**
449 449
 	 * Sorting wrapper.
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
 
458 458
 endif;
459 459
 
460
-if ( ! function_exists( 'lsx_wc_sorting_wrapper_close' ) ) :
460
+if ( ! function_exists('lsx_wc_sorting_wrapper_close')) :
461 461
 
462 462
 	/**
463 463
 	 * Sorting wrapper close.
@@ -471,7 +471,7 @@  discard block
 block discarded – undo
471 471
 
472 472
 endif;
473 473
 
474
-if ( ! function_exists( 'lsx_wc_product_columns_wrapper_close' ) ) :
474
+if ( ! function_exists('lsx_wc_product_columns_wrapper_close')) :
475 475
 
476 476
 	/**
477 477
 	 * Product columns wrapper close.
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
 
486 486
 endif;
487 487
 
488
-if ( ! function_exists( 'lsx_wc_woocommerce_pagination' ) ) :
488
+if ( ! function_exists('lsx_wc_woocommerce_pagination')) :
489 489
 
490 490
 	/**
491 491
 	 * LSX WooCommerce Pagination
@@ -497,14 +497,14 @@  discard block
 block discarded – undo
497 497
 	 * @subpackage woocommerce
498 498
 	 */
499 499
 	function lsx_wc_woocommerce_pagination() {
500
-		if ( woocommerce_products_will_display() ) {
500
+		if (woocommerce_products_will_display()) {
501 501
 			woocommerce_pagination();
502 502
 		}
503 503
 	}
504 504
 
505 505
 endif;
506 506
 
507
-if ( ! function_exists( 'lsx_customizer_wc_controls' ) ) :
507
+if ( ! function_exists('lsx_customizer_wc_controls')) :
508 508
 
509 509
 	/**
510 510
 	 * Returns an array of the core panel.
@@ -514,10 +514,10 @@  discard block
 block discarded – undo
514 514
 	 *
515 515
 	 * @return $lsx_controls array()
516 516
 	 */
517
-	function lsx_customizer_wc_controls( $lsx_controls ) {
517
+	function lsx_customizer_wc_controls($lsx_controls) {
518 518
 		$lsx_controls['panels']['lsx-wc'] = array(
519
-			'title'       => esc_html__( 'WooCommerce', 'lsx' ),
520
-			'description' => esc_html__( 'Change the WooCommerce settings.', 'lsx' ),
519
+			'title'       => esc_html__('WooCommerce', 'lsx'),
520
+			'description' => esc_html__('Change the WooCommerce settings.', 'lsx'),
521 521
 			'priority'    => 23,
522 522
 		);
523 523
 
@@ -526,8 +526,8 @@  discard block
 block discarded – undo
526 526
 		 */
527 527
 
528 528
 		$lsx_controls['sections']['lsx-wc-global'] = array(
529
-			'title'       => esc_html__( 'Global', 'lsx' ),
530
-			'description' => esc_html__( 'Change the WooCommerce global settings.', 'lsx' ),
529
+			'title'       => esc_html__('Global', 'lsx'),
530
+			'description' => esc_html__('Change the WooCommerce global settings.', 'lsx'),
531 531
 			'panel'       => 'lsx-wc',
532 532
 			'priority'    => 1,
533 533
 		);
@@ -538,8 +538,8 @@  discard block
 block discarded – undo
538 538
 		);
539 539
 
540 540
 		$lsx_controls['fields']['lsx_wc_mobile_footer_bar_status'] = array(
541
-			'label'       => esc_html__( 'Footer Bar', 'lsx' ),
542
-			'description' => esc_html__( 'Enable the mobile footer bar.', 'lsx' ),
541
+			'label'       => esc_html__('Footer Bar', 'lsx'),
542
+			'description' => esc_html__('Enable the mobile footer bar.', 'lsx'),
543 543
 			'section'     => 'lsx-wc-global',
544 544
 			'type'        => 'checkbox',
545 545
 			'priority'    => 1,
@@ -550,8 +550,8 @@  discard block
 block discarded – undo
550 550
 		 */
551 551
 
552 552
 		$lsx_controls['sections']['lsx-wc-cart'] = array(
553
-			'title'       => esc_html__( 'Cart', 'lsx' ),
554
-			'description' => esc_html__( 'Change the WooCommerce cart settings.', 'lsx' ),
553
+			'title'       => esc_html__('Cart', 'lsx'),
554
+			'description' => esc_html__('Change the WooCommerce cart settings.', 'lsx'),
555 555
 			'panel'       => 'lsx-wc',
556 556
 			'priority'    => 2,
557 557
 		);
@@ -562,8 +562,8 @@  discard block
 block discarded – undo
562 562
 		);
563 563
 
564 564
 		$lsx_controls['fields']['lsx_header_wc_cart'] = array(
565
-			'label'       => esc_html__( 'Menu Item', 'lsx' ),
566
-			'description' => esc_html__( 'Enable the cart menu item.', 'lsx' ),
565
+			'label'       => esc_html__('Menu Item', 'lsx'),
566
+			'description' => esc_html__('Enable the cart menu item.', 'lsx'),
567 567
 			'section'     => 'lsx-wc-cart',
568 568
 			'type'        => 'checkbox',
569 569
 			'priority'    => 1,
@@ -572,11 +572,11 @@  discard block
 block discarded – undo
572 572
 		return $lsx_controls;
573 573
 	}
574 574
 
575
-	add_filter( 'lsx_customizer_controls', 'lsx_customizer_wc_controls' );
575
+	add_filter('lsx_customizer_controls', 'lsx_customizer_wc_controls');
576 576
 
577 577
 endif;
578 578
 
579
-if ( ! function_exists( 'lsx_wc_footer_bar' ) ) :
579
+if ( ! function_exists('lsx_wc_footer_bar')) :
580 580
 
581 581
 	/**
582 582
 	 * Display WC footer bar.
@@ -585,47 +585,47 @@  discard block
 block discarded – undo
585 585
 	 * @subpackage woocommerce
586 586
 	 */
587 587
 	function lsx_wc_footer_bar() {
588
-		$cart_url = function_exists( 'wc_get_cart_url' ) ? wc_get_cart_url() : WC()->cart->get_cart_url();
589
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) :
588
+		$cart_url = function_exists('wc_get_cart_url') ? wc_get_cart_url() : WC()->cart->get_cart_url();
589
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) :
590 590
 			?>
591 591
 			<div class="lsx-wc-footer-bar">
592
-				<form role="search" method="get" action="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-form">
592
+				<form role="search" method="get" action="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-form">
593 593
 					<fieldset>
594
-						<legend class="screen-reader-text"><?php esc_html_e( 'Search products', 'lsx' ); ?></legend>
595
-						<input type="search" name="s" placeholder="<?php esc_attr_e( 'Search products...', 'lsx' ); ?>" class="form-control">
594
+						<legend class="screen-reader-text"><?php esc_html_e('Search products', 'lsx'); ?></legend>
595
+						<input type="search" name="s" placeholder="<?php esc_attr_e('Search products...', 'lsx'); ?>" class="form-control">
596 596
 					</fieldset>
597 597
 				</form>
598 598
 
599 599
 				<ul class="lsx-wc-footer-bar-items">
600 600
 					<li class="lsx-wc-footer-bar-item">
601
-						<a href="<?php echo esc_url( home_url() ); ?>" class="lsx-wc-footer-bar-link">
601
+						<a href="<?php echo esc_url(home_url()); ?>" class="lsx-wc-footer-bar-link">
602 602
 							<i class="fa fa-home" aria-hidden="true"></i>
603
-							<span><?php esc_html_e( 'Home', 'lsx' ); ?></span>
603
+							<span><?php esc_html_e('Home', 'lsx'); ?></span>
604 604
 						</a>
605 605
 					</li>
606 606
 
607 607
 					<li class="lsx-wc-footer-bar-item">
608
-						<a href="<?php echo esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ); ?>" class="lsx-wc-footer-bar-link">
608
+						<a href="<?php echo esc_url(get_permalink(get_option('woocommerce_myaccount_page_id'))); ?>" class="lsx-wc-footer-bar-link">
609 609
 							<i class="fa fa-user" aria-hidden="true"></i>
610
-							<span><?php esc_html_e( 'Account', 'lsx' ); ?></span>
610
+							<span><?php esc_html_e('Account', 'lsx'); ?></span>
611 611
 						</a>
612 612
 					</li>
613 613
 
614 614
 					<li class="lsx-wc-footer-bar-item">
615 615
 						<a href="#" class="lsx-wc-footer-bar-link lsx-wc-footer-bar-link-toogle">
616 616
 							<i class="fa fa-search" aria-hidden="true"></i>
617
-							<span><?php esc_html_e( 'Search', 'lsx' ); ?></span>
617
+							<span><?php esc_html_e('Search', 'lsx'); ?></span>
618 618
 						</a>
619 619
 					</li>
620 620
 
621 621
 					<li class="lsx-wc-footer-bar-item">
622
-						<a href="<?php echo esc_url( $cart_url ); ?>" class="lsx-wc-footer-bar-link">
622
+						<a href="<?php echo esc_url($cart_url); ?>" class="lsx-wc-footer-bar-link">
623 623
 							<i class="fa fa-shopping-basket" aria-hidden="true"></i>
624 624
 							<?php $count = WC()->cart->get_cart_contents_count(); ?>
625
-							<?php if ( ! empty( $count ) ) : ?>
626
-								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data( $count ); ?></span>
625
+							<?php if ( ! empty($count)) : ?>
626
+								<span class="lsx-wc-footer-bar-count"><?php echo wp_kses_data($count); ?></span>
627 627
 							<?php endif; ?>
628
-							<span><?php esc_html_e( 'Cart', 'lsx' ); ?></span>
628
+							<span><?php esc_html_e('Cart', 'lsx'); ?></span>
629 629
 						</a>
630 630
 					</li>
631 631
 				</ul>
@@ -634,11 +634,11 @@  discard block
 block discarded – undo
634 634
 		endif;
635 635
 	}
636 636
 
637
-	add_action( 'lsx_body_bottom', 'lsx_wc_footer_bar', 15 );
637
+	add_action('lsx_body_bottom', 'lsx_wc_footer_bar', 15);
638 638
 
639 639
 endif;
640 640
 
641
-if ( ! function_exists( 'lsx_wc_body_class' ) ) :
641
+if ( ! function_exists('lsx_wc_body_class')) :
642 642
 
643 643
 	/**
644 644
 	 * Changes body class.
@@ -646,25 +646,25 @@  discard block
 block discarded – undo
646 646
 	 * @package    lsx
647 647
 	 * @subpackage woocommerce
648 648
 	 */
649
-	function lsx_wc_body_class( $classes ) {
649
+	function lsx_wc_body_class($classes) {
650 650
 		global $post;
651 651
 
652
-		if ( $post && class_exists( 'WC_Wishlists_Pages' ) && WC_Wishlists_Pages::is_wishlist_page( $post->post_name ) ) {
652
+		if ($post && class_exists('WC_Wishlists_Pages') && WC_Wishlists_Pages::is_wishlist_page($post->post_name)) {
653 653
 			$classes[] = 'woocommerce-page woocommerce-wishlist';
654 654
 		}
655 655
 
656
-		if ( ! empty( get_theme_mod( 'lsx_wc_mobile_footer_bar_status', '1' ) ) ) {
656
+		if ( ! empty(get_theme_mod('lsx_wc_mobile_footer_bar_status', '1'))) {
657 657
 			$classes[] = 'lsx-wc-has-footer-bar';
658 658
 		}
659 659
 
660 660
 		return $classes;
661 661
 	}
662 662
 
663
-	add_filter( 'body_class', 'lsx_wc_body_class', 2999 );
663
+	add_filter('body_class', 'lsx_wc_body_class', 2999);
664 664
 
665 665
 endif;
666 666
 
667
-if ( ! function_exists( 'lsx_wc_downloadable_products' ) ) :
667
+if ( ! function_exists('lsx_wc_downloadable_products')) :
668 668
 
669 669
 	/**
670 670
 	 * Changes downloads "download" button text.
@@ -672,19 +672,19 @@  discard block
 block discarded – undo
672 672
 	 * @package    lsx
673 673
 	 * @subpackage woocommerce
674 674
 	 */
675
-	function lsx_wc_downloadable_products( $downloads ) {
676
-		foreach ( $downloads as $i => $download ) {
677
-			$downloads[ $i ]['download_name'] = esc_html__( 'Download', 'lsx' );
675
+	function lsx_wc_downloadable_products($downloads) {
676
+		foreach ($downloads as $i => $download) {
677
+			$downloads[$i]['download_name'] = esc_html__('Download', 'lsx');
678 678
 		}
679 679
 
680 680
 		return $downloads;
681 681
 	}
682 682
 
683
-	add_filter( 'woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999 );
683
+	add_filter('woocommerce_customer_get_downloadable_products', 'lsx_wc_downloadable_products', 2999);
684 684
 
685 685
 endif;
686 686
 
687
-if ( ! function_exists( 'lsx_wc_move_bundle_products' ) ) :
687
+if ( ! function_exists('lsx_wc_move_bundle_products')) :
688 688
 
689 689
 	/**
690 690
 	 * WooCommerce - Move the bundle products to a tab.
@@ -692,46 +692,46 @@  discard block
 block discarded – undo
692 692
 	 * @package    lsx
693 693
 	 * @subpackage woocommerce
694 694
 	 */
695
-	function lsx_wc_move_bundle_products( $tabs ) {
695
+	function lsx_wc_move_bundle_products($tabs) {
696 696
 		global $product, $post;
697 697
 
698
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
698
+		if (method_exists($product, 'get_bundled_items')) {
699 699
 			$bundled_items = $product->get_bundled_items();
700 700
 
701
-			if ( ! empty( $bundled_items ) ) {
701
+			if ( ! empty($bundled_items)) {
702 702
 				$tabs['bundled_products'] = array(
703
-					'title'    => __( 'Included Products', 'lsx' ),
703
+					'title'    => __('Included Products', 'lsx'),
704 704
 					'priority' => 10,
705 705
 					'callback' => 'lsx_wc_bundle_products',
706 706
 				);
707 707
 			}
708 708
 		}
709 709
 
710
-		if ( isset( $tabs['description'] ) ) {
710
+		if (isset($tabs['description'])) {
711 711
 			$tabs['description']['priority'] = 5;
712 712
 		}
713 713
 
714
-		if ( isset( $tabs['reviews'] ) ) {
714
+		if (isset($tabs['reviews'])) {
715 715
 			$tabs['reviews']['priority'] = 15;
716 716
 		}
717 717
 
718
-		if ( isset( $tabs['product_enquiry'] ) ) {
718
+		if (isset($tabs['product_enquiry'])) {
719 719
 			$tabs['product_enquiry']['priority'] = 20;
720 720
 		}
721 721
 
722 722
 		return $tabs;
723 723
 	}
724 724
 
725
-	add_action( 'woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50 );
725
+	add_action('woocommerce_product_tabs', 'lsx_wc_move_bundle_products', 50);
726 726
 
727 727
 endif;
728 728
 
729
-if ( ! function_exists( 'lsx_wc_bundle_products' ) ) :
729
+if ( ! function_exists('lsx_wc_bundle_products')) :
730 730
 
731 731
 	function lsx_wc_bundle_products() {
732 732
 		global $product, $post;
733 733
 
734
-		if ( method_exists( $product , 'get_bundled_items' ) ) {
734
+		if (method_exists($product, 'get_bundled_items')) {
735 735
 			$bundled_items = $product->get_bundled_items();
736 736
 
737 737
 			// do_action( 'woocommerce_before_bundled_items', $product );
@@ -747,16 +747,16 @@  discard block
 block discarded – undo
747 747
 			// $this->widget_start( $args, $instance );
748 748
 
749 749
 			// @codingStandardsIgnoreLine
750
-			echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' );
750
+			echo apply_filters('woocommerce_before_widget_product_list', '<ul class="product_list_widget">');
751 751
 
752
-			foreach ( $bundled_items as $bundled_item ) {
753
-				$product = wc_get_product( $bundled_item->item_data['product_id'] );
754
-				wc_get_template( 'content-widget-product.php' );
752
+			foreach ($bundled_items as $bundled_item) {
753
+				$product = wc_get_product($bundled_item->item_data['product_id']);
754
+				wc_get_template('content-widget-product.php');
755 755
 				$product = $product_original;
756 756
 			}
757 757
 
758 758
 			// @codingStandardsIgnoreLine
759
-			echo apply_filters( 'woocommerce_after_widget_product_list', '</ul>' );
759
+			echo apply_filters('woocommerce_after_widget_product_list', '</ul>');
760 760
 		}
761 761
 
762 762
 		// $this->widget_end( $args );
@@ -765,7 +765,7 @@  discard block
 block discarded – undo
765 765
 endif;
766 766
 
767 767
 
768
-if ( ! function_exists( 'lsx_wc_product_searchform' ) ) :
768
+if ( ! function_exists('lsx_wc_product_searchform')) :
769 769
 	/**
770 770
 	 * woo_custom_product_searchform
771 771
 	 *
@@ -773,7 +773,7 @@  discard block
 block discarded – undo
773 773
 	 * @since       1.0
774 774
 	 * @return      void
775 775
 	 */
776
-	function lsx_wc_product_searchform( $form ) {
776
+	function lsx_wc_product_searchform($form) {
777 777
 
778 778
 		$form = '
779 779
 			<form role="search" method="get" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( \'/\' ) ); ?>">
@@ -794,42 +794,42 @@  discard block
 block discarded – undo
794 794
 
795 795
 	}
796 796
 endif;
797
-add_filter( 'get_product_search_form' , 'lsx_wc_product_searchform', 10, 1 );
797
+add_filter('get_product_search_form', 'lsx_wc_product_searchform', 10, 1);
798 798
 
799 799
 	/**
800 800
 	 * Output the pagination.
801 801
 	*/
802 802
 function woocommerce_pagination() {
803
-	if ( ! wc_get_loop_prop( 'is_paginated' ) || ! woocommerce_products_will_display() ) {
803
+	if ( ! wc_get_loop_prop('is_paginated') || ! woocommerce_products_will_display()) {
804 804
 		return;
805 805
 	}
806 806
 	$args = array(
807
-		'total'   => wc_get_loop_prop( 'total_pages' ),
808
-		'current' => wc_get_loop_prop( 'current_page' ),
807
+		'total'   => wc_get_loop_prop('total_pages'),
808
+		'current' => wc_get_loop_prop('current_page'),
809 809
 	);
810 810
 
811
-	if ( wc_get_loop_prop( 'is_shortcode' ) ) {
812
-		$args['base']   = esc_url_raw( add_query_arg( 'product-page', '%#%', false ) );
811
+	if (wc_get_loop_prop('is_shortcode')) {
812
+		$args['base']   = esc_url_raw(add_query_arg('product-page', '%#%', false));
813 813
 		$args['format'] = '?product-page = %#%';
814 814
 	} else {
815
-		$args['base']   = esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) );
815
+		$args['base']   = esc_url_raw(str_replace(999999999, '%#%', remove_query_arg('add-to-cart', get_pagenum_link(999999999, false))));
816 816
 		$args['format'] = '';
817 817
 	}
818 818
 
819
-	echo wp_kses_post( '<div class="lsx-pagination-wrapper">' );
820
-	$template = wc_get_template_html( 'loop/pagination.php', $args );
821
-	$template = str_replace( 'woocommerce-pagination', 'lsx-pagination', $template );
822
-	echo wp_kses_post( $template );
823
-	echo wp_kses_post( '</div>' );
819
+	echo wp_kses_post('<div class="lsx-pagination-wrapper">');
820
+	$template = wc_get_template_html('loop/pagination.php', $args);
821
+	$template = str_replace('woocommerce-pagination', 'lsx-pagination', $template);
822
+	echo wp_kses_post($template);
823
+	echo wp_kses_post('</div>');
824 824
 }
825 825
 
826
-function lsx_wc_pagination_args( $args ) {
827
-	$args['prev_text'] = '<span class="meta-nav">&larr;</span> ' . esc_html__( 'Previous', 'lsx' );
828
-	$args['next_text'] = esc_html__( 'Next', 'lsx' ) . ' <span class="meta-nav">&rarr;</span>';
829
-	$args['type']	   = 'plain';
826
+function lsx_wc_pagination_args($args) {
827
+	$args['prev_text'] = '<span class="meta-nav">&larr;</span> ' . esc_html__('Previous', 'lsx');
828
+	$args['next_text'] = esc_html__('Next', 'lsx') . ' <span class="meta-nav">&rarr;</span>';
829
+	$args['type'] = 'plain';
830 830
 	return $args;
831 831
 }
832
-add_filter( 'woocommerce_pagination_args', 'lsx_wc_pagination_args',10 ,1 );
832
+add_filter('woocommerce_pagination_args', 'lsx_wc_pagination_args', 10, 1);
833 833
 
834 834
 
835 835
 /**
@@ -839,19 +839,19 @@  discard block
 block discarded – undo
839 839
  *
840 840
  * @return array
841 841
  */
842
-function lsx_wc_product_widget_template( $located, $template_name ) {
843
-	if ( 'content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name ) {
842
+function lsx_wc_product_widget_template($located, $template_name) {
843
+	if ('content-widget-product.php' === $template_name || 'content-widget-review.php' === $template_name) {
844 844
 
845 845
 		$new_location = get_stylesheet_directory() . '/partials/' . $template_name;
846
-		if ( file_exists( $new_location ) ) {
846
+		if (file_exists($new_location)) {
847 847
 			$located = $new_location;
848 848
 		} else {
849 849
 			$new_location = get_parent_theme_file_path() . '/partials/' . $template_name;
850
-			if ( file_exists( $new_location ) ) {
850
+			if (file_exists($new_location)) {
851 851
 				$located = $new_location;
852 852
 			}
853 853
 		}
854 854
 	}
855 855
 	return $located;
856 856
 }
857
-add_filter( 'wc_get_template', 'lsx_wc_product_widget_template',90 ,2 );
857
+add_filter('wc_get_template', 'lsx_wc_product_widget_template', 90, 2);
Please login to merge, or discard this patch.
includes/bbpress/bbpress.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  discard block
 block discarded – undo
6 6
  * @subpackage bbpress
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13 13
 global $bbpress;
14 14
 
15
-if ( ! function_exists( 'lsx_bbpress_scripts_add_styles' ) ) :
15
+if ( ! function_exists('lsx_bbpress_scripts_add_styles')) :
16 16
 
17 17
 	/**
18 18
 	 * bbPress enqueue styles.
@@ -21,19 +21,19 @@  discard block
 block discarded – undo
21 21
 	 * @subpackage bbpress
22 22
 	 */
23 23
 	function lsx_bbpress_scripts_add_styles() {
24
-		wp_enqueue_style( 'bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press/bb-press.css', array( 'lsx_main' ), LSX_VERSION );
25
-		wp_style_add_data( 'bbpress-lsx', 'rtl', 'replace' );
24
+		wp_enqueue_style('bbpress-lsx', get_template_directory_uri() . '/assets/css/bb-press/bb-press.css', array('lsx_main'), LSX_VERSION);
25
+		wp_style_add_data('bbpress-lsx', 'rtl', 'replace');
26 26
 	}
27 27
 
28
-	add_action( 'wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles' );
28
+	add_action('wp_enqueue_scripts', 'lsx_bbpress_scripts_add_styles');
29 29
 
30 30
 endif;
31 31
 
32 32
 /**** Remove "Archives:"  from the forums archive title. ******/
33 33
 
34
-add_filter( 'get_the_archive_title', 'modify_archive_title', 10, 1 );
34
+add_filter('get_the_archive_title', 'modify_archive_title', 10, 1);
35 35
 
36
-function modify_archive_title( $title ) {
37
-	$title = __( 'Forums', 'lsx' );
36
+function modify_archive_title($title) {
37
+	$title = __('Forums', 'lsx');
38 38
 	return $title;
39 39
 }
Please login to merge, or discard this patch.
includes/extras.php 1 patch
Spacing   +155 added lines, -155 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,49 +52,49 @@  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
-		if ( isset( $post ) ) {
61
+		if (isset($post)) {
62 62
 			$classes[] = $post->post_name;
63 63
 		}
64 64
 
65
-		if ( ! class_exists( 'LSX_Banners' ) || ! empty( apply_filters( 'lsx_banner_plugin_disable', false ) ) ) {
66
-			$post_types = array( 'page', 'post' );
67
-			$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
65
+		if ( ! class_exists('LSX_Banners') || ! empty(apply_filters('lsx_banner_plugin_disable', false))) {
66
+			$post_types = array('page', 'post');
67
+			$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
68 68
 
69
-			if ( is_singular( $post_types ) && has_post_thumbnail() ) {
69
+			if (is_singular($post_types) && has_post_thumbnail()) {
70 70
 				$classes[] = 'page-has-banner';
71 71
 			}
72 72
 		}
73 73
 
74
-		if ( has_nav_menu( 'top-menu' ) || has_nav_menu( 'top-menu-left' ) ) {
74
+		if (has_nav_menu('top-menu') || has_nav_menu('top-menu-left')) {
75 75
 			$classes[] = 'has-top-menu';
76 76
 		}
77 77
 
78
-		$fixed_header = get_theme_mod( 'lsx_header_fixed', false );
78
+		$fixed_header = get_theme_mod('lsx_header_fixed', false);
79 79
 
80
-		if ( false !== $fixed_header ) {
80
+		if (false !== $fixed_header) {
81 81
 			$classes[] = 'top-menu-fixed';
82 82
 		}
83 83
 
84
-		$search_form  = get_theme_mod( 'lsx_header_search', false );
84
+		$search_form = get_theme_mod('lsx_header_search', false);
85 85
 
86
-		if ( false !== $search_form ) {
86
+		if (false !== $search_form) {
87 87
 			$classes[] = 'has-header-search';
88 88
 		}
89 89
 
90
-		$preloader_content  = get_theme_mod( 'lsx_preloader_content_status', false );
90
+		$preloader_content = get_theme_mod('lsx_preloader_content_status', false);
91 91
 
92
-		if ( false !== $preloader_content ) {
92
+		if (false !== $preloader_content) {
93 93
 			$classes[] = 'preloader-content-enable';
94 94
 		}
95 95
 
96
-		$register_enabled = get_option( 'users_can_register', false );
97
-		if ( ( $register_enabled ) && is_page( 'my-account' ) && is_singular() ) {
96
+		$register_enabled = get_option('users_can_register', false);
97
+		if (($register_enabled) && is_page('my-account') && is_singular()) {
98 98
 			$classes[] = 'register-enabled';
99 99
 		}
100 100
 
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
 
104 104
 endif;
105 105
 
106
-add_filter( 'body_class', 'lsx_body_class' );
106
+add_filter('body_class', 'lsx_body_class');
107 107
 
108
-if ( ! function_exists( 'lsx_embed_wrap' ) ) :
108
+if ( ! function_exists('lsx_embed_wrap')) :
109 109
 
110 110
 	/**
111 111
 	 * Wrap embedded media as suggested by Readability.
@@ -116,8 +116,8 @@  discard block
 block discarded – undo
116 116
 	 * @link https://gist.github.com/965956
117 117
 	 * @link http://www.readability.com/publishers/guidelines#publisher
118 118
 	 */
119
-	function lsx_embed_wrap( $cache, $url, $attr = '', $post_id = '' ) {
120
-		if ( false !== strpos( $cache, '<iframe' ) ) {
119
+	function lsx_embed_wrap($cache, $url, $attr = '', $post_id = '') {
120
+		if (false !== strpos($cache, '<iframe')) {
121 121
 			return '<div class="entry-content-asset">' . $cache . '</div>';
122 122
 		}
123 123
 
@@ -126,9 +126,9 @@  discard block
 block discarded – undo
126 126
 
127 127
 endif;
128 128
 
129
-add_filter( 'embed_oembed_html', 'lsx_embed_wrap', 10, 4 );
129
+add_filter('embed_oembed_html', 'lsx_embed_wrap', 10, 4);
130 130
 
131
-if ( ! function_exists( 'lsx_remove_self_closing_tags' ) ) :
131
+if ( ! function_exists('lsx_remove_self_closing_tags')) :
132 132
 
133 133
 	/**
134 134
 	 * Remove unnecessary self-closing tags.
@@ -136,17 +136,17 @@  discard block
 block discarded – undo
136 136
 	 * @package    lsx
137 137
 	 * @subpackage extras
138 138
 	 */
139
-	function lsx_remove_self_closing_tags( $input ) {
140
-		return str_replace( ' />', '>', $input );
139
+	function lsx_remove_self_closing_tags($input) {
140
+		return str_replace(' />', '>', $input);
141 141
 	}
142 142
 
143 143
 endif;
144 144
 
145
-add_filter( 'get_avatar',          'lsx_remove_self_closing_tags' ); // <img />
146
-add_filter( 'comment_id_fields',   'lsx_remove_self_closing_tags' ); // <input />
147
-add_filter( 'post_thumbnail_html', 'lsx_remove_self_closing_tags' ); // <img />
145
+add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img />
146
+add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input />
147
+add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img />
148 148
 
149
-if ( ! function_exists( 'lsx_is_element_empty' ) ) :
149
+if ( ! function_exists('lsx_is_element_empty')) :
150 150
 
151 151
 	/**
152 152
 	 * Checks if a Nav $element is empty or not.
@@ -154,14 +154,14 @@  discard block
 block discarded – undo
154 154
 	 * @package    lsx
155 155
 	 * @subpackage extras
156 156
 	 */
157
-	function lsx_is_element_empty( $element ) {
158
-		$element = trim( $element );
159
-		return empty( $element ) ? false : true;
157
+	function lsx_is_element_empty($element) {
158
+		$element = trim($element);
159
+		return empty($element) ? false : true;
160 160
 	}
161 161
 
162 162
 endif;
163 163
 
164
-if ( ! function_exists( 'lsx_get_thumbnail' ) ) :
164
+if ( ! function_exists('lsx_get_thumbnail')) :
165 165
 
166 166
 	/**
167 167
 	 * return the responsive images.
@@ -169,58 +169,58 @@  discard block
 block discarded – undo
169 169
 	 * @package    lsx
170 170
 	 * @subpackage extras
171 171
 	 */
172
-	function lsx_get_thumbnail( $size, $image_src = false ) {
173
-		if ( false === $image_src ) {
172
+	function lsx_get_thumbnail($size, $image_src = false) {
173
+		if (false === $image_src) {
174 174
 			$post_id           = get_the_ID();
175
-			$post_thumbnail_id = get_post_thumbnail_id( $post_id );
176
-		} elseif ( false !== $image_src ) {
177
-			if ( is_numeric( $image_src ) ) {
175
+			$post_thumbnail_id = get_post_thumbnail_id($post_id);
176
+		} elseif (false !== $image_src) {
177
+			if (is_numeric($image_src)) {
178 178
 				$post_thumbnail_id = $image_src;
179 179
 			} else {
180
-				$post_thumbnail_id = lsx_get_attachment_id_from_src( $image_src );
180
+				$post_thumbnail_id = lsx_get_attachment_id_from_src($image_src);
181 181
 			}
182 182
 		}
183 183
 
184
-		$size = apply_filters( 'lsx_thumbnail_size', $size );
184
+		$size = apply_filters('lsx_thumbnail_size', $size);
185 185
 		$img       = '';
186 186
 		$lazy_img  = '';
187 187
 		$image_url = '';
188 188
 
189
-		if ( 'lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size ) {
189
+		if ('lsx-thumbnail-single' === $size || 'lsx-thumbnail-wide' === $size || 'lsx-thumbnail-square' === $size || 'thumbnail' === $size) {
190 190
 			$srcset = false;
191
-			$temp_img    = wp_get_attachment_image_src( $post_thumbnail_id, $size );
192
-			if ( ! empty( $temp_img ) ) {
193
-				$img    = $temp_img[0];
191
+			$temp_img = wp_get_attachment_image_src($post_thumbnail_id, $size);
192
+			if ( ! empty($temp_img)) {
193
+				$img = $temp_img[0];
194 194
 			}
195 195
 		} else {
196 196
 			$srcset = true;
197
-			$img = wp_get_attachment_image_srcset( $post_thumbnail_id, $size );
197
+			$img = wp_get_attachment_image_srcset($post_thumbnail_id, $size);
198 198
 
199
-			$temp_lazy = wp_get_attachment_image_src( $post_thumbnail_id, $size );
200
-			if ( ! empty( $temp_lazy ) ) {
199
+			$temp_lazy = wp_get_attachment_image_src($post_thumbnail_id, $size);
200
+			if ( ! empty($temp_lazy)) {
201 201
 				$lazy_img = $temp_lazy[0];
202 202
 			}
203 203
 
204
-			if ( empty( $img ) ) {
204
+			if (empty($img)) {
205 205
 				$srcset = false;
206
-				if ( ! empty( $lazy_img ) ) {
206
+				if ( ! empty($lazy_img)) {
207 207
 					$img = $lazy_img;
208 208
 				}
209 209
 			}
210 210
 		}
211 211
 
212
-		if ( '' !== $img ) {
212
+		if ('' !== $img) {
213 213
 			$image_url = $img;
214
-			$img = '<img alt="' . the_title_attribute( 'echo=0' ) . '" class="attachment-responsive wp-post-image lsx-responsive" ';
215
-			if ( $srcset ) {
216
-				$img .= 'srcset="' . esc_attr( $image_url ) . '" ';
214
+			$img = '<img alt="' . the_title_attribute('echo=0') . '" class="attachment-responsive wp-post-image lsx-responsive" ';
215
+			if ($srcset) {
216
+				$img .= 'srcset="' . esc_attr($image_url) . '" ';
217 217
 			} else {
218
-				$img .= 'src="' . esc_url( $image_url ) . '" ';
218
+				$img .= 'src="' . esc_url($image_url) . '" ';
219 219
 			}
220 220
 			$img .= '/>';
221 221
 
222
-			$img = apply_filters( 'lsx_lazyload_filter_images', $img );
223
-			$img = apply_filters( 'lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url );
222
+			$img = apply_filters('lsx_lazyload_filter_images', $img);
223
+			$img = apply_filters('lsx_lazyload_slider_images', $img, $post_thumbnail_id, $size, $srcset, $image_url);
224 224
 		}
225 225
 
226 226
 		return $img;
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 
229 229
 endif;
230 230
 
231
-if ( ! function_exists( 'lsx_thumbnail' ) ) :
231
+if ( ! function_exists('lsx_thumbnail')) :
232 232
 
233 233
 	/**
234 234
 	 * Output the Resonsive Images.
@@ -236,13 +236,13 @@  discard block
 block discarded – undo
236 236
 	 * @package    lsx
237 237
 	 * @subpackage extras
238 238
 	 */
239
-	function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) {
240
-		echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) );
239
+	function lsx_thumbnail($size = 'thumbnail', $image_src = false) {
240
+		echo wp_kses_post(lsx_get_thumbnail($size, $image_src));
241 241
 	}
242 242
 
243 243
 endif;
244 244
 
245
-if ( ! function_exists( 'lsx_get_attachment_id_from_src' ) ) :
245
+if ( ! function_exists('lsx_get_attachment_id_from_src')) :
246 246
 
247 247
 	/**
248 248
 	 * Gets the attachments ID from the src.
@@ -250,13 +250,13 @@  discard block
 block discarded – undo
250 250
 	 * @package    lsx
251 251
 	 * @subpackage extras
252 252
 	 */
253
-	function lsx_get_attachment_id_from_src( $image_src ) {
254
-		$post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' );
253
+	function lsx_get_attachment_id_from_src($image_src) {
254
+		$post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src');
255 255
 
256
-		if ( false === $post_id ) {
256
+		if (false === $post_id) {
257 257
 			global $wpdb;
258
-			$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) );
259
-			wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 );
258
+			$post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src));
259
+			wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600);
260 260
 		}
261 261
 
262 262
 		return $post_id;
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
 
265 265
 endif;
266 266
 
267
-if ( ! function_exists( 'lsx_page_banner' ) ) :
267
+if ( ! function_exists('lsx_page_banner')) :
268 268
 
269 269
 	/**
270 270
 	 * Add Featured Image as Banner on Single Pages.
@@ -273,30 +273,30 @@  discard block
 block discarded – undo
273 273
 	 * @subpackage extras
274 274
 	 */
275 275
 	function lsx_page_banner() {
276
-		if ( true === apply_filters( 'lsx_page_banner_disable', false ) ) {
276
+		if (true === apply_filters('lsx_page_banner_disable', false)) {
277 277
 			return;
278 278
 		}
279 279
 
280
-		$post_types = array( 'page', 'post' );
281
-		$post_types = apply_filters( 'lsx_allowed_post_type_banners', $post_types );
280
+		$post_types = array('page', 'post');
281
+		$post_types = apply_filters('lsx_allowed_post_type_banners', $post_types);
282 282
 
283
-		if ( is_singular( $post_types ) && has_post_thumbnail() ) :
283
+		if (is_singular($post_types) && has_post_thumbnail()) :
284 284
 			$bg_image = '';
285 285
 
286
-			if ( has_post_thumbnail() ) {
287
-				$temp_bg_image = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'full' );
288
-				if ( ! empty( $temp_bg_image ) ) {
286
+			if (has_post_thumbnail()) {
287
+				$temp_bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full');
288
+				if ( ! empty($temp_bg_image)) {
289 289
 					$bg_image = $temp_bg_image[0];
290 290
 				}
291 291
 			}
292 292
 
293
-			if ( '' !== $bg_image ) :
293
+			if ('' !== $bg_image) :
294 294
 				?>
295 295
 					<div class="page-banner-wrap">
296 296
 						<div class="page-banner">
297 297
 							<?php lsx_banner_inner_top(); ?>
298 298
 
299
-							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div>
299
+							<div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div>
300 300
 
301 301
 							<div class="container">
302 302
 								<header class="page-header">
@@ -315,11 +315,11 @@  discard block
 block discarded – undo
315 315
 
316 316
 endif;
317 317
 
318
-add_filter( 'lsx_banner_disable', 'lsx_disable_banner_for_blocks' );
319
-add_filter( 'lsx_global_header_disable', 'lsx_disable_banner_for_blocks' );
318
+add_filter('lsx_banner_disable', 'lsx_disable_banner_for_blocks');
319
+add_filter('lsx_global_header_disable', 'lsx_disable_banner_for_blocks');
320 320
 
321 321
 
322
-if ( ! function_exists( 'lsx_disable_banner_for_blocks' ) ) :
322
+if ( ! function_exists('lsx_disable_banner_for_blocks')) :
323 323
 
324 324
 	/**
325 325
 	 * Disable the Banner if the page is using Blocks
@@ -330,15 +330,15 @@  discard block
 block discarded – undo
330 330
 	 * @param  $disable boolean
331 331
 	 * @return boolean
332 332
 	 */
333
-	function lsx_disable_banner_for_blocks( $disable ) {
333
+	function lsx_disable_banner_for_blocks($disable) {
334 334
 		$queried_object = get_queried_object_id();
335
-		$show_on_front  = get_option( 'show_on_front' );
335
+		$show_on_front  = get_option('show_on_front');
336 336
 
337
-		if ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object ) {
337
+		if ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object) {
338 338
 			return $disable;
339 339
 		}
340 340
 
341
-		if ( function_exists( 'has_blocks' ) && has_blocks() && ( ! is_archive() ) ) {
341
+		if (function_exists('has_blocks') && has_blocks() && ( ! is_archive())) {
342 342
 			$disable = true;
343 343
 		}
344 344
 		return $disable;
@@ -346,9 +346,9 @@  discard block
 block discarded – undo
346 346
 
347 347
 endif;
348 348
 
349
-add_action( 'lsx_header_after', 'lsx_page_banner' );
349
+add_action('lsx_header_after', 'lsx_page_banner');
350 350
 
351
-if ( ! function_exists( 'lsx_form_submit_button' ) ) :
351
+if ( ! function_exists('lsx_form_submit_button')) :
352 352
 
353 353
 	/**
354 354
 	 * filter the Gravity Forms button type.
@@ -360,15 +360,15 @@  discard block
 block discarded – undo
360 360
 	 * @param  $form   Object
361 361
 	 * @return String
362 362
 	 */
363
-	function lsx_form_submit_button( $button, $form ) {
363
+	function lsx_form_submit_button($button, $form) {
364 364
 		return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>";
365 365
 	}
366 366
 
367 367
 endif;
368 368
 
369
-add_filter( 'gform_submit_button', 'lsx_form_submit_button', 10, 2 );
369
+add_filter('gform_submit_button', 'lsx_form_submit_button', 10, 2);
370 370
 
371
-if ( ! function_exists( 'lsx_excerpt_more' ) ) :
371
+if ( ! function_exists('lsx_excerpt_more')) :
372 372
 
373 373
 	/**
374 374
 	 * Replaces the excerpt "more" text by a link.
@@ -376,15 +376,15 @@  discard block
 block discarded – undo
376 376
 	 * @package    lsx
377 377
 	 * @subpackage extras
378 378
 	 */
379
-	function lsx_excerpt_more( $more ) {
379
+	function lsx_excerpt_more($more) {
380 380
 		return '...';
381 381
 	}
382 382
 
383 383
 endif;
384 384
 
385
-add_filter( 'excerpt_more', 'lsx_excerpt_more' );
385
+add_filter('excerpt_more', 'lsx_excerpt_more');
386 386
 
387
-if ( ! function_exists( 'lsx_the_excerpt_filter' ) ) :
387
+if ( ! function_exists('lsx_the_excerpt_filter')) :
388 388
 
389 389
 	/**
390 390
 	 * Add a continue reading link to the excerpt.
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 	 * @package    lsx
393 393
 	 * @subpackage extras
394 394
 	 */
395
-	function lsx_the_excerpt_filter( $excerpt ) {
395
+	function lsx_the_excerpt_filter($excerpt) {
396 396
 
397 397
 		$post_formats = array(
398 398
 			'aside'   => 'aside',
@@ -405,23 +405,23 @@  discard block
 block discarded – undo
405 405
 			'audio'   => 'audio',
406 406
 		);
407 407
 
408
-		$show_full_content = has_post_format( apply_filters( 'lsx_the_excerpt_filter_post_types', $post_formats ) );
408
+		$show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', $post_formats));
409 409
 
410
-		if ( ! $show_full_content ) {
411
-			if ( '' !== $excerpt && ! stristr( $excerpt, 'moretag' ) ) {
412
-				$pagination = wp_link_pages( array(
410
+		if ( ! $show_full_content) {
411
+			if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) {
412
+				$pagination = wp_link_pages(array(
413 413
 					'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
414 414
 					'after'       => '</div></div>',
415 415
 					'link_before' => '<span>',
416 416
 					'link_after'  => '</span>',
417 417
 					'echo'        => 0,
418
-				) );
418
+				));
419 419
 
420
-				if ( ! empty( $pagination ) ) {
420
+				if ( ! empty($pagination)) {
421 421
 					$excerpt .= $pagination;
422 422
 				} else {
423
-					$excerpt_more = '<p><a class="moretag" href="' . esc_url( get_permalink() ) . '">' . esc_html__( 'Read More', 'lsx' ) . '</a></p>';
424
-					$excerpt .= apply_filters( 'excerpt_more_p', $excerpt_more );
423
+					$excerpt_more = '<p><a class="moretag" href="' . esc_url(get_permalink()) . '">' . esc_html__('Read More', 'lsx') . '</a></p>';
424
+					$excerpt .= apply_filters('excerpt_more_p', $excerpt_more);
425 425
 				}
426 426
 			}
427 427
 		}
@@ -431,9 +431,9 @@  discard block
 block discarded – undo
431 431
 
432 432
 endif;
433 433
 
434
-add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 );
434
+add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20);
435 435
 
436
-if ( ! function_exists( 'lsx_full_width_widget_classes' ) ) :
436
+if ( ! function_exists('lsx_full_width_widget_classes')) :
437 437
 
438 438
 	/**
439 439
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -441,8 +441,8 @@  discard block
 block discarded – undo
441 441
 	 * @package    lsx
442 442
 	 * @subpackage extras
443 443
 	 */
444
-	function lsx_full_width_widget_classes( $params ) {
445
-		if ( is_admin() ) {
444
+	function lsx_full_width_widget_classes($params) {
445
+		if (is_admin()) {
446 446
 			return $params;
447 447
 		}
448 448
 
@@ -451,9 +451,9 @@  discard block
 block discarded – undo
451 451
 		$widget_id   = $params[0]['widget_id'];
452 452
 		$widget_name = $params[0]['widget_name'];
453 453
 
454
-		if ( 'Text' === $widget_name ) {
455
-			$wp_registered_widgets[ $widget_id ]['original_callback'] = $wp_registered_widgets[ $widget_id ]['callback'];
456
-			$wp_registered_widgets[ $widget_id ]['callback'] = 'lsx_full_width_widget_custom_callback';
454
+		if ('Text' === $widget_name) {
455
+			$wp_registered_widgets[$widget_id]['original_callback'] = $wp_registered_widgets[$widget_id]['callback'];
456
+			$wp_registered_widgets[$widget_id]['callback'] = 'lsx_full_width_widget_custom_callback';
457 457
 		}
458 458
 
459 459
 		return $params;
@@ -461,9 +461,9 @@  discard block
 block discarded – undo
461 461
 
462 462
 endif;
463 463
 
464
-add_filter( 'dynamic_sidebar_params', 'lsx_full_width_widget_classes' );
464
+add_filter('dynamic_sidebar_params', 'lsx_full_width_widget_classes');
465 465
 
466
-if ( ! function_exists( 'lsx_full_width_widget_custom_callback' ) ) :
466
+if ( ! function_exists('lsx_full_width_widget_custom_callback')) :
467 467
 
468 468
 	/**
469 469
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -477,25 +477,25 @@  discard block
 block discarded – undo
477 477
 		$original_callback_params = func_get_args();
478 478
 		$widget_id = $original_callback_params[0]['widget_id'];
479 479
 
480
-		$original_callback = $wp_registered_widgets[ $widget_id ]['original_callback'];
481
-		$wp_registered_widgets[ $widget_id ]['callback'] = $original_callback;
480
+		$original_callback = $wp_registered_widgets[$widget_id]['original_callback'];
481
+		$wp_registered_widgets[$widget_id]['callback'] = $original_callback;
482 482
 
483
-		$widget_id_base = $wp_registered_widgets[ $widget_id ]['callback'][0]->id_base;
483
+		$widget_id_base = $wp_registered_widgets[$widget_id]['callback'][0]->id_base;
484 484
 
485 485
 		$widget_classname = '';
486 486
 
487
-		if ( is_callable( $original_callback ) ) {
487
+		if (is_callable($original_callback)) {
488 488
 			ob_start();
489
-			call_user_func_array( $original_callback, $original_callback_params );
489
+			call_user_func_array($original_callback, $original_callback_params);
490 490
 			$widget_output = ob_get_clean();
491 491
 
492
-			echo wp_kses_post( apply_filters( 'lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id ) );
492
+			echo wp_kses_post(apply_filters('lsx_widget_output', $widget_output, $widget_id_base, $widget_classname, $widget_id));
493 493
 		}
494 494
 	}
495 495
 
496 496
 endif;
497 497
 
498
-if ( ! function_exists( 'lsx_full_width_widget_output' ) ) :
498
+if ( ! function_exists('lsx_full_width_widget_output')) :
499 499
 
500 500
 	/**
501 501
 	 * Filter sidebar widget params, to add the widget_lsx_full_width_alt or widget_lsx_full_width classes to the text widget.
@@ -503,12 +503,12 @@  discard block
 block discarded – undo
503 503
 	 * @package    lsx
504 504
 	 * @subpackage extras
505 505
 	 */
506
-	function lsx_full_width_widget_output( $widget_output, $widget_id_base, $widget_id ) {
507
-		if ( 'text' === $widget_id_base ) {
508
-			if ( false !== strpos( $widget_output, '<div class="lsx-full-width-alt">' ) ) {
509
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output );
510
-			} elseif ( false !== strpos( $widget_output, '<div class="lsx-full-width">' ) ) {
511
-				$widget_output = str_replace( 'class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output );
506
+	function lsx_full_width_widget_output($widget_output, $widget_id_base, $widget_id) {
507
+		if ('text' === $widget_id_base) {
508
+			if (false !== strpos($widget_output, '<div class="lsx-full-width-alt">')) {
509
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width_alt"', $widget_output);
510
+			} elseif (false !== strpos($widget_output, '<div class="lsx-full-width">')) {
511
+				$widget_output = str_replace('class="widget widget_text"', 'class="widget widget_text widget_lsx_full_width"', $widget_output);
512 512
 			}
513 513
 		}
514 514
 
@@ -517,13 +517,13 @@  discard block
 block discarded – undo
517 517
 
518 518
 endif;
519 519
 
520
-add_filter( 'lsx_widget_output', 'lsx_full_width_widget_output', 10, 3 );
520
+add_filter('lsx_widget_output', 'lsx_full_width_widget_output', 10, 3);
521 521
 
522 522
 /**
523 523
  * Check if the content has a restricted post format that needs to show a full excerpt.
524 524
  */
525 525
 function lsx_post_format_force_content_on_list() {
526
-	$post_formats = apply_filters( 'lsx_post_format_force_content_on_list',
526
+	$post_formats = apply_filters('lsx_post_format_force_content_on_list',
527 527
 		array(
528 528
 				'video' => 'video',
529 529
 				'audio' => 'audio',
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
 			)
533 533
 	);
534 534
 	$return = false;
535
-	if ( ! has_post_format( $post_formats ) ) {
535
+	if ( ! has_post_format($post_formats)) {
536 536
 		$return = true;
537 537
 	}
538 538
 	return $return;
@@ -541,67 +541,67 @@  discard block
 block discarded – undo
541 541
 /**
542 542
  * Remove the Hentry Class Every
543 543
  */
544
-function lsx_remove_hentry( $classes ) {
545
-	if ( 'post' !== get_post_type() ) {
546
-		$classes = array_diff( $classes, array( 'hentry' ) );
544
+function lsx_remove_hentry($classes) {
545
+	if ('post' !== get_post_type()) {
546
+		$classes = array_diff($classes, array('hentry'));
547 547
 	}
548 548
 	return $classes;
549 549
 }
550
-add_filter( 'post_class','lsx_remove_hentry' );
550
+add_filter('post_class', 'lsx_remove_hentry');
551 551
 
552 552
 /**
553 553
  * Strip Excerpts.
554 554
  *
555 555
  */
556
-function lsx_strip_excerpt( $content ) {
557
-	if ( is_search() || is_archive() || ( is_blog_installed() && ! is_single() && ! is_page() ) ) {
558
-		$content = strip_shortcodes( $content );
559
-		$content = str_replace( ']]>', ']]&gt;', $content );
560
-		$content = strip_tags( $content );
556
+function lsx_strip_excerpt($content) {
557
+	if (is_search() || is_archive() || (is_blog_installed() && ! is_single() && ! is_page())) {
558
+		$content = strip_shortcodes($content);
559
+		$content = str_replace(']]>', ']]&gt;', $content);
560
+		$content = strip_tags($content);
561 561
 	}
562 562
 	return $content;
563 563
 }
564
-add_filter( 'the_content', 'lsx_strip_excerpt' );
564
+add_filter('the_content', 'lsx_strip_excerpt');
565 565
 
566 566
 /**
567 567
  * Disable Gutenberg for LSX Custom Post Tpes.
568 568
  *
569 569
  */
570
-function lsx_disable_gutenberg_product_type( $is_enabled, $post_type ) {
571
-	if ( 'testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type ) {
570
+function lsx_disable_gutenberg_product_type($is_enabled, $post_type) {
571
+	if ('testimonial' === $post_type || 'team' === $post_type || 'project' === $post_type) {
572 572
 		return false;
573 573
 	}
574 574
 
575 575
 	return $is_enabled;
576 576
 }
577
-add_filter( 'gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2 );
577
+add_filter('gutenberg_add_edit_link_for_post_type', 'lsx_disable_gutenberg_product_type', 10, 2);
578 578
 
579 579
 /**
580 580
  * Add the "Blog" link to the breadcrumbs
581 581
  * @param $crumbs
582 582
  * @return array
583 583
  */
584
-function lsx_breadcrumbs_blog_link( $crumbs ) {
584
+function lsx_breadcrumbs_blog_link($crumbs) {
585 585
 
586
-	$show_on_front = get_option( 'show_on_front' );
586
+	$show_on_front = get_option('show_on_front');
587 587
 
588
-	if ( 'page' === $show_on_front && ( is_category() || is_tag() ) ) {
588
+	if ('page' === $show_on_front && (is_category() || is_tag())) {
589 589
 
590
-		$blog_page = get_option( 'page_for_posts' );
591
-		if ( false !== $blog_page && '' !== $blog_page ) {
590
+		$blog_page = get_option('page_for_posts');
591
+		if (false !== $blog_page && '' !== $blog_page) {
592 592
 
593 593
 			$new_crumbs = array();
594 594
 			$new_crumbs[0] = $crumbs[0];
595 595
 
596
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
596
+			if (function_exists('woocommerce_breadcrumb')) {
597 597
 				$new_crumbs[1] = array(
598
-					0	=> get_the_title( $blog_page ),
599
-					1	=> get_permalink( $blog_page ),
598
+					0	=> get_the_title($blog_page),
599
+					1	=> get_permalink($blog_page),
600 600
 				);
601 601
 			} else {
602 602
 				$new_crumbs[1] = array(
603
-					'text'	=> get_the_title( $blog_page ),
604
-					'url'	=> get_permalink( $blog_page ),
603
+					'text'	=> get_the_title($blog_page),
604
+					'url'	=> get_permalink($blog_page),
605 605
 				);
606 606
 			}
607 607
 			$new_crumbs[2] = $crumbs[1];
@@ -611,5 +611,5 @@  discard block
 block discarded – undo
611 611
 	}
612 612
 	return $crumbs;
613 613
 }
614
-add_filter( 'wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1 );
615
-add_filter( 'woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1 );
614
+add_filter('wpseo_breadcrumb_links', 'lsx_breadcrumbs_blog_link', 30, 1);
615
+add_filter('woocommerce_get_breadcrumb', 'lsx_breadcrumbs_blog_link', 30, 1);
Please login to merge, or discard this patch.
includes/sensei/class-lsx-sensei-course.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) {
2
+if ( ! defined('ABSPATH')) {
3 3
 	exit; // Exit if accessed directly
4 4
 }
5 5
 
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 	 * Constructor.
20 20
 	 */
21 21
 	public function __construct() {
22
-		add_action( 'init', array( $this, 'init' ) );
22
+		add_action('init', array($this, 'init'));
23 23
 	} // End __construct()
24 24
 
25 25
 	/**
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 	 * @return self
29 29
 	 */
30 30
 	public static function instance() {
31
-		if ( ! self::$instance ) {
31
+		if ( ! self::$instance) {
32 32
 			self::$instance = new self();
33 33
 		}
34 34
 		return self::$instance;
@@ -42,32 +42,32 @@  discard block
 block discarded – undo
42 42
 		global $woothemes_sensei;
43 43
 
44 44
 		//Switching the course filters and the headers around
45
-		remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 );
46
-		remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ) );
47
-		remove_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ) );
48
-		add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 );
49
-		add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_sorting' ), 12 );
50
-		add_action( 'sensei_archive_before_course_loop', array( 'Sensei_Course', 'course_archive_filters' ), 12 );
45
+		remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0);
46
+		remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'));
47
+		remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'));
48
+		add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0);
49
+		add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12);
50
+		add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12);
51 51
 
52 52
 		// First add the thumbnail.
53
-		add_action( 'sensei_course_content_inside_before', array( $this, 'get_course_thumbnail' ), 1 );
53
+		add_action('sensei_course_content_inside_before', array($this, 'get_course_thumbnail'), 1);
54 54
 
55 55
 		// This is for our wrapper, we run it on 2, after the thumbnail we added.
56
-		add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_open' ), 1 );
57
-		add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_close' ), 50 );
56
+		add_action('sensei_course_content_inside_before', array($this, 'course_body_div_open'), 1);
57
+		add_action('sensei_course_content_inside_after', array($this, 'course_body_div_close'), 50);
58 58
 
59 59
 		// This is for our wrapper, we run it on 2, after the thumbnail we added.
60
-		add_action( 'sensei_course_content_inside_before', array( $this, 'course_body_div_results_open' ), 20 );
61
-		add_action( 'sensei_course_content_inside_after', array( $this, 'course_body_div_results_close' ), 49 );
60
+		add_action('sensei_course_content_inside_before', array($this, 'course_body_div_results_open'), 20);
61
+		add_action('sensei_course_content_inside_after', array($this, 'course_body_div_results_close'), 49);
62 62
 
63
-		add_action( 'sensei_single_course_content_inside_before', array( $this, 'display_course_amount' ), 20 );
63
+		add_action('sensei_single_course_content_inside_before', array($this, 'display_course_amount'), 20);
64 64
 
65 65
 		// removes the course image above the content
66
-		remove_action( 'sensei_course_content_inside_before', array( $woothemes_sensei->course, 'course_image' ), 30, 1 );
66
+		remove_action('sensei_course_content_inside_before', array($woothemes_sensei->course, 'course_image'), 30, 1);
67 67
 		// add the course image to the left of the content
68
-		add_action( 'lsx_sensei_course_content_inside_before', array( 'Sensei_Course', 'course_image' ), 30, 1 );
68
+		add_action('lsx_sensei_course_content_inside_before', array('Sensei_Course', 'course_image'), 30, 1);
69 69
 
70
-		add_filter( 'attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1 );
70
+		add_filter('attach_shortcode_hooks', 'lsx_attach_shortcode_hooks', 10, 1);
71 71
 
72 72
 	}
73 73
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 	public function get_course_thumbnail() {
80 80
 		?>
81 81
 		<div class="course-thumbnail">
82
-			<?php do_action( 'lsx_sensei_course_content_inside_before', get_the_ID() ); ?>
82
+			<?php do_action('lsx_sensei_course_content_inside_before', get_the_ID()); ?>
83 83
 		</div>
84 84
 		<?php
85 85
 	}
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
 	 */
92 92
 	public function course_body_div_open() {
93 93
 		global $post, $current_user;
94
-		$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
94
+		$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
95 95
 		$user_taking_course_class = '';
96
-		if ( ! empty( $is_user_taking_course ) ) {
96
+		if ( ! empty($is_user_taking_course)) {
97 97
 			$user_taking_course_class = 'currently-in-course';
98 98
 		}
99 99
 		?>
100
-		<div class="course-body <?php echo esc_html( $user_taking_course_class ); ?>">
100
+		<div class="course-body <?php echo esc_html($user_taking_course_class); ?>">
101 101
 		<?php
102 102
 	}
103 103
 
@@ -141,15 +141,15 @@  discard block
 block discarded – undo
141 141
 	 */
142 142
 	public function display_course_amount() {
143 143
 		global $post, $current_user;
144
-		$is_user_taking_course = Sensei_Utils::user_started_course( $post->ID, $current_user->ID );
145
-		$wc_post_id            = absint( get_post_meta( $post->ID, '_course_woocommerce_product', true ) );
146
-		$course_purchasable    = Sensei_WC::is_course_purchasable( $post->ID );
144
+		$is_user_taking_course = Sensei_Utils::user_started_course($post->ID, $current_user->ID);
145
+		$wc_post_id            = absint(get_post_meta($post->ID, '_course_woocommerce_product', true));
146
+		$course_purchasable    = Sensei_WC::is_course_purchasable($post->ID);
147 147
 		$currency              = get_woocommerce_currency_symbol();
148
-		$product               = new WC_Product( $wc_post_id );
149
-		if ( ( ! empty( $product->price ) ) && ( ! $is_user_taking_course ) ) {
150
-			echo '<span class="course-product-price price"><span>' . esc_html( $currency ) . ' </span>' . sprintf( '%0.2f', esc_html( $product->price ) ) . '</span>';
151
-		} elseif ( ( '' === $product->get_price() || 0 == $product->get_price() ) && $course_purchasable ) {
152
-			echo '<span class="course-product-price price">' . wp_kses_post( 'Free!', 'lsx' ) . '</span>';
148
+		$product               = new WC_Product($wc_post_id);
149
+		if (( ! empty($product->price)) && ( ! $is_user_taking_course)) {
150
+			echo '<span class="course-product-price price"><span>' . esc_html($currency) . ' </span>' . sprintf('%0.2f', esc_html($product->price)) . '</span>';
151
+		} elseif (('' === $product->get_price() || 0 == $product->get_price()) && $course_purchasable) {
152
+			echo '<span class="course-product-price price">' . wp_kses_post('Free!', 'lsx') . '</span>';
153 153
 		}
154 154
 	}
155 155
 
Please login to merge, or discard this patch.
includes/the-events-calendar/the-events-calendar.php 1 patch
Spacing   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@  discard block
 block discarded – undo
6 6
  * @subpackage the-events-calendar
7 7
  */
8 8
 
9
-if ( ! defined( 'ABSPATH' ) ) {
9
+if ( ! defined('ABSPATH')) {
10 10
 	exit;
11 11
 }
12 12
 
13
-if ( ! function_exists( 'lsx_tec_scripts_add_styles' ) ) :
13
+if ( ! function_exists('lsx_tec_scripts_add_styles')) :
14 14
 
15 15
 	/**
16 16
 	 * The Events Calendar enqueue styles.
@@ -19,15 +19,15 @@  discard block
 block discarded – undo
19 19
 	 * @subpackage the-events-calendar
20 20
 	 */
21 21
 	function lsx_tec_scripts_add_styles() {
22
-		wp_enqueue_style( 'the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array( 'lsx_main' ), LSX_VERSION );
23
-		wp_style_add_data( 'the-events-calendar-lsx', 'rtl', 'replace' );
22
+		wp_enqueue_style('the-events-calendar-lsx', get_template_directory_uri() . '/assets/css/the-events-calendar/the-events-calendar.css', array('lsx_main'), LSX_VERSION);
23
+		wp_style_add_data('the-events-calendar-lsx', 'rtl', 'replace');
24 24
 	}
25 25
 
26
-	add_action( 'wp_enqueue_scripts', 'lsx_tec_scripts_add_styles' );
26
+	add_action('wp_enqueue_scripts', 'lsx_tec_scripts_add_styles');
27 27
 
28 28
 endif;
29 29
 
30
-if ( ! function_exists( 'lsx_tec_theme_wrapper_start' ) ) :
30
+if ( ! function_exists('lsx_tec_theme_wrapper_start')) :
31 31
 
32 32
 	/**
33 33
 	 * The Events Calendar wrapper start.
@@ -37,17 +37,17 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	function lsx_tec_theme_wrapper_start() {
39 39
 		lsx_content_wrap_before();
40
-		echo '<div id="primary" class="content-area ' . esc_attr( lsx_main_class() ) . '">';
40
+		echo '<div id="primary" class="content-area ' . esc_attr(lsx_main_class()) . '">';
41 41
 		lsx_content_before();
42 42
 		echo '<main id="main" class="site-main" role="main">';
43 43
 		lsx_content_top();
44 44
 	}
45 45
 
46
-	add_action( 'tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9 );
46
+	add_action('tribe_events_before_html', 'lsx_tec_theme_wrapper_start', 9);
47 47
 
48 48
 endif;
49 49
 
50
-if ( ! function_exists( 'lsx_tec_theme_wrapper_end' ) ) :
50
+if ( ! function_exists('lsx_tec_theme_wrapper_end')) :
51 51
 
52 52
 	/**
53 53
 	 * The Events Calendar wrapper end.
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 		lsx_content_wrap_after();
64 64
 	}
65 65
 
66
-	add_action( 'tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11 );
66
+	add_action('tribe_events_after_html', 'lsx_tec_theme_wrapper_end', 11);
67 67
 
68 68
 endif;
69 69
 
70
-if ( ! function_exists( 'lsx_tec_global_header_title' ) ) :
70
+if ( ! function_exists('lsx_tec_global_header_title')) :
71 71
 
72 72
 	/**
73 73
 	 * Move the events title into the global header
@@ -75,98 +75,98 @@  discard block
 block discarded – undo
75 75
 	 * @package    lsx
76 76
 	 * @subpackage the-events-calendar
77 77
 	 */
78
-	function lsx_tec_global_header_title( $title ) {
78
+	function lsx_tec_global_header_title($title) {
79 79
 
80
-		if ( tribe_is_community_edit_event_page() ) {
80
+		if (tribe_is_community_edit_event_page()) {
81 81
 
82
-			$is_route = get_query_var( 'WP_Route' );
83
-			switch ( $is_route ) {
82
+			$is_route = get_query_var('WP_Route');
83
+			switch ($is_route) {
84 84
 				case 'ce-edit-route':
85
-					$title = apply_filters( 'tribe_ce_edit_event_page_title', __( 'Edit an Event', 'lsx' ) );
85
+					$title = apply_filters('tribe_ce_edit_event_page_title', __('Edit an Event', 'lsx'));
86 86
 					break;
87 87
 
88 88
 				case 'ce-edit-organizer-route':
89
-					$title = __( 'Edit an Organizer', 'lsx' );
89
+					$title = __('Edit an Organizer', 'lsx');
90 90
 					break;
91 91
 
92 92
 				case 'ce-edit-venue-route':
93
-					$title = __( 'Edit a Venue', 'lsx' );
93
+					$title = __('Edit a Venue', 'lsx');
94 94
 					break;
95 95
 
96 96
 				default:
97
-					$title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'Submit an Event', 'lsx' ) );
97
+					$title = apply_filters('tribe_ce_submit_event_page_title', __('Submit an Event', 'lsx'));
98 98
 					break;
99 99
 			}
100
-		} else if ( tribe_is_community_my_events_page() ) {
101
-			$title = apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) );
102
-		} else if ( tribe_is_event() ) {
100
+		} else if (tribe_is_community_my_events_page()) {
101
+			$title = apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx'));
102
+		} else if (tribe_is_event()) {
103 103
 			$title = tribe_get_events_title();
104 104
 		}
105 105
 
106 106
 		//Only disable the title after we have retrieved it
107
-		add_filter( 'tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1 );
107
+		add_filter('tribe_get_events_title', 'lsx_text_disable_body_title', 200, 1);
108 108
 
109
-		if ( is_singular( 'tribe_events' ) ) {
110
-			add_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 );
109
+		if (is_singular('tribe_events')) {
110
+			add_filter('the_title', 'lsx_text_disable_body_title', 200, 1);
111 111
 		}
112 112
 		return $title;
113 113
 	}
114
-	add_filter( 'lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1 );
114
+	add_filter('lsx_global_header_title', 'lsx_tec_global_header_title', 200, 1);
115 115
 
116 116
 endif;
117 117
 
118
-if ( ! function_exists( 'lsx_text_disable_body_title' ) ) :
118
+if ( ! function_exists('lsx_text_disable_body_title')) :
119 119
 	/**
120 120
 	 * Disable the events title for the post archive if the dynamic setting is active.
121 121
 	 * @param $title
122 122
 	 *
123 123
 	 * @return string
124 124
 	 */
125
-	function lsx_text_disable_body_title( $title ) {
125
+	function lsx_text_disable_body_title($title) {
126 126
 		$title = '';
127
-		remove_filter( 'the_title', 'lsx_text_disable_body_title', 200, 1 );
127
+		remove_filter('the_title', 'lsx_text_disable_body_title', 200, 1);
128 128
 		return $title;
129 129
 	}
130 130
 
131 131
 endif;
132 132
 
133
-if ( ! function_exists( 'lsx_tec_breadcrumb_filter' ) ) :
133
+if ( ! function_exists('lsx_tec_breadcrumb_filter')) :
134 134
 	/**
135 135
 	 * Fixes the community events breadcrumb
136 136
 	 *
137 137
 	 * @package    lsx
138 138
 	 * @subpackage the-events-calendar
139 139
 	 */
140
-	function lsx_tec_breadcrumb_filter( $crumbs ) {
140
+	function lsx_tec_breadcrumb_filter($crumbs) {
141 141
 
142
-		if ( tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page() ) {
142
+		if (tribe_is_venue() || tribe_is_organizer() || tribe_is_community_edit_event_page() || tribe_is_community_my_events_page()) {
143 143
 			$new_crumbs = array();
144 144
 			$new_crumbs[0] = $crumbs[0];
145 145
 
146
-			if ( function_exists( 'woocommerce_breadcrumb' ) ) {
146
+			if (function_exists('woocommerce_breadcrumb')) {
147 147
 				$new_crumbs[1] = array(
148
-					0	=> __( 'Events', 'lsx' ),
149
-					1	=> get_post_type_archive_link( 'tribe_events' ),
148
+					0	=> __('Events', 'lsx'),
149
+					1	=> get_post_type_archive_link('tribe_events'),
150 150
 				);
151 151
 			} else {
152 152
 				$new_crumbs[1] = array(
153
-					'text'	=> __( 'Events', 'lsx' ),
154
-					'url'	=> get_post_type_archive_link( 'tribe_events' ),
153
+					'text'	=> __('Events', 'lsx'),
154
+					'url'	=> get_post_type_archive_link('tribe_events'),
155 155
 				);
156 156
 			}
157 157
 
158
-			if ( tribe_is_community_my_events_page() ) {
158
+			if (tribe_is_community_my_events_page()) {
159 159
 				$new_crumbs[2] = $crumbs[2];
160
-			} else if ( tribe_is_community_edit_event_page() ) {
160
+			} else if (tribe_is_community_edit_event_page()) {
161 161
 
162
-				if ( function_exists( 'woocommerce_breadcrumb' ) ) {
162
+				if (function_exists('woocommerce_breadcrumb')) {
163 163
 					$new_crumbs[2] = array(
164
-						0	=> apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ),
164
+						0	=> apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')),
165 165
 						1	=> tribe_community_events_list_events_link( ),
166 166
 					);
167 167
 				} else {
168 168
 					$new_crumbs[2] = array(
169
-						'text'	=> apply_filters( 'tribe_ce_submit_event_page_title', __( 'My Events', 'lsx' ) ),
169
+						'text'	=> apply_filters('tribe_ce_submit_event_page_title', __('My Events', 'lsx')),
170 170
 						'url'	=> tribe_community_events_list_events_link( ),
171 171
 					);
172 172
 				}
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 		}
180 180
 		return $crumbs;
181 181
 	}
182
-	add_filter( 'wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1 );
183
-	add_filter( 'woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1 );
182
+	add_filter('wpseo_breadcrumb_links', 'lsx_tec_breadcrumb_filter', 30, 1);
183
+	add_filter('woocommerce_get_breadcrumb', 'lsx_tec_breadcrumb_filter', 30, 1);
184 184
 
185 185
 endif;
Please login to merge, or discard this patch.