Passed
Push — master ( 0bf605...89fb2a )
by Virginia
06:10 queued 11s
created
includes/functions.php 1 patch
Indentation   +277 added lines, -277 removed lines patch added patch discarded remove patch
@@ -17,27 +17,27 @@  discard block
 block discarded – undo
17 17
  * @return boolean
18 18
  */
19 19
 function has_attached_post( $post_id = '', $meta_key = '', $single = true ) {
20
-	$has_post = false;
21
-	if ( '' === $post_id ) {
22
-		$post_id = get_the_ID();
23
-	}
24
-	$items = get_post_meta( $post_id, $meta_key, $single );
25
-	if ( '' !== $items && false !== $items && 0 !== $items ) {
26
-		if ( ! is_array( $items ) ) {
27
-			$items = array( $items );
28
-		}
29
-		$items = check_posts_exist( $items );
30
-		if ( ! empty( $items ) ) {
31
-			$has_post = true;
32
-		}
33
-	} else {
34
-		// Check for defaults.
35
-		$options = get_option( 'all' );
36
-		if ( isset( $options[ $meta_key ] ) && '' !== $options[ $meta_key ] && ! empty( $options[ $meta_key ] ) ) {
37
-			$has_post = true;
38
-		}
39
-	}
40
-	return $has_post;
20
+     $has_post = false;
21
+     if ( '' === $post_id ) {
22
+          $post_id = get_the_ID();
23
+     }
24
+     $items = get_post_meta( $post_id, $meta_key, $single );
25
+     if ( '' !== $items && false !== $items && 0 !== $items ) {
26
+          if ( ! is_array( $items ) ) {
27
+               $items = array( $items );
28
+          }
29
+          $items = check_posts_exist( $items );
30
+          if ( ! empty( $items ) ) {
31
+               $has_post = true;
32
+          }
33
+     } else {
34
+          // Check for defaults.
35
+          $options = get_option( 'all' );
36
+          if ( isset( $options[ $meta_key ] ) && '' !== $options[ $meta_key ] && ! empty( $options[ $meta_key ] ) ) {
37
+               $has_post = true;
38
+          }
39
+     }
40
+     return $has_post;
41 41
 }
42 42
 
43 43
 /**
@@ -48,18 +48,18 @@  discard block
 block discarded – undo
48 48
  * @return mixed           Option value
49 49
  */
50 50
 function get_option( $key = '', $default = false ) {
51
-	if ( function_exists( 'cmb2_get_option' ) ) {
52
-		return cmb2_get_option( 'lsx_health_plan_options', $key, $default );
53
-	}
54
-	// Fallback to get_option if CMB2 is not loaded yet.
55
-	$opts = \get_option( 'lsx_health_plan_options', $default );
56
-	$val  = $default;
57
-	if ( 'all' === $key ) {
58
-		$val = $opts;
59
-	} elseif ( is_array( $opts ) && array_key_exists( $key, $opts ) && false !== $opts[ $key ] ) {
60
-		$val = $opts[ $key ];
61
-	}
62
-	return $val;
51
+     if ( function_exists( 'cmb2_get_option' ) ) {
52
+          return cmb2_get_option( 'lsx_health_plan_options', $key, $default );
53
+     }
54
+     // Fallback to get_option if CMB2 is not loaded yet.
55
+     $opts = \get_option( 'lsx_health_plan_options', $default );
56
+     $val  = $default;
57
+     if ( 'all' === $key ) {
58
+          $val = $opts;
59
+     } elseif ( is_array( $opts ) && array_key_exists( $key, $opts ) && false !== $opts[ $key ] ) {
60
+          $val = $opts[ $key ];
61
+     }
62
+     return $val;
63 63
 }
64 64
 
65 65
 /**
@@ -70,54 +70,54 @@  discard block
 block discarded – undo
70 70
  * @return mixed           Option value
71 71
  */
72 72
 function get_downloads( $type = 'all', $post_id = '' ) {
73
-	$lsx_health_plan = \lsx_health_plan();
74
-	$post_types      = $lsx_health_plan->get_post_types();
75
-	if ( '' === $post_id ) {
76
-		$post_id = get_the_ID();
77
-	}
78
-	$downloads = array();
79
-	$options   = get_option( 'all' );
80
-
81
-	foreach ( $post_types as $post_type ) {
82
-		if ( 'all' === $type || in_array( $type, $post_types, true ) ) {
83
-
84
-			// Get the default downloads for this post type.
85
-			$default_downloads = array();
86
-			$new_downloads     = array();
87
-			if ( isset( $options[ 'download_' . $post_type ] ) ) {
88
-				if ( is_array( $options[ 'download_' . $post_type ] ) ) {
89
-					$default_downloads = $options[ 'download_' . $post_type ];
90
-				} else {
91
-					$default_downloads[] = $options[ 'download_' . $post_type ];
92
-				}
93
-			}
94
-
95
-			if ( 'page' === $post_type ) {
96
-				$key = 'plan_warmup';
97
-			} else {
98
-				$key = 'connected_' . $post_type . 's';
99
-			}
100
-
101
-			$connected_items = get_post_meta( $post_id, $key, true );
102
-			if ( ! empty( $connected_items ) ) {
103
-				foreach ( $connected_items as $connected_item ) {
104
-					$current_downloads = get_post_meta( $connected_item, 'connected_downloads', true );
105
-					if ( false !== $current_downloads && ! empty( $current_downloads ) ) {
106
-						$new_downloads = array_merge( $new_downloads, $current_downloads );
107
-					}
108
-				}
109
-			}
110
-
111
-			if ( ! empty( $new_downloads ) ) {
112
-				$downloads = array_merge( $downloads, $new_downloads );
113
-			} elseif ( ! empty( $default_downloads ) ) {
114
-				$downloads = array_merge( $downloads, $default_downloads );
115
-			}
116
-			$downloads = array_unique( $downloads );
117
-		}
118
-	}
119
-	$downloads = check_posts_exist( $downloads );
120
-	return $downloads;
73
+     $lsx_health_plan = \lsx_health_plan();
74
+     $post_types      = $lsx_health_plan->get_post_types();
75
+     if ( '' === $post_id ) {
76
+          $post_id = get_the_ID();
77
+     }
78
+     $downloads = array();
79
+     $options   = get_option( 'all' );
80
+
81
+     foreach ( $post_types as $post_type ) {
82
+          if ( 'all' === $type || in_array( $type, $post_types, true ) ) {
83
+
84
+               // Get the default downloads for this post type.
85
+               $default_downloads = array();
86
+               $new_downloads     = array();
87
+               if ( isset( $options[ 'download_' . $post_type ] ) ) {
88
+                    if ( is_array( $options[ 'download_' . $post_type ] ) ) {
89
+                         $default_downloads = $options[ 'download_' . $post_type ];
90
+                    } else {
91
+                         $default_downloads[] = $options[ 'download_' . $post_type ];
92
+                    }
93
+               }
94
+
95
+               if ( 'page' === $post_type ) {
96
+                    $key = 'plan_warmup';
97
+               } else {
98
+                    $key = 'connected_' . $post_type . 's';
99
+               }
100
+
101
+               $connected_items = get_post_meta( $post_id, $key, true );
102
+               if ( ! empty( $connected_items ) ) {
103
+                    foreach ( $connected_items as $connected_item ) {
104
+                         $current_downloads = get_post_meta( $connected_item, 'connected_downloads', true );
105
+                         if ( false !== $current_downloads && ! empty( $current_downloads ) ) {
106
+                              $new_downloads = array_merge( $new_downloads, $current_downloads );
107
+                         }
108
+                    }
109
+               }
110
+
111
+               if ( ! empty( $new_downloads ) ) {
112
+                    $downloads = array_merge( $downloads, $new_downloads );
113
+               } elseif ( ! empty( $default_downloads ) ) {
114
+                    $downloads = array_merge( $downloads, $default_downloads );
115
+               }
116
+               $downloads = array_unique( $downloads );
117
+          }
118
+     }
119
+     $downloads = check_posts_exist( $downloads );
120
+     return $downloads;
121 121
 }
122 122
 
123 123
 /**
@@ -127,35 +127,35 @@  discard block
 block discarded – undo
127 127
  * @return array           an array of the downloads or empty.
128 128
  */
129 129
 function get_weekly_downloads( $week = '' ) {
130
-	$downloads = array();
131
-	if ( '' !== $week ) {
132
-		$saved_downloads = get_transient( 'lsx_hp_weekly_downloads_' . $week );
133
-		if ( false !== $saved_downloads && ! empty( $saved_downloads ) ) {
134
-			$downloads = $saved_downloads;
135
-		} else {
136
-			$args = array(
137
-				'orderby'        => 'title',
138
-				'order'          => 'ASC',
139
-				'post_type'      => 'dlm_download',
140
-				'posts_per_page' => -1,
141
-				'nopagin'        => true,
142
-				'fields'         => 'ids',
143
-				'tax_query'      => array(
144
-					array(
145
-						'taxonomy' => 'dlm_download_category',
146
-						'field'    => 'slug',
147
-						'terms'    => array( $week ),
148
-					),
149
-				),
150
-			);
151
-			$download_query = new \WP_Query( $args );
152
-			if ( $download_query->have_posts() ) {
153
-				$downloads = $download_query->posts;
154
-			}
155
-		}
156
-	}
157
-	$downloads = check_posts_exist( $downloads );
158
-	return $downloads;
130
+     $downloads = array();
131
+     if ( '' !== $week ) {
132
+          $saved_downloads = get_transient( 'lsx_hp_weekly_downloads_' . $week );
133
+          if ( false !== $saved_downloads && ! empty( $saved_downloads ) ) {
134
+               $downloads = $saved_downloads;
135
+          } else {
136
+               $args = array(
137
+                    'orderby'        => 'title',
138
+                    'order'          => 'ASC',
139
+                    'post_type'      => 'dlm_download',
140
+                    'posts_per_page' => -1,
141
+                    'nopagin'        => true,
142
+                    'fields'         => 'ids',
143
+                    'tax_query'      => array(
144
+                         array(
145
+                              'taxonomy' => 'dlm_download_category',
146
+                              'field'    => 'slug',
147
+                              'terms'    => array( $week ),
148
+                         ),
149
+                    ),
150
+               );
151
+               $download_query = new \WP_Query( $args );
152
+               if ( $download_query->have_posts() ) {
153
+                    $downloads = $download_query->posts;
154
+               }
155
+          }
156
+     }
157
+     $downloads = check_posts_exist( $downloads );
158
+     return $downloads;
159 159
 }
160 160
 
161 161
 /**
@@ -165,22 +165,22 @@  discard block
 block discarded – undo
165 165
  * @return void
166 166
  */
167 167
 function check_posts_exist( $post_ids = array() ) {
168
-	$new_ids = array();
169
-	global $wpdb;
170
-	if ( is_array( $post_ids ) && ! empty( $post_ids ) ) {
171
-		$post_ids = "'" . implode( "','", $post_ids ) . "'";
172
-		$query    = "
168
+     $new_ids = array();
169
+     global $wpdb;
170
+     if ( is_array( $post_ids ) && ! empty( $post_ids ) ) {
171
+          $post_ids = "'" . implode( "','", $post_ids ) . "'";
172
+          $query    = "
173 173
 			SELECT `ID` 
174 174
 			FROM `{$wpdb->posts}`
175 175
 			WHERE `ID` IN ({$post_ids})
176 176
 			AND `post_status` != 'trash'
177 177
 		";
178
-		$results = $wpdb->get_results( $query ); // WPCS: unprepared SQL
179
-		if ( ! empty( $results ) ) {
180
-			$new_ids = wp_list_pluck( $results, 'ID' );
181
-		}
182
-	}
183
-	return $new_ids;
178
+          $results = $wpdb->get_results( $query ); // WPCS: unprepared SQL
179
+          if ( ! empty( $results ) ) {
180
+               $new_ids = wp_list_pluck( $results, 'ID' );
181
+          }
182
+     }
183
+     return $new_ids;
184 184
 }
185 185
 
186 186
 /**
@@ -192,13 +192,13 @@  discard block
 block discarded – undo
192 192
  * @return void
193 193
  */
194 194
 function register_modal( $id = '', $title = '', $body = '' ) {
195
-	lsx_health_plan()->frontend->modals->register_modal(
196
-		array(
197
-			'title' => $title,
198
-			'body'  => $body,
199
-		),
200
-		$id
201
-	);
195
+     lsx_health_plan()->frontend->modals->register_modal(
196
+          array(
197
+               'title' => $title,
198
+               'body'  => $body,
199
+          ),
200
+          $id
201
+     );
202 202
 }
203 203
 
204 204
 /**
@@ -208,13 +208,13 @@  discard block
 block discarded – undo
208 208
  * @return void
209 209
  */
210 210
 function output_modal( $args = array() ) {
211
-	$defaults = array(
212
-		'id'    => '',
213
-		'title' => '',
214
-		'body'  => '',
215
-	);
216
-	$args     = wp_parse_args( $args, $defaults );
217
-	?>
211
+     $defaults = array(
212
+          'id'    => '',
213
+          'title' => '',
214
+          'body'  => '',
215
+     );
216
+     $args     = wp_parse_args( $args, $defaults );
217
+     ?>
218 218
 	<!-- Modal -->
219 219
 	<div class="modal fade lsx-health-plan-modal" id="<?php echo esc_html( $args['id'] ); ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo esc_html( $args['id'] ); ?>"  aria-hidden="true">
220 220
 		<div class="modal-dialog" role="document">
@@ -222,36 +222,36 @@  discard block
 block discarded – undo
222 222
 			<button type="button" class="close" data-dismiss="modal">&times;</button>			
223 223
 				<div class="modal-header">
224 224
 					<?php
225
-					if ( '' !== $args['title'] ) {
226
-						echo wp_kses_post( '<h2>' . $args['title'] . '</h2>' );
227
-					}
228
-					?>
225
+                         if ( '' !== $args['title'] ) {
226
+                              echo wp_kses_post( '<h2>' . $args['title'] . '</h2>' );
227
+                         }
228
+                         ?>
229 229
 				</div>
230 230
 				<div class="modal-body">
231 231
 				<?php
232
-				if ( '' !== $args['body'] ) {
233
-					$allowed_html = array(
234
-						'iframe' => array(
235
-							'data-src'        => array(),
236
-							'src'             => array(),
237
-							'width'           => array(),
238
-							'height'          => array(),
239
-							'frameBorder'     => array( '0' ),
240
-							'class'           => array(),
241
-							'allowFullScreen' => array(),
242
-							'style'           => array(),
243
-						),
244
-						'h5'     => array(
245
-							'class' => array(),
246
-						),
247
-					);
248
-					if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
249
-						echo wp_kses_post( $args['body'] );
250
-					} else {
251
-						echo wp_kses( $args['body'], $allowed_html );
252
-					}
253
-				}
254
-				?>
232
+                    if ( '' !== $args['body'] ) {
233
+                         $allowed_html = array(
234
+                              'iframe' => array(
235
+                                   'data-src'        => array(),
236
+                                   'src'             => array(),
237
+                                   'width'           => array(),
238
+                                   'height'          => array(),
239
+                                   'frameBorder'     => array( '0' ),
240
+                                   'class'           => array(),
241
+                                   'allowFullScreen' => array(),
242
+                                   'style'           => array(),
243
+                              ),
244
+                              'h5'     => array(
245
+                                   'class' => array(),
246
+                              ),
247
+                         );
248
+                         if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
249
+                              echo wp_kses_post( $args['body'] );
250
+                         } else {
251
+                              echo wp_kses( $args['body'], $allowed_html );
252
+                         }
253
+                    }
254
+                    ?>
255 255
 				</div>
256 256
 			</div>
257 257
 		</div>
@@ -267,18 +267,18 @@  discard block
 block discarded – undo
267 267
  * @return void
268 268
  */
269 269
 function get_video_url( $embed ) {
270
-	$url = '';
271
-	if ( false !== stripos( $embed, '<iframe' ) ) {
272
-		preg_match( '/src="([^"]+)"/', $embed, $match );
273
-		if ( is_array( $match ) && isset( $match[1] ) ) {
274
-			$url = '<iframe data-src="' . $match[1] . '" style="border: 0;" frameBorder="0" class="giphy-embed" allowFullScreen height="300" width="100%"></iframe>';
275
-		} else {
276
-			$url = $embed;
277
-		}
278
-	} else {
279
-		$url = $embed;
280
-	}
281
-	return $url;
270
+     $url = '';
271
+     if ( false !== stripos( $embed, '<iframe' ) ) {
272
+          preg_match( '/src="([^"]+)"/', $embed, $match );
273
+          if ( is_array( $match ) && isset( $match[1] ) ) {
274
+               $url = '<iframe data-src="' . $match[1] . '" style="border: 0;" frameBorder="0" class="giphy-embed" allowFullScreen height="300" width="100%"></iframe>';
275
+          } else {
276
+               $url = $embed;
277
+          }
278
+     } else {
279
+          $url = $embed;
280
+     }
281
+     return $url;
282 282
 }
283 283
 
284 284
 /**
@@ -289,18 +289,18 @@  discard block
 block discarded – undo
289 289
  * @return boolean
290 290
  */
291 291
 function is_week_complete( $term_id = false, $section_keys = array(), $group_title = '' ) {
292
-	$return = false;
293
-	if ( ! empty( $section_keys ) ) {
294
-		$group_count = count( $section_keys );
295
-		foreach ( $section_keys as &$pid ) {
296
-			$pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id( $pid ) . '_complete';
297
-		}
298
-		$days_complete = get_meta_amounts( $section_keys );
299
-		if ( (int) $group_count === (int) $days_complete ) {
300
-			$return = true;
301
-		}
302
-	}
303
-	return $return;
292
+     $return = false;
293
+     if ( ! empty( $section_keys ) ) {
294
+          $group_count = count( $section_keys );
295
+          foreach ( $section_keys as &$pid ) {
296
+               $pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id( $pid ) . '_complete';
297
+          }
298
+          $days_complete = get_meta_amounts( $section_keys );
299
+          if ( (int) $group_count === (int) $days_complete ) {
300
+               $return = true;
301
+          }
302
+     }
303
+     return $return;
304 304
 }
305 305
 
306 306
 /**
@@ -311,23 +311,23 @@  discard block
 block discarded – undo
311 311
  * @return void
312 312
  */
313 313
 function get_meta_amounts( $post_ids = array() ) {
314
-	global $wpdb;
315
-	$amount       = 0;
316
-	$current_user = wp_get_current_user();
317
-	if ( false !== $current_user && ! empty( $post_ids ) ) {
318
-		$post_ids = "'" . implode( "','", $post_ids ) . "'";
319
-		$query    = "
314
+     global $wpdb;
315
+     $amount       = 0;
316
+     $current_user = wp_get_current_user();
317
+     if ( false !== $current_user && ! empty( $post_ids ) ) {
318
+          $post_ids = "'" . implode( "','", $post_ids ) . "'";
319
+          $query    = "
320 320
 			SELECT COUNT(`meta_value`) 
321 321
 			FROM `{$wpdb->usermeta}`
322 322
 			WHERE `meta_key` IN ({$post_ids})
323 323
 			AND `user_id` = '{$current_user->ID}'
324 324
 		";
325
-		$results  = $wpdb->get_var( $query ); // WPCS: unprepared SQL
326
-		if ( ! empty( $results ) ) {
327
-			$amount = $results;
328
-		}
329
-	}
330
-	return $amount;
325
+          $results  = $wpdb->get_var( $query ); // WPCS: unprepared SQL
326
+          if ( ! empty( $results ) ) {
327
+               $amount = $results;
328
+          }
329
+     }
330
+     return $amount;
331 331
 }
332 332
 
333 333
 /**
@@ -337,46 +337,46 @@  discard block
 block discarded – undo
337 337
  * @return void
338 338
  */
339 339
 function hp_get_plan_type_meta( $post ) {
340
-	$plan_meta = '';
340
+     $plan_meta = '';
341 341
 
342
-	$term_obj_list = get_the_terms( $post->ID, 'plan-type' );
343
-	if ( false !== $term_obj_list ) {
344
-		$terms_string = '';
345
-		$terms_ids    = wp_list_pluck( $term_obj_list, 'term_id' );
342
+     $term_obj_list = get_the_terms( $post->ID, 'plan-type' );
343
+     if ( false !== $term_obj_list ) {
344
+          $terms_string = '';
345
+          $terms_ids    = wp_list_pluck( $term_obj_list, 'term_id' );
346 346
 		
347
-		foreach ( $term_obj_list as $term ) {
348
-			$term_link = get_term_link( $term );
349
-			$term_name = '<a href="' . $term_link . '">' .$term->name . '<span>, </span></a>';
347
+          foreach ( $term_obj_list as $term ) {
348
+               $term_link = get_term_link( $term );
349
+               $term_name = '<a href="' . $term_link . '">' .$term->name . '<span>, </span></a>';
350 350
 			
351
-			$terms_string .= $term_name;
352
-		}
351
+               $terms_string .= $term_name;
352
+          }
353 353
 		
354
-		foreach ( $terms_ids as $terms_id ) {
355
-			$term_thumbnail_id = get_term_meta( $terms_id, 'thumbnail', true );
356
-			$img               = wp_get_attachment_image_src( $term_thumbnail_id, 'thumbnail' );
357
-			if ( ! empty( $img ) ) {
358
-				$image_url = $img[0];
359
-				$img       = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $image_url ) . '" />';
360
-			}
354
+          foreach ( $terms_ids as $terms_id ) {
355
+               $term_thumbnail_id = get_term_meta( $terms_id, 'thumbnail', true );
356
+               $img               = wp_get_attachment_image_src( $term_thumbnail_id, 'thumbnail' );
357
+               if ( ! empty( $img ) ) {
358
+                    $image_url = $img[0];
359
+                    $img       = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $image_url ) . '" />';
360
+               }
361 361
 
362
-			$plan_meta .= $img;
363
-		}
362
+               $plan_meta .= $img;
363
+          }
364 364
 
365
-		$plan_meta = '<div class="plan-meta">' . $plan_meta . '<span>' . $terms_string . '</span></div>';
366
-	}
365
+          $plan_meta = '<div class="plan-meta">' . $plan_meta . '<span>' . $terms_string . '</span></div>';
366
+     }
367 367
 
