Passed
Push — add/multiplan ( 6df1c3...cc23c7 )
by Warwick
07:00 queued 02:56
created
templates/content-plan.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,20 +24,20 @@
 block discarded – undo
24 24
 		<?php
25 25
 			the_content();
26 26
 
27
-			wp_link_pages( array(
27
+			wp_link_pages(array(
28 28
 				'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
29 29
 				'after'       => '</div></div>',
30 30
 				'link_before' => '<span>',
31 31
 				'link_after'  => '</span>',
32
-			) );
32
+			));
33 33
 		?>
34 34
 		</div>
35 35
 	</div><!-- .entry-content -->
36
-	<?php if ( null === $shortcode_args ) { ?>
37
-		<?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?>
36
+	<?php if (null === $shortcode_args) { ?>
37
+		<?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?>
38 38
 			<div class="tip-row extras-box">
39 39
 				<div class="tip-right">
40
-					<?php echo do_shortcode( '[lsx_health_plan_featured_tips_block' ); ?>
40
+					<?php echo do_shortcode('[lsx_health_plan_featured_tips_block'); ?>
41 41
 				</div>
42 42
 			</div>
43 43
 		<?php } ?>
Please login to merge, or discard this patch.
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,15 +22,15 @@
 block discarded – undo
22 22
 	<div class="entry-content">
23 23
 		<div class="overview">
24 24
 		<?php
25
-			the_content();
26
-
27
-			wp_link_pages( array(
28
-				'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
29
-				'after'       => '</div></div>',
30
-				'link_before' => '<span>',
31
-				'link_after'  => '</span>',
32
-			) );
33
-		?>
25
+               the_content();
26
+
27
+               wp_link_pages( array(
28
+                    'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
29
+                    'after'       => '</div></div>',
30
+                    'link_before' => '<span>',
31
+                    'link_after'  => '</span>',
32
+               ) );
33
+          ?>
34 34
 		</div>
35 35
 	</div><!-- .entry-content -->
36 36
 	<?php if ( null === $shortcode_args ) { ?>
Please login to merge, or discard this patch.
templates/partials/meal-plans.php 2 patches
Spacing   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@  discard block
 block discarded – undo
6 6
  */
7 7
 global $connected_meals, $shortcode_args;
8 8
 
9
-if ( is_singular( 'plan' ) ) {
10
-	$section_key = get_query_var( 'section' );
11
-	if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) {
12
-		$section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key );
13
-		if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) {
14
-			$connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] );
9
+if (is_singular('plan')) {
10
+	$section_key = get_query_var('section');
11
+	if ('' !== $section_key && \lsx_health_plan\functions\plan\has_sections()) {
12
+		$section_info = \lsx_health_plan\functions\plan\get_section_info($section_key);
13
+		if (isset($section_info['connected_meals']) && '' !== $section_info['connected_meals']) {
14
+			$connected_meals = \lsx_health_plan\functions\prep_array($section_info['connected_meals']);
15 15
 		}
16 16
 	}
17 17
 }
18 18
 
19 19
 // Check for any shortcode overrides.
20
-if ( null !== $shortcode_args && isset( $shortcode_args['include'] ) ) {
21
-	$connected_meals = array( get_the_ID() );
20
+if (null !== $shortcode_args && isset($shortcode_args['include'])) {
21
+	$connected_meals = array(get_the_ID());
22 22
 }
23 23
 ?>
24 24
 
@@ -27,65 +27,65 @@  discard block
 block discarded – undo
27 27
 	<?php
28 28
 
29 29
 	// Looking for meals.
30
-	if ( empty( $connected_meals ) ) {
31
-		$connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true );
30
+	if (empty($connected_meals)) {
31
+		$connected_meals = get_post_meta(get_the_ID(), 'connected_meals', true);
32 32
 
33
-		if ( empty( $connected_meals ) ) {
34
-			$options = \lsx_health_plan\functions\get_option( 'all' );
35
-			if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) {
33
+		if (empty($connected_meals)) {
34
+			$options = \lsx_health_plan\functions\get_option('all');
35
+			if (isset($options['connected_meals']) && '' !== $options['connected_meals'] && ! empty($options['connected_meals'])) {
36 36
 				$connected_meals = $options['connected_meals'];
37
-				if ( ! array( $connected_meals ) ) {
38
-					$connected_meals = array( $connected_meals );
37
+				if ( ! array($connected_meals)) {
38
+					$connected_meals = array($connected_meals);
39 39
 				}
40 40
 			}
41 41
 		}
42 42
 	}
43 43
 
44 44
 	// This is for the meal single template.
45
-	if ( is_single() && is_singular( 'meal' ) ) {
46
-		$connected_meals = array( get_the_ID() );
45
+	if (is_single() && is_singular('meal')) {
46
+		$connected_meals = array(get_the_ID());
47 47
 	}
48 48
 
49 49
 	// Shoping list
50
-	$shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true );
51
-	if ( ! empty( $shopping_list ) ) {
50
+	$shopping_list = get_post_meta(get_the_ID(), 'meal_shopping_list', true);
51
+	if ( ! empty($shopping_list)) {
52 52
 		?>
53
-		<a class="btn border-btn btn-shopping" href="<?php echo esc_url( get_page_link( $shopping_list ) ); ?>" target="_blank"><?php esc_html_e( 'Download Shopping List', 'lsx-health-plan' ); ?><i class="fa fa-download" aria-hidden="true"></i></a>
53
+		<a class="btn border-btn btn-shopping" href="<?php echo esc_url(get_page_link($shopping_list)); ?>" target="_blank"><?php esc_html_e('Download Shopping List', 'lsx-health-plan'); ?><i class="fa fa-download" aria-hidden="true"></i></a>
54 54
 	<?php
55 55
 	}
56 56
 
57 57
 	// The top part
58
-	echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) );
58
+	echo wp_kses_post(wp_kses_post(lsx_health_plan_meal_main_content()));
59 59
 
60
-	if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) {
60
+	if (false !== $connected_meals && '' !== $connected_meals && ! empty($connected_meals)) {
61 61
 
62
-		$args  = array(
62
+		$args = array(
63 63
 			'orderby'   => 'date',
64 64
 			'order'     => 'DESC',
65 65
 			'post_type' => 'meal',
66 66
 			'post__in'  => $connected_meals,
67 67
 		);
68
-		$meals = new WP_Query( $args );
69
-		if ( $meals->have_posts() ) {
70
-			while ( $meals->have_posts() ) {
68
+		$meals = new WP_Query($args);
69
+		if ($meals->have_posts()) {
70
+			while ($meals->have_posts()) {
71 71
 				$meals->the_post();
72
-				$meal_id       = get_the_ID();
72
+				$meal_id = get_the_ID();
73 73
 				
74 74
 
75 75
 				// Breakfast.
76
-				$pre_breakfast_snack  = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true );
77
-				$breakfast            = get_post_meta( get_the_ID(), 'meal_breakfast', true );
78
-				$post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true );
76
+				$pre_breakfast_snack  = get_post_meta(get_the_ID(), 'meal_pre_breakfast_snack', true);
77
+				$breakfast            = get_post_meta(get_the_ID(), 'meal_breakfast', true);
78
+				$post_breakfast_snack = get_post_meta(get_the_ID(), 'meal_breakfast_snack', true);
79 79
 
80 80
 				// Lunch.
81
-				$pre_lunch_snack  = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true );
82
-				$lunch            = get_post_meta( get_the_ID(), 'meal_lunch', true );
83
-				$post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true );
81
+				$pre_lunch_snack  = get_post_meta(get_the_ID(), 'meal_pre_lunch_snack', true);
82
+				$lunch            = get_post_meta(get_the_ID(), 'meal_lunch', true);
83
+				$post_lunch_snack = get_post_meta(get_the_ID(), 'meal_lunch_snack', true);
84 84
 
85 85
 				// Dinner.
86
-				$pre_dinner_snack  = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true );
87
-				$dinner            = get_post_meta( get_the_ID(), 'meal_dinner', true );
88
-				$post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true );
86
+				$pre_dinner_snack  = get_post_meta(get_the_ID(), 'meal_pre_dinner_snack', true);
87
+				$dinner            = get_post_meta(get_the_ID(), 'meal_dinner', true);
88
+				$post_dinner_snack = get_post_meta(get_the_ID(), 'meal_dinner_snack', true);
89 89
 
90 90
 				//Main Meals Title
91 91
 				//echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>';
@@ -93,19 +93,19 @@  discard block
 block discarded – undo
93 93
 				<div class="row eating-row">
94 94
 					<div class="col-md-4 eating-column">
95 95
 					<?php
96
-					if ( ! empty( $pre_breakfast_snack ) ) {
97
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
98
-						echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) );
96
+					if ( ! empty($pre_breakfast_snack)) {
97
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
98
+						echo wp_kses_post(apply_filters('the_content', $pre_breakfast_snack));
99 99
 						echo '</div>';
100 100
 					}
101
-					if ( ! empty( $breakfast ) ) {
102
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>';
103
-						echo wp_kses_post( apply_filters( 'the_content', $breakfast ) );
101
+					if ( ! empty($breakfast)) {
102
+						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Breakfast', 'lsx-health-plan') . '</h3>';
103
+						echo wp_kses_post(apply_filters('the_content', $breakfast));
104 104
 						echo '</div>';
105 105
 					}
106
-					if ( ! empty( $post_breakfast_snack ) ) {
107
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
108
-						echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) );
106
+					if ( ! empty($post_breakfast_snack)) {
107
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
108
+						echo wp_kses_post(apply_filters('the_content', $post_breakfast_snack));
109 109
 						echo '</div>';
110 110
 					}
111 111
 
@@ -113,24 +113,24 @@  discard block
 block discarded – undo
113 113
 						'meal_id'   => $meal_id,
114 114
 						'meal_time' => 'breakfast',
115 115
 					);
116
-					lsx_hp_meal_plan_recipes( $args );
116
+					lsx_hp_meal_plan_recipes($args);
117 117
 					?>
118 118
 					</div>
119 119
 					<div class="col-md-4 eating-column">
120 120
 					<?php
121
-					if ( ! empty( $pre_lunch_snack ) ) {
122
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
123
-						echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) );
121
+					if ( ! empty($pre_lunch_snack)) {
122
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
123
+						echo wp_kses_post(apply_filters('the_content', $pre_lunch_snack));
124 124
 						echo '</div>';
125 125
 					}
126
-					if ( ! empty( $lunch ) ) {
127
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>';
128
-						echo wp_kses_post( apply_filters( 'the_content', $lunch ) );
126
+					if ( ! empty($lunch)) {
127
+						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Lunch', 'lsx-health-plan') . '</h3>';
128
+						echo wp_kses_post(apply_filters('the_content', $lunch));
129 129
 						echo '</div>';
130 130
 					}
131
-					if ( ! empty( $post_lunch_snack ) ) {
132
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
133
-						echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) );
131
+					if ( ! empty($post_lunch_snack)) {
132
+						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
133
+						echo wp_kses_post(apply_filters('the_content', $post_lunch_snack));
134 134
 						echo '</div>';
135 135
 					}
136 136
 
@@ -138,24 +138,24 @@  discard block
 block discarded – undo
138 138
 						'meal_id'   => $meal_id,
139 139
 						'meal_time' => 'lunch',
140 140
 					);
141
-					lsx_hp_meal_plan_recipes( $args );
141
+					lsx_hp_meal_plan_recipes($args);
142 142
 					?>
143 143
 					</div>
144 144
 					<div class="col-md-4 eating-column">
145 145
 						<?php
146
-						if ( ! empty( $pre_dinner_snack ) ) {
147
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
148
-							echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) );
146
+						if ( ! empty($pre_dinner_snack)) {
147
+							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
148
+							echo wp_kses_post(apply_filters('the_content', $pre_dinner_snack));
149 149
 							echo '</div>';
150 150
 						}
151
-						if ( ! empty( $dinner ) ) {
152
-							echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>';
153
-							echo wp_kses_post( apply_filters( 'the_content', $dinner ) );
151
+						if ( ! empty($dinner)) {
152
+							echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Dinner', 'lsx-health-plan') . '</h3>';
153
+							echo wp_kses_post(apply_filters('the_content', $dinner));
154 154
 							echo '</div>';
155 155
 						}
156
-						if ( ! empty( $post_dinner_snack ) ) {
157
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
158
-							echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) );
156
+						if ( ! empty($post_dinner_snack)) {
157
+							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>';
158
+							echo wp_kses_post(apply_filters('the_content', $post_dinner_snack));
159 159
 							echo '</div>';
160 160
 						}
161 161
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 							'meal_id'   => $meal_id,
164 164
 							'meal_time' => 'dinner',
165 165
 						);
166
-						lsx_hp_meal_plan_recipes( $args );
166
+						lsx_hp_meal_plan_recipes($args);
167 167
 						?>
168 168
 					</div>
169 169
 				</div>
Please login to merge, or discard this patch.
Indentation   +135 added lines, -135 removed lines patch added patch discarded remove patch
@@ -7,18 +7,18 @@  discard block
 block discarded – undo
7 7
 global $connected_meals, $shortcode_args;
8 8
 
9 9
 if ( is_singular( 'plan' ) ) {
10
-	$section_key = get_query_var( 'section' );
11
-	if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) {
12
-		$section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key );
13
-		if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) {
14
-			$connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] );
15
-		}
16
-	}
10
+     $section_key = get_query_var( 'section' );
11
+     if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) {
12
+          $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key );
13
+          if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) {
14
+               $connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] );
15
+          }
16
+     }
17 17
 }
18 18
 
19 19
 // Check for any shortcode overrides.
20 20
 if ( null !== $shortcode_args && isset( $shortcode_args['include'] ) ) {
21
-	$connected_meals = array( get_the_ID() );
21
+     $connected_meals = array( get_the_ID() );
22 22
 }
23 23
 ?>
24 24
 
@@ -26,152 +26,152 @@  discard block
 block discarded – undo
26 26
 
27 27
 	<?php
28 28
 
29
-	// Looking for meals.
30
-	if ( empty( $connected_meals ) ) {
31
-		$connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true );
32
-
33
-		if ( empty( $connected_meals ) ) {
34
-			$options = \lsx_health_plan\functions\get_option( 'all' );
35
-			if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) {
36
-				$connected_meals = $options['connected_meals'];
37
-				if ( ! array( $connected_meals ) ) {
38
-					$connected_meals = array( $connected_meals );
39
-				}
40
-			}
41
-		}
42
-	}
43
-
44
-	// This is for the meal single template.
45
-	if ( is_single() && is_singular( 'meal' ) ) {
46
-		$connected_meals = array( get_the_ID() );
47
-	}
48
-
49
-	// Shoping list
50
-	$shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true );
51
-	if ( ! empty( $shopping_list ) ) {
52
-		?>
29
+     // Looking for meals.
30
+     if ( empty( $connected_meals ) ) {
31
+          $connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true );
32
+
33
+          if ( empty( $connected_meals ) ) {
34
+               $options = \lsx_health_plan\functions\get_option( 'all' );
35
+               if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) {
36
+                    $connected_meals = $options['connected_meals'];
37
+                    if ( ! array( $connected_meals ) ) {
38
+                         $connected_meals = array( $connected_meals );
39
+                    }
40
+               }
41
+          }
42
+     }
43
+
44
+     // This is for the meal single template.
45
+     if ( is_single() && is_singular( 'meal' ) ) {
46
+          $connected_meals = array( get_the_ID() );
47
+     }
48
+
49
+     // Shoping list
50
+     $shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true );
51
+     if ( ! empty( $shopping_list ) ) {
52
+          ?>
53 53
 		<a class="btn border-btn btn-shopping" href="<?php echo esc_url( get_page_link( $shopping_list ) ); ?>" target="_blank"><?php esc_html_e( 'Download Shopping List', 'lsx-health-plan' ); ?><i class="fa fa-download" aria-hidden="true"></i></a>
54 54
 	<?php
55
-	}
56
-
57
-	// The top part
58
-	echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) );
59
-
60
-	if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) {
61
-
62
-		$args  = array(
63
-			'orderby'   => 'date',
64
-			'order'     => 'DESC',
65
-			'post_type' => 'meal',
66
-			'post__in'  => $connected_meals,
67
-		);
68
-		$meals = new WP_Query( $args );
69
-		if ( $meals->have_posts() ) {
70
-			while ( $meals->have_posts() ) {
71
-				$meals->the_post();
72
-				$meal_id       = get_the_ID();
55
+     }
56
+
57
+     // The top part
58
+     echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) );
59
+
60
+     if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) {
61
+
62
+          $args  = array(
63
+               'orderby'   => 'date',
64
+               'order'     => 'DESC',
65
+               'post_type' => 'meal',
66
+               'post__in'  => $connected_meals,
67
+          );
68
+          $meals = new WP_Query( $args );
69
+          if ( $meals->have_posts() ) {
70
+               while ( $meals->have_posts() ) {
71
+                    $meals->the_post();
72
+                    $meal_id       = get_the_ID();
73 73
 				
74 74
 
75
-				// Breakfast.
76
-				$pre_breakfast_snack  = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true );
77
-				$breakfast            = get_post_meta( get_the_ID(), 'meal_breakfast', true );
78
-				$post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true );
75
+                    // Breakfast.
76
+                    $pre_breakfast_snack  = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true );
77
+                    $breakfast            = get_post_meta( get_the_ID(), 'meal_breakfast', true );
78
+                    $post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true );
79 79
 
80
-				// Lunch.
81
-				$pre_lunch_snack  = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true );
82
-				$lunch            = get_post_meta( get_the_ID(), 'meal_lunch', true );
83
-				$post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true );
80
+                    // Lunch.
81
+                    $pre_lunch_snack  = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true );
82
+                    $lunch            = get_post_meta( get_the_ID(), 'meal_lunch', true );
83
+                    $post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true );
84 84
 
85
-				// Dinner.
86
-				$pre_dinner_snack  = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true );
87
-				$dinner            = get_post_meta( get_the_ID(), 'meal_dinner', true );
88
-				$post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true );
85
+                    // Dinner.
86
+                    $pre_dinner_snack  = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true );
87
+                    $dinner            = get_post_meta( get_the_ID(), 'meal_dinner', true );
88
+                    $post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true );
89 89
 
90
-				//Main Meals Title
91
-				//echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>';
92
-				?>
90
+                    //Main Meals Title
91
+                    //echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>';
92
+                    ?>
93 93
 				<div class="row eating-row">
94 94
 					<div class="col-md-4 eating-column">
95 95
 					<?php
96
-					if ( ! empty( $pre_breakfast_snack ) ) {
97
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
98
-						echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) );
99
-						echo '</div>';
100
-					}
101
-					if ( ! empty( $breakfast ) ) {
102
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>';
103
-						echo wp_kses_post( apply_filters( 'the_content', $breakfast ) );
104
-						echo '</div>';
105
-					}
106
-					if ( ! empty( $post_breakfast_snack ) ) {
107
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
108
-						echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) );
109
-						echo '</div>';
110
-					}
111
-
112
-					$args = array(
113
-						'meal_id'   => $meal_id,
114
-						'meal_time' => 'breakfast',
115
-					);
116
-					lsx_hp_meal_plan_recipes( $args );
117
-					?>
96
+                         if ( ! empty( $pre_breakfast_snack ) ) {
97
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
98
+                              echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) );
99
+                              echo '</div>';
100
+                         }
101
+                         if ( ! empty( $breakfast ) ) {
102
+                              echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>';
103
+                              echo wp_kses_post( apply_filters( 'the_content', $breakfast ) );
104
+                              echo '</div>';
105
+                         }
106
+                         if ( ! empty( $post_breakfast_snack ) ) {
107
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
108
+                              echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) );
109
+                              echo '</div>';
110
+                         }
111
+
112
+                         $args = array(
113
+                              'meal_id'   => $meal_id,
114
+                              'meal_time' => 'breakfast',
115
+                         );
116
+                         lsx_hp_meal_plan_recipes( $args );
117
+                         ?>
118 118
 					</div>
119 119
 					<div class="col-md-4 eating-column">
120 120
 					<?php
121
-					if ( ! empty( $pre_lunch_snack ) ) {
122
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
123
-						echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) );
124
-						echo '</div>';
125
-					}
126
-					if ( ! empty( $lunch ) ) {
127
-						echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>';
128
-						echo wp_kses_post( apply_filters( 'the_content', $lunch ) );
129
-						echo '</div>';
130
-					}
131
-					if ( ! empty( $post_lunch_snack ) ) {
132
-						echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
133
-						echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) );
134
-						echo '</div>';
135
-					}
136
-
137
-					$args = array(
138
-						'meal_id'   => $meal_id,
139
-						'meal_time' => 'lunch',
140
-					);
141
-					lsx_hp_meal_plan_recipes( $args );
142
-					?>
121
+                         if ( ! empty( $pre_lunch_snack ) ) {
122
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
123
+                              echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) );
124
+                              echo '</div>';
125
+                         }
126
+                         if ( ! empty( $lunch ) ) {
127
+                              echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>';
128
+                              echo wp_kses_post( apply_filters( 'the_content', $lunch ) );
129
+                              echo '</div>';
130
+                         }
131
+                         if ( ! empty( $post_lunch_snack ) ) {
132
+                              echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
133
+                              echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) );
134
+                              echo '</div>';
135
+                         }
136
+
137
+                         $args = array(
138
+                              'meal_id'   => $meal_id,
139
+                              'meal_time' => 'lunch',
140
+                         );
141
+                         lsx_hp_meal_plan_recipes( $args );
142
+                         ?>
143 143
 					</div>
144 144
 					<div class="col-md-4 eating-column">
145 145
 						<?php
146
-						if ( ! empty( $pre_dinner_snack ) ) {
147
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
148
-							echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) );
149
-							echo '</div>';
150
-						}
151
-						if ( ! empty( $dinner ) ) {
152
-							echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>';
153
-							echo wp_kses_post( apply_filters( 'the_content', $dinner ) );
154
-							echo '</div>';
155
-						}
156
-						if ( ! empty( $post_dinner_snack ) ) {
157
-							echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
158
-							echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) );
159
-							echo '</div>';
160
-						}
161
-
162
-						$args = array(
163
-							'meal_id'   => $meal_id,
164
-							'meal_time' => 'dinner',
165
-						);
166
-						lsx_hp_meal_plan_recipes( $args );
167
-						?>
146
+                              if ( ! empty( $pre_dinner_snack ) ) {
147
+                                   echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
148
+                                   echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) );
149
+                                   echo '</div>';
150
+                              }
151
+                              if ( ! empty( $dinner ) ) {
152
+                                   echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>';
153
+                                   echo wp_kses_post( apply_filters( 'the_content', $dinner ) );
154
+                                   echo '</div>';
155
+                              }
156
+                              if ( ! empty( $post_dinner_snack ) ) {
157
+                                   echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>';
158
+                                   echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) );
159
+                                   echo '</div>';
160
+                              }
161
+
162
+                              $args = array(
163
+                                   'meal_id'   => $meal_id,
164
+                                   'meal_time' => 'dinner',
165
+                              );
166
+                              lsx_hp_meal_plan_recipes( $args );
167
+                              ?>
168 168
 					</div>
169 169
 				</div>
170 170
 				<?php
171
-			}
172
-		}
173
-	}
174
-	?>
171
+               }
172
+          }
173
+     }
174
+     ?>
175 175
 	<?php wp_reset_postdata(); ?>
176 176
 </div>
177 177
 <?php
Please login to merge, or discard this patch.
classes/post-types/class-plan.php 2 patches
Spacing   +141 added lines, -141 removed lines patch added patch discarded remove patch
@@ -33,35 +33,35 @@  discard block
 block discarded – undo
33 33
 	 */
34 34
 	public function __construct() {
35 35
 
36
-		add_action( 'init', array( $this, 'register_post_type' ) );
37
-		add_action( 'init', array( $this, 'plan_type_taxonomy_setup' ) );
38
-		add_action( 'init', array( $this, 'week_taxonomy_setup' ) );
36
+		add_action('init', array($this, 'register_post_type'));
37
+		add_action('init', array($this, 'plan_type_taxonomy_setup'));
38
+		add_action('init', array($this, 'week_taxonomy_setup'));
39 39
 
40 40
 		// Icons for the plan types.
41
-		add_action( 'create_term', array( $this, 'save_meta' ), 10, 2 );
42
-		add_action( 'edit_term', array( $this, 'save_meta' ), 10, 2 );
41
+		add_action('create_term', array($this, 'save_meta'), 10, 2);
42
+		add_action('edit_term', array($this, 'save_meta'), 10, 2);
43 43
 		$prefix_taxonomy = 'plan-type';
44
-		add_action( sprintf( '%s_edit_form_fields', $prefix_taxonomy ), array( $this, 'add_thumbnail_form_field' ), 3, 1 );
44
+		add_action(sprintf('%s_edit_form_fields', $prefix_taxonomy), array($this, 'add_thumbnail_form_field'), 3, 1);
45 45
 
46 46
 		// Register the Metaboxes.
47
-		add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 );
48
-		add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ), 5 );
49
-		add_action( 'cmb2_admin_init', array( $this, 'plan_connections' ), 5 );
50
-		add_action( 'cmb2_admin_init', array( $this, 'sections_metabox_loop' ), 1 );
47
+		add_action('cmb2_admin_init', array($this, 'featured_metabox'), 5);
48
+		add_action('cmb2_admin_init', array($this, 'details_metaboxes'), 5);
49
+		add_action('cmb2_admin_init', array($this, 'plan_connections'), 5);
50
+		add_action('cmb2_admin_init', array($this, 'sections_metabox_loop'), 1);
51 51
 
