Passed
Push — add/multiplan ( dea22a...7aa48d )
by Virginia
10:43
created
includes/functions.php 1 patch
Spacing   +122 added lines, -122 removed lines patch added patch discarded remove patch
@@ -16,24 +16,24 @@  discard block
 block discarded – undo
16 16
  * @param boolean $single
17 17
  * @return boolean
18 18
  */
19
-function has_attached_post( $post_id = '', $meta_key = '', $single = true ) {
19
+function has_attached_post($post_id = '', $meta_key = '', $single = true) {
20 20
 	$has_post = false;
21
-	if ( '' === $post_id ) {
21
+	if ('' === $post_id) {
22 22
 		$post_id = get_the_ID();
23 23
 	}
24
-	$items = get_post_meta( $post_id, $meta_key, $single );
25
-	if ( '' !== $items && false !== $items && 0 !== $items ) {
26
-		if ( ! is_array( $items ) ) {
27
-			$items = array( $items );
24
+	$items = get_post_meta($post_id, $meta_key, $single);
25
+	if ('' !== $items && false !== $items && 0 !== $items) {
26
+		if ( ! is_array($items)) {
27
+			$items = array($items);
28 28
 		}
29
-		$items = check_posts_exist( $items );
30
-		if ( ! empty( $items ) ) {
29
+		$items = check_posts_exist($items);
30
+		if ( ! empty($items)) {
31 31
 			$has_post = true;
32 32
 		}
33 33
 	} else {
34 34
 		// Check for defaults.
35
-		$options = get_option( 'all' );
36
-		if ( isset( $options[ $meta_key ] ) && '' !== $options[ $meta_key ] && ! empty( $options[ $meta_key ] ) ) {
35
+		$options = get_option('all');
36
+		if (isset($options[$meta_key]) && '' !== $options[$meta_key] && ! empty($options[$meta_key])) {
37 37
 			$has_post = true;
38 38
 		}
39 39
 	}
@@ -47,17 +47,17 @@  discard block
 block discarded – undo
47 47
  * @param  mixed  $default Optional default value
48 48
  * @return mixed           Option value
49 49
  */
50
-function get_option( $key = '', $default = false ) {
51
-	if ( function_exists( 'cmb2_get_option' ) ) {
52
-		return cmb2_get_option( 'lsx_health_plan_options', $key, $default );
50
+function get_option($key = '', $default = false) {
51
+	if (function_exists('cmb2_get_option')) {
52
+		return cmb2_get_option('lsx_health_plan_options', $key, $default);
53 53
 	}
54 54
 	// Fallback to get_option if CMB2 is not loaded yet.
55
-	$opts = \get_option( 'lsx_health_plan_options', $default );
55
+	$opts = \get_option('lsx_health_plan_options', $default);
56 56
 	$val  = $default;
57
-	if ( 'all' === $key ) {
57
+	if ('all' === $key) {
58 58
 		$val = $opts;
59
-	} elseif ( is_array( $opts ) && array_key_exists( $key, $opts ) && false !== $opts[ $key ] ) {
60
-		$val = $opts[ $key ];
59
+	} elseif (is_array($opts) && array_key_exists($key, $opts) && false !== $opts[$key]) {
60
+		$val = $opts[$key];
61 61
 	}
62 62
 	return $val;
63 63
 }
@@ -69,54 +69,54 @@  discard block
 block discarded – undo
69 69
  * @param  mixed  $default Optional default value
70 70
  * @return mixed           Option value
71 71
  */
72
-function get_downloads( $type = 'all', $post_id = '' ) {
72
+function get_downloads($type = 'all', $post_id = '') {
73 73
 	$lsx_health_plan = \lsx_health_plan();
74 74
 	$post_types      = $lsx_health_plan->get_post_types();
75
-	if ( '' === $post_id ) {
75
+	if ('' === $post_id) {
76 76
 		$post_id = get_the_ID();
77 77
 	}
78 78
 	$downloads = array();
79
-	$options   = get_option( 'all' );
79
+	$options   = get_option('all');
80 80
 
81
-	foreach ( $post_types as $post_type ) {
82
-		if ( 'all' === $type || in_array( $type, $post_types, true ) ) {
81
+	foreach ($post_types as $post_type) {
82
+		if ('all' === $type || in_array($type, $post_types, true)) {
83 83
 
84 84
 			// Get the default downloads for this post type.
85 85
 			$default_downloads = array();
86 86
 			$new_downloads     = array();
87
-			if ( isset( $options[ 'download_' . $post_type ] ) ) {
88
-				if ( is_array( $options[ 'download_' . $post_type ] ) ) {
89
-					$default_downloads = $options[ 'download_' . $post_type ];
87
+			if (isset($options['download_' . $post_type])) {
88
+				if (is_array($options['download_' . $post_type])) {
89
+					$default_downloads = $options['download_' . $post_type];
90 90
 				} else {
91
-					$default_downloads[] = $options[ 'download_' . $post_type ];
91
+					$default_downloads[] = $options['download_' . $post_type];
92 92
 				}
93 93
 			}
94 94
 
95
-			if ( 'page' === $post_type ) {
95
+			if ('page' === $post_type) {
96 96
 				$key = 'plan_warmup';
97 97
 			} else {
98 98
 				$key = 'connected_' . $post_type . 's';
99 99
 			}
100 100
 
101
-			$connected_items = get_post_meta( $post_id, $key, true );
102
-			if ( ! empty( $connected_items ) ) {
103
-				foreach ( $connected_items as $connected_item ) {
104
-					$current_downloads = get_post_meta( $connected_item, 'connected_downloads', true );
105
-					if ( false !== $current_downloads && ! empty( $current_downloads ) ) {
106
-						$new_downloads = array_merge( $new_downloads, $current_downloads );
101
+			$connected_items = get_post_meta($post_id, $key, true);
102
+			if ( ! empty($connected_items)) {
103
+				foreach ($connected_items as $connected_item) {
104
+					$current_downloads = get_post_meta($connected_item, 'connected_downloads', true);
105
+					if (false !== $current_downloads && ! empty($current_downloads)) {
106
+						$new_downloads = array_merge($new_downloads, $current_downloads);
107 107
 					}
108 108
 				}
109 109
 			}
110 110
 
111
-			if ( ! empty( $new_downloads ) ) {
112
-				$downloads = array_merge( $downloads, $new_downloads );
113
-			} elseif ( ! empty( $default_downloads ) ) {
114
-				$downloads = array_merge( $downloads, $default_downloads );
111
+			if ( ! empty($new_downloads)) {
112
+				$downloads = array_merge($downloads, $new_downloads);
113
+			} elseif ( ! empty($default_downloads)) {
114
+				$downloads = array_merge($downloads, $default_downloads);
115 115
 			}
116
-			$downloads = array_unique( $downloads );
116
+			$downloads = array_unique($downloads);
117 117
 		}
118 118
 	}
119
-	$downloads = check_posts_exist( $downloads );
119
+	$downloads = check_posts_exist($downloads);
120 120
 	return $downloads;
121 121
 }
122 122
 
@@ -126,11 +126,11 @@  discard block
 block discarded – undo
126 126
  * @param  string $week    Week name 'week-1'.
127 127
  * @return array           an array of the downloads or empty.
128 128
  */
129
-function get_weekly_downloads( $week = '' ) {
129
+function get_weekly_downloads($week = '') {
130 130
 	$downloads = array();
131
-	if ( '' !== $week ) {
132
-		$saved_downloads = get_transient( 'lsx_hp_weekly_downloads_' . $week );
133
-		if ( false !== $saved_downloads && ! empty( $saved_downloads ) ) {
131
+	if ('' !== $week) {
132
+		$saved_downloads = get_transient('lsx_hp_weekly_downloads_' . $week);
133
+		if (false !== $saved_downloads && ! empty($saved_downloads)) {
134 134
 			$downloads = $saved_downloads;
135 135
 		} else {
136 136
 			$args = array(
@@ -144,17 +144,17 @@  discard block
 block discarded – undo
144 144
 					array(
145 145
 						'taxonomy' => 'dlm_download_category',
146 146
 						'field'    => 'slug',
147
-						'terms'    => array( $week ),
147
+						'terms'    => array($week),
148 148
 					),
149 149
 				),
150 150
 			);
151
-			$download_query = new \WP_Query( $args );
152
-			if ( $download_query->have_posts() ) {
151
+			$download_query = new \WP_Query($args);
152
+			if ($download_query->have_posts()) {
153 153
 				$downloads = $download_query->posts;
154 154
 			}
155 155
 		}
156 156
 	}
157
-	$downloads = check_posts_exist( $downloads );
157
+	$downloads = check_posts_exist($downloads);
158 158
 	return $downloads;
159 159
 }
160 160
 
@@ -164,20 +164,20 @@  discard block
 block discarded – undo
164 164
  * @param array $post_ids
165 165
  * @return void
166 166
  */
167
-function check_posts_exist( $post_ids = array() ) {
167
+function check_posts_exist($post_ids = array()) {
168 168
 	$new_ids = array();
169 169
 	global $wpdb;
170
-	if ( is_array( $post_ids ) && ! empty( $post_ids ) ) {
171
-		$post_ids = "'" . implode( "','", $post_ids ) . "'";
170
+	if (is_array($post_ids) && ! empty($post_ids)) {
171
+		$post_ids = "'" . implode("','", $post_ids) . "'";
172 172
 		$query    = "
173 173
 			SELECT `ID` 
174 174
 			FROM `{$wpdb->posts}`
175 175
 			WHERE `ID` IN ({$post_ids})
176 176
 			AND `post_status` != 'trash'
177 177
 		";
178
-		$results = $wpdb->get_results( $query ); // WPCS: unprepared SQL
179
-		if ( ! empty( $results ) ) {
180
-			$new_ids = wp_list_pluck( $results, 'ID' );
178
+		$results = $wpdb->get_results($query); // WPCS: unprepared SQL
179
+		if ( ! empty($results)) {
180
+			$new_ids = wp_list_pluck($results, 'ID');
181 181
 		}
182 182
 	}
183 183
 	return $new_ids;
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
  * @param string $body
192 192
  * @return void
193 193
  */
194
-function register_modal( $id = '', $title = '', $body = '' ) {
194
+function register_modal($id = '', $title = '', $body = '') {
195 195
 	lsx_health_plan()->frontend->modals->register_modal(
196 196
 		array(
197 197
 			'title' => $title,
@@ -207,36 +207,36 @@  discard block
 block discarded – undo
207 207
  * @param array $args
208 208
  * @return void
209 209
  */
210
-function output_modal( $args = array() ) {
210
+function output_modal($args = array()) {
211 211
 	$defaults = array(
212 212
 		'id'    => '',
213 213
 		'title' => '',
214 214
 		'body'  => '',
215 215
 	);
216
-	$args     = wp_parse_args( $args, $defaults );
216
+	$args = wp_parse_args($args, $defaults);
217 217
 	?>
218 218
 	<!-- Modal -->
219
-	<div class="modal fade lsx-health-plan-modal" id="<?php echo esc_html( $args['id'] ); ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo esc_html( $args['id'] ); ?>"  aria-hidden="true">
219
+	<div class="modal fade lsx-health-plan-modal" id="<?php echo esc_html($args['id']); ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo esc_html($args['id']); ?>"  aria-hidden="true">
220 220
 		<div class="modal-dialog" role="document">
221 221
 			<div class="modal-content">
222 222
 			<button type="button" class="close" data-dismiss="modal">&times;</button>			
223 223
 				<div class="modal-header">
224 224
 					<?php
225
-					if ( '' !== $args['title'] ) {
226
-						echo wp_kses_post( '<h2>' . $args['title'] . '</h2>' );
225
+					if ('' !== $args['title']) {
226
+						echo wp_kses_post('<h2>' . $args['title'] . '</h2>');
227 227
 					}
228 228
 					?>
229 229
 				</div>
230 230
 				<div class="modal-body">
231 231
 				<?php
232
-				if ( '' !== $args['body'] ) {
232
+				if ('' !== $args['body']) {
233 233
 					$allowed_html = array(
234 234
 						'iframe' => array(
235 235
 							'data-src'        => array(),
236 236
 							'src'             => array(),
237 237
 							'width'           => array(),
238 238
 							'height'          => array(),
239
-							'frameBorder'     => array( '0' ),
239
+							'frameBorder'     => array('0'),
240 240
 							'class'           => array(),
241 241
 							'allowFullScreen' => array(),
242 242
 							'style'           => array(),
@@ -245,10 +245,10 @@  discard block
 block discarded – undo
245 245
 							'class' => array(),
246 246
 						),
247 247
 					);
248
-					if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
249
-						echo wp_kses_post( $args['body'] );
248
+					if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) {
249
+						echo wp_kses_post($args['body']);
250 250
 					} else {
251
-						echo wp_kses( $args['body'], $allowed_html );
251
+						echo wp_kses($args['body'], $allowed_html);
252 252
 					}
253 253
 				}
254 254
 				?>
@@ -266,11 +266,11 @@  discard block
 block discarded – undo
266 266
  * @param [type] $embed
267 267
  * @return void
268 268
  */
269
-function get_video_url( $embed ) {
269
+function get_video_url($embed) {
270 270
 	$url = '';
271
-	if ( false !== stripos( $embed, '<iframe' ) ) {
272
-		preg_match( '/src="([^"]+)"/', $embed, $match );
273
-		if ( is_array( $match ) && isset( $match[1] ) ) {
271
+	if (false !== stripos($embed, '<iframe')) {
272
+		preg_match('/src="([^"]+)"/', $embed, $match);
273
+		if (is_array($match) && isset($match[1])) {
274 274
 			$url = '<iframe data-src="' . $match[1] . '" style="border: 0;" frameBorder="0" class="giphy-embed" allowFullScreen height="300" width="100%"></iframe>';
275 275
 		} else {
276 276
 			$url = $embed;
@@ -288,15 +288,15 @@  discard block
 block discarded – undo
288 288
  * @param array $post_ids
289 289
  * @return boolean
290 290
  */
291
-function is_week_complete( $term_id = false, $section_keys = array(), $group_title = '' ) {
291
+function is_week_complete($term_id = false, $section_keys = array(), $group_title = '') {
292 292
 	$return = false;
293
-	if ( ! empty( $section_keys ) ) {
294
-		$group_count = count( $section_keys );
295
-		foreach ( $section_keys as &$pid ) {
296
-			$pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id( $pid ) . '_complete';
293
+	if ( ! empty($section_keys)) {
294
+		$group_count = count($section_keys);
295
+		foreach ($section_keys as &$pid) {
296
+			$pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id($pid) . '_complete';
297 297
 		}
298
-		$days_complete = get_meta_amounts( $section_keys );
299
-		if ( (int) $group_count === (int) $days_complete ) {
298
+		$days_complete = get_meta_amounts($section_keys);
299
+		if ((int) $group_count === (int) $days_complete) {
300 300
 			$return = true;
301 301
 		}
302 302
 	}
@@ -310,20 +310,20 @@  discard block
 block discarded – undo
310 310
  * @param string $key
311 311
  * @return void
312 312
  */
313
-function get_meta_amounts( $post_ids = array() ) {
313
+function get_meta_amounts($post_ids = array()) {
314 314
 	global $wpdb;
315 315
 	$amount       = 0;
316 316
 	$current_user = wp_get_current_user();
317
-	if ( false !== $current_user && ! empty( $post_ids ) ) {
318
-		$post_ids = "'" . implode( "','", $post_ids ) . "'";
317
+	if (false !== $current_user && ! empty($post_ids)) {
318
+		$post_ids = "'" . implode("','", $post_ids) . "'";
319 319
 		$query    = "
320 320
 			SELECT COUNT(`meta_value`) 
321 321
 			FROM `{$wpdb->usermeta}`
322 322
 			WHERE `meta_key` IN ({$post_ids})
323 323
 			AND `user_id` = '{$current_user->ID}'
324 324
 		";
325
-		$results  = $wpdb->get_var( $query ); // WPCS: unprepared SQL
326
-		if ( ! empty( $results ) ) {
325
+		$results = $wpdb->get_var($query); // WPCS: unprepared SQL
326
+		if ( ! empty($results)) {
327 327
 			$amount = $results;
328 328
 		}
329 329
 	}
@@ -336,27 +336,27 @@  discard block
 block discarded – undo
336 336
  * @param [type] $post
337 337
  * @return void
338 338
  */
339
-function hp_get_plan_type_meta( $post ) {
339
+function hp_get_plan_type_meta($post) {
340 340
 	$plan_meta = '';
341 341
 
342
-	$term_obj_list = get_the_terms( $post->ID, 'plan-type' );
343
-	if ( false !== $term_obj_list ) {
342
+	$term_obj_list = get_the_terms($post->ID, 'plan-type');
343
+	if (false !== $term_obj_list) {
344 344
 		$terms_string = '';
345
-		$terms_ids    = wp_list_pluck( $term_obj_list, 'term_id' );
345
+		$terms_ids    = wp_list_pluck($term_obj_list, 'term_id');
346 346
 		
347
-		foreach ( $term_obj_list as $term ) {
348
-			$term_link = get_term_link( $term );
349
-			$term_name = '<a href="' . $term_link . '">' .$term->name . '<span>, </span></a>';
347
+		foreach ($term_obj_list as $term) {
348
+			$term_link = get_term_link($term);
349
+			$term_name = '<a href="' . $term_link . '">' . $term->name . '<span>, </span></a>';
350 350
 			
351 351
 			$terms_string .= $term_name;
352 352
 		}
353 353
 		
354
-		foreach ( $terms_ids as $terms_id ) {
355
-			$term_thumbnail_id = get_term_meta( $terms_id, 'thumbnail', true );
356
-			$img               = wp_get_attachment_image_src( $term_thumbnail_id, 'thumbnail' );
357
-			if ( ! empty( $img ) ) {
354
+		foreach ($terms_ids as $terms_id) {
355
+			$term_thumbnail_id = get_term_meta($terms_id, 'thumbnail', true);
356
+			$img               = wp_get_attachment_image_src($term_thumbnail_id, 'thumbnail');
357
+			if ( ! empty($img)) {
358 358
 				$image_url = $img[0];
359
-				$img       = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $image_url ) . '" />';
359
+				$img       = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($image_url) . '" />';
360 360
 			}
361 361
 
362 362
 			$plan_meta .= $img;
@@ -371,14 +371,14 @@  discard block
 block discarded – undo
371 371
 /**
372 372
  * Limit media library access
373 373
  */
374
-function set_only_author( $wp_query ) {
374
+function set_only_author($wp_query) {
375 375
 	global $current_user;
376
-	if ( is_admin() && ! current_user_can( 'edit_others_posts' ) ) {
377
-		$wp_query->set( 'administrator', $current_user->ID );
378
-		add_filter( 'views_upload', 'fix_media_counts' );
376
+	if (is_admin() && ! current_user_can('edit_others_posts')) {
377
+		$wp_query->set('administrator', $current_user->ID);
378
+		add_filter('views_upload', 'fix_media_counts');
379 379
 	}
380 380
 }
381
-add_action( 'pre_get_posts', '\lsx_health_plan\functions\set_only_author' );
381
+add_action('pre_get_posts', '\lsx_health_plan\functions\set_only_author');
382 382
 
383 383
 /**
384 384
  * Outputs an excerpt even if there is not excerpt.
@@ -386,11 +386,11 @@  discard block
 block discarded – undo
386 386
  * @param [type] $post_id
387 387
  * @return void
388 388
  */
389
-function hp_excerpt( $post_id ) {
390
-	if ( ! has_excerpt( $post_id ) ) {
391
-		$content = wp_trim_words( get_post_field( 'post_content', $post_id ), 10 );
389
+function hp_excerpt($post_id) {
390
+	if ( ! has_excerpt($post_id)) {
391
+		$content = wp_trim_words(get_post_field('post_content', $post_id), 10);
392 392
 	} else {
393
-		$content = get_the_excerpt( $post_id );
393
+		$content = get_the_excerpt($post_id);
394 394
 	}
395 395
 	return $content;
396 396
 }
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
  * @param string $columns
402 402
  * @return void
403 403
  */
404
-function column_class( $columns = '3' ) {
404
+function column_class($columns = '3') {
405 405
 	$cols  = '';
406 406
 	$cols .= '5' === $columns ? '15' : 12 / $columns;
407 407
 	return $cols;
@@ -413,16 +413,16 @@  discard block
 block discarded – undo
413 413
  * @param string $workout
414 414
  * @return void
415 415
  */
416
-function get_exercises_by_workout( $workout = '' ) {
416
+function get_exercises_by_workout($workout = '') {
417 417
 	$exercises = array();
418 418
 	$i               = 1;
419 419
 	$section_counter = 6;
420
-	while ( $i <= $section_counter ) {
420
+	while ($i <= $section_counter) {
421 421
 		$group_name = 'workout_section_' . $i;
422
-		$groups     = get_post_meta( $workout, $group_name, true );
423
-		if ( ! empty( $groups ) ) {
424
-			foreach ( $groups as $group ) {
425
-				if ( isset( $group['connected_exercises'] ) ) {
422
+		$groups     = get_post_meta($workout, $group_name, true);
423
+		if ( ! empty($groups)) {
424
+			foreach ($groups as $group) {
425
+				if (isset($group['connected_exercises'])) {
426 426
 					$exercises[] = $group['connected_exercises'];
427 427
 				}
428 428
 			}
@@ -439,19 +439,19 @@  discard block
 block discarded – undo
439 439
  * @param  int $plan_id
440 440
  * @return int
441 441
  */
442
-function get_progress( $plan_id = false ) {
442
+function get_progress($plan_id = false) {
443 443
 	$progress = 0;
444 444
 	$complete = array();
445 445
 	$count    = 0;
446
-	if ( false !== $plan_id &&  \lsx_health_plan\functions\plan\has_sections( $plan_id ) ) {
446
+	if (false !== $plan_id && \lsx_health_plan\functions\plan\has_sections($plan_id)) {
447 447
 		$sections = \lsx_health_plan\functions\plan\get_sections();
448
-		$all_count = count( $sections );
449
-		foreach ( $sections as $section_key => $section_values ) {
450
-			if ( lsx_health_plan_is_day_complete( $plan_id, $section_values['title'] ) ) {
448
+		$all_count = count($sections);
449
+		foreach ($sections as $section_key => $section_values) {
450
+			if (lsx_health_plan_is_day_complete($plan_id, $section_values['title'])) {
451 451
 				$complete[] = true;
452 452
 			}
453 453
 		}
454
-		$progress = (int) count( $complete ) / (int) $all_count * 100;
454
+		$progress = (int) count($complete) / (int) $all_count * 100;
455 455
 	}
456 456
 	return $progress;
457 457
 }
@@ -469,15 +469,15 @@  discard block
 block discarded – undo
469 469
 	$post_type = get_queried_object()->taxonomy;
470 470
 	$post_type = $wp_taxonomies[$post_type]->object_type;
471 471
 
472
-	if ( is_tax() ) {
472
+	if (is_tax()) {
473 473
 		?>
474 474
 		<div class="archive-category-title hp-archive-category-title">
475
-			<a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( $post_type[0] ) ) ); ?>"><?php echo esc_html__( 'Back To ', 'lsx' ) . esc_html( $post_type[0] ) . 's'; ?></a>
475
+			<a class="back-to-blog" href="<?php echo (esc_url(get_post_type_archive_link($post_type[0]))); ?>"><?php echo esc_html__('Back To ', 'lsx') . esc_html($post_type[0]) . 's'; ?></a>
476 476
 		</div>
477 477
 		<?php
478 478
 	}
479 479
 }
480
-add_action( 'lsx_content_wrap_before', '\lsx_health_plan\functions\hp_back_archive_link', 20 );
480
+add_action('lsx_content_wrap_before', '\lsx_health_plan\functions\hp_back_archive_link', 20);
481 481
 
482 482
 /**
483 483
  * Returns an array.
@@ -485,11 +485,11 @@  discard block
 block discarded – undo
485 485
  * @param  mixed $item
486 486
  * @return array
487 487
  */
488
-function prep_array( $item ) {
489
-	if ( ! is_array( $item ) ) {
490
-		$item = explode( ',', $item );
491
-		if ( ! is_array( $item ) ) {
492
-			$item = array( $item );
488
+function prep_array($item) {
489
+	if ( ! is_array($item)) {
490
+		$item = explode(',', $item);
491
+		if ( ! is_array($item)) {
492
+			$item = array($item);
493 493
 		}
494 494
 	}
495 495
 	return $item;
Please login to merge, or discard this patch.
templates/tab-content-workout.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@  discard block
 block discarded – undo
8 8
 global $shortcode_args;
9 9
 
10 10
 // Getting translated endpoint.
11
-$archive_workout = \lsx_health_plan\functions\get_option( 'endpoint_workout_archive', 'workout' );
12
-$workout         = \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' );
11
+$archive_workout = \lsx_health_plan\functions\get_option('endpoint_workout_archive', 'workout');
12
+$workout         = \lsx_health_plan\functions\get_option('endpoint_workout', 'workout');
13 13
 
14
-$connected_articles = get_post_meta( get_the_ID(), ( $workout . '_connected_articles' ), true );
14
+$connected_articles = get_post_meta(get_the_ID(), ($workout . '_connected_articles'), true);
15 15
 
16 16
 ?>
17 17
 
@@ -29,29 +29,29 @@  discard block
 block discarded – undo
29 29
 	<div class="entry-content">
30 30
 		<div class="single-plan-inner workout-content">
31 31
 			<?php
32
-			if ( is_singular( 'workout' ) ) { ?>
32
+			if (is_singular('workout')) { ?>
33 33
 				<div class="single-plan-section-title workout title-lined">
34
-					<?php lsx_get_svg_icon( 'work.svg' ); ?>
34
+					<?php lsx_get_svg_icon('work.svg'); ?>
35 35
 					<h2><?php the_title(); ?></h2>
36
-					<?php if ( class_exists( 'LSX_Sharing' ) ) {
36
+					<?php if (class_exists('LSX_Sharing')) {
37 37
 						lsx_content_sharing();
38 38
 					} ?>
39 39
 				</div>
40 40
 			<?php } else { ?>
41 41
 				<div class="single-plan-section-title workout title-lined">
42
-					<?php lsx_get_svg_icon( 'work.svg' ); ?>
43
-					<h2><?php esc_html_e( 'My Workout', 'lsx-health-plan' ); ?></h2>
42
+					<?php lsx_get_svg_icon('work.svg'); ?>
43
+					<h2><?php esc_html_e('My Workout', 'lsx-health-plan'); ?></h2>
44 44
 				</div>
45 45
 			<?php } ?>
46 46
 			<?php
47
-			if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) {
47
+			if (lsx_health_plan_has_warmup() && ( ! is_singular('workout'))) {
48 48
 				?>
49 49
 				<div class="workout-instructions">
50 50
 					<div class="row">
51 51
 						<div class="col-md-12">
52 52
 							<div class="content-intro">
53
-								<h3><?php esc_html_e( "Don't forget your warm up!", 'lsx-health-plan' ); ?></h3>
54
-								<p><?php esc_html_e( 'Be sure to do the warm-up before every workout session.', 'lsx-health-plan' ); ?></p>
53
+								<h3><?php esc_html_e("Don't forget your warm up!", 'lsx-health-plan'); ?></h3>
54
+								<p><?php esc_html_e('Be sure to do the warm-up before every workout session.', 'lsx-health-plan'); ?></p>
55 55
 							</div>
56 56
 						</div>
57 57
 					</div>
@@ -67,12 +67,12 @@  discard block
 block discarded – undo
67 67
 	<?php lsx_entry_bottom(); ?>
68 68
 
69 69
 </article><!-- #post-## -->
70
-<?php if ( is_singular( $workout ) ) { ?>
70
+<?php if (is_singular($workout)) { ?>
71 71
 	<div  class="back-plan-btn">
72
-		<a class="btn" href="/<?php echo $archive_workout; ?>"><?php esc_html_e( 'Back to workouts', 'lsx-health-plan' ); ?></a>
72
+		<a class="btn" href="/<?php echo $archive_workout; ?>"><?php esc_html_e('Back to workouts', 'lsx-health-plan'); ?></a>
73 73
 	</div>
74 74
 <?php } ?>
75 75
 <?php
76
-if ( ! empty( $connected_articles ) ) {
77
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
76
+if ( ! empty($connected_articles)) {
77
+	lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan'));
78 78
 }
Please login to merge, or discard this patch.
templates/tab-content-warm-up.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -6,10 +6,10 @@  discard block
 block discarded – undo
6 6
  */
7 7
 global $group_name, $connected_workouts, $shortcode_args;
8 8
 
9
-$warm_up = get_post_meta( get_the_ID(), 'plan_warmup', true );
10
-if ( false === $warm_up || '' === $warm_up ) {
11
-	$options = \lsx_health_plan\functions\get_option( 'all' );
12
-	if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) {
9
+$warm_up = get_post_meta(get_the_ID(), 'plan_warmup', true);
10
+if (false === $warm_up || '' === $warm_up) {
11
+	$options = \lsx_health_plan\functions\get_option('all');
12
+	if (isset($options['plan_warmup']) && '' !== $options['plan_warmup'] && ! empty($options['plan_warmup'])) {
13 13
 		$warm_up = $options['plan_warmup'];
14 14
 	}
15 15
 }
@@ -18,12 +18,12 @@  discard block
 block discarded – undo
18 18
 <div class="warmup-container">
19 19
 <?php
20 20
 
21
-if ( false !== $warm_up && '' !== $warm_up ) {
22
-	if ( ! is_array( $warm_up ) ) {
23
-		$warm_up = array( $warm_up );
21
+if (false !== $warm_up && '' !== $warm_up) {
22
+	if ( ! is_array($warm_up)) {
23
+		$warm_up = array($warm_up);
24 24
 	}
25 25
 
26
-	$warmup_type  = array( 'page', 'workout', 'exercise' );
26
+	$warmup_type  = array('page', 'workout', 'exercise');
27 27
 	$warmup_query = new WP_Query(
28 28
 		array(
29 29
 			'post__in'  => $warm_up,
@@ -31,12 +31,12 @@  discard block
 block discarded – undo
31 31
 		)
32 32
 	);
33 33
 
34
-	if ( $warmup_query->have_posts() ) {
35
-		while ( $warmup_query->have_posts() ) {
34
+	if ($warmup_query->have_posts()) {
35
+		while ($warmup_query->have_posts()) {
36 36
 			$warmup_query->the_post();
37 37
 			lsx_entry_before();
38
-			if ( 'workout' === get_post_type() ) {
39
-				$connected_workouts = array( get_the_ID() );
38
+			if ('workout' === get_post_type()) {
39
+				$connected_workouts = array(get_the_ID());
40 40
 				?>
41 41
 				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
42 42
 					<?php lsx_entry_top(); ?>
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
 					<div class="entry-content">
47 47
 						<div class="single-plan-inner warmup-content">
48 48
 							<div class="single-plan-section-title warmup-plan title-lined">
49
-								<?php lsx_get_svg_icon( 'warm.svg' ); ?>
50
-								<h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2>
49
+								<?php lsx_get_svg_icon('warm.svg'); ?>
50
+								<h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2>
51 51
 							</div>
52 52
 						</div>
53 53
 					</div><!-- .entry-content -->
@@ -62,17 +62,17 @@  discard block
 block discarded – undo
62 62
 					<div class="entry-content">
63 63
 						<div class="single-plan-inner warmup-content">
64 64
 							<div class="single-plan-section-title warmup-plan title-lined">
65
-								<?php lsx_get_svg_icon( 'warm.svg' ); ?>
66
-								<h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2>
65
+								<?php lsx_get_svg_icon('warm.svg'); ?>
66
+								<h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2>
67 67
 							</div>
68 68
 						<?php
69 69
 							the_content();
70
-							wp_link_pages( array(
70
+							wp_link_pages(array(
71 71
 								'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
72 72
 								'after'       => '</div></div>',
73 73
 								'link_before' => '<span>',
74 74
 								'link_after'  => '</span>',
75
-							) );
75
+							));
76 76
 						?>
77 77
 						</div>
78 78
 					</div><!-- .entry-content -->
Please login to merge, or discard this patch.