368
-	return $plan_meta;
368
+     return $plan_meta;
369 369
 }
370 370
 
371 371
 /**
372 372
  * Limit media library access
373 373
  */
374 374
 function set_only_author( $wp_query ) {
375
-	global $current_user;
376
-	if ( is_admin() && ! current_user_can( 'edit_others_posts' ) ) {
377
-		$wp_query->set( 'administrator', $current_user->ID );
378
-		add_filter( 'views_upload', 'fix_media_counts' );
379
-	}
375
+     global $current_user;
376
+     if ( is_admin() && ! current_user_can( 'edit_others_posts' ) ) {
377
+          $wp_query->set( 'administrator', $current_user->ID );
378
+          add_filter( 'views_upload', 'fix_media_counts' );
379
+     }
380 380
 }
381 381
 add_action( 'pre_get_posts', '\lsx_health_plan\functions\set_only_author' );
382 382
 
@@ -387,12 +387,12 @@  discard block
 block discarded – undo
387 387
  * @return void
388 388
  */
389 389
 function hp_excerpt( $post_id ) {
390
-	if ( ! has_excerpt( $post_id ) ) {
391
-		$content = wp_trim_words( get_post_field( 'post_content', $post_id ), 10 );
392
-	} else {
393
-		$content = get_the_excerpt( $post_id );
394
-	}
395
-	return $content;
390
+     if ( ! has_excerpt( $post_id ) ) {
391
+          $content = wp_trim_words( get_post_field( 'post_content', $post_id ), 10 );
392
+     } else {
393
+          $content = get_the_excerpt( $post_id );
394
+     }
395
+     return $content;
396 396
 }
397 397
 
398 398
 /**
@@ -402,9 +402,9 @@  discard block
 block discarded – undo
402 402
  * @return void
403 403
  */
404 404
 function column_class( $columns = '3' ) {
405
-	$cols  = '';
406
-	$cols .= '5' === $columns ? '15' : 12 / $columns;
407
-	return $cols;
405
+     $cols  = '';
406
+     $cols .= '5' === $columns ? '15' : 12 / $columns;
407
+     return $cols;
408 408
 }
409 409
 
410 410
 /**
@@ -414,22 +414,22 @@  discard block
 block discarded – undo
414 414
  * @return void
415 415
  */
416 416
 function get_exercises_by_workout( $workout = '' ) {
417
-	$exercises = array();
418
-	$i               = 1;
419
-	$section_counter = 6;
420
-	while ( $i <= $section_counter ) {
421
-		$group_name = 'workout_section_' . $i;
422
-		$groups     = get_post_meta( $workout, $group_name, true );
423
-		if ( ! empty( $groups ) ) {
424
-			foreach ( $groups as $group ) {
425
-				if ( isset( $group['connected_exercises'] ) ) {
426
-					$exercises[] = $group['connected_exercises'];
427
-				}
428
-			}
429
-		}
430
-		$i++;
431
-	}
432
-	return $exercises;
417
+     $exercises = array();
418
+     $i               = 1;
419
+     $section_counter = 6;
420
+     while ( $i <= $section_counter ) {
421
+          $group_name = 'workout_section_' . $i;
422
+          $groups     = get_post_meta( $workout, $group_name, true );
423
+          if ( ! empty( $groups ) ) {
424
+               foreach ( $groups as $group ) {
425
+                    if ( isset( $group['connected_exercises'] ) ) {
426
+                         $exercises[] = $group['connected_exercises'];
427
+                    }
428
+               }
429
+          }
430
+          $i++;
431
+     }
432
+     return $exercises;
433 433
 }
434 434
 
435 435
 
@@ -440,20 +440,20 @@  discard block
 block discarded – undo
440 440
  * @return int
441 441
  */
442 442
 function get_progress( $plan_id = false ) {
443
-	$progress = 0;
444
-	$complete = array();
445
-	$count    = 0;
446
-	if ( false !== $plan_id &&  \lsx_health_plan\functions\plan\has_sections( $plan_id ) ) {
447
-		$sections = \lsx_health_plan\functions\plan\get_sections();
448
-		$all_count = count( $sections );
449
-		foreach ( $sections as $section_key => $section_values ) {
450
-			if ( lsx_health_plan_is_day_complete( $plan_id, $section_values['title'] ) ) {
451
-				$complete[] = true;
452
-			}
453
-		}
454
-		$progress = (int) count( $complete ) / (int) $all_count * 100;
455
-	}
456
-	return $progress;
443
+     $progress = 0;
444
+     $complete = array();
445
+     $count    = 0;
446
+     if ( false !== $plan_id &&  \lsx_health_plan\functions\plan\has_sections( $plan_id ) ) {
447
+          $sections = \lsx_health_plan\functions\plan\get_sections();
448
+          $all_count = count( $sections );
449
+          foreach ( $sections as $section_key => $section_values ) {
450
+               if ( lsx_health_plan_is_day_complete( $plan_id, $section_values['title'] ) ) {
451
+                    $complete[] = true;
452
+               }
453
+          }
454
+          $progress = (int) count( $complete ) / (int) $all_count * 100;
455
+     }
456
+     return $progress;
457 457
 }
458 458
 
459 459
 
@@ -464,18 +464,18 @@  discard block
 block discarded – undo
464 464
  * @return void
465 465
  */
466 466
 function hp_back_archive_link() {
467
-	global $wp_taxonomies;
467
+     global $wp_taxonomies;
468 468
 	
469
-	$post_type = get_queried_object()->taxonomy;
470
-	$post_type = $wp_taxonomies[$post_type]->object_type;
469
+     $post_type = get_queried_object()->taxonomy;
470
+     $post_type = $wp_taxonomies[$post_type]->object_type;
471 471
 
472
-	if ( is_tax() ) {
473
-		?>
472
+     if ( is_tax() ) {
473
+          ?>
474 474
 		<div class="archive-category-title hp-archive-category-title">
475 475
 			<a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( $post_type[0] ) ) ); ?>"><?php echo esc_html__( 'Back To ', 'lsx' ) . esc_html( $post_type[0] ) . 's'; ?></a>
476 476
 		</div>
477 477
 		<?php
478
-	}
478
+     }
479 479
 }
480 480
 add_action( 'lsx_content_wrap_before', '\lsx_health_plan\functions\hp_back_archive_link', 20 );
481 481
 
@@ -486,11 +486,11 @@  discard block
 block discarded – undo
486 486
  * @return array
487 487
  */
488 488
 function prep_array( $item ) {
489
-	if ( ! is_array( $item ) ) {
490
-		$item = explode( ',', $item );
491
-		if ( ! is_array( $item ) ) {
492
-			$item = array( $item );
493
-		}
494
-	}
495
-	return $item;
489
+     if ( ! is_array( $item ) ) {
490
+          $item = explode( ',', $item );
491
+          if ( ! is_array( $item ) ) {
492
+               $item = array( $item );
493
+          }
494
+     }
495
+     return $item;
496 496
 }
Please login to merge, or discard this patch.
templates/tab-content-workout.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -24,20 +24,20 @@  discard block
 block discarded – undo
24 24
 		<?php lsx_post_meta_single_bottom(); ?>
25 25
 	</div><!-- .entry-meta -->
26 26
 	<?php
27
-	if ( is_singular( 'workout' ) ) {
28
-		the_content();
29
-	}
30
-	?>
27
+     if ( is_singular( 'workout' ) ) {
28
+          the_content();
29
+     }
30
+     ?>
31 31
 	<div class="entry-content">
32 32
 		<div class="single-plan-inner workout-content">
33 33
 			<?php
34
-			if ( is_singular( 'workout' ) ) { ?>
34
+               if ( is_singular( 'workout' ) ) { ?>
35 35
 				<div class="single-plan-section-title workout title-lined">
36 36
 					<?php lsx_get_svg_icon( 'work.svg' ); ?>
37 37
 					<h2><?php the_title(); ?></h2>
38 38
 					<?php if ( class_exists( 'LSX_Sharing' ) ) {
39
-						lsx_content_sharing();
40
-					} ?>
39
+                              lsx_content_sharing();
40
+                         } ?>
41 41
 				</div>
42 42
 			<?php } else { ?>
43 43
 				<div class="single-plan-section-title workout title-lined">
@@ -46,8 +46,8 @@  discard block
 block discarded – undo
46 46
 				</div>
47 47
 			<?php } ?>
48 48
 			<?php
49
-			if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) {
50
-				?>
49
+               if ( lsx_health_plan_has_warmup() && ( ! is_singular( 'workout' ) ) ) {
50
+                    ?>
51 51
 				<div class="workout-instructions">
52 52
 					<div class="row">
53 53
 						<div class="col-md-12">
@@ -59,8 +59,8 @@  discard block
 block discarded – undo
59 59
 					</div>
60 60
 				</div>
61 61
 				<?php
62
-			}
63
-			?>
62
+               }
63
+               ?>
64 64
 
65 65
 			<?php lsx_health_plan_workout_sets(); ?>
66 66
 		</div>
@@ -76,5 +76,5 @@  discard block
 block discarded – undo
76 76
 <?php } ?>
77 77
 <?php
78 78
 if ( ! empty( $connected_articles ) ) {
79
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
79
+     lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
80 80
 }
Please login to merge, or discard this patch.
templates/tab-content-warm-up.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -8,10 +8,10 @@  discard block
 block discarded – undo
8 8
 
9 9
 $warm_up = get_post_meta( get_the_ID(), 'plan_warmup', true );
10 10
 if ( false === $warm_up || '' === $warm_up ) {
11
-	$options = \lsx_health_plan\functions\get_option( 'all' );
12
-	if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) {
13
-		$warm_up = $options['plan_warmup'];
14
-	}
11
+     $options = \lsx_health_plan\functions\get_option( 'all' );
12
+     if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) {
13
+          $warm_up = $options['plan_warmup'];
14
+     }
15 15
 }
16 16
 
17 17
 ?>
@@ -19,25 +19,25 @@  discard block
 block discarded – undo
19 19
 <?php
20 20
 
21 21
 if ( false !== $warm_up && '' !== $warm_up ) {
22
-	if ( ! is_array( $warm_up ) ) {
23
-		$warm_up = array( $warm_up );
24
-	}
22
+     if ( ! is_array( $warm_up ) ) {
23
+          $warm_up = array( $warm_up );
24
+     }
25 25
 
26
-	$warmup_type  = array( 'page', 'workout', 'exercise' );
27
-	$warmup_query = new WP_Query(
28
-		array(
29
-			'post__in'  => $warm_up,
30
-			'post_type' => $warmup_type,
31
-		)
32
-	);
26
+     $warmup_type  = array( 'page', 'workout', 'exercise' );
27
+     $warmup_query = new WP_Query(
28
+          array(
29
+               'post__in'  => $warm_up,
30
+               'post_type' => $warmup_type,
31
+          )
32
+     );
33 33
 
34
-	if ( $warmup_query->have_posts() ) {
35
-		while ( $warmup_query->have_posts() ) {
36
-			$warmup_query->the_post();
37
-			lsx_entry_before();
38
-			if ( 'workout' === get_post_type() ) {
39
-				$connected_workouts = array( get_the_ID() );
40
-				?>
34
+     if ( $warmup_query->have_posts() ) {
35
+          while ( $warmup_query->have_posts() ) {
36
+               $warmup_query->the_post();
37
+               lsx_entry_before();
38
+               if ( 'workout' === get_post_type() ) {
39
+                    $connected_workouts = array( get_the_ID() );
40
+                    ?>
41 41
 				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
42 42
 					<?php lsx_entry_top(); ?>
43 43
 					<div class="entry-content">
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
 					<?php lsx_entry_bottom(); ?>
52 52
 				</article><!-- #post-## -->
53 53
 				<?php
54
-				lsx_health_plan_warmup_sets( $connected_workouts );
55
-			} else {
56
-				?>
54
+                    lsx_health_plan_warmup_sets( $connected_workouts );
55
+               } else {
56
+                    ?>
57 57
 				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
58 58
 					<?php lsx_entry_top(); ?>
59 59
 					<div class="entry-content">
@@ -63,24 +63,24 @@  discard block
 block discarded – undo
63 63
 								<h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2>
64 64
 							</div>
65 65
 						<?php
66
-							the_content();
67
-							wp_link_pages( array(
68
-								'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
69
-								'after'       => '</div></div>',
70
-								'link_before' => '<span>',
71
-								'link_after'  => '</span>',
72
-							) );
73
-						?>
66
+                                   the_content();
67
+                                   wp_link_pages( array(
68
+                                        'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
69
+                                        'after'       => '</div></div>',
70
+                                        'link_before' => '<span>',
71
+                                        'link_after'  => '</span>',
72
+                                   ) );
73
+                              ?>
74 74
 						</div>
75 75
 					</div><!-- .entry-content -->
76 76
 					<?php lsx_entry_bottom(); ?>
77 77
 				</article><!-- #post-## -->
78 78
 				<?php
79
-			}
79
+               }
80 80
 
81
-		}
82
-		wp_reset_postdata();
83
-	}
81
+          }
82
+          wp_reset_postdata();
83
+     }
84 84
 }
85 85
 ?>
86 86
 </div>
Please login to merge, or discard this patch.
templates/partials/workout-grid.php 1 patch
Indentation   +121 added lines, -121 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,169 +18,169 @@  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
-				}
47
+               foreach ( $groups as $group ) {
48
+                    $connected_exercise = false;
49
+                    if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) {
50
+                         $connected_exercise = true;
51
+                    }
52 52
 
53
-				if ( ! $connected_exercise ) {
54
-					$group['connected_exercises'] = '';
55
-				}
56
-				$alt_title_value = $group['alt_title'] ?? '';
57
-				if ( ( $connected_exercise ) || ( ( ! $connected_exercise ) && $alt_title_value ) ) {
53
+                    if ( ! $connected_exercise ) {
54
+                         $group['connected_exercises'] = '';
55
+                    }
56
+                    $alt_title_value = $group['alt_title'] ?? '';
57
+                    if ( ( $connected_exercise ) || ( ( ! $connected_exercise ) && $alt_title_value ) ) {
58 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
-					}
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 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
-					}
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 68
 
69
-					$alt_image = '';
70
-					if ( isset( $group['exercise_alt_thumbnail'] ) && '' !== $group['exercise_alt_thumbnail'] ) {
71
-						$alt_image = $group['exercise_alt_thumbnail'];
72
-					}
69
+                         $alt_image = '';
70
+                         if ( isset( $group['exercise_alt_thumbnail'] ) && '' !== $group['exercise_alt_thumbnail'] ) {
71
+                              $alt_image = $group['exercise_alt_thumbnail'];
72
+                         }
73 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;
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 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
-							}
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 101
 
102
-							break;
102
+                                   break;
103 103
 
104
-						case 'none':
105
-						default:
106
-							$link_html  = '';
107
-							$link_close = '';
108
-							break;
109
-					}
110
-					?>
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
 								<?php echo wp_kses_post( $link_html ); ?>
115 115
 									<?php
116
-									$thumbnail_args = array(
117
-										'class' => 'aligncenter',
118
-									);
119
-									$featured_image = get_the_post_thumbnail( $group['connected_exercises'], 'medium', $thumbnail_args );
120
-									if ( $alt_image ) {
121
-										$featured_image = '<img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '">';
122
-									}
123
-									if ( ! empty( $featured_image ) && '' !== $featured_image ) {
124
-										echo wp_kses_post( $featured_image );
125
-									} else {
126
-										?>
116
+                                             $thumbnail_args = array(
117
+                                                  'class' => 'aligncenter',
118
+                                             );
119
+                                             $featured_image = get_the_post_thumbnail( $group['connected_exercises'], 'medium', $thumbnail_args );
120
+                                             if ( $alt_image ) {
121
+                                                  $featured_image = '<img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '">';
122
+                                             }
123
+                                             if ( ! empty( $featured_image ) && '' !== $featured_image ) {
124
+                                                  echo wp_kses_post( $featured_image );
125
+                                             } else {
126
+                                                  ?>
127 127
 										<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __DIR__ ) . '../assets/images/placeholder.jpg' ); ?>">
128 128
 										<?php
129
-									}
130
-									?>
129
+                                             }
130
+                                             ?>
131 131
 								<?php echo wp_kses_post( $link_close ); ?>
132 132
 							</div>
133 133
 							<div class="content-box exercise-content-box white-bg">
134 134
 								<h3 class="content-box-title <?php echo esc_html( $class_excerpt ); ?>">
135 135
 									<?php echo wp_kses_post( $link_html ); ?>
136 136
 											<?php
137
-											$exercise_title = lsx_health_plan_exercise_title( '', '', false, $group['connected_exercises'] );
137
+                                                       $exercise_title = lsx_health_plan_exercise_title( '', '', false, $group['connected_exercises'] );
138 138
 											
139
-											if ( '' !== $alt_title ) {
140
-												$exercise_title = '<span class="exercise-counter">' . $counter . '.</span>' . $alt_title;
141
-											} else {
142
-												$exercise_title = '<span class="exercise-counter">' . $counter . '.</span>' . $exercise_title;
143
-											}
144
-											echo wp_kses_post( $exercise_title );
145
-											?>
139
+                                                       if ( '' !== $alt_title ) {
140
+                                                            $exercise_title = '<span class="exercise-counter">' . $counter . '.</span>' . $alt_title;
141
+                                                       } else {
142
+                                                            $exercise_title = '<span class="exercise-counter">' . $counter . '.</span>' . $exercise_title;
143
+                                                       }
144
+                                                       echo wp_kses_post( $exercise_title );
145
+                                                       ?>
146 146
 										</a>
147 147
 									<?php echo wp_kses_post( $link_close ); ?>
148 148
 								</h3>
149 149
 								<?php
150
-								if ( '' !== $content_setting ) {
151
-									?>
150
+                                        if ( '' !== $content_setting ) {
151
+                                             ?>
152 152
 									<p class="lsx-exercises-excerpt">
153 153
 										<?php
154
-										if ( 'excerpt' === $content_setting ) {
155
-											$excerpt = \lsx_health_plan\functions\hp_excerpt( $group['connected_exercises'] );
154
+                                                  if ( 'excerpt' === $content_setting ) {
155
+                                                       $excerpt = \lsx_health_plan\functions\hp_excerpt( $group['connected_exercises'] );
156 156
 
157
-											if ( '' !== $alt_description ) {
158
-												$excerpt = $alt_description;
159
-											}
160
-											echo wp_kses_post( $excerpt );
161
-										}
162
-										if ( 'full' === $content_setting ) {
163
-											echo wp_kses_post( get_the_content( null, null, $group['connected_exercises'] ) );
164
-										}
165
-										?>
157
+                                                       if ( '' !== $alt_description ) {
158
+                                                            $excerpt = $alt_description;
159
+                                                       }
160
+                                                       echo wp_kses_post( $excerpt );
161
+                                                  }
162
+                                                  if ( 'full' === $content_setting ) {
163
+                                                       echo wp_kses_post( get_the_content( null, null, $group['connected_exercises'] ) );
164
+                                                  }
165
+                                                  ?>
166 166
 									</p>
167 167
 									<?php
168
-								}
169
-								?>
168
+                                        }
169
+                                        ?>
170 170
 								<?php
171
-								$repsclass = '';
172
-								if ( '' !== $reps ) {
173
-									$repsclass = 'have-reps';
174
-								}
175
-								?>
171
+                                        $repsclass = '';
172
+                                        if ( '' !== $reps ) {
173
+                                             $repsclass = 'have-reps';
174
+                                        }
175
+                                        ?>
176 176
 								<div class="reps-container <?php echo esc_html( $repsclass ); ?>">
177 177
 									<?php
178
-									if ( '' !== $reps ) {
179
-									?>
178
+                                             if ( '' !== $reps ) {
179
+                                             ?>
180 180
 										<?php echo wp_kses_post( $reps ); ?>
181 181
 									<?php
182
-									}
183
-									?>
182
+                                             }
183
+                                             ?>
184 184
 									<?php if ( ( '' !== $link_html ) && ( $connected_exercise ) ) { ?>
185 185
 										<?php echo wp_kses_post( str_replace( '<a', '<a class="btn-simple" ', $link_html ) ); ?>
186 186
 										<?php echo wp_kses_post( $link_close ); ?>
@@ -190,10 +190,10 @@  discard block
 block discarded – undo
190 190
 						</article>
191 191
 					</div>
192 192
 					<?php
193
-					$counter ++;
194
-				}
195
-			}
196
-			?>
193
+                         $counter ++;
194
+                    }
195
+               }
196
+               ?>
197 197
 		</div>
198 198
 	</div>
199 199
 	<?php
Please login to merge, or discard this patch.
classes/post-types/class-recipe.php 1 patch
Indentation   +410 added lines, -410 removed lines patch added patch discarded remove patch
@@ -8,245 +8,245 @@  discard block
 block discarded – undo
8 8
  */