52
-		add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
52
+		add_filter('get_the_archive_title', array($this, 'get_the_archive_title'), 100);
53 53
 		//add_filter( 'lsx_global_header_title', array( $this, 'hp_recipe_header_title' ), 200, 1 );
54 54
 
55 55
 		// Template Redirects.
56
-		add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
57
-		add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
56
+		add_filter('lsx_health_plan_archive_template', array($this, 'enable_post_type'), 10, 1);
57
+		add_filter('lsx_health_plan_single_template', array($this, 'enable_post_type'), 10, 1);
58 58
 
59 59
 		// Plan Archive Actions.
60
-		add_action( 'pre_get_posts', array( $this, 'set_parent_only' ), 10, 1 );
61
-		add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
62
-		add_action( 'lsx_content_top', 'lsx_hp_plan_archive_filters', 10, 1 );
63
-		add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_search_enabled', 10, 1 );
64
-		add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_filters_disabled', 10, 1 );
60
+		add_action('pre_get_posts', array($this, 'set_parent_only'), 10, 1);
61
+		add_filter('get_the_archive_title', array($this, 'get_the_archive_title'), 100);
62
+		add_action('lsx_content_top', 'lsx_hp_plan_archive_filters', 10, 1);
63
+		add_filter('lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_search_enabled', 10, 1);
64
+		add_filter('lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_filters_disabled', 10, 1);
65 65
 	}
66 66
 
67 67
 	/**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 */
74 74
 	public static function get_instance() {
75 75
 		// If the single instance hasn't been set, set it now.
76
-		if ( null === self::$instance ) {
76
+		if (null === self::$instance) {
77 77
 			self::$instance = new self();
78 78
 		}
79 79
 		return self::$instance;
@@ -83,21 +83,21 @@  discard block
 block discarded – undo
83 83
 	 */
84 84
 	public function register_post_type() {
85 85
 		$labels = array(
86
-			'name'               => esc_html__( 'Plans', 'lsx-health-plan' ),
87
-			'singular_name'      => esc_html__( 'Plan', 'lsx-health-plan' ),
88
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
89
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
90
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
91
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
92
-			'all_items'          => esc_html__( 'All Plans', 'lsx-health-plan' ),
93
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
94
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
95
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
96
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
86
+			'name'               => esc_html__('Plans', 'lsx-health-plan'),
87
+			'singular_name'      => esc_html__('Plan', 'lsx-health-plan'),
88
+			'add_new'            => esc_html_x('Add New', 'post type general name', 'lsx-health-plan'),
89
+			'add_new_item'       => esc_html__('Add New', 'lsx-health-plan'),
90
+			'edit_item'          => esc_html__('Edit', 'lsx-health-plan'),
91
+			'new_item'           => esc_html__('New', 'lsx-health-plan'),
92
+			'all_items'          => esc_html__('All Plans', 'lsx-health-plan'),
93
+			'view_item'          => esc_html__('View', 'lsx-health-plan'),
94
+			'search_items'       => esc_html__('Search', 'lsx-health-plan'),
95
+			'not_found'          => esc_html__('None found', 'lsx-health-plan'),
96
+			'not_found_in_trash' => esc_html__('None found in Trash', 'lsx-health-plan'),
97 97
 			'parent_item_colon'  => '',
98
-			'menu_name'          => esc_html__( 'Plans', 'lsx-health-plan' ),
98
+			'menu_name'          => esc_html__('Plans', 'lsx-health-plan'),
99 99
 		);
100
-		$args   = array(
100
+		$args = array(
101 101
 			'labels'             => $labels,
102 102
 			'public'             => true,
103 103
 			'publicly_queryable' => true,
@@ -107,10 +107,10 @@  discard block
 block discarded – undo
107 107
 			'menu_icon'          => 'dashicons-welcome-write-blog',
108 108
 			'query_var'          => true,
109 109
 			'rewrite'            => array(
110
-				'slug' => \lsx_health_plan\functions\get_option( 'plan_single_slug', 'plan' ),
110
+				'slug' => \lsx_health_plan\functions\get_option('plan_single_slug', 'plan'),
111 111
 			),
112 112
 			'capability_type'    => 'page',
113
-			'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plans' ),
113
+			'has_archive'        => \lsx_health_plan\functions\get_option('endpoint_plan_archive', 'plans'),
114 114
 			'hierarchical'       => false,
115 115
 			'menu_position'      => null,
116 116
 			'supports'           => array(
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 				'custom-fields',
122 122
 			),
123 123
 		);
124
-		register_post_type( 'plan', $args );
124
+		register_post_type('plan', $args);
125 125
 	}
126 126
 
127 127
 	/**
@@ -129,17 +129,17 @@  discard block
 block discarded – undo
129 129
 	 */
130 130
 	public function plan_type_taxonomy_setup() {
131 131
 		$labels = array(
132
-			'name'              => esc_html_x( 'Plan Type', 'taxonomy general name', 'lsx-health-plan' ),
133
-			'singular_name'     => esc_html_x( 'Plan Type', 'taxonomy singular name', 'lsx-health-plan' ),
134
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
135
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
136
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
137
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
138
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
139
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
140
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
141
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
142
-			'menu_name'         => esc_html__( 'Plan Types', 'lsx-health-plan' ),
132
+			'name'              => esc_html_x('Plan Type', 'taxonomy general name', 'lsx-health-plan'),
133
+			'singular_name'     => esc_html_x('Plan Type', 'taxonomy singular name', 'lsx-health-plan'),
134
+			'search_items'      => esc_html__('Search', 'lsx-health-plan'),
135
+			'all_items'         => esc_html__('All', 'lsx-health-plan'),
136
+			'parent_item'       => esc_html__('Parent', 'lsx-health-plan'),
137
+			'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'),
138
+			'edit_item'         => esc_html__('Edit', 'lsx-health-plan'),
139
+			'update_item'       => esc_html__('Update', 'lsx-health-plan'),
140
+			'add_new_item'      => esc_html__('Add New', 'lsx-health-plan'),
141
+			'new_item_name'     => esc_html__('New Name', 'lsx-health-plan'),
142
+			'menu_name'         => esc_html__('Plan Types', 'lsx-health-plan'),
143 143
 		);
144 144
 
145 145
 		$args = array(
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 			),
154 154
 		);
155 155
 
156
-		register_taxonomy( 'plan-type', array( 'plan' ), $args );
156
+		register_taxonomy('plan-type', array('plan'), $args);
157 157
 	}
158 158
 
159 159
 	/**
@@ -161,17 +161,17 @@  discard block
 block discarded – undo
161 161
 	 */
162 162
 	public function week_taxonomy_setup() {
163 163
 		$labels = array(
164
-			'name'              => esc_html_x( 'Week', 'taxonomy general name', 'lsx-health-plan' ),
165
-			'singular_name'     => esc_html_x( 'Week', 'taxonomy singular name', 'lsx-health-plan' ),
166
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
167
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
168
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
169
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
170
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
171
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
172
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
173
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
174
-			'menu_name'         => esc_html__( 'Weeks', 'lsx-health-plan' ),
164
+			'name'              => esc_html_x('Week', 'taxonomy general name', 'lsx-health-plan'),
165
+			'singular_name'     => esc_html_x('Week', 'taxonomy singular name', 'lsx-health-plan'),
166
+			'search_items'      => esc_html__('Search', 'lsx-health-plan'),
167
+			'all_items'         => esc_html__('All', 'lsx-health-plan'),
168
+			'parent_item'       => esc_html__('Parent', 'lsx-health-plan'),
169
+			'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'),
170
+			'edit_item'         => esc_html__('Edit', 'lsx-health-plan'),
171
+			'update_item'       => esc_html__('Update', 'lsx-health-plan'),
172
+			'add_new_item'      => esc_html__('Add New', 'lsx-health-plan'),
173
+			'new_item_name'     => esc_html__('New Name', 'lsx-health-plan'),
174
+			'menu_name'         => esc_html__('Weeks', 'lsx-health-plan'),
175 175
 		);
176 176
 
177 177
 		$args = array(
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
 			),
187 187
 		);
188 188
 
189
-		register_taxonomy( 'week', array( 'plan' ), $args );
189
+		register_taxonomy('week', array('plan'), $args);
190 190
 	}
191 191
 
192 192
 	/**
@@ -194,13 +194,13 @@  discard block
 block discarded – undo
194 194
 	 *
195 195
 	 * @since 0.1.0
196 196
 	 */