9 9
 class Recipe {
10 10
 
11
-	/**
12
-	 * Holds class instance
13
-	 *
14
-	 * @since 1.0.0
15
-	 *
16
-	 * @var      object \lsx_health_plan\classes\Recipe()
17
-	 */
18
-	protected static $instance = null;
11
+     /**
12
+      * Holds class instance
13
+      *
14
+      * @since 1.0.0
15
+      *
16
+      * @var      object \lsx_health_plan\classes\Recipe()
17
+      */
18
+     protected static $instance = null;
19 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 = 'recipe';
20
+     /**
21
+      * Holds post_type slug used as an index
22
+      *
23
+      * @since 1.0.0
24
+      *
25
+      * @var      string
26
+      */
27
+     public $slug = 'recipe';
28 28
 
29
-	/**
30
-	 * Holds post_type labels
31
-	 *
32
-	 * @since 1.0.0
33
-	 *
34
-	 * @var      string
35
-	 */
36
-	public $labels = array();
29
+     /**
30
+      * Holds post_type labels
31
+      *
32
+      * @since 1.0.0
33
+      *
34
+      * @var      string
35
+      */
36
+     public $labels = array();
37 37
 
38
-	/**
39
-	 * Constructor
40
-	 */
41
-	public function __construct() {
42
-		add_action( 'init', array( $this, 'register_post_type' ) );
43
-		add_action( 'init', array( $this, 'taxonomy_setup' ) );
44
-		add_action( 'admin_menu', array( $this, 'register_menus' ) );
38
+     /**
39
+      * Constructor
40
+      */
41
+     public function __construct() {
42
+          add_action( 'init', array( $this, 'register_post_type' ) );
43
+          add_action( 'init', array( $this, 'taxonomy_setup' ) );
44
+          add_action( 'admin_menu', array( $this, 'register_menus' ) );
45 45
 
46
-		// Frontend Actions and Filters.
47
-		add_action( 'wp_head', array( $this, 'remove_archive_original_header' ), 99 );
48
-		add_action( 'lsx_content_wrap_before', array( $this, 'hp_lsx_archive_header' ) );
46
+          // Frontend Actions and Filters.
47
+          add_action( 'wp_head', array( $this, 'remove_archive_original_header' ), 99 );
48
+          add_action( 'lsx_content_wrap_before', array( $this, 'hp_lsx_archive_header' ) );
49 49
 
50
-		add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
51
-		add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
52
-		add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
53
-		add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
54
-		add_filter( 'lsx_display_global_header_description', array( $this, 'disable_global_header_description' ), 100 );
55
-		add_filter( 'woocommerce_get_breadcrumb', array( $this, 'recipes_breadcrumb_filter' ), 30, 1 );
50
+          add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
51
+          add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
52
+          add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
53
+          add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
54
+          add_filter( 'lsx_display_global_header_description', array( $this, 'disable_global_header_description' ), 100 );
55
+          add_filter( 'woocommerce_get_breadcrumb', array( $this, 'recipes_breadcrumb_filter' ), 30, 1 );
56 56
 
57
-		// Backend Actions and Filters.
58
-		add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ) );
59
-		add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) );
60
-	}
57
+          // Backend Actions and Filters.
58
+          add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ) );
59
+          add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) );
60
+     }
61 61
 
62
-	/**
63
-	 * Return an instance of this class.
64
-	 *
65
-	 * @since 1.0.0
66
-	 *
67
-	 * @return    object \lsx_health_plan\classes\Recipe()    A single instance of this class.
68
-	 */
69
-	public static function get_instance() {
62
+     /**
63
+      * Return an instance of this class.
64
+      *
65
+      * @since 1.0.0
66
+      *
67
+      * @return    object \lsx_health_plan\classes\Recipe()    A single instance of this class.
68
+      */
69
+     public static function get_instance() {
70 70
 
71
-		// If the single instance hasn't been set, set it now.
72
-		if ( null === self::$instance ) {
73
-			self::$instance = new self();
74
-		}
71
+          // If the single instance hasn't been set, set it now.
72
+          if ( null === self::$instance ) {
73
+               self::$instance = new self();
74
+          }
75 75
 
76
-		return self::$instance;
76
+          return self::$instance;
77 77
 
78
-	}
78
+     }
79 79
 
80
-	/**
81
-	 * Register the post type.
82
-	 */
83
-	public function register_post_type() {
84
-		$this->labels = array(
85
-			'name'               => esc_html__( 'Recipes', 'lsx-health-plan' ),
86
-			'singular_name'      => esc_html__( 'Recipe', 'lsx-health-plan' ),
87
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
88
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
89
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
90
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
91
-			'all_items'          => esc_html__( 'All Recipes', 'lsx-health-plan' ),
92
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
93
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
94
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
95
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
96
-			'parent_item_colon'  => '',
97
-			'menu_name'          => esc_html__( 'Recipes', 'lsx-health-plan' ),
98
-		);
99
-		$args         = array(
100
-			'labels'             => $this->labels,
101
-			'public'             => true,
102
-			'publicly_queryable' => true,
103
-			'show_ui'            => true,
104
-			'show_in_menu'       => 'edit.php?post_type=meal-pseudo',
105
-			'show_in_rest'       => true,
106
-			'menu_icon'          => 'dashicons-editor-ul',
107
-			'query_var'          => true,
108
-			'rewrite'            => array(
109
-				'slug' => 'recipe',
110
-			),
111
-			'capability_type'    => 'post',
112
-			'has_archive'        => 'recipes',
113
-			'hierarchical'       => false,
114
-			'menu_position'      => null,
115
-			'supports'           => array(
116
-				'title',
117
-				'editor',
118
-				'thumbnail',
119
-				'custom-fields',
120
-			),
121
-		);
122
-		register_post_type( 'recipe', $args );
123
-	}
80
+     /**
81
+      * Register the post type.
82
+      */
83
+     public function register_post_type() {
84
+          $this->labels = array(
85
+               'name'               => esc_html__( 'Recipes', 'lsx-health-plan' ),
86
+               'singular_name'      => esc_html__( 'Recipe', 'lsx-health-plan' ),
87
+               'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
88
+               'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
89
+               'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
90
+               'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
91
+               'all_items'          => esc_html__( 'All Recipes', 'lsx-health-plan' ),
92
+               'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
93
+               'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
94
+               'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
95
+               'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
96
+               'parent_item_colon'  => '',
97
+               'menu_name'          => esc_html__( 'Recipes', 'lsx-health-plan' ),
98
+          );
99
+          $args         = array(
100
+               'labels'             => $this->labels,
101
+               'public'             => true,
102
+               'publicly_queryable' => true,
103
+               'show_ui'            => true,
104
+               'show_in_menu'       => 'edit.php?post_type=meal-pseudo',
105
+               'show_in_rest'       => true,
106
+               'menu_icon'          => 'dashicons-editor-ul',
107
+               'query_var'          => true,
108
+               'rewrite'            => array(
109
+                    'slug' => 'recipe',
110
+               ),
111
+               'capability_type'    => 'post',
112
+               'has_archive'        => 'recipes',
113
+               'hierarchical'       => false,
114
+               'menu_position'      => null,
115
+               'supports'           => array(
116
+                    'title',
117
+                    'editor',
118
+                    'thumbnail',
119
+                    'custom-fields',
120
+               ),
121
+          );
122
+          register_post_type( 'recipe', $args );
123
+     }
124 124
 
125
-	/**
126
-	 * Registers the Recipes under the Meals Post type menu.
127
-	 *
128
-	 * @return void
129
-	 */
130
-	public function register_menus() {
131
-		add_submenu_page( 'edit.php?post_type=meal', esc_html__( 'Recipes', 'lsx-health-plan' ), esc_html__( 'Recipes', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=recipe' );
132
-		add_submenu_page( 'edit.php?post_type=meal', esc_html__( 'Recipe Types', 'lsx-health-plan' ), esc_html__( 'Recipe Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=recipe-type&post_type=recipe' );
133
-		add_submenu_page( 'edit.php?post_type=meal', esc_html__( 'Cuisines', 'lsx-health-plan' ), esc_html__( 'Cuisines', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=recipe-cuisine&post_type=recipe' );
134
-	}
125
+     /**
126
+      * Registers the Recipes under the Meals Post type menu.
127
+      *
128
+      * @return void
129
+      */
130
+     public function register_menus() {
131
+          add_submenu_page( 'edit.php?post_type=meal', esc_html__( 'Recipes', 'lsx-health-plan' ), esc_html__( 'Recipes', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=recipe' );
132
+          add_submenu_page( 'edit.php?post_type=meal', esc_html__( 'Recipe Types', 'lsx-health-plan' ), esc_html__( 'Recipe Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=recipe-type&post_type=recipe' );
133
+          add_submenu_page( 'edit.php?post_type=meal', esc_html__( 'Cuisines', 'lsx-health-plan' ), esc_html__( 'Cuisines', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=recipe-cuisine&post_type=recipe' );
134
+     }
135 135
 
136
-	/**
137
-	 * Register the Cuisine taxonomy.
138
-	 */
139
-	public function taxonomy_setup() {
140
-		$labels = array(
141
-			'name'              => esc_html_x( 'Cuisine', 'taxonomy general name', 'lsx-health-plan' ),
142
-			'singular_name'     => esc_html_x( 'Cuisines', 'taxonomy singular name', 'lsx-health-plan' ),
143
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
144
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
145
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
146
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
147
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
148
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
149
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
150
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
151
-			'menu_name'         => esc_html__( 'Cuisines', 'lsx-health-plan' ),
152
-		);
153
-		$args   = array(
154
-			'hierarchical'      => true,
155
-			'labels'            => $labels,
156
-			'show_ui'           => true,
157
-			'show_admin_column' => true,
158
-			'show_in_menu'      => 'edit.php?post_type=meal',
159
-			'query_var'         => true,
160
-			'rewrite'           => array(
161
-				'slug' => 'recipe-cuisine',
162
-			),
163
-		);
164
-		register_taxonomy( 'recipe-cuisine', array( $this->slug ), $args );
136
+     /**
137
+      * Register the Cuisine taxonomy.
138
+      */
139
+     public function taxonomy_setup() {
140
+          $labels = array(
141
+               'name'              => esc_html_x( 'Cuisine', 'taxonomy general name', 'lsx-health-plan' ),
142
+               'singular_name'     => esc_html_x( 'Cuisines', 'taxonomy singular name', 'lsx-health-plan' ),
143
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
144
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
145
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
146
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
147
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
148
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
149
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
150
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
151
+               'menu_name'         => esc_html__( 'Cuisines', 'lsx-health-plan' ),
152
+          );
153
+          $args   = array(
154
+               'hierarchical'      => true,
155
+               'labels'            => $labels,
156
+               'show_ui'           => true,
157
+               'show_admin_column' => true,
158
+               'show_in_menu'      => 'edit.php?post_type=meal',
159
+               'query_var'         => true,
160
+               'rewrite'           => array(
161
+                    'slug' => 'recipe-cuisine',
162
+               ),
163
+          );
164
+          register_taxonomy( 'recipe-cuisine', array( $this->slug ), $args );
165 165
 
166
-		$labels = array(
167
-			'name'              => esc_html_x( 'Recipe Type', 'taxonomy general name', 'lsx-health-plan' ),
168
-			'singular_name'     => esc_html_x( 'Recipe Types', 'taxonomy singular name', 'lsx-health-plan' ),
169
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
170
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
171
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
172
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
173
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
174
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
175
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
176
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
177
-			'menu_name'         => esc_html__( 'Types', 'lsx-health-plan' ),
178
-		);
179
-		$args   = array(
180
-			'hierarchical'      => true,
181
-			'labels'            => $labels,
182
-			'show_ui'           => true,
183
-			'show_in_menu'      => 'edit.php?post_type=meal',
184
-			'show_admin_column' => true,
185
-			'query_var'         => true,
186
-			'rewrite'           => array(
187
-				'slug' => 'recipe-type',
188
-			),
189
-		);
190
-		register_taxonomy( 'recipe-type', array( $this->slug ), $args );
191
-	}
166
+          $labels = array(
167
+               'name'              => esc_html_x( 'Recipe Type', 'taxonomy general name', 'lsx-health-plan' ),
168
+               'singular_name'     => esc_html_x( 'Recipe Types', 'taxonomy singular name', 'lsx-health-plan' ),
169
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
170
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
171
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
172
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
173
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
174
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
175
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
176
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
177
+               'menu_name'         => esc_html__( 'Types', 'lsx-health-plan' ),
178
+          );
179
+          $args   = array(
180
+               'hierarchical'      => true,
181
+               'labels'            => $labels,
182
+               'show_ui'           => true,
183
+               'show_in_menu'      => 'edit.php?post_type=meal',
184
+               'show_admin_column' => true,
185
+               'query_var'         => true,
186
+               'rewrite'           => array(
187
+                    'slug' => 'recipe-type',
188
+               ),
189
+          );
190
+          register_taxonomy( 'recipe-type', array( $this->slug ), $args );
191
+     }
192 192
 
193
-	/**
194
-	 * Adds the post type to the different arrays.
195
-	 *
196
-	 * @param array $post_types
197
-	 * @return array
198
-	 */
199
-	public function enable_post_type( $post_types = array() ) {
200
-		$post_types[] = $this->slug;
201
-		return $post_types;
202
-	}
193
+     /**
194
+      * Adds the post type to the different arrays.
195
+      *
196
+      * @param array $post_types
197
+      * @return array
198
+      */
199
+     public function enable_post_type( $post_types = array() ) {
200
+          $post_types[] = $this->slug;
201
+          return $post_types;
202
+     }
203 203
 
204
-	/**
205
-	 * Enables the Bi Directional relationships
206
-	 *
207
-	 * @param array $connections
208
-	 * @return void
209
-	 */
210
-	public function enable_connections( $connections = array() ) {
211
-		$connections['recipe']['connected_plans'] = 'connected_recipes';
212
-		$connections['plan']['connected_recipes'] = 'connected_plans';
213
-		return $connections;
214
-	}
204
+     /**
205
+      * Enables the Bi Directional relationships
206
+      *
207
+      * @param array $connections
208
+      * @return void
209
+      */
210
+     public function enable_connections( $connections = array() ) {
211
+          $connections['recipe']['connected_plans'] = 'connected_recipes';
212
+          $connections['plan']['connected_recipes'] = 'connected_plans';
213
+          return $connections;
214
+     }
215 215
 
216
-	/**
217
-	 * Remove the "Archives:" from the post type recipes.
218
-	 *
219
-	 * @param string $title the term title.
220
-	 * @return string
221
-	 */
222
-	public function get_the_archive_title( $title ) {
223
-		if ( is_post_type_archive( 'recipe' ) ) {
224
-			$title = __( 'Recipes', 'lsx-health-plan' );
225
-		}
226
-		if ( is_post_type_archive( 'exercise' ) ) {
227
-			$title = __( 'Exercises', 'lsx-health-plan' );
228
-		}
229
-		if ( is_tax( 'recipe-type' ) ) {
230
-			$queried_object = get_queried_object();
231
-			if ( isset( $queried_object->name ) ) {
232
-				$title = $queried_object->name . ' ' . __( 'Recipes', 'lsx-health-plan' );
233
-			}
234
-		}
235
-		return $title;
236
-	}
216
+     /**
217
+      * Remove the "Archives:" from the post type recipes.
218
+      *
219
+      * @param string $title the term title.
220
+      * @return string
221
+      */
222
+     public function get_the_archive_title( $title ) {
223
+          if ( is_post_type_archive( 'recipe' ) ) {
224
+               $title = __( 'Recipes', 'lsx-health-plan' );
225
+          }
226
+          if ( is_post_type_archive( 'exercise' ) ) {
227
+               $title = __( 'Exercises', 'lsx-health-plan' );
228
+          }
229
+          if ( is_tax( 'recipe-type' ) ) {
230
+               $queried_object = get_queried_object();
231
+               if ( isset( $queried_object->name ) ) {
232
+                    $title = $queried_object->name . ' ' . __( 'Recipes', 'lsx-health-plan' );
233
+               }
234
+          }
235
+          return $title;
236
+     }
237 237
 
238
-	public function remove_archive_original_header() {
239
-		if ( is_post_type_archive( 'recipe' ) || is_post_type_archive( 'exercise' ) ) {
240
-			remove_action( 'lsx_content_wrap_before', 'lsx_global_header' );
241
-		}
242
-		if ( ! is_post_type_archive() ) {
243
-			add_action( 'lsx_content_wrap_before', 'lsx_health_plan_recipe_archive_description', 11 );
244
-		}
245
-	}
238
+     public function remove_archive_original_header() {
239
+          if ( is_post_type_archive( 'recipe' ) || is_post_type_archive( 'exercise' ) ) {
240
+               remove_action( 'lsx_content_wrap_before', 'lsx_global_header' );
241
+          }
242
+          if ( ! is_post_type_archive() ) {
243
+               add_action( 'lsx_content_wrap_before', 'lsx_health_plan_recipe_archive_description', 11 );
244
+          }
245
+     }
246 246
 
247
-	public function hp_lsx_archive_header() {
248
-		if ( is_post_type_archive( 'recipe' ) || is_post_type_archive( 'exercise' ) ) {
249
-		?>
247
+     public function hp_lsx_archive_header() {
248
+          if ( is_post_type_archive( 'recipe' ) || is_post_type_archive( 'exercise' ) ) {
249
+          ?>
250 250
 			<div class="archive-header-wrapper banner-archive">
251 251
 				<?php lsx_global_header_inner_bottom(); ?>
252 252
 				<header class="archive-header">
@@ -259,205 +259,205 @@  discard block
 block discarded – undo
259 259
 					</h1>
260 260
 
261 261
 					<?php
262
-					lsx_health_plan_recipe_archive_description();
263
-					?>
262
+                         lsx_health_plan_recipe_archive_description();
263
+                         ?>
264 264
 				</header>
265 265
 			</div>
266 266
 		<?php
267
-		}
268
-	}
267
+          }
268
+     }
269 269
 
270
-	/**
271
-	 * Disables the global header description
272
-	 *
273
-	 * @param boolean $disable
274
-	 * @return boolean
275
-	 */
276
-	public function disable_global_header_description( $disable ) {
277
-		if ( is_tax( 'recipe-type' ) ) {
278
-			$disable = true;
279
-		}
280
-		return $disable;
281
-	}
270
+     /**
271
+      * Disables the global header description
272
+      *
273
+      * @param boolean $disable
274
+      * @return boolean
275
+      */
276
+     public function disable_global_header_description( $disable ) {
277
+          if ( is_tax( 'recipe-type' ) ) {
278
+               $disable = true;
279
+          }
280
+          return $disable;
281
+     }
282 282
 
283
-	/**
284
-	 * Holds the array for the breadcrumbs.
285
-	 *
286
-	 * @var array $crumbs
287
-	 * @return array
288
-	 */
289
-	public function recipes_breadcrumb_filter( $crumbs ) {
290
-		$recipe  = \lsx_health_plan\functions\get_option( 'endpoint_recipe', 'recipe' );
291
-		$recipes = \lsx_health_plan\functions\get_option( 'endpoint_recipe_archive', 'recipes' );
292
-		$url     = get_post_type_archive_link( 'recipe' );
283
+     /**
284
+      * Holds the array for the breadcrumbs.
285
+      *
286
+      * @var array $crumbs
287
+      * @return array
288
+      */
289
+     public function recipes_breadcrumb_filter( $crumbs ) {
290
+          $recipe  = \lsx_health_plan\functions\get_option( 'endpoint_recipe', 'recipe' );
291
+          $recipes = \lsx_health_plan\functions\get_option( 'endpoint_recipe_archive', 'recipes' );
292
+          $url     = get_post_type_archive_link( 'recipe' );
293 293
 
294
-		if ( is_singular( 'recipe' ) ) {
295
-			$recipe_name     = get_the_title();
296
-			$term_obj_list   = get_the_terms( get_the_ID(), 'recipe-type' );
297
-			$recipe_type     = $term_obj_list[0]->name;
298
-			$recipe_type_url = get_term_link( $term_obj_list[0]->term_id );
294
+          if ( is_singular( 'recipe' ) ) {
295
+               $recipe_name     = get_the_title();
296
+               $term_obj_list   = get_the_terms( get_the_ID(), 'recipe-type' );
297
+               $recipe_type     = $term_obj_list[0]->name;
298
+               $recipe_type_url = get_term_link( $term_obj_list[0]->term_id );
299 299
 		
300
-			$crumbs[1] = array(
301
-				0 => $recipes,
302
-				1 => $url,
303
-			);
304
-			$crumbs[2] = array(
305
-				0 => $recipe_type,
306
-				1 => $recipe_type_url,
307
-			);
308
-			$crumbs[3] = array(
309
-				0 => $recipe_name,
310
-			);
311
-		}
312
-		if ( is_tax( 'recipe-type' ) || is_tax( 'recipe-cuisine' ) ) {
313
-			$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); 
300
+               $crumbs[1] = array(
301
+                    0 => $recipes,
302
+                    1 => $url,
303
+               );
304
+               $crumbs[2] = array(
305
+                    0 => $recipe_type,
306
+                    1 => $recipe_type_url,
307
+               );
308
+               $crumbs[3] = array(
309
+                    0 => $recipe_name,
310
+               );
311
+          }
312
+          if ( is_tax( 'recipe-type' ) || is_tax( 'recipe-cuisine' ) ) {
313
+               $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); 
314 314
 
315
-			$single_term_title = str_replace( '-', ' ', $term->taxonomy ) . ': ' . $term->name;
315
+               $single_term_title = str_replace( '-', ' ', $term->taxonomy ) . ': ' . $term->name;
316 316
 
317
-			$crumbs[1] = array(
318
-				0 => $recipes,
319
-				1 => $url,
320
-			);
321
-			$crumbs[2] = array(
322
-				0 => $single_term_title,
323
-			);
324
-		}
325
-		return $crumbs;
326
-	}
317
+               $crumbs[1] = array(
318
+                    0 => $recipes,
319
+                    1 => $url,
320
+               );
321
+               $crumbs[2] = array(
322
+                    0 => $single_term_title,
323
+               );
324
+          }
325
+          return $crumbs;
326
+     }
327 327
 
328
-	/**
329
-	 * Define the metabox and field configurations.
330
-	 */
331
-	public function featured_metabox() {
332
-		$cmb = new_cmb2_box(
333
-			array(
334
-				'id'           => $this->slug . '_featured_metabox',
335
-				'title'        => __( 'Featured', 'lsx-health-plan' ),
336
-				'object_types' => array( $this->slug ),
337
-				'context'      => 'side',
338
-				'priority'     => 'high',
339
-				'show_names'   => true,
340
-			)
341
-		);
342
-		$cmb->add_field(
343
-			array(
344
-				'name'       => __( 'Featured', 'lsx-health-plan' ),
345
-				'desc'       => __( 'Enable the checkbox to feature this recipe, featured recipes display in any page that has the recipe shortcode: [lsx_health_plan_featured_recipes_block]', 'lsx-health-plan' ),
346
-				'id'         => $this->slug . '_featured',
347
-				'type'       => 'checkbox',
348
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
349
-			)
350
-		);
351
-	}
328
+     /**
329
+      * Define the metabox and field configurations.
330
+      */
331
+     public function featured_metabox() {
332
+          $cmb = new_cmb2_box(
333
+               array(
334
+                    'id'           => $this->slug . '_featured_metabox',
335
+                    'title'        => __( 'Featured', 'lsx-health-plan' ),
336
+                    'object_types' => array( $this->slug ),
337
+                    'context'      => 'side',
338
+                    'priority'     => 'high',
339
+                    'show_names'   => true,
340
+               )
341
+          );
342
+          $cmb->add_field(
343
+               array(
344
+                    'name'       => __( 'Featured', 'lsx-health-plan' ),
345
+                    'desc'       => __( 'Enable the checkbox to feature this recipe, featured recipes display in any page that has the recipe shortcode: [lsx_health_plan_featured_recipes_block]', 'lsx-health-plan' ),
346
+                    'id'         => $this->slug . '_featured',
347
+                    'type'       => 'checkbox',
348
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
349
+               )
350
+          );
351
+     }
352 352
 
353
-	/**
354
-	 * Define the metabox and field configurations.
355
-	 */
356
-	public function details_metaboxes() {
357
-		$cmb = new_cmb2_box(
358
-			array(
359
-				'id'           => $this->slug . '_details_metabox',
360
-				'title'        => __( 'Cooking Info', 'lsx-health-plan' ),
361
-				'object_types' => array( $this->slug ), // Post type
362
-				'context'      => 'normal',
363
-				'priority'     => 'high',
364
-				'show_names'   => true,
365
-			)
366
-		);
367
-		$cmb->add_field(
368
-			array(
369
-				'name'       => __( 'Prep Time', 'lsx-health-plan' ),
370
-				'id'         => $this->slug . '_prep_time',
371
-				'desc'       => __( 'Add the preparation time for the entire meal i.e: 25 mins', 'lsx-health-plan' ),
372
-				'type'       => 'text',
373
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
374
-			)
375
-		);
376
-		$cmb->add_field(
377
-			array(
378
-				'name'       => __( 'Cooking Time', 'lsx-health-plan' ),
379
-				'id'         => $this->slug . '_cooking_time',
380
-				'desc'       => __( 'Add the cooking time i.e: 15 mins', 'lsx-health-plan' ),
381
-				'type'       => 'text',
382
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
383
-			)
384
-		);
385
-		$cmb->add_field(
386
-			array(
387
-				'name'       => __( 'Serves', 'lsx-health-plan' ),
388
-				'id'         => $this->slug . '_serves',
389
-				'desc'       => __( 'Add the recommended serving size i.e: 6', 'lsx-health-plan' ),
390
-				'type'       => 'text',
391
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
392
-				'attributes' => array(
393
-					'type'    => 'number',
394
-					'pattern' => '\d*',
395
-				),
396
-			)
397
-		);
398
-		$cmb->add_field(
399
-			array(
400
-				'name'       => __( 'Portion', 'lsx-health-plan' ),
401
-				'desc'       => __( 'Add the recommended portion size i.e: 200mg', 'lsx-health-plan' ),
402
-				'id'         => $this->slug . '_portion',
403
-				'type'       => 'text',
404
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
405
-			)
406
-		);
407
-		$cmb = new_cmb2_box(
408
-			array(
409
-				'id'           => $this->slug . '_nutritional_metabox',
410
-				'title'        => __( 'Nutritional Info', 'lsx-health-plan' ),
411
-				'object_types' => array( $this->slug ), // Post type
412
-				'context'      => 'normal',
413
-				'priority'     => 'high',
414
-				'show_names'   => true,
415
-			)
416
-		);
417
-		$cmb->add_field(
418
-			array(
419
-				'name'       => __( 'Energy', 'lsx-health-plan' ),
420
-				'id'         => $this->slug . '_energy',
421
-				'desc'       => __( 'Add the energy amount for the entire meal i.e: 700 kj', 'lsx-health-plan' ),
422
-				'type'       => 'text',
423
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
424
-			)
425
-		);
426
-		$cmb->add_field(
427
-			array(
428
-				'name'       => __( 'Protein', 'lsx-health-plan' ),
429
-				'id'         => $this->slug . '_protein',
430
-				'desc'       => __( 'Add the protein amount for the entire meal i.e: 50 g', 'lsx-health-plan' ),
431
-				'type'       => 'text',
432
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
433
-			)
434
-		);
435
-		$cmb->add_field(
436
-			array(
437
-				'name'       => __( 'Carbohydrates', 'lsx-health-plan' ),
438
-				'id'         => $this->slug . '_carbohydrates',
439
-				'desc'       => __( 'Add the carbohydrates amount for the entire meal i.e: 5 g', 'lsx-health-plan' ),
440
-				'type'       => 'text',
441
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
442
-			)
443
-		);
444
-		$cmb->add_field(
445
-			array(
446
-				'name'       => __( 'Fibre', 'lsx-health-plan' ),
447
-				'id'         => $this->slug . '_fibre',
448
-				'desc'       => __( 'Add the fibre amount for the entire meal i.e: 5 g', 'lsx-health-plan' ),
449
-				'type'       => 'text',
450
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
451
-			)
452
-		);
453
-		$cmb->add_field(
454
-			array(
455
-				'name'       => __( 'Fat', 'lsx-health-plan' ),
456
-				'id'         => $this->slug . '_fat',
457
-				'desc'       => __( 'Add the fat amount for the entire meal i.e: 20 g', 'lsx-health-plan' ),
458
-				'type'       => 'text',
459
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
460
-			)
461
-		);
462
-	}
353
+     /**
354
+      * Define the metabox and field configurations.
355
+      */
356
+     public function details_metaboxes() {
357
+          $cmb = new_cmb2_box(
358
+               array(
359
+                    'id'           => $this->slug . '_details_metabox',
360
+                    'title'        => __( 'Cooking Info', 'lsx-health-plan' ),
361
+                    'object_types' => array( $this->slug ), // Post type
362
+                    'context'      => 'normal',
363
+                    'priority'     => 'high',
364
+                    'show_names'   => true,
365
+               )
366
+          );
367
+          $cmb->add_field(
368
+               array(
369
+                    'name'       => __( 'Prep Time', 'lsx-health-plan' ),
370
+                    'id'         => $this->slug . '_prep_time',
371
+                    'desc'       => __( 'Add the preparation time for the entire meal i.e: 25 mins', 'lsx-health-plan' ),
372
+                    'type'       => 'text',
373
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
374
+               )
375
+          );
376
+          $cmb->add_field(
377
+               array(
378
+                    'name'       => __( 'Cooking Time', 'lsx-health-plan' ),
379
+                    'id'         => $this->slug . '_cooking_time',
380
+                    'desc'       => __( 'Add the cooking time i.e: 15 mins', 'lsx-health-plan' ),
381
+                    'type'       => 'text',
382
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
383
+               )
384
+          );
385
+          $cmb->add_field(
386
+               array(
387
+                    'name'       => __( 'Serves', 'lsx-health-plan' ),
388
+                    'id'         => $this->slug . '_serves',
389
+                    'desc'       => __( 'Add the recommended serving size i.e: 6', 'lsx-health-plan' ),
390
+                    'type'       => 'text',
391
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
392
+                    'attributes' => array(
393
+                         'type'    => 'number',
394
+                         'pattern' => '\d*',
395
+                    ),
396
+               )
397
+          );
398
+          $cmb->add_field(
399
+               array(
400
+                    'name'       => __( 'Portion', 'lsx-health-plan' ),
401
+                    'desc'       => __( 'Add the recommended portion size i.e: 200mg', 'lsx-health-plan' ),
402
+                    'id'         => $this->slug . '_portion',
403
+                    'type'       => 'text',
404
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
405
+               )
406
+          );
407
+          $cmb = new_cmb2_box(
408
+               array(
409
+                    'id'           => $this->slug . '_nutritional_metabox',
410
+                    'title'        => __( 'Nutritional Info', 'lsx-health-plan' ),
411
+                    'object_types' => array( $this->slug ), // Post type
412
+                    'context'      => 'normal',
413
+                    'priority'     => 'high',
414
+                    'show_names'   => true,
415
+               )
416
+          );
417
+          $cmb->add_field(
418
+               array(
419
+                    'name'       => __( 'Energy', 'lsx-health-plan' ),
420
+                    'id'         => $this->slug . '_energy',
421
+                    'desc'       => __( 'Add the energy amount for the entire meal i.e: 700 kj', 'lsx-health-plan' ),
422
+                    'type'       => 'text',
423
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
424
+               )
425
+          );
426
+          $cmb->add_field(
427
+               array(
428
+                    'name'       => __( 'Protein', 'lsx-health-plan' ),
429
+                    'id'         => $this->slug . '_protein',
430
+                    'desc'       => __( 'Add the protein amount for the entire meal i.e: 50 g', 'lsx-health-plan' ),
431
+                    'type'       => 'text',
432
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
433
+               )
434
+          );
435
+          $cmb->add_field(
436
+               array(
437
+                    'name'       => __( 'Carbohydrates', 'lsx-health-plan' ),
438
+                    'id'         => $this->slug . '_carbohydrates',
439
+                    'desc'       => __( 'Add the carbohydrates amount for the entire meal i.e: 5 g', 'lsx-health-plan' ),
440
+                    'type'       => 'text',
441
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
442
+               )
443
+          );
444
+          $cmb->add_field(
445
+               array(
446
+                    'name'       => __( 'Fibre', 'lsx-health-plan' ),
447
+                    'id'         => $this->slug . '_fibre',
448
+                    'desc'       => __( 'Add the fibre amount for the entire meal i.e: 5 g', 'lsx-health-plan' ),
449
+                    'type'       => 'text',
450
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
451
+               )
452
+          );
453
+          $cmb->add_field(
454
+               array(
455
+                    'name'       => __( 'Fat', 'lsx-health-plan' ),
456
+                    'id'         => $this->slug . '_fat',
457
+                    'desc'       => __( 'Add the fat amount for the entire meal i.e: 20 g', 'lsx-health-plan' ),
458
+                    'type'       => 'text',
459
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
460
+               )
461
+          );
462
+     }
463 463
 }
Please login to merge, or discard this patch.
classes/post-types/class-plan.php 1 patch
Indentation   +534 added lines, -534 removed lines patch added patch discarded remove patch
@@ -10,207 +10,207 @@  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
-		//Breadcrumbs
67
-		add_filter( 'woocommerce_get_breadcrumb', array( $this, 'plan_breadcrumb_filter' ), 30, 1 );
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
+          //Breadcrumbs
67
+          add_filter( 'woocommerce_get_breadcrumb', array( $this, 'plan_breadcrumb_filter' ), 30, 1 );
68 68
 		
69
-	}
70
-
71
-	/**
72
-	 * Return an instance of this class.
73
-	 *
74
-	 * @since 1.0.0
75
-	 *
76
-	 * @return    object \lsx_health_plan\classes\Meal_Plan()    A single instance of this class.
77
-	 */
78
-	public static function get_instance() {
79
-		// If the single instance hasn't been set, set it now.
80
-		if ( null === self::$instance ) {
81
-			self::$instance = new self();
82
-		}
83
-		return self::$instance;
84
-	}
85
-	/**
86
-	 * Register the post type.
87
-	 */
88
-	public function register_post_type() {
89
-		$labels = array(
90
-			'name'               => esc_html__( 'Plans', 'lsx-health-plan' ),
91
-			'singular_name'      => esc_html__( 'Plan', 'lsx-health-plan' ),
92
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
93
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
94
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
95
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
96
-			'all_items'          => esc_html__( 'All Plans', 'lsx-health-plan' ),
97
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
98
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
99
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
100
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
101
-			'parent_item_colon'  => esc_html__( 'Parent:', 'lsx-health-plan' ),
102
-			'menu_name'          => esc_html__( 'Plans', 'lsx-health-plan' ),
103
-		);
104
-		$args   = array(
105
-			'labels'             => $labels,
106
-			'public'             => true,
107
-			'publicly_queryable' => true,
108
-			'show_ui'            => true,
109
-			'show_in_menu'       => true,
110
-			'show_in_rest'       => true,
111
-			'menu_icon'          => 'dashicons-welcome-write-blog',
112
-			'query_var'          => true,
113
-			'rewrite'            => array(
114
-				'slug' => \lsx_health_plan\functions\get_option( 'plan_single_slug', 'plan' ),
115
-			),
116
-			'capability_type'    => 'page',
117
-			'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plans' ),
118
-			'hierarchical'       => false,
119
-			'menu_position'      => null,
120
-			'supports'           => array(
121
-				'title',
122
-				'editor',
123
-				'thumbnail',
124
-				'page-attributes',
125
-				'custom-fields',
126
-			),
127
-		);
128
-		register_post_type( 'plan', $args );
129
-	}
130
-
131
-	/**
132
-	 * Register the Type taxonomy.
133
-	 */
134
-	public function plan_type_taxonomy_setup() {
135
-		$labels = array(
136
-			'name'              => esc_html_x( 'Plan Type', 'taxonomy general name', 'lsx-health-plan' ),
137
-			'singular_name'     => esc_html_x( 'Plan Type', 'taxonomy singular name', 'lsx-health-plan' ),
138
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
139
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
140
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
141
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
142
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
143
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
144
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
145
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
146
-			'menu_name'         => esc_html__( 'Plan Types', 'lsx-health-plan' ),
147
-		);
148
-
149
-		$args = array(
150
-			'hierarchical'      => true,
151
-			'labels'            => $labels,
152
-			'show_ui'           => true,
153
-			'show_admin_column' => true,
154
-			'query_var'         => true,
155
-			'rewrite'           => array(
156
-				'slug' => 'plan-type',
157
-			),
158
-		);
159
-
160
-		register_taxonomy( 'plan-type', array( 'plan' ), $args );
161
-	}
162
-
163
-	/**
164
-	 * Register the Week taxonomy.
165
-	 */
166
-	public function week_taxonomy_setup() {
167
-		$labels = array(
168
-			'name'              => esc_html_x( 'Week', 'taxonomy general name', 'lsx-health-plan' ),
169
-			'singular_name'     => esc_html_x( 'Week', 'taxonomy singular name', 'lsx-health-plan' ),
170
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
171
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
172
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
173
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
174
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
175
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
176
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
177
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
178
-			'menu_name'         => esc_html__( 'Weeks', 'lsx-health-plan' ),
179
-		);
180
-
181
-		$args = array(
182
-			'hierarchical'      => true,
183
-			'labels'            => $labels,
184
-			'show_ui'           => true,
185
-			'show_admin_column' => true,
186
-			'query_var'         => true,
187
-			'show_in_rest'      => true,
188
-			'rewrite'           => array(
189
-				'slug' => 'week',
190
-			),
191
-		);
192
-
193
-		register_taxonomy( 'week', array( 'plan' ), $args );
194
-	}
195
-
196
-	/**
197
-	 * Output the form field for this metadata when adding a new term
198
-	 *
199
-	 * @since 0.1.0
200
-	 */
201
-	public function add_thumbnail_form_field( $term = false ) {
202
-		if ( is_object( $term ) ) {
203
-			$value         = get_term_meta( $term->term_id, 'thumbnail', true );
204
-			$image_preview = wp_get_attachment_image_src( $value, 'thumbnail' );
205
-
206
-			if ( is_array( $image_preview ) ) {
207
-				$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 . '" />';
208
-			}
209
-		} else {
210
-			$image_preview = false;
211
-			$value         = false;
212
-		}
213
-		?>
69
+     }
70
+
71
+     /**
72
+      * Return an instance of this class.
73
+      *
74
+      * @since 1.0.0
75
+      *
76
+      * @return    object \lsx_health_plan\classes\Meal_Plan()    A single instance of this class.
77
+      */
78
+     public static function get_instance() {
79
+          // If the single instance hasn't been set, set it now.
80
+          if ( null === self::$instance ) {
81
+               self::$instance = new self();
82
+          }
83
+          return self::$instance;
84
+     }
85
+     /**
86
+      * Register the post type.
87
+      */
88
+     public function register_post_type() {
89
+          $labels = array(
90
+               'name'               => esc_html__( 'Plans', 'lsx-health-plan' ),
91
+               'singular_name'      => esc_html__( 'Plan', 'lsx-health-plan' ),
92
+               'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
93
+               'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
94
+               'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
95
+               'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
96
+               'all_items'          => esc_html__( 'All Plans', 'lsx-health-plan' ),
97
+               'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
98
+               'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
99
+               'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
100
+               'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
101
+               'parent_item_colon'  => esc_html__( 'Parent:', 'lsx-health-plan' ),
102
+               'menu_name'          => esc_html__( 'Plans', 'lsx-health-plan' ),
103
+          );
104
+          $args   = array(
105
+               'labels'             => $labels,
106
+               'public'             => true,
107
+               'publicly_queryable' => true,
108
+               'show_ui'            => true,
109
+               'show_in_menu'       => true,
110
+               'show_in_rest'       => true,
111
+               'menu_icon'          => 'dashicons-welcome-write-blog',
112
+               'query_var'          => true,
113
+               'rewrite'            => array(
114
+                    'slug' => \lsx_health_plan\functions\get_option( 'plan_single_slug', 'plan' ),
115
+               ),
116
+               'capability_type'    => 'page',
117
+               'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plans' ),
118
+               'hierarchical'       => false,
119
+               'menu_position'      => null,
120
+               'supports'           => array(
121
+                    'title',
122
+                    'editor',
123
+                    'thumbnail',
124
+                    'page-attributes',
125
+                    'custom-fields',
126
+               ),
127
+          );
128
+          register_post_type( 'plan', $args );
129
+     }
130
+
131
+     /**
132
+      * Register the Type taxonomy.
133
+      */
134
+     public function plan_type_taxonomy_setup() {
135
+          $labels = array(
136
+               'name'              => esc_html_x( 'Plan Type', 'taxonomy general name', 'lsx-health-plan' ),
137
+               'singular_name'     => esc_html_x( 'Plan Type', 'taxonomy singular name', 'lsx-health-plan' ),
138
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
139
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
140
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
141
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
142
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
143
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
144
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
145
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
146
+               'menu_name'         => esc_html__( 'Plan Types', 'lsx-health-plan' ),
147
+          );
148
+
149
+          $args = array(
150
+               'hierarchical'      => true,
151
+               'labels'            => $labels,
152
+               'show_ui'           => true,
153
+               'show_admin_column' => true,
154
+               'query_var'         => true,
155
+               'rewrite'           => array(
156
+                    'slug' => 'plan-type',
157
+               ),
158
+          );
159
+
160
+          register_taxonomy( 'plan-type', array( 'plan' ), $args );
161
+     }
162
+
163
+     /**
164
+      * Register the Week taxonomy.
165
+      */
166
+     public function week_taxonomy_setup() {
167
+          $labels = array(
168
+               'name'              => esc_html_x( 'Week', 'taxonomy general name', 'lsx-health-plan' ),
169
+               'singular_name'     => esc_html_x( 'Week', 'taxonomy singular name', 'lsx-health-plan' ),
170
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
171
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
172
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
173
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
174
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
175
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
176
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
177
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
178
+               'menu_name'         => esc_html__( 'Weeks', 'lsx-health-plan' ),
179
+          );
180
+
181
+          $args = array(
182
+               'hierarchical'      => true,
183
+               'labels'            => $labels,
184
+               'show_ui'           => true,
185
+               'show_admin_column' => true,
186
+               'query_var'         => true,
187
+               'show_in_rest'      => true,
188
+               'rewrite'           => array(
189
+                    'slug' => 'week',
190
+               ),
191
+          );
192
+
193
+          register_taxonomy( 'week', array( 'plan' ), $args );
194
+     }
195
+
196
+     /**
197
+      * Output the form field for this metadata when adding a new term
198
+      *
199
+      * @since 0.1.0
200
+      */
201
+     public function add_thumbnail_form_field( $term = false ) {
202
+          if ( is_object( $term ) ) {
203
+               $value         = get_term_meta( $term->term_id, 'thumbnail', true );
204
+               $image_preview = wp_get_attachment_image_src( $value, 'thumbnail' );
205
+
206
+               if ( is_array( $image_preview ) ) {
207
+                    $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 . '" />';
208
+               }
209
+          } else {
210
+               $image_preview = false;
211
+               $value         = false;
212
+          }
213
+          ?>
214 214
 		<tr class="form-field form-required term-thumbnail-wrap">
215 215
 			<th scope="row"><label for="thumbnail"><?php esc_html_e( 'Icon Image', 'lsx-health-plan' ); ?></label></th>
216 216
 			<td>
@@ -224,343 +224,343 @@  discard block
 block discarded – undo
224 224
 			</td>
225 225
 		</tr>
226 226
 		<?php
227
-	}
228
-
229
-	/**
230
-	 * Saves the Taxonomy term icon image
231
-	 *
232
-	 * @since 0.1.0
233
-	 *
234
-	 * @param  int    $term_id
235
-	 * @param  string $taxonomy
236
-	 */
237
-	public function save_meta( $term_id = 0, $taxonomy = '' ) {
238
-		if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
239
-			return;
240
-		}
241
-
242
-		if ( ! isset( $_POST['thumbnail'] ) ) {
243
-			return;
244
-		}
245
-
246
-		if ( check_admin_referer( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ) ) {
247
-			if ( ! isset( $_POST['thumbnail'] ) ) {
248
-				return;
249
-			}
250
-
251
-			$thumbnail_meta = sanitize_text_field( $_POST['thumbnail'] );
252
-			$thumbnail_meta = ! empty( $thumbnail_meta ) ? $thumbnail_meta : '';
253
-
254
-			if ( empty( $thumbnail_meta ) ) {
255
-				delete_term_meta( $term_id, 'thumbnail' );
256
-			} else {
257
-				update_term_meta( $term_id, 'thumbnail', $thumbnail_meta );
258
-			}
259
-		}
260
-	}
261
-
262
-	/**
263
-	 * Define the metabox and field configurations.
264
-	 */
265
-	public function details_metaboxes() {
266
-		$cmb = new_cmb2_box( array(
267
-			'id'           => $this->slug . '_details_metabox',
268
-			'title'        => __( 'Details', 'lsx-health-plan' ),
269
-			'object_types' => array( $this->slug ), // Post type
270
-			'context'      => 'normal',
271
-			'priority'     => 'high',
272
-			'show_names'   => true,
273
-		) );
274
-
275
-		$cmb->add_field( array(
276
-			'name' => __( 'Plan Short Description', 'lsx-health-plan' ),
277
-			'id'   => $this->slug . '_short_description',
278
-			'type' => 'textarea_small',
279
-			'desc' => __( 'Add a small description for this plan (optional)', 'lsx-health-plan' ),
280
-		) );
281
-
282
-		$warmup_type = 'page';
283
-		if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
284
-			$warmup_type = array( 'page', 'workout' );
285
-		}
286
-		$cmb->add_field( array(
287
-			'name'       => __( 'Warmup', 'lsx-health-plan' ),
288
-			'desc'       => __( 'Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan' ),
289
-			'id'         => $this->slug . '_warmup',
290
-			'type'       => 'post_search_ajax',
291
-			// Optional :
292
-			'limit'      => 3,  // Limit selection to X items only (default 1)
293
-			'sortable'   => true, // Allow selected items to be sortable (default false)
294
-			'query_args' => array(
295
-				'post_type'      => $warmup_type,
296
-				'post_status'    => array( 'publish' ),
297
-				'posts_per_page' => -1,
298
-			),
299
-		) );
300
-	}
301
-
302
-	/**
303
-	 * Adds the post type to the different arrays.
304
-	 *
305
-	 * @param array $post_types
306
-	 * @return array
307
-	 */
308
-	public function enable_post_type( $post_types = array() ) {
309
-		$post_types[] = $this->slug;
310
-		return $post_types;
311
-	}
312
-
313
-	/**
314
-	 * Registers the workout connections on the plan post type.
315
-	 *
316
-	 * @return void
317
-	 */
318
-	public function plan_connections() {
319
-		$cmb = new_cmb2_box(
320
-			array(
321
-				'id'           => $this->slug . '_connections_metabox',
322
-				'title'        => __( 'Plans', 'lsx-health-plan' ),
323
-				'object_types' => array( 'workout', 'meal', 'tip', 'recipe' ),
324
-				'context'      => 'normal',
325
-				'priority'     => 'high',
326
-				'show_names'   => true,
327
-			)
328
-		);
329
-		$cmb->add_field(
330
-			array(
331
-				'name'       => __( 'Plan', 'lsx-health-plan' ),
332
-				'id'         => 'connected_plans',
333
-				'desc'       => __( 'Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan' ),
334
-				'type'       => 'post_search_ajax',
335
-				'limit'      => 15,
336
-				'sortable'   => true,
337
-				'query_args' => array(
338
-					'post_type'      => array( 'plan' ),
339
-					'post_status'    => array( 'publish' ),
340
-					'posts_per_page' => -1,
341
-				),
342
-			)
343
-		);
344
-	}
345
-
346
-	/**
347
-	 * Remove the "Archives:" from the post type.
348
-	 *
349
-	 * @param string $title the term title.
350
-	 * @return string
351
-	 */
352
-	public function get_the_archive_title( $title ) {
353
-		if ( is_post_type_archive( 'plan' ) ) {
354
-			$title = __( 'Our health plans', 'lsx-health-plan' );
355
-		}
356
-		return $title;
357
-	}
358
-
359
-	/**
360
-	 * Set the post type archive to show the parent plans only.
361
-	 *
362
-	 * @param object $wp_query
363
-	 * @return array
364
-	 */
365
-	public function set_parent_only( $wp_query ) {
366
-		if ( ! is_admin() && $wp_query->is_main_query() && ( $wp_query->is_post_type_archive( 'plan' ) || $wp_query->is_tax( 'plan-type' ) ) ) {
367
-			$wp_query->set( 'post_parent', '0' );
368
-		}
369
-	}
370
-
371
-	/**
372
-	 * Define the metabox and field configurations.
373
-	 */
374
-	public function featured_metabox() {
375
-		$cmb = new_cmb2_box(
376
-			array(
377
-				'id'           => $this->slug . '_featured_metabox_plan',
378
-				'title'        => __( 'Featured Plan', 'lsx-health-plan' ),
379
-				'object_types' => array( $this->slug ), // Post type
380
-				'context'      => 'side',
381
-				'priority'     => 'high',
382
-				'show_names'   => true,
383
-			)
384
-		);
385
-		$cmb->add_field(
386
-			array(
387
-				'name'       => __( 'Featured Plan', 'lsx-health-plan' ),
388
-				'desc'       => __( 'Enable a featured plan' ),
389
-				'id'         => $this->slug . '_featured_plan',
390
-				'type'       => 'checkbox',
391
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
392
-			)
393
-		);
394
-	}
395
-
396
-	/**
397
-	 * Define the metabox and field configurations.
398
-	 */
399
-	public function sections_metabox_loop() {
400
-		$cmb = new_cmb2_box(
401
-			array(
402
-				'id'           => $this->slug . '_sections_metabox',
403
-				'title'        => __( 'Sections', 'lsx-health-plan' ),
404
-				'object_types' => array( $this->slug ), // Post type.
405
-				'context'      => 'normal',
406
-				'priority'     => 'low',
407
-				'show_names'   => true,
408
-			)
409
-		);
410
-
411
-		/*
227
+     }
228
+
229
+     /**
230
+      * Saves the Taxonomy term icon image
231
+      *
232
+      * @since 0.1.0
233
+      *
234
+      * @param  int    $term_id
235
+      * @param  string $taxonomy
236
+      */
237
+     public function save_meta( $term_id = 0, $taxonomy = '' ) {
238
+          if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
239
+               return;
240
+          }
241
+
242
+          if ( ! isset( $_POST['thumbnail'] ) ) {
243
+               return;
244
+          }
245
+
246
+          if ( check_admin_referer( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ) ) {
247
+               if ( ! isset( $_POST['thumbnail'] ) ) {
248
+                    return;
249
+               }
250
+
251
+               $thumbnail_meta = sanitize_text_field( $_POST['thumbnail'] );
252
+               $thumbnail_meta = ! empty( $thumbnail_meta ) ? $thumbnail_meta : '';
253
+
254
+               if ( empty( $thumbnail_meta ) ) {
255
+                    delete_term_meta( $term_id, 'thumbnail' );
256
+               } else {
257
+                    update_term_meta( $term_id, 'thumbnail', $thumbnail_meta );
258
+               }
259
+          }
260
+     }
261
+
262
+     /**
263
+      * Define the metabox and field configurations.
264
+      */
265
+     public function details_metaboxes() {
266
+          $cmb = new_cmb2_box( array(
267
+               'id'           => $this->slug . '_details_metabox',
268
+               'title'        => __( 'Details', 'lsx-health-plan' ),
269
+               'object_types' => array( $this->slug ), // Post type
270
+               'context'      => 'normal',
271
+               'priority'     => 'high',
272
+               'show_names'   => true,
273
+          ) );
274
+
275
+          $cmb->add_field( array(
276
+               'name' => __( 'Plan Short Description', 'lsx-health-plan' ),
277
+               'id'   => $this->slug . '_short_description',
278
+               'type' => 'textarea_small',
279
+               'desc' => __( 'Add a small description for this plan (optional)', 'lsx-health-plan' ),
280
+          ) );
281
+
282
+          $warmup_type = 'page';
283
+          if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
284
+               $warmup_type = array( 'page', 'workout' );
285
+          }
286
+          $cmb->add_field( array(
287
+               'name'       => __( 'Warmup', 'lsx-health-plan' ),
288
+               'desc'       => __( 'Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan' ),
289
+               'id'         => $this->slug . '_warmup',
290
+               'type'       => 'post_search_ajax',
291
+               // Optional :
292
+               'limit'      => 3,  // Limit selection to X items only (default 1)
293
+               'sortable'   => true, // Allow selected items to be sortable (default false)
294
+               'query_args' => array(
295
+                    'post_type'      => $warmup_type,
296
+                    'post_status'    => array( 'publish' ),
297
+                    'posts_per_page' => -1,
298
+               ),
299
+          ) );
300
+     }
301
+
302
+     /**
303
+      * Adds the post type to the different arrays.
304
+      *
305
+      * @param array $post_types
306
+      * @return array
307
+      */
308
+     public function enable_post_type( $post_types = array() ) {
309
+          $post_types[] = $this->slug;
310
+          return $post_types;
311
+     }
312
+
313
+     /**
314
+      * Registers the workout connections on the plan post type.
315
+      *
316
+      * @return void
317
+      */
318
+     public function plan_connections() {
319
+          $cmb = new_cmb2_box(
320
+               array(
321
+                    'id'           => $this->slug . '_connections_metabox',
322
+                    'title'        => __( 'Plans', 'lsx-health-plan' ),
323
+                    'object_types' => array( 'workout', 'meal', 'tip', 'recipe' ),
324
+                    'context'      => 'normal',
325
+                    'priority'     => 'high',
326
+                    'show_names'   => true,
327
+               )
328
+          );
329
+          $cmb->add_field(
330
+               array(
331
+                    'name'       => __( 'Plan', 'lsx-health-plan' ),
332
+                    'id'         => 'connected_plans',
333
+                    'desc'       => __( 'Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan' ),
334
+                    'type'       => 'post_search_ajax',
335
+                    'limit'      => 15,
336
+                    'sortable'   => true,
337
+                    'query_args' => array(
338
+                         'post_type'      => array( 'plan' ),
339
+                         'post_status'    => array( 'publish' ),
340
+                         'posts_per_page' => -1,
341
+                    ),
342
+               )
343
+          );
344
+     }
345
+
346
+     /**
347
+      * Remove the "Archives:" from the post type.
348
+      *
349
+      * @param string $title the term title.
350
+      * @return string
351
+      */
352
+     public function get_the_archive_title( $title ) {
353
+          if ( is_post_type_archive( 'plan' ) ) {
354
+               $title = __( 'Our health plans', 'lsx-health-plan' );
355
+          }
356
+          return $title;
357
+     }
358
+
359
+     /**
360
+      * Set the post type archive to show the parent plans only.
361
+      *
362
+      * @param object $wp_query
363
+      * @return array
364
+      */
365
+     public function set_parent_only( $wp_query ) {
366
+          if ( ! is_admin() && $wp_query->is_main_query() && ( $wp_query->is_post_type_archive( 'plan' ) || $wp_query->is_tax( 'plan-type' ) ) ) {
367
+               $wp_query->set( 'post_parent', '0' );
368
+          }
369
+     }
370
+
371
+     /**
372
+      * Define the metabox and field configurations.
373
+      */
374
+     public function featured_metabox() {
375
+          $cmb = new_cmb2_box(
376
+               array(
377
+                    'id'           => $this->slug . '_featured_metabox_plan',
378
+                    'title'        => __( 'Featured Plan', 'lsx-health-plan' ),
379
+                    'object_types' => array( $this->slug ), // Post type
380
+                    'context'      => 'side',
381
+                    'priority'     => 'high',
382
+                    'show_names'   => true,
383
+               )
384
+          );
385
+          $cmb->add_field(
386
+               array(
387
+                    'name'       => __( 'Featured Plan', 'lsx-health-plan' ),
388
+                    'desc'       => __( 'Enable a featured plan' ),
389
+                    'id'         => $this->slug . '_featured_plan',
390
+                    'type'       => 'checkbox',
391
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
392
+               )
393
+          );
394
+     }
395
+
396
+     /**
397
+      * Define the metabox and field configurations.
398
+      */
399
+     public function sections_metabox_loop() {
400
+          $cmb = new_cmb2_box(
401
+               array(
402
+                    'id'           => $this->slug . '_sections_metabox',
403
+                    'title'        => __( 'Sections', 'lsx-health-plan' ),
404
+                    'object_types' => array( $this->slug ), // Post type.
405
+                    'context'      => 'normal',
406
+                    'priority'     => 'low',
407
+                    'show_names'   => true,
408
+               )
409
+          );
410
+
411
+          /*
412 412
 		This is where the repeatable group is defined, each field has the same ID as the legacy field.
413 413
 		There is a function which runs and adds to looped fields to individual fields for WP Query compatability.
414 414
 		*/
415
-		$group = $cmb->add_field(
416
-			array(
417
-				'id'      => $this->slug . '_sections',
418
-				'type'    => 'group',
419
-				'options' => array(
420
-					'group_title'   => __( 'Section', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
421
-					'add_button'    => __( 'Add section', 'lsx-health-plan' ),
422
-					'remove_button' => __( 'Remove section', 'lsx-health-plan' ),
423
-					'sortable'      => true,
424
-					'closed'        => true, // true to have the groups closed by default
425
-				),
426
-				'classes' => 'lsx-admin-row',
415
+          $group = $cmb->add_field(
416
+               array(
417
+                    'id'      => $this->slug . '_sections',
418
+                    'type'    => 'group',
419
+                    'options' => array(
420
+                         'group_title'   => __( 'Section', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number
421
+                         'add_button'    => __( 'Add section', 'lsx-health-plan' ),
422
+                         'remove_button' => __( 'Remove section', 'lsx-health-plan' ),
423
+                         'sortable'      => true,
424
+                         'closed'        => true, // true to have the groups closed by default
425
+                    ),
426
+                    'classes' => 'lsx-admin-row',
427 427
 				
428
-			)
429
-		);
430
-
431
-		$cmb->add_group_field(
432
-			$group,
433
-			array(
434
-				'name'       => __( 'Title', 'lsx-health-plan' ),
435
-				'id'         => 'title',
436
-				'type'       => 'text',
437
-				'desc'       => __( 'e.g Day 1 / Week 1', 'lsx-health-plan' ),
438
-				'classes'    => 'lsx-field-col  lsx-field-col-50',
439
-			)
440
-		);
441
-
442
-		$cmb->add_group_field(
443
-			$group,
444
-			array(
445
-				'name'       => __( 'Group', 'lsx-health-plan' ),
446
-				'id'         => 'group',
447
-				'type'       => 'text',
448
-				'desc'       => __( 'e.g Week 1 / January', 'lsx-health-plan' ),
449
-				'classes'    => 'lsx-field-col  lsx-field-col-50',
450
-			)
451
-		);
452
-
453
-		$cmb->add_group_field(
454
-			$group,
455
-			array(
456
-				'name' => __( 'Overview', 'lsx-health-plan' ),
457
-				'id'   => 'description',
458
-				'type' => 'wysiwyg',
459
-			)
460
-		);
461
-
462
-		if ( post_type_exists( 'workout' ) ) {
463
-			$cmb->add_group_field(
464
-				$group,
465
-				array(
466
-					'name'       => __( 'Workouts', 'lsx-health-plan' ),
467
-					'id'         => 'connected_workouts',
468
-					'desc'       => __( 'Connect the workout(s) that apply to this section.', 'lsx-health-plan' ),
469
-					'type'       => 'post_search_ajax',
470
-					'limit'      => 15,
471
-					'sortable'   => true,
472
-					'query_args' => array(
473
-						'post_type'      => array( 'workout' ),
474
-						'post_status'    => array( 'publish' ),
475
-						'posts_per_page' => -1,
476
-					),
477
-					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-50',
478
-				)
479
-			);
480
-			$cmb->add_group_field(
481
-				$group,
482
-				array(
483
-					'name'        => __( 'Rest day', 'lsx-health-plan' ),
484
-					'id'          => 'rest_day_enabled',
485
-					'type'        => 'checkbox',
486
-					'value'       => 1,
487
-					'default'     => 0,
488
-					'description' => __( 'Enabling the rest day will add an item called "Rest" with no links.', 'lsx-health-plan' ),
489
-					'classes'    => 'lsx-field-col lsx-field-add-field',
490
-				)
491
-			);
492
-		}
493
-
494
-		if ( post_type_exists( 'meal' ) ) {
495
-			$cmb->add_group_field(
496
-				$group,
497
-				array(
498
-					'name'       => __( 'Meals', 'lsx-health-plan' ),
499
-					'desc'       => __( 'Connect the meal(s) that apply to this section.', 'lsx-health-plan' ),
500
-					'id'         => 'connected_meals',
501
-					'type'       => 'post_search_ajax',
502
-					// Optional :
503
-					'limit'      => 15, // Limit selection to X items only (default 1)
504
-					'sortable'   => true, // Allow selected items to be sortable (default false)
505
-					'query_args' => array(
506
-						'post_type'      => array( 'meal' ),
507
-						'post_status'    => array( 'publish' ),
508
-						'posts_per_page' => -1,
509
-					),
510
-					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-50',
511
-				)
512
-			);
513
-		}
514
-		if ( post_type_exists( 'tip' ) ) {
515
-			$cmb->add_group_field(
516
-				$group,
517
-				array(
518
-					'name'       => __( 'Tips', 'lsx-health-plan' ),
519
-					'id'         => 'connected_tips',
520
-					'desc'       => __( 'Connect the tip(s) that apply to this section.', 'lsx-health-plan' ),
521
-					'type'       => 'post_search_ajax',
522
-					// Optional :
523
-					'limit'      => 15,  // Limit selection to X items only (default 1)
524
-					'sortable'   => true,  // Allow selected items to be sortable (default false)
525
-					'query_args' => array(
526
-						'post_type'      => array( 'tip' ),
527
-						'post_status'    => array( 'publish' ),
528
-						'posts_per_page' => -1,
529
-					),
530
-					'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-50',
531
-				)
532
-			);
533
-		}
534
-	}
535
-
536
-	/**
537
-	 * Holds the array for the single plan breadcrumbs.
538
-	 *
539
-	 * @var array $crumbs
540
-	 * @return array
541
-	 */
542
-	public function plan_breadcrumb_filter( $crumbs ) {
543
-		if ( is_singular( 'plan' ) ) {
544
-			$plan          = \lsx_health_plan\functions\get_option( 'endpoint_plan', 'plan' );
545
-			$plans         = \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plan' );	
546
-			$plan_name     = get_the_title();
547
-			$url           = get_post_type_archive_link( $plan );
548
-			$term_obj_list = get_the_terms( get_the_ID(), 'plan-type' );
549
-			$plan_type     = $term_obj_list[0]->name;
550
-			$plan_type_url = get_term_link( $term_obj_list[0]->term_id );
428
+               )
429
+          );
430
+
431
+          $cmb->add_group_field(
432
+               $group,
433
+               array(
434
+                    'name'       => __( 'Title', 'lsx-health-plan' ),
435
+                    'id'         => 'title',
436
+                    'type'       => 'text',
437
+                    'desc'       => __( 'e.g Day 1 / Week 1', 'lsx-health-plan' ),
438
+                    'classes'    => 'lsx-field-col  lsx-field-col-50',
439
+               )
440
+          );
441
+
442
+          $cmb->add_group_field(
443
+               $group,
444
+               array(
445
+                    'name'       => __( 'Group', 'lsx-health-plan' ),
446
+                    'id'         => 'group',
447
+                    'type'       => 'text',
448
+                    'desc'       => __( 'e.g Week 1 / January', 'lsx-health-plan' ),
449
+                    'classes'    => 'lsx-field-col  lsx-field-col-50',
450
+               )
451
+          );
452
+
453
+          $cmb->add_group_field(
454
+               $group,
455
+               array(
456
+                    'name' => __( 'Overview', 'lsx-health-plan' ),
457
+                    'id'   => 'description',
458
+                    'type' => 'wysiwyg',
459
+               )
460
+          );
461
+
462
+          if ( post_type_exists( 'workout' ) ) {
463
+               $cmb->add_group_field(
464
+                    $group,
465
+                    array(
466
+                         'name'       => __( 'Workouts', 'lsx-health-plan' ),
467
+                         'id'         => 'connected_workouts',
468
+                         'desc'       => __( 'Connect the workout(s) that apply to this section.', 'lsx-health-plan' ),
469
+                         'type'       => 'post_search_ajax',
470
+                         'limit'      => 15,
471
+                         'sortable'   => true,
472
+                         'query_args' => array(
473
+                              'post_type'      => array( 'workout' ),
474
+                              'post_status'    => array( 'publish' ),
475
+                              'posts_per_page' => -1,
476
+                         ),
477
+                         'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-50',
478
+                    )
479
+               );
480
+               $cmb->add_group_field(
481
+                    $group,
482
+                    array(
483
+                         'name'        => __( 'Rest day', 'lsx-health-plan' ),
484
+                         'id'          => 'rest_day_enabled',
485
+                         'type'        => 'checkbox',
486
+                         'value'       => 1,
487
+                         'default'     => 0,
488
+                         'description' => __( 'Enabling the rest day will add an item called "Rest" with no links.', 'lsx-health-plan' ),
489
+                         'classes'    => 'lsx-field-col lsx-field-add-field',
490
+                    )
491
+               );
492
+          }
493
+
494
+          if ( post_type_exists( 'meal' ) ) {
495
+               $cmb->add_group_field(
496
+                    $group,
497
+                    array(
498
+                         'name'       => __( 'Meals', 'lsx-health-plan' ),
499
+                         'desc'       => __( 'Connect the meal(s) that apply to this section.', 'lsx-health-plan' ),
500
+                         'id'         => 'connected_meals',
501
+                         'type'       => 'post_search_ajax',
502
+                         // Optional :
503
+                         'limit'      => 15, // Limit selection to X items only (default 1)
504
+                         'sortable'   => true, // Allow selected items to be sortable (default false)
505
+                         'query_args' => array(
506
+                              'post_type'      => array( 'meal' ),
507
+                              'post_status'    => array( 'publish' ),
508
+                              'posts_per_page' => -1,
509
+                         ),
510
+                         'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-50',
511
+                    )
512
+               );
513
+          }
514
+          if ( post_type_exists( 'tip' ) ) {
515
+               $cmb->add_group_field(
516
+                    $group,
517
+                    array(
518
+                         'name'       => __( 'Tips', 'lsx-health-plan' ),
519
+                         'id'         => 'connected_tips',
520
+                         'desc'       => __( 'Connect the tip(s) that apply to this section.', 'lsx-health-plan' ),
521
+                         'type'       => 'post_search_ajax',
522
+                         // Optional :
523
+                         'limit'      => 15,  // Limit selection to X items only (default 1)
524
+                         'sortable'   => true,  // Allow selected items to be sortable (default false)
525
+                         'query_args' => array(
526
+                              'post_type'      => array( 'tip' ),
527
+                              'post_status'    => array( 'publish' ),
528
+                              'posts_per_page' => -1,
529
+                         ),
530
+                         'classes'    => 'lsx-field-col lsx-field-add-field  lsx-field-col-50',
531
+                    )
532
+               );
533
+          }
534
+     }
535
+
536
+     /**
537
+      * Holds the array for the single plan breadcrumbs.
538
+      *
539
+      * @var array $crumbs
540
+      * @return array
541
+      */
542
+     public function plan_breadcrumb_filter( $crumbs ) {
543
+          if ( is_singular( 'plan' ) ) {
544
+               $plan          = \lsx_health_plan\functions\get_option( 'endpoint_plan', 'plan' );
545
+               $plans         = \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plan' );	
546
+               $plan_name     = get_the_title();
547
+               $url           = get_post_type_archive_link( $plan );
548
+               $term_obj_list = get_the_terms( get_the_ID(), 'plan-type' );
549
+               $plan_type     = $term_obj_list[0]->name;
550
+               $plan_type_url = get_term_link( $term_obj_list[0]->term_id );
551 551
 		
552
-			$crumbs[1] = array(
553
-				0 => $plans,
554
-				1 => $url,
555
-			);
556
-			$crumbs[2] = array(
557
-				0 => $plan_type,
558
-				1 => $plan_type_url,
559
-			);
560
-			$crumbs[3] = array(
561
-				0 => $plan_name,
562
-			);
563
-		}
564
-		return $crumbs;
565
-	}
552
+               $crumbs[1] = array(
553
+                    0 => $plans,
554
+                    1 => $url,
555
+               );
556
+               $crumbs[2] = array(
557
+                    0 => $plan_type,
558
+                    1 => $plan_type_url,
559
+               );
560
+               $crumbs[3] = array(
561
+                    0 => $plan_name,
562
+               );
563
+          }
564
+          return $crumbs;
565
+     }
566 566
 }
Please login to merge, or discard this patch.
classes/post-types/class-meal.php 1 patch
Indentation   +366 added lines, -366 removed lines patch added patch discarded remove patch
@@ -8,390 +8,390 @@
 block discarded – undo
8 8
  */
9 9
 class Meal {
10 10
 
11
-	/**
12
-	 * Holds class instance
13
-	 *
14
-	 * @since 1.0.0
15
-	 *
16
-	 * @var      object \lsx_health_plan\classes\Meal()
17
-	 */
18
-	protected static $instance = null;
11
+     /**
12
+      * Holds class instance
13
+      *
14
+      * @since 1.0.0
15
+      *
16
+      * @var      object \lsx_health_plan\classes\Meal()
17
+      */
18
+     protected static $instance = null;
19 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 = 'meal';
20
+     /**
21
+      * Holds post_type slug used as an index
22
+      *
23
+      * @since 1.0.0
24
+      *
25
+      * @var      string
26
+      */
27
+     public $slug = 'meal';
28 28
 
29
-	/**
30
-	 * Constructor
31
-	 */
32
-	public function __construct() {
33
-		add_action( 'init', array( $this, 'register_post_type' ) );
34
-		add_action( 'init', array( $this, 'taxonomy_setup' ) );
29
+     /**
30
+      * Constructor
31
+      */
32
+     public function __construct() {
33
+          add_action( 'init', array( $this, 'register_post_type' ) );
34
+          add_action( 'init', array( $this, 'taxonomy_setup' ) );
35 35
 		
36
-		add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
37
-		add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 );
38
-		add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) );
36
+          add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
37
+          add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 );
38
+          add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) );
39 39
 