197
-	public function add_thumbnail_form_field( $term = false ) {
198
-		if ( is_object( $term ) ) {
199
-			$value         = get_term_meta( $term->term_id, 'thumbnail', true );
200
-			$image_preview = wp_get_attachment_image_src( $value, 'thumbnail' );
197
+	public function add_thumbnail_form_field($term = false) {
198
+		if (is_object($term)) {
199
+			$value         = get_term_meta($term->term_id, 'thumbnail', true);
200
+			$image_preview = wp_get_attachment_image_src($value, 'thumbnail');
201 201
 
202
-			if ( is_array( $image_preview ) ) {
203
-				$image_preview = '<img style="height: 50px; width: 50px;" src="' . esc_url( $image_preview[0] ) . '" width="' . $image_preview[1] . '" height="' . $image_preview[2] . '" class="alignnone size-thumbnail d wp-image-' . $value . '" />';
202
+			if (is_array($image_preview)) {
203
+				$image_preview = '<img style="height: 50px; width: 50px;" src="' . esc_url($image_preview[0]) . '" width="' . $image_preview[1] . '" height="' . $image_preview[2] . '" class="alignnone size-thumbnail d wp-image-' . $value . '" />';
204 204
 			}
205 205
 		} else {
206 206
 			$image_preview = false;
@@ -208,15 +208,15 @@  discard block
 block discarded – undo
208 208
 		}
209 209
 		?>
210 210
 		<tr class="form-field form-required term-thumbnail-wrap">
211
-			<th scope="row"><label for="thumbnail"><?php esc_html_e( 'Icon Image', 'lsx-health-plan' ); ?></label></th>
211
+			<th scope="row"><label for="thumbnail"><?php esc_html_e('Icon Image', 'lsx-health-plan'); ?></label></th>
212 212
 			<td>
213
-				<input class="input_image_id" type="hidden" name="thumbnail" value="<?php echo wp_kses_post( $value ); ?>">
213
+				<input class="input_image_id" type="hidden" name="thumbnail" value="<?php echo wp_kses_post($value); ?>">
214 214
 				<div class="thumbnail-preview">
215
-					<?php echo wp_kses_post( $image_preview ); ?>
215
+					<?php echo wp_kses_post($image_preview); ?>
216 216
 				</div>
217
-				<a style="<?php if ( '' !== $value && false !== $value ) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-add"><?php esc_html_e( 'Choose Image', 'lsx-health-plan' ); ?></a>
218
-				<a style="<?php if ( '' === $value || false === $value ) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-remove"><?php esc_html_e( 'Remove Image', 'lsx-health-plan' ); ?></a>
219
-				<?php wp_nonce_field( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ); ?>
217
+				<a style="<?php if ('' !== $value && false !== $value) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-add"><?php esc_html_e('Choose Image', 'lsx-health-plan'); ?></a>
218
+				<a style="<?php if ('' === $value || false === $value) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-remove"><?php esc_html_e('Remove Image', 'lsx-health-plan'); ?></a>
219
+				<?php wp_nonce_field('lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce'); ?>
220 220
 			</td>
221 221
 		</tr>
222 222
 		<?php
@@ -230,27 +230,27 @@  discard block
 block discarded – undo
230 230
 	 * @param  int    $term_id
231 231
 	 * @param  string $taxonomy
232 232
 	 */
233
-	public function save_meta( $term_id = 0, $taxonomy = '' ) {
234
-		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
233
+	public function save_meta($term_id = 0, $taxonomy = '') {
234
+		if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
235 235
 			return;
236 236
 		}
237 237
 
238
-		if ( ! isset( $_POST['thumbnail'] ) ) {
238
+		if ( ! isset($_POST['thumbnail'])) {
239 239
 			return;
240 240
 		}
241 241
 
242
-		if ( check_admin_referer( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ) ) {
243
-			if ( ! isset( $_POST['thumbnail'] ) ) {
242
+		if (check_admin_referer('lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce')) {
243
+			if ( ! isset($_POST['thumbnail'])) {
244 244
 				return;
245 245
 			}
246 246
 
247
-			$thumbnail_meta = sanitize_text_field( $_POST['thumbnail'] );
248
-			$thumbnail_meta = ! empty( $thumbnail_meta ) ? $thumbnail_meta : '';
247
+			$thumbnail_meta = sanitize_text_field($_POST['thumbnail']);
248
+			$thumbnail_meta = ! empty($thumbnail_meta) ? $thumbnail_meta : '';
249 249
 
250
-			if ( empty( $thumbnail_meta ) ) {
251
-				delete_term_meta( $term_id, 'thumbnail' );
250
+			if (empty($thumbnail_meta)) {
251
+				delete_term_meta($term_id, 'thumbnail');
252 252
 			} else {
253
-				update_term_meta( $term_id, 'thumbnail', $thumbnail_meta );
253
+				update_term_meta($term_id, 'thumbnail', $thumbnail_meta);
254 254
 			}
255 255
 		}
256 256
 	}
@@ -259,40 +259,40 @@  discard block
 block discarded – undo
259 259
 	 * Define the metabox and field configurations.
260 260
 	 */
261 261
 	public function details_metaboxes() {
262
-		$cmb = new_cmb2_box( array(
262
+		$cmb = new_cmb2_box(array(
263 263
 			'id'           => $this->slug . '_details_metabox',
264
-			'title'        => __( 'Details', 'lsx-health-plan' ),
265
-			'object_types' => array( $this->slug ), // Post type
264
+			'title'        => __('Details', 'lsx-health-plan'),
265
+			'object_types' => array($this->slug), // Post type
266 266
 			'context'      => 'normal',
267 267
 			'priority'     => 'high',
268 268
 			'show_names'   => true,
269
-		) );
269
+		));
270 270
 
271
-		$cmb->add_field( array(
272
-			'name' => __( 'Plan Short Description', 'lsx-health-plan' ),
271
+		$cmb->add_field(array(
272
+			'name' => __('Plan Short Description', 'lsx-health-plan'),
273 273
 			'id'   => $this->slug . '_short_description',
274 274
 			'type' => 'textarea_small',
275
-			'desc' => __( 'Add a small description for this plan (optional)', 'lsx-health-plan' ),
276
-		) );
275
+			'desc' => __('Add a small description for this plan (optional)', 'lsx-health-plan'),
276
+		));
277 277
 
278 278
 		$warmup_type = 'page';
279
-		if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
280
-			$warmup_type = array( 'page', 'workout' );
279
+		if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) {
280
+			$warmup_type = array('page', 'workout');
281 281
 		}
282
-		$cmb->add_field( array(
283
-			'name'       => __( 'Warmup', 'lsx-health-plan' ),
284
-			'desc'       => __( 'Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan' ),
282
+		$cmb->add_field(array(
283
+			'name'       => __('Warmup', 'lsx-health-plan'),
284
+			'desc'       => __('Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan'),
285 285
 			'id'         => $this->slug . '_warmup',
286 286
 			'type'       => 'post_search_ajax',
287 287
 			// Optional :
288
-			'limit'      => 3,  // Limit selection to X items only (default 1)
288
+			'limit'      => 3, // Limit selection to X items only (default 1)
289 289
 			'sortable'   => true, // Allow selected items to be sortable (default false)
290 290
 			'query_args' => array(
291 291
 				'post_type'      => $warmup_type,
292
-				'post_status'    => array( 'publish' ),
292
+				'post_status'    => array('publish'),
293 293
 				'posts_per_page' => -1,
294 294
 			),
295
-		) );
295
+		));
296 296
 	}
297 297
 
298 298
 	/**
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 	 * @param array $post_types
302 302
 	 * @return array
303 303
 	 */
304
-	public function enable_post_type( $post_types = array() ) {
304
+	public function enable_post_type($post_types = array()) {
305 305
 		$post_types[] = $this->slug;
306 306
 		return $post_types;
307 307
 	}
@@ -315,8 +315,8 @@  discard block
 block discarded – undo
315 315
 		$cmb = new_cmb2_box(
316 316
 			array(
317 317
 				'id'           => $this->slug . '_connections_metabox',
318
-				'title'        => __( 'Plans', 'lsx-health-plan' ),
319
-				'object_types' => array( 'workout', 'meal', 'tip', 'recipe' ),
318
+				'title'        => __('Plans', 'lsx-health-plan'),
319
+				'object_types' => array('workout', 'meal', 'tip', 'recipe'),
320 320
 				'context'      => 'normal',
321 321
 				'priority'     => 'high',
322 322
 				'show_names'   => true,
@@ -324,15 +324,15 @@  discard block
 block discarded – undo
324 324
 		);
325 325
 		$cmb->add_field(
326 326
 			array(
327
-				'name'       => __( 'Plan', 'lsx-health-plan' ),
327
+				'name'       => __('Plan', 'lsx-health-plan'),
328 328
 				'id'         => 'connected_plans',
329
-				'desc'       => __( 'Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan' ),
329
+				'desc'       => __('Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan'),
330 330
 				'type'       => 'post_search_ajax',
331 331
 				'limit'      => 15,
332 332
 				'sortable'   => true,
333 333
 				'query_args' => array(
334
-					'post_type'      => array( 'plan' ),
335
-					'post_status'    => array( 'publish' ),
334
+					'post_type'      => array('plan'),
335
+					'post_status'    => array('publish'),
336 336
 					'posts_per_page' => -1,
337 337
 				),
338 338
 			)
@@ -345,9 +345,9 @@  discard block
 block discarded – undo
345 345
 	 * @param string $title the term title.
346 346
 	 * @return string
347 347
 	 */
348
-	public function get_the_archive_title( $title ) {
349
-		if ( is_post_type_archive( 'plan' ) ) {
350
-			$title = __( 'Our health plans', 'lsx-health-plan' );
348
+	public function get_the_archive_title($title) {
349
+		if (is_post_type_archive('plan')) {
350
+			$title = __('Our health plans', 'lsx-health-plan');
351 351
 		}
352 352
 		return $title;
353 353
 	}
@@ -358,9 +358,9 @@  discard block
 block discarded – undo
358 358
 	 * @param object $wp_query
359 359
 	 * @return array
360 360
 	 */
361
-	public function set_parent_only( $wp_query ) {
362
-		if ( ! is_admin() && $wp_query->is_main_query() && ( $wp_query->is_post_type_archive( 'plan' ) || $wp_query->is_tax( 'plan-type' ) ) ) {
363
-			$wp_query->set( 'post_parent', '0' );
361
+	public function set_parent_only($wp_query) {
362
+		if ( ! is_admin() && $wp_query->is_main_query() && ($wp_query->is_post_type_archive('plan') || $wp_query->is_tax('plan-type'))) {
363
+			$wp_query->set('post_parent', '0');
364 364
 		}
365 365
 	}
366 366
 
@@ -371,8 +371,8 @@  discard block
 block discarded – undo
371 371
 		$cmb = new_cmb2_box(
372 372
 			array(
373 373
 				'id'           => $this->slug . '_featured_metabox_plan',
374
-				'title'        => __( 'Featured Plan', 'lsx-health-plan' ),
375
-				'object_types' => array( $this->slug ), // Post type
374
+				'title'        => __('Featured Plan', 'lsx-health-plan'),
375
+				'object_types' => array($this->slug), // Post type
376 376
 				'context'      => 'side',
377 377
 				'priority'     => 'high',
378 378
 				'show_names'   => true,
@@ -380,8 +380,8 @@  discard block
 block discarded – undo
380 380
 		);
381 381
 		$cmb->add_field(
382 382
 			array(
383
-				'name'       => __( 'Featured Plan', 'lsx-health-plan' ),
384
-				'desc'       => __( 'Enable a featured plan' ),
383
+				'name'       => __('Featured Plan', 'lsx-health-plan'),
384
+				'desc'       => __('Enable a featured plan'),
385 385
 				'id'         => $this->slug . '_featured_plan',
386 386
 				'type'       => 'checkbox',
387 387
 				'show_on_cb' => 'cmb2_hide_if_no_cats',
@@ -396,8 +396,8 @@  discard block
 block discarded – undo
396 396
 		$cmb = new_cmb2_box(
397 397
 			array(
398 398
 				'id'           => $this->slug . '_sections_metabox',
399
-				'title'        => __( 'Sections', 'lsx-health-plan' ),
400
-				'object_types' => array( $this->slug ), // Post type.
399
+				'title'        => __('Sections', 'lsx-health-plan'),
400
+				'object_types' => array($this->slug), // Post type.
401 401
 				'context'      => 'normal',
402 402
 				'priority'     => 'low',
403 403
 				'show_names'   => true,
@@ -413,9 +413,9 @@  discard block
 block discarded – undo
413 413
 				'id'      => $this->slug . '_sections',
414 414
 				'type'    => 'group',
415 415
 				'options' => array(
416
-					'group_title'   => __( 'Section', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
417
-					'add_button'    => __( 'Add section', 'lsx-health-plan' ),
418
-					'remove_button' => __( 'Remove section', 'lsx-health-plan' ),
416
+					'group_title'   => __('Section', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number
417
+					'add_button'    => __('Add section', 'lsx-health-plan'),
418
+					'remove_button' => __('Remove section', 'lsx-health-plan'),
419 419
 					'sortable'      => true,
420 420
 					'closed'        => true, // true to have the groups closed by default
421 421
 				),
@@ -427,10 +427,10 @@  discard block
 block discarded – undo
427 427
 		$cmb->add_group_field(
428 428
 			$group,
429 429
 			array(
430
-				'name'       => __( 'Title', 'lsx-health-plan' ),
430
+				'name'       => __('Title', 'lsx-health-plan'),
431 431
 				'id'         => 'title',
432 432
 				'type'       => 'text',
433
-				'desc'       => __( 'e.g Day 1 / Week 1', 'lsx-health-plan' ),
433
+				'desc'       => __('e.g Day 1 / Week 1', 'lsx-health-plan'),
434 434
 				'classes'    => 'lsx-field-col  lsx-field-col-50',
435 435
 			)
436 436
 		);
@@ -438,10 +438,10 @@  discard block
 block discarded – undo
438 438
 		$cmb->add_group_field(
439 439
 			$group,
440 440
 			array(
441
-				'name'       => __( 'Group', 'lsx-health-plan' ),
441
+				'name'       => __('Group', 'lsx-health-plan'),
442 442
 				'id'         => 'group',
443 443
 				'type'       => 'text',
444
-				'desc'       => __( 'e.g Week 1 / January', 'lsx-health-plan' ),
444
+				'desc'       => __('e.g Week 1 / January', 'lsx-health-plan'),
445 445
 				'classes'    => 'lsx-field-col  lsx-field-col-50',
446 446
 			)
447 447
 		);
@@ -449,25 +449,25 @@  discard block
 block discarded – undo
449 449
 		$cmb->add_group_field(
450 450
 			$group,
451 451
 			array(
452
-				'name' => __( 'Overview', 'lsx-health-plan' ),
452
+				'name' => __('Overview', 'lsx-health-plan'),
453 453
 				'id'   => 'description',
454 454
 				'type' => 'wysiwyg',
455 455
 			)
456 456
 		);
457 457
 
458
-		if ( post_type_exists( 'workout' ) ) {
458
+		if (post_type_exists('workout')) {
459 459
 			$cmb->add_group_field(
460 460
 				$group,
461 461
 				array(
462
-					'name'       => __( 'Workouts', 'lsx-health-plan' ),
462
+					'name'       => __('Workouts', 'lsx-health-plan'),
463 463
 					'id'         => 'connected_workouts',
464
-					'desc'       => __( 'Connect the workout(s) that apply to this section.', 'lsx-health-plan' ),
464
+					'desc'       => __('Connect the workout(s) that apply to this section.', 'lsx-health-plan'),
465 465
 					'type'       => 'post_search_ajax',
466 466
 					'limit'      => 15,
467 467
 					'sortable'   => true,
468 468
 					'query_args' => array(
469
-						'post_type'      => array( 'workout' ),
470
-						'post_status'    => array( 'publish' ),
469
+						'post_type'      => array('workout'),
470
+						'post_status'    => array('publish'),
471 471
 						'posts_per_page' => -1,
472 472
 					),
473 473
 					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
@@ -475,40 +475,40 @@  discard block
 block discarded – undo
475 475
 			);
476 476
 		}
477 477
 
478
-		if ( post_type_exists( 'meal' ) ) {
478
+		if (post_type_exists('meal')) {
479 479
 			$cmb->add_group_field(
480 480
 				$group,
481 481
 				array(
482
-					'name'       => __( 'Meals', 'lsx-health-plan' ),
483
-					'desc'       => __( 'Connect the meal(s) that apply to this section.', 'lsx-health-plan' ),
482
+					'name'       => __('Meals', 'lsx-health-plan'),
483
+					'desc'       => __('Connect the meal(s) that apply to this section.', 'lsx-health-plan'),
484 484
 					'id'         => 'connected_meals',
485 485
 					'type'       => 'post_search_ajax',
486 486
 					// Optional :
487 487
 					'limit'      => 15, // Limit selection to X items only (default 1)
488 488
 					'sortable'   => true, // Allow selected items to be sortable (default false)
489 489
 					'query_args' => array(
490
-						'post_type'      => array( 'meal' ),
491
-						'post_status'    => array( 'publish' ),
490
+						'post_type'      => array('meal'),
491
+						'post_status'    => array('publish'),
492 492
 						'posts_per_page' => -1,
493 493
 					),
494 494
 					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
495 495
 				)
496 496
 			);
497 497
 		}
498
-		if ( post_type_exists( 'tip' ) ) {
498
+		if (post_type_exists('tip')) {
499 499
 			$cmb->add_group_field(
500 500
 				$group,
501 501
 				array(
502
-					'name'       => __( 'Tips', 'lsx-health-plan' ),
502
+					'name'       => __('Tips', 'lsx-health-plan'),
503 503
 					'id'         => 'connected_tips',
504
-					'desc'       => __( 'Connect the tip(s) that apply to this section.', 'lsx-health-plan' ),
504
+					'desc'       => __('Connect the tip(s) that apply to this section.', 'lsx-health-plan'),
505 505
 					'type'       => 'post_search_ajax',
506 506
 					// Optional :
507
-					'limit'      => 15,  // Limit selection to X items only (default 1)
508
-					'sortable'   => true,  // Allow selected items to be sortable (default false)
507
+					'limit'      => 15, // Limit selection to X items only (default 1)
508
+					'sortable'   => true, // Allow selected items to be sortable (default false)
509 509
 					'query_args' => array(
510
-						'post_type'      => array( 'tip' ),
511
-						'post_status'    => array( 'publish' ),
510
+						'post_type'      => array('tip'),
511
+						'post_status'    => array('publish'),
512 512
 						'posts_per_page' => -1,
513 513
 					),
514 514
 					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
Please login to merge, or discard this patch.
Indentation   +489 added lines, -489 removed lines patch added patch discarded remove patch
@@ -10,203 +10,203 @@  discard block
 block discarded – undo
10 10
  */
11 11
 class Plan {
12 12
 
13
-	/**
14
-	 * Holds class instance
15
-	 *
16
-	 * @since 1.0.0
17
-	 *
18
-	 * @var      object \lsx_health_plan\classes\Plan()
19
-	 */
20
-	protected static $instance = null;
21
-
22
-	/**
23
-	 * Holds post_type slug used as an index
24
-	 *
25
-	 * @since 1.0.0
26
-	 *
27
-	 * @var      string
28
-	 */
29
-	public $slug = 'plan';
30
-
31
-	/**
32
-	 * Constructor
33
-	 */
34
-	public function __construct() {
35
-
36
-		add_action( 'init', array( $this, 'register_post_type' ) );
37
-		add_action( 'init', array( $this, 'plan_type_taxonomy_setup' ) );
38
-		add_action( 'init', array( $this, 'week_taxonomy_setup' ) );
39
-
40
-		// Icons for the plan types.
41
-		add_action( 'create_term', array( $this, 'save_meta' ), 10, 2 );
42
-		add_action( 'edit_term', array( $this, 'save_meta' ), 10, 2 );
43
-		$prefix_taxonomy = 'plan-type';
44
-		add_action( sprintf( '%s_edit_form_fields', $prefix_taxonomy ), array( $this, 'add_thumbnail_form_field' ), 3, 1 );
45
-
46
-		// Register the Metaboxes.
47
-		add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 );
48
-		add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ), 5 );
49
-		add_action( 'cmb2_admin_init', array( $this, 'plan_connections' ), 5 );
50
-		add_action( 'cmb2_admin_init', array( $this, 'sections_metabox_loop' ), 1 );
51
-
52
-		add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
53
-		//add_filter( 'lsx_global_header_title', array( $this, 'hp_recipe_header_title' ), 200, 1 );
54
-
55
-		// Template Redirects.
56
-		add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
57
-		add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
58
-
59
-		// Plan Archive Actions.
60
-		add_action( 'pre_get_posts', array( $this, 'set_parent_only' ), 10, 1 );
61
-		add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
62
-		add_action( 'lsx_content_top', 'lsx_hp_plan_archive_filters', 10, 1 );
63
-		add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_search_enabled', 10, 1 );
64
-		add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_filters_disabled', 10, 1 );
65
-	}
66
-
67
-	/**
68
-	 * Return an instance of this class.
69
-	 *
70
-	 * @since 1.0.0
71
-	 *
72
-	 * @return    object \lsx_health_plan\classes\Meal_Plan()    A single instance of this class.
73
-	 */
74
-	public static function get_instance() {
75
-		// If the single instance hasn't been set, set it now.
76
-		if ( null === self::$instance ) {
77
-			self::$instance = new self();
78
-		}
79
-		return self::$instance;
80
-	}
81
-	/**
82
-	 * Register the post type.
83
-	 */
84
-	public function register_post_type() {
85
-		$labels = array(
86
-			'name'               => esc_html__( 'Plans', 'lsx-health-plan' ),
87
-			'singular_name'      => esc_html__( 'Plan', 'lsx-health-plan' ),
88
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
89
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
90
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
91
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
92
-			'all_items'          => esc_html__( 'All Plans', 'lsx-health-plan' ),
93
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
94
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
95
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
96
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
97
-			'parent_item_colon'  => '',
98
-			'menu_name'          => esc_html__( 'Plans', 'lsx-health-plan' ),
99
-		);
100
-		$args   = array(
101
-			'labels'             => $labels,
102
-			'public'             => true,
103
-			'publicly_queryable' => true,
104
-			'show_ui'            => true,
105
-			'show_in_menu'       => true,
106
-			'show_in_rest'       => true,
107
-			'menu_icon'          => 'dashicons-welcome-write-blog',
108
-			'query_var'          => true,
109
-			'rewrite'            => array(
110
-				'slug' => \lsx_health_plan\functions\get_option( 'plan_single_slug', 'plan' ),
111
-			),
112
-			'capability_type'    => 'page',
113
-			'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plans' ),
114
-			'hierarchical'       => false,
115
-			'menu_position'      => null,
116
-			'supports'           => array(
117
-				'title',
118
-				'editor',
119
-				'thumbnail',
120
-				'page-attributes',
121
-				'custom-fields',
122
-			),
123
-		);
124
-		register_post_type( 'plan', $args );
125
-	}
126
-
127
-	/**
128
-	 * Register the Type taxonomy.
129
-	 */
130
-	public function plan_type_taxonomy_setup() {
131
-		$labels = array(
132
-			'name'              => esc_html_x( 'Plan Type', 'taxonomy general name', 'lsx-health-plan' ),
133
-			'singular_name'     => esc_html_x( 'Plan Type', 'taxonomy singular name', 'lsx-health-plan' ),
134
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
135
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
136
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
137
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
138
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
139
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
140
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
141
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
142
-			'menu_name'         => esc_html__( 'Plan Types', 'lsx-health-plan' ),
143
-		);
144
-
145
-		$args = array(
146
-			'hierarchical'      => true,
147
-			'labels'            => $labels,
148
-			'show_ui'           => true,
149
-			'show_admin_column' => true,
150
-			'query_var'         => true,
151
-			'rewrite'           => array(
152
-				'slug' => 'plan-type',
153
-			),
154
-		);
155
-
156
-		register_taxonomy( 'plan-type', array( 'plan' ), $args );
157
-	}
158
-
159
-	/**
160
-	 * Register the Week taxonomy.
161
-	 */
162
-	public function week_taxonomy_setup() {
163
-		$labels = array(
164
-			'name'              => esc_html_x( 'Week', 'taxonomy general name', 'lsx-health-plan' ),
165
-			'singular_name'     => esc_html_x( 'Week', 'taxonomy singular name', 'lsx-health-plan' ),
166
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
167
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
168
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
169
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
170
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
171
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
172
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
173
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
174
-			'menu_name'         => esc_html__( 'Weeks', 'lsx-health-plan' ),
175
-		);
176
-
177
-		$args = array(
178
-			'hierarchical'      => true,
179
-			'labels'            => $labels,
180
-			'show_ui'           => true,
181
-			'show_admin_column' => true,
182
-			'query_var'         => true,
183
-			'show_in_rest'      => true,
184
-			'rewrite'           => array(
185
-				'slug' => 'week',
186
-			),
187
-		);
188
-
189
-		register_taxonomy( 'week', array( 'plan' ), $args );
190
-	}
191
-
192
-	/**
193
-	 * Output the form field for this metadata when adding a new term
194
-	 *
195
-	 * @since 0.1.0
196
-	 */
197
-	public function add_thumbnail_form_field( $term = false ) {
198
-		if ( is_object( $term ) ) {
199
-			$value         = get_term_meta( $term->term_id, 'thumbnail', true );
200
-			$image_preview = wp_get_attachment_image_src( $value, 'thumbnail' );
201
-
202
-			if ( is_array( $image_preview ) ) {
203
-				$image_preview = '<img style="height: 50px; width: 50px;" src="' . esc_url( $image_preview[0] ) . '" width="' . $image_preview[1] . '" height="' . $image_preview[2] . '" class="alignnone size-thumbnail d wp-image-' . $value . '" />';
204
-			}
205
-		} else {
206
-			$image_preview = false;
207
-			$value         = false;
208
-		}
209
-		?>
13
+     /**
14
+      * Holds class instance
15
+      *
16
+      * @since 1.0.0
17
+      *
18
+      * @var      object \lsx_health_plan\classes\Plan()
19
+      */
20
+     protected static $instance = null;
21
+
22
+     /**
23
+      * Holds post_type slug used as an index
24
+      *
25
+      * @since 1.0.0
26
+      *
27
+      * @var      string
28
+      */
29
+     public $slug = 'plan';
30
+
31
+     /**
32
+      * Constructor
33
+      */
34
+     public function __construct() {
35
+
36
+          add_action( 'init', array( $this, 'register_post_type' ) );
37
+          add_action( 'init', array( $this, 'plan_type_taxonomy_setup' ) );
38
+          add_action( 'init', array( $this, 'week_taxonomy_setup' ) );
39
+
40
+          // Icons for the plan types.
41
+          add_action( 'create_term', array( $this, 'save_meta' ), 10, 2 );
42
+          add_action( 'edit_term', array( $this, 'save_meta' ), 10, 2 );
43
+          $prefix_taxonomy = 'plan-type';
44
+          add_action( sprintf( '%s_edit_form_fields', $prefix_taxonomy ), array( $this, 'add_thumbnail_form_field' ), 3, 1 );
45
+
46
+          // Register the Metaboxes.
47
+          add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 );
48
+          add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ), 5 );
49
+          add_action( 'cmb2_admin_init', array( $this, 'plan_connections' ), 5 );
50
+          add_action( 'cmb2_admin_init', array( $this, 'sections_metabox_loop' ), 1 );
51
+
52
+          add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
53
+          //add_filter( 'lsx_global_header_title', array( $this, 'hp_recipe_header_title' ), 200, 1 );
54
+
55
+          // Template Redirects.
56
+          add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
57
+          add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
58
+
59
+          // Plan Archive Actions.
60
+          add_action( 'pre_get_posts', array( $this, 'set_parent_only' ), 10, 1 );
61
+          add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
62
+          add_action( 'lsx_content_top', 'lsx_hp_plan_archive_filters', 10, 1 );
63
+          add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_search_enabled', 10, 1 );
64
+          add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_filters_disabled', 10, 1 );
65
+     }
66
+
67
+     /**
68
+      * Return an instance of this class.
69
+      *
70
+      * @since 1.0.0
71
+      *
72
+      * @return    object \lsx_health_plan\classes\Meal_Plan()    A single instance of this class.
73
+      */
74
+     public static function get_instance() {
75
+          // If the single instance hasn't been set, set it now.
76
+          if ( null === self::$instance ) {
77
+               self::$instance = new self();
78
+          }
79
+          return self::$instance;
80
+     }
81
+     /**
82
+      * Register the post type.
83
+      */
84
+     public function register_post_type() {
85
+          $labels = array(
86
+               'name'               => esc_html__( 'Plans', 'lsx-health-plan' ),
87
+               'singular_name'      => esc_html__( 'Plan', 'lsx-health-plan' ),
88
+               'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
89
+               'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
90
+               'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
91
+               'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
92
+               'all_items'          => esc_html__( 'All Plans', 'lsx-health-plan' ),
93
+               'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
94
+               'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
95
+               'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
96
+               'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
97
+               'parent_item_colon'  => '',
98
+               'menu_name'          => esc_html__( 'Plans', 'lsx-health-plan' ),
99
+          );
100
+          $args   = array(
101
+               'labels'             => $labels,
102
+               'public'             => true,
103
+               'publicly_queryable' => true,
104
+               'show_ui'            => true,
105
+               'show_in_menu'       => true,
106
+               'show_in_rest'       => true,
107
+               'menu_icon'          => 'dashicons-welcome-write-blog',
108
+               'query_var'          => true,
109
+               'rewrite'            => array(
110
+                    'slug' => \lsx_health_plan\functions\get_option( 'plan_single_slug', 'plan' ),
111
+               ),
112
+               'capability_type'    => 'page',
113
+               'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plans' ),
114
+               'hierarchical'       => false,
115
+               'menu_position'      => null,
116
+               'supports'           => array(
117
+                    'title',
118
+                    'editor',
119
+                    'thumbnail',
120
+                    'page-attributes',
121
+                    'custom-fields',
122
+               ),
123
+          );
124
+          register_post_type( 'plan', $args );
125
+     }
126
+
127
+     /**
128
+      * Register the Type taxonomy.
129
+      */
130
+     public function plan_type_taxonomy_setup() {
131
+          $labels = array(
132
+               'name'              => esc_html_x( 'Plan Type', 'taxonomy general name', 'lsx-health-plan' ),
133
+               'singular_name'     => esc_html_x( 'Plan Type', 'taxonomy singular name', 'lsx-health-plan' ),
134
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
135
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
136
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
137
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
138
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
139
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
140
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
141
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
142
+               'menu_name'         => esc_html__( 'Plan Types', 'lsx-health-plan' ),
143
+          );
144
+
145
+          $args = array(
146
+               'hierarchical'      => true,
147
+               'labels'            => $labels,
148
+               'show_ui'           => true,
149
+               'show_admin_column' => true,
150
+               'query_var'         => true,
151
+               'rewrite'           => array(
152
+                    'slug' => 'plan-type',
153
+               ),
154
+          );
155
+
156
+          register_taxonomy( 'plan-type', array( 'plan' ), $args );
157
+     }
158
+
159
+     /**
160
+      * Register the Week taxonomy.
161
+      */
162
+     public function week_taxonomy_setup() {
163
+          $labels = array(
164
+               'name'              => esc_html_x( 'Week', 'taxonomy general name', 'lsx-health-plan' ),
165
+               'singular_name'     => esc_html_x( 'Week', 'taxonomy singular name', 'lsx-health-plan' ),
166
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
167
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
168
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
169
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
170
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
171
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
172
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
173
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
174
+               'menu_name'         => esc_html__( 'Weeks', 'lsx-health-plan' ),
175
+          );
176
+
177
+          $args = array(
178
+               'hierarchical'      => true,
179
+               'labels'            => $labels,
180
+               'show_ui'           => true,
181
+               'show_admin_column' => true,
182
+               'query_var'         => true,
183
+               'show_in_rest'      => true,
184
+               'rewrite'           => array(
185
+                    'slug' => 'week',
186
+               ),
187
+          );
188
+
189
+          register_taxonomy( 'week', array( 'plan' ), $args );
190
+     }
191
+
192
+     /**
193
+      * Output the form field for this metadata when adding a new term
194
+      *
195
+      * @since 0.1.0
196
+      */
197
+     public function add_thumbnail_form_field( $term = false ) {
198
+          if ( is_object( $term ) ) {
199
+               $value         = get_term_meta( $term->term_id, 'thumbnail', true );
200
+               $image_preview = wp_get_attachment_image_src( $value, 'thumbnail' );
201
+
202
+               if ( is_array( $image_preview ) ) {
203
+                    $image_preview = '<img style="height: 50px; width: 50px;" src="' . esc_url( $image_preview[0] ) . '" width="' . $image_preview[1] . '" height="' . $image_preview[2] . '" class="alignnone size-thumbnail d wp-image-' . $value . '" />';
204
+               }
205
+          } else {
206
+               $image_preview = false;
207
+               $value         = false;
208
+          }
209
+          ?>
210 210
 		<tr class="form-field form-required term-thumbnail-wrap">
211 211
 			<th scope="row"><label for="thumbnail"><?php esc_html_e( 'Icon Image', 'lsx-health-plan' ); ?></label></th>
212 212
 			<td>
@@ -220,300 +220,300 @@  discard block
 block discarded – undo
220 220
 			</td>
221 221
 		</tr>
222 222
 		<?php
223
-	}
224
-
225
-	/**
226
-	 * Saves the Taxonomy term icon image
227
-	 *
228
-	 * @since 0.1.0
229
-	 *
230
-	 * @param  int    $term_id
231
-	 * @param  string $taxonomy
232
-	 */
233
-	public function save_meta( $term_id = 0, $taxonomy = '' ) {
234
-		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
235
-			return;
236
-		}
237
-
238
-		if ( ! isset( $_POST['thumbnail'] ) ) {
239
-			return;
240
-		}
241
-
242
-		if ( check_admin_referer( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ) ) {
243
-			if ( ! isset( $_POST['thumbnail'] ) ) {
244
-				return;
245
-			}
246
-
247
-			$thumbnail_meta = sanitize_text_field( $_POST['thumbnail'] );
248
-			$thumbnail_meta = ! empty( $thumbnail_meta ) ? $thumbnail_meta : '';
249
-
250
-			if ( empty( $thumbnail_meta ) ) {
251
-				delete_term_meta( $term_id, 'thumbnail' );
252
-			} else {
253
-				update_term_meta( $term_id, 'thumbnail', $thumbnail_meta );
254
-			}
255
-		}
256
-	}
257
-
258
-	/**
259
-	 * Define the metabox and field configurations.
260
-	 */
261
-	public function details_metaboxes() {
262
-		$cmb = new_cmb2_box( array(
263
-			'id'           => $this->slug . '_details_metabox',
264
-			'title'        => __( 'Details', 'lsx-health-plan' ),
265
-			'object_types' => array( $this->slug ), // Post type
266
-			'context'      => 'normal',
267
-			'priority'     => 'high',
268
-			'show_names'   => true,
269
-		) );
270
-
271
-		$cmb->add_field( array(
272
-			'name' => __( 'Plan Short Description', 'lsx-health-plan' ),
273
-			'id'   => $this->slug . '_short_description',
274
-			'type' => 'textarea_small',
275
-			'desc' => __( 'Add a small description for this plan (optional)', 'lsx-health-plan' ),
276
-		) );
277
-
278
-		$warmup_type = 'page';
279
-		if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
280
-			$warmup_type = array( 'page', 'workout' );
281
-		}
282
-		$cmb->add_field( array(
283
-			'name'       => __( 'Warmup', 'lsx-health-plan' ),
284
-			'desc'       => __( 'Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan' ),
285
-			'id'         => $this->slug . '_warmup',
286
-			'type'       => 'post_search_ajax',
287
-			// Optional :
288
-			'limit'      => 3,  // Limit selection to X items only (default 1)
289
-			'sortable'   => true, // Allow selected items to be sortable (default false)
290
-			'query_args' => array(
291
-				'post_type'      => $warmup_type,
292
-				'post_status'    => array( 'publish' ),
293
-				'posts_per_page' => -1,
294
-			),
295
-		) );
296
-	}
297
-
298
-	/**
299
-	 * Adds the post type to the different arrays.
300
-	 *
301
-	 * @param array $post_types
302
-	 * @return array
303
-	 */
304
-	public function enable_post_type( $post_types = array() ) {
305
-		$post_types[] = $this->slug;
306
-		return $post_types;
307
-	}
308
-
309
-	/**
310
-	 * Registers the workout connections on the plan post type.
311
-	 *
312
-	 * @return void
313
-	 */
314
-	public function plan_connections() {
315
-		$cmb = new_cmb2_box(
316
-			array(
317
-				'id'           => $this->slug . '_connections_metabox',
318
-				'title'        => __( 'Plans', 'lsx-health-plan' ),
319
-				'object_types' => array( 'workout', 'meal', 'tip', 'recipe' ),
320
-				'context'      => 'normal',
321
-				'priority'     => 'high',
322
-				'show_names'   => true,
323
-			)
324
-		);
325
-		$cmb->add_field(
326
-			array(
327
-				'name'       => __( 'Plan', 'lsx-health-plan' ),
328
-				'id'         => 'connected_plans',
329
-				'desc'       => __( 'Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan' ),
330
-				'type'       => 'post_search_ajax',
331
-				'limit'      => 15,
332
-				'sortable'   => true,
333
-				'query_args' => array(
334
-					'post_type'      => array( 'plan' ),
335
-					'post_status'    => array( 'publish' ),
336
-					'posts_per_page' => -1,
337
-				),
338
-			)
339
-		);
340
-	}
341
-
342
-	/**
343
-	 * Remove the "Archives:" from the post type.
344
-	 *
345
-	 * @param string $title the term title.
346
-	 * @return string
347
-	 */
348
-	public function get_the_archive_title( $title ) {
349
-		if ( is_post_type_archive( 'plan' ) ) {
350
-			$title = __( 'Our health plans', 'lsx-health-plan' );
351
-		}
352
-		return $title;
353
-	}
354
-
355
-	/**
356
-	 * Set the post type archive to show the parent plans only.
357
-	 *
358
-	 * @param object $wp_query
359
-	 * @return array
360
-	 */
361
-	public function set_parent_only( $wp_query ) {
362
-		if ( ! is_admin() && $wp_query->is_main_query() && ( $wp_query->is_post_type_archive( 'plan' ) || $wp_query->is_tax( 'plan-type' ) ) ) {
363
-			$wp_query->set( 'post_parent', '0' );
364
-		}
365
-	}
366
-
367
-	/**
368
-	 * Define the metabox and field configurations.
369
-	 */
370
-	public function featured_metabox() {
371
-		$cmb = new_cmb2_box(
372
-			array(
373
-				'id'           => $this->slug . '_featured_metabox_plan',
374
-				'title'        => __( 'Featured Plan', 'lsx-health-plan' ),
375
-				'object_types' => array( $this->slug ), // Post type
376
-				'context'      => 'side',
377
-				'priority'     => 'high',
378
-				'show_names'   => true,
379
-			)
380
-		);
381
-		$cmb->add_field(
382
-			array(
383
-				'name'       => __( 'Featured Plan', 'lsx-health-plan' ),
384
-				'desc'       => __( 'Enable a featured plan' ),
385
-				'id'         => $this->slug . '_featured_plan',
386
-				'type'       => 'checkbox',
387
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
388
-			)
389
-		);
390
-	}
391
-
392
-	/**
393
-	 * Define the metabox and field configurations.
394
-	 */
395
-	public function sections_metabox_loop() {
396
-		$cmb = new_cmb2_box(
397
-			array(
398
-				'id'           => $this->slug . '_sections_metabox',
399
-				'title'        => __( 'Sections', 'lsx-health-plan' ),
400
-				'object_types' => array( $this->slug ), // Post type.
401
-				'context'      => 'normal',
402
-				'priority'     => 'low',
403
-				'show_names'   => true,
404
-			)
405
-		);
406
-
407
-		/*
223
+     }
224
+
225
+     /**
226
+      * Saves the Taxonomy term icon image
227
+      *
228
+      * @since 0.1.0
229
+      *
230
+      * @param  int    $term_id
231
+      * @param  string $taxonomy
232
+      */
233
+     public function save_meta( $term_id = 0, $taxonomy = '' ) {
234
+          if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
235
+               return;
236
+          }
237
+
238
+          if ( ! isset( $_POST['thumbnail'] ) ) {
239
+               return;
240
+          }
241
+
242
+          if ( check_admin_referer( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ) ) {
243
+               if ( ! isset( $_POST['thumbnail'] ) ) {
244
+                    return;
245
+               }
246
+
247
+               $thumbnail_meta = sanitize_text_field( $_POST['thumbnail'] );
248
+               $thumbnail_meta = ! empty( $thumbnail_meta ) ? $thumbnail_meta : '';
249
+
250
+               if ( empty( $thumbnail_meta ) ) {
251
+                    delete_term_meta( $term_id, 'thumbnail' );
252
+               } else {
253
+                    update_term_meta( $term_id, 'thumbnail', $thumbnail_meta );
254
+               }
255
+          }
256
+     }
257
+
258
+     /**
259
+      * Define the metabox and field configurations.
260
+      */
261
+     public function details_metaboxes() {
262
+          $cmb = new_cmb2_box( array(
263
+               'id'           => $this->slug . '_details_metabox',
264
+               'title'        => __( 'Details', 'lsx-health-plan' ),
265
+               'object_types' => array( $this->slug ), // Post type
266
+               'context'      => 'normal',
267
+               'priority'     => 'high',
268
+               'show_names'   => true,
269
+          ) );
270
+
271
+          $cmb->add_field( array(
272
+               'name' => __( 'Plan Short Description', 'lsx-health-plan' ),
273
+               'id'   => $this->slug . '_short_description',
274
+               'type' => 'textarea_small',
275
+               'desc' => __( 'Add a small description for this plan (optional)', 'lsx-health-plan' ),
276
+          ) );
277
+
278
+          $warmup_type = 'page';
279
+          if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
280
+               $warmup_type = array( 'page', 'workout' );
281
+          }
282
+          $cmb->add_field( array(
283
+               'name'       => __( 'Warmup', 'lsx-health-plan' ),
284
+               'desc'       => __( 'Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan' ),
285
+               'id'         => $this->slug . '_warmup',
286
+               'type'       => 'post_search_ajax',
287
+               // Optional :
288
+               'limit'      => 3,  // Limit selection to X items only (default 1)
289
+               'sortable'   => true, // Allow selected items to be sortable (default false)
290
+               'query_args' => array(
291
+                    'post_type'      => $warmup_type,
292
+                    'post_status'    => array( 'publish' ),
293
+                    'posts_per_page' => -1,
294
+               ),
295
+          ) );
296
+     }
297
+
298
+     /**
299
+      * Adds the post type to the different arrays.
300
+      *
301
+      * @param array $post_types
302
+      * @return array
303
+      */
304
+     public function enable_post_type( $post_types = array() ) {
305
+          $post_types[] = $this->slug;
306
+          return $post_types;
307
+     }
308
+
309
+     /**
310
+      * Registers the workout connections on the plan post type.
311
+      *
312
+      * @return void
313
+      */
314
+     public function plan_connections() {
315
+          $cmb = new_cmb2_box(
316
+               array(
317
+                    'id'           => $this->slug . '_connections_metabox',
318
+                    'title'        => __( 'Plans', 'lsx-health-plan' ),
319
+                    'object_types' => array( 'workout', 'meal', 'tip', 'recipe' ),
320
+                    'context'      => 'normal',
321
+                    'priority'     => 'high',
322
+                    'show_names'   => true,
323
+               )
324
+          );
325
+          $cmb->add_field(
326
+               array(
327
+                    'name'       => __( 'Plan', 'lsx-health-plan' ),
328
+                    'id'         => 'connected_plans',
329
+                    'desc'       => __( 'Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan' ),
330
+                    'type'       => 'post_search_ajax',
331
+                    'limit'      => 15,
332
+                    'sortable'   => true,
333
+                    'query_args' => array(
334
+                         'post_type'      => array( 'plan' ),
335
+                         'post_status'    => array( 'publish' ),
336
+                         'posts_per_page' => -1,
337
+                    ),
338
+               )
339
+          );
340
+     }
341
+
342
+     /**
343
+      * Remove the "Archives:" from the post type.
344
+      *
345
+      * @param string $title the term title.
346
+      * @return string
347
+      */
348
+     public function get_the_archive_title( $title ) {
349
+          if ( is_post_type_archive( 'plan' ) ) {
350
+               $title = __( 'Our health plans', 'lsx-health-plan' );
351
+          }
352
+          return $title;
353
+     }
354
+
355
+     /**
356
+      * Set the post type archive to show the parent plans only.
357
+      *
358
+      * @param object $wp_query
359
+      * @return array
360
+      */
361
+     public function set_parent_only( $wp_query ) {
362
+          if ( ! is_admin() && $wp_query->is_main_query() && ( $wp_query->is_post_type_archive( 'plan' ) || $wp_query->is_tax( 'plan-type' ) ) ) {
363
+               $wp_query->set( 'post_parent', '0' );
364
+          }
365
+     }
366
+
367
+     /**
368
+      * Define the metabox and field configurations.
369
+      */
370
+     public function featured_metabox() {
371
+          $cmb = new_cmb2_box(
372
+               array(
373
+                    'id'           => $this->slug . '_featured_metabox_plan',
374
+                    'title'        => __( 'Featured Plan', 'lsx-health-plan' ),
375
+                    'object_types' => array( $this->slug ), // Post type
376
+                    'context'      => 'side',
377
+                    'priority'     => 'high',
378
+                    'show_names'   => true,
379
+               )
380
+          );
381
+          $cmb->add_field(
382
+               array(
383
+                    'name'       => __( 'Featured Plan', 'lsx-health-plan' ),
384
+                    'desc'       => __( 'Enable a featured plan' ),
385
+                    'id'         => $this->slug . '_featured_plan',
386
+                    'type'       => 'checkbox',
387
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
388
+               )
389
+          );
390
+     }
391
+
392
+     /**
393
+      * Define the metabox and field configurations.
394
+      */
395
+     public function sections_metabox_loop() {
396
+          $cmb = new_cmb2_box(
397
+               array(
398
+                    'id'           => $this->slug . '_sections_metabox',
399
+                    'title'        => __( 'Sections', 'lsx-health-plan' ),
400
+                    'object_types' => array( $this->slug ), // Post type.
401
+                    'context'      => 'normal',
402
+                    'priority'     => 'low',
403
+                    'show_names'   => true,
404
+               )
405
+          );
406
+
407
+          /*
408 408
 		This is where the repeatable group is defined, each field has the same ID as the legacy field.
409 409
 		There is a function which runs and adds to looped fields to individual fields for WP Query compatability.
410 410
 		*/
411
-		$group = $cmb->add_field(
412
-			array(
413
-				'id'      => $this->slug . '_sections',
414
-				'type'    => 'group',
415
-				'options' => array(
416
-					'group_title'   => __( 'Section', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
417
-					'add_button'    => __( 'Add section', 'lsx-health-plan' ),
418
-					'remove_button' => __( 'Remove section', 'lsx-health-plan' ),
419
-					'sortable'      => true,
420
-					'closed'        => true, // true to have the groups closed by default
421
-				),
422
-				'classes' => 'lsx-admin-row',
411
+          $group = $cmb->add_field(
412
+               array(
413
+                    'id'      => $this->slug . '_sections',
414
+                    'type'    => 'group',
415
+                    'options' => array(
416
+                         'group_title'   => __( 'Section', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
417
+                         'add_button'    => __( 'Add section', 'lsx-health-plan' ),
418
+                         'remove_button' => __( 'Remove section', 'lsx-health-plan' ),
419
+                         'sortable'      => true,
420
+                         'closed'        => true, // true to have the groups closed by default
421
+                    ),
422
+                    'classes' => 'lsx-admin-row',
423 423
 				
424
-			)
425
-		);
426
-
427
-		$cmb->add_group_field(
428
-			$group,
429
-			array(
430
-				'name'       => __( 'Title', 'lsx-health-plan' ),
431
-				'id'         => 'title',
432
-				'type'       => 'text',
433
-				'desc'       => __( 'e.g Day 1 / Week 1', 'lsx-health-plan' ),
434
-				'classes'    => 'lsx-field-col  lsx-field-col-50',
435
-			)
436
-		);
437
-
438
-		$cmb->add_group_field(
439
-			$group,
440
-			array(
441
-				'name'       => __( 'Group', 'lsx-health-plan' ),
442
-				'id'         => 'group',
443
-				'type'       => 'text',
444
-				'desc'       => __( 'e.g Week 1 / January', 'lsx-health-plan' ),
445
-				'classes'    => 'lsx-field-col  lsx-field-col-50',
446
-			)
447
-		);
448
-
449
-		$cmb->add_group_field(
450
-			$group,
451
-			array(
452
-				'name' => __( 'Overview', 'lsx-health-plan' ),
453
-				'id'   => 'description',
454
-				'type' => 'wysiwyg',
455
-			)
456
-		);
457
-
458
-		if ( post_type_exists( 'workout' ) ) {
459
-			$cmb->add_group_field(
460
-				$group,
461
-				array(
462
-					'name'       => __( 'Workouts', 'lsx-health-plan' ),
463
-					'id'         => 'connected_workouts',
464
-					'desc'       => __( 'Connect the workout(s) that apply to this section.', 'lsx-health-plan' ),
465
-					'type'       => 'post_search_ajax',
466
-					'limit'      => 15,
467
-					'sortable'   => true,
468
-					'query_args' => array(
469
-						'post_type'      => array( 'workout' ),
470
-						'post_status'    => array( 'publish' ),
471
-						'posts_per_page' => -1,
472
-					),
473
-					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
474
-				)
475
-			);
476
-		}
477
-
478
-		if ( post_type_exists( 'meal' ) ) {
479
-			$cmb->add_group_field(
480
-				$group,
481
-				array(
482
-					'name'       => __( 'Meals', 'lsx-health-plan' ),
483
-					'desc'       => __( 'Connect the meal(s) that apply to this section.', 'lsx-health-plan' ),
484
-					'id'         => 'connected_meals',
485
-					'type'       => 'post_search_ajax',
486
-					// Optional :
487
-					'limit'      => 15, // Limit selection to X items only (default 1)
488
-					'sortable'   => true, // Allow selected items to be sortable (default false)
489
-					'query_args' => array(
490
-						'post_type'      => array( 'meal' ),
491
-						'post_status'    => array( 'publish' ),
492
-						'posts_per_page' => -1,
493
-					),
494
-					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
495
-				)
496
-			);
497
-		}
498
-		if ( post_type_exists( 'tip' ) ) {
499
-			$cmb->add_group_field(
500
-				$group,
501
-				array(
502
-					'name'       => __( 'Tips', 'lsx-health-plan' ),
503
-					'id'         => 'connected_tips',
504
-					'desc'       => __( 'Connect the tip(s) that apply to this section.', 'lsx-health-plan' ),
505
-					'type'       => 'post_search_ajax',
506
-					// Optional :
507
-					'limit'      => 15,  // Limit selection to X items only (default 1)
508
-					'sortable'   => true,  // Allow selected items to be sortable (default false)
509
-					'query_args' => array(
510
-						'post_type'      => array( 'tip' ),
511
-						'post_status'    => array( 'publish' ),
512
-						'posts_per_page' => -1,
513
-					),
514
-					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
515
-				)
516
-			);
517
-		}
518
-	}
424
+               )
425
+          );
426
+
427
+          $cmb->add_group_field(
428
+               $group,
429
+               array(
430
+                    'name'       => __( 'Title', 'lsx-health-plan' ),
431
+                    'id'         => 'title',
432
+                    'type'       => 'text',
433
+                    'desc'       => __( 'e.g Day 1 / Week 1', 'lsx-health-plan' ),
434
+                    'classes'    => 'lsx-field-col  lsx-field-col-50',
435
+               )
436
+          );
437
+
438
+          $cmb->add_group_field(
439
+               $group,
440
+               array(
441
+                    'name'       => __( 'Group', 'lsx-health-plan' ),
442
+                    'id'         => 'group',
443
+                    'type'       => 'text',
444
+                    'desc'       => __( 'e.g Week 1 / January', 'lsx-health-plan' ),
445
+                    'classes'    => 'lsx-field-col  lsx-field-col-50',
446
+               )
447
+          );
448
+
449
+          $cmb->add_group_field(
450
+               $group,
451
+               array(
452
+                    'name' => __( 'Overview', 'lsx-health-plan' ),
453
+                    'id'   => 'description',
454
+                    'type' => 'wysiwyg',
455
+               )
456
+          );
457
+
458
+          if ( post_type_exists( 'workout' ) ) {
459
+               $cmb->add_group_field(
460
+                    $group,
461
+                    array(
462
+                         'name'       => __( 'Workouts', 'lsx-health-plan' ),
463
+                         'id'         => 'connected_workouts',
464
+                         'desc'       => __( 'Connect the workout(s) that apply to this section.', 'lsx-health-plan' ),
465
+                         'type'       => 'post_search_ajax',
466
+                         'limit'      => 15,
467
+                         'sortable'   => true,
468
+                         'query_args' => array(
469
+                              'post_type'      => array( 'workout' ),
470
+                              'post_status'    => array( 'publish' ),
471
+                              'posts_per_page' => -1,
472
+                         ),
473
+                         'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
474
+                    )
475
+               );
476
+          }
477
+
478
+          if ( post_type_exists( 'meal' ) ) {
479
+               $cmb->add_group_field(
480
+                    $group,
481
+                    array(
482
+                         'name'       => __( 'Meals', 'lsx-health-plan' ),
483
+                         'desc'       => __( 'Connect the meal(s) that apply to this section.', 'lsx-health-plan' ),
484
+                         'id'         => 'connected_meals',
485
+                         'type'       => 'post_search_ajax',
486
+                         // Optional :
487
+                         'limit'      => 15, // Limit selection to X items only (default 1)
488
+                         'sortable'   => true, // Allow selected items to be sortable (default false)
489
+                         'query_args' => array(
490
+                              'post_type'      => array( 'meal' ),
491
+                              'post_status'    => array( 'publish' ),
492
+                              'posts_per_page' => -1,
493
+                         ),
494
+                         'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
495
+                    )
496
+               );
497
+          }
498
+          if ( post_type_exists( 'tip' ) ) {
499
+               $cmb->add_group_field(
500
+                    $group,
501
+                    array(
502
+                         'name'       => __( 'Tips', 'lsx-health-plan' ),
503
+                         'id'         => 'connected_tips',
504
+                         'desc'       => __( 'Connect the tip(s) that apply to this section.', 'lsx-health-plan' ),
505
+                         'type'       => 'post_search_ajax',
506
+                         // Optional :
507
+                         'limit'      => 15,  // Limit selection to X items only (default 1)
508
+                         'sortable'   => true,  // Allow selected items to be sortable (default false)
509
+                         'query_args' => array(
510
+                              'post_type'      => array( 'tip' ),
511
+                              'post_status'    => array( 'publish' ),
512
+                              'posts_per_page' => -1,
513
+                         ),
514
+                         'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-33',
515
+                    )
516
+               );
517
+          }
518
+     }
519 519
 }
Please login to merge, or discard this patch.
includes/conditionals.php 2 patches
Spacing   +50 added lines, -50 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
  * @param string $post_id
12 12
  * @return boolean
13 13
  */
14
-function lsx_health_plan_has_warmup( $post_id = '' ) {
15
-	if ( '' === $post_id ) {
14
+function lsx_health_plan_has_warmup($post_id = '') {
15
+	if ('' === $post_id) {
16 16
 		$post_id = get_the_ID();
17 17
 	}
18
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' );
18
+	return \lsx_health_plan\functions\has_attached_post($post_id, 'plan_warmup');
19 19
 }
20 20
 
21 21
 /**
@@ -24,14 +24,14 @@  discard block
 block discarded – undo
24 24
  * @param string $post_id
25 25
  * @return boolean
26 26
  */
27
-function lsx_health_plan_has_workout( $post_id = '' ) {
28
-	if ( ! post_type_exists( 'workout' ) ) {
27
+function lsx_health_plan_has_workout($post_id = '') {
28
+	if ( ! post_type_exists('workout')) {
29 29
 		return false;
30 30
 	}
31
-	if ( '' === $post_id ) {
31
+	if ('' === $post_id) {
32 32
 		$post_id = get_the_ID();
33 33
 	}
34
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' );
34
+	return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_workouts');
35 35
 }
36 36
 
37 37
 /**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
  * @param string $post_id
41 41
  * @return boolean
42 42
  */
43
-function lsx_health_plan_has_meal( $post_id = '' ) {
44
-	if ( ! post_type_exists( 'meal' ) ) {
43
+function lsx_health_plan_has_meal($post_id = '') {
44
+	if ( ! post_type_exists('meal')) {
45 45
 		return false;
46 46
 	}
47
-	if ( '' === $post_id ) {
47
+	if ('' === $post_id) {
48 48
 		$post_id = get_the_ID();
49 49
 	}
50
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' );
50
+	return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_meals');
51 51
 }
52 52
 
53 53
 /**
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
  * @param string $post_id
57 57
  * @return boolean
58 58
  */
59
-function lsx_health_plan_has_recipe( $post_id = '' ) {
60
-	if ( ! post_type_exists( 'recipe' ) ) {
59
+function lsx_health_plan_has_recipe($post_id = '') {
60
+	if ( ! post_type_exists('recipe')) {
61 61
 		return false;
62 62
 	}
63
-	if ( '' === $post_id ) {
63
+	if ('' === $post_id) {
64 64
 		$post_id = get_the_ID();
65 65
 	}
66
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' );
66
+	return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_recipes');
67 67
 }
68 68
 
69 69
 /**
@@ -72,13 +72,13 @@  discard block
 block discarded – undo
72 72
  * @param string $post_id
73 73
  * @return boolean
74 74
  */
75
-function lsx_health_plan_has_downloads( $post_id = '' ) {
75
+function lsx_health_plan_has_downloads($post_id = '') {
76 76
 	$has_downloads = false;
77
-	if ( '' === $post_id ) {
77
+	if ('' === $post_id) {
78 78
 		$post_id = get_the_ID();
79 79
 	}
80
-	$downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id );
81
-	if ( ! empty( $downloads ) ) {
80
+	$downloads = \lsx_health_plan\functions\get_downloads('all', $post_id);
81
+	if ( ! empty($downloads)) {
82 82
 		$has_downloads = true;
83 83
 	}
84 84
 	return $has_downloads;
@@ -90,14 +90,14 @@  discard block
 block discarded – undo
90 90
  * @param string $post_id
91 91
  * @return boolean
92 92
  */
93
-function lsx_health_plan_has_tip( $post_id = '' ) {
94
-	if ( ! post_type_exists( 'tip' ) ) {
93
+function lsx_health_plan_has_tip($post_id = '') {
94
+	if ( ! post_type_exists('tip')) {
95 95
 		return false;
96 96
 	}
97
-	if ( '' === $post_id ) {
97
+	if ('' === $post_id) {
98 98
 		$post_id = get_the_ID();
99 99
 	}
100
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' );
100
+	return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_tips');
101 101
 }
102 102
 
103 103
 /**
@@ -106,14 +106,14 @@  discard block
 block discarded – undo
106 106
  * @param string $post_id
107 107
  * @return boolean
108 108
  */
109
-function lsx_health_plan_has_video( $post_id = '' ) {
110
-	if ( ! post_type_exists( 'video' ) ) {
109
+function lsx_health_plan_has_video($post_id = '') {
110
+	if ( ! post_type_exists('video')) {
111 111
 		return false;
112 112
 	}
113
-	if ( '' === $post_id ) {
113
+	if ('' === $post_id) {
114 114
 		$post_id = get_the_ID();
115 115
 	}
116
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' );
116
+	return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_videos');
117 117
 }
118 118
 
119 119
 /**
@@ -123,11 +123,11 @@  discard block
 block discarded – undo
123 123
  */
124 124
 function lsx_health_plan_user_has_purchase() {
125 125
 	$valid_order = false;
126
-	$product_id  = \lsx_health_plan\functions\get_option( 'membership_product', false );
126
+	$product_id  = \lsx_health_plan\functions\get_option('membership_product', false);
127 127
 
128
-	if ( is_user_logged_in() && false !== $product_id ) {
128
+	if (is_user_logged_in() && false !== $product_id) {
129 129
 		$current_user = wp_get_current_user();
130
-		if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) {
130
+		if (wc_customer_bought_product($current_user->user_email, $current_user->ID, $product_id)) {
131 131
 			$valid_order = true;
132 132
 		}
133 133
 	}
@@ -140,15 +140,15 @@  discard block
 block discarded – undo
140 140
  * @param string $post_id
141 141
  * @return boolean
142 142
  */
143
-function lsx_health_plan_is_current_tab( $needle = '' ) {
143
+function lsx_health_plan_is_current_tab($needle = '') {
144 144
 	$is_tab = false;
145
-	$plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false );
146
-	if ( false === $plan_slug ) {
145
+	$plan_slug = \lsx_health_plan\functions\get_option('my_plan_slug', false);
146
+	if (false === $plan_slug) {
147 147
 		$plan_slug = 'my-plan';
148 148
 	}
149
-	if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) {
150
-		$endpoint = get_query_var( 'endpoint' );
151
-		if ( false !== $endpoint && $needle === $endpoint ) {
149
+	if (is_singular('plan') || is_page($plan_slug)) {
150
+		$endpoint = get_query_var('endpoint');
151
+		if (false !== $endpoint && $needle === $endpoint) {
152 152
 			$is_tab = true;
153 153
 		}
154 154
 	}
@@ -161,14 +161,14 @@  discard block
 block discarded – undo
161 161
  * @param string $post_id
162 162
  * @return boolean
163 163
  */
164
-function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) {
164
+function lsx_health_plan_is_day_complete($post_id = '', $section_key = '') {
165 165
 	$is_complete = false;
166
-	if ( '' === $post_id ) {
166
+	if ('' === $post_id) {
167 167
 		$post_id = get_the_ID();
168 168
 	}
169
-	$key             = \lsx_health_plan\functions\plan\generate_section_id( $section_key );
170
-	$is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true );
171
-	if ( false !== $is_day_complete && '' !== $is_day_complete ) {
169
+	$key             = \lsx_health_plan\functions\plan\generate_section_id($section_key);
170
+	$is_day_complete = get_user_meta(get_current_user_id(), 'day_' . $key . '_complete', true);
171
+	if (false !== $is_day_complete && '' !== $is_day_complete) {
172 172
 		$is_complete = true;
173 173
 	}
174 174
 
@@ -186,11 +186,11 @@  discard block
 block discarded – undo
186 186
  * @param string $week The week name 'week-1'.
187 187
  * @return boolean
188 188
  */
189
-function lsx_health_plan_week_has_downloads( $week = '' ) {
189
+function lsx_health_plan_week_has_downloads($week = '') {
190 190
 	$has_downloads = false;
191
-	if ( '' !== $week ) {
192
-		$downloads = \lsx_health_plan\functions\get_weekly_downloads( $week );
193
-		if ( ! empty( $downloads ) ) {
191
+	if ('' !== $week) {
192
+		$downloads = \lsx_health_plan\functions\get_weekly_downloads($week);
193
+		if ( ! empty($downloads)) {
194 194
 			$has_downloads = true;
195 195
 		}
196 196
 	}
@@ -203,14 +203,14 @@  discard block
 block discarded – undo
203 203
  * @param string $post_id
204 204
  * @return boolean
205 205
  */
206
-function lsx_health_plan_has_tips( $post_id = '' ) {
206
+function lsx_health_plan_has_tips($post_id = '') {
207 207
 	$has_tips = false;
208
-	if ( '' === $post_id ) {
208
+	if ('' === $post_id) {
209 209
 		$post_id = get_the_ID();
210 210
 	}
211
-	$connected_tips = get_post_meta( get_the_ID(), 'connected_tips', true );
212
-	$connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips );
213
-	if ( ! empty( $connected_tips ) ) {
211
+	$connected_tips = get_post_meta(get_the_ID(), 'connected_tips', true);
212
+	$connected_tips = \lsx_health_plan\functions\check_posts_exist($connected_tips);
213
+	if ( ! empty($connected_tips)) {
214 214
 		$has_tips = true;
215 215
 	}
216 216
 	return $has_tips;
Please login to merge, or discard this patch.
Indentation   +99 added lines, -99 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@  discard block
 block discarded – undo
12 12
  * @return boolean
13 13
  */
14 14
 function lsx_health_plan_has_warmup( $post_id = '' ) {
15
-	if ( '' === $post_id ) {
16
-		$post_id = get_the_ID();
17
-	}
18
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' );
15
+     if ( '' === $post_id ) {
16
+          $post_id = get_the_ID();
17
+     }
18
+     return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' );
19 19
 }
20 20
 
21 21
 /**
@@ -25,13 +25,13 @@  discard block
 block discarded – undo
25 25
  * @return boolean
26 26
  */
27 27
 function lsx_health_plan_has_workout( $post_id = '' ) {
28
-	if ( ! post_type_exists( 'workout' ) ) {
29
-		return false;
30
-	}
31
-	if ( '' === $post_id ) {
32
-		$post_id = get_the_ID();
33
-	}
34
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' );
28
+     if ( ! post_type_exists( 'workout' ) ) {
29
+          return false;
30
+     }
31
+     if ( '' === $post_id ) {
32
+          $post_id = get_the_ID();
33
+     }
34
+     return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' );
35 35
 }
36 36
 
37 37
 /**
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
  * @return boolean
42 42
  */
43 43
 function lsx_health_plan_has_meal( $post_id = '' ) {
44
-	if ( ! post_type_exists( 'meal' ) ) {
45
-		return false;
46
-	}
47
-	if ( '' === $post_id ) {
48
-		$post_id = get_the_ID();
49
-	}
50
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' );
44
+     if ( ! post_type_exists( 'meal' ) ) {
45
+          return false;
46
+     }
47
+     if ( '' === $post_id ) {
48
+          $post_id = get_the_ID();
49
+     }
50
+     return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' );
51 51
 }
52 52
 
53 53
 /**
@@ -57,13 +57,13 @@  discard block
 block discarded – undo
57 57
  * @return boolean
58 58
  */
59 59
 function lsx_health_plan_has_recipe( $post_id = '' ) {
60
-	if ( ! post_type_exists( 'recipe' ) ) {
61
-		return false;
62
-	}
63
-	if ( '' === $post_id ) {
64
-		$post_id = get_the_ID();
65
-	}
66
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' );
60
+     if ( ! post_type_exists( 'recipe' ) ) {
61
+          return false;
62
+     }
63
+     if ( '' === $post_id ) {
64
+          $post_id = get_the_ID();
65
+     }
66
+     return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' );
67 67
 }
68 68
 
69 69
 /**
@@ -73,15 +73,15 @@  discard block
 block discarded – undo
73 73
  * @return boolean
74 74
  */
75 75
 function lsx_health_plan_has_downloads( $post_id = '' ) {
76
-	$has_downloads = false;
77
-	if ( '' === $post_id ) {
78
-		$post_id = get_the_ID();
79
-	}
80
-	$downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id );
81
-	if ( ! empty( $downloads ) ) {
82
-		$has_downloads = true;
83
-	}
84
-	return $has_downloads;
76
+     $has_downloads = false;
77
+     if ( '' === $post_id ) {
78
+          $post_id = get_the_ID();
79
+     }
80
+     $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id );
81
+     if ( ! empty( $downloads ) ) {
82
+          $has_downloads = true;
83
+     }
84
+     return $has_downloads;
85 85
 }
86 86
 
87 87
 /**
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
  * @return boolean
92 92
  */
93 93
 function lsx_health_plan_has_tip( $post_id = '' ) {
94
-	if ( ! post_type_exists( 'tip' ) ) {
95
-		return false;
96
-	}
97
-	if ( '' === $post_id ) {
98
-		$post_id = get_the_ID();
99
-	}
100
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' );
94
+     if ( ! post_type_exists( 'tip' ) ) {
95
+          return false;
96
+     }
97
+     if ( '' === $post_id ) {
98
+          $post_id = get_the_ID();
99
+     }
100
+     return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' );
101 101
 }
102 102
 
103 103
 /**
@@ -107,13 +107,13 @@  discard block
 block discarded – undo
107 107
  * @return boolean
108 108
  */
109 109
 function lsx_health_plan_has_video( $post_id = '' ) {
110
-	if ( ! post_type_exists( 'video' ) ) {
111
-		return false;
112
-	}
113
-	if ( '' === $post_id ) {
114
-		$post_id = get_the_ID();
115
-	}
116
-	return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' );
110
+     if ( ! post_type_exists( 'video' ) ) {
111
+          return false;
112
+     }
113
+     if ( '' === $post_id ) {
114
+          $post_id = get_the_ID();
115
+     }
116
+     return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' );
117 117
 }
118 118
 
119 119
 /**
@@ -122,16 +122,16 @@  discard block
 block discarded – undo
122 122
  * @return boolean
123 123
  */
124 124
 function lsx_health_plan_user_has_purchase() {
125
-	$valid_order = false;
126
-	$product_id  = \lsx_health_plan\functions\get_option( 'membership_product', false );
125
+     $valid_order = false;
126
+     $product_id  = \lsx_health_plan\functions\get_option( 'membership_product', false );
127 127
 
128
-	if ( is_user_logged_in() && false !== $product_id ) {
129
-		$current_user = wp_get_current_user();
130
-		if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) {
131
-			$valid_order = true;
132
-		}
133
-	}
134
-	return $valid_order;
128
+     if ( is_user_logged_in() && false !== $product_id ) {
129
+          $current_user = wp_get_current_user();
130
+          if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) {
131
+               $valid_order = true;
132
+          }
133
+     }
134
+     return $valid_order;
135 135
 }
136 136
 
137 137
 /**
@@ -141,18 +141,18 @@  discard block
 block discarded – undo
141 141
  * @return boolean
142 142
  */
143 143
 function lsx_health_plan_is_current_tab( $needle = '' ) {
144
-	$is_tab = false;
145
-	$plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false );
146
-	if ( false === $plan_slug ) {
147
-		$plan_slug = 'my-plan';
148
-	}
149
-	if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) {
150
-		$endpoint = get_query_var( 'endpoint' );
151
-		if ( false !== $endpoint && $needle === $endpoint ) {
152
-			$is_tab = true;
153
-		}
154
-	}
155
-	return $is_tab;
144
+     $is_tab = false;
145
+     $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false );
146
+     if ( false === $plan_slug ) {
147
+          $plan_slug = 'my-plan';
148
+     }
149
+     if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) {
150
+          $endpoint = get_query_var( 'endpoint' );
151
+          if ( false !== $endpoint && $needle === $endpoint ) {
152
+               $is_tab = true;
153
+          }
154
+     }
155
+     return $is_tab;
156 156
 }
157 157
 
158 158
 /**
@@ -162,22 +162,22 @@  discard block
 block discarded – undo
162 162
  * @return boolean
163 163
  */
164 164
 function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) {
165
-	$is_complete = false;
166
-	if ( '' === $post_id ) {
167
-		$post_id = get_the_ID();
168
-	}
169
-	$key             = \lsx_health_plan\functions\plan\generate_section_id( $section_key );
170
-	$is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true );
171
-	if ( false !== $is_day_complete && '' !== $is_day_complete ) {
172
-		$is_complete = true;
173
-	}
165
+     $is_complete = false;
166
+     if ( '' === $post_id ) {
167
+          $post_id = get_the_ID();
168
+     }
169
+     $key             = \lsx_health_plan\functions\plan\generate_section_id( $section_key );
170
+     $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true );
171
+     if ( false !== $is_day_complete && '' !== $is_day_complete ) {
172
+          $is_complete = true;
173
+     }
174 174
 
175
-	return $is_complete;
175
+     return $is_complete;
176 176
 }
177 177
 
178 178
 function lsx_health_plan_is_plan_complete() {
179
-	$complete = false;
180
-	return $complete;
179
+     $complete = false;
180
+     return $complete;
181 181
 }
182 182
 
183 183
 /**
@@ -187,14 +187,14 @@  discard block
 block discarded – undo
187 187
  * @return boolean
188 188
  */
189 189
 function lsx_health_plan_week_has_downloads( $week = '' ) {
190
-	$has_downloads = false;
191
-	if ( '' !== $week ) {
192
-		$downloads = \lsx_health_plan\functions\get_weekly_downloads( $week );
193
-		if ( ! empty( $downloads ) ) {
194
-			$has_downloads = true;
195
-		}
196
-	}
197
-	return $has_downloads;
190
+     $has_downloads = false;
191
+     if ( '' !== $week ) {
192
+          $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week );
193
+          if ( ! empty( $downloads ) ) {
194
+               $has_downloads = true;
195
+          }
196
+     }
197
+     return $has_downloads;
198 198
 }
199 199
 
200 200
 /**
@@ -204,14 +204,14 @@  discard block
 block discarded – undo
204 204
  * @return boolean
205 205
  */
206 206
 function lsx_health_plan_has_tips( $post_id = '' ) {
207
-	$has_tips = false;
208
-	if ( '' === $post_id ) {
209
-		$post_id = get_the_ID();
210
-	}
211
-	$connected_tips = get_post_meta( get_the_ID(), 'connected_tips', true );
212
-	$connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips );
213
-	if ( ! empty( $connected_tips ) ) {
214
-		$has_tips = true;
215
-	}
216
-	return $has_tips;
207
+     $has_tips = false;
208
+     if ( '' === $post_id ) {
209
+          $post_id = get_the_ID();
210
+     }
211
+     $connected_tips = get_post_meta( get_the_ID(), 'connected_tips', true );
212
+     $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips );
213
+     if ( ! empty( $connected_tips ) ) {
214
+          $has_tips = true;
215
+     }
216
+     return $has_tips;
217 217
 }
Please login to merge, or discard this patch.
templates/content-exercise.php 2 patches
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 $muscle_group  = lsx_health_plan_muscle_group_equipment();
11 11
 
12 12
 // Getting translated endpoint.
13
-$exercise = \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' );
13
+$exercise = \lsx_health_plan\functions\get_option('endpoint_exercise_single', 'exercise');
14 14
 
15
-$connected_members  = get_post_meta( get_the_ID(), ( $exercise . '_connected_team_member' ), true );
16
-$connected_articles = get_post_meta( get_the_ID(), ( $exercise . '_connected_articles' ), true );
15
+$connected_members  = get_post_meta(get_the_ID(), ($exercise . '_connected_team_member'), true);
16
+$connected_articles = get_post_meta(get_the_ID(), ($exercise . '_connected_articles'), true);
17 17
 
18 18
 $sharing = 'sharing-disabled';
19
-if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) :
19
+if (class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) :
20 20
 	$sharing = 'sharing-enabled';
21 21
 endif;
22 22
 
@@ -34,51 +34,51 @@  discard block
 block discarded – undo
34 34
 
35 35
 	<div id="single-exercise" class="entry-content">
36 36
 
37
-		<div class="exercise-title-section title-lined <?php echo esc_html( $sharing ); ?>">
38
-			<?php if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?>
37
+		<div class="exercise-title-section title-lined <?php echo esc_html($sharing); ?>">
38
+			<?php if (class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?>
39 39
 
40 40
 					<?php
41
-					if ( class_exists( 'LSX_Sharing' ) ) {
41
+					if (class_exists('LSX_Sharing')) {
42 42
 						lsx_content_sharing();
43 43
 					} else {
44
-						if ( function_exists( 'sharing_display' ) ) {
45
-							sharing_display( '', true );
44
+						if (function_exists('sharing_display')) {
45
+							sharing_display('', true);
46 46
 						}
47 47
 
48
-						if ( class_exists( 'Jetpack_Likes' ) ) {
48
+						if (class_exists('Jetpack_Likes')) {
49 49
 							$custom_likes = new Jetpack_Likes();
50
-							echo wp_kses_post( $custom_likes->post_likes( '' ) );
50
+							echo wp_kses_post($custom_likes->post_likes(''));
51 51
 						}
52 52
 					}
53 53
 					?>
54 54
 			<?php endif ?>
55 55
 
56
-			<?php lsx_health_plan_exercise_title( '<h2>', '</h2>' ); ?>
56
+			<?php lsx_health_plan_exercise_title('<h2>', '</h2>'); ?>
57 57
 		</div>
58
-		<?php echo wp_kses_post( lsx_hp_member_connected( $connected_members, 'exercise' ) ); ?>
58
+		<?php echo wp_kses_post(lsx_hp_member_connected($connected_members, 'exercise')); ?>
59 59
 		<div class="row">
60 60
 			<div class="col-md-6 exercise-image lsx-hp-shadow">
61 61
 
62 62
 			<?php
63 63
 			$lsx_hp = lsx_health_plan();
64 64
 
65
-			if ( $lsx_hp->frontend->gallery->has_gallery( get_the_ID() ) ) {
65
+			if ($lsx_hp->frontend->gallery->has_gallery(get_the_ID())) {
66 66
 				lsx_health_plan_gallery();
67 67
 			} else {
68 68
 				$featured_image = get_the_post_thumbnail();
69
-				if ( ! empty( $featured_image ) && '' !== $featured_image ) {
70
-					the_post_thumbnail( 'large', array(
69
+				if ( ! empty($featured_image) && '' !== $featured_image) {
70
+					the_post_thumbnail('large', array(
71 71
 						'class' => 'aligncenter',
72
-					) );
72
+					));
73 73
 				} else {
74 74
 					?>
75
-					<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
75
+					<img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>">
76 76
 					<?php
77 77
 				}
78 78
 			}
79 79
 			?>
80 80
 
81
-				<?php if ( ( ! empty( $exercise_type ) ) || ( ! empty( $equipment ) ) || ( ! empty( $muscle_group ) ) ) { ?>
81
+				<?php if (( ! empty($exercise_type)) || ( ! empty($equipment)) || ( ! empty($muscle_group))) { ?>
82 82
 					<div class="exercise-data">
83 83
 						<?php lsx_health_plan_exercise_data(); ?>
84 84
 					</div>
@@ -86,12 +86,12 @@  discard block
 block discarded – undo
86 86
 			</div>
87 87
 			<div class="col-md-6 exercise-content">
88 88
 				<?php the_content(); ?>
89
-				<?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?>
89
+				<?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?>
90 90
 				<div  class="back-plan-btn">
91 91
 				<?php
92
-				if ( function_exists( 'wc_get_page_id' ) ) {
92
+				if (function_exists('wc_get_page_id')) {
93 93
 					?>
94
-					<a class="btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'Back to my exercises', 'lsx-health-plan' ); ?></a>
94
+					<a class="btn" href="<?php echo wp_kses_post(get_permalink(wc_get_page_id('myaccount'))); ?>"><?php esc_html_e('Back to my exercises', 'lsx-health-plan'); ?></a>
95 95
 					<?php
96 96
 				}
97 97
 				?>
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
 </article><!-- #post-## -->
106 106
 
107 107
 <?php
108
-if ( ! empty( $connected_articles ) ) {
109
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
108
+if ( ! empty($connected_articles)) {
109
+	lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan'));
110 110
 }
111 111
 ?>
112 112
 
Please login to merge, or discard this patch.
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
 $sharing = 'sharing-disabled';
19 19
 if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) :
20
-	$sharing = 'sharing-enabled';
20
+     $sharing = 'sharing-enabled';
21 21
 endif;
22 22
 
23 23
 ?>
@@ -38,19 +38,19 @@  discard block
 block discarded – undo
38 38
 			<?php if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?>
39 39
 
40 40
 					<?php
41
-					if ( class_exists( 'LSX_Sharing' ) ) {
42
-						lsx_content_sharing();
43
-					} else {
44
-						if ( function_exists( 'sharing_display' ) ) {
45
-							sharing_display( '', true );
46
-						}
47
-
48
-						if ( class_exists( 'Jetpack_Likes' ) ) {
49
-							$custom_likes = new Jetpack_Likes();
50
-							echo wp_kses_post( $custom_likes->post_likes( '' ) );
51
-						}
52
-					}
53
-					?>
41
+                         if ( class_exists( 'LSX_Sharing' ) ) {
42
+                              lsx_content_sharing();
43
+                         } else {
44
+                              if ( function_exists( 'sharing_display' ) ) {
45
+                                   sharing_display( '', true );
46
+                              }
47
+
48
+                              if ( class_exists( 'Jetpack_Likes' ) ) {
49
+                                   $custom_likes = new Jetpack_Likes();
50
+                                   echo wp_kses_post( $custom_likes->post_likes( '' ) );
51
+                              }
52
+                         }
53
+                         ?>
54 54
 			<?php endif ?>
55 55
 
56 56
 			<?php lsx_health_plan_exercise_title( '<h2>', '</h2>' ); ?>
@@ -60,23 +60,23 @@  discard block
 block discarded – undo
60 60
 			<div class="col-md-6 exercise-image lsx-hp-shadow">
61 61
 
62 62
 			<?php
63
-			$lsx_hp = lsx_health_plan();
64
-
65
-			if ( $lsx_hp->frontend->gallery->has_gallery( get_the_ID() ) ) {
66
-				lsx_health_plan_gallery();
67
-			} else {
68
-				$featured_image = get_the_post_thumbnail();
69
-				if ( ! empty( $featured_image ) && '' !== $featured_image ) {
70
-					the_post_thumbnail( 'large', array(
71
-						'class' => 'aligncenter',
72
-					) );
73
-				} else {
74
-					?>
63
+               $lsx_hp = lsx_health_plan();
64
+
65
+               if ( $lsx_hp->frontend->gallery->has_gallery( get_the_ID() ) ) {
66
+                    lsx_health_plan_gallery();
67
+               } else {
68
+                    $featured_image = get_the_post_thumbnail();
69
+                    if ( ! empty( $featured_image ) && '' !== $featured_image ) {
70
+                         the_post_thumbnail( 'large', array(
71
+                              'class' => 'aligncenter',
72
+                         ) );
73
+                    } else {
74
+                         ?>
75 75
 					<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
76 76
 					<?php
77
-				}
78
-			}
79
-			?>
77
+                    }
78
+               }
79
+               ?>
80 80
 
81 81
 				<?php if ( ( ! empty( $exercise_type ) ) || ( ! empty( $equipment ) ) || ( ! empty( $muscle_group ) ) ) { ?>
82 82
 					<div class="exercise-data">
@@ -89,12 +89,12 @@  discard block
 block discarded – undo
89 89
 				<?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?>
90 90
 				<div  class="back-plan-btn">
91 91
 				<?php
92
-				if ( function_exists( 'wc_get_page_id' ) ) {
93
-					?>
92
+                    if ( function_exists( 'wc_get_page_id' ) ) {
93
+                         ?>
94 94
 					<a class="btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'Back to my exercises', 'lsx-health-plan' ); ?></a>
95 95
 					<?php
96
-				}
97
-				?>
96
+                    }
97
+                    ?>
98 98
 				</div>
99 99
 			</div>
100 100
 		</div>
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
 <?php
108 108
 if ( ! empty( $connected_articles ) ) {
109
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
109
+     lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
110 110
 }
111 111
 ?>
112 112
 
Please login to merge, or discard this patch.
templates/content-archive-recipe.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -12,31 +12,31 @@  discard block
 block discarded – undo
12 12
 <?php
13 13
 $column_class = '4';
14 14
 // Check for shortcode overrides.
15
-if ( null !== $shortcode_args ) {
16
-	if ( isset( $shortcode_args['columns'] ) ) {
15
+if (null !== $shortcode_args) {
16
+	if (isset($shortcode_args['columns'])) {
17 17
 		$column_class = $shortcode_args['columns'];
18
-		$column_class = \lsx_health_plan\functions\column_class( $column_class );
18
+		$column_class = \lsx_health_plan\functions\column_class($column_class);
19 19
 	}
20 20
 }
21 21
 ?>
22 22
 
23
-<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_class ); ?>">
23
+<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr($column_class); ?>">
24 24
 	<article class="lsx-slot box-shadow">
25 25
 		<?php lsx_entry_top(); ?>
26 26
 
27 27
 		<?php lsx_hp_recipe_plan_meta(); ?>
28 28
 
29 29
 		<div class="recipe-feature-img">
30
-			<a href="<?php echo esc_url( get_permalink() ); ?>">
30
+			<a href="<?php echo esc_url(get_permalink()); ?>">
31 31
 			<?php
32 32
 			$featured_image = get_the_post_thumbnail();
33
-			if ( ! empty( $featured_image ) && '' !== $featured_image ) {
34
-				the_post_thumbnail( 'lsx-thumbnail-square', array(
33
+			if ( ! empty($featured_image) && '' !== $featured_image) {
34
+				the_post_thumbnail('lsx-thumbnail-square', array(
35 35
 					'class' => 'aligncenter',
36
-				) );
36
+				));
37 37
 			} else {
38 38
 				?>
39
-				<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
39
+				<img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>">
40 40
 				<?php
41 41
 			}
42 42
 			?>
@@ -44,10 +44,10 @@  discard block
 block discarded – undo
44 44
 		</div>
45 45
 		<div class="content-box white-bg">
46 46
 			<?php lsx_health_plan_recipe_data(); ?>
47
-			<a class="recipe-title-link" href="<?php echo esc_url( get_permalink() ); ?>">
48
-				<?php the_title( '<h3 class="recipe-title">', '</h3>' ); ?>
47
+			<a class="recipe-title-link" href="<?php echo esc_url(get_permalink()); ?>">
48
+				<?php the_title('<h3 class="recipe-title">', '</h3>'); ?>
49 49
 			</a>
50
-			<a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'View Recipe', 'lsx-health-plan' ); ?></a>
50
+			<a href="<?php echo esc_url(get_permalink()); ?>" class="btn border-btn"><?php esc_html_e('View Recipe', 'lsx-health-plan'); ?></a>
51 51
 		</div>
52 52
 		<?php lsx_entry_bottom(); ?>
53 53
 	</article>
Please login to merge, or discard this patch.
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -13,10 +13,10 @@  discard block
 block discarded – undo
13 13
 $column_class = '4';
14 14
 // Check for shortcode overrides.
15 15
 if ( null !== $shortcode_args ) {
16
-	if ( isset( $shortcode_args['columns'] ) ) {
17
-		$column_class = $shortcode_args['columns'];
18
-		$column_class = \lsx_health_plan\functions\column_class( $column_class );
19
-	}
16
+     if ( isset( $shortcode_args['columns'] ) ) {
17
+          $column_class = $shortcode_args['columns'];
18
+          $column_class = \lsx_health_plan\functions\column_class( $column_class );
19
+     }
20 20
 }
21 21
 ?>
22 22
 
@@ -29,17 +29,17 @@  discard block
 block discarded – undo
29 29
 		<div class="recipe-feature-img">
30 30
 			<a href="<?php echo esc_url( get_permalink() ); ?>">
31 31
 			<?php
32
-			$featured_image = get_the_post_thumbnail();
33
-			if ( ! empty( $featured_image ) && '' !== $featured_image ) {
34
-				the_post_thumbnail( 'lsx-thumbnail-square', array(
35
-					'class' => 'aligncenter',
36
-				) );
37
-			} else {
38
-				?>
32
+               $featured_image = get_the_post_thumbnail();
33
+               if ( ! empty( $featured_image ) && '' !== $featured_image ) {
34
+                    the_post_thumbnail( 'lsx-thumbnail-square', array(
35
+                         'class' => 'aligncenter',
36
+                    ) );
37
+               } else {
38
+                    ?>
39 39
 				<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
40 40
 				<?php
41
-			}
42
-			?>
41
+               }
42
+               ?>
43 43
 			</a>
44 44
 		</div>
45 45
 		<div class="content-box white-bg">
Please login to merge, or discard this patch.
classes/post-types/class-exercise.php 2 patches
Spacing   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -31,22 +31,22 @@  discard block
 block discarded – undo
31 31
 	 */
32 32
 	public function __construct() {
33 33
 
34
-		if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
34
+		if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) {
35 35
 			// Post Type and Taxonomies.
36
-			add_action( 'init', array( $this, 'register_post_type' ) );
37
-			add_action( 'init', array( $this, 'exercise_type_taxonomy_setup' ) );
38
-			add_action( 'init', array( $this, 'equipment_taxonomy_setup' ) );
39
-			add_action( 'init', array( $this, 'muscle_group_taxonomy_setup' ) );
40
-			add_action( 'admin_menu', array( $this, 'register_menus' ) );
36
+			add_action('init', array($this, 'register_post_type'));
37
+			add_action('init', array($this, 'exercise_type_taxonomy_setup'));
38
+			add_action('init', array($this, 'equipment_taxonomy_setup'));
39
+			add_action('init', array($this, 'muscle_group_taxonomy_setup'));
40
+			add_action('admin_menu', array($this, 'register_menus'));
41 41
 
42 42
 			// Custom Fields.
43
-			add_action( 'cmb2_admin_init', array( $this, 'exercise_details' ), 8 );
44
-			add_action( 'cmb2_admin_init', array( $this, 'gallery_metabox' ), 9 );
45
-			add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
43
+			add_action('cmb2_admin_init', array($this, 'exercise_details'), 8);
44
+			add_action('cmb2_admin_init', array($this, 'gallery_metabox'), 9);
45
+			add_filter('lsx_health_plan_connections', array($this, 'enable_connections'), 10, 1);
46 46
 
47 47
 			// Template Redirects.
48
-			add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
49
-			add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
48
+			add_filter('lsx_health_plan_archive_template', array($this, 'enable_post_type'), 10, 1);
49
+			add_filter('lsx_health_plan_single_template', array($this, 'enable_post_type'), 10, 1);
50 50
 
51 51
 		}
52 52
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	 */
63 63
 	public static function get_instance() {
64 64
 		// If the single instance hasn't been set, set it now.
65
-		if ( null === self::$instance ) {
65
+		if (null === self::$instance) {
66 66
 			self::$instance = new self();
67 67
 		}
68 68
 		return self::$instance;
@@ -72,21 +72,21 @@  discard block
 block discarded – undo
72 72
 	 */
73 73
 	public function register_post_type() {
74 74
 		$labels = array(
75
-			'name'               => esc_html__( 'Exercises', 'lsx-health-plan' ),
76
-			'singular_name'      => esc_html__( 'Exercise', 'lsx-health-plan' ),
77
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
78
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
79
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
80
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
81
-			'all_items'          => esc_html__( 'All Exercises', 'lsx-health-plan' ),
82
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
83
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
84
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
85
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
75
+			'name'               => esc_html__('Exercises', 'lsx-health-plan'),
76
+			'singular_name'      => esc_html__('Exercise', 'lsx-health-plan'),
77
+			'add_new'            => esc_html_x('Add New', 'post type general name', 'lsx-health-plan'),
78
+			'add_new_item'       => esc_html__('Add New', 'lsx-health-plan'),
79
+			'edit_item'          => esc_html__('Edit', 'lsx-health-plan'),
80
+			'new_item'           => esc_html__('New', 'lsx-health-plan'),
81
+			'all_items'          => esc_html__('All Exercises', 'lsx-health-plan'),
82
+			'view_item'          => esc_html__('View', 'lsx-health-plan'),
83
+			'search_items'       => esc_html__('Search', 'lsx-health-plan'),
84
+			'not_found'          => esc_html__('None found', 'lsx-health-plan'),
85
+			'not_found_in_trash' => esc_html__('None found in Trash', 'lsx-health-plan'),
86 86
 			'parent_item_colon'  => '',
87
-			'menu_name'          => esc_html__( 'Exercises', 'lsx-health-plan' ),
87
+			'menu_name'          => esc_html__('Exercises', 'lsx-health-plan'),
88 88
 		);
89
-		$args   = array(
89
+		$args = array(
90 90
 			'labels'             => $labels,
91 91
 			'public'             => true,
92 92
 			'publicly_queryable' => true,
@@ -96,10 +96,10 @@  discard block
 block discarded – undo
96 96
 			'menu_icon'          => 'dashicons-universal-access',
97 97
 			'query_var'          => true,
98 98
 			'rewrite'            => array(
99
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ),
99
+				'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_single', 'exercise'),
100 100
 			),
101 101
 			'capability_type'    => 'page',
102
-			'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercises' ),
102
+			'has_archive'        => \lsx_health_plan\functions\get_option('endpoint_exercise_archive', 'exercises'),
103 103
 			'hierarchical'       => false,
104 104
 			'menu_position'      => null,
105 105
 			'supports'           => array(
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 				'custom-fields',
111 111
 			),
112 112
 		);
113
-		register_post_type( 'exercise', $args );
113
+		register_post_type('exercise', $args);
114 114
 	}
115 115
 
116 116
 	/**
@@ -120,17 +120,17 @@  discard block
 block discarded – undo
120 120
 	 */
121 121
 	public function exercise_type_taxonomy_setup() {
122 122
 		$labels = array(
123
-			'name'              => esc_html_x( 'Exercise Type', 'taxonomy general name', 'lsx-health-plan' ),
124
-			'singular_name'     => esc_html_x( 'Exercise Type', 'taxonomy singular name', 'lsx-health-plan' ),
125
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
126
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
127
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
128
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
129
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
130
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
131
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
132
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
133
-			'menu_name'         => esc_html__( 'Exercise Types', 'lsx-health-plan' ),
123
+			'name'              => esc_html_x('Exercise Type', 'taxonomy general name', 'lsx-health-plan'),
124
+			'singular_name'     => esc_html_x('Exercise Type', 'taxonomy singular name', 'lsx-health-plan'),
125
+			'search_items'      => esc_html__('Search', 'lsx-health-plan'),
126
+			'all_items'         => esc_html__('All', 'lsx-health-plan'),
127
+			'parent_item'       => esc_html__('Parent', 'lsx-health-plan'),
128
+			'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'),
129
+			'edit_item'         => esc_html__('Edit', 'lsx-health-plan'),
130
+			'update_item'       => esc_html__('Update', 'lsx-health-plan'),
131
+			'add_new_item'      => esc_html__('Add New', 'lsx-health-plan'),
132
+			'new_item_name'     => esc_html__('New Name', 'lsx-health-plan'),
133
+			'menu_name'         => esc_html__('Exercise Types', 'lsx-health-plan'),
134 134
 		);
135 135
 
136 136
 		$args = array(
@@ -140,12 +140,12 @@  discard block
 block discarded – undo
140 140
 			'show_admin_column' => true,
141 141
 			'query_var'         => true,
142 142
 			'rewrite'           => array(
143
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_type', 'exercise-type' ),
143
+				'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_type', 'exercise-type'),
144 144
 			),
145 145
 			'show_in_rest'      => true,
146 146
 		);
147 147
 
148
-		register_taxonomy( 'exercise-type', array( 'exercise' ), $args );
148
+		register_taxonomy('exercise-type', array('exercise'), $args);
149 149
 	}
150 150
 
151 151
 	/**
@@ -155,17 +155,17 @@  discard block
 block discarded – undo
155 155
 	 */
156 156
 	public function equipment_taxonomy_setup() {
157 157
 		$labels = array(
158
-			'name'              => esc_html_x( 'Equipment', 'taxonomy general name', 'lsx-health-plan' ),
159
-			'singular_name'     => esc_html_x( 'Equipment', 'taxonomy singular name', 'lsx-health-plan' ),
160
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
161
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
162
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
163
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
164
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
165
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
166
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
167
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
168
-			'menu_name'         => esc_html__( 'Equipment', 'lsx-health-plan' ),
158
+			'name'              => esc_html_x('Equipment', 'taxonomy general name', 'lsx-health-plan'),
159
+			'singular_name'     => esc_html_x('Equipment', 'taxonomy singular name', 'lsx-health-plan'),
160
+			'search_items'      => esc_html__('Search', 'lsx-health-plan'),
161
+			'all_items'         => esc_html__('All', 'lsx-health-plan'),
162
+			'parent_item'       => esc_html__('Parent', 'lsx-health-plan'),
163
+			'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'),
164
+			'edit_item'         => esc_html__('Edit', 'lsx-health-plan'),
165
+			'update_item'       => esc_html__('Update', 'lsx-health-plan'),
166
+			'add_new_item'      => esc_html__('Add New', 'lsx-health-plan'),
167
+			'new_item_name'     => esc_html__('New Name', 'lsx-health-plan'),
168
+			'menu_name'         => esc_html__('Equipment', 'lsx-health-plan'),
169 169
 		);
170 170
 
171 171
 		$args = array(
@@ -175,12 +175,12 @@  discard block
 block discarded – undo
175 175
 			'show_admin_column' => true,
176 176
 			'query_var'         => true,
177 177
 			'rewrite'           => array(
178
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_equipment', 'equipment' ),
178
+				'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_equipment', 'equipment'),
179 179
 			),
180 180
 			'show_in_rest'      => true,
181 181
 		);
182 182
 
183
-		register_taxonomy( 'equipment', array( 'exercise' ), $args );
183
+		register_taxonomy('equipment', array('exercise'), $args);
184 184
 	}
185 185
 
186 186
 	/**
@@ -190,17 +190,17 @@  discard block
 block discarded – undo
190 190
 	 */
191 191
 	public function muscle_group_taxonomy_setup() {
192 192
 		$labels = array(
193
-			'name'              => esc_html_x( 'Muscle Groups', 'taxonomy general name', 'lsx-health-plan' ),
194
-			'singular_name'     => esc_html_x( 'Muscle Group', 'taxonomy singular name', 'lsx-health-plan' ),
195
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
196
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
197
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
198
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
199
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
200
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
201
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
202
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
203
-			'menu_name'         => esc_html__( 'Muscle Groups', 'lsx-health-plan' ),
193
+			'name'              => esc_html_x('Muscle Groups', 'taxonomy general name', 'lsx-health-plan'),
194
+			'singular_name'     => esc_html_x('Muscle Group', 'taxonomy singular name', 'lsx-health-plan'),
195
+			'search_items'      => esc_html__('Search', 'lsx-health-plan'),
196
+			'all_items'         => esc_html__('All', 'lsx-health-plan'),
197
+			'parent_item'       => esc_html__('Parent', 'lsx-health-plan'),
198
+			'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'),
199
+			'edit_item'         => esc_html__('Edit', 'lsx-health-plan'),
200
+			'update_item'       => esc_html__('Update', 'lsx-health-plan'),
201
+			'add_new_item'      => esc_html__('Add New', 'lsx-health-plan'),
202
+			'new_item_name'     => esc_html__('New Name', 'lsx-health-plan'),
203
+			'menu_name'         => esc_html__('Muscle Groups', 'lsx-health-plan'),
204 204
 		);
205 205
 
206 206
 		$args = array(
@@ -210,12 +210,12 @@  discard block
 block discarded – undo
210 210
 			'show_admin_column' => true,
211 211
 			'query_var'         => true,
212 212
 			'rewrite'           => array(
213
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_muscle_group', 'muscle-group' ),
213
+				'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_muscle_group', 'muscle-group'),
214 214
 			),
215 215
 			'show_in_rest'      => true,
216 216
 		);
217 217
 
218
-		register_taxonomy( 'muscle-group', array( 'exercise' ), $args );
218
+		register_taxonomy('muscle-group', array('exercise'), $args);
219 219
 	}
220 220
 
221 221
 	/**
@@ -224,10 +224,10 @@  discard block
 block discarded – undo
224 224
 	 * @return void
225 225
 	 */
226 226
 	public function register_menus() {
227
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercises', 'lsx-health-plan' ), esc_html__( 'Exercises', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=exercise' );
228
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercise Types', 'lsx-health-plan' ), esc_html__( 'Exercise Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise' );
229
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Equipment', 'lsx-health-plan' ), esc_html__( 'Equipment', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise' );
230
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Muscle Groups', 'lsx-health-plan' ), esc_html__( 'Muscle Groups', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise' );
227
+		add_submenu_page('edit.php?post_type=workout', esc_html__('Exercises', 'lsx-health-plan'), esc_html__('Exercises', 'lsx-health-plan'), 'edit_posts', 'edit.php?post_type=exercise');
228
+		add_submenu_page('edit.php?post_type=workout', esc_html__('Exercise Types', 'lsx-health-plan'), esc_html__('Exercise Types', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise');
229
+		add_submenu_page('edit.php?post_type=workout', esc_html__('Equipment', 'lsx-health-plan'), esc_html__('Equipment', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise');
230
+		add_submenu_page('edit.php?post_type=workout', esc_html__('Muscle Groups', 'lsx-health-plan'), esc_html__('Muscle Groups', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise');
231 231
 	}
232 232
 
233 233
 	/**
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
 	 * @param array $post_types
237 237
 	 * @return array
238 238
 	 */
239
-	public function enable_post_type( $post_types = array() ) {
239
+	public function enable_post_type($post_types = array()) {
240 240
 		$post_types[] = $this->slug;
241 241
 		return $post_types;
242 242
 	}
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
 	 * @param array $connections
248 248
 	 * @return void
249 249
 	 */
250
-	public function enable_connections( $connections = array() ) {
250
+	public function enable_connections($connections = array()) {
251 251
 		$connections['exercise']['connected_workouts'] = 'connected_exercises';
252 252
 		$connections['workout']['connected_exercises'] = 'connected_workouts';
253 253
 		return $connections;
@@ -260,8 +260,8 @@  discard block
 block discarded – undo
260 260
 		$cmb = new_cmb2_box(
261 261
 			array(
262 262
 				'id'           => $this->slug . '_gallery_details_metabox',
263
-				'title'        => __( 'Exercise Gallery', 'lsx-health-plan' ),
264
-				'object_types' => array( $this->slug ),
263
+				'title'        => __('Exercise Gallery', 'lsx-health-plan'),
264
+				'object_types' => array($this->slug),
265 265
 				'context'      => 'normal',
266 266
 				'priority'     => 'low',
267 267
 				'show_names'   => true,
@@ -270,12 +270,12 @@  discard block
 block discarded – undo
270 270
 
271 271
 		$cmb->add_field(
272 272
 			array(
273
-				'name'    => __( 'Layout', 'lsx-health-plan' ),
273
+				'name'    => __('Layout', 'lsx-health-plan'),
274 274
 				'id'      => $this->slug . '_gallery_layout',
275 275
 				'type'    => 'radio',
276 276
 				'options' => array(
277
-					'slider' => __( 'Slider', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
278
-					'grid'   => __( 'Grid', 'lsx-health-plan' ),
277
+					'slider' => __('Slider', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number
278
+					'grid'   => __('Grid', 'lsx-health-plan'),
279 279
 				),
280 280
 				'default' => 'grid',
281 281
 			)
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
 
284 284
 		$cmb->add_field(
285 285
 			array(
286
-				'name'    => __( 'Grid Columns', 'lsx-health-plan' ),
286
+				'name'    => __('Grid Columns', 'lsx-health-plan'),
287 287
 				'id'      => $this->slug . '_gallery_columns',
288 288
 				'type'    => 'text',
289 289
 				'default' => '1',
@@ -296,9 +296,9 @@  discard block
 block discarded – undo
296 296
 				'id'      => $this->slug . '_gallery',
297 297
 				'type'    => 'group',
298 298
 				'options' => array(
299
-					'group_title'   => __( 'Gallery', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
300
-					'add_button'    => __( 'Add Item', 'lsx-health-plan' ),
301
-					'remove_button' => __( 'Remove Item', 'lsx-health-plan' ),
299
+					'group_title'   => __('Gallery', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number
300
+					'add_button'    => __('Add Item', 'lsx-health-plan'),
301
+					'remove_button' => __('Remove Item', 'lsx-health-plan'),
302 302
 					'sortable'      => true,
303 303
 				),
304 304
 				'classes' => 'lsx-admin-row',
@@ -309,13 +309,13 @@  discard block
 block discarded – undo
309 309
 		$cmb->add_group_field(
310 310
 			$gallery_group,
311 311
 			array(
312
-				'name'       => __( 'Image', 'lsx-health-plan' ),
312
+				'name'       => __('Image', 'lsx-health-plan'),
313 313
 				'id'         => $this->slug . '_gallery_image',
314 314
 				'type'       => 'file',
315 315
 				'text'       => array(
316
-					'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ),
316
+					'add_upload_file_text' => __('Add File', 'lsx-health-plan'),
317 317
 				),
318
-				'desc'       => __( 'Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan' ),
318
+				'desc'       => __('Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan'),
319 319
 				'query_args' => array(
320 320
 					'type' => array(
321 321
 						'image/gif',
@@ -331,20 +331,20 @@  discard block
 block discarded – undo
331 331
 		$cmb->add_group_field(
332 332
 			$gallery_group,
333 333
 			array(
334
-				'name'         => __( 'oEmbed', 'lsx-health-plan' ),
334
+				'name'         => __('oEmbed', 'lsx-health-plan'),
335 335
 				'id'           => $this->slug . '_gallery_embed',
336 336
 				'type'         => 'text',
337
-				'desc'         => __( 'Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan' ),
337
+				'desc'         => __('Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan'),
338 338
 			)
339 339
 		);
340 340
 
341 341
 		$cmb->add_group_field(
342 342
 			$gallery_group,
343 343
 			array(
344
-				'name'         => __( 'External Media', 'lsx-health-plan' ),
344
+				'name'         => __('External Media', 'lsx-health-plan'),
345 345
 				'id'           => $this->slug . '_gallery_external',
346 346
 				'type'         => 'textarea_code',
347
-				'desc'         => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: &lt;iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen&gt;&lt;/iframe&gt;', 'lsx-health-plan' ),
347
+				'desc'         => __('Drop in the iFrame embed code from Giphy in this field, i.e: &lt;iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen&gt;&lt;/iframe&gt;', 'lsx-health-plan'),
348 348
 			)
349 349
 		);
350 350
 	}
@@ -358,8 +358,8 @@  discard block
 block discarded – undo
358 358
 		$cmb = new_cmb2_box(
359 359
 			array(
360 360
 				'id'           => $this->slug . '_general_details_metabox',
361
-				'title'        => __( 'Details', 'lsx-health-plan' ),
362
-				'object_types' => array( $this->slug ),
361
+				'title'        => __('Details', 'lsx-health-plan'),
362
+				'object_types' => array($this->slug),
363 363
 				'context'      => 'normal',
364 364
 				'priority'     => 'high',
365 365
 				'show_names'   => true,
@@ -368,15 +368,15 @@  discard block
 block discarded – undo
368 368
 
369 369
 		$cmb->add_field(
370 370
 			array(
371
-				'name'    => __( 'Side', 'lsx-health-plan' ),
371
+				'name'    => __('Side', 'lsx-health-plan'),
372 372
 				'id'      => $this->slug . '_side',
373 373
 				'type'    => 'select',
374 374
 				'options' => array(
375
-					''      => __( 'Select', 'lsx-health-plan' ),
376
-					'left'  => __( 'Left', 'lsx-health-plan' ),
377
-					'right' => __( 'Right', 'lsx-health-plan' ),
375
+					''      => __('Select', 'lsx-health-plan'),
376
+					'left'  => __('Left', 'lsx-health-plan'),
377
+					'right' => __('Right', 'lsx-health-plan'),
378 378
 				),
379
-				'desc'    => __( 'Select which side this exercise uses. ', 'lsx-health-plan' ),
379
+				'desc'    => __('Select which side this exercise uses. ', 'lsx-health-plan'),
380 380
 			)
381 381
 		);
382 382
 	}
Please login to merge, or discard this patch.
Indentation   +372 added lines, -372 removed lines patch added patch discarded remove patch
@@ -8,376 +8,376 @@
 block discarded – undo
8 8
  */
9 9
 class Exercise {
10 10
 
11
-	/**
12
-	 * Holds class instance
13
-	 *
14
-	 * @since 1.0.0
15
-	 *
16
-	 * @var      object \lsx_health_plan\classes\Exercise()
17
-	 */
18
-	protected static $instance = null;
19
-
20
-	/**
21
-	 * Holds post_type slug used as an index
22
-	 *
23
-	 * @since 1.0.0
24
-	 *
25
-	 * @var      string
26
-	 */
27
-	public $slug = 'exercise';
28
-
29
-	/**
30
-	 * Constructor
31
-	 */
32
-	public function __construct() {
33
-
34
-		if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
35
-			// Post Type and Taxonomies.
36
-			add_action( 'init', array( $this, 'register_post_type' ) );
37
-			add_action( 'init', array( $this, 'exercise_type_taxonomy_setup' ) );
38
-			add_action( 'init', array( $this, 'equipment_taxonomy_setup' ) );
39
-			add_action( 'init', array( $this, 'muscle_group_taxonomy_setup' ) );
40
-			add_action( 'admin_menu', array( $this, 'register_menus' ) );
41
-
42
-			// Custom Fields.
43
-			add_action( 'cmb2_admin_init', array( $this, 'exercise_details' ), 8 );
44
-			add_action( 'cmb2_admin_init', array( $this, 'gallery_metabox' ), 9 );
45
-			add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
46
-
47
-			// Template Redirects.
48
-			add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
49
-			add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
50
-
51
-		}
52
-
53
-	}
54
-
55
-
56
-	/**
57
-	 * Return an instance of this class.
58
-	 *
59
-	 * @since 1.0.0
60
-	 *
61
-	 * @return    object \lsx_health_plan\classes\Exercise()    A single instance of this class.
62
-	 */
63
-	public static function get_instance() {
64
-		// If the single instance hasn't been set, set it now.
65
-		if ( null === self::$instance ) {
66
-			self::$instance = new self();
67
-		}
68
-		return self::$instance;
69
-	}
70
-	/**
71
-	 * Register the post type.
72
-	 */
73
-	public function register_post_type() {
74
-		$labels = array(
75
-			'name'               => esc_html__( 'Exercises', 'lsx-health-plan' ),
76
-			'singular_name'      => esc_html__( 'Exercise', 'lsx-health-plan' ),
77
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
78
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
79
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
80
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
81
-			'all_items'          => esc_html__( 'All Exercises', 'lsx-health-plan' ),
82
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
83
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
84
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
85
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
86
-			'parent_item_colon'  => '',
87
-			'menu_name'          => esc_html__( 'Exercises', 'lsx-health-plan' ),
88
-		);
89
-		$args   = array(
90
-			'labels'             => $labels,
91
-			'public'             => true,
92
-			'publicly_queryable' => true,
93
-			'show_ui'            => true,
94
-			'show_in_menu'       => false,
95
-			'show_in_rest'       => true,
96
-			'menu_icon'          => 'dashicons-universal-access',
97
-			'query_var'          => true,
98
-			'rewrite'            => array(
99
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ),
100
-			),
101
-			'capability_type'    => 'page',
102
-			'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercises' ),
103
-			'hierarchical'       => false,
104
-			'menu_position'      => null,
105
-			'supports'           => array(
106
-				'title',
107
-				'thumbnail',
108
-				'editor',
109
-				'excerpt',
110
-				'custom-fields',
111
-			),
112
-		);
113
-		register_post_type( 'exercise', $args );
114
-	}
115
-
116
-	/**
117
-	 * Register the Exercise taxonomy.
118
-	 *
119
-	 * @return void
120
-	 */
121
-	public function exercise_type_taxonomy_setup() {
122
-		$labels = array(
123
-			'name'              => esc_html_x( 'Exercise Type', 'taxonomy general name', 'lsx-health-plan' ),
124
-			'singular_name'     => esc_html_x( 'Exercise Type', 'taxonomy singular name', 'lsx-health-plan' ),
125
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
126
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
127
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
128
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
129
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
130
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
131
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
132
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
133
-			'menu_name'         => esc_html__( 'Exercise Types', 'lsx-health-plan' ),
134
-		);
135
-
136
-		$args = array(
137
-			'hierarchical'      => true,
138
-			'labels'            => $labels,
139
-			'show_ui'           => true,
140
-			'show_admin_column' => true,
141
-			'query_var'         => true,
142
-			'rewrite'           => array(
143
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_type', 'exercise-type' ),
144
-			),
145
-			'show_in_rest'      => true,
146
-		);
147
-
148
-		register_taxonomy( 'exercise-type', array( 'exercise' ), $args );
149
-	}
150
-
151
-	/**
152
-	 * Register the Exercise taxonomy.
153
-	 *
154
-	 * @return void
155
-	 */
156
-	public function equipment_taxonomy_setup() {
157
-		$labels = array(
158
-			'name'              => esc_html_x( 'Equipment', 'taxonomy general name', 'lsx-health-plan' ),
159
-			'singular_name'     => esc_html_x( 'Equipment', 'taxonomy singular name', 'lsx-health-plan' ),
160
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
161
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
162
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
163
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
164
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
165
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
166
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
167
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
168
-			'menu_name'         => esc_html__( 'Equipment', 'lsx-health-plan' ),
169
-		);
170
-
171
-		$args = array(
172
-			'hierarchical'      => true,
173
-			'labels'            => $labels,
174
-			'show_ui'           => true,
175
-			'show_admin_column' => true,
176
-			'query_var'         => true,
177
-			'rewrite'           => array(
178
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_equipment', 'equipment' ),
179
-			),
180
-			'show_in_rest'      => true,
181
-		);
182
-
183
-		register_taxonomy( 'equipment', array( 'exercise' ), $args );
184
-	}
185
-
186
-	/**
187
-	 * Register the Muscle Group taxonomy.
188
-	 *
189
-	 * @return void
190
-	 */
191
-	public function muscle_group_taxonomy_setup() {
192
-		$labels = array(
193
-			'name'              => esc_html_x( 'Muscle Groups', 'taxonomy general name', 'lsx-health-plan' ),
194
-			'singular_name'     => esc_html_x( 'Muscle Group', 'taxonomy singular name', 'lsx-health-plan' ),
195
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
196
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
197
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
198
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
199
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
200
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
201
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
202
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
203
-			'menu_name'         => esc_html__( 'Muscle Groups', 'lsx-health-plan' ),
204
-		);
205
-
206
-		$args = array(
207
-			'hierarchical'      => true,
208
-			'labels'            => $labels,
209
-			'show_ui'           => true,
210
-			'show_admin_column' => true,
211
-			'query_var'         => true,
212
-			'rewrite'           => array(
213
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_muscle_group', 'muscle-group' ),
214
-			),
215
-			'show_in_rest'      => true,
216
-		);
217
-
218
-		register_taxonomy( 'muscle-group', array( 'exercise' ), $args );
219
-	}
220
-
221
-	/**
222
-	 * Registers the Recipes under the Meals Post type menu.
223
-	 *
224
-	 * @return void
225
-	 */
226
-	public function register_menus() {
227
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercises', 'lsx-health-plan' ), esc_html__( 'Exercises', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=exercise' );
228
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercise Types', 'lsx-health-plan' ), esc_html__( 'Exercise Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise' );
229
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Equipment', 'lsx-health-plan' ), esc_html__( 'Equipment', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise' );
230
-		add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Muscle Groups', 'lsx-health-plan' ), esc_html__( 'Muscle Groups', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise' );
231
-	}
232
-
233
-	/**
234
-	 * Adds the post type to the different arrays.
235
-	 *
236
-	 * @param array $post_types
237
-	 * @return array
238
-	 */
239
-	public function enable_post_type( $post_types = array() ) {
240
-		$post_types[] = $this->slug;
241
-		return $post_types;
242
-	}
243
-
244
-	/**
245
-	 * Enables the Bi Directional relationships
246
-	 *
247
-	 * @param array $connections
248
-	 * @return void
249
-	 */
250
-	public function enable_connections( $connections = array() ) {
251
-		$connections['exercise']['connected_workouts'] = 'connected_exercises';
252
-		$connections['workout']['connected_exercises'] = 'connected_workouts';
253
-		return $connections;
254
-	}
255
-
256
-	/**
257
-	 * Define the metabox and field configurations.
258
-	 */
259
-	public function gallery_metabox() {
260
-		$cmb = new_cmb2_box(
261
-			array(
262
-				'id'           => $this->slug . '_gallery_details_metabox',
263
-				'title'        => __( 'Exercise Gallery', 'lsx-health-plan' ),
264
-				'object_types' => array( $this->slug ),
265
-				'context'      => 'normal',
266
-				'priority'     => 'low',
267
-				'show_names'   => true,
268
-			)
269
-		);
270
-
271
-		$cmb->add_field(
272
-			array(
273
-				'name'    => __( 'Layout', 'lsx-health-plan' ),
274
-				'id'      => $this->slug . '_gallery_layout',
275
-				'type'    => 'radio',
276
-				'options' => array(
277
-					'slider' => __( 'Slider', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
278
-					'grid'   => __( 'Grid', 'lsx-health-plan' ),
279
-				),
280
-				'default' => 'grid',
281
-			)
282
-		);
283
-
284
-		$cmb->add_field(
285
-			array(
286
-				'name'    => __( 'Grid Columns', 'lsx-health-plan' ),
287
-				'id'      => $this->slug . '_gallery_columns',
288
-				'type'    => 'text',
289
-				'default' => '1',
290
-			)
291
-		);
292
-
293
-		// Repeatable group.
294
-		$gallery_group = $cmb->add_field(
295
-			array(
296
-				'id'      => $this->slug . '_gallery',
297
-				'type'    => 'group',
298
-				'options' => array(
299
-					'group_title'   => __( 'Gallery', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
300
-					'add_button'    => __( 'Add Item', 'lsx-health-plan' ),
301
-					'remove_button' => __( 'Remove Item', 'lsx-health-plan' ),
302
-					'sortable'      => true,
303
-				),
304
-				'classes' => 'lsx-admin-row',
305
-			)
306
-		);
307
-
308
-		// Title.
309
-		$cmb->add_group_field(
310
-			$gallery_group,
311
-			array(
312
-				'name'       => __( 'Image', 'lsx-health-plan' ),
313
-				'id'         => $this->slug . '_gallery_image',
314
-				'type'       => 'file',
315
-				'text'       => array(
316
-					'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ),
317
-				),
318
-				'desc'       => __( 'Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan' ),
319
-				'query_args' => array(
320
-					'type' => array(
321
-						'image/gif',
322
-						'image/jpeg',
323
-						'image/png',
324
-					),
325
-				),
326
-				'preview_size' => 'lsx-thumbnail-wide',
327
-			)
328
-		);
329
-
330
-		// Title.
331
-		$cmb->add_group_field(
332
-			$gallery_group,
333
-			array(
334
-				'name'         => __( 'oEmbed', 'lsx-health-plan' ),
335
-				'id'           => $this->slug . '_gallery_embed',
336
-				'type'         => 'text',
337
-				'desc'         => __( 'Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan' ),
338
-			)
339
-		);
340
-
341
-		$cmb->add_group_field(
342
-			$gallery_group,
343
-			array(
344
-				'name'         => __( 'External Media', 'lsx-health-plan' ),
345
-				'id'           => $this->slug . '_gallery_external',
346
-				'type'         => 'textarea_code',
347
-				'desc'         => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: &lt;iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen&gt;&lt;/iframe&gt;', 'lsx-health-plan' ),
348
-			)
349
-		);
350
-	}
351
-
352
-	/**
353
-	 * Registers the general settings for the exercise.
354
-	 *
355
-	 * @return void
356
-	 */
357
-	public function exercise_details() {
358
-		$cmb = new_cmb2_box(
359
-			array(
360
-				'id'           => $this->slug . '_general_details_metabox',
361
-				'title'        => __( 'Details', 'lsx-health-plan' ),
362
-				'object_types' => array( $this->slug ),
363
-				'context'      => 'normal',
364
-				'priority'     => 'high',
365
-				'show_names'   => true,
366
-			)
367
-		);
368
-
369
-		$cmb->add_field(
370
-			array(
371
-				'name'    => __( 'Side', 'lsx-health-plan' ),
372
-				'id'      => $this->slug . '_side',
373
-				'type'    => 'select',
374
-				'options' => array(
375
-					''      => __( 'Select', 'lsx-health-plan' ),
376
-					'left'  => __( 'Left', 'lsx-health-plan' ),
377
-					'right' => __( 'Right', 'lsx-health-plan' ),
378
-				),
379
-				'desc'    => __( 'Select which side this exercise uses. ', 'lsx-health-plan' ),
380
-			)
381
-		);
382
-	}
11
+     /**
12
+      * Holds class instance
13
+      *
14
+      * @since 1.0.0
15
+      *
16
+      * @var      object \lsx_health_plan\classes\Exercise()
17
+      */
18
+     protected static $instance = null;
19
+
20
+     /**
21
+      * Holds post_type slug used as an index
22
+      *
23
+      * @since 1.0.0
24
+      *
25
+      * @var      string
26
+      */
27
+     public $slug = 'exercise';
28
+
29
+     /**
30
+      * Constructor
31
+      */
32
+     public function __construct() {
33
+
34
+          if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
35
+               // Post Type and Taxonomies.
36
+               add_action( 'init', array( $this, 'register_post_type' ) );
37
+               add_action( 'init', array( $this, 'exercise_type_taxonomy_setup' ) );
38
+               add_action( 'init', array( $this, 'equipment_taxonomy_setup' ) );
39
+               add_action( 'init', array( $this, 'muscle_group_taxonomy_setup' ) );
40
+               add_action( 'admin_menu', array( $this, 'register_menus' ) );
41
+
42
+               // Custom Fields.
43
+               add_action( 'cmb2_admin_init', array( $this, 'exercise_details' ), 8 );
44
+               add_action( 'cmb2_admin_init', array( $this, 'gallery_metabox' ), 9 );
45
+               add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
46
+
47
+               // Template Redirects.
48
+               add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
49
+               add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
50
+
51
+          }
52
+
53
+     }
54
+
55
+
56
+     /**
57
+      * Return an instance of this class.
58
+      *
59
+      * @since 1.0.0
60
+      *
61
+      * @return    object \lsx_health_plan\classes\Exercise()    A single instance of this class.
62
+      */
63
+     public static function get_instance() {
64
+          // If the single instance hasn't been set, set it now.
65
+          if ( null === self::$instance ) {
66
+               self::$instance = new self();
67
+          }
68
+          return self::$instance;
69
+     }
70
+     /**
71
+      * Register the post type.
72
+      */
73
+     public function register_post_type() {
74
+          $labels = array(
75
+               'name'               => esc_html__( 'Exercises', 'lsx-health-plan' ),
76
+               'singular_name'      => esc_html__( 'Exercise', 'lsx-health-plan' ),
77
+               'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
78
+               'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
79
+               'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
80
+               'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
81
+               'all_items'          => esc_html__( 'All Exercises', 'lsx-health-plan' ),
82
+               'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
83
+               'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
84
+               'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
85
+               'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
86
+               'parent_item_colon'  => '',
87
+               'menu_name'          => esc_html__( 'Exercises', 'lsx-health-plan' ),
88
+          );
89
+          $args   = array(
90
+               'labels'             => $labels,
91
+               'public'             => true,
92
+               'publicly_queryable' => true,
93
+               'show_ui'            => true,
94
+               'show_in_menu'       => false,
95
+               'show_in_rest'       => true,
96
+               'menu_icon'          => 'dashicons-universal-access',
97
+               'query_var'          => true,
98
+               'rewrite'            => array(
99
+                    'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ),
100
+               ),
101
+               'capability_type'    => 'page',
102
+               'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercises' ),
103
+               'hierarchical'       => false,
104
+               'menu_position'      => null,
105
+               'supports'           => array(
106
+                    'title',
107
+                    'thumbnail',
108
+                    'editor',
109
+                    'excerpt',
110
+                    'custom-fields',
111
+               ),
112
+          );
113
+          register_post_type( 'exercise', $args );
114
+     }
115
+
116
+     /**
117
+      * Register the Exercise taxonomy.
118
+      *
119
+      * @return void
120
+      */
121
+     public function exercise_type_taxonomy_setup() {
122
+          $labels = array(
123
+               'name'              => esc_html_x( 'Exercise Type', 'taxonomy general name', 'lsx-health-plan' ),
124
+               'singular_name'     => esc_html_x( 'Exercise Type', 'taxonomy singular name', 'lsx-health-plan' ),
125
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
126
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
127
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
128
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
129
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
130
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
131
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
132
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
133
+               'menu_name'         => esc_html__( 'Exercise Types', 'lsx-health-plan' ),
134
+          );
135
+
136
+          $args = array(
137
+               'hierarchical'      => true,
138
+               'labels'            => $labels,
139
+               'show_ui'           => true,
140
+               'show_admin_column' => true,
141
+               'query_var'         => true,
142
+               'rewrite'           => array(
143
+                    'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_type', 'exercise-type' ),
144
+               ),
145
+               'show_in_rest'      => true,
146
+          );
147
+
148
+          register_taxonomy( 'exercise-type', array( 'exercise' ), $args );
149
+     }
150
+
151
+     /**
152
+      * Register the Exercise taxonomy.
153
+      *
154
+      * @return void
155
+      */
156
+     public function equipment_taxonomy_setup() {
157
+          $labels = array(
158
+               'name'              => esc_html_x( 'Equipment', 'taxonomy general name', 'lsx-health-plan' ),
159
+               'singular_name'     => esc_html_x( 'Equipment', 'taxonomy singular name', 'lsx-health-plan' ),
160
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
161
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
162
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
163
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
164
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
165
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
166
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
167
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
168
+               'menu_name'         => esc_html__( 'Equipment', 'lsx-health-plan' ),
169
+          );
170
+
171
+          $args = array(
172
+               'hierarchical'      => true,
173
+               'labels'            => $labels,
174
+               'show_ui'           => true,
175
+               'show_admin_column' => true,
176
+               'query_var'         => true,
177
+               'rewrite'           => array(
178
+                    'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_equipment', 'equipment' ),
179
+               ),
180
+               'show_in_rest'      => true,
181
+          );
182
+
183
+          register_taxonomy( 'equipment', array( 'exercise' ), $args );
184
+     }
185
+
186
+     /**
187
+      * Register the Muscle Group taxonomy.
188
+      *
189
+      * @return void
190
+      */
191
+     public function muscle_group_taxonomy_setup() {
192
+          $labels = array(
193
+               'name'              => esc_html_x( 'Muscle Groups', 'taxonomy general name', 'lsx-health-plan' ),
194
+               'singular_name'     => esc_html_x( 'Muscle Group', 'taxonomy singular name', 'lsx-health-plan' ),
195
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
196
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
197
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
198
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
199
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
200
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
201
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
202
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
203
+               'menu_name'         => esc_html__( 'Muscle Groups', 'lsx-health-plan' ),
204
+          );
205
+
206
+          $args = array(
207
+               'hierarchical'      => true,
208
+               'labels'            => $labels,
209
+               'show_ui'           => true,
210
+               'show_admin_column' => true,
211
+               'query_var'         => true,
212
+               'rewrite'           => array(
213
+                    'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_muscle_group', 'muscle-group' ),
214
+               ),
215
+               'show_in_rest'      => true,
216
+          );
217
+
218
+          register_taxonomy( 'muscle-group', array( 'exercise' ), $args );
219
+     }
220
+
221
+     /**
222
+      * Registers the Recipes under the Meals Post type menu.
223
+      *
224
+      * @return void
225
+      */
226
+     public function register_menus() {
227
+          add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercises', 'lsx-health-plan' ), esc_html__( 'Exercises', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=exercise' );
228
+          add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercise Types', 'lsx-health-plan' ), esc_html__( 'Exercise Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise' );
229
+          add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Equipment', 'lsx-health-plan' ), esc_html__( 'Equipment', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise' );
230
+          add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Muscle Groups', 'lsx-health-plan' ), esc_html__( 'Muscle Groups', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise' );
231
+     }
232
+
233
+     /**
234
+      * Adds the post type to the different arrays.
235
+      *
236
+      * @param array $post_types
237
+      * @return array
238
+      */
239
+     public function enable_post_type( $post_types = array() ) {
240
+          $post_types[] = $this->slug;
241
+          return $post_types;
242
+     }
243
+
244
+     /**
245
+      * Enables the Bi Directional relationships
246
+      *
247
+      * @param array $connections
248
+      * @return void
249
+      */
250
+     public function enable_connections( $connections = array() ) {
251
+          $connections['exercise']['connected_workouts'] = 'connected_exercises';
252
+          $connections['workout']['connected_exercises'] = 'connected_workouts';
253
+          return $connections;
254
+     }
255
+
256
+     /**
257
+      * Define the metabox and field configurations.
258
+      */
259
+     public function gallery_metabox() {
260
+          $cmb = new_cmb2_box(
261
+               array(
262
+                    'id'           => $this->slug . '_gallery_details_metabox',
263
+                    'title'        => __( 'Exercise Gallery', 'lsx-health-plan' ),
264
+                    'object_types' => array( $this->slug ),
265
+                    'context'      => 'normal',
266
+                    'priority'     => 'low',
267
+                    'show_names'   => true,
268
+               )
269
+          );
270
+
271
+          $cmb->add_field(
272
+               array(
273
+                    'name'    => __( 'Layout', 'lsx-health-plan' ),
274
+                    'id'      => $this->slug . '_gallery_layout',
275
+                    'type'    => 'radio',
276
+                    'options' => array(
277
+                         'slider' => __( 'Slider', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
278
+                         'grid'   => __( 'Grid', 'lsx-health-plan' ),
279
+                    ),
280
+                    'default' => 'grid',
281
+               )
282
+          );
283
+
284
+          $cmb->add_field(
285
+               array(
286
+                    'name'    => __( 'Grid Columns', 'lsx-health-plan' ),
287
+                    'id'      => $this->slug . '_gallery_columns',
288
+                    'type'    => 'text',
289
+                    'default' => '1',
290
+               )
291
+          );
292
+
293
+          // Repeatable group.
294
+          $gallery_group = $cmb->add_field(
295
+               array(
296
+                    'id'      => $this->slug . '_gallery',
297
+                    'type'    => 'group',
298
+                    'options' => array(
299
+                         'group_title'   => __( 'Gallery', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
300
+                         'add_button'    => __( 'Add Item', 'lsx-health-plan' ),
301
+                         'remove_button' => __( 'Remove Item', 'lsx-health-plan' ),
302
+                         'sortable'      => true,
303
+                    ),
304
+                    'classes' => 'lsx-admin-row',
305
+               )
306
+          );
307
+
308
+          // Title.
309
+          $cmb->add_group_field(
310
+               $gallery_group,
311
+               array(
312
+                    'name'       => __( 'Image', 'lsx-health-plan' ),
313
+                    'id'         => $this->slug . '_gallery_image',
314
+                    'type'       => 'file',
315
+                    'text'       => array(
316
+                         'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ),
317
+                    ),
318
+                    'desc'       => __( 'Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan' ),
319
+                    'query_args' => array(
320
+                         'type' => array(
321
+                              'image/gif',
322
+                              'image/jpeg',
323
+                              'image/png',
324
+                         ),
325
+                    ),
326
+                    'preview_size' => 'lsx-thumbnail-wide',
327
+               )
328
+          );
329
+
330
+          // Title.
331
+          $cmb->add_group_field(
332
+               $gallery_group,
333
+               array(
334
+                    'name'         => __( 'oEmbed', 'lsx-health-plan' ),
335
+                    'id'           => $this->slug . '_gallery_embed',
336
+                    'type'         => 'text',
337
+                    'desc'         => __( 'Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan' ),
338
+               )
339
+          );
340
+
341
+          $cmb->add_group_field(
342
+               $gallery_group,
343
+               array(
344
+                    'name'         => __( 'External Media', 'lsx-health-plan' ),
345
+                    'id'           => $this->slug . '_gallery_external',
346
+                    'type'         => 'textarea_code',
347
+                    'desc'         => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: &lt;iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen&gt;&lt;/iframe&gt;', 'lsx-health-plan' ),
348
+               )
349
+          );
350
+     }
351
+
352
+     /**
353
+      * Registers the general settings for the exercise.
354
+      *
355
+      * @return void
356
+      */
357
+     public function exercise_details() {
358
+          $cmb = new_cmb2_box(
359
+               array(
360
+                    'id'           => $this->slug . '_general_details_metabox',
361
+                    'title'        => __( 'Details', 'lsx-health-plan' ),
362
+                    'object_types' => array( $this->slug ),
363
+                    'context'      => 'normal',
364
+                    'priority'     => 'high',
365
+                    'show_names'   => true,
366
+               )
367
+          );
368
+
369
+          $cmb->add_field(
370
+               array(
371
+                    'name'    => __( 'Side', 'lsx-health-plan' ),
372
+                    'id'      => $this->slug . '_side',
373
+                    'type'    => 'select',
374
+                    'options' => array(
375
+                         ''      => __( 'Select', 'lsx-health-plan' ),
376
+                         'left'  => __( 'Left', 'lsx-health-plan' ),
377
+                         'right' => __( 'Right', 'lsx-health-plan' ),
378
+                    ),
379
+                    'desc'    => __( 'Select which side this exercise uses. ', 'lsx-health-plan' ),
380
+               )
381
+          );
382
+     }
383 383
 }
Please login to merge, or discard this patch.
templates/content-archive-workout.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -22,17 +22,17 @@  discard block
 block discarded – undo
22 22
 			<?php } ?>
23 23
 			<a href="<?php echo esc_url( get_permalink() ); ?>">
24 24
 			<?php
25
-			$featured_image = get_the_post_thumbnail();
26
-			if ( ! empty( $featured_image ) && '' !== $featured_image ) {
27
-				the_post_thumbnail( 'lsx-thumbnail-square', array(
28
-					'class' => 'aligncenter',
29
-				) );
30
-			} else {
31
-				?>
25
+               $featured_image = get_the_post_thumbnail();
26
+               if ( ! empty( $featured_image ) && '' !== $featured_image ) {
27
+                    the_post_thumbnail( 'lsx-thumbnail-square', array(
28
+                         'class' => 'aligncenter',
29
+                    ) );
30
+               } else {
31
+                    ?>
32 32
 				<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
33 33
 				<?php
34
-			}
35
-			?>
34
+               }
35
+               ?>
36 36
 			</a>
37 37
 		</div>
38 38
 		<div class="content-box workout-content-box white-bg">
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
 				<?php the_title( '<h3 class="workout-title">', '</h3>' ); ?>
41 41
 			</a>
42 42
 			<?php
43
-			if ( ! has_excerpt() ) {
44
-				$content = wp_trim_words( get_the_content(), 20 );
45
-				$content = '<p>' . $content . '</p>';
46
-			} else {
47
-				$content = apply_filters( 'the_excerpt', get_the_excerpt() );
48
-			}
49
-			echo wp_kses_post( $content );
50
-			?>
43
+               if ( ! has_excerpt() ) {
44
+                    $content = wp_trim_words( get_the_content(), 20 );
45
+                    $content = '<p>' . $content . '</p>';
46
+               } else {
47
+                    $content = apply_filters( 'the_excerpt', get_the_excerpt() );
48
+               }
49
+               echo wp_kses_post( $content );
50
+               ?>
51 51
 			<a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See workout', 'lsx-health-plan' ); ?></a>
52 52
 		</div>
53 53
 		<?php lsx_entry_bottom(); ?>
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
  * @package lsx-health-plan
6 6
  */
7 7
 
8
-$featured = get_post_meta( get_the_ID(), 'workout_featured_workout', true );
8
+$featured = get_post_meta(get_the_ID(), 'workout_featured_workout', true);
9 9
 ?>
10 10
 
11 11
 <?php lsx_entry_before(); ?>
@@ -17,38 +17,38 @@  discard block
 block discarded – undo
17 17
 		<?php lsx_hp_exercise_plan_meta(); ?>
18 18
 
19 19
 		<div class="workout-feature-img">
20
-			<?php if ( $featured ) { ?>
21
-				<span class="featured-workout"><?php lsx_get_svg_icon( 'icon-featured.svg' ); ?></span>
20
+			<?php if ($featured) { ?>
21
+				<span class="featured-workout"><?php lsx_get_svg_icon('icon-featured.svg'); ?></span>
22 22
 			<?php } ?>
23
-			<a href="<?php echo esc_url( get_permalink() ); ?>">
23
+			<a href="<?php echo esc_url(get_permalink()); ?>">
24 24
 			<?php
25 25
 			$featured_image = get_the_post_thumbnail();
26
-			if ( ! empty( $featured_image ) && '' !== $featured_image ) {
27
-				the_post_thumbnail( 'lsx-thumbnail-square', array(
26
+			if ( ! empty($featured_image) && '' !== $featured_image) {
27
+				the_post_thumbnail('lsx-thumbnail-square', array(
28 28
 					'class' => 'aligncenter',
29
-				) );
29
+				));
30 30
 			} else {
31 31
 				?>
32
-				<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
32
+				<img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>">
33 33
 				<?php
34 34
 			}
35 35
 			?>
36 36
 			</a>
37 37
 		</div>
38 38
 		<div class="content-box workout-content-box white-bg">
39
-			<a href="<?php echo esc_url( get_permalink() ); ?>">
40
-				<?php the_title( '<h3 class="workout-title">', '</h3>' ); ?>
39
+			<a href="<?php echo esc_url(get_permalink()); ?>">
40
+				<?php the_title('<h3 class="workout-title">', '</h3>'); ?>
41 41
 			</a>
42 42
 			<?php
43
-			if ( ! has_excerpt() ) {
44
-				$content = wp_trim_words( get_the_content(), 20 );
43
+			if ( ! has_excerpt()) {
44
+				$content = wp_trim_words(get_the_content(), 20);
45 45
 				$content = '<p>' . $content . '</p>';
46 46
 			} else {
47
-				$content = apply_filters( 'the_excerpt', get_the_excerpt() );
47
+				$content = apply_filters('the_excerpt', get_the_excerpt());
48 48
 			}
49
-			echo wp_kses_post( $content );
49
+			echo wp_kses_post($content);
50 50
 			?>
51
-			<a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See workout', 'lsx-health-plan' ); ?></a>
51
+			<a href="<?php echo esc_url(get_permalink()); ?>" class="btn border-btn"><?php esc_html_e('See workout', 'lsx-health-plan'); ?></a>
52 52
 		</div>
53 53
 		<?php lsx_entry_bottom(); ?>
54 54
 	</article>
Please login to merge, or discard this patch.
templates/partials/workout-grid.php 2 patches
Indentation   +128 added lines, -128 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 global $group_name,$shortcode_args;
9 9
 $groups = get_post_meta( get_the_ID(), $group_name, true );
10 10
 if ( is_singular( 'workout' ) ) {
11
-	$groups = get_post_meta( get_queried_object_id(), $group_name, true );
11
+     $groups = get_post_meta( get_queried_object_id(), $group_name, true );
12 12
 }
13 13
 
14 14
 $link_setting          = \lsx_health_plan\functions\get_option( 'workout_tab_link', 'single' );
@@ -18,167 +18,167 @@  discard block
 block discarded – undo
18 18
 
19 19
 // Check for shortcode overrides.
20 20
 if ( null !== $shortcode_args ) {
21
-	if ( isset( $shortcode_args['link'] ) ) {
22
-		$link_setting = $shortcode_args['link'];
23
-	}
24
-	if ( isset( $shortcode_args['description'] ) ) {
25
-		$content_setting = $shortcode_args['description'];
26
-	}
27
-	if ( isset( $shortcode_args['columns'] ) ) {
28
-		$column_setting = $shortcode_args['columns'];
29
-		$column_setting = \lsx_health_plan\functions\column_class( $column_setting );
30
-	}
31
-	if ( isset( $shortcode_args['modal_content'] ) ) {
32
-		$modal_content_setting = $shortcode_args['modal_content'];
33
-	}
21
+     if ( isset( $shortcode_args['link'] ) ) {
22
+          $link_setting = $shortcode_args['link'];
23
+     }
24
+     if ( isset( $shortcode_args['description'] ) ) {
25
+          $content_setting = $shortcode_args['description'];
26
+     }
27
+     if ( isset( $shortcode_args['columns'] ) ) {
28
+          $column_setting = $shortcode_args['columns'];
29
+          $column_setting = \lsx_health_plan\functions\column_class( $column_setting );
30
+     }
31
+     if ( isset( $shortcode_args['modal_content'] ) ) {
32
+          $modal_content_setting = $shortcode_args['modal_content'];
33
+     }
34 34
 }
35 35
 
36 36
 $modal_args = array(
37
-	'modal_content' => $modal_content_setting,
37
+     'modal_content' => $modal_content_setting,
38 38
 );
39 39
 
40 40
 $counter = 1;
41 41
 
42 42
 if ( ! empty( $groups ) ) {
43
-	?>
43
+     ?>
44 44
 	<div class="set-grid">
45 45
 		<div class="workout-grid row">
46 46
 			<?php
47
-			foreach ( $groups as $group ) {
48
-				$connected_exercise = false;
49
-				if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) {
50
-					$connected_exercise = true;
51
-				}
52
-
53
-				if ( ! $connected_exercise ) {
54
-					$group['connected_exercises'] = '';
55
-				}
56
-
57
-				if ( ( $connected_exercise ) || ( ( ! $connected_exercise ) && '' !== $group['alt_title'] && isset( $group['alt_title'] ) ) ) {
58
-
59
-					$alt_title = '';
60
-					if ( isset( $group['alt_title'] ) && '' !== $group['alt_title'] ) {
61
-						$alt_title = '<span class="alt-title">' . esc_html( $group['alt_title'] ) . '</span>';
62
-					}
63
-
64
-					$alt_description = '';
65
-					if ( isset( $group['alt_description'] ) && '' !== $group['alt_description'] ) {
66
-						$alt_description = '<span class="alt-description">' . esc_html( $group['alt_description'] ) . '</span>';
67
-					}
68
-
69
-					$alt_image = '';
70
-					if ( isset( $group['exercise_alt_thumbnail'] ) && '' !== $group['exercise_alt_thumbnail'] ) {
71
-						$alt_image = $group['exercise_alt_thumbnail'];
72
-					}
73
-
74
-					$reps = '';
75
-					if ( isset( $group['reps'] ) && '' !== $group['reps'] ) {
76
-						$reps = '<span class="reps">' . esc_html( $group['reps'] ) . '</span>';
77
-					}
78
-					$class_excerpt = 'no-excerpt';
79
-					if ( 'excerpt' === $content_setting ) {
80
-						$class_excerpt = 'has-excerpt';
81
-					}
82
-					// Setup our link and content.
83
-					switch ( $link_setting ) {
84
-						case 'single':
85
-							$link_html  = '<a href="' . get_permalink( $group['connected_exercises'] ) . '">';
86
-							$link_close = '</a>';
87
-							break;
88
-
89
-						case 'modal':
90
-							if ( ( '' !== $alt_title ) || ( '' !== $alt_description ) || ( '' !== $alt_image ) ) {
91
-								$link_html  = '<a class="alt-modal" data-toggle="modal" href="#workout-alt-exercise-modal-' . $group['connected_exercises'] . '">';
92
-								$link_close = '</a>';
93
-								// We call the button to register the alt modal, but we do not output it.
94
-								lsx_health_plan_workout_exercise_alt_button( $group['connected_exercises'], $group, false, $modal_args, $alt_title, $alt_description, $alt_image );
95
-							} else {
96
-								$link_html  = '<a data-toggle="modal" href="#workout-exercise-modal-' . $group['connected_exercises'] . '">';
97
-								$link_close = '</a>';
98
-								// We call the button to register the modal, but we do not output it.
99
-								lsx_health_plan_workout_exercise_button( $group['connected_exercises'], $group, false, $modal_args );
100
-							}
101
-
102
-							break;
103
-
104
-						case 'none':
105
-						default:
106
-							$link_html  = '';
107
-							$link_close = '';
108
-							break;
109
-					}
110
-					?>
47
+               foreach ( $groups as $group ) {
48
+                    $connected_exercise = false;
49
+                    if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) {
50
+                         $connected_exercise = true;
51
+                    }
52
+
53
+                    if ( ! $connected_exercise ) {
54
+                         $group['connected_exercises'] = '';
55
+                    }
56
+
57
+                    if ( ( $connected_exercise ) || ( ( ! $connected_exercise ) && '' !== $group['alt_title'] && isset( $group['alt_title'] ) ) ) {
58
+
59
+                         $alt_title = '';
60
+                         if ( isset( $group['alt_title'] ) && '' !== $group['alt_title'] ) {
61
+                              $alt_title = '<span class="alt-title">' . esc_html( $group['alt_title'] ) . '</span>';
62
+                         }
63
+
64
+                         $alt_description = '';
65
+                         if ( isset( $group['alt_description'] ) && '' !== $group['alt_description'] ) {
66
+                              $alt_description = '<span class="alt-description">' . esc_html( $group['alt_description'] ) . '</span>';
67
+                         }
68
+
69
+                         $alt_image = '';
70
+                         if ( isset( $group['exercise_alt_thumbnail'] ) && '' !== $group['exercise_alt_thumbnail'] ) {
71
+                              $alt_image = $group['exercise_alt_thumbnail'];
72
+                         }
73
+
74
+                         $reps = '';
75
+                         if ( isset( $group['reps'] ) && '' !== $group['reps'] ) {
76
+                              $reps = '<span class="reps">' . esc_html( $group['reps'] ) . '</span>';
77
+                         }
78
+                         $class_excerpt = 'no-excerpt';
79
+                         if ( 'excerpt' === $content_setting ) {
80
+                              $class_excerpt = 'has-excerpt';
81
+                         }
82
+                         // Setup our link and content.
83
+                         switch ( $link_setting ) {
84
+                              case 'single':
85
+                                   $link_html  = '<a href="' . get_permalink( $group['connected_exercises'] ) . '">';
86
+                                   $link_close = '</a>';
87
+                                   break;
88
+
89
+                              case 'modal':
90
+                                   if ( ( '' !== $alt_title ) || ( '' !== $alt_description ) || ( '' !== $alt_image ) ) {
91
+                                        $link_html  = '<a class="alt-modal" data-toggle="modal" href="#workout-alt-exercise-modal-' . $group['connected_exercises'] . '">';
92
+                                        $link_close = '</a>';
93
+                                        // We call the button to register the alt modal, but we do not output it.
94
+                                        lsx_health_plan_workout_exercise_alt_button( $group['connected_exercises'], $group, false, $modal_args, $alt_title, $alt_description, $alt_image );
95
+                                   } else {
96
+                                        $link_html  = '<a data-toggle="modal" href="#workout-exercise-modal-' . $group['connected_exercises'] . '">';
97
+                                        $link_close = '</a>';
98
+                                        // We call the button to register the modal, but we do not output it.
99
+                                        lsx_health_plan_workout_exercise_button( $group['connected_exercises'], $group, false, $modal_args );
100
+                                   }
101
+
102
+                                   break;
103
+
104
+                              case 'none':
105
+                              default:
106
+                                   $link_html  = '';
107
+                                   $link_close = '';
108
+                                   break;
109
+                         }
110
+                         ?>
111 111
 					<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_setting ); ?>">
112 112
 						<article class="lsx-slot box-shadow">
113 113
 							<div class="exercise-feature-img">
114 114
 								<span class="exercise-counter"><?php echo esc_html( $counter ); ?>.</span>
115 115
 								<?php echo wp_kses_post( $link_html ); ?>
116 116
 									<?php
117
-									$thumbnail_args = array(
118
-										'class' => 'aligncenter',
119
-									);
120
-									$featured_image = get_the_post_thumbnail( $group['connected_exercises'], 'medium', $thumbnail_args );
121
-									if ( $alt_image ) {
122
-										$featured_image = '<img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '">';
123
-									}
124
-									if ( ! empty( $featured_image ) && '' !== $featured_image ) {
125
-										echo wp_kses_post( $featured_image );
126
-									} else {
127
-										?>
117
+                                             $thumbnail_args = array(
118
+                                                  'class' => 'aligncenter',
119
+                                             );
120
+                                             $featured_image = get_the_post_thumbnail( $group['connected_exercises'], 'medium', $thumbnail_args );
121
+                                             if ( $alt_image ) {
122
+                                                  $featured_image = '<img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '">';
123
+                                             }
124
+                                             if ( ! empty( $featured_image ) && '' !== $featured_image ) {
125
+                                                  echo wp_kses_post( $featured_image );
126
+                                             } else {
127
+                                                  ?>
128 128
 										<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __DIR__ ) . '../assets/images/placeholder.jpg' ); ?>">
129 129
 										<?php
130
-									}
131
-									?>
130
+                                             }
131
+                                             ?>
132 132
 								<?php echo wp_kses_post( $link_close ); ?>
133 133
 							</div>
134 134
 							<div class="content-box exercise-content-box white-bg">
135 135
 								<h3 class="content-box-title <?php echo esc_html( $class_excerpt ); ?>">
136 136
 									<?php echo wp_kses_post( $link_html ); ?>
137 137
 											<?php
138
-											$exercise_title = lsx_health_plan_exercise_title( '', '', false, $group['connected_exercises'] );
139
-											if ( '' !== $alt_title ) {
140
-												$exercise_title = $alt_title;
141
-											}
142
-											echo wp_kses_post( $exercise_title );
143
-											?>
138
+                                                       $exercise_title = lsx_health_plan_exercise_title( '', '', false, $group['connected_exercises'] );
139
+                                                       if ( '' !== $alt_title ) {
140
+                                                            $exercise_title = $alt_title;
141
+                                                       }
142
+                                                       echo wp_kses_post( $exercise_title );
143
+                                                       ?>
144 144
 										</a>
145 145
 									<?php echo wp_kses_post( $link_close ); ?>
146 146
 								</h3>
147 147
 								<?php
148
-								if ( '' !== $content_setting ) {
149
-									?>
148
+                                        if ( '' !== $content_setting ) {
149
+                                             ?>
150 150
 									<p class="lsx-exercises-excerpt">
151 151
 										<?php
152
-										if ( 'excerpt' === $content_setting ) {
153
-											$excerpt = \lsx_health_plan\functions\hp_excerpt( $group['connected_exercises'] );
154
-
155
-											if ( '' !== $alt_description ) {
156
-												$excerpt = $alt_description;
157
-											}
158
-											echo wp_kses_post( $excerpt );
159
-										}
160
-										if ( 'full' === $content_setting ) {
161
-											echo wp_kses_post( get_the_content( null, null, $group['connected_exercises'] ) );
162
-										}
163
-										?>
152
+                                                  if ( 'excerpt' === $content_setting ) {
153
+                                                       $excerpt = \lsx_health_plan\functions\hp_excerpt( $group['connected_exercises'] );
154
+
155
+                                                       if ( '' !== $alt_description ) {
156
+                                                            $excerpt = $alt_description;
157
+                                                       }
158
+                                                       echo wp_kses_post( $excerpt );
159
+                                                  }
160
+                                                  if ( 'full' === $content_setting ) {
161
+                                                       echo wp_kses_post( get_the_content( null, null, $group['connected_exercises'] ) );
162
+                                                  }
163
+                                                  ?>
164 164
 									</p>
165 165
 									<?php
166
-								}
167
-								?>
166
+                                        }
167
+                                        ?>
168 168
 								<?php
169
-								$repsclass = '';
170
-								if ( '' !== $reps ) {
171
-									$repsclass = 'have-reps';
172
-								}
173
-								?>
169
+                                        $repsclass = '';
170
+                                        if ( '' !== $reps ) {
171
+                                             $repsclass = 'have-reps';
172
+                                        }
173
+                                        ?>
174 174
 								<div class="reps-container <?php echo esc_html( $repsclass ); ?>">
175 175
 									<?php
176
-									if ( '' !== $reps ) {
177
-									?>
176
+                                             if ( '' !== $reps ) {
177
+                                             ?>
178 178
 										<?php echo wp_kses_post( $reps ); ?>
179 179
 									<?php
180
-									}
181
-									?>
180
+                                             }
181
+                                             ?>
182 182
 									<?php if ( ( '' !== $link_html ) && ( $connected_exercise ) ) { ?>
183 183
 										<?php echo wp_kses_post( str_replace( '<a', '<a class="btn-simple" ', $link_html ) ); ?>
184 184
 										<?php echo wp_kses_post( $link_close ); ?>
@@ -188,10 +188,10 @@  discard block
 block discarded – undo
188 188
 						</article>
189 189
 					</div>
190 190
 					<?php
191
-					$counter ++;
192
-				}
193
-			}
194
-			?>
191
+                         $counter ++;
192
+                    }
193
+               }
194
+               ?>
195 195
 		</div>
196 196
 	</div>
197 197
 	<?php
Please login to merge, or discard this patch.
Spacing   +62 added lines, -62 removed lines patch added patch discarded remove patch
@@ -5,30 +5,30 @@  discard block
 block discarded – undo
5 5
  * @package lsx-health-plan
6 6
  */
7 7
 
8
-global $group_name,$shortcode_args;
9
-$groups = get_post_meta( get_the_ID(), $group_name, true );
10
-if ( is_singular( 'workout' ) ) {
11
-	$groups = get_post_meta( get_queried_object_id(), $group_name, true );
8
+global $group_name, $shortcode_args;
9
+$groups = get_post_meta(get_the_ID(), $group_name, true);
10
+if (is_singular('workout')) {
11
+	$groups = get_post_meta(get_queried_object_id(), $group_name, true);
12 12
 }
13 13
 
14
-$link_setting          = \lsx_health_plan\functions\get_option( 'workout_tab_link', 'single' );
15
-$modal_content_setting = \lsx_health_plan\functions\get_option( 'workout_tab_modal_content', 'excerpt' );
16
-$content_setting       = \lsx_health_plan\functions\get_option( 'workout_tab_content', '' );
17
-$column_setting        = \lsx_health_plan\functions\get_option( 'workout_tab_columns', '4' );
14
+$link_setting          = \lsx_health_plan\functions\get_option('workout_tab_link', 'single');
15
+$modal_content_setting = \lsx_health_plan\functions\get_option('workout_tab_modal_content', 'excerpt');
16
+$content_setting       = \lsx_health_plan\functions\get_option('workout_tab_content', '');
17
+$column_setting        = \lsx_health_plan\functions\get_option('workout_tab_columns', '4');
18 18
 
19 19
 // Check for shortcode overrides.
20
-if ( null !== $shortcode_args ) {
21
-	if ( isset( $shortcode_args['link'] ) ) {
20
+if (null !== $shortcode_args) {
21
+	if (isset($shortcode_args['link'])) {
22 22
 		$link_setting = $shortcode_args['link'];
23 23
 	}
24
-	if ( isset( $shortcode_args['description'] ) ) {
24
+	if (isset($shortcode_args['description'])) {
25 25
 		$content_setting = $shortcode_args['description'];
26 26
 	}
27
-	if ( isset( $shortcode_args['columns'] ) ) {
27
+	if (isset($shortcode_args['columns'])) {
28 28
 		$column_setting = $shortcode_args['columns'];
29
-		$column_setting = \lsx_health_plan\functions\column_class( $column_setting );
29
+		$column_setting = \lsx_health_plan\functions\column_class($column_setting);
30 30
 	}
31
-	if ( isset( $shortcode_args['modal_content'] ) ) {
31
+	if (isset($shortcode_args['modal_content'])) {
32 32
 		$modal_content_setting = $shortcode_args['modal_content'];
33 33
 	}
34 34
 }
@@ -39,64 +39,64 @@  discard block
 block discarded – undo
39 39
 
40 40
 $counter = 1;
41 41
 
42
-if ( ! empty( $groups ) ) {
42
+if ( ! empty($groups)) {
43 43
 	?>
44 44
 	<div class="set-grid">
45 45
 		<div class="workout-grid row">
46 46
 			<?php
47
-			foreach ( $groups as $group ) {
47
+			foreach ($groups as $group) {
48 48
 				$connected_exercise = false;
49
-				if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) {
49
+				if (isset($group['connected_exercises']) && '' !== $group['connected_exercises']) {
50 50
 					$connected_exercise = true;
51 51
 				}
52 52
 
53
-				if ( ! $connected_exercise ) {
53
+				if ( ! $connected_exercise) {
54 54
 					$group['connected_exercises'] = '';
55 55
 				}
56 56
 
57
-				if ( ( $connected_exercise ) || ( ( ! $connected_exercise ) && '' !== $group['alt_title'] && isset( $group['alt_title'] ) ) ) {
57
+				if (($connected_exercise) || (( ! $connected_exercise) && '' !== $group['alt_title'] && isset($group['alt_title']))) {
58 58
 
59 59
 					$alt_title = '';
60
-					if ( isset( $group['alt_title'] ) && '' !== $group['alt_title'] ) {
61
-						$alt_title = '<span class="alt-title">' . esc_html( $group['alt_title'] ) . '</span>';
60
+					if (isset($group['alt_title']) && '' !== $group['alt_title']) {
61
+						$alt_title = '<span class="alt-title">' . esc_html($group['alt_title']) . '</span>';
62 62
 					}
63 63
 
64 64
 					$alt_description = '';
65
-					if ( isset( $group['alt_description'] ) && '' !== $group['alt_description'] ) {
66
-						$alt_description = '<span class="alt-description">' . esc_html( $group['alt_description'] ) . '</span>';
65
+					if (isset($group['alt_description']) && '' !== $group['alt_description']) {
66
+						$alt_description = '<span class="alt-description">' . esc_html($group['alt_description']) . '</span>';
67 67
 					}
68 68
 
69 69
 					$alt_image = '';
70
-					if ( isset( $group['exercise_alt_thumbnail'] ) && '' !== $group['exercise_alt_thumbnail'] ) {
70
+					if (isset($group['exercise_alt_thumbnail']) && '' !== $group['exercise_alt_thumbnail']) {
71 71
 						$alt_image = $group['exercise_alt_thumbnail'];
72 72
 					}
73 73
 
74 74
 					$reps = '';
75
-					if ( isset( $group['reps'] ) && '' !== $group['reps'] ) {
76
-						$reps = '<span class="reps">' . esc_html( $group['reps'] ) . '</span>';
75
+					if (isset($group['reps']) && '' !== $group['reps']) {
76
+						$reps = '<span class="reps">' . esc_html($group['reps']) . '</span>';
77 77
 					}
78 78
 					$class_excerpt = 'no-excerpt';
79
-					if ( 'excerpt' === $content_setting ) {
79
+					if ('excerpt' === $content_setting) {
80 80
 						$class_excerpt = 'has-excerpt';
81 81
 					}
82 82
 					// Setup our link and content.
83
-					switch ( $link_setting ) {
83
+					switch ($link_setting) {
84 84
 						case 'single':
85
-							$link_html  = '<a href="' . get_permalink( $group['connected_exercises'] ) . '">';
85
+							$link_html  = '<a href="' . get_permalink($group['connected_exercises']) . '">';
86 86
 							$link_close = '</a>';
87 87
 							break;
88 88
 
89 89
 						case 'modal':
90
-							if ( ( '' !== $alt_title ) || ( '' !== $alt_description ) || ( '' !== $alt_image ) ) {
90
+							if (('' !== $alt_title) || ('' !== $alt_description) || ('' !== $alt_image)) {
91 91
 								$link_html  = '<a class="alt-modal" data-toggle="modal" href="#workout-alt-exercise-modal-' . $group['connected_exercises'] . '">';
92 92
 								$link_close = '</a>';
93 93
 								// We call the button to register the alt modal, but we do not output it.
94
-								lsx_health_plan_workout_exercise_alt_button( $group['connected_exercises'], $group, false, $modal_args, $alt_title, $alt_description, $alt_image );
94
+								lsx_health_plan_workout_exercise_alt_button($group['connected_exercises'], $group, false, $modal_args, $alt_title, $alt_description, $alt_image);
95 95
 							} else {
96 96
 								$link_html  = '<a data-toggle="modal" href="#workout-exercise-modal-' . $group['connected_exercises'] . '">';
97 97
 								$link_close = '</a>';
98 98
 								// We call the button to register the modal, but we do not output it.
99
-								lsx_health_plan_workout_exercise_button( $group['connected_exercises'], $group, false, $modal_args );
99
+								lsx_health_plan_workout_exercise_button($group['connected_exercises'], $group, false, $modal_args);
100 100
 							}
101 101
 
102 102
 							break;
@@ -108,57 +108,57 @@  discard block
 block discarded – undo
108 108
 							break;
109 109
 					}
110 110
 					?>
111
-					<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_setting ); ?>">
111
+					<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr($column_setting); ?>">
112 112
 						<article class="lsx-slot box-shadow">
113 113
 							<div class="exercise-feature-img">
114
-								<span class="exercise-counter"><?php echo esc_html( $counter ); ?>.</span>
115
-								<?php echo wp_kses_post( $link_html ); ?>
114
+								<span class="exercise-counter"><?php echo esc_html($counter); ?>.</span>
115
+								<?php echo wp_kses_post($link_html); ?>
116 116
 									<?php
117 117
 									$thumbnail_args = array(
118 118
 										'class' => 'aligncenter',
119 119
 									);
120
-									$featured_image = get_the_post_thumbnail( $group['connected_exercises'], 'medium', $thumbnail_args );
121
-									if ( $alt_image ) {
120
+									$featured_image = get_the_post_thumbnail($group['connected_exercises'], 'medium', $thumbnail_args);
121
+									if ($alt_image) {
122 122
 										$featured_image = '<img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '">';
123 123
 									}
124
-									if ( ! empty( $featured_image ) && '' !== $featured_image ) {
125
-										echo wp_kses_post( $featured_image );
124
+									if ( ! empty($featured_image) && '' !== $featured_image) {
125
+										echo wp_kses_post($featured_image);
126 126
 									} else {
127 127
 										?>
128
-										<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __DIR__ ) . '../assets/images/placeholder.jpg' ); ?>">
128
+										<img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__DIR__) . '../assets/images/placeholder.jpg'); ?>">
129 129
 										<?php
130 130
 									}
131 131
 									?>
132
-								<?php echo wp_kses_post( $link_close ); ?>
132
+								<?php echo wp_kses_post($link_close); ?>
133 133
 							</div>
134 134
 							<div class="content-box exercise-content-box white-bg">
135
-								<h3 class="content-box-title <?php echo esc_html( $class_excerpt ); ?>">
136
-									<?php echo wp_kses_post( $link_html ); ?>
135
+								<h3 class="content-box-title <?php echo esc_html($class_excerpt); ?>">
136
+									<?php echo wp_kses_post($link_html); ?>
137 137
 											<?php
138
-											$exercise_title = lsx_health_plan_exercise_title( '', '', false, $group['connected_exercises'] );
139
-											if ( '' !== $alt_title ) {
138
+											$exercise_title = lsx_health_plan_exercise_title('', '', false, $group['connected_exercises']);
139
+											if ('' !== $alt_title) {
140 140
 												$exercise_title = $alt_title;
141 141
 											}
142
-											echo wp_kses_post( $exercise_title );
142
+											echo wp_kses_post($exercise_title);
143 143
 											?>
144 144
 										</a>
145
-									<?php echo wp_kses_post( $link_close ); ?>
145
+									<?php echo wp_kses_post($link_close); ?>
146 146
 								</h3>
147 147
 								<?php
148
-								if ( '' !== $content_setting ) {
148
+								if ('' !== $content_setting) {
149 149
 									?>
150 150
 									<p class="lsx-exercises-excerpt">
151 151
 										<?php
152
-										if ( 'excerpt' === $content_setting ) {
153
-											$excerpt = \lsx_health_plan\functions\hp_excerpt( $group['connected_exercises'] );
152
+										if ('excerpt' === $content_setting) {
153
+											$excerpt = \lsx_health_plan\functions\hp_excerpt($group['connected_exercises']);
154 154
 
155
-											if ( '' !== $alt_description ) {
155
+											if ('' !== $alt_description) {
156 156
 												$excerpt = $alt_description;
157 157
 											}
158
-											echo wp_kses_post( $excerpt );
158
+											echo wp_kses_post($excerpt);
159 159
 										}
160
-										if ( 'full' === $content_setting ) {
161
-											echo wp_kses_post( get_the_content( null, null, $group['connected_exercises'] ) );
160
+										if ('full' === $content_setting) {
161
+											echo wp_kses_post(get_the_content(null, null, $group['connected_exercises']));
162 162
 										}
163 163
 										?>
164 164
 									</p>
@@ -167,28 +167,28 @@  discard block
 block discarded – undo
167 167
 								?>
168 168
 								<?php
169 169
 								$repsclass = '';
170
-								if ( '' !== $reps ) {
170
+								if ('' !== $reps) {
171 171
 									$repsclass = 'have-reps';
172 172
 								}
173 173
 								?>
174
-								<div class="reps-container <?php echo esc_html( $repsclass ); ?>">
174
+								<div class="reps-container <?php echo esc_html($repsclass); ?>">
175 175
 									<?php
176
-									if ( '' !== $reps ) {
176
+									if ('' !== $reps) {
177 177
 									?>
178
-										<?php echo wp_kses_post( $reps ); ?>
178
+										<?php echo wp_kses_post($reps); ?>
179 179
 									<?php
180 180
 									}
181 181
 									?>
182
-									<?php if ( ( '' !== $link_html ) && ( $connected_exercise ) ) { ?>
183
-										<?php echo wp_kses_post( str_replace( '<a', '<a class="btn-simple" ', $link_html ) ); ?>
184
-										<?php echo wp_kses_post( $link_close ); ?>
182
+									<?php if (('' !== $link_html) && ($connected_exercise)) { ?>
183
+										<?php echo wp_kses_post(str_replace('<a', '<a class="btn-simple" ', $link_html)); ?>
184
+										<?php echo wp_kses_post($link_close); ?>
185 185
 									<?php } ?>
186 186
 								</div>
187 187
 							</div>
188 188
 						</article>
189 189
 					</div>
190 190
 					<?php
191
-					$counter ++;
191
+					$counter++;
192 192
 				}
193 193
 			}
194 194
 			?>
Please login to merge, or discard this patch.