40
-		// Template Redirects.
41
-		add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
42
-		add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
40
+          // Template Redirects.
41
+          add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
42
+          add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
43 43
 
44
-		add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
45
-	}
44
+          add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
45
+     }
46 46
 
47
-	/**
48
-	 * Return an instance of this class.
49
-	 *
50
-	 * @since 1.0.0
51
-	 *
52
-	 * @return    object \lsx_health_plan\classes\Day()    A single instance of this class.
53
-	 */
54
-	public static function get_instance() {
55
-		// If the single instance hasn't been set, set it now.
56
-		if ( null === self::$instance ) {
57
-			self::$instance = new self();
58
-		}
59
-		return self::$instance;
60
-	}
61
-	/**
62
-	 * Register the post type.
63
-	 */
64
-	public function register_post_type() {
65
-		$labels = array(
66
-			'name'               => esc_html__( 'Meals', 'lsx-health-plan' ),
67
-			'singular_name'      => esc_html__( 'Meal', 'lsx-health-plan' ),
68
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
69
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
70
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
71
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
72
-			'all_items'          => esc_html__( 'All Meals', 'lsx-health-plan' ),
73
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
74
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
75
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
76
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
77
-			'parent_item_colon'  => esc_html__( 'Parent:', 'lsx-health-plan' ),
78
-			'menu_name'          => esc_html__( 'Meals', 'lsx-health-plan' ),
79
-		);
80
-		$args   = array(
81
-			'labels'             => $labels,
82
-			'public'             => true,
83
-			'publicly_queryable' => true,
84
-			'show_ui'            => true,
85
-			'show_in_menu'       => true,
86
-			'show_in_rest'       => true,
87
-			'menu_icon'          => 'dashicons-carrot',
88
-			'query_var'          => true,
89
-			'rewrite'            => array(
90
-				'slug' => \lsx_health_plan\functions\get_option( 'meal_single_slug', 'meal' ),
91
-			),
92
-			'capability_type'    => 'page',
93
-			'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_meal_archive', 'meals' ),
94
-			'hierarchical'       => true,
95
-			'menu_position'      => null,
96
-			'supports'           => array(
97
-				'title',
98
-				'editor',
99
-				'thumbnail',
100
-				'page-attributes',
101
-				'custom-fields',
102
-			),
103
-		);
104
-		register_post_type( 'meal', $args );
105
-	}
47
+     /**
48
+      * Return an instance of this class.
49
+      *
50
+      * @since 1.0.0
51
+      *
52
+      * @return    object \lsx_health_plan\classes\Day()    A single instance of this class.
53
+      */
54
+     public static function get_instance() {
55
+          // If the single instance hasn't been set, set it now.
56
+          if ( null === self::$instance ) {
57
+               self::$instance = new self();
58
+          }
59
+          return self::$instance;
60
+     }
61
+     /**
62
+      * Register the post type.
63
+      */
64
+     public function register_post_type() {
65
+          $labels = array(
66
+               'name'               => esc_html__( 'Meals', 'lsx-health-plan' ),
67
+               'singular_name'      => esc_html__( 'Meal', 'lsx-health-plan' ),
68
+               'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
69
+               'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
70
+               'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
71
+               'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
72
+               'all_items'          => esc_html__( 'All Meals', 'lsx-health-plan' ),
73
+               'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
74
+               'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
75
+               'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
76
+               'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
77
+               'parent_item_colon'  => esc_html__( 'Parent:', 'lsx-health-plan' ),
78
+               'menu_name'          => esc_html__( 'Meals', 'lsx-health-plan' ),
79
+          );
80
+          $args   = array(
81
+               'labels'             => $labels,
82
+               'public'             => true,
83
+               'publicly_queryable' => true,
84
+               'show_ui'            => true,
85
+               'show_in_menu'       => true,
86
+               'show_in_rest'       => true,
87
+               'menu_icon'          => 'dashicons-carrot',
88
+               'query_var'          => true,
89
+               'rewrite'            => array(
90
+                    'slug' => \lsx_health_plan\functions\get_option( 'meal_single_slug', 'meal' ),
91
+               ),
92
+               'capability_type'    => 'page',
93
+               'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_meal_archive', 'meals' ),
94
+               'hierarchical'       => true,
95
+               'menu_position'      => null,
96
+               'supports'           => array(
97
+                    'title',
98
+                    'editor',
99
+                    'thumbnail',
100
+                    'page-attributes',
101
+                    'custom-fields',
102
+               ),
103
+          );
104
+          register_post_type( 'meal', $args );
105
+     }
106 106
 
107
-	/**
108
-	 * Register the Meal Type taxonomy.
109
-	 */
110
-	public function taxonomy_setup() {
111
-		$labels = array(
112
-			'name'              => esc_html_x( 'Meal Type', 'taxonomy general name', 'lsx-health-plan' ),
113
-			'singular_name'     => esc_html_x( 'Meal Types', 'taxonomy singular name', 'lsx-health-plan' ),
114
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
115
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
116
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
117
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
118
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
119
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
120
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
121
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
122
-			'menu_name'         => esc_html__( 'Meal Types', 'lsx-health-plan' ),
123
-		);
124
-		$args   = array(
125
-			'hierarchical'      => true,
126
-			'labels'            => $labels,
127
-			'show_ui'           => true,
128
-			'show_in_menu'      => 'edit.php?post_type=meal',
129
-			'show_admin_column' => true,
130
-			'query_var'         => true,
131
-			'rewrite'           => array(
132
-				'slug' => 'meal-type',
133
-			),
134
-		);
135
-		register_taxonomy( 'meal-type', array( $this->slug ), $args );
136
-	}
107
+     /**
108
+      * Register the Meal Type taxonomy.
109
+      */
110
+     public function taxonomy_setup() {
111
+          $labels = array(
112
+               'name'              => esc_html_x( 'Meal Type', 'taxonomy general name', 'lsx-health-plan' ),
113
+               'singular_name'     => esc_html_x( 'Meal Types', 'taxonomy singular name', 'lsx-health-plan' ),
114
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
115
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
116
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
117
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
118
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
119
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
120
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
121
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
122
+               'menu_name'         => esc_html__( 'Meal Types', 'lsx-health-plan' ),
123
+          );
124
+          $args   = array(
125
+               'hierarchical'      => true,
126
+               'labels'            => $labels,
127
+               'show_ui'           => true,
128
+               'show_in_menu'      => 'edit.php?post_type=meal',
129
+               'show_admin_column' => true,
130
+               'query_var'         => true,
131
+               'rewrite'           => array(
132
+                    'slug' => 'meal-type',
133
+               ),
134
+          );
135
+          register_taxonomy( 'meal-type', array( $this->slug ), $args );
136
+     }
137 137
 
138
-	/**
139
-	 * Adds the post type to the different arrays.
140
-	 *
141
-	 * @param array $post_types
142
-	 * @return array
143
-	 */
144
-	public function enable_post_type( $post_types = array() ) {
145
-		$post_types[] = $this->slug;
146
-		return $post_types;
147
-	}
138
+     /**
139
+      * Adds the post type to the different arrays.
140
+      *
141
+      * @param array $post_types
142
+      * @return array
143
+      */
144
+     public function enable_post_type( $post_types = array() ) {
145
+          $post_types[] = $this->slug;
146
+          return $post_types;
147
+     }
148 148
 
149
-	/**
150
-	 * Enables the Bi Directional relationships
151
-	 *
152
-	 * @param array $connections
153
-	 * @return void
154
-	 */
155
-	public function enable_connections( $connections = array() ) {
156
-		$connections['meal']['connected_plans'] = 'connected_meals';
157
-		$connections['plan']['connected_meals'] = 'connected_plans';
158
-		return $connections;
159
-	}
149
+     /**
150
+      * Enables the Bi Directional relationships
151
+      *
152
+      * @param array $connections
153
+      * @return void
154
+      */
155
+     public function enable_connections( $connections = array() ) {
156
+          $connections['meal']['connected_plans'] = 'connected_meals';
157
+          $connections['plan']['connected_meals'] = 'connected_plans';
158
+          return $connections;
159
+     }
160 160
 
161
-	/**
162
-	 * Remove the "Archives:" from the post type meal.
163
-	 *
164
-	 * @param string $title the term title.
165
-	 * @return string
166
-	 */
167
-	public function get_the_archive_title( $title ) {
168
-		if ( is_post_type_archive( 'meal' ) ) {
169
-			$title = __( 'Meals', 'lsx-health-plan' );
170
-		}
171
-		return $title;
172
-	}
161
+     /**
162
+      * Remove the "Archives:" from the post type meal.
163
+      *
164
+      * @param string $title the term title.
165
+      * @return string
166
+      */
167
+     public function get_the_archive_title( $title ) {
168
+          if ( is_post_type_archive( 'meal' ) ) {
169
+               $title = __( 'Meals', 'lsx-health-plan' );
170
+          }
171
+          return $title;
172
+     }
173 173
 
174
-	/**
175
-	 * Define the metabox and field configurations.
176
-	 */
177
-	public function featured_metabox() {
178
-		$cmb = new_cmb2_box(
179
-			array(
180
-				'id'           => $this->slug . '_featured_metabox_meal',
181
-				'title'        => __( 'Featured Meal', 'lsx-health-plan' ),
182
-				'object_types' => array( $this->slug ), // Post type
183
-				'context'      => 'side',
184
-				'priority'     => 'high',
185
-				'show_names'   => true,
186
-			)
187
-		);
188
-		$cmb->add_field(
189
-			array(
190
-				'name'       => __( 'Featured Meal', 'lsx-health-plan' ),
191
-				'desc'       => __( 'Enable a featured meal' ),
192
-				'id'         => $this->slug . '_featured_meal',
193
-				'type'       => 'checkbox',
194
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
195
-			)
196
-		);
197
-	}
174
+     /**
175
+      * Define the metabox and field configurations.
176
+      */
177
+     public function featured_metabox() {
178
+          $cmb = new_cmb2_box(
179
+               array(
180
+                    'id'           => $this->slug . '_featured_metabox_meal',
181
+                    'title'        => __( 'Featured Meal', 'lsx-health-plan' ),
182
+                    'object_types' => array( $this->slug ), // Post type
183
+                    'context'      => 'side',
184
+                    'priority'     => 'high',
185
+                    'show_names'   => true,
186
+               )
187
+          );
188
+          $cmb->add_field(
189
+               array(
190
+                    'name'       => __( 'Featured Meal', 'lsx-health-plan' ),
191
+                    'desc'       => __( 'Enable a featured meal' ),
192
+                    'id'         => $this->slug . '_featured_meal',
193
+                    'type'       => 'checkbox',
194
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
195
+               )
196
+          );
197
+     }
198 198
 
199
-	/**
200
-	 * Define the metabox and field configurations.
201
-	 */
202
-	public function details_metaboxes() {
203
-		$cmb = new_cmb2_box( array(
204
-			'id'           => $this->slug . '_shopping_list_metabox',
205
-			'title'        => __( 'Shopping List', 'lsx-health-plan' ),
206
-			'object_types' => array( $this->slug ), // Post type
207
-			'context'      => 'normal',
208
-			'priority'     => 'high',
209
-			'show_names'   => true,
210
-		) );
211
-		$cmb->add_field( array(
212
-			'name'       => __( 'Shopping List', 'lsx-health-plan' ),
213
-			'desc'       => __( 'Connect the shopping list page that applies to this meal by entering the name of the page in the field provided.' ),
214
-			'id'         => $this->slug . '_shopping_list',
215
-			'type'       => 'post_search_ajax',
216
-			// Optional :
217
-			'limit'      => 1,  // Limit selection to X items only (default 1)
218
-			'sortable'   => true, // Allow selected items to be sortable (default false)
219
-			'query_args' => array(
220
-				'post_type'      => array( 'page' ),
221
-				'post_status'    => array( 'publish' ),
222
-				'posts_per_page' => -1,
223
-			),
224
-		) );
225
-		$cmb = new_cmb2_box( array(
226
-			'id'           => $this->slug . '_details_metabox',
227
-			'title'        => __( 'Meal Details', 'lsx-health-plan' ),
228
-			'object_types' => array( $this->slug ), // Post type
229
-			'context'      => 'normal',
230
-			'priority'     => 'high',
231
-			'show_names'   => true,
232
-		) );
199
+     /**
200
+      * Define the metabox and field configurations.
201
+      */
202
+     public function details_metaboxes() {
203
+          $cmb = new_cmb2_box( array(
204
+               'id'           => $this->slug . '_shopping_list_metabox',
205
+               'title'        => __( 'Shopping List', 'lsx-health-plan' ),
206
+               'object_types' => array( $this->slug ), // Post type
207
+               'context'      => 'normal',
208
+               'priority'     => 'high',
209
+               'show_names'   => true,
210
+          ) );
211
+          $cmb->add_field( array(
212
+               'name'       => __( 'Shopping List', 'lsx-health-plan' ),
213
+               'desc'       => __( 'Connect the shopping list page that applies to this meal by entering the name of the page in the field provided.' ),
214
+               'id'         => $this->slug . '_shopping_list',
215
+               'type'       => 'post_search_ajax',
216
+               // Optional :
217
+               'limit'      => 1,  // Limit selection to X items only (default 1)
218
+               'sortable'   => true, // Allow selected items to be sortable (default false)
219
+               'query_args' => array(
220
+                    'post_type'      => array( 'page' ),
221
+                    'post_status'    => array( 'publish' ),
222
+                    'posts_per_page' => -1,
223
+               ),
224
+          ) );
225
+          $cmb = new_cmb2_box( array(
226
+               'id'           => $this->slug . '_details_metabox',
227
+               'title'        => __( 'Meal Details', 'lsx-health-plan' ),
228
+               'object_types' => array( $this->slug ), // Post type
229
+               'context'      => 'normal',
230
+               'priority'     => 'high',
231
+               'show_names'   => true,
232
+          ) );
233 233
 
234
-		$cmb->add_field( array(
235
-			'name' => __( 'Meal Short Description', 'lsx-health-plan' ),
236
-			'id'   => $this->slug . '_short_description',
237
-			'type' => 'textarea_small',
238
-			'desc' => __( 'Add a small description for this meal (optional)', 'lsx-health-plan' ),
239
-		) );
234
+          $cmb->add_field( array(
235
+               'name' => __( 'Meal Short Description', 'lsx-health-plan' ),
236
+               'id'   => $this->slug . '_short_description',
237
+               'type' => 'textarea_small',
238
+               'desc' => __( 'Add a small description for this meal (optional)', 'lsx-health-plan' ),
239
+          ) );
240 240
 
241
-		$cmb->add_field( array(
242
-			'name'       => __( 'Pre Breakfast Snack', 'lsx-health-plan' ),
243
-			'id'         => $this->slug . '_pre_breakfast_snack',
244
-			'type'       => 'wysiwyg',
245
-			'show_on_cb' => 'cmb2_hide_if_no_cats',
246
-			'options'    => array(
247
-				'textarea_rows' => 5,
248
-			),
249
-		) );
250
-		$cmb->add_field( array(
251
-			'name'       => __( 'Breakfast', 'lsx-health-plan' ),
252
-			'id'         => $this->slug . '_breakfast',
253
-			'type'       => 'wysiwyg',
254
-			'show_on_cb' => 'cmb2_hide_if_no_cats',
255
-			'options'    => array(
256
-				'textarea_rows' => 5,
257
-			),
258
-		) );
241
+          $cmb->add_field( array(
242
+               'name'       => __( 'Pre Breakfast Snack', 'lsx-health-plan' ),
243
+               'id'         => $this->slug . '_pre_breakfast_snack',
244
+               'type'       => 'wysiwyg',
245
+               'show_on_cb' => 'cmb2_hide_if_no_cats',
246
+               'options'    => array(
247
+                    'textarea_rows' => 5,
248
+               ),
249
+          ) );
250
+          $cmb->add_field( array(
251
+               'name'       => __( 'Breakfast', 'lsx-health-plan' ),
252
+               'id'         => $this->slug . '_breakfast',
253
+               'type'       => 'wysiwyg',
254
+               'show_on_cb' => 'cmb2_hide_if_no_cats',
255
+               'options'    => array(
256
+                    'textarea_rows' => 5,
257
+               ),
258
+          ) );
259 259
 
260
-		$cmb->add_field(
261
-			array(
262
-				'name'       => __( 'Post Breakfast Snack', 'lsx-health-plan' ),
263
-				'id'         => $this->slug . '_breakfast_snack',
264
-				'type'       => 'wysiwyg',
265
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
266
-				'options'    => array(
267
-					'textarea_rows' => 5,
268
-				),
269
-			)
270
-		);
260
+          $cmb->add_field(
261
+               array(
262
+                    'name'       => __( 'Post Breakfast Snack', 'lsx-health-plan' ),
263
+                    'id'         => $this->slug . '_breakfast_snack',
264
+                    'type'       => 'wysiwyg',
265
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
266
+                    'options'    => array(
267
+                         'textarea_rows' => 5,
268
+                    ),
269
+               )
270
+          );
271 271
 
272
-		if ( post_type_exists( 'recipe' ) ) {
273
-			$cmb->add_field(
274
-				array(
275
-					'name'       => __( 'Breakfast Recipes', 'lsx-health-plan' ),
276
-					'desc'       => __( 'Connect additional recipes options for breakfast.', 'lsx-health-plan' ),
277
-					'id'         => 'breakfast_recipes',
278
-					'type'       => 'post_search_ajax',
279
-					// Optional :
280
-					'limit'      => 15,  // Limit selection to X items only (default 1)
281
-					'sortable'   => true, // Allow selected items to be sortable (default false)
282
-					'query_args' => array(
283
-						'post_type'      => array( 'recipe' ),
284
-						'post_status'    => array( 'publish' ),
285
-						'posts_per_page' => -1,
286
-					),
287
-				)
288
-			);
289
-		}
272
+          if ( post_type_exists( 'recipe' ) ) {
273
+               $cmb->add_field(
274
+                    array(
275
+                         'name'       => __( 'Breakfast Recipes', 'lsx-health-plan' ),
276
+                         'desc'       => __( 'Connect additional recipes options for breakfast.', 'lsx-health-plan' ),
277
+                         'id'         => 'breakfast_recipes',
278
+                         'type'       => 'post_search_ajax',
279
+                         // Optional :
280
+                         'limit'      => 15,  // Limit selection to X items only (default 1)
281
+                         'sortable'   => true, // Allow selected items to be sortable (default false)
282
+                         'query_args' => array(
283
+                              'post_type'      => array( 'recipe' ),
284
+                              'post_status'    => array( 'publish' ),
285
+                              'posts_per_page' => -1,
286
+                         ),
287
+                    )
288
+               );
289
+          }
290 290
 
291
-		$cmb->add_field(
292
-			array(
293
-				'name'       => __( 'Pre Lunch Snack', 'lsx-health-plan' ),
294
-				'id'         => $this->slug . '_pre_lunch_snack',
295
-				'type'       => 'wysiwyg',
296
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
297
-				'options'    => array(
298
-					'textarea_rows' => 5,
299
-				),
300
-			)
301
-		);
302
-		$cmb->add_field(
303
-			array(
304
-				'name'       => __( 'Lunch', 'lsx-health-plan' ),
305
-				'id'         => $this->slug . '_lunch',
306
-				'type'       => 'wysiwyg',
307
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
308
-				'options'    => array(
309
-					'textarea_rows' => 5,
310
-				),
311
-			)
312
-		);
313
-		$cmb->add_field(
314
-			array(
315
-				'name'       => __( 'Post Lunch Snack', 'lsx-health-plan' ),
316
-				'id'         => $this->slug . '_lunch_snack',
317
-				'type'       => 'wysiwyg',
318
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
319
-				'options'    => array(
320
-					'textarea_rows' => 5,
321
-				),
322
-			)
323
-		);
291
+          $cmb->add_field(
292
+               array(
293
+                    'name'       => __( 'Pre Lunch Snack', 'lsx-health-plan' ),
294
+                    'id'         => $this->slug . '_pre_lunch_snack',
295
+                    'type'       => 'wysiwyg',
296
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
297
+                    'options'    => array(
298
+                         'textarea_rows' => 5,
299
+                    ),
300
+               )
301
+          );
302
+          $cmb->add_field(
303
+               array(
304
+                    'name'       => __( 'Lunch', 'lsx-health-plan' ),
305
+                    'id'         => $this->slug . '_lunch',
306
+                    'type'       => 'wysiwyg',
307
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
308
+                    'options'    => array(
309
+                         'textarea_rows' => 5,
310
+                    ),
311
+               )
312
+          );
313
+          $cmb->add_field(
314
+               array(
315
+                    'name'       => __( 'Post Lunch Snack', 'lsx-health-plan' ),
316
+                    'id'         => $this->slug . '_lunch_snack',
317
+                    'type'       => 'wysiwyg',
318
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
319
+                    'options'    => array(
320
+                         'textarea_rows' => 5,
321
+                    ),
322
+               )
323
+          );
324 324
 
325
-		if ( post_type_exists( 'recipe' ) ) {
326
-			$cmb->add_field(
327
-				array(
328
-					'name'       => __( 'Lunch Recipes', 'lsx-health-plan' ),
329
-					'desc'       => __( 'Connect additional recipes options for lunch.', 'lsx-health-plan' ),
330
-					'id'         => 'lunch_recipes',
331
-					'type'       => 'post_search_ajax',
332
-					// Optional :
333
-					'limit'      => 15,  // Limit selection to X items only (default 1)
334
-					'sortable'   => true, // Allow selected items to be sortable (default false)
335
-					'query_args' => array(
336
-						'post_type'      => array( 'recipe' ),
337
-						'post_status'    => array( 'publish' ),
338
-						'posts_per_page' => -1,
339
-					),
340
-				)
341
-			);
342
-		}
325
+          if ( post_type_exists( 'recipe' ) ) {
326
+               $cmb->add_field(
327
+                    array(
328
+                         'name'       => __( 'Lunch Recipes', 'lsx-health-plan' ),
329
+                         'desc'       => __( 'Connect additional recipes options for lunch.', 'lsx-health-plan' ),
330
+                         'id'         => 'lunch_recipes',
331
+                         'type'       => 'post_search_ajax',
332
+                         // Optional :
333
+                         'limit'      => 15,  // Limit selection to X items only (default 1)
334
+                         'sortable'   => true, // Allow selected items to be sortable (default false)
335
+                         'query_args' => array(
336
+                              'post_type'      => array( 'recipe' ),
337
+                              'post_status'    => array( 'publish' ),
338
+                              'posts_per_page' => -1,
339
+                         ),
340
+                    )
341
+               );
342
+          }
343 343
 
344
-		$cmb->add_field(
345
-			array(
346
-				'name'       => __( 'Pre Dinner Snack', 'lsx-health-plan' ),
347
-				'id'         => $this->slug . '_pre_dinner_snack',
348
-				'type'       => 'wysiwyg',
349
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
350
-				'options'    => array(
351
-					'textarea_rows' => 5,
352
-				),
353
-			)
354
-		);
355
-		$cmb->add_field(
356
-			array(
357
-				'name'       => __( 'Dinner', 'lsx-health-plan' ),
358
-				'id'         => $this->slug . '_dinner',
359
-				'type'       => 'wysiwyg',
360
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
361
-				'options'    => array(
362
-					'textarea_rows' => 5,
363
-				),
364
-			)
365
-		);
366
-		$cmb->add_field(
367
-			array(
368
-				'name'       => __( 'Post Dinner Snack', 'lsx-health-plan' ),
369
-				'id'         => $this->slug . '_dinner_snack',
370
-				'type'       => 'wysiwyg',
371
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
372
-				'options'    => array(
373
-					'textarea_rows' => 5,
374
-				),
375
-			)
376
-		);
344
+          $cmb->add_field(
345
+               array(
346
+                    'name'       => __( 'Pre Dinner Snack', 'lsx-health-plan' ),
347
+                    'id'         => $this->slug . '_pre_dinner_snack',
348
+                    'type'       => 'wysiwyg',
349
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
350
+                    'options'    => array(
351
+                         'textarea_rows' => 5,
352
+                    ),
353
+               )
354
+          );
355
+          $cmb->add_field(
356
+               array(
357
+                    'name'       => __( 'Dinner', 'lsx-health-plan' ),
358
+                    'id'         => $this->slug . '_dinner',
359
+                    'type'       => 'wysiwyg',
360
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
361
+                    'options'    => array(
362
+                         'textarea_rows' => 5,
363
+                    ),
364
+               )
365
+          );
366
+          $cmb->add_field(
367
+               array(
368
+                    'name'       => __( 'Post Dinner Snack', 'lsx-health-plan' ),
369
+                    'id'         => $this->slug . '_dinner_snack',
370
+                    'type'       => 'wysiwyg',
371
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
372
+                    'options'    => array(
373
+                         'textarea_rows' => 5,
374
+                    ),
375
+               )
376
+          );
377 377
 
378
-		if ( post_type_exists( 'recipe' ) ) {
379
-			$cmb->add_field(
380
-				array(
381
-					'name'       => __( 'Dinner Recipes', 'lsx-health-plan' ),
382
-					'desc'       => __( 'Connect additional recipes options for dinner.', 'lsx-health-plan' ),
383
-					'id'         => 'dinner_recipes',
384
-					'type'       => 'post_search_ajax',
385
-					// Optional :
386
-					'limit'      => 15,  // Limit selection to X items only (default 1)
387
-					'sortable'   => true, // Allow selected items to be sortable (default false)
388
-					'query_args' => array(
389
-						'post_type'      => array( 'recipe' ),
390
-						'post_status'    => array( 'publish' ),
391
-						'posts_per_page' => -1,
392
-					),
393
-				)
394
-			);
395
-		}
396
-	}
378
+          if ( post_type_exists( 'recipe' ) ) {
379
+               $cmb->add_field(
380
+                    array(
381
+                         'name'       => __( 'Dinner Recipes', 'lsx-health-plan' ),
382
+                         'desc'       => __( 'Connect additional recipes options for dinner.', 'lsx-health-plan' ),
383
+                         'id'         => 'dinner_recipes',
384
+                         'type'       => 'post_search_ajax',
385
+                         // Optional :
386
+                         'limit'      => 15,  // Limit selection to X items only (default 1)
387
+                         'sortable'   => true, // Allow selected items to be sortable (default false)
388
+                         'query_args' => array(
389
+                              'post_type'      => array( 'recipe' ),
390
+                              'post_status'    => array( 'publish' ),
391
+                              'posts_per_page' => -1,
392
+                         ),
393
+                    )
394
+               );
395
+          }
396
+     }
397 397
 }
Please login to merge, or discard this patch.
classes/post-types/class-workout.php 1 patch
Indentation   +346 added lines, -346 removed lines patch added patch discarded remove patch
@@ -10,375 +10,375 @@
 block discarded – undo
10 10
  */
11 11
 class Workout {
12 12
 
13
-	/**
14
-	 * Holds class instance
15
-	 *
16
-	 * @since 1.0.0
17
-	 *
18
-	 * @var      object \lsx_health_plan\classes\Workout()
19
-	 */
20
-	protected static $instance = null;
13
+     /**
14
+      * Holds class instance
15
+      *
16
+      * @since 1.0.0
17
+      *
18
+      * @var      object \lsx_health_plan\classes\Workout()
19
+      */
20
+     protected static $instance = null;
21 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 = 'workout';
22
+     /**
23
+      * Holds post_type slug used as an index
24
+      *
25
+      * @since 1.0.0
26
+      *
27
+      * @var      string
28
+      */
29
+     public $slug = 'workout';
30 30
 
31
-	/**
32
-	 * Constructor
33
-	 */
34
-	public function __construct() {
35
-		add_action( 'init', array( $this, 'register_post_type' ) );
36
-		add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
37
-		add_action( 'init', array( $this, 'recipe_type_taxonomy_setup' ) );
38
-		add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
39
-		add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 );
40
-		add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) );
41
-		add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
31
+     /**
32
+      * Constructor
33
+      */
34
+     public function __construct() {
35
+          add_action( 'init', array( $this, 'register_post_type' ) );
36
+          add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 );
37
+          add_action( 'init', array( $this, 'recipe_type_taxonomy_setup' ) );
38
+          add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 );
39
+          add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 );
40
+          add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ) );
41
+          add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 );
42 42
 
43
-		// Template Redirects.
44
-		add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
45
-	}
43
+          // Template Redirects.
44
+          add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 );
45
+     }
46 46
 
47
-	/**
48
-	 * Return an instance of this class.
49
-	 *
50
-	 * @since 1.0.0
51
-	 *
52
-	 * @return    object \lsx_health_plan\classes\Workout()    A single instance of this class.
53
-	 */
54
-	public static function get_instance() {
55
-		// If the single instance hasn't been set, set it now.
56
-		if ( null === self::$instance ) {
57
-			self::$instance = new self();
58
-		}
59
-		return self::$instance;
60
-	}
61
-	/**
62
-	 * Register the post type.
63
-	 */
64
-	public function register_post_type() {
65
-		$labels = array(
66
-			'name'               => esc_html__( 'Workouts', 'lsx-health-plan' ),
67
-			'singular_name'      => esc_html__( 'Workout', 'lsx-health-plan' ),
68
-			'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
69
-			'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
70
-			'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
71
-			'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
72
-			'all_items'          => esc_html__( 'All Workouts', 'lsx-health-plan' ),
73
-			'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
74
-			'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
75
-			'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
76
-			'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
77
-			'parent_item_colon'  => esc_html__( 'Parent:', 'lsx-health-plan' ),
78
-			'menu_name'          => esc_html__( 'Workouts', 'lsx-health-plan' ),
79
-		);
80
-		$args = array(
81
-			'labels'             => $labels,
82
-			'public'             => true,
83
-			'publicly_queryable' => true,
84
-			'show_ui'            => true,
85
-			'show_in_menu'       => true,
86
-			'show_in_rest'       => true,
87
-			'menu_icon'          => 'dashicons-universal-access',
88
-			'query_var'          => true,
89
-			'rewrite'            => array(
90
-				'slug' => \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ),
91
-			),
92
-			'capability_type'    => 'page',
93
-			'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_workout_archive', 'workouts' ),
94
-			'hierarchical'       => true,
95
-			'menu_position'      => null,
96
-			'supports'           => array(
97
-				'title',
98
-				'thumbnail',
99
-				'editor',
100
-				'excerpt',
101
-				'page-attributes',
102
-				'custom-fields',
103
-			),
104
-		);
105
-		register_post_type( 'workout', $args );
106
-	}
47
+     /**
48
+      * Return an instance of this class.
49
+      *
50
+      * @since 1.0.0
51
+      *
52
+      * @return    object \lsx_health_plan\classes\Workout()    A single instance of this class.
53
+      */
54
+     public static function get_instance() {
55
+          // If the single instance hasn't been set, set it now.
56
+          if ( null === self::$instance ) {
57
+               self::$instance = new self();
58
+          }
59
+          return self::$instance;
60
+     }
61
+     /**
62
+      * Register the post type.
63
+      */
64
+     public function register_post_type() {
65
+          $labels = array(
66
+               'name'               => esc_html__( 'Workouts', 'lsx-health-plan' ),
67
+               'singular_name'      => esc_html__( 'Workout', 'lsx-health-plan' ),
68
+               'add_new'            => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ),
69
+               'add_new_item'       => esc_html__( 'Add New', 'lsx-health-plan' ),
70
+               'edit_item'          => esc_html__( 'Edit', 'lsx-health-plan' ),
71
+               'new_item'           => esc_html__( 'New', 'lsx-health-plan' ),
72
+               'all_items'          => esc_html__( 'All Workouts', 'lsx-health-plan' ),
73
+               'view_item'          => esc_html__( 'View', 'lsx-health-plan' ),
74
+               'search_items'       => esc_html__( 'Search', 'lsx-health-plan' ),
75
+               'not_found'          => esc_html__( 'None found', 'lsx-health-plan' ),
76
+               'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ),
77
+               'parent_item_colon'  => esc_html__( 'Parent:', 'lsx-health-plan' ),
78
+               'menu_name'          => esc_html__( 'Workouts', 'lsx-health-plan' ),
79
+          );
80
+          $args = array(
81
+               'labels'             => $labels,
82
+               'public'             => true,
83
+               'publicly_queryable' => true,
84
+               'show_ui'            => true,
85
+               'show_in_menu'       => true,
86
+               'show_in_rest'       => true,
87
+               'menu_icon'          => 'dashicons-universal-access',
88
+               'query_var'          => true,
89
+               'rewrite'            => array(
90
+                    'slug' => \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ),
91
+               ),
92
+               'capability_type'    => 'page',
93
+               'has_archive'        => \lsx_health_plan\functions\get_option( 'endpoint_workout_archive', 'workouts' ),
94
+               'hierarchical'       => true,
95
+               'menu_position'      => null,
96
+               'supports'           => array(
97
+                    'title',
98
+                    'thumbnail',
99
+                    'editor',
100
+                    'excerpt',
101
+                    'page-attributes',
102
+                    'custom-fields',
103
+               ),
104
+          );
105
+          register_post_type( 'workout', $args );
106
+     }
107 107
 
108
-	/**
109
-	 * Register the Type taxonomy.
110
-	 */
111
-	public function recipe_type_taxonomy_setup() {
112
-		$labels = array(
113
-			'name'              => esc_html_x( 'Workout Type', 'taxonomy general name', 'lsx-health-plan' ),
114
-			'singular_name'     => esc_html_x( 'Workout Type', 'taxonomy singular name', 'lsx-health-plan' ),
115
-			'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
116
-			'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
117
-			'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
118
-			'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
119
-			'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
120
-			'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
121
-			'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
122
-			'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
123
-			'menu_name'         => esc_html__( 'Workout Types', 'lsx-health-plan' ),
124
-		);
108
+     /**
109
+      * Register the Type taxonomy.
110
+      */
111
+     public function recipe_type_taxonomy_setup() {
112
+          $labels = array(
113
+               'name'              => esc_html_x( 'Workout Type', 'taxonomy general name', 'lsx-health-plan' ),
114
+               'singular_name'     => esc_html_x( 'Workout Type', 'taxonomy singular name', 'lsx-health-plan' ),
115
+               'search_items'      => esc_html__( 'Search', 'lsx-health-plan' ),
116
+               'all_items'         => esc_html__( 'All', 'lsx-health-plan' ),
117
+               'parent_item'       => esc_html__( 'Parent', 'lsx-health-plan' ),
118
+               'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ),
119
+               'edit_item'         => esc_html__( 'Edit', 'lsx-health-plan' ),
120
+               'update_item'       => esc_html__( 'Update', 'lsx-health-plan' ),
121
+               'add_new_item'      => esc_html__( 'Add New', 'lsx-health-plan' ),
122
+               'new_item_name'     => esc_html__( 'New Name', 'lsx-health-plan' ),
123
+               'menu_name'         => esc_html__( 'Workout Types', 'lsx-health-plan' ),
124
+          );
125 125
 
126
-		$args = array(
127
-			'hierarchical'      => true,
128
-			'labels'            => $labels,
129
-			'show_ui'           => true,
130
-			'show_admin_column' => true,
131
-			'query_var'         => true,
132
-			'rewrite'           => array(
133
-				'slug' => 'workout-type',
134
-			),
135
-		);
126
+          $args = array(
127
+               'hierarchical'      => true,
128
+               'labels'            => $labels,
129
+               'show_ui'           => true,
130
+               'show_admin_column' => true,
131
+               'query_var'         => true,
132
+               'rewrite'           => array(
133
+                    'slug' => 'workout-type',
134
+               ),
135
+          );
136 136
 
137
-		register_taxonomy( 'workout-type', array( 'workout' ), $args );
138
-	}
137
+          register_taxonomy( 'workout-type', array( 'workout' ), $args );
138
+     }
139 139
 
140
-	/**
141
-	 * Adds the post type to the different arrays.
142
-	 *
143
-	 * @param array $post_types
144
-	 * @return array
145
-	 */
146
-	public function enable_post_type( $post_types = array() ) {
147
-		$post_types[] = $this->slug;
148
-		return $post_types;
149
-	}
140
+     /**
141
+      * Adds the post type to the different arrays.
142
+      *
143
+      * @param array $post_types
144
+      * @return array
145
+      */
146
+     public function enable_post_type( $post_types = array() ) {
147
+          $post_types[] = $this->slug;
148
+          return $post_types;
149
+     }
150 150
 
151
-	/**
152
-	 * Enables the Bi Directional relationships
153
-	 *
154
-	 * @param array $connections
155
-	 * @return void
156
-	 */
157
-	public function enable_connections( $connections = array() ) {
158
-		$connections['workout']['connected_plans'] = 'connected_workouts';
159
-		$connections['plan']['connected_workouts'] = 'connected_plans';
151
+     /**
152
+      * Enables the Bi Directional relationships
153
+      *
154
+      * @param array $connections
155
+      * @return void
156
+      */
157
+     public function enable_connections( $connections = array() ) {
158
+          $connections['workout']['connected_plans'] = 'connected_workouts';
159
+          $connections['plan']['connected_workouts'] = 'connected_plans';
160 160
 
161
-		$connections['workout']['connected_videos'] = 'connected_workouts';
162
-		$connections['video']['connected_workouts'] = 'connected_videos';
161
+          $connections['workout']['connected_videos'] = 'connected_workouts';
162
+          $connections['video']['connected_workouts'] = 'connected_videos';
163 163
 
164
-		$connections['workout']['connected_posts'] = 'connected_workouts';
165
-		$connections['post']['connected_workouts'] = 'connected_posts';
166
-		return $connections;
167
-	}
164
+          $connections['workout']['connected_posts'] = 'connected_workouts';
165
+          $connections['post']['connected_workouts'] = 'connected_posts';
166
+          return $connections;
167
+     }
168 168
 
169
-	/**
170
-	 * Remove the "Archives:" from the post type workouts.
171
-	 *
172
-	 * @param string $title the term title.
173
-	 * @return string
174
-	 */
175
-	public function get_the_archive_title( $title ) {
176
-		if ( is_post_type_archive( 'workout' ) ) {
177
-			$title = __( 'Workouts', 'lsx-health-plan' );
178
-		}
179
-		return $title;
180
-	}
169
+     /**
170
+      * Remove the "Archives:" from the post type workouts.
171
+      *
172
+      * @param string $title the term title.
173
+      * @return string
174
+      */
175
+     public function get_the_archive_title( $title ) {
176
+          if ( is_post_type_archive( 'workout' ) ) {
177
+               $title = __( 'Workouts', 'lsx-health-plan' );
178
+          }
179
+          return $title;
180
+     }
181 181
 
182
-	/**
183
-	 * Define the metabox and field configurations.
184
-	 */
185
-	public function featured_metabox() {
186
-		$cmb = new_cmb2_box(
187
-			array(
188
-				'id'           => $this->slug . '_featured_metabox_workout',
189
-				'title'        => __( 'Featured Workout', 'lsx-health-plan' ),
190
-				'object_types' => array( $this->slug ), // Post type
191
-				'context'      => 'side',
192
-				'priority'     => 'high',
193
-				'show_names'   => true,
194
-			)
195
-		);
196
-		$cmb->add_field(
197
-			array(
198
-				'name'       => __( 'Featured Workout', 'lsx-health-plan' ),
199
-				'desc'       => __( 'Enable a featured workout' ),
200
-				'id'         => $this->slug . '_featured_workout',
201
-				'type'       => 'checkbox',
202
-				'show_on_cb' => 'cmb2_hide_if_no_cats',
203
-			)
204
-		);
205
-	}
182
+     /**
183
+      * Define the metabox and field configurations.
184
+      */
185
+     public function featured_metabox() {
186
+          $cmb = new_cmb2_box(
187
+               array(
188
+                    'id'           => $this->slug . '_featured_metabox_workout',
189
+                    'title'        => __( 'Featured Workout', 'lsx-health-plan' ),
190
+                    'object_types' => array( $this->slug ), // Post type
191
+                    'context'      => 'side',
192
+                    'priority'     => 'high',
193
+                    'show_names'   => true,
194
+               )
195
+          );
196
+          $cmb->add_field(
197
+               array(
198
+                    'name'       => __( 'Featured Workout', 'lsx-health-plan' ),
199
+                    'desc'       => __( 'Enable a featured workout' ),
200
+                    'id'         => $this->slug . '_featured_workout',
201
+                    'type'       => 'checkbox',
202
+                    'show_on_cb' => 'cmb2_hide_if_no_cats',
203
+               )
204
+          );
205
+     }
206 206
 
207
-	/**
208
-	 * Define the metabox and field configurations.
209
-	 */
210
-	public function details_metaboxes() {
207
+     /**
208
+      * Define the metabox and field configurations.
209
+      */
210
+     public function details_metaboxes() {
211 211
 
212
-		$cmb = new_cmb2_box( array(
213
-			'id'           => $this->slug . '_details_metabox',
214
-			'title'        => __( 'Workout Details', 'lsx-health-plan' ),
215
-			'object_types' => array( $this->slug ), // Post type
216
-			'context'      => 'normal',
217
-			'priority'     => 'high',
218
-			'show_names'   => true,
219
-		) );
212
+          $cmb = new_cmb2_box( array(
213
+               'id'           => $this->slug . '_details_metabox',
214
+               'title'        => __( 'Workout Details', 'lsx-health-plan' ),
215
+               'object_types' => array( $this->slug ), // Post type
216
+               'context'      => 'normal',
217
+               'priority'     => 'high',
218
+               'show_names'   => true,
219
+          ) );
220 220
 
221
-		$cmb->add_field( array(
222
-			'name' => __( 'Workout Short Description', 'lsx-health-plan' ),
223
-			'id'   => $this->slug . '_short_description',
224
-			'type' => 'textarea_small',
225
-			'desc' => __( 'Add a small description for this workout (optional)', 'lsx-health-plan' ),
226
-		) );
221
+          $cmb->add_field( array(
222
+               'name' => __( 'Workout Short Description', 'lsx-health-plan' ),
223
+               'id'   => $this->slug . '_short_description',
224
+               'type' => 'textarea_small',
225
+               'desc' => __( 'Add a small description for this workout (optional)', 'lsx-health-plan' ),
226
+          ) );
227 227
 
228
-		$workout_sections = apply_filters( 'lsx_health_plan_workout_sections_amount', 6 );
229
-		if ( false !== $workout_sections && null !== $workout_sections ) {
230
-			$i = 1;
231
-			while ( $i <= $workout_sections ) {
228
+          $workout_sections = apply_filters( 'lsx_health_plan_workout_sections_amount', 6 );
229
+          if ( false !== $workout_sections && null !== $workout_sections ) {
230
+               $i = 1;
231
+               while ( $i <= $workout_sections ) {
232 232
 
233
-				$cmb_group = new_cmb2_box( array(
234
-					'id'           => $this->slug . '_section_' . $i . '_metabox',
235
-					'title'        => esc_html__( 'Exercise Group ', 'lsx-health-plan' ) . $i,
236
-					'object_types' => array( $this->slug ),
237
-				) );
233
+                    $cmb_group = new_cmb2_box( array(
234
+                         'id'           => $this->slug . '_section_' . $i . '_metabox',
235
+                         'title'        => esc_html__( 'Exercise Group ', 'lsx-health-plan' ) . $i,
236
+                         'object_types' => array( $this->slug ),
237
+                    ) );
238 238
 
239
-				$cmb_group->add_field( array(
240
-					'name'       => __( 'Title', 'lsx-health-plan' ),
241
-					'id'         => $this->slug . '_section_' . $i . '_title',
242
-					'type'       => 'text',
243
-					'show_on_cb' => 'cmb2_hide_if_no_cats',
244
-				) );
239
+                    $cmb_group->add_field( array(
240
+                         'name'       => __( 'Title', 'lsx-health-plan' ),
241
+                         'id'         => $this->slug . '_section_' . $i . '_title',
242
+                         'type'       => 'text',
243
+                         'show_on_cb' => 'cmb2_hide_if_no_cats',
244
+                    ) );
245 245
 
246
-				$cmb_group->add_field(
247
-					array(
248
-						'name'       => __( 'Description', 'lsx-health-plan' ),
249
-						'id'         => $this->slug . '_section_' . $i . '_description',
250
-						'type'       => 'wysiwyg',
251
-						'show_on_cb' => 'cmb2_hide_if_no_cats',
252
-						'options'    => array(
253
-							'textarea_rows' => 5,
254
-						),
255
-					)
256
-				);
246
+                    $cmb_group->add_field(
247
+                         array(
248
+                              'name'       => __( 'Description', 'lsx-health-plan' ),
249
+                              'id'         => $this->slug . '_section_' . $i . '_description',
250
+                              'type'       => 'wysiwyg',
251
+                              'show_on_cb' => 'cmb2_hide_if_no_cats',
252
+                              'options'    => array(
253
+                                   'textarea_rows' => 5,
254
+                              ),
255
+                         )
256
+                    );
257 257
 
258
-				/**
259
-				 * Repeatable Field Groups
260
-				 */
261
-				// $group_field_id is the field id string, so in this case: $prefix . 'demo'
262
-				$group_field_id = $cmb_group->add_field(
263
-					array(
264
-						'id'      => $this->slug . '_section_' . $i,
265
-						'type'    => 'group',
266
-						'options' => array(
267
-							'group_title'   => esc_html__( 'Exercise {#}', 'lsx-health-plan' ), // {#} gets replaced by row number
268
-							'add_button'    => esc_html__( 'Add New', 'lsx-health-plan' ),
269
-							'remove_button' => esc_html__( 'Delete', 'lsx-health-plan' ),
270
-							'sortable'      => true,
271
-							'closed'        => true, // true to have the groups closed by default
272
-						),
273
-					)
274
-				);
258
+                    /**
259
+                     * Repeatable Field Groups
260
+                     */
261
+                    // $group_field_id is the field id string, so in this case: $prefix . 'demo'
262
+                    $group_field_id = $cmb_group->add_field(
263
+                         array(
264
+                              'id'      => $this->slug . '_section_' . $i,
265
+                              'type'    => 'group',
266
+                              'options' => array(
267
+                                   'group_title'   => esc_html__( 'Exercise {#}', 'lsx-health-plan' ), // {#} gets replaced by row number
268
+                                   'add_button'    => esc_html__( 'Add New', 'lsx-health-plan' ),
269
+                                   'remove_button' => esc_html__( 'Delete', 'lsx-health-plan' ),
270
+                                   'sortable'      => true,
271
+                                   'closed'        => true, // true to have the groups closed by default
272
+                              ),
273
+                         )
274
+                    );
275 275
 
276
-				if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
277
-					$cmb_group->add_group_field(
278
-						$group_field_id,
279
-						array(
280
-							'name'       => __( 'Exercise related to this workout', 'lsx-health-plan' ),
281
-							'id'         => 'connected_exercises',
282
-							'type'       => 'post_search_ajax',
283
-							// Optional :
284
-							'limit'      => 1, // Limit selection to X items only (default 1)
285
-							'sortable'   => true,  // Allow selected items to be sortable (default false)
286
-							'query_args' => array(
287
-								'post_type'      => array( 'exercise' ),
288
-								'post_status'    => array( 'publish' ),
289
-								'posts_per_page' => -1,
290
-							),
291
-						)
292
-					);
293
-				} else {
294
-					$cmb_group->add_group_field(
295
-						$group_field_id,
296
-						array(
297
-							'name'       => __( 'Video related to this workout', 'lsx-health-plan' ),
298
-							'id'         => 'connected_videos',
299
-							'type'       => 'post_search_ajax',
300
-							// Optional :
301
-							'limit'      => 1, // Limit selection to X items only (default 1)
302
-							'sortable'   => true,  // Allow selected items to be sortable (default false)
303
-							'query_args' => array(
304
-								'post_type'      => array( 'video' ),
305
-								'post_status'    => array( 'publish' ),
306
-								'posts_per_page' => -1,
307
-							),
308
-						)
309
-					);
310
-					$cmb_group->add_group_field(
311
-						$group_field_id,
312
-						array(
313
-							'name' => esc_html__( 'Workout Name', 'lsx-health-plan' ),
314
-							'id'   => 'name',
315
-							'type' => 'text',
316
-							// 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types)
317
-						)
318
-					);
276
+                    if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) {
277
+                         $cmb_group->add_group_field(
278
+                              $group_field_id,
279
+                              array(
280
+                                   'name'       => __( 'Exercise related to this workout', 'lsx-health-plan' ),
281
+                                   'id'         => 'connected_exercises',
282
+                                   'type'       => 'post_search_ajax',
283
+                                   // Optional :
284
+                                   'limit'      => 1, // Limit selection to X items only (default 1)
285
+                                   'sortable'   => true,  // Allow selected items to be sortable (default false)
286
+                                   'query_args' => array(
287
+                                        'post_type'      => array( 'exercise' ),
288
+                                        'post_status'    => array( 'publish' ),
289
+                                        'posts_per_page' => -1,
290
+                                   ),
291
+                              )
292
+                         );
293
+                    } else {
294
+                         $cmb_group->add_group_field(
295
+                              $group_field_id,
296
+                              array(
297
+                                   'name'       => __( 'Video related to this workout', 'lsx-health-plan' ),
298
+                                   'id'         => 'connected_videos',
299
+                                   'type'       => 'post_search_ajax',
300
+                                   // Optional :
301
+                                   'limit'      => 1, // Limit selection to X items only (default 1)
302
+                                   'sortable'   => true,  // Allow selected items to be sortable (default false)
303
+                                   'query_args' => array(
304
+                                        'post_type'      => array( 'video' ),
305
+                                        'post_status'    => array( 'publish' ),
306
+                                        'posts_per_page' => -1,
307
+                                   ),
308
+                              )
309
+                         );
310
+                         $cmb_group->add_group_field(
311
+                              $group_field_id,
312
+                              array(
313
+                                   'name' => esc_html__( 'Workout Name', 'lsx-health-plan' ),
314
+                                   'id'   => 'name',
315
+                                   'type' => 'text',
316
+                                   // 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types)
317
+                              )
318
+                         );
319 319
 
320
-					$cmb_group->add_group_field(
321
-						$group_field_id,
322
-						array(
323
-							'name'    => __( 'Description', 'lsx-health-plan' ),
324
-							'id'      => 'description',
325
-							'type'    => 'wysiwyg',
326
-							'options' => array(
327
-								'textarea_rows' => 2,
328
-							),
329
-						)
330
-					);
331
-				}
320
+                         $cmb_group->add_group_field(
321
+                              $group_field_id,
322
+                              array(
323
+                                   'name'    => __( 'Description', 'lsx-health-plan' ),
324
+                                   'id'      => 'description',
325
+                                   'type'    => 'wysiwyg',
326
+                                   'options' => array(
327
+                                        'textarea_rows' => 2,
328
+                                   ),
329
+                              )
330
+                         );
331
+                    }
332 332
 
333
-				$cmb_group->add_group_field(
334
-					$group_field_id,
335
-					array(
336
-						'name' => esc_html__( 'Exercise title (Optional)', 'lsx-health-plan' ),
337
-						'id'   => 'alt_title',
338
-						'type' => 'text',
339
-					)
340
-				);
341
-				$cmb_group->add_group_field(
342
-					$group_field_id,
343
-					array(
344
-						'name' => esc_html__( 'Exercise Description (Optional)', 'lsx-health-plan' ),
345
-						'id'   => 'alt_description',
346
-						'type' => 'textarea_small',
347
-					)
348
-				);
349
-				$cmb_group->add_group_field(
350
-					$group_field_id,
351
-					array(
352
-						'name' => esc_html__( 'Reps / Time / Distance', 'lsx-health-plan' ),
353
-						'id'   => 'reps',
354
-						'type' => 'text',
355
-						// 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types)
356
-					)
357
-				);
358
-				$cmb_group->add_group_field(
359
-					$group_field_id,
360
-					array(
361
-						'name'         => __( 'Exercise Image (Optional)', 'lsx-health-plan' ),
362
-						'id'           => 'exercise_alt_thumbnail',
363
-						'type'         => 'file',
364
-						'text'         => array(
365
-							'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ),
366
-						),
367
-						'desc'         => __( 'Upload an image 300px x 300px in size.', 'lsx-health-plan' ),
368
-						'query_args'   => array(
369
-							'type' => array(
370
-								'image/gif',
371
-								'image/jpeg',
372
-								'image/png',
373
-							),
374
-						),
375
-						'preview_size' => 'thumbnail',
376
-						'classes'      => 'lsx-field-col lsx-field-add-field  lsx-field-col-25',
377
-					)
378
-				);
333
+                    $cmb_group->add_group_field(
334
+                         $group_field_id,
335
+                         array(
336
+                              'name' => esc_html__( 'Exercise title (Optional)', 'lsx-health-plan' ),
337
+                              'id'   => 'alt_title',
338
+                              'type' => 'text',
339
+                         )
340
+                    );
341
+                    $cmb_group->add_group_field(
342
+                         $group_field_id,
343
+                         array(
344
+                              'name' => esc_html__( 'Exercise Description (Optional)', 'lsx-health-plan' ),
345
+                              'id'   => 'alt_description',
346
+                              'type' => 'textarea_small',
347
+                         )
348
+                    );
349
+                    $cmb_group->add_group_field(
350
+                         $group_field_id,
351
+                         array(
352
+                              'name' => esc_html__( 'Reps / Time / Distance', 'lsx-health-plan' ),
353
+                              'id'   => 'reps',
354
+                              'type' => 'text',
355
+                              // 'repeatable' => true, // Repeatable fields are supported w/in repeatable groups (for most types)
356
+                         )
357
+                    );
358
+                    $cmb_group->add_group_field(
359
+                         $group_field_id,
360
+                         array(
361
+                              'name'         => __( 'Exercise Image (Optional)', 'lsx-health-plan' ),
362
+                              'id'           => 'exercise_alt_thumbnail',
363
+                              'type'         => 'file',
364
+                              'text'         => array(
365
+                                   'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ),
366
+                              ),
367
+                              'desc'         => __( 'Upload an image 300px x 300px in size.', 'lsx-health-plan' ),
368
+                              'query_args'   => array(
369
+                                   'type' => array(
370
+                                        'image/gif',
371
+                                        'image/jpeg',
372
+                                        'image/png',
373
+                                   ),
374
+                              ),
375
+                              'preview_size' => 'thumbnail',
376
+                              'classes'      => 'lsx-field-col lsx-field-add-field  lsx-field-col-25',
377
+                         )
378
+                    );
379 379
 
380
-				$i++;
381
-			};
382
-		}
383
-	}
380
+                    $i++;
381
+               };
382
+          }
383
+     }
384 384
 }
Please login to merge, or discard this patch.
templates/single-plan-tabs.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@  discard block
 block discarded – undo
8 8
 $plan_link       = get_permalink();
9 9
 $current_section = get_query_var( 'section', false );
10 10
 if ( '' !== $current_section ) {
11
-	$plan_link = \lsx_health_plan\functions\plan\get_permalink( get_the_ID(), $current_section );
11
+     $plan_link = \lsx_health_plan\functions\plan\get_permalink( get_the_ID(), $current_section );
12 12
 }
13 13
 
14 14
 if ( false !== $current_section && \lsx_health_plan\functions\plan\has_sections() ) {
15
-	$section_info = \lsx_health_plan\functions\plan\get_section_info( $current_section );
16
-	if ( empty( $section_info ) || ( isset( $section_info['rest_day_enabled'] ) && ! empty( $section_info['rest_day_enabled'] ) && ! lsx_health_plan_has_meal() ) ) {
17
-		return;
18
-	}
15
+     $section_info = \lsx_health_plan\functions\plan\get_section_info( $current_section );
16
+     if ( empty( $section_info ) || ( isset( $section_info['rest_day_enabled'] ) && ! empty( $section_info['rest_day_enabled'] ) && ! lsx_health_plan_has_meal() ) ) {
17
+          return;
18
+     }
19 19
 }
20 20
 
21 21
 ?>
@@ -23,33 +23,33 @@  discard block
 block discarded – undo
23 23
 	<ul class="nav nav-pills">
24 24
 		<li class="<?php lsx_health_plan_nav_class( '' ); ?>"><a class="overview-tab" href="<?php echo esc_attr( $plan_link ); ?>"><?php lsx_get_svg_icon( 'eye.svg' ); ?> <?php esc_html_e( 'Overview', 'lsx-health-plan' ); ?></a></li>
25 25
 		<?php
26
-		if ( lsx_health_plan_has_warmup() ) {
27
-			$warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false );
28
-			if ( false === $warm_up ) {
29
-				$warm_up = 'warm-up';
30
-			}
31
-			?>
26
+          if ( lsx_health_plan_has_warmup() ) {
27
+               $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false );
28
+               if ( false === $warm_up ) {
29
+                    $warm_up = 'warm-up';
30
+               }
31
+               ?>
32 32
 				<li class="<?php lsx_health_plan_nav_class( 'warm-up' ); ?>"><a class="warm-up-tab" href="<?php echo esc_attr( $plan_link ); ?><?php echo esc_attr( $warm_up ); ?>/"><?php lsx_get_svg_icon( 'warm.svg' ); ?> <?php esc_html_e( 'Warm-up', 'lsx-health-plan' ); ?></a></li>				
33 33
 			<?php
34
-		}
35
-		if ( lsx_health_plan_has_workout() ) {
36
-			$workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false );
37
-			if ( false === $workout ) {
38
-				$workout = 'workout';
39
-			}
40
-			?>
34
+          }
35
+          if ( lsx_health_plan_has_workout() ) {
36
+               $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false );
37
+               if ( false === $workout ) {
38
+                    $workout = 'workout';
39
+               }
40
+               ?>
41 41
 				<li class="<?php lsx_health_plan_nav_class( 'workout' ); ?>"><a class="workout-tab" href="<?php echo esc_attr( $plan_link ); ?><?php echo esc_attr( $workout ); ?>/"><?php lsx_get_svg_icon( 'work.svg' ); ?> <?php esc_html_e( 'Workout', 'lsx-health-plan' ); ?></a></li>
42 42
 			<?php
43
-		}
44
-		if ( lsx_health_plan_has_meal() ) {
45
-			$meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false );
46
-			if ( false === $meal ) {
47
-				$meal = 'meal';
48
-			}
49
-			?>
43
+          }
44
+          if ( lsx_health_plan_has_meal() ) {
45
+               $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false );
46
+               if ( false === $meal ) {
47
+                    $meal = 'meal';
48
+               }
49
+               ?>
50 50
 				<li class="<?php lsx_health_plan_nav_class( 'meal' ); ?>"><a class="meal-plan-tab" href="<?php echo esc_attr( $plan_link ); ?><?php echo esc_attr( $meal ); ?>/"><?php lsx_get_svg_icon( 'meal.svg' ); ?> <?php esc_html_e( 'Meal Plan', 'lsx-health-plan' ); ?></a></li>
51 51
 			<?php
52
-		}
53
-		?>
52
+          }
53
+          ?>
54 54
 	</ul>
55 55
 </div>
Please login to merge, or discard this patch.