@@ -6,10 +6,10 @@ discard block |
||
6 | 6 | */ |
7 | 7 | global $group_name, $connected_workouts, $shortcode_args; |
8 | 8 | |
9 | -$warm_up = get_post_meta( get_the_ID(), 'plan_warmup', true ); |
|
10 | -if ( false === $warm_up || '' === $warm_up ) { |
|
11 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
12 | - if ( isset( $options['plan_warmup'] ) && '' !== $options['plan_warmup'] && ! empty( $options['plan_warmup'] ) ) { |
|
9 | +$warm_up = get_post_meta(get_the_ID(), 'plan_warmup', true); |
|
10 | +if (false === $warm_up || '' === $warm_up) { |
|
11 | + $options = \lsx_health_plan\functions\get_option('all'); |
|
12 | + if (isset($options['plan_warmup']) && '' !== $options['plan_warmup'] && ! empty($options['plan_warmup'])) { |
|
13 | 13 | $warm_up = $options['plan_warmup']; |
14 | 14 | } |
15 | 15 | } |
@@ -18,12 +18,12 @@ discard block |
||
18 | 18 | <div class="warmup-container"> |
19 | 19 | <?php |
20 | 20 | |
21 | -if ( false !== $warm_up && '' !== $warm_up ) { |
|
22 | - if ( ! is_array( $warm_up ) ) { |
|
23 | - $warm_up = array( $warm_up ); |
|
21 | +if (false !== $warm_up && '' !== $warm_up) { |
|
22 | + if ( ! is_array($warm_up)) { |
|
23 | + $warm_up = array($warm_up); |
|
24 | 24 | } |
25 | 25 | |
26 | - $warmup_type = array( 'page', 'workout', 'exercise' ); |
|
26 | + $warmup_type = array('page', 'workout', 'exercise'); |
|
27 | 27 | $warmup_query = new WP_Query( |
28 | 28 | array( |
29 | 29 | 'post__in' => $warm_up, |
@@ -31,38 +31,38 @@ discard block |
||
31 | 31 | ) |
32 | 32 | ); |
33 | 33 | |
34 | - if ( $warmup_query->have_posts() ) { |
|
35 | - while ( $warmup_query->have_posts() ) { |
|
34 | + if ($warmup_query->have_posts()) { |
|
35 | + while ($warmup_query->have_posts()) { |
|
36 | 36 | $warmup_query->the_post(); |
37 | 37 | lsx_entry_before(); |
38 | - if ( 'workout' === get_post_type() ) { |
|
39 | - $connected_workouts = array( get_the_ID() ); |
|
38 | + if ('workout' === get_post_type()) { |
|
39 | + $connected_workouts = array(get_the_ID()); |
|
40 | 40 | ?> |
41 | 41 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
42 | 42 | <?php lsx_entry_top(); ?> |
43 | 43 | <div class="entry-content"> |
44 | 44 | <div class="single-plan-inner warmup-content"> |
45 | 45 | <div class="single-plan-section-title warmup-plan title-lined"> |
46 | - <?php lsx_get_svg_icon( 'warm.svg' ); ?> |
|
47 | - <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
|
46 | + <?php lsx_get_svg_icon('warm.svg'); ?> |
|
47 | + <h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2> |
|
48 | 48 | </div> |
49 | 49 | <?php |
50 | 50 | the_content(); |
51 | - wp_link_pages( array( |
|
51 | + wp_link_pages(array( |
|
52 | 52 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
53 | 53 | 'after' => '</div></div>', |
54 | 54 | 'link_before' => '<span>', |
55 | 55 | 'link_after' => '</span>', |
56 | - ) ); |
|
56 | + )); |
|
57 | 57 | ?> |
58 | 58 | </div> |
59 | 59 | </div><!-- .entry-content --> |
60 | 60 | <?php lsx_entry_bottom(); ?> |
61 | - <?php if ( null === $shortcode_args ) { ?> |
|
61 | + <?php if (null === $shortcode_args) { ?> |
|
62 | 62 | <div class="tip-row extras-box"> |
63 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
63 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
64 | 64 | <div class="tip-right"> |
65 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
|
65 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?> |
|
66 | 66 | </div> |
67 | 67 | <?php } ?> |
68 | 68 | </div> |
@@ -77,17 +77,17 @@ discard block |
||
77 | 77 | <div class="entry-content"> |
78 | 78 | <div class="single-plan-inner warmup-content"> |
79 | 79 | <div class="single-plan-section-title warmup-plan title-lined"> |
80 | - <?php lsx_get_svg_icon( 'warm.svg' ); ?> |
|
81 | - <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
|
80 | + <?php lsx_get_svg_icon('warm.svg'); ?> |
|
81 | + <h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2> |
|
82 | 82 | </div> |
83 | 83 | <?php |
84 | 84 | the_content(); |
85 | - wp_link_pages( array( |
|
85 | + wp_link_pages(array( |
|
86 | 86 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
87 | 87 | 'after' => '</div></div>', |
88 | 88 | 'link_before' => '<span>', |
89 | 89 | 'link_after' => '</span>', |
90 | - ) ); |
|
90 | + )); |
|
91 | 91 | ?> |
92 | 92 | </div> |
93 | 93 | </div><!-- .entry-content --> |
@@ -8,10 +8,10 @@ discard block |
||
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 |
||
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"> |
@@ -47,14 +47,14 @@ discard block |
||
47 | 47 | <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
48 | 48 | </div> |
49 | 49 | <?php |
50 | - the_content(); |
|
51 | - wp_link_pages( array( |
|
52 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
53 | - 'after' => '</div></div>', |
|
54 | - 'link_before' => '<span>', |
|
55 | - 'link_after' => '</span>', |
|
56 | - ) ); |
|
57 | - ?> |
|
50 | + the_content(); |
|
51 | + wp_link_pages( array( |
|
52 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
53 | + 'after' => '</div></div>', |
|
54 | + 'link_before' => '<span>', |
|
55 | + 'link_after' => '</span>', |
|
56 | + ) ); |
|
57 | + ?> |
|
58 | 58 | </div> |
59 | 59 | </div><!-- .entry-content --> |
60 | 60 | <?php lsx_entry_bottom(); ?> |
@@ -69,9 +69,9 @@ discard block |
||
69 | 69 | <?php } ?> |
70 | 70 | </article><!-- #post-## --> |
71 | 71 | <?php |
72 | - lsx_health_plan_workout_sets(); |
|
73 | - } else { |
|
74 | - ?> |
|
72 | + lsx_health_plan_workout_sets(); |
|
73 | + } else { |
|
74 | + ?> |
|
75 | 75 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
76 | 76 | <?php lsx_entry_top(); ?> |
77 | 77 | <div class="entry-content"> |
@@ -81,25 +81,25 @@ discard block |
||
81 | 81 | <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
82 | 82 | </div> |
83 | 83 | <?php |
84 | - the_content(); |
|
85 | - wp_link_pages( array( |
|
86 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
87 | - 'after' => '</div></div>', |
|
88 | - 'link_before' => '<span>', |
|
89 | - 'link_after' => '</span>', |
|
90 | - ) ); |
|
91 | - ?> |
|
84 | + the_content(); |
|
85 | + wp_link_pages( array( |
|
86 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
87 | + 'after' => '</div></div>', |
|
88 | + 'link_before' => '<span>', |
|
89 | + 'link_after' => '</span>', |
|
90 | + ) ); |
|
91 | + ?> |
|
92 | 92 | </div> |
93 | 93 | </div><!-- .entry-content --> |
94 | 94 | <?php lsx_entry_bottom(); ?> |
95 | 95 | </article><!-- #post-## --> |
96 | 96 | <?php |
97 | - } |
|
97 | + } |
|
98 | 98 | |
99 | - lsx_entry_after(); |
|
100 | - } |
|
101 | - wp_reset_postdata(); |
|
102 | - } |
|
99 | + lsx_entry_after(); |
|
100 | + } |
|
101 | + wp_reset_postdata(); |
|
102 | + } |
|
103 | 103 | } |
104 | 104 | ?> |
105 | 105 | </div> |
@@ -24,20 +24,20 @@ |
||
24 | 24 | <?php |
25 | 25 | the_content(); |
26 | 26 | |
27 | - wp_link_pages( array( |
|
27 | + wp_link_pages(array( |
|
28 | 28 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
29 | 29 | 'after' => '</div></div>', |
30 | 30 | 'link_before' => '<span>', |
31 | 31 | 'link_after' => '</span>', |
32 | - ) ); |
|
32 | + )); |
|
33 | 33 | ?> |
34 | 34 | </div> |
35 | 35 | </div><!-- .entry-content --> |
36 | - <?php if ( null === $shortcode_args ) { ?> |
|
37 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
36 | + <?php if (null === $shortcode_args) { ?> |
|
37 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
38 | 38 | <div class="tip-row extras-box"> |
39 | 39 | <div class="tip-right"> |
40 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block' ); ?> |
|
40 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block'); ?> |
|
41 | 41 | </div> |
42 | 42 | </div> |
43 | 43 | <?php } ?> |
@@ -22,15 +22,15 @@ |
||
22 | 22 | <div class="entry-content"> |
23 | 23 | <div class="overview"> |
24 | 24 | <?php |
25 | - the_content(); |
|
26 | - |
|
27 | - wp_link_pages( array( |
|
28 | - 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
29 | - 'after' => '</div></div>', |
|
30 | - 'link_before' => '<span>', |
|
31 | - 'link_after' => '</span>', |
|
32 | - ) ); |
|
33 | - ?> |
|
25 | + the_content(); |
|
26 | + |
|
27 | + wp_link_pages( array( |
|
28 | + 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
|
29 | + 'after' => '</div></div>', |
|
30 | + 'link_before' => '<span>', |
|
31 | + 'link_after' => '</span>', |
|
32 | + ) ); |
|
33 | + ?> |
|
34 | 34 | </div> |
35 | 35 | </div><!-- .entry-content --> |
36 | 36 | <?php if ( null === $shortcode_args ) { ?> |
@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | $muscle_group = lsx_health_plan_muscle_group_equipment(); |
11 | 11 | |
12 | 12 | // Getting translated endpoint. |
13 | -$exercise = \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ); |
|
13 | +$exercise = \lsx_health_plan\functions\get_option('endpoint_exercise_single', 'exercise'); |
|
14 | 14 | |
15 | -$connected_members = get_post_meta( get_the_ID(), ( $exercise . '_connected_team_member' ), true ); |
|
16 | -$connected_articles = get_post_meta( get_the_ID(), ( $exercise . '_connected_articles' ), true ); |
|
15 | +$connected_members = get_post_meta(get_the_ID(), ($exercise . '_connected_team_member'), true); |
|
16 | +$connected_articles = get_post_meta(get_the_ID(), ($exercise . '_connected_articles'), true); |
|
17 | 17 | |
18 | 18 | $sharing = 'sharing-disabled'; |
19 | -if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : |
|
19 | +if (class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : |
|
20 | 20 | $sharing = 'sharing-enabled'; |
21 | 21 | endif; |
22 | 22 | |
@@ -34,51 +34,51 @@ discard block |
||
34 | 34 | |
35 | 35 | <div id="single-exercise" class="entry-content"> |
36 | 36 | |
37 | - <div class="exercise-title-section title-lined <?php echo esc_html( $sharing ); ?>"> |
|
38 | - <?php if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?> |
|
37 | + <div class="exercise-title-section title-lined <?php echo esc_html($sharing); ?>"> |
|
38 | + <?php if (class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?> |
|
39 | 39 | |
40 | 40 | <?php |
41 | - if ( class_exists( 'LSX_Sharing' ) ) { |
|
41 | + if (class_exists('LSX_Sharing')) { |
|
42 | 42 | lsx_content_sharing(); |
43 | 43 | } else { |
44 | - if ( function_exists( 'sharing_display' ) ) { |
|
45 | - sharing_display( '', true ); |
|
44 | + if (function_exists('sharing_display')) { |
|
45 | + sharing_display('', true); |
|
46 | 46 | } |
47 | 47 | |
48 | - if ( class_exists( 'Jetpack_Likes' ) ) { |
|
48 | + if (class_exists('Jetpack_Likes')) { |
|
49 | 49 | $custom_likes = new Jetpack_Likes(); |
50 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
50 | + echo wp_kses_post($custom_likes->post_likes('')); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | ?> |
54 | 54 | <?php endif ?> |
55 | 55 | |
56 | - <?php lsx_health_plan_exercise_title( '<h2>', '</h2>' ); ?> |
|
56 | + <?php lsx_health_plan_exercise_title('<h2>', '</h2>'); ?> |
|
57 | 57 | </div> |
58 | - <?php echo wp_kses_post( lsx_hp_member_connected( $connected_members, 'exercise' ) ); ?> |
|
58 | + <?php echo wp_kses_post(lsx_hp_member_connected($connected_members, 'exercise')); ?> |
|
59 | 59 | <div class="row"> |
60 | 60 | <div class="col-md-6 exercise-image lsx-hp-shadow"> |
61 | 61 | |
62 | 62 | <?php |
63 | 63 | $lsx_hp = lsx_health_plan(); |
64 | 64 | |
65 | - if ( $lsx_hp->frontend->gallery->has_gallery( get_the_ID() ) ) { |
|
65 | + if ($lsx_hp->frontend->gallery->has_gallery(get_the_ID())) { |
|
66 | 66 | lsx_health_plan_gallery(); |
67 | 67 | } else { |
68 | 68 | $featured_image = get_the_post_thumbnail(); |
69 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
70 | - the_post_thumbnail( 'large', array( |
|
69 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
70 | + the_post_thumbnail('large', array( |
|
71 | 71 | 'class' => 'aligncenter', |
72 | - ) ); |
|
72 | + )); |
|
73 | 73 | } else { |
74 | 74 | ?> |
75 | - <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
75 | + <img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
76 | 76 | <?php |
77 | 77 | } |
78 | 78 | } |
79 | 79 | ?> |
80 | 80 | |
81 | - <?php if ( ( ! empty( $exercise_type ) ) || ( ! empty( $equipment ) ) || ( ! empty( $muscle_group ) ) ) { ?> |
|
81 | + <?php if (( ! empty($exercise_type)) || ( ! empty($equipment)) || ( ! empty($muscle_group))) { ?> |
|
82 | 82 | <div class="exercise-data"> |
83 | 83 | <?php lsx_health_plan_exercise_data(); ?> |
84 | 84 | </div> |
@@ -86,12 +86,12 @@ discard block |
||
86 | 86 | </div> |
87 | 87 | <div class="col-md-6 exercise-content"> |
88 | 88 | <?php the_content(); ?> |
89 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
|
89 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?> |
|
90 | 90 | <div class="back-plan-btn"> |
91 | 91 | <?php |
92 | - if ( function_exists( 'wc_get_page_id' ) ) { |
|
92 | + if (function_exists('wc_get_page_id')) { |
|
93 | 93 | ?> |
94 | - <a class="btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'Back to my exercises', 'lsx-health-plan' ); ?></a> |
|
94 | + <a class="btn" href="<?php echo wp_kses_post(get_permalink(wc_get_page_id('myaccount'))); ?>"><?php esc_html_e('Back to my exercises', 'lsx-health-plan'); ?></a> |
|
95 | 95 | <?php |
96 | 96 | } |
97 | 97 | ?> |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | </article><!-- #post-## --> |
106 | 106 | |
107 | 107 | <?php |
108 | -if ( ! empty( $connected_articles ) ) { |
|
109 | - lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
108 | +if ( ! empty($connected_articles)) { |
|
109 | + lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan')); |
|
110 | 110 | } |
111 | 111 | ?> |
112 | 112 |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | |
18 | 18 | $sharing = 'sharing-disabled'; |
19 | 19 | if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : |
20 | - $sharing = 'sharing-enabled'; |
|
20 | + $sharing = 'sharing-enabled'; |
|
21 | 21 | endif; |
22 | 22 | |
23 | 23 | ?> |
@@ -38,19 +38,19 @@ discard block |
||
38 | 38 | <?php if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?> |
39 | 39 | |
40 | 40 | <?php |
41 | - if ( class_exists( 'LSX_Sharing' ) ) { |
|
42 | - lsx_content_sharing(); |
|
43 | - } else { |
|
44 | - if ( function_exists( 'sharing_display' ) ) { |
|
45 | - sharing_display( '', true ); |
|
46 | - } |
|
47 | - |
|
48 | - if ( class_exists( 'Jetpack_Likes' ) ) { |
|
49 | - $custom_likes = new Jetpack_Likes(); |
|
50 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
51 | - } |
|
52 | - } |
|
53 | - ?> |
|
41 | + if ( class_exists( 'LSX_Sharing' ) ) { |
|
42 | + lsx_content_sharing(); |
|
43 | + } else { |
|
44 | + if ( function_exists( 'sharing_display' ) ) { |
|
45 | + sharing_display( '', true ); |
|
46 | + } |
|
47 | + |
|
48 | + if ( class_exists( 'Jetpack_Likes' ) ) { |
|
49 | + $custom_likes = new Jetpack_Likes(); |
|
50 | + echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
51 | + } |
|
52 | + } |
|
53 | + ?> |
|
54 | 54 | <?php endif ?> |
55 | 55 | |
56 | 56 | <?php lsx_health_plan_exercise_title( '<h2>', '</h2>' ); ?> |
@@ -60,23 +60,23 @@ discard block |
||
60 | 60 | <div class="col-md-6 exercise-image lsx-hp-shadow"> |
61 | 61 | |
62 | 62 | <?php |
63 | - $lsx_hp = lsx_health_plan(); |
|
64 | - |
|
65 | - if ( $lsx_hp->frontend->gallery->has_gallery( get_the_ID() ) ) { |
|
66 | - lsx_health_plan_gallery(); |
|
67 | - } else { |
|
68 | - $featured_image = get_the_post_thumbnail(); |
|
69 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
70 | - the_post_thumbnail( 'large', array( |
|
71 | - 'class' => 'aligncenter', |
|
72 | - ) ); |
|
73 | - } else { |
|
74 | - ?> |
|
63 | + $lsx_hp = lsx_health_plan(); |
|
64 | + |
|
65 | + if ( $lsx_hp->frontend->gallery->has_gallery( get_the_ID() ) ) { |
|
66 | + lsx_health_plan_gallery(); |
|
67 | + } else { |
|
68 | + $featured_image = get_the_post_thumbnail(); |
|
69 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
70 | + the_post_thumbnail( 'large', array( |
|
71 | + 'class' => 'aligncenter', |
|
72 | + ) ); |
|
73 | + } else { |
|
74 | + ?> |
|
75 | 75 | <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
76 | 76 | <?php |
77 | - } |
|
78 | - } |
|
79 | - ?> |
|
77 | + } |
|
78 | + } |
|
79 | + ?> |
|
80 | 80 | |
81 | 81 | <?php if ( ( ! empty( $exercise_type ) ) || ( ! empty( $equipment ) ) || ( ! empty( $muscle_group ) ) ) { ?> |
82 | 82 | <div class="exercise-data"> |
@@ -89,12 +89,12 @@ discard block |
||
89 | 89 | <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
90 | 90 | <div class="back-plan-btn"> |
91 | 91 | <?php |
92 | - if ( function_exists( 'wc_get_page_id' ) ) { |
|
93 | - ?> |
|
92 | + if ( function_exists( 'wc_get_page_id' ) ) { |
|
93 | + ?> |
|
94 | 94 | <a class="btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'Back to my exercises', 'lsx-health-plan' ); ?></a> |
95 | 95 | <?php |
96 | - } |
|
97 | - ?> |
|
96 | + } |
|
97 | + ?> |
|
98 | 98 | </div> |
99 | 99 | </div> |
100 | 100 | </div> |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | |
107 | 107 | <?php |
108 | 108 | if ( ! empty( $connected_articles ) ) { |
109 | - lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
109 | + lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
110 | 110 | } |
111 | 111 | ?> |
112 | 112 |
@@ -18,51 +18,51 @@ discard block |
||
18 | 18 | $linked_product = false; |
19 | 19 | $restricted = ''; |
20 | 20 | if ( \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
21 | - $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
22 | - $linked_product = wc_get_product( $products[0] ); |
|
23 | - $product = $linked_product; |
|
21 | + $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
22 | + $linked_product = wc_get_product( $products[0] ); |
|
23 | + $product = $linked_product; |
|
24 | 24 | |
25 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) && wc_memberships_is_post_content_restricted( get_the_ID() ) ) { |
|
26 | - $restricted = ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
27 | - } |
|
25 | + if ( function_exists( 'wc_memberships_is_post_content_restricted' ) && wc_memberships_is_post_content_restricted( get_the_ID() ) ) { |
|
26 | + $restricted = ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
27 | + } |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | // Check for shortcode overrides. |
31 | 31 | if ( null !== $shortcode_args ) { |
32 | - if ( isset( $shortcode_args['columns'] ) ) { |
|
33 | - $column_class = $shortcode_args['columns']; |
|
34 | - $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
35 | - } |
|
36 | - if ( isset( $shortcode_args['link'] ) ) { |
|
37 | - $link_setting = $shortcode_args['link']; |
|
38 | - // Setup our link and content. |
|
39 | - switch ( $link_setting ) { |
|
40 | - case 'single': |
|
41 | - $link_html = '<a href="' . get_permalink( $group['connected_plans'] ) . '">'; |
|
42 | - $link_close = '</a>'; |
|
43 | - break; |
|
32 | + if ( isset( $shortcode_args['columns'] ) ) { |
|
33 | + $column_class = $shortcode_args['columns']; |
|
34 | + $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
35 | + } |
|
36 | + if ( isset( $shortcode_args['link'] ) ) { |
|
37 | + $link_setting = $shortcode_args['link']; |
|
38 | + // Setup our link and content. |
|
39 | + switch ( $link_setting ) { |
|
40 | + case 'single': |
|
41 | + $link_html = '<a href="' . get_permalink( $group['connected_plans'] ) . '">'; |
|
42 | + $link_close = '</a>'; |
|
43 | + break; |
|
44 | 44 | |
45 | - case 'modal': |
|
46 | - $link_html = '<a data-toggle="modal" href="#workout-plan-modal-' . $group['connected_plans'] . '">'; |
|
47 | - $link_close = '</a>'; |
|
48 | - $modal_content_setting = \lsx_health_plan\functions\get_option( 'workout_tab_modal_content', 'excerpt' ); |
|
49 | - $modal_args = array( |
|
50 | - 'modal_content' => $modal_content_setting, |
|
51 | - ); |
|
52 | - // We call the button to register the modal, but we do not output it. |
|
53 | - lsx_health_plan_workout_plan_button( $group['connected_plans'], $group, false, $modal_args ); |
|
54 | - break; |
|
45 | + case 'modal': |
|
46 | + $link_html = '<a data-toggle="modal" href="#workout-plan-modal-' . $group['connected_plans'] . '">'; |
|
47 | + $link_close = '</a>'; |
|
48 | + $modal_content_setting = \lsx_health_plan\functions\get_option( 'workout_tab_modal_content', 'excerpt' ); |
|
49 | + $modal_args = array( |
|
50 | + 'modal_content' => $modal_content_setting, |
|
51 | + ); |
|
52 | + // We call the button to register the modal, but we do not output it. |
|
53 | + lsx_health_plan_workout_plan_button( $group['connected_plans'], $group, false, $modal_args ); |
|
54 | + break; |
|
55 | 55 | |
56 | - case 'none': |
|
57 | - default: |
|
58 | - $link_html = ''; |
|
59 | - $link_close = ''; |
|
60 | - break; |
|
61 | - } |
|
62 | - } |
|
63 | - if ( isset( $shortcode_args['description'] ) ) { |
|
64 | - $content_setting = $shortcode_args['description']; |
|
65 | - } |
|
56 | + case 'none': |
|
57 | + default: |
|
58 | + $link_html = ''; |
|
59 | + $link_close = ''; |
|
60 | + break; |
|
61 | + } |
|
62 | + } |
|
63 | + if ( isset( $shortcode_args['description'] ) ) { |
|
64 | + $content_setting = $shortcode_args['description']; |
|
65 | + } |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | $featured = get_post_meta( get_the_ID(), 'plan_featured_plan', true ); |
@@ -78,60 +78,60 @@ discard block |
||
78 | 78 | <?php } ?> |
79 | 79 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
80 | 80 | <?php |
81 | - $featured_image = get_the_post_thumbnail(); |
|
82 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
83 | - the_post_thumbnail( 'lsx-thumbnail', array( |
|
84 | - 'class' => 'aligncenter', |
|
85 | - ) ); |
|
86 | - } else { |
|
87 | - ?> |
|
81 | + $featured_image = get_the_post_thumbnail(); |
|
82 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
83 | + the_post_thumbnail( 'lsx-thumbnail', array( |
|
84 | + 'class' => 'aligncenter', |
|
85 | + ) ); |
|
86 | + } else { |
|
87 | + ?> |
|
88 | 88 | <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
89 | 89 | <?php |
90 | - } |
|
91 | - ?> |
|
90 | + } |
|
91 | + ?> |
|
92 | 92 | </a> |
93 | 93 | </div> |
94 | 94 | <div class="content-box plan-content-box white-bg"> |
95 | 95 | <h3 class="plan id-<?php the_ID(); ?> <?php echo esc_attr( $completed_class ); ?>"><a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title(); ?></a></h3> |
96 | 96 | <?php |
97 | - echo wp_kses_post( \lsx_health_plan\functions\hp_get_plan_type_meta( $post ) ); |
|
98 | - ?> |
|
97 | + echo wp_kses_post( \lsx_health_plan\functions\hp_get_plan_type_meta( $post ) ); |
|
98 | + ?> |
|
99 | 99 | <?php |
100 | - if ( false !== $linked_product ) { |
|
101 | - echo wp_kses_post( $linked_product->get_price_html() ); |
|
102 | - } |
|
103 | - ?> |
|
100 | + if ( false !== $linked_product ) { |
|
101 | + echo wp_kses_post( $linked_product->get_price_html() ); |
|
102 | + } |
|
103 | + ?> |
|
104 | 104 | <div class="excerpt"> |
105 | 105 | <?php |
106 | - if ( ! has_excerpt() ) { |
|
107 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
108 | - $content = '<p>' . $content . '</p>'; |
|
109 | - } else { |
|
110 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
111 | - } |
|
112 | - echo wp_kses_post( $content ); |
|
113 | - ?> |
|
106 | + if ( ! has_excerpt() ) { |
|
107 | + $content = wp_trim_words( get_the_content(), 20 ); |
|
108 | + $content = '<p>' . $content . '</p>'; |
|
109 | + } else { |
|
110 | + $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
111 | + } |
|
112 | + echo wp_kses_post( $content ); |
|
113 | + ?> |
|
114 | 114 | </div> |
115 | 115 | |
116 | 116 | <?php |
117 | - $button_link = get_permalink(); |
|
118 | - $button_text = __( 'View', 'lsx-health-plan' ); |
|
119 | - $button_class = ''; |
|
117 | + $button_link = get_permalink(); |
|
118 | + $button_text = __( 'View', 'lsx-health-plan' ); |
|
119 | + $button_class = ''; |
|
120 | 120 | |
121 | - if ( true === $restricted ) { |
|
122 | - if ( 1 < count( $products ) ) { |
|
123 | - $button_text = __( 'Select Options', 'lsx-health-plan' ); |
|
124 | - } else { |
|
125 | - $button_link = $linked_product->add_to_cart_url() . '&plan_id=' . get_the_ID(); |
|
126 | - $button_text = $linked_product->add_to_cart_text(); |
|
127 | - } |
|
128 | - ?> |
|
121 | + if ( true === $restricted ) { |
|
122 | + if ( 1 < count( $products ) ) { |
|
123 | + $button_text = __( 'Select Options', 'lsx-health-plan' ); |
|
124 | + } else { |
|
125 | + $button_link = $linked_product->add_to_cart_url() . '&plan_id=' . get_the_ID(); |
|
126 | + $button_text = $linked_product->add_to_cart_text(); |
|
127 | + } |
|
128 | + ?> |
|
129 | 129 | <?php |
130 | - } elseif ( false === $restricted ) { |
|
131 | - $button_text = __( 'Already Signed Up', 'lsx-health-plan' ); |
|
132 | - $button_class = 'btn-disabled'; |
|
133 | - } |
|
134 | - ?> |
|
130 | + } elseif ( false === $restricted ) { |
|
131 | + $button_text = __( 'Already Signed Up', 'lsx-health-plan' ); |
|
132 | + $button_class = 'btn-disabled'; |
|
133 | + } |
|
134 | + ?> |
|
135 | 135 | <a class="btn <?php echo esc_attr( $button_class ); ?>" href="<?php echo esc_attr( $button_link ); ?>"><?php echo esc_attr( $button_text ); ?></a> |
136 | 136 | </div> |
137 | 137 | <?php lsx_entry_bottom(); ?> |
@@ -17,40 +17,40 @@ discard block |
||
17 | 17 | $link_close = ''; |
18 | 18 | $linked_product = false; |
19 | 19 | $restricted = ''; |
20 | -if ( \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
20 | +if (\lsx_health_plan\functions\woocommerce\plan_has_products()) { |
|
21 | 21 | $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
22 | - $linked_product = wc_get_product( $products[0] ); |
|
22 | + $linked_product = wc_get_product($products[0]); |
|
23 | 23 | $product = $linked_product; |
24 | 24 | |
25 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) && wc_memberships_is_post_content_restricted( get_the_ID() ) ) { |
|
26 | - $restricted = ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
25 | + if (function_exists('wc_memberships_is_post_content_restricted') && wc_memberships_is_post_content_restricted(get_the_ID())) { |
|
26 | + $restricted = ! current_user_can('wc_memberships_view_restricted_post_content', get_the_ID()); |
|
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | 30 | // Check for shortcode overrides. |
31 | -if ( null !== $shortcode_args ) { |
|
32 | - if ( isset( $shortcode_args['columns'] ) ) { |
|
31 | +if (null !== $shortcode_args) { |
|
32 | + if (isset($shortcode_args['columns'])) { |
|
33 | 33 | $column_class = $shortcode_args['columns']; |
34 | - $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
34 | + $column_class = \lsx_health_plan\functions\column_class($column_class); |
|
35 | 35 | } |
36 | - if ( isset( $shortcode_args['link'] ) ) { |
|
36 | + if (isset($shortcode_args['link'])) { |
|
37 | 37 | $link_setting = $shortcode_args['link']; |
38 | 38 | // Setup our link and content. |
39 | - switch ( $link_setting ) { |
|
39 | + switch ($link_setting) { |
|
40 | 40 | case 'single': |
41 | - $link_html = '<a href="' . get_permalink( $group['connected_plans'] ) . '">'; |
|
41 | + $link_html = '<a href="' . get_permalink($group['connected_plans']) . '">'; |
|
42 | 42 | $link_close = '</a>'; |
43 | 43 | break; |
44 | 44 | |
45 | 45 | case 'modal': |
46 | 46 | $link_html = '<a data-toggle="modal" href="#workout-plan-modal-' . $group['connected_plans'] . '">'; |
47 | 47 | $link_close = '</a>'; |
48 | - $modal_content_setting = \lsx_health_plan\functions\get_option( 'workout_tab_modal_content', 'excerpt' ); |
|
48 | + $modal_content_setting = \lsx_health_plan\functions\get_option('workout_tab_modal_content', 'excerpt'); |
|
49 | 49 | $modal_args = array( |
50 | 50 | 'modal_content' => $modal_content_setting, |
51 | 51 | ); |
52 | 52 | // We call the button to register the modal, but we do not output it. |
53 | - lsx_health_plan_workout_plan_button( $group['connected_plans'], $group, false, $modal_args ); |
|
53 | + lsx_health_plan_workout_plan_button($group['connected_plans'], $group, false, $modal_args); |
|
54 | 54 | break; |
55 | 55 | |
56 | 56 | case 'none': |
@@ -60,79 +60,79 @@ discard block |
||
60 | 60 | break; |
61 | 61 | } |
62 | 62 | } |
63 | - if ( isset( $shortcode_args['description'] ) ) { |
|
63 | + if (isset($shortcode_args['description'])) { |
|
64 | 64 | $content_setting = $shortcode_args['description']; |
65 | 65 | } |
66 | 66 | } |
67 | 67 | |
68 | -$featured = get_post_meta( get_the_ID(), 'plan_featured_plan', true ); |
|
68 | +$featured = get_post_meta(get_the_ID(), 'plan_featured_plan', true); |
|
69 | 69 | ?> |
70 | 70 | |
71 | -<div class="lsx-plan-column col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_class ); ?> <?php echo esc_attr( lsx_hp_plan_get_classes() ); ?>"> |
|
71 | +<div class="lsx-plan-column col-xs-12 col-sm-6 col-md-<?php echo esc_attr($column_class); ?> <?php echo esc_attr(lsx_hp_plan_get_classes()); ?>"> |
|
72 | 72 | <article class="lsx-slot box-shadow"> |
73 | 73 | <?php lsx_entry_top(); ?> |
74 | 74 | |
75 | 75 | <div class="plan-feature-img"> |
76 | - <?php if ( $featured ) { ?> |
|
76 | + <?php if ($featured) { ?> |
|
77 | 77 | <span class="featured-plan"><?php //lsx_get_svg_icon( 'icon-featured.svg' ); ?></span> |
78 | 78 | <?php } ?> |
79 | - <a href="<?php echo esc_url( get_permalink() ); ?>"> |
|
79 | + <a href="<?php echo esc_url(get_permalink()); ?>"> |
|
80 | 80 | <?php |
81 | 81 | $featured_image = get_the_post_thumbnail(); |
82 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
83 | - the_post_thumbnail( 'lsx-thumbnail', array( |
|
82 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
83 | + the_post_thumbnail('lsx-thumbnail', array( |
|
84 | 84 | 'class' => 'aligncenter', |
85 | - ) ); |
|
85 | + )); |
|
86 | 86 | } else { |
87 | 87 | ?> |
88 | - <img loading="lazy" class="placeholder" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
88 | + <img loading="lazy" class="placeholder" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
89 | 89 | <?php |
90 | 90 | } |
91 | 91 | ?> |
92 | 92 | </a> |
93 | 93 | </div> |
94 | 94 | <div class="content-box plan-content-box white-bg"> |
95 | - <h3 class="plan id-<?php the_ID(); ?> <?php echo esc_attr( $completed_class ); ?>"><a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title(); ?></a></h3> |
|
95 | + <h3 class="plan id-<?php the_ID(); ?> <?php echo esc_attr($completed_class); ?>"><a href="<?php echo esc_url(get_permalink()); ?>"><?php the_title(); ?></a></h3> |
|
96 | 96 | <?php |
97 | - echo wp_kses_post( \lsx_health_plan\functions\hp_get_plan_type_meta( $post ) ); |
|
97 | + echo wp_kses_post(\lsx_health_plan\functions\hp_get_plan_type_meta($post)); |
|
98 | 98 | ?> |
99 | 99 | <?php |
100 | - if ( false !== $linked_product ) { |
|
101 | - echo wp_kses_post( $linked_product->get_price_html() ); |
|
100 | + if (false !== $linked_product) { |
|
101 | + echo wp_kses_post($linked_product->get_price_html()); |
|
102 | 102 | } |
103 | 103 | ?> |
104 | 104 | <div class="excerpt"> |
105 | 105 | <?php |
106 | - if ( ! has_excerpt() ) { |
|
107 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
106 | + if ( ! has_excerpt()) { |
|
107 | + $content = wp_trim_words(get_the_content(), 20); |
|
108 | 108 | $content = '<p>' . $content . '</p>'; |
109 | 109 | } else { |
110 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
110 | + $content = apply_filters('the_excerpt', get_the_excerpt()); |
|
111 | 111 | } |
112 | - echo wp_kses_post( $content ); |
|
112 | + echo wp_kses_post($content); |
|
113 | 113 | ?> |
114 | 114 | </div> |
115 | 115 | |
116 | 116 | <?php |
117 | 117 | $button_link = get_permalink(); |
118 | - $button_text = __( 'View', 'lsx-health-plan' ); |
|
118 | + $button_text = __('View', 'lsx-health-plan'); |
|
119 | 119 | $button_class = ''; |
120 | 120 | |
121 | - if ( true === $restricted ) { |
|
122 | - if ( 1 < count( $products ) ) { |
|
123 | - $button_text = __( 'Select Options', 'lsx-health-plan' ); |
|
121 | + if (true === $restricted) { |
|
122 | + if (1 < count($products)) { |
|
123 | + $button_text = __('Select Options', 'lsx-health-plan'); |
|
124 | 124 | } else { |
125 | 125 | $button_link = $linked_product->add_to_cart_url() . '&plan_id=' . get_the_ID(); |
126 | 126 | $button_text = $linked_product->add_to_cart_text(); |
127 | 127 | } |
128 | 128 | ?> |
129 | 129 | <?php |
130 | - } elseif ( false === $restricted ) { |
|
131 | - $button_text = __( 'Already Signed Up', 'lsx-health-plan' ); |
|
130 | + } elseif (false === $restricted) { |
|
131 | + $button_text = __('Already Signed Up', 'lsx-health-plan'); |
|
132 | 132 | $button_class = 'btn-disabled'; |
133 | 133 | } |
134 | 134 | ?> |
135 | - <a class="btn <?php echo esc_attr( $button_class ); ?>" href="<?php echo esc_attr( $button_link ); ?>"><?php echo esc_attr( $button_text ); ?></a> |
|
135 | + <a class="btn <?php echo esc_attr($button_class); ?>" href="<?php echo esc_attr($button_link); ?>"><?php echo esc_attr($button_text); ?></a> |
|
136 | 136 | </div> |
137 | 137 | <?php lsx_entry_bottom(); ?> |
138 | 138 | </article> |
@@ -13,10 +13,10 @@ discard block |
||
13 | 13 | $column_class = '4'; |
14 | 14 | // Check for shortcode overrides. |
15 | 15 | if ( null !== $shortcode_args ) { |
16 | - if ( isset( $shortcode_args['columns'] ) ) { |
|
17 | - $column_class = $shortcode_args['columns']; |
|
18 | - $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
19 | - } |
|
16 | + if ( isset( $shortcode_args['columns'] ) ) { |
|
17 | + $column_class = $shortcode_args['columns']; |
|
18 | + $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
19 | + } |
|
20 | 20 | } |
21 | 21 | ?> |
22 | 22 | |
@@ -29,17 +29,17 @@ discard block |
||
29 | 29 | <div class="recipe-feature-img"> |
30 | 30 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
31 | 31 | <?php |
32 | - $featured_image = get_the_post_thumbnail(); |
|
33 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
34 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
35 | - 'class' => 'aligncenter', |
|
36 | - ) ); |
|
37 | - } else { |
|
38 | - ?> |
|
32 | + $featured_image = get_the_post_thumbnail(); |
|
33 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
34 | + the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
35 | + 'class' => 'aligncenter', |
|
36 | + ) ); |
|
37 | + } else { |
|
38 | + ?> |
|
39 | 39 | <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
40 | 40 | <?php |
41 | - } |
|
42 | - ?> |
|
41 | + } |
|
42 | + ?> |
|
43 | 43 | </a> |
44 | 44 | </div> |
45 | 45 | <div class="content-box white-bg"> |
@@ -12,31 +12,31 @@ discard block |
||
12 | 12 | <?php |
13 | 13 | $column_class = '4'; |
14 | 14 | // Check for shortcode overrides. |
15 | -if ( null !== $shortcode_args ) { |
|
16 | - if ( isset( $shortcode_args['columns'] ) ) { |
|
15 | +if (null !== $shortcode_args) { |
|
16 | + if (isset($shortcode_args['columns'])) { |
|
17 | 17 | $column_class = $shortcode_args['columns']; |
18 | - $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
18 | + $column_class = \lsx_health_plan\functions\column_class($column_class); |
|
19 | 19 | } |
20 | 20 | } |
21 | 21 | ?> |
22 | 22 | |
23 | -<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_class ); ?>"> |
|
23 | +<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr($column_class); ?>"> |
|
24 | 24 | <article class="lsx-slot box-shadow"> |
25 | 25 | <?php lsx_entry_top(); ?> |
26 | 26 | |
27 | 27 | <?php lsx_hp_recipe_plan_meta(); ?> |
28 | 28 | |
29 | 29 | <div class="recipe-feature-img"> |
30 | - <a href="<?php echo esc_url( get_permalink() ); ?>"> |
|
30 | + <a href="<?php echo esc_url(get_permalink()); ?>"> |
|
31 | 31 | <?php |
32 | 32 | $featured_image = get_the_post_thumbnail(); |
33 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
34 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
33 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
34 | + the_post_thumbnail('lsx-thumbnail-square', array( |
|
35 | 35 | 'class' => 'aligncenter', |
36 | - ) ); |
|
36 | + )); |
|
37 | 37 | } else { |
38 | 38 | ?> |
39 | - <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
39 | + <img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
40 | 40 | <?php |
41 | 41 | } |
42 | 42 | ?> |
@@ -44,10 +44,10 @@ discard block |
||
44 | 44 | </div> |
45 | 45 | <div class="content-box white-bg"> |
46 | 46 | <?php lsx_health_plan_recipe_data(); ?> |
47 | - <a class="recipe-title-link" href="<?php echo esc_url( get_permalink() ); ?>"> |
|
48 | - <?php the_title( '<h3 class="recipe-title">', '</h3>' ); ?> |
|
47 | + <a class="recipe-title-link" href="<?php echo esc_url(get_permalink()); ?>"> |
|
48 | + <?php the_title('<h3 class="recipe-title">', '</h3>'); ?> |
|
49 | 49 | </a> |
50 | - <a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See Recipe', 'lsx-health-plan' ); ?></a> |
|
50 | + <a href="<?php echo esc_url(get_permalink()); ?>" class="btn border-btn"><?php esc_html_e('See Recipe', 'lsx-health-plan'); ?></a> |
|
51 | 51 | </div> |
52 | 52 | <?php lsx_entry_bottom(); ?> |
53 | 53 | </article> |
@@ -31,22 +31,22 @@ discard block |
||
31 | 31 | */ |
32 | 32 | public function __construct() { |
33 | 33 | |
34 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
34 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
35 | 35 | // Post Type and Taxonomies. |
36 | - add_action( 'init', array( $this, 'register_post_type' ) ); |
|
37 | - add_action( 'init', array( $this, 'exercise_type_taxonomy_setup' ) ); |
|
38 | - add_action( 'init', array( $this, 'equipment_taxonomy_setup' ) ); |
|
39 | - add_action( 'init', array( $this, 'muscle_group_taxonomy_setup' ) ); |
|
40 | - add_action( 'admin_menu', array( $this, 'register_menus' ) ); |
|
36 | + add_action('init', array($this, 'register_post_type')); |
|
37 | + add_action('init', array($this, 'exercise_type_taxonomy_setup')); |
|
38 | + add_action('init', array($this, 'equipment_taxonomy_setup')); |
|
39 | + add_action('init', array($this, 'muscle_group_taxonomy_setup')); |
|
40 | + add_action('admin_menu', array($this, 'register_menus')); |
|
41 | 41 | |
42 | 42 | // Custom Fields. |
43 | - add_action( 'cmb2_admin_init', array( $this, 'exercise_details' ), 8 ); |
|
44 | - add_action( 'cmb2_admin_init', array( $this, 'gallery_metabox' ), 9 ); |
|
45 | - add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
43 | + add_action('cmb2_admin_init', array($this, 'exercise_details'), 8); |
|
44 | + add_action('cmb2_admin_init', array($this, 'gallery_metabox'), 9); |
|
45 | + add_filter('lsx_health_plan_connections', array($this, 'enable_connections'), 10, 1); |
|
46 | 46 | |
47 | 47 | // Template Redirects. |
48 | - add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
49 | - add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
48 | + add_filter('lsx_health_plan_archive_template', array($this, 'enable_post_type'), 10, 1); |
|
49 | + add_filter('lsx_health_plan_single_template', array($this, 'enable_post_type'), 10, 1); |
|
50 | 50 | |
51 | 51 | } |
52 | 52 | |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public static function get_instance() { |
64 | 64 | // If the single instance hasn't been set, set it now. |
65 | - if ( null === self::$instance ) { |
|
65 | + if (null === self::$instance) { |
|
66 | 66 | self::$instance = new self(); |
67 | 67 | } |
68 | 68 | return self::$instance; |
@@ -72,21 +72,21 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function register_post_type() { |
74 | 74 | $labels = array( |
75 | - 'name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
76 | - 'singular_name' => esc_html__( 'Exercise', 'lsx-health-plan' ), |
|
77 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
78 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
79 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
80 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
81 | - 'all_items' => esc_html__( 'All Exercises', 'lsx-health-plan' ), |
|
82 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
83 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
84 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
85 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
75 | + 'name' => esc_html__('Exercises', 'lsx-health-plan'), |
|
76 | + 'singular_name' => esc_html__('Exercise', 'lsx-health-plan'), |
|
77 | + 'add_new' => esc_html_x('Add New', 'post type general name', 'lsx-health-plan'), |
|
78 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
79 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
80 | + 'new_item' => esc_html__('New', 'lsx-health-plan'), |
|
81 | + 'all_items' => esc_html__('All Exercises', 'lsx-health-plan'), |
|
82 | + 'view_item' => esc_html__('View', 'lsx-health-plan'), |
|
83 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
84 | + 'not_found' => esc_html__('None found', 'lsx-health-plan'), |
|
85 | + 'not_found_in_trash' => esc_html__('None found in Trash', 'lsx-health-plan'), |
|
86 | 86 | 'parent_item_colon' => '', |
87 | - 'menu_name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
87 | + 'menu_name' => esc_html__('Exercises', 'lsx-health-plan'), |
|
88 | 88 | ); |
89 | - $args = array( |
|
89 | + $args = array( |
|
90 | 90 | 'labels' => $labels, |
91 | 91 | 'public' => true, |
92 | 92 | 'publicly_queryable' => true, |
@@ -96,10 +96,10 @@ discard block |
||
96 | 96 | 'menu_icon' => 'dashicons-universal-access', |
97 | 97 | 'query_var' => true, |
98 | 98 | 'rewrite' => array( |
99 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ), |
|
99 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_single', 'exercise'), |
|
100 | 100 | ), |
101 | 101 | 'capability_type' => 'page', |
102 | - 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercises' ), |
|
102 | + 'has_archive' => \lsx_health_plan\functions\get_option('endpoint_exercise_archive', 'exercises'), |
|
103 | 103 | 'hierarchical' => false, |
104 | 104 | 'menu_position' => null, |
105 | 105 | 'supports' => array( |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | 'custom-fields', |
111 | 111 | ), |
112 | 112 | ); |
113 | - register_post_type( 'exercise', $args ); |
|
113 | + register_post_type('exercise', $args); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -120,17 +120,17 @@ discard block |
||
120 | 120 | */ |
121 | 121 | public function exercise_type_taxonomy_setup() { |
122 | 122 | $labels = array( |
123 | - 'name' => esc_html_x( 'Exercise Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
124 | - 'singular_name' => esc_html_x( 'Exercise Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
125 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
126 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
127 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
128 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
129 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
130 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
131 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
132 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
133 | - 'menu_name' => esc_html__( 'Exercise Types', 'lsx-health-plan' ), |
|
123 | + 'name' => esc_html_x('Exercise Type', 'taxonomy general name', 'lsx-health-plan'), |
|
124 | + 'singular_name' => esc_html_x('Exercise Type', 'taxonomy singular name', 'lsx-health-plan'), |
|
125 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
126 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
127 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
128 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
129 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
130 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
131 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
132 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
133 | + 'menu_name' => esc_html__('Exercise Types', 'lsx-health-plan'), |
|
134 | 134 | ); |
135 | 135 | |
136 | 136 | $args = array( |
@@ -140,12 +140,12 @@ discard block |
||
140 | 140 | 'show_admin_column' => true, |
141 | 141 | 'query_var' => true, |
142 | 142 | 'rewrite' => array( |
143 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_type', 'exercise-type' ), |
|
143 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_type', 'exercise-type'), |
|
144 | 144 | ), |
145 | 145 | 'show_in_rest' => true, |
146 | 146 | ); |
147 | 147 | |
148 | - register_taxonomy( 'exercise-type', array( 'exercise' ), $args ); |
|
148 | + register_taxonomy('exercise-type', array('exercise'), $args); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | /** |
@@ -155,17 +155,17 @@ discard block |
||
155 | 155 | */ |
156 | 156 | public function equipment_taxonomy_setup() { |
157 | 157 | $labels = array( |
158 | - 'name' => esc_html_x( 'Equipment', 'taxonomy general name', 'lsx-health-plan' ), |
|
159 | - 'singular_name' => esc_html_x( 'Equipment', 'taxonomy singular name', 'lsx-health-plan' ), |
|
160 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
161 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
162 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
163 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
164 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
165 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
166 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
167 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
168 | - 'menu_name' => esc_html__( 'Equipment', 'lsx-health-plan' ), |
|
158 | + 'name' => esc_html_x('Equipment', 'taxonomy general name', 'lsx-health-plan'), |
|
159 | + 'singular_name' => esc_html_x('Equipment', 'taxonomy singular name', 'lsx-health-plan'), |
|
160 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
161 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
162 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
163 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
164 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
165 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
166 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
167 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
168 | + 'menu_name' => esc_html__('Equipment', 'lsx-health-plan'), |
|
169 | 169 | ); |
170 | 170 | |
171 | 171 | $args = array( |
@@ -175,12 +175,12 @@ discard block |
||
175 | 175 | 'show_admin_column' => true, |
176 | 176 | 'query_var' => true, |
177 | 177 | 'rewrite' => array( |
178 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_equipment', 'equipment' ), |
|
178 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_equipment', 'equipment'), |
|
179 | 179 | ), |
180 | 180 | 'show_in_rest' => true, |
181 | 181 | ); |
182 | 182 | |
183 | - register_taxonomy( 'equipment', array( 'exercise' ), $args ); |
|
183 | + register_taxonomy('equipment', array('exercise'), $args); |
|
184 | 184 | } |
185 | 185 | |
186 | 186 | /** |
@@ -190,17 +190,17 @@ discard block |
||
190 | 190 | */ |
191 | 191 | public function muscle_group_taxonomy_setup() { |
192 | 192 | $labels = array( |
193 | - 'name' => esc_html_x( 'Muscle Groups', 'taxonomy general name', 'lsx-health-plan' ), |
|
194 | - 'singular_name' => esc_html_x( 'Muscle Group', 'taxonomy singular name', 'lsx-health-plan' ), |
|
195 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
196 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
197 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
198 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
199 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
200 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
201 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
202 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
203 | - 'menu_name' => esc_html__( 'Muscle Groups', 'lsx-health-plan' ), |
|
193 | + 'name' => esc_html_x('Muscle Groups', 'taxonomy general name', 'lsx-health-plan'), |
|
194 | + 'singular_name' => esc_html_x('Muscle Group', 'taxonomy singular name', 'lsx-health-plan'), |
|
195 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
196 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
197 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
198 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
199 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
200 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
201 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
202 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
203 | + 'menu_name' => esc_html__('Muscle Groups', 'lsx-health-plan'), |
|
204 | 204 | ); |
205 | 205 | |
206 | 206 | $args = array( |
@@ -210,12 +210,12 @@ discard block |
||
210 | 210 | 'show_admin_column' => true, |
211 | 211 | 'query_var' => true, |
212 | 212 | 'rewrite' => array( |
213 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_muscle_group', 'muscle-group' ), |
|
213 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_muscle_group', 'muscle-group'), |
|
214 | 214 | ), |
215 | 215 | 'show_in_rest' => true, |
216 | 216 | ); |
217 | 217 | |
218 | - register_taxonomy( 'muscle-group', array( 'exercise' ), $args ); |
|
218 | + register_taxonomy('muscle-group', array('exercise'), $args); |
|
219 | 219 | } |
220 | 220 | |
221 | 221 | /** |
@@ -224,10 +224,10 @@ discard block |
||
224 | 224 | * @return void |
225 | 225 | */ |
226 | 226 | public function register_menus() { |
227 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercises', 'lsx-health-plan' ), esc_html__( 'Exercises', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=exercise' ); |
|
228 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercise Types', 'lsx-health-plan' ), esc_html__( 'Exercise Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise' ); |
|
229 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Equipment', 'lsx-health-plan' ), esc_html__( 'Equipment', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise' ); |
|
230 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Muscle Groups', 'lsx-health-plan' ), esc_html__( 'Muscle Groups', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise' ); |
|
227 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Exercises', 'lsx-health-plan'), esc_html__('Exercises', 'lsx-health-plan'), 'edit_posts', 'edit.php?post_type=exercise'); |
|
228 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Exercise Types', 'lsx-health-plan'), esc_html__('Exercise Types', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise'); |
|
229 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Equipment', 'lsx-health-plan'), esc_html__('Equipment', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise'); |
|
230 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Muscle Groups', 'lsx-health-plan'), esc_html__('Muscle Groups', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise'); |
|
231 | 231 | } |
232 | 232 | |
233 | 233 | /** |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | * @param array $post_types |
237 | 237 | * @return array |
238 | 238 | */ |
239 | - public function enable_post_type( $post_types = array() ) { |
|
239 | + public function enable_post_type($post_types = array()) { |
|
240 | 240 | $post_types[] = $this->slug; |
241 | 241 | return $post_types; |
242 | 242 | } |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | * @param array $connections |
248 | 248 | * @return void |
249 | 249 | */ |
250 | - public function enable_connections( $connections = array() ) { |
|
250 | + public function enable_connections($connections = array()) { |
|
251 | 251 | $connections['exercise']['connected_workouts'] = 'connected_exercises'; |
252 | 252 | $connections['workout']['connected_exercises'] = 'connected_workouts'; |
253 | 253 | return $connections; |
@@ -260,8 +260,8 @@ discard block |
||
260 | 260 | $cmb = new_cmb2_box( |
261 | 261 | array( |
262 | 262 | 'id' => $this->slug . '_gallery_details_metabox', |
263 | - 'title' => __( 'Exercise Gallery', 'lsx-health-plan' ), |
|
264 | - 'object_types' => array( $this->slug ), |
|
263 | + 'title' => __('Exercise Gallery', 'lsx-health-plan'), |
|
264 | + 'object_types' => array($this->slug), |
|
265 | 265 | 'context' => 'normal', |
266 | 266 | 'priority' => 'low', |
267 | 267 | 'show_names' => true, |
@@ -270,12 +270,12 @@ discard block |
||
270 | 270 | |
271 | 271 | $cmb->add_field( |
272 | 272 | array( |
273 | - 'name' => __( 'Layout', 'lsx-health-plan' ), |
|
273 | + 'name' => __('Layout', 'lsx-health-plan'), |
|
274 | 274 | 'id' => $this->slug . '_gallery_layout', |
275 | 275 | 'type' => 'radio', |
276 | 276 | 'options' => array( |
277 | - 'slider' => __( 'Slider', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
278 | - 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
277 | + 'slider' => __('Slider', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number |
|
278 | + 'grid' => __('Grid', 'lsx-health-plan'), |
|
279 | 279 | ), |
280 | 280 | 'default' => 'grid', |
281 | 281 | ) |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | |
284 | 284 | $cmb->add_field( |
285 | 285 | array( |
286 | - 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
286 | + 'name' => __('Grid Columns', 'lsx-health-plan'), |
|
287 | 287 | 'id' => $this->slug . '_gallery_columns', |
288 | 288 | 'type' => 'text', |
289 | 289 | 'default' => '1', |
@@ -296,9 +296,9 @@ discard block |
||
296 | 296 | 'id' => $this->slug . '_gallery', |
297 | 297 | 'type' => 'group', |
298 | 298 | 'options' => array( |
299 | - 'group_title' => __( 'Gallery', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
300 | - 'add_button' => __( 'Add Item', 'lsx-health-plan' ), |
|
301 | - 'remove_button' => __( 'Remove Item', 'lsx-health-plan' ), |
|
299 | + 'group_title' => __('Gallery', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number |
|
300 | + 'add_button' => __('Add Item', 'lsx-health-plan'), |
|
301 | + 'remove_button' => __('Remove Item', 'lsx-health-plan'), |
|
302 | 302 | 'sortable' => true, |
303 | 303 | ), |
304 | 304 | 'classes' => 'lsx-admin-row', |
@@ -309,13 +309,13 @@ discard block |
||
309 | 309 | $cmb->add_group_field( |
310 | 310 | $gallery_group, |
311 | 311 | array( |
312 | - 'name' => __( 'Image', 'lsx-health-plan' ), |
|
312 | + 'name' => __('Image', 'lsx-health-plan'), |
|
313 | 313 | 'id' => $this->slug . '_gallery_image', |
314 | 314 | 'type' => 'file', |
315 | 315 | 'text' => array( |
316 | - 'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ), |
|
316 | + 'add_upload_file_text' => __('Add File', 'lsx-health-plan'), |
|
317 | 317 | ), |
318 | - 'desc' => __( 'Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan' ), |
|
318 | + 'desc' => __('Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan'), |
|
319 | 319 | 'query_args' => array( |
320 | 320 | 'type' => array( |
321 | 321 | 'image/gif', |
@@ -331,20 +331,20 @@ discard block |
||
331 | 331 | $cmb->add_group_field( |
332 | 332 | $gallery_group, |
333 | 333 | array( |
334 | - 'name' => __( 'oEmbed', 'lsx-health-plan' ), |
|
334 | + 'name' => __('oEmbed', 'lsx-health-plan'), |
|
335 | 335 | 'id' => $this->slug . '_gallery_embed', |
336 | 336 | 'type' => 'text', |
337 | - 'desc' => __( 'Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan' ), |
|
337 | + 'desc' => __('Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan'), |
|
338 | 338 | ) |
339 | 339 | ); |
340 | 340 | |
341 | 341 | $cmb->add_group_field( |
342 | 342 | $gallery_group, |
343 | 343 | array( |
344 | - 'name' => __( 'External Media', 'lsx-health-plan' ), |
|
344 | + 'name' => __('External Media', 'lsx-health-plan'), |
|
345 | 345 | 'id' => $this->slug . '_gallery_external', |
346 | 346 | 'type' => 'textarea_code', |
347 | - 'desc' => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan' ), |
|
347 | + 'desc' => __('Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan'), |
|
348 | 348 | ) |
349 | 349 | ); |
350 | 350 | } |
@@ -358,8 +358,8 @@ discard block |
||
358 | 358 | $cmb = new_cmb2_box( |
359 | 359 | array( |
360 | 360 | 'id' => $this->slug . '_general_details_metabox', |
361 | - 'title' => __( 'Details', 'lsx-health-plan' ), |
|
362 | - 'object_types' => array( $this->slug ), |
|
361 | + 'title' => __('Details', 'lsx-health-plan'), |
|
362 | + 'object_types' => array($this->slug), |
|
363 | 363 | 'context' => 'normal', |
364 | 364 | 'priority' => 'high', |
365 | 365 | 'show_names' => true, |
@@ -368,15 +368,15 @@ discard block |
||
368 | 368 | |
369 | 369 | $cmb->add_field( |
370 | 370 | array( |
371 | - 'name' => __( 'Side', 'lsx-health-plan' ), |
|
371 | + 'name' => __('Side', 'lsx-health-plan'), |
|
372 | 372 | 'id' => $this->slug . '_side', |
373 | 373 | 'type' => 'select', |
374 | 374 | 'options' => array( |
375 | - '' => __( 'Select', 'lsx-health-plan' ), |
|
376 | - 'left' => __( 'Left', 'lsx-health-plan' ), |
|
377 | - 'right' => __( 'Right', 'lsx-health-plan' ), |
|
375 | + '' => __('Select', 'lsx-health-plan'), |
|
376 | + 'left' => __('Left', 'lsx-health-plan'), |
|
377 | + 'right' => __('Right', 'lsx-health-plan'), |
|
378 | 378 | ), |
379 | - 'desc' => __( 'Select which side this exercise uses. ', 'lsx-health-plan' ), |
|
379 | + 'desc' => __('Select which side this exercise uses. ', 'lsx-health-plan'), |
|
380 | 380 | ) |
381 | 381 | ); |
382 | 382 | } |
@@ -8,376 +8,376 @@ |
||
8 | 8 | */ |
9 | 9 | class Exercise { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\Exercise() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
19 | - |
|
20 | - /** |
|
21 | - * Holds post_type slug used as an index |
|
22 | - * |
|
23 | - * @since 1.0.0 |
|
24 | - * |
|
25 | - * @var string |
|
26 | - */ |
|
27 | - public $slug = 'exercise'; |
|
28 | - |
|
29 | - /** |
|
30 | - * Constructor |
|
31 | - */ |
|
32 | - public function __construct() { |
|
33 | - |
|
34 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
35 | - // Post Type and Taxonomies. |
|
36 | - add_action( 'init', array( $this, 'register_post_type' ) ); |
|
37 | - add_action( 'init', array( $this, 'exercise_type_taxonomy_setup' ) ); |
|
38 | - add_action( 'init', array( $this, 'equipment_taxonomy_setup' ) ); |
|
39 | - add_action( 'init', array( $this, 'muscle_group_taxonomy_setup' ) ); |
|
40 | - add_action( 'admin_menu', array( $this, 'register_menus' ) ); |
|
41 | - |
|
42 | - // Custom Fields. |
|
43 | - add_action( 'cmb2_admin_init', array( $this, 'exercise_details' ), 8 ); |
|
44 | - add_action( 'cmb2_admin_init', array( $this, 'gallery_metabox' ), 9 ); |
|
45 | - add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
46 | - |
|
47 | - // Template Redirects. |
|
48 | - add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
49 | - add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
50 | - |
|
51 | - } |
|
52 | - |
|
53 | - } |
|
54 | - |
|
55 | - |
|
56 | - /** |
|
57 | - * Return an instance of this class. |
|
58 | - * |
|
59 | - * @since 1.0.0 |
|
60 | - * |
|
61 | - * @return object \lsx_health_plan\classes\Exercise() A single instance of this class. |
|
62 | - */ |
|
63 | - public static function get_instance() { |
|
64 | - // If the single instance hasn't been set, set it now. |
|
65 | - if ( null === self::$instance ) { |
|
66 | - self::$instance = new self(); |
|
67 | - } |
|
68 | - return self::$instance; |
|
69 | - } |
|
70 | - /** |
|
71 | - * Register the post type. |
|
72 | - */ |
|
73 | - public function register_post_type() { |
|
74 | - $labels = array( |
|
75 | - 'name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
76 | - 'singular_name' => esc_html__( 'Exercise', 'lsx-health-plan' ), |
|
77 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
78 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
79 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
80 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
81 | - 'all_items' => esc_html__( 'All Exercises', 'lsx-health-plan' ), |
|
82 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
83 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
84 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
85 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
86 | - 'parent_item_colon' => '', |
|
87 | - 'menu_name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
88 | - ); |
|
89 | - $args = array( |
|
90 | - 'labels' => $labels, |
|
91 | - 'public' => true, |
|
92 | - 'publicly_queryable' => true, |
|
93 | - 'show_ui' => true, |
|
94 | - 'show_in_menu' => false, |
|
95 | - 'show_in_rest' => true, |
|
96 | - 'menu_icon' => 'dashicons-universal-access', |
|
97 | - 'query_var' => true, |
|
98 | - 'rewrite' => array( |
|
99 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ), |
|
100 | - ), |
|
101 | - 'capability_type' => 'page', |
|
102 | - 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercises' ), |
|
103 | - 'hierarchical' => false, |
|
104 | - 'menu_position' => null, |
|
105 | - 'supports' => array( |
|
106 | - 'title', |
|
107 | - 'thumbnail', |
|
108 | - 'editor', |
|
109 | - 'excerpt', |
|
110 | - 'custom-fields', |
|
111 | - ), |
|
112 | - ); |
|
113 | - register_post_type( 'exercise', $args ); |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Register the Exercise taxonomy. |
|
118 | - * |
|
119 | - * @return void |
|
120 | - */ |
|
121 | - public function exercise_type_taxonomy_setup() { |
|
122 | - $labels = array( |
|
123 | - 'name' => esc_html_x( 'Exercise Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
124 | - 'singular_name' => esc_html_x( 'Exercise Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
125 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
126 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
127 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
128 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
129 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
130 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
131 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
132 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
133 | - 'menu_name' => esc_html__( 'Exercise Types', 'lsx-health-plan' ), |
|
134 | - ); |
|
135 | - |
|
136 | - $args = array( |
|
137 | - 'hierarchical' => true, |
|
138 | - 'labels' => $labels, |
|
139 | - 'show_ui' => true, |
|
140 | - 'show_admin_column' => true, |
|
141 | - 'query_var' => true, |
|
142 | - 'rewrite' => array( |
|
143 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_type', 'exercise-type' ), |
|
144 | - ), |
|
145 | - 'show_in_rest' => true, |
|
146 | - ); |
|
147 | - |
|
148 | - register_taxonomy( 'exercise-type', array( 'exercise' ), $args ); |
|
149 | - } |
|
150 | - |
|
151 | - /** |
|
152 | - * Register the Exercise taxonomy. |
|
153 | - * |
|
154 | - * @return void |
|
155 | - */ |
|
156 | - public function equipment_taxonomy_setup() { |
|
157 | - $labels = array( |
|
158 | - 'name' => esc_html_x( 'Equipment', 'taxonomy general name', 'lsx-health-plan' ), |
|
159 | - 'singular_name' => esc_html_x( 'Equipment', 'taxonomy singular name', 'lsx-health-plan' ), |
|
160 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
161 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
162 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
163 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
164 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
165 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
166 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
167 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
168 | - 'menu_name' => esc_html__( 'Equipment', 'lsx-health-plan' ), |
|
169 | - ); |
|
170 | - |
|
171 | - $args = array( |
|
172 | - 'hierarchical' => true, |
|
173 | - 'labels' => $labels, |
|
174 | - 'show_ui' => true, |
|
175 | - 'show_admin_column' => true, |
|
176 | - 'query_var' => true, |
|
177 | - 'rewrite' => array( |
|
178 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_equipment', 'equipment' ), |
|
179 | - ), |
|
180 | - 'show_in_rest' => true, |
|
181 | - ); |
|
182 | - |
|
183 | - register_taxonomy( 'equipment', array( 'exercise' ), $args ); |
|
184 | - } |
|
185 | - |
|
186 | - /** |
|
187 | - * Register the Muscle Group taxonomy. |
|
188 | - * |
|
189 | - * @return void |
|
190 | - */ |
|
191 | - public function muscle_group_taxonomy_setup() { |
|
192 | - $labels = array( |
|
193 | - 'name' => esc_html_x( 'Muscle Groups', 'taxonomy general name', 'lsx-health-plan' ), |
|
194 | - 'singular_name' => esc_html_x( 'Muscle Group', 'taxonomy singular name', 'lsx-health-plan' ), |
|
195 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
196 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
197 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
198 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
199 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
200 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
201 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
202 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
203 | - 'menu_name' => esc_html__( 'Muscle Groups', 'lsx-health-plan' ), |
|
204 | - ); |
|
205 | - |
|
206 | - $args = array( |
|
207 | - 'hierarchical' => true, |
|
208 | - 'labels' => $labels, |
|
209 | - 'show_ui' => true, |
|
210 | - 'show_admin_column' => true, |
|
211 | - 'query_var' => true, |
|
212 | - 'rewrite' => array( |
|
213 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_muscle_group', 'muscle-group' ), |
|
214 | - ), |
|
215 | - 'show_in_rest' => true, |
|
216 | - ); |
|
217 | - |
|
218 | - register_taxonomy( 'muscle-group', array( 'exercise' ), $args ); |
|
219 | - } |
|
220 | - |
|
221 | - /** |
|
222 | - * Registers the Recipes under the Meals Post type menu. |
|
223 | - * |
|
224 | - * @return void |
|
225 | - */ |
|
226 | - public function register_menus() { |
|
227 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercises', 'lsx-health-plan' ), esc_html__( 'Exercises', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=exercise' ); |
|
228 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercise Types', 'lsx-health-plan' ), esc_html__( 'Exercise Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise' ); |
|
229 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Equipment', 'lsx-health-plan' ), esc_html__( 'Equipment', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise' ); |
|
230 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Muscle Groups', 'lsx-health-plan' ), esc_html__( 'Muscle Groups', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise' ); |
|
231 | - } |
|
232 | - |
|
233 | - /** |
|
234 | - * Adds the post type to the different arrays. |
|
235 | - * |
|
236 | - * @param array $post_types |
|
237 | - * @return array |
|
238 | - */ |
|
239 | - public function enable_post_type( $post_types = array() ) { |
|
240 | - $post_types[] = $this->slug; |
|
241 | - return $post_types; |
|
242 | - } |
|
243 | - |
|
244 | - /** |
|
245 | - * Enables the Bi Directional relationships |
|
246 | - * |
|
247 | - * @param array $connections |
|
248 | - * @return void |
|
249 | - */ |
|
250 | - public function enable_connections( $connections = array() ) { |
|
251 | - $connections['exercise']['connected_workouts'] = 'connected_exercises'; |
|
252 | - $connections['workout']['connected_exercises'] = 'connected_workouts'; |
|
253 | - return $connections; |
|
254 | - } |
|
255 | - |
|
256 | - /** |
|
257 | - * Define the metabox and field configurations. |
|
258 | - */ |
|
259 | - public function gallery_metabox() { |
|
260 | - $cmb = new_cmb2_box( |
|
261 | - array( |
|
262 | - 'id' => $this->slug . '_gallery_details_metabox', |
|
263 | - 'title' => __( 'Exercise Gallery', 'lsx-health-plan' ), |
|
264 | - 'object_types' => array( $this->slug ), |
|
265 | - 'context' => 'normal', |
|
266 | - 'priority' => 'low', |
|
267 | - 'show_names' => true, |
|
268 | - ) |
|
269 | - ); |
|
270 | - |
|
271 | - $cmb->add_field( |
|
272 | - array( |
|
273 | - 'name' => __( 'Layout', 'lsx-health-plan' ), |
|
274 | - 'id' => $this->slug . '_gallery_layout', |
|
275 | - 'type' => 'radio', |
|
276 | - 'options' => array( |
|
277 | - 'slider' => __( 'Slider', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
278 | - 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
279 | - ), |
|
280 | - 'default' => 'grid', |
|
281 | - ) |
|
282 | - ); |
|
283 | - |
|
284 | - $cmb->add_field( |
|
285 | - array( |
|
286 | - 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
287 | - 'id' => $this->slug . '_gallery_columns', |
|
288 | - 'type' => 'text', |
|
289 | - 'default' => '1', |
|
290 | - ) |
|
291 | - ); |
|
292 | - |
|
293 | - // Repeatable group. |
|
294 | - $gallery_group = $cmb->add_field( |
|
295 | - array( |
|
296 | - 'id' => $this->slug . '_gallery', |
|
297 | - 'type' => 'group', |
|
298 | - 'options' => array( |
|
299 | - 'group_title' => __( 'Gallery', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
300 | - 'add_button' => __( 'Add Item', 'lsx-health-plan' ), |
|
301 | - 'remove_button' => __( 'Remove Item', 'lsx-health-plan' ), |
|
302 | - 'sortable' => true, |
|
303 | - ), |
|
304 | - 'classes' => 'lsx-admin-row', |
|
305 | - ) |
|
306 | - ); |
|
307 | - |
|
308 | - // Title. |
|
309 | - $cmb->add_group_field( |
|
310 | - $gallery_group, |
|
311 | - array( |
|
312 | - 'name' => __( 'Image', 'lsx-health-plan' ), |
|
313 | - 'id' => $this->slug . '_gallery_image', |
|
314 | - 'type' => 'file', |
|
315 | - 'text' => array( |
|
316 | - 'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ), |
|
317 | - ), |
|
318 | - 'desc' => __( 'Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan' ), |
|
319 | - 'query_args' => array( |
|
320 | - 'type' => array( |
|
321 | - 'image/gif', |
|
322 | - 'image/jpeg', |
|
323 | - 'image/png', |
|
324 | - ), |
|
325 | - ), |
|
326 | - 'preview_size' => 'lsx-thumbnail-wide', |
|
327 | - ) |
|
328 | - ); |
|
329 | - |
|
330 | - // Title. |
|
331 | - $cmb->add_group_field( |
|
332 | - $gallery_group, |
|
333 | - array( |
|
334 | - 'name' => __( 'oEmbed', 'lsx-health-plan' ), |
|
335 | - 'id' => $this->slug . '_gallery_embed', |
|
336 | - 'type' => 'text', |
|
337 | - 'desc' => __( 'Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan' ), |
|
338 | - ) |
|
339 | - ); |
|
340 | - |
|
341 | - $cmb->add_group_field( |
|
342 | - $gallery_group, |
|
343 | - array( |
|
344 | - 'name' => __( 'External Media', 'lsx-health-plan' ), |
|
345 | - 'id' => $this->slug . '_gallery_external', |
|
346 | - 'type' => 'textarea_code', |
|
347 | - 'desc' => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan' ), |
|
348 | - ) |
|
349 | - ); |
|
350 | - } |
|
351 | - |
|
352 | - /** |
|
353 | - * Registers the general settings for the exercise. |
|
354 | - * |
|
355 | - * @return void |
|
356 | - */ |
|
357 | - public function exercise_details() { |
|
358 | - $cmb = new_cmb2_box( |
|
359 | - array( |
|
360 | - 'id' => $this->slug . '_general_details_metabox', |
|
361 | - 'title' => __( 'Details', 'lsx-health-plan' ), |
|
362 | - 'object_types' => array( $this->slug ), |
|
363 | - 'context' => 'normal', |
|
364 | - 'priority' => 'high', |
|
365 | - 'show_names' => true, |
|
366 | - ) |
|
367 | - ); |
|
368 | - |
|
369 | - $cmb->add_field( |
|
370 | - array( |
|
371 | - 'name' => __( 'Side', 'lsx-health-plan' ), |
|
372 | - 'id' => $this->slug . '_side', |
|
373 | - 'type' => 'select', |
|
374 | - 'options' => array( |
|
375 | - '' => __( 'Select', 'lsx-health-plan' ), |
|
376 | - 'left' => __( 'Left', 'lsx-health-plan' ), |
|
377 | - 'right' => __( 'Right', 'lsx-health-plan' ), |
|
378 | - ), |
|
379 | - 'desc' => __( 'Select which side this exercise uses. ', 'lsx-health-plan' ), |
|
380 | - ) |
|
381 | - ); |
|
382 | - } |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\Exercise() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | + |
|
20 | + /** |
|
21 | + * Holds post_type slug used as an index |
|
22 | + * |
|
23 | + * @since 1.0.0 |
|
24 | + * |
|
25 | + * @var string |
|
26 | + */ |
|
27 | + public $slug = 'exercise'; |
|
28 | + |
|
29 | + /** |
|
30 | + * Constructor |
|
31 | + */ |
|
32 | + public function __construct() { |
|
33 | + |
|
34 | + if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
35 | + // Post Type and Taxonomies. |
|
36 | + add_action( 'init', array( $this, 'register_post_type' ) ); |
|
37 | + add_action( 'init', array( $this, 'exercise_type_taxonomy_setup' ) ); |
|
38 | + add_action( 'init', array( $this, 'equipment_taxonomy_setup' ) ); |
|
39 | + add_action( 'init', array( $this, 'muscle_group_taxonomy_setup' ) ); |
|
40 | + add_action( 'admin_menu', array( $this, 'register_menus' ) ); |
|
41 | + |
|
42 | + // Custom Fields. |
|
43 | + add_action( 'cmb2_admin_init', array( $this, 'exercise_details' ), 8 ); |
|
44 | + add_action( 'cmb2_admin_init', array( $this, 'gallery_metabox' ), 9 ); |
|
45 | + add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
46 | + |
|
47 | + // Template Redirects. |
|
48 | + add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
49 | + add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
50 | + |
|
51 | + } |
|
52 | + |
|
53 | + } |
|
54 | + |
|
55 | + |
|
56 | + /** |
|
57 | + * Return an instance of this class. |
|
58 | + * |
|
59 | + * @since 1.0.0 |
|
60 | + * |
|
61 | + * @return object \lsx_health_plan\classes\Exercise() A single instance of this class. |
|
62 | + */ |
|
63 | + public static function get_instance() { |
|
64 | + // If the single instance hasn't been set, set it now. |
|
65 | + if ( null === self::$instance ) { |
|
66 | + self::$instance = new self(); |
|
67 | + } |
|
68 | + return self::$instance; |
|
69 | + } |
|
70 | + /** |
|
71 | + * Register the post type. |
|
72 | + */ |
|
73 | + public function register_post_type() { |
|
74 | + $labels = array( |
|
75 | + 'name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
76 | + 'singular_name' => esc_html__( 'Exercise', 'lsx-health-plan' ), |
|
77 | + 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
78 | + 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
79 | + 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
80 | + 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
81 | + 'all_items' => esc_html__( 'All Exercises', 'lsx-health-plan' ), |
|
82 | + 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
83 | + 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
84 | + 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
85 | + 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
86 | + 'parent_item_colon' => '', |
|
87 | + 'menu_name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
88 | + ); |
|
89 | + $args = array( |
|
90 | + 'labels' => $labels, |
|
91 | + 'public' => true, |
|
92 | + 'publicly_queryable' => true, |
|
93 | + 'show_ui' => true, |
|
94 | + 'show_in_menu' => false, |
|
95 | + 'show_in_rest' => true, |
|
96 | + 'menu_icon' => 'dashicons-universal-access', |
|
97 | + 'query_var' => true, |
|
98 | + 'rewrite' => array( |
|
99 | + 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ), |
|
100 | + ), |
|
101 | + 'capability_type' => 'page', |
|
102 | + 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercises' ), |
|
103 | + 'hierarchical' => false, |
|
104 | + 'menu_position' => null, |
|
105 | + 'supports' => array( |
|
106 | + 'title', |
|
107 | + 'thumbnail', |
|
108 | + 'editor', |
|
109 | + 'excerpt', |
|
110 | + 'custom-fields', |
|
111 | + ), |
|
112 | + ); |
|
113 | + register_post_type( 'exercise', $args ); |
|
114 | + } |
|
115 | + |
|
116 | + /** |
|
117 | + * Register the Exercise taxonomy. |
|
118 | + * |
|
119 | + * @return void |
|
120 | + */ |
|
121 | + public function exercise_type_taxonomy_setup() { |
|
122 | + $labels = array( |
|
123 | + 'name' => esc_html_x( 'Exercise Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
124 | + 'singular_name' => esc_html_x( 'Exercise Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
125 | + 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
126 | + 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
127 | + 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
128 | + 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
129 | + 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
130 | + 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
131 | + 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
132 | + 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
133 | + 'menu_name' => esc_html__( 'Exercise Types', 'lsx-health-plan' ), |
|
134 | + ); |
|
135 | + |
|
136 | + $args = array( |
|
137 | + 'hierarchical' => true, |
|
138 | + 'labels' => $labels, |
|
139 | + 'show_ui' => true, |
|
140 | + 'show_admin_column' => true, |
|
141 | + 'query_var' => true, |
|
142 | + 'rewrite' => array( |
|
143 | + 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_type', 'exercise-type' ), |
|
144 | + ), |
|
145 | + 'show_in_rest' => true, |
|
146 | + ); |
|
147 | + |
|
148 | + register_taxonomy( 'exercise-type', array( 'exercise' ), $args ); |
|
149 | + } |
|
150 | + |
|
151 | + /** |
|
152 | + * Register the Exercise taxonomy. |
|
153 | + * |
|
154 | + * @return void |
|
155 | + */ |
|
156 | + public function equipment_taxonomy_setup() { |
|
157 | + $labels = array( |
|
158 | + 'name' => esc_html_x( 'Equipment', 'taxonomy general name', 'lsx-health-plan' ), |
|
159 | + 'singular_name' => esc_html_x( 'Equipment', 'taxonomy singular name', 'lsx-health-plan' ), |
|
160 | + 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
161 | + 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
162 | + 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
163 | + 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
164 | + 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
165 | + 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
166 | + 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
167 | + 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
168 | + 'menu_name' => esc_html__( 'Equipment', 'lsx-health-plan' ), |
|
169 | + ); |
|
170 | + |
|
171 | + $args = array( |
|
172 | + 'hierarchical' => true, |
|
173 | + 'labels' => $labels, |
|
174 | + 'show_ui' => true, |
|
175 | + 'show_admin_column' => true, |
|
176 | + 'query_var' => true, |
|
177 | + 'rewrite' => array( |
|
178 | + 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_equipment', 'equipment' ), |
|
179 | + ), |
|
180 | + 'show_in_rest' => true, |
|
181 | + ); |
|
182 | + |
|
183 | + register_taxonomy( 'equipment', array( 'exercise' ), $args ); |
|
184 | + } |
|
185 | + |
|
186 | + /** |
|
187 | + * Register the Muscle Group taxonomy. |
|
188 | + * |
|
189 | + * @return void |
|
190 | + */ |
|
191 | + public function muscle_group_taxonomy_setup() { |
|
192 | + $labels = array( |
|
193 | + 'name' => esc_html_x( 'Muscle Groups', 'taxonomy general name', 'lsx-health-plan' ), |
|
194 | + 'singular_name' => esc_html_x( 'Muscle Group', 'taxonomy singular name', 'lsx-health-plan' ), |
|
195 | + 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
196 | + 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
197 | + 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
198 | + 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
199 | + 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
200 | + 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
201 | + 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
202 | + 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
203 | + 'menu_name' => esc_html__( 'Muscle Groups', 'lsx-health-plan' ), |
|
204 | + ); |
|
205 | + |
|
206 | + $args = array( |
|
207 | + 'hierarchical' => true, |
|
208 | + 'labels' => $labels, |
|
209 | + 'show_ui' => true, |
|
210 | + 'show_admin_column' => true, |
|
211 | + 'query_var' => true, |
|
212 | + 'rewrite' => array( |
|
213 | + 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_muscle_group', 'muscle-group' ), |
|
214 | + ), |
|
215 | + 'show_in_rest' => true, |
|
216 | + ); |
|
217 | + |
|
218 | + register_taxonomy( 'muscle-group', array( 'exercise' ), $args ); |
|
219 | + } |
|
220 | + |
|
221 | + /** |
|
222 | + * Registers the Recipes under the Meals Post type menu. |
|
223 | + * |
|
224 | + * @return void |
|
225 | + */ |
|
226 | + public function register_menus() { |
|
227 | + add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercises', 'lsx-health-plan' ), esc_html__( 'Exercises', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=exercise' ); |
|
228 | + add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercise Types', 'lsx-health-plan' ), esc_html__( 'Exercise Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise' ); |
|
229 | + add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Equipment', 'lsx-health-plan' ), esc_html__( 'Equipment', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise' ); |
|
230 | + add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Muscle Groups', 'lsx-health-plan' ), esc_html__( 'Muscle Groups', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise' ); |
|
231 | + } |
|
232 | + |
|
233 | + /** |
|
234 | + * Adds the post type to the different arrays. |
|
235 | + * |
|
236 | + * @param array $post_types |
|
237 | + * @return array |
|
238 | + */ |
|
239 | + public function enable_post_type( $post_types = array() ) { |
|
240 | + $post_types[] = $this->slug; |
|
241 | + return $post_types; |
|
242 | + } |
|
243 | + |
|
244 | + /** |
|
245 | + * Enables the Bi Directional relationships |
|
246 | + * |
|
247 | + * @param array $connections |
|
248 | + * @return void |
|
249 | + */ |
|
250 | + public function enable_connections( $connections = array() ) { |
|
251 | + $connections['exercise']['connected_workouts'] = 'connected_exercises'; |
|
252 | + $connections['workout']['connected_exercises'] = 'connected_workouts'; |
|
253 | + return $connections; |
|
254 | + } |
|
255 | + |
|
256 | + /** |
|
257 | + * Define the metabox and field configurations. |
|
258 | + */ |
|
259 | + public function gallery_metabox() { |
|
260 | + $cmb = new_cmb2_box( |
|
261 | + array( |
|
262 | + 'id' => $this->slug . '_gallery_details_metabox', |
|
263 | + 'title' => __( 'Exercise Gallery', 'lsx-health-plan' ), |
|
264 | + 'object_types' => array( $this->slug ), |
|
265 | + 'context' => 'normal', |
|
266 | + 'priority' => 'low', |
|
267 | + 'show_names' => true, |
|
268 | + ) |
|
269 | + ); |
|
270 | + |
|
271 | + $cmb->add_field( |
|
272 | + array( |
|
273 | + 'name' => __( 'Layout', 'lsx-health-plan' ), |
|
274 | + 'id' => $this->slug . '_gallery_layout', |
|
275 | + 'type' => 'radio', |
|
276 | + 'options' => array( |
|
277 | + 'slider' => __( 'Slider', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
278 | + 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
279 | + ), |
|
280 | + 'default' => 'grid', |
|
281 | + ) |
|
282 | + ); |
|
283 | + |
|
284 | + $cmb->add_field( |
|
285 | + array( |
|
286 | + 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
287 | + 'id' => $this->slug . '_gallery_columns', |
|
288 | + 'type' => 'text', |
|
289 | + 'default' => '1', |
|
290 | + ) |
|
291 | + ); |
|
292 | + |
|
293 | + // Repeatable group. |
|
294 | + $gallery_group = $cmb->add_field( |
|
295 | + array( |
|
296 | + 'id' => $this->slug . '_gallery', |
|
297 | + 'type' => 'group', |
|
298 | + 'options' => array( |
|
299 | + 'group_title' => __( 'Gallery', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
300 | + 'add_button' => __( 'Add Item', 'lsx-health-plan' ), |
|
301 | + 'remove_button' => __( 'Remove Item', 'lsx-health-plan' ), |
|
302 | + 'sortable' => true, |
|
303 | + ), |
|
304 | + 'classes' => 'lsx-admin-row', |
|
305 | + ) |
|
306 | + ); |
|
307 | + |
|
308 | + // Title. |
|
309 | + $cmb->add_group_field( |
|
310 | + $gallery_group, |
|
311 | + array( |
|
312 | + 'name' => __( 'Image', 'lsx-health-plan' ), |
|
313 | + 'id' => $this->slug . '_gallery_image', |
|
314 | + 'type' => 'file', |
|
315 | + 'text' => array( |
|
316 | + 'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ), |
|
317 | + ), |
|
318 | + 'desc' => __( 'Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan' ), |
|
319 | + 'query_args' => array( |
|
320 | + 'type' => array( |
|
321 | + 'image/gif', |
|
322 | + 'image/jpeg', |
|
323 | + 'image/png', |
|
324 | + ), |
|
325 | + ), |
|
326 | + 'preview_size' => 'lsx-thumbnail-wide', |
|
327 | + ) |
|
328 | + ); |
|
329 | + |
|
330 | + // Title. |
|
331 | + $cmb->add_group_field( |
|
332 | + $gallery_group, |
|
333 | + array( |
|
334 | + 'name' => __( 'oEmbed', 'lsx-health-plan' ), |
|
335 | + 'id' => $this->slug . '_gallery_embed', |
|
336 | + 'type' => 'text', |
|
337 | + 'desc' => __( 'Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan' ), |
|
338 | + ) |
|
339 | + ); |
|
340 | + |
|
341 | + $cmb->add_group_field( |
|
342 | + $gallery_group, |
|
343 | + array( |
|
344 | + 'name' => __( 'External Media', 'lsx-health-plan' ), |
|
345 | + 'id' => $this->slug . '_gallery_external', |
|
346 | + 'type' => 'textarea_code', |
|
347 | + 'desc' => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan' ), |
|
348 | + ) |
|
349 | + ); |
|
350 | + } |
|
351 | + |
|
352 | + /** |
|
353 | + * Registers the general settings for the exercise. |
|
354 | + * |
|
355 | + * @return void |
|
356 | + */ |
|
357 | + public function exercise_details() { |
|
358 | + $cmb = new_cmb2_box( |
|
359 | + array( |
|
360 | + 'id' => $this->slug . '_general_details_metabox', |
|
361 | + 'title' => __( 'Details', 'lsx-health-plan' ), |
|
362 | + 'object_types' => array( $this->slug ), |
|
363 | + 'context' => 'normal', |
|
364 | + 'priority' => 'high', |
|
365 | + 'show_names' => true, |
|
366 | + ) |
|
367 | + ); |
|
368 | + |
|
369 | + $cmb->add_field( |
|
370 | + array( |
|
371 | + 'name' => __( 'Side', 'lsx-health-plan' ), |
|
372 | + 'id' => $this->slug . '_side', |
|
373 | + 'type' => 'select', |
|
374 | + 'options' => array( |
|
375 | + '' => __( 'Select', 'lsx-health-plan' ), |
|
376 | + 'left' => __( 'Left', 'lsx-health-plan' ), |
|
377 | + 'right' => __( 'Right', 'lsx-health-plan' ), |
|
378 | + ), |
|
379 | + 'desc' => __( 'Select which side this exercise uses. ', 'lsx-health-plan' ), |
|
380 | + ) |
|
381 | + ); |
|
382 | + } |
|
383 | 383 | } |
@@ -22,17 +22,17 @@ discard block |
||
22 | 22 | <?php } ?> |
23 | 23 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
24 | 24 | <?php |
25 | - $featured_image = get_the_post_thumbnail(); |
|
26 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
27 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
28 | - 'class' => 'aligncenter', |
|
29 | - ) ); |
|
30 | - } else { |
|
31 | - ?> |
|
25 | + $featured_image = get_the_post_thumbnail(); |
|
26 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
27 | + the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
28 | + 'class' => 'aligncenter', |
|
29 | + ) ); |
|
30 | + } else { |
|
31 | + ?> |
|
32 | 32 | <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
33 | 33 | <?php |
34 | - } |
|
35 | - ?> |
|
34 | + } |
|
35 | + ?> |
|
36 | 36 | </a> |
37 | 37 | </div> |
38 | 38 | <div class="content-box workout-content-box white-bg"> |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | <?php the_title( '<h3 class="workout-title">', '</h3>' ); ?> |
41 | 41 | </a> |
42 | 42 | <?php |
43 | - if ( ! has_excerpt() ) { |
|
44 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
45 | - $content = '<p>' . $content . '</p>'; |
|
46 | - } else { |
|
47 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
48 | - } |
|
49 | - echo wp_kses_post( $content ); |
|
50 | - ?> |
|
43 | + if ( ! has_excerpt() ) { |
|
44 | + $content = wp_trim_words( get_the_content(), 20 ); |
|
45 | + $content = '<p>' . $content . '</p>'; |
|
46 | + } else { |
|
47 | + $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
48 | + } |
|
49 | + echo wp_kses_post( $content ); |
|
50 | + ?> |
|
51 | 51 | <a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See workout', 'lsx-health-plan' ); ?></a> |
52 | 52 | </div> |
53 | 53 | <?php lsx_entry_bottom(); ?> |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | * @package lsx-health-plan |
6 | 6 | */ |
7 | 7 | |
8 | -$featured = get_post_meta( get_the_ID(), 'workout_featured_workout', true ); |
|
8 | +$featured = get_post_meta(get_the_ID(), 'workout_featured_workout', true); |
|
9 | 9 | ?> |
10 | 10 | |
11 | 11 | <?php lsx_entry_before(); ?> |
@@ -17,38 +17,38 @@ discard block |
||
17 | 17 | <?php lsx_hp_exercise_plan_meta(); ?> |
18 | 18 | |
19 | 19 | <div class="workout-feature-img"> |
20 | - <?php if ( $featured ) { ?> |
|
21 | - <span class="featured-workout"><?php lsx_get_svg_icon( 'icon-featured.svg' ); ?></span> |
|
20 | + <?php if ($featured) { ?> |
|
21 | + <span class="featured-workout"><?php lsx_get_svg_icon('icon-featured.svg'); ?></span> |
|
22 | 22 | <?php } ?> |
23 | - <a href="<?php echo esc_url( get_permalink() ); ?>"> |
|
23 | + <a href="<?php echo esc_url(get_permalink()); ?>"> |
|
24 | 24 | <?php |
25 | 25 | $featured_image = get_the_post_thumbnail(); |
26 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
27 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
26 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
27 | + the_post_thumbnail('lsx-thumbnail-square', array( |
|
28 | 28 | 'class' => 'aligncenter', |
29 | - ) ); |
|
29 | + )); |
|
30 | 30 | } else { |
31 | 31 | ?> |
32 | - <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
32 | + <img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
33 | 33 | <?php |
34 | 34 | } |
35 | 35 | ?> |
36 | 36 | </a> |
37 | 37 | </div> |
38 | 38 | <div class="content-box workout-content-box white-bg"> |
39 | - <a href="<?php echo esc_url( get_permalink() ); ?>"> |
|
40 | - <?php the_title( '<h3 class="workout-title">', '</h3>' ); ?> |
|
39 | + <a href="<?php echo esc_url(get_permalink()); ?>"> |
|
40 | + <?php the_title('<h3 class="workout-title">', '</h3>'); ?> |
|
41 | 41 | </a> |
42 | 42 | <?php |
43 | - if ( ! has_excerpt() ) { |
|
44 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
43 | + if ( ! has_excerpt()) { |
|
44 | + $content = wp_trim_words(get_the_content(), 20); |
|
45 | 45 | $content = '<p>' . $content . '</p>'; |
46 | 46 | } else { |
47 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
47 | + $content = apply_filters('the_excerpt', get_the_excerpt()); |
|
48 | 48 | } |
49 | - echo wp_kses_post( $content ); |
|
49 | + echo wp_kses_post($content); |
|
50 | 50 | ?> |
51 | - <a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See workout', 'lsx-health-plan' ); ?></a> |
|
51 | + <a href="<?php echo esc_url(get_permalink()); ?>" class="btn border-btn"><?php esc_html_e('See workout', 'lsx-health-plan'); ?></a> |
|
52 | 52 | </div> |
53 | 53 | <?php lsx_entry_bottom(); ?> |
54 | 54 | </article> |
@@ -54,16 +54,16 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function __construct() { |
56 | 56 | $this->load_classes(); |
57 | - add_action( 'cmb2_admin_init', array( $this, 'register_settings_page' ) ); |
|
58 | - add_action( 'lsx_hp_settings_page', array( $this, 'generate_tabs' ), 1, 1 ); |
|
59 | - |
|
60 | - add_action( 'lsx_hp_settings_page_general_top', array( $this, 'general_settings' ), 1, 1 ); |
|
61 | - add_action( 'lsx_hp_settings_page', array( $this, 'global_defaults' ), 3, 1 ); |
|
62 | - add_action( 'lsx_hp_settings_page', array( $this, 'global_downloads' ), 5, 1 ); |
|
63 | - add_action( 'lsx_hp_settings_page', array( $this, 'stat_disable' ), 6, 1 ); |
|
64 | - add_action( 'lsx_hp_settings_page', array( $this, 'endpoint_translations' ), 7, 1 ); |
|
65 | - add_action( 'lsx_hp_settings_page', array( $this, 'exercise_translations' ), 7, 1 ); |
|
66 | - add_action( 'lsx_hp_settings_page', array( $this, 'post_type_toggles' ), 9, 1 ); |
|
57 | + add_action('cmb2_admin_init', array($this, 'register_settings_page')); |
|
58 | + add_action('lsx_hp_settings_page', array($this, 'generate_tabs'), 1, 1); |
|
59 | + |
|
60 | + add_action('lsx_hp_settings_page_general_top', array($this, 'general_settings'), 1, 1); |
|
61 | + add_action('lsx_hp_settings_page', array($this, 'global_defaults'), 3, 1); |
|
62 | + add_action('lsx_hp_settings_page', array($this, 'global_downloads'), 5, 1); |
|
63 | + add_action('lsx_hp_settings_page', array($this, 'stat_disable'), 6, 1); |
|
64 | + add_action('lsx_hp_settings_page', array($this, 'endpoint_translations'), 7, 1); |
|
65 | + add_action('lsx_hp_settings_page', array($this, 'exercise_translations'), 7, 1); |
|
66 | + add_action('lsx_hp_settings_page', array($this, 'post_type_toggles'), 9, 1); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public static function get_instance() { |
77 | 77 | // If the single instance hasn't been set, set it now. |
78 | - if ( null === self::$instance ) { |
|
78 | + if (null === self::$instance) { |
|
79 | 79 | self::$instance = new self(); |
80 | 80 | } |
81 | 81 | return self::$instance; |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | //'tip', |
96 | 96 | ); |
97 | 97 | |
98 | - foreach ( $this->post_types as $post_type ) { |
|
98 | + foreach ($this->post_types as $post_type) { |
|
99 | 99 | $this->$post_type = require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/settings/class-' . $post_type . '.php'; |
100 | 100 | } |
101 | 101 | } |
@@ -107,124 +107,124 @@ discard block |
||
107 | 107 | */ |
108 | 108 | public function set_vars() { |
109 | 109 | |
110 | - $this->default_types = array( |
|
110 | + $this->default_types = array( |
|
111 | 111 | 'page' => array( |
112 | - 'title' => __( 'Warm Up', 'lsx-health-plan' ), |
|
113 | - 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
112 | + 'title' => __('Warm Up', 'lsx-health-plan'), |
|
113 | + 'description' => __('Set a default warm up routine.', 'lsx-health-plan'), |
|
114 | 114 | 'limit' => 1, |
115 | 115 | 'id' => 'plan_warmup', |
116 | 116 | ), |
117 | 117 | ); |
118 | 118 | $this->download_types = array( |
119 | 119 | 'page' => array( |
120 | - 'title' => __( 'Warm Up', 'lsx-health-plan' ), |
|
121 | - 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
120 | + 'title' => __('Warm Up', 'lsx-health-plan'), |
|
121 | + 'description' => __('Set a default warm up routine.', 'lsx-health-plan'), |
|
122 | 122 | 'limit' => 1, |
123 | 123 | ), |
124 | 124 | ); |
125 | - $this->endpoints = array( |
|
125 | + $this->endpoints = array( |
|
126 | 126 | 'endpoint_warm_up' => array( |
127 | - 'title' => __( 'Warm Up Endpoint', 'lsx-health-plan' ), |
|
127 | + 'title' => __('Warm Up Endpoint', 'lsx-health-plan'), |
|
128 | 128 | 'default' => 'warm-up', |
129 | 129 | ), |
130 | 130 | ); |
131 | 131 | |
132 | - if ( post_type_exists( 'meal' ) ) { |
|
133 | - $this->download_types['meal'] = array( |
|
134 | - 'title' => __( 'Meal Plan', 'lsx-health-plan' ), |
|
135 | - 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
132 | + if (post_type_exists('meal')) { |
|
133 | + $this->download_types['meal'] = array( |
|
134 | + 'title' => __('Meal Plan', 'lsx-health-plan'), |
|
135 | + 'description' => __('Set a default meal plan.', 'lsx-health-plan'), |
|
136 | 136 | ); |
137 | - $this->default_types['meal'] = array( |
|
138 | - 'title' => __( 'Meal Plan', 'lsx-health-plan' ), |
|
139 | - 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
137 | + $this->default_types['meal'] = array( |
|
138 | + 'title' => __('Meal Plan', 'lsx-health-plan'), |
|
139 | + 'description' => __('Set a default meal plan.', 'lsx-health-plan'), |
|
140 | 140 | 'id' => 'connected_meals', |
141 | 141 | ); |
142 | 142 | $this->endpoints['endpoint_meal'] = array( |
143 | - 'title' => __( 'Meal Endpoint', 'lsx-health-plan' ), |
|
143 | + 'title' => __('Meal Endpoint', 'lsx-health-plan'), |
|
144 | 144 | 'default' => 'meal', |
145 | - 'description' => __( 'Define the tab slug which shows on the single plan page.', 'lsx-health-plan' ), |
|
145 | + 'description' => __('Define the tab slug which shows on the single plan page.', 'lsx-health-plan'), |
|
146 | 146 | ); |
147 | 147 | $this->endpoints['endpoint_meal_archive'] = array( |
148 | - 'title' => __( 'Meals Archive Endpoint', 'lsx-health-plan' ), |
|
148 | + 'title' => __('Meals Archive Endpoint', 'lsx-health-plan'), |
|
149 | 149 | 'default' => 'meals', |
150 | 150 | ); |
151 | 151 | $this->endpoints['meal_single_slug'] = array( |
152 | - 'title' => __( 'Single Meal Slug', 'lsx-health-plan' ), |
|
152 | + 'title' => __('Single Meal Slug', 'lsx-health-plan'), |
|
153 | 153 | 'default' => 'meal', |
154 | 154 | ); |
155 | 155 | } |
156 | - if ( post_type_exists( 'recipe' ) ) { |
|
156 | + if (post_type_exists('recipe')) { |
|
157 | 157 | $this->download_types['recipe'] = array( |
158 | - 'title' => __( 'Recipe', 'lsx-health-plan' ), |
|
159 | - 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
158 | + 'title' => __('Recipe', 'lsx-health-plan'), |
|
159 | + 'description' => __('Set a default recipe.', 'lsx-health-plan'), |
|
160 | 160 | ); |
161 | 161 | $this->default_types['recipe'] = array( |
162 | - 'title' => __( 'Recipe', 'lsx-health-plan' ), |
|
163 | - 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
162 | + 'title' => __('Recipe', 'lsx-health-plan'), |
|
163 | + 'description' => __('Set a default recipe.', 'lsx-health-plan'), |
|
164 | 164 | 'id' => 'connected_recipes', |
165 | 165 | ); |
166 | 166 | $this->endpoints['endpoint_recipe'] = array( |
167 | - 'title' => __( 'Recipes Endpoint', 'lsx-health-plan' ), |
|
167 | + 'title' => __('Recipes Endpoint', 'lsx-health-plan'), |
|
168 | 168 | 'default' => 'recipe', |
169 | 169 | ); |
170 | 170 | } |
171 | - if ( post_type_exists( 'workout' ) ) { |
|
171 | + if (post_type_exists('workout')) { |
|
172 | 172 | $this->download_types['workout'] = array( |
173 | - 'title' => __( 'Workout', 'lsx-health-plan' ), |
|
174 | - 'description' => __( 'Set a default workout routine PDF.', 'lsx-health-plan' ), |
|
173 | + 'title' => __('Workout', 'lsx-health-plan'), |
|
174 | + 'description' => __('Set a default workout routine PDF.', 'lsx-health-plan'), |
|
175 | 175 | ); |
176 | 176 | $this->default_types['workout'] = array( |
177 | - 'title' => __( 'Workout', 'lsx-health-plan' ), |
|
178 | - 'description' => __( 'Set a default workout routine.', 'lsx-health-plan' ), |
|
177 | + 'title' => __('Workout', 'lsx-health-plan'), |
|
178 | + 'description' => __('Set a default workout routine.', 'lsx-health-plan'), |
|
179 | 179 | 'id' => 'connected_workouts', |
180 | 180 | ); |
181 | 181 | $this->endpoints['endpoint_workout_archive'] = array( |
182 | - 'title' => __( 'Workouts Archive Endpoint', 'lsx-health-plan' ), |
|
182 | + 'title' => __('Workouts Archive Endpoint', 'lsx-health-plan'), |
|
183 | 183 | 'default' => '', |
184 | 184 | ); |
185 | 185 | $this->endpoints['endpoint_workout'] = array( |
186 | - 'title' => __( 'Single Workout Endpoint', 'lsx-health-plan' ), |
|
186 | + 'title' => __('Single Workout Endpoint', 'lsx-health-plan'), |
|
187 | 187 | 'default' => 'workout', |
188 | 188 | ); |
189 | 189 | } |
190 | 190 | |
191 | 191 | $this->endpoints['login_slug'] = array( |
192 | - 'title' => __( 'Login Slug', 'lsx-health-plan' ), |
|
192 | + 'title' => __('Login Slug', 'lsx-health-plan'), |
|
193 | 193 | 'default' => 'login', |
194 | 194 | ); |
195 | 195 | $this->endpoints['my_plan_slug'] = array( |
196 | - 'title' => __( 'My Plan Slug', 'lsx-health-plan' ), |
|
196 | + 'title' => __('My Plan Slug', 'lsx-health-plan'), |
|
197 | 197 | 'default' => 'my-plan', |
198 | 198 | ); |
199 | 199 | $this->endpoints['plan_single_slug'] = array( |
200 | - 'title' => __( 'Single Plan Slug', 'lsx-health-plan' ), |
|
200 | + 'title' => __('Single Plan Slug', 'lsx-health-plan'), |
|
201 | 201 | 'default' => 'plan', |
202 | 202 | ); |
203 | 203 | $this->endpoints['endpoint_plan_archive'] = array( |
204 | - 'title' => __( 'Plans Archive Endpoint', 'lsx-health-plan' ), |
|
204 | + 'title' => __('Plans Archive Endpoint', 'lsx-health-plan'), |
|
205 | 205 | 'default' => 'plans', |
206 | 206 | ); |
207 | 207 | |
208 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
208 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
209 | 209 | $this->endpoints['exercise'] = array( |
210 | 210 | 'exercise_single' => array( |
211 | - 'title' => __( 'Single Exercise Slug', 'lsx-health-plan' ), |
|
211 | + 'title' => __('Single Exercise Slug', 'lsx-health-plan'), |
|
212 | 212 | 'default' => 'exercise', |
213 | 213 | ), |
214 | 214 | 'exercise_archive' => array( |
215 | - 'title' => __( 'Archive Exercise Slug', 'lsx-health-plan' ), |
|
215 | + 'title' => __('Archive Exercise Slug', 'lsx-health-plan'), |
|
216 | 216 | 'default' => 'exercises', |
217 | 217 | ), |
218 | 218 | 'exercise_type' => array( |
219 | - 'title' => __( 'Exercise Type Slug', 'lsx-health-plan' ), |
|
219 | + 'title' => __('Exercise Type Slug', 'lsx-health-plan'), |
|
220 | 220 | 'default' => 'exercise-type', |
221 | 221 | ), |
222 | 222 | 'exercise_equipment' => array( |
223 | - 'title' => __( 'Equipment Slug', 'lsx-health-plan' ), |
|
223 | + 'title' => __('Equipment Slug', 'lsx-health-plan'), |
|
224 | 224 | 'default' => 'equipment', |
225 | 225 | ), |
226 | 226 | 'exercise_musclegroup' => array( |
227 | - 'title' => __( 'Muscle Group Slug', 'lsx-health-plan' ), |
|
227 | + 'title' => __('Muscle Group Slug', 'lsx-health-plan'), |
|
228 | 228 | 'default' => 'muscle-group', |
229 | 229 | ), |
230 | 230 | ); |
@@ -239,14 +239,14 @@ discard block |
||
239 | 239 | $cmb = new_cmb2_box( |
240 | 240 | array( |
241 | 241 | 'id' => $this->screen_id, |
242 | - 'title' => esc_html__( 'Settings', 'lsx-health-plan' ), |
|
243 | - 'object_types' => array( 'options-page' ), |
|
242 | + 'title' => esc_html__('Settings', 'lsx-health-plan'), |
|
243 | + 'object_types' => array('options-page'), |
|
244 | 244 | 'option_key' => 'lsx_health_plan_options', // The option key and admin menu page slug. |
245 | 245 | 'parent_slug' => 'edit.php?post_type=plan', // Make options page a submenu item of the themes menu. |
246 | 246 | 'capability' => 'manage_options', // Cap required to view options-page. |
247 | 247 | ) |
248 | 248 | ); |
249 | - do_action( 'lsx_hp_settings_page', $cmb ); |
|
249 | + do_action('lsx_hp_settings_page', $cmb); |
|
250 | 250 | } |
251 | 251 | |
252 | 252 | /** |
@@ -255,17 +255,17 @@ discard block |
||
255 | 255 | * @param object $cmb new_cmb2_box(). |
256 | 256 | * @return void |
257 | 257 | */ |
258 | - public function general_settings( $cmb ) { |
|
258 | + public function general_settings($cmb) { |
|
259 | 259 | $cmb->add_field( |
260 | 260 | array( |
261 | - 'name' => __( 'Membership Product', 'lsx-health-plan' ), |
|
261 | + 'name' => __('Membership Product', 'lsx-health-plan'), |
|
262 | 262 | 'id' => 'membership_product', |
263 | 263 | 'type' => 'post_search_ajax', |
264 | 264 | 'limit' => 1, |
265 | 265 | 'sortable' => false, |
266 | 266 | 'query_args' => array( |
267 | - 'post_type' => array( 'product' ), |
|
268 | - 'post_status' => array( 'publish' ), |
|
267 | + 'post_type' => array('product'), |
|
268 | + 'post_status' => array('publish'), |
|
269 | 269 | 'posts_per_page' => -1, |
270 | 270 | ), |
271 | 271 | ) |
@@ -273,43 +273,43 @@ discard block |
||
273 | 273 | |
274 | 274 | $cmb->add_field( |
275 | 275 | array( |
276 | - 'name' => __( 'Your Warm-up Intro', 'lsx-health-plan' ), |
|
276 | + 'name' => __('Your Warm-up Intro', 'lsx-health-plan'), |
|
277 | 277 | 'id' => 'warmup_intro', |
278 | 278 | 'type' => 'textarea_small', |
279 | 279 | 'value' => '', |
280 | - 'default' => __( "Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan' ), |
|
280 | + 'default' => __("Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan'), |
|
281 | 281 | ) |
282 | 282 | ); |
283 | - if ( post_type_exists( 'workout' ) ) { |
|
283 | + if (post_type_exists('workout')) { |
|
284 | 284 | $cmb->add_field( |
285 | 285 | array( |
286 | - 'name' => __( 'Your Workout Intro', 'lsx-health-plan' ), |
|
286 | + 'name' => __('Your Workout Intro', 'lsx-health-plan'), |
|
287 | 287 | 'id' => 'workout_intro', |
288 | 288 | 'type' => 'textarea_small', |
289 | 289 | 'value' => '', |
290 | - 'default' => __( "Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan' ), |
|
290 | + 'default' => __("Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan'), |
|
291 | 291 | ) |
292 | 292 | ); |
293 | 293 | } |
294 | - if ( post_type_exists( 'meal' ) ) { |
|
294 | + if (post_type_exists('meal')) { |
|
295 | 295 | $cmb->add_field( |
296 | 296 | array( |
297 | - 'name' => __( 'Your Meal Plan Intro', 'lsx-health-plan' ), |
|
297 | + 'name' => __('Your Meal Plan Intro', 'lsx-health-plan'), |
|
298 | 298 | 'id' => 'meal_plan_intro', |
299 | 299 | 'type' => 'textarea_small', |
300 | 300 | 'value' => '', |
301 | - 'default' => __( 'Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan' ), |
|
301 | + 'default' => __('Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan'), |
|
302 | 302 | ) |
303 | 303 | ); |
304 | 304 | } |
305 | - if ( post_type_exists( 'recipe' ) ) { |
|
305 | + if (post_type_exists('recipe')) { |
|
306 | 306 | $cmb->add_field( |
307 | 307 | array( |
308 | - 'name' => __( 'Recipes Intro', 'lsx-health-plan' ), |
|
308 | + 'name' => __('Recipes Intro', 'lsx-health-plan'), |
|
309 | 309 | 'id' => 'recipes_intro', |
310 | 310 | 'type' => 'textarea_small', |
311 | 311 | 'value' => '', |
312 | - 'default' => __( "Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan' ), |
|
312 | + 'default' => __("Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan'), |
|
313 | 313 | ) |
314 | 314 | ); |
315 | 315 | } |
@@ -321,27 +321,27 @@ discard block |
||
321 | 321 | * @param object $cmb new_cmb2_box(). |
322 | 322 | * @return void |
323 | 323 | */ |
324 | - public function global_defaults( $cmb ) { |
|
324 | + public function global_defaults($cmb) { |
|
325 | 325 | $cmb->add_field( |
326 | 326 | array( |
327 | 327 | 'id' => 'global_defaults_title', |
328 | 328 | 'type' => 'title', |
329 | - 'name' => __( 'Global Defaults', 'lsx-health-plan' ), |
|
330 | - 'default' => __( 'Global Defaults', 'lsx-health-plan' ), |
|
331 | - 'description' => __( 'If you have not connected a specific post to your day plan, set a default option below.', 'lsx-health-plan' ), |
|
329 | + 'name' => __('Global Defaults', 'lsx-health-plan'), |
|
330 | + 'default' => __('Global Defaults', 'lsx-health-plan'), |
|
331 | + 'description' => __('If you have not connected a specific post to your day plan, set a default option below.', 'lsx-health-plan'), |
|
332 | 332 | ) |
333 | 333 | ); |
334 | 334 | |
335 | - foreach ( $this->default_types as $type => $default_type ) { |
|
335 | + foreach ($this->default_types as $type => $default_type) { |
|
336 | 336 | $limit = 5; |
337 | 337 | $sortable = false; |
338 | - if ( isset( $default_type['limit'] ) ) { |
|
338 | + if (isset($default_type['limit'])) { |
|
339 | 339 | $limit = $default_type['limit']; |
340 | 340 | $sortable = true; |
341 | 341 | } |
342 | 342 | |
343 | - if ( 'page' === $type && false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
344 | - $type = array( 'page', 'workout' ); |
|
343 | + if ('page' === $type && false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
344 | + $type = array('page', 'workout'); |
|
345 | 345 | } |
346 | 346 | |
347 | 347 | $cmb->add_field( |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | 'sortable' => $sortable, |
355 | 355 | 'query_args' => array( |
356 | 356 | 'post_type' => $type, |
357 | - 'post_status' => array( 'publish' ), |
|
357 | + 'post_status' => array('publish'), |
|
358 | 358 | 'posts_per_page' => -1, |
359 | 359 | ), |
360 | 360 | ) |
@@ -375,21 +375,21 @@ discard block |
||
375 | 375 | * @param object $cmb new_cmb2_box(). |
376 | 376 | * @return void |
377 | 377 | */ |
378 | - public function global_downloads( $cmb ) { |
|
378 | + public function global_downloads($cmb) { |
|
379 | 379 | $cmb->add_field( |
380 | 380 | array( |
381 | 381 | 'id' => 'global_downloads_title', |
382 | 382 | 'type' => 'title', |
383 | - 'name' => __( 'Global Downloads', 'lsx-health-plan' ), |
|
384 | - 'default' => __( 'Global Downloads', 'lsx-health-plan' ), |
|
385 | - 'description' => __( 'If you have not connected a specific download file to your plans, set a default option below', 'lsx-health-plan' ), |
|
383 | + 'name' => __('Global Downloads', 'lsx-health-plan'), |
|
384 | + 'default' => __('Global Downloads', 'lsx-health-plan'), |
|
385 | + 'description' => __('If you have not connected a specific download file to your plans, set a default option below', 'lsx-health-plan'), |
|
386 | 386 | ) |
387 | 387 | ); |
388 | 388 | |
389 | - foreach ( $this->download_types as $type => $download_type ) { |
|
389 | + foreach ($this->download_types as $type => $download_type) { |
|
390 | 390 | $limit = 5; |
391 | 391 | $sortable = false; |
392 | - if ( isset( $download_type['limit'] ) ) { |
|
392 | + if (isset($download_type['limit'])) { |
|
393 | 393 | $limit = $download_type['limit']; |
394 | 394 | $sortable = true; |
395 | 395 | } |
@@ -402,8 +402,8 @@ discard block |
||
402 | 402 | 'limit' => $limit, |
403 | 403 | 'sortable' => $sortable, |
404 | 404 | 'query_args' => array( |
405 | - 'post_type' => array( 'dlm_download' ), |
|
406 | - 'post_status' => array( 'publish' ), |
|
405 | + 'post_type' => array('dlm_download'), |
|
406 | + 'post_status' => array('publish'), |
|
407 | 407 | 'posts_per_page' => -1, |
408 | 408 | ), |
409 | 409 | ) |
@@ -423,17 +423,17 @@ discard block |
||
423 | 423 | * @param object $cmb new_cmb2_box(). |
424 | 424 | * @return void |
425 | 425 | */ |
426 | - public function endpoint_translations( $cmb ) { |
|
426 | + public function endpoint_translations($cmb) { |
|
427 | 427 | $cmb->add_field( |
428 | 428 | array( |
429 | 429 | 'id' => 'endpoints_title', |
430 | 430 | 'type' => 'title', |
431 | - 'name' => __( 'Set Endpoint Translations', 'lsx-health-plan' ), |
|
432 | - 'default' => __( 'Set Endpoint Translations', 'lsx-health-plan' ), |
|
431 | + 'name' => __('Set Endpoint Translations', 'lsx-health-plan'), |
|
432 | + 'default' => __('Set Endpoint Translations', 'lsx-health-plan'), |
|
433 | 433 | ) |
434 | 434 | ); |
435 | - foreach ( $this->endpoints as $slug => $endpoint_vars ) { |
|
436 | - if ( 'exercise' === $slug ) { |
|
435 | + foreach ($this->endpoints as $slug => $endpoint_vars) { |
|
436 | + if ('exercise' === $slug) { |
|
437 | 437 | continue; |
438 | 438 | } |
439 | 439 | |
@@ -462,19 +462,19 @@ discard block |
||
462 | 462 | * @param object $cmb new_cmb2_box(). |
463 | 463 | * @return void |
464 | 464 | */ |
465 | - public function exercise_translations( $cmb ) { |
|
466 | - if ( isset( $this->endpoints['exercise'] ) && '' !== $this->endpoints['exercise'] && ! empty( $this->endpoints['exercise'] ) ) { |
|
465 | + public function exercise_translations($cmb) { |
|
466 | + if (isset($this->endpoints['exercise']) && '' !== $this->endpoints['exercise'] && ! empty($this->endpoints['exercise'])) { |
|
467 | 467 | $cmb->add_field( |
468 | 468 | array( |
469 | 469 | 'id' => 'exercise_endpoints_title', |
470 | 470 | 'type' => 'title', |
471 | - 'name' => __( 'Set Exercise Translations', 'lsx-health-plan' ), |
|
472 | - 'default' => __( 'Set Exercise Translations', 'lsx-health-plan' ), |
|
473 | - 'description' => __( 'Change the exercise endpoints.', 'lsx-health-plan' ), |
|
471 | + 'name' => __('Set Exercise Translations', 'lsx-health-plan'), |
|
472 | + 'default' => __('Set Exercise Translations', 'lsx-health-plan'), |
|
473 | + 'description' => __('Change the exercise endpoints.', 'lsx-health-plan'), |
|
474 | 474 | ) |
475 | 475 | ); |
476 | 476 | |
477 | - foreach ( $this->endpoints['exercise'] as $slug => $endpoint_vars ) { |
|
477 | + foreach ($this->endpoints['exercise'] as $slug => $endpoint_vars) { |
|
478 | 478 | $cmb->add_field( |
479 | 479 | array( |
480 | 480 | 'name' => $endpoint_vars['title'], |
@@ -502,27 +502,27 @@ discard block |
||
502 | 502 | * @param object $cmb new_cmb2_box(). |
503 | 503 | * @return void |
504 | 504 | */ |
505 | - public function post_type_toggles( $cmb ) { |
|
506 | - $post_types = apply_filters( 'lsx_health_plan_post_types', isset( $this->post_types ) ); |
|
505 | + public function post_type_toggles($cmb) { |
|
506 | + $post_types = apply_filters('lsx_health_plan_post_types', isset($this->post_types)); |
|
507 | 507 | |
508 | 508 | $cmb->add_field( |
509 | 509 | array( |
510 | 510 | 'id' => 'post_type_toggles_title', |
511 | 511 | 'type' => 'title', |
512 | - 'name' => __( 'Disable Post Types', 'lsx-health-plan' ), |
|
513 | - 'default' => __( 'Disable Post Types', 'lsx-health-plan' ), |
|
514 | - 'description' => __( 'Disable post types if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
512 | + 'name' => __('Disable Post Types', 'lsx-health-plan'), |
|
513 | + 'default' => __('Disable Post Types', 'lsx-health-plan'), |
|
514 | + 'description' => __('Disable post types if you are wanting a minimal site.', 'lsx-health-plan'), |
|
515 | 515 | ) |
516 | 516 | ); |
517 | 517 | |
518 | - foreach ( $post_types as $post_type ) { |
|
519 | - if ( 'plan' === $post_type || 'exercise' === $post_type || ( 'video' === $post_type && false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) ) { |
|
518 | + foreach ($post_types as $post_type) { |
|
519 | + if ('plan' === $post_type || 'exercise' === $post_type || ('video' === $post_type && false !== \lsx_health_plan\functions\get_option('exercise_enabled', false))) { |
|
520 | 520 | continue; |
521 | 521 | } |
522 | 522 | |
523 | 523 | $cmb->add_field( |
524 | 524 | array( |
525 | - 'name' => ucwords( $post_type ), |
|
525 | + 'name' => ucwords($post_type), |
|
526 | 526 | 'id' => $post_type . '_disabled', |
527 | 527 | 'type' => 'checkbox', |
528 | 528 | 'value' => 1, |
@@ -542,19 +542,19 @@ discard block |
||
542 | 542 | array( |
543 | 543 | 'id' => 'post_type_toggles_enable_title', |
544 | 544 | 'type' => 'title', |
545 | - 'name' => __( 'Enable Post Types', 'lsx-health-plan' ), |
|
546 | - 'default' => __( 'Enable Post Types', 'lsx-health-plan' ), |
|
547 | - 'description' => __( 'Enable new functionality like the "exercise" post type.', 'lsx-health-plan' ), |
|
545 | + 'name' => __('Enable Post Types', 'lsx-health-plan'), |
|
546 | + 'default' => __('Enable Post Types', 'lsx-health-plan'), |
|
547 | + 'description' => __('Enable new functionality like the "exercise" post type.', 'lsx-health-plan'), |
|
548 | 548 | ) |
549 | 549 | ); |
550 | 550 | $cmb->add_field( |
551 | 551 | array( |
552 | - 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
552 | + 'name' => __('Exercises', 'lsx-health-plan'), |
|
553 | 553 | 'id' => 'exercise_enabled', |
554 | 554 | 'type' => 'checkbox', |
555 | 555 | 'value' => 1, |
556 | 556 | 'default' => 0, |
557 | - 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
557 | + 'description' => __('Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan'), |
|
558 | 558 | ) |
559 | 559 | ); |
560 | 560 | $cmb->add_field( |
@@ -571,18 +571,18 @@ discard block |
||
571 | 571 | * @return void |
572 | 572 | */ |
573 | 573 | |
574 | - public function stat_disable( $cmb ) { |
|
574 | + public function stat_disable($cmb) { |
|
575 | 575 | $cmb->add_field( |
576 | 576 | array( |
577 | 577 | 'id' => 'stat_disable_title', |
578 | 578 | 'type' => 'title', |
579 | - 'name' => __( 'Disable Profile Stats', 'lsx-health-plan' ), |
|
580 | - 'default' => __( 'Disable Profile Stats', 'lsx-health-plan' ), |
|
579 | + 'name' => __('Disable Profile Stats', 'lsx-health-plan'), |
|
580 | + 'default' => __('Disable Profile Stats', 'lsx-health-plan'), |
|
581 | 581 | ) |
582 | 582 | ); |
583 | 583 | $cmb->add_field( |
584 | 584 | array( |
585 | - 'name' => __( 'Disable All Stats', 'lsx-health-plan' ), |
|
585 | + 'name' => __('Disable All Stats', 'lsx-health-plan'), |
|
586 | 586 | 'desc' => 'Disable All Stats', |
587 | 587 | 'id' => 'disable_all_stats', |
588 | 588 | 'type' => 'checkbox', |
@@ -592,7 +592,7 @@ discard block |
||
592 | 592 | ); |
593 | 593 | $cmb->add_field( |
594 | 594 | array( |
595 | - 'name' => __( 'Disable Weight', 'lsx-health-plan' ), |
|
595 | + 'name' => __('Disable Weight', 'lsx-health-plan'), |
|
596 | 596 | 'id' => 'disable_weight_checkbox', |
597 | 597 | 'type' => 'checkbox', |
598 | 598 | 'value' => 1, |
@@ -601,7 +601,7 @@ discard block |
||
601 | 601 | ); |
602 | 602 | $cmb->add_field( |
603 | 603 | array( |
604 | - 'name' => __( 'Disable Height', 'lsx-health-plan' ), |
|
604 | + 'name' => __('Disable Height', 'lsx-health-plan'), |
|
605 | 605 | 'id' => 'disable_height_checkbox', |
606 | 606 | 'type' => 'checkbox', |
607 | 607 | 'value' => 1, |
@@ -610,7 +610,7 @@ discard block |
||
610 | 610 | ); |
611 | 611 | $cmb->add_field( |
612 | 612 | array( |
613 | - 'name' => __( 'Disable Waist', 'lsx-health-plan' ), |
|
613 | + 'name' => __('Disable Waist', 'lsx-health-plan'), |
|
614 | 614 | 'id' => 'disable_waist_checkbox', |
615 | 615 | 'type' => 'checkbox', |
616 | 616 | 'value' => 1, |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | ); |
620 | 620 | $cmb->add_field( |
621 | 621 | array( |
622 | - 'name' => __( 'Disable BMI', 'lsx-health-plan' ), |
|
622 | + 'name' => __('Disable BMI', 'lsx-health-plan'), |
|
623 | 623 | 'id' => 'disable_bmi_checkbox', |
624 | 624 | 'type' => 'checkbox', |
625 | 625 | 'value' => 1, |
@@ -641,10 +641,10 @@ discard block |
||
641 | 641 | * @param string $section either engine,archive or single. |
642 | 642 | * @return void |
643 | 643 | */ |
644 | - public function generate_tabs( $cmb ) { |
|
644 | + public function generate_tabs($cmb) { |
|
645 | 645 | $tabs = $this->get_settings_tabs(); |
646 | 646 | |
647 | - foreach ( $tabs as $tab_key => $tab ) { |
|
647 | + foreach ($tabs as $tab_key => $tab) { |
|
648 | 648 | $cmb->add_field( |
649 | 649 | array( |
650 | 650 | 'id' => 'settings_' . $tab_key . '_title', |
@@ -654,11 +654,11 @@ discard block |
||
654 | 654 | 'description' => $tab['desc'], |
655 | 655 | ) |
656 | 656 | ); |
657 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_top', $cmb ); |
|
657 | + do_action('lsx_hp_settings_page_' . $tab_key . '_top', $cmb); |
|
658 | 658 | |
659 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_middle', $cmb ); |
|
659 | + do_action('lsx_hp_settings_page_' . $tab_key . '_middle', $cmb); |
|
660 | 660 | |
661 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb ); |
|
661 | + do_action('lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb); |
|
662 | 662 | |
663 | 663 | $cmb->add_field( |
664 | 664 | array( |
@@ -678,26 +678,26 @@ discard block |
||
678 | 678 | public function get_settings_tabs() { |
679 | 679 | $tabs = array( |
680 | 680 | 'general' => array( |
681 | - 'title' => __( 'General', 'lsx-health-plan' ), |
|
682 | - 'desc' => __( 'Control the sitewide settings for the LSX HP site.', 'lsx-health-plan' ), |
|
681 | + 'title' => __('General', 'lsx-health-plan'), |
|
682 | + 'desc' => __('Control the sitewide settings for the LSX HP site.', 'lsx-health-plan'), |
|
683 | 683 | ), |
684 | 684 | ); |
685 | 685 | |
686 | - foreach ( $this->post_types as $post_type ) { |
|
687 | - switch ( $post_type ) { |
|
686 | + foreach ($this->post_types as $post_type) { |
|
687 | + switch ($post_type) { |
|
688 | 688 | default: |
689 | 689 | //if ( ! in_array( $post_type, \lsx\search\includes\get_restricted_post_types() ) ) { |
690 | - $temp_post_type = get_post_type_object( $post_type ); |
|
691 | - if ( ! is_wp_error( $temp_post_type ) ) { |
|
692 | - $page_url = get_post_type_archive_link( $temp_post_type->name ); |
|
690 | + $temp_post_type = get_post_type_object($post_type); |
|
691 | + if ( ! is_wp_error($temp_post_type)) { |
|
692 | + $page_url = get_post_type_archive_link($temp_post_type->name); |
|
693 | 693 | $description = sprintf( |
694 | 694 | /* translators: %s: The subscription info */ |
695 | - __( 'Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search' ), |
|
695 | + __('Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search'), |
|
696 | 696 | $page_url, |
697 | 697 | $temp_post_type->label |
698 | 698 | ); |
699 | 699 | |
700 | - $tabs[ $post_type ] = array( |
|
700 | + $tabs[$post_type] = array( |
|
701 | 701 | 'title' => $temp_post_type->label, |
702 | 702 | 'desc' => $description, |
703 | 703 | ); |
@@ -12,700 +12,700 @@ |
||
12 | 12 | */ |
13 | 13 | class Settings { |
14 | 14 | |
15 | - /** |
|
16 | - * Holds class instance |
|
17 | - * |
|
18 | - * @since 1.0.0 |
|
19 | - * |
|
20 | - * @var object \lsx_health_plan\classes\admin\Settings() |
|
21 | - */ |
|
22 | - protected static $instance = null; |
|
23 | - |
|
24 | - /** |
|
25 | - * Option key, and option page slug |
|
26 | - * |
|
27 | - * @var string |
|
28 | - */ |
|
29 | - protected $screen_id = 'lsx_health_plan_settings'; |
|
30 | - |
|
31 | - /** |
|
32 | - * An array of the post types for the Global Downloads field. |
|
33 | - * |
|
34 | - * @var array |
|
35 | - */ |
|
36 | - public $download_types = array(); |
|
37 | - |
|
38 | - /** |
|
39 | - * An array of the post types for the Global Defaults field. |
|
40 | - * |
|
41 | - * @var array |
|
42 | - */ |
|
43 | - public $default_types = array(); |
|
44 | - |
|
45 | - /** |
|
46 | - * An array of the endpoints for the Endpoint Translation field. |
|
47 | - * |
|
48 | - * @var array |
|
49 | - */ |
|
50 | - public $endpoints = array(); |
|
51 | - |
|
52 | - /** |
|
53 | - * Constructor |
|
54 | - */ |
|
55 | - public function __construct() { |
|
56 | - $this->load_classes(); |
|
57 | - add_action( 'cmb2_admin_init', array( $this, 'register_settings_page' ) ); |
|
58 | - add_action( 'lsx_hp_settings_page', array( $this, 'generate_tabs' ), 1, 1 ); |
|
59 | - |
|
60 | - add_action( 'lsx_hp_settings_page_general_top', array( $this, 'general_settings' ), 1, 1 ); |
|
61 | - add_action( 'lsx_hp_settings_page', array( $this, 'global_defaults' ), 3, 1 ); |
|
62 | - add_action( 'lsx_hp_settings_page', array( $this, 'global_downloads' ), 5, 1 ); |
|
63 | - add_action( 'lsx_hp_settings_page', array( $this, 'stat_disable' ), 6, 1 ); |
|
64 | - add_action( 'lsx_hp_settings_page', array( $this, 'endpoint_translations' ), 7, 1 ); |
|
65 | - add_action( 'lsx_hp_settings_page', array( $this, 'exercise_translations' ), 7, 1 ); |
|
66 | - add_action( 'lsx_hp_settings_page', array( $this, 'post_type_toggles' ), 9, 1 ); |
|
67 | - } |
|
68 | - |
|
69 | - /** |
|
70 | - * Return an instance of this class. |
|
71 | - * |
|
72 | - * @since 1.0.0 |
|
73 | - * |
|
74 | - * @return object \lsx_health_plan\classes\admin\Settings() A single instance of this class. |
|
75 | - */ |
|
76 | - public static function get_instance() { |
|
77 | - // If the single instance hasn't been set, set it now. |
|
78 | - if ( null === self::$instance ) { |
|
79 | - self::$instance = new self(); |
|
80 | - } |
|
81 | - return self::$instance; |
|
82 | - } |
|
83 | - |
|
84 | - /** |
|
85 | - * Loads the variable classes and the static classes. |
|
86 | - */ |
|
87 | - private function load_classes() { |
|
88 | - |
|
89 | - $this->post_types = array( |
|
90 | - 'plan', |
|
91 | - 'workout', |
|
92 | - 'exercise', |
|
93 | - //'meal', |
|
94 | - 'recipe', |
|
95 | - //'tip', |
|
96 | - ); |
|
97 | - |
|
98 | - foreach ( $this->post_types as $post_type ) { |
|
99 | - $this->$post_type = require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/settings/class-' . $post_type . '.php'; |
|
100 | - } |
|
101 | - } |
|
102 | - |
|
103 | - /** |
|
104 | - * Sets the variables needed for the fields. |
|
105 | - * |
|
106 | - * @return void |
|
107 | - */ |
|
108 | - public function set_vars() { |
|
109 | - |
|
110 | - $this->default_types = array( |
|
111 | - 'page' => array( |
|
112 | - 'title' => __( 'Warm Up', 'lsx-health-plan' ), |
|
113 | - 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
114 | - 'limit' => 1, |
|
115 | - 'id' => 'plan_warmup', |
|
116 | - ), |
|
117 | - ); |
|
118 | - $this->download_types = array( |
|
119 | - 'page' => array( |
|
120 | - 'title' => __( 'Warm Up', 'lsx-health-plan' ), |
|
121 | - 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
122 | - 'limit' => 1, |
|
123 | - ), |
|
124 | - ); |
|
125 | - $this->endpoints = array( |
|
126 | - 'endpoint_warm_up' => array( |
|
127 | - 'title' => __( 'Warm Up Endpoint', 'lsx-health-plan' ), |
|
128 | - 'default' => 'warm-up', |
|
129 | - ), |
|
130 | - ); |
|
131 | - |
|
132 | - if ( post_type_exists( 'meal' ) ) { |
|
133 | - $this->download_types['meal'] = array( |
|
134 | - 'title' => __( 'Meal Plan', 'lsx-health-plan' ), |
|
135 | - 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
136 | - ); |
|
137 | - $this->default_types['meal'] = array( |
|
138 | - 'title' => __( 'Meal Plan', 'lsx-health-plan' ), |
|
139 | - 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
140 | - 'id' => 'connected_meals', |
|
141 | - ); |
|
142 | - $this->endpoints['endpoint_meal'] = array( |
|
143 | - 'title' => __( 'Meal Endpoint', 'lsx-health-plan' ), |
|
144 | - 'default' => 'meal', |
|
145 | - 'description' => __( 'Define the tab slug which shows on the single plan page.', 'lsx-health-plan' ), |
|
146 | - ); |
|
147 | - $this->endpoints['endpoint_meal_archive'] = array( |
|
148 | - 'title' => __( 'Meals Archive Endpoint', 'lsx-health-plan' ), |
|
149 | - 'default' => 'meals', |
|
150 | - ); |
|
151 | - $this->endpoints['meal_single_slug'] = array( |
|
152 | - 'title' => __( 'Single Meal Slug', 'lsx-health-plan' ), |
|
153 | - 'default' => 'meal', |
|
154 | - ); |
|
155 | - } |
|
156 | - if ( post_type_exists( 'recipe' ) ) { |
|
157 | - $this->download_types['recipe'] = array( |
|
158 | - 'title' => __( 'Recipe', 'lsx-health-plan' ), |
|
159 | - 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
160 | - ); |
|
161 | - $this->default_types['recipe'] = array( |
|
162 | - 'title' => __( 'Recipe', 'lsx-health-plan' ), |
|
163 | - 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
164 | - 'id' => 'connected_recipes', |
|
165 | - ); |
|
166 | - $this->endpoints['endpoint_recipe'] = array( |
|
167 | - 'title' => __( 'Recipes Endpoint', 'lsx-health-plan' ), |
|
168 | - 'default' => 'recipe', |
|
169 | - ); |
|
170 | - } |
|
171 | - if ( post_type_exists( 'workout' ) ) { |
|
172 | - $this->download_types['workout'] = array( |
|
173 | - 'title' => __( 'Workout', 'lsx-health-plan' ), |
|
174 | - 'description' => __( 'Set a default workout routine PDF.', 'lsx-health-plan' ), |
|
175 | - ); |
|
176 | - $this->default_types['workout'] = array( |
|
177 | - 'title' => __( 'Workout', 'lsx-health-plan' ), |
|
178 | - 'description' => __( 'Set a default workout routine.', 'lsx-health-plan' ), |
|
179 | - 'id' => 'connected_workouts', |
|
180 | - ); |
|
181 | - $this->endpoints['endpoint_workout_archive'] = array( |
|
182 | - 'title' => __( 'Workouts Archive Endpoint', 'lsx-health-plan' ), |
|
183 | - 'default' => '', |
|
184 | - ); |
|
185 | - $this->endpoints['endpoint_workout'] = array( |
|
186 | - 'title' => __( 'Single Workout Endpoint', 'lsx-health-plan' ), |
|
187 | - 'default' => 'workout', |
|
188 | - ); |
|
189 | - } |
|
190 | - |
|
191 | - $this->endpoints['login_slug'] = array( |
|
192 | - 'title' => __( 'Login Slug', 'lsx-health-plan' ), |
|
193 | - 'default' => 'login', |
|
194 | - ); |
|
195 | - $this->endpoints['my_plan_slug'] = array( |
|
196 | - 'title' => __( 'My Plan Slug', 'lsx-health-plan' ), |
|
197 | - 'default' => 'my-plan', |
|
198 | - ); |
|
199 | - $this->endpoints['plan_single_slug'] = array( |
|
200 | - 'title' => __( 'Single Plan Slug', 'lsx-health-plan' ), |
|
201 | - 'default' => 'plan', |
|
202 | - ); |
|
203 | - $this->endpoints['endpoint_plan_archive'] = array( |
|
204 | - 'title' => __( 'Plans Archive Endpoint', 'lsx-health-plan' ), |
|
205 | - 'default' => 'plans', |
|
206 | - ); |
|
207 | - |
|
208 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
209 | - $this->endpoints['exercise'] = array( |
|
210 | - 'exercise_single' => array( |
|
211 | - 'title' => __( 'Single Exercise Slug', 'lsx-health-plan' ), |
|
212 | - 'default' => 'exercise', |
|
213 | - ), |
|
214 | - 'exercise_archive' => array( |
|
215 | - 'title' => __( 'Archive Exercise Slug', 'lsx-health-plan' ), |
|
216 | - 'default' => 'exercises', |
|
217 | - ), |
|
218 | - 'exercise_type' => array( |
|
219 | - 'title' => __( 'Exercise Type Slug', 'lsx-health-plan' ), |
|
220 | - 'default' => 'exercise-type', |
|
221 | - ), |
|
222 | - 'exercise_equipment' => array( |
|
223 | - 'title' => __( 'Equipment Slug', 'lsx-health-plan' ), |
|
224 | - 'default' => 'equipment', |
|
225 | - ), |
|
226 | - 'exercise_musclegroup' => array( |
|
227 | - 'title' => __( 'Muscle Group Slug', 'lsx-health-plan' ), |
|
228 | - 'default' => 'muscle-group', |
|
229 | - ), |
|
230 | - ); |
|
231 | - } |
|
232 | - } |
|
233 | - |
|
234 | - /** |
|
235 | - * Hook in and register a submenu options page for the Page post-type menu. |
|
236 | - */ |
|
237 | - public function register_settings_page() { |
|
238 | - $this->set_vars(); |
|
239 | - $cmb = new_cmb2_box( |
|
240 | - array( |
|
241 | - 'id' => $this->screen_id, |
|
242 | - 'title' => esc_html__( 'Settings', 'lsx-health-plan' ), |
|
243 | - 'object_types' => array( 'options-page' ), |
|
244 | - 'option_key' => 'lsx_health_plan_options', // The option key and admin menu page slug. |
|
245 | - 'parent_slug' => 'edit.php?post_type=plan', // Make options page a submenu item of the themes menu. |
|
246 | - 'capability' => 'manage_options', // Cap required to view options-page. |
|
247 | - ) |
|
248 | - ); |
|
249 | - do_action( 'lsx_hp_settings_page', $cmb ); |
|
250 | - } |
|
251 | - |
|
252 | - /** |
|
253 | - * Registers the general settings. |
|
254 | - * |
|
255 | - * @param object $cmb new_cmb2_box(). |
|
256 | - * @return void |
|
257 | - */ |
|
258 | - public function general_settings( $cmb ) { |
|
259 | - $cmb->add_field( |
|
260 | - array( |
|
261 | - 'name' => __( 'Membership Product', 'lsx-health-plan' ), |
|
262 | - 'id' => 'membership_product', |
|
263 | - 'type' => 'post_search_ajax', |
|
264 | - 'limit' => 1, |
|
265 | - 'sortable' => false, |
|
266 | - 'query_args' => array( |
|
267 | - 'post_type' => array( 'product' ), |
|
268 | - 'post_status' => array( 'publish' ), |
|
269 | - 'posts_per_page' => -1, |
|
270 | - ), |
|
271 | - ) |
|
272 | - ); |
|
273 | - |
|
274 | - $cmb->add_field( |
|
275 | - array( |
|
276 | - 'name' => __( 'Your Warm-up Intro', 'lsx-health-plan' ), |
|
277 | - 'id' => 'warmup_intro', |
|
278 | - 'type' => 'textarea_small', |
|
279 | - 'value' => '', |
|
280 | - 'default' => __( "Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan' ), |
|
281 | - ) |
|
282 | - ); |
|
283 | - if ( post_type_exists( 'workout' ) ) { |
|
284 | - $cmb->add_field( |
|
285 | - array( |
|
286 | - 'name' => __( 'Your Workout Intro', 'lsx-health-plan' ), |
|
287 | - 'id' => 'workout_intro', |
|
288 | - 'type' => 'textarea_small', |
|
289 | - 'value' => '', |
|
290 | - 'default' => __( "Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan' ), |
|
291 | - ) |
|
292 | - ); |
|
293 | - } |
|
294 | - if ( post_type_exists( 'meal' ) ) { |
|
295 | - $cmb->add_field( |
|
296 | - array( |
|
297 | - 'name' => __( 'Your Meal Plan Intro', 'lsx-health-plan' ), |
|
298 | - 'id' => 'meal_plan_intro', |
|
299 | - 'type' => 'textarea_small', |
|
300 | - 'value' => '', |
|
301 | - 'default' => __( 'Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan' ), |
|
302 | - ) |
|
303 | - ); |
|
304 | - } |
|
305 | - if ( post_type_exists( 'recipe' ) ) { |
|
306 | - $cmb->add_field( |
|
307 | - array( |
|
308 | - 'name' => __( 'Recipes Intro', 'lsx-health-plan' ), |
|
309 | - 'id' => 'recipes_intro', |
|
310 | - 'type' => 'textarea_small', |
|
311 | - 'value' => '', |
|
312 | - 'default' => __( "Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan' ), |
|
313 | - ) |
|
314 | - ); |
|
315 | - } |
|
316 | - } |
|
317 | - |
|
318 | - /** |
|
319 | - * Registers the global default settings. |
|
320 | - * |
|
321 | - * @param object $cmb new_cmb2_box(). |
|
322 | - * @return void |
|
323 | - */ |
|
324 | - public function global_defaults( $cmb ) { |
|
325 | - $cmb->add_field( |
|
326 | - array( |
|
327 | - 'id' => 'global_defaults_title', |
|
328 | - 'type' => 'title', |
|
329 | - 'name' => __( 'Global Defaults', 'lsx-health-plan' ), |
|
330 | - 'default' => __( 'Global Defaults', 'lsx-health-plan' ), |
|
331 | - 'description' => __( 'If you have not connected a specific post to your day plan, set a default option below.', 'lsx-health-plan' ), |
|
332 | - ) |
|
333 | - ); |
|
334 | - |
|
335 | - foreach ( $this->default_types as $type => $default_type ) { |
|
336 | - $limit = 5; |
|
337 | - $sortable = false; |
|
338 | - if ( isset( $default_type['limit'] ) ) { |
|
339 | - $limit = $default_type['limit']; |
|
340 | - $sortable = true; |
|
341 | - } |
|
342 | - |
|
343 | - if ( 'page' === $type && false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
344 | - $type = array( 'page', 'workout' ); |
|
345 | - } |
|
346 | - |
|
347 | - $cmb->add_field( |
|
348 | - array( |
|
349 | - 'name' => $default_type['title'], |
|
350 | - 'desc' => $default_type['description'], |
|
351 | - 'id' => $default_type['id'], |
|
352 | - 'type' => 'post_search_ajax', |
|
353 | - 'limit' => $limit, |
|
354 | - 'sortable' => $sortable, |
|
355 | - 'query_args' => array( |
|
356 | - 'post_type' => $type, |
|
357 | - 'post_status' => array( 'publish' ), |
|
358 | - 'posts_per_page' => -1, |
|
359 | - ), |
|
360 | - ) |
|
361 | - ); |
|
362 | - } |
|
363 | - |
|
364 | - $cmb->add_field( |
|
365 | - array( |
|
366 | - 'id' => 'settings_global_defaults_closing', |
|
367 | - 'type' => 'tab_closing', |
|
368 | - ) |
|
369 | - ); |
|
370 | - } |
|
371 | - |
|
372 | - /** |
|
373 | - * Registers the global dowloads settings |
|
374 | - * |
|
375 | - * @param object $cmb new_cmb2_box(). |
|
376 | - * @return void |
|
377 | - */ |
|
378 | - public function global_downloads( $cmb ) { |
|
379 | - $cmb->add_field( |
|
380 | - array( |
|
381 | - 'id' => 'global_downloads_title', |
|
382 | - 'type' => 'title', |
|
383 | - 'name' => __( 'Global Downloads', 'lsx-health-plan' ), |
|
384 | - 'default' => __( 'Global Downloads', 'lsx-health-plan' ), |
|
385 | - 'description' => __( 'If you have not connected a specific download file to your plans, set a default option below', 'lsx-health-plan' ), |
|
386 | - ) |
|
387 | - ); |
|
388 | - |
|
389 | - foreach ( $this->download_types as $type => $download_type ) { |
|
390 | - $limit = 5; |
|
391 | - $sortable = false; |
|
392 | - if ( isset( $download_type['limit'] ) ) { |
|
393 | - $limit = $download_type['limit']; |
|
394 | - $sortable = true; |
|
395 | - } |
|
396 | - |
|
397 | - $cmb->add_field( |
|
398 | - array( |
|
399 | - 'name' => $download_type['title'], |
|
400 | - 'id' => 'download_' . $type, |
|
401 | - 'type' => 'post_search_ajax', |
|
402 | - 'limit' => $limit, |
|
403 | - 'sortable' => $sortable, |
|
404 | - 'query_args' => array( |
|
405 | - 'post_type' => array( 'dlm_download' ), |
|
406 | - 'post_status' => array( 'publish' ), |
|
407 | - 'posts_per_page' => -1, |
|
408 | - ), |
|
409 | - ) |
|
410 | - ); |
|
411 | - } |
|
412 | - $cmb->add_field( |
|
413 | - array( |
|
414 | - 'id' => 'settings_global_downloads_closing', |
|
415 | - 'type' => 'tab_closing', |
|
416 | - ) |
|
417 | - ); |
|
418 | - } |
|
419 | - |
|
420 | - /** |
|
421 | - * Registers the endpoint translation settings. |
|
422 | - * |
|
423 | - * @param object $cmb new_cmb2_box(). |
|
424 | - * @return void |
|
425 | - */ |
|
426 | - public function endpoint_translations( $cmb ) { |
|
427 | - $cmb->add_field( |
|
428 | - array( |
|
429 | - 'id' => 'endpoints_title', |
|
430 | - 'type' => 'title', |
|
431 | - 'name' => __( 'Set Endpoint Translations', 'lsx-health-plan' ), |
|
432 | - 'default' => __( 'Set Endpoint Translations', 'lsx-health-plan' ), |
|
433 | - ) |
|
434 | - ); |
|
435 | - foreach ( $this->endpoints as $slug => $endpoint_vars ) { |
|
436 | - if ( 'exercise' === $slug ) { |
|
437 | - continue; |
|
438 | - } |
|
439 | - |
|
440 | - $cmb->add_field( |
|
441 | - array( |
|
442 | - 'name' => $endpoint_vars['title'], |
|
443 | - 'id' => $slug, |
|
444 | - 'type' => 'input', |
|
445 | - 'value' => '', |
|
446 | - 'default' => $endpoint_vars['default'], |
|
447 | - ) |
|
448 | - ); |
|
449 | - } |
|
450 | - $cmb->add_field( |
|
451 | - array( |
|
452 | - 'id' => 'settings_endpoints_closing', |
|
453 | - 'type' => 'tab_closing', |
|
454 | - 'before_row' => '<p style="margin-top:20px; font-style: italic;">Endpoint is a web address (URL) at which the user can gain access to it. You need to resave your permalinks after changing the endpoint settings.</p>', |
|
455 | - ) |
|
456 | - ); |
|
457 | - } |
|
458 | - |
|
459 | - /** |
|
460 | - * Registers the endpoint translation settings. |
|
461 | - * |
|
462 | - * @param object $cmb new_cmb2_box(). |
|
463 | - * @return void |
|
464 | - */ |
|
465 | - public function exercise_translations( $cmb ) { |
|
466 | - if ( isset( $this->endpoints['exercise'] ) && '' !== $this->endpoints['exercise'] && ! empty( $this->endpoints['exercise'] ) ) { |
|
467 | - $cmb->add_field( |
|
468 | - array( |
|
469 | - 'id' => 'exercise_endpoints_title', |
|
470 | - 'type' => 'title', |
|
471 | - 'name' => __( 'Set Exercise Translations', 'lsx-health-plan' ), |
|
472 | - 'default' => __( 'Set Exercise Translations', 'lsx-health-plan' ), |
|
473 | - 'description' => __( 'Change the exercise endpoints.', 'lsx-health-plan' ), |
|
474 | - ) |
|
475 | - ); |
|
476 | - |
|
477 | - foreach ( $this->endpoints['exercise'] as $slug => $endpoint_vars ) { |
|
478 | - $cmb->add_field( |
|
479 | - array( |
|
480 | - 'name' => $endpoint_vars['title'], |
|
481 | - 'id' => 'endpoint_' . $slug, |
|
482 | - 'type' => 'input', |
|
483 | - 'value' => '', |
|
484 | - 'default' => $endpoint_vars['default'], |
|
485 | - ) |
|
486 | - ); |
|
487 | - } |
|
488 | - |
|
489 | - $cmb->add_field( |
|
490 | - array( |
|
491 | - 'id' => 'settings_exercise_endpoints_closing', |
|
492 | - 'type' => 'tab_closing', |
|
493 | - 'before_row' => '<p style="margin-top:20px; font-style: italic;">If you need to translate the exercise URL endpoints, do so below.</p>', |
|
494 | - ) |
|
495 | - ); |
|
496 | - } |
|
497 | - } |
|
498 | - |
|
499 | - /** |
|
500 | - * Registers the post type toggle settings |
|
501 | - * |
|
502 | - * @param object $cmb new_cmb2_box(). |
|
503 | - * @return void |
|
504 | - */ |
|
505 | - public function post_type_toggles( $cmb ) { |
|
506 | - $post_types = apply_filters( 'lsx_health_plan_post_types', isset( $this->post_types ) ); |
|
507 | - |
|
508 | - $cmb->add_field( |
|
509 | - array( |
|
510 | - 'id' => 'post_type_toggles_title', |
|
511 | - 'type' => 'title', |
|
512 | - 'name' => __( 'Disable Post Types', 'lsx-health-plan' ), |
|
513 | - 'default' => __( 'Disable Post Types', 'lsx-health-plan' ), |
|
514 | - 'description' => __( 'Disable post types if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
515 | - ) |
|
516 | - ); |
|
517 | - |
|
518 | - foreach ( $post_types as $post_type ) { |
|
519 | - if ( 'plan' === $post_type || 'exercise' === $post_type || ( 'video' === $post_type && false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) ) { |
|
520 | - continue; |
|
521 | - } |
|
522 | - |
|
523 | - $cmb->add_field( |
|
524 | - array( |
|
525 | - 'name' => ucwords( $post_type ), |
|
526 | - 'id' => $post_type . '_disabled', |
|
527 | - 'type' => 'checkbox', |
|
528 | - 'value' => 1, |
|
529 | - 'default' => 0, |
|
530 | - ) |
|
531 | - ); |
|
532 | - } |
|
533 | - |
|
534 | - $cmb->add_field( |
|
535 | - array( |
|
536 | - 'id' => 'settings_post_type_toggles_closing', |
|
537 | - 'type' => 'tab_closing', |
|
538 | - ) |
|
539 | - ); |
|
540 | - |
|
541 | - $cmb->add_field( |
|
542 | - array( |
|
543 | - 'id' => 'post_type_toggles_enable_title', |
|
544 | - 'type' => 'title', |
|
545 | - 'name' => __( 'Enable Post Types', 'lsx-health-plan' ), |
|
546 | - 'default' => __( 'Enable Post Types', 'lsx-health-plan' ), |
|
547 | - 'description' => __( 'Enable new functionality like the "exercise" post type.', 'lsx-health-plan' ), |
|
548 | - ) |
|
549 | - ); |
|
550 | - $cmb->add_field( |
|
551 | - array( |
|
552 | - 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
553 | - 'id' => 'exercise_enabled', |
|
554 | - 'type' => 'checkbox', |
|
555 | - 'value' => 1, |
|
556 | - 'default' => 0, |
|
557 | - 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
558 | - ) |
|
559 | - ); |
|
560 | - $cmb->add_field( |
|
561 | - array( |
|
562 | - 'id' => 'settings_post_type_toggles_enable_closing', |
|
563 | - 'type' => 'tab_closing', |
|
564 | - ) |
|
565 | - ); |
|
566 | - } |
|
567 | - /** |
|
568 | - * Registers the Profile Stat Toggle settings |
|
569 | - * |
|
570 | - * @param object $cmb new_cmb2_box(). |
|
571 | - * @return void |
|
572 | - */ |
|
573 | - |
|
574 | - public function stat_disable( $cmb ) { |
|
575 | - $cmb->add_field( |
|
576 | - array( |
|
577 | - 'id' => 'stat_disable_title', |
|
578 | - 'type' => 'title', |
|
579 | - 'name' => __( 'Disable Profile Stats', 'lsx-health-plan' ), |
|
580 | - 'default' => __( 'Disable Profile Stats', 'lsx-health-plan' ), |
|
581 | - ) |
|
582 | - ); |
|
583 | - $cmb->add_field( |
|
584 | - array( |
|
585 | - 'name' => __( 'Disable All Stats', 'lsx-health-plan' ), |
|
586 | - 'desc' => 'Disable All Stats', |
|
587 | - 'id' => 'disable_all_stats', |
|
588 | - 'type' => 'checkbox', |
|
589 | - 'value' => 1, |
|
590 | - 'default' => 0, |
|
591 | - ) |
|
592 | - ); |
|
593 | - $cmb->add_field( |
|
594 | - array( |
|
595 | - 'name' => __( 'Disable Weight', 'lsx-health-plan' ), |
|
596 | - 'id' => 'disable_weight_checkbox', |
|
597 | - 'type' => 'checkbox', |
|
598 | - 'value' => 1, |
|
599 | - 'default' => 0, |
|
600 | - ) |
|
601 | - ); |
|
602 | - $cmb->add_field( |
|
603 | - array( |
|
604 | - 'name' => __( 'Disable Height', 'lsx-health-plan' ), |
|
605 | - 'id' => 'disable_height_checkbox', |
|
606 | - 'type' => 'checkbox', |
|
607 | - 'value' => 1, |
|
608 | - 'default' => 0, |
|
609 | - ) |
|
610 | - ); |
|
611 | - $cmb->add_field( |
|
612 | - array( |
|
613 | - 'name' => __( 'Disable Waist', 'lsx-health-plan' ), |
|
614 | - 'id' => 'disable_waist_checkbox', |
|
615 | - 'type' => 'checkbox', |
|
616 | - 'value' => 1, |
|
617 | - 'default' => 0, |
|
618 | - ) |
|
619 | - ); |
|
620 | - $cmb->add_field( |
|
621 | - array( |
|
622 | - 'name' => __( 'Disable BMI', 'lsx-health-plan' ), |
|
623 | - 'id' => 'disable_bmi_checkbox', |
|
624 | - 'type' => 'checkbox', |
|
625 | - 'value' => 1, |
|
626 | - 'default' => 0, |
|
627 | - ) |
|
628 | - ); |
|
629 | - $cmb->add_field( |
|
630 | - array( |
|
631 | - 'id' => 'settings_stat_disable_closing', |
|
632 | - 'type' => 'tab_closing', |
|
633 | - ) |
|
634 | - ); |
|
635 | - } |
|
636 | - |
|
637 | - /** |
|
638 | - * Enable Business Directory Search settings only if LSX Search plugin is enabled. |
|
639 | - * |
|
640 | - * @param object $cmb The CMB2() class. |
|
641 | - * @param string $section either engine,archive or single. |
|
642 | - * @return void |
|
643 | - */ |
|
644 | - public function generate_tabs( $cmb ) { |
|
645 | - $tabs = $this->get_settings_tabs(); |
|
646 | - |
|
647 | - foreach ( $tabs as $tab_key => $tab ) { |
|
648 | - $cmb->add_field( |
|
649 | - array( |
|
650 | - 'id' => 'settings_' . $tab_key . '_title', |
|
651 | - 'type' => 'title', |
|
652 | - 'name' => $tab['title'], |
|
653 | - 'default' => $tab['title'], |
|
654 | - 'description' => $tab['desc'], |
|
655 | - ) |
|
656 | - ); |
|
657 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_top', $cmb ); |
|
658 | - |
|
659 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_middle', $cmb ); |
|
660 | - |
|
661 | - do_action( 'lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb ); |
|
662 | - |
|
663 | - $cmb->add_field( |
|
664 | - array( |
|
665 | - 'id' => 'settings_' . $tab_key . '_closing', |
|
666 | - 'type' => 'tab_closing', |
|
667 | - ) |
|
668 | - ); |
|
669 | - } |
|
670 | - } |
|
671 | - |
|
672 | - |
|
673 | - /** |
|
674 | - * Returns the tabs and their descriptions. |
|
675 | - * |
|
676 | - * @return array |
|
677 | - */ |
|
678 | - public function get_settings_tabs() { |
|
679 | - $tabs = array( |
|
680 | - 'general' => array( |
|
681 | - 'title' => __( 'General', 'lsx-health-plan' ), |
|
682 | - 'desc' => __( 'Control the sitewide settings for the LSX HP site.', 'lsx-health-plan' ), |
|
683 | - ), |
|
684 | - ); |
|
685 | - |
|
686 | - foreach ( $this->post_types as $post_type ) { |
|
687 | - switch ( $post_type ) { |
|
688 | - default: |
|
689 | - //if ( ! in_array( $post_type, \lsx\search\includes\get_restricted_post_types() ) ) { |
|
690 | - $temp_post_type = get_post_type_object( $post_type ); |
|
691 | - if ( ! is_wp_error( $temp_post_type ) ) { |
|
692 | - $page_url = get_post_type_archive_link( $temp_post_type->name ); |
|
693 | - $description = sprintf( |
|
694 | - /* translators: %s: The subscription info */ |
|
695 | - __( 'Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search' ), |
|
696 | - $page_url, |
|
697 | - $temp_post_type->label |
|
698 | - ); |
|
699 | - |
|
700 | - $tabs[ $post_type ] = array( |
|
701 | - 'title' => $temp_post_type->label, |
|
702 | - 'desc' => $description, |
|
703 | - ); |
|
704 | - } |
|
705 | - //} |
|
706 | - break; |
|
707 | - } |
|
708 | - } |
|
709 | - return $tabs; |
|
710 | - } |
|
15 | + /** |
|
16 | + * Holds class instance |
|
17 | + * |
|
18 | + * @since 1.0.0 |
|
19 | + * |
|
20 | + * @var object \lsx_health_plan\classes\admin\Settings() |
|
21 | + */ |
|
22 | + protected static $instance = null; |
|
23 | + |
|
24 | + /** |
|
25 | + * Option key, and option page slug |
|
26 | + * |
|
27 | + * @var string |
|
28 | + */ |
|
29 | + protected $screen_id = 'lsx_health_plan_settings'; |
|
30 | + |
|
31 | + /** |
|
32 | + * An array of the post types for the Global Downloads field. |
|
33 | + * |
|
34 | + * @var array |
|
35 | + */ |
|
36 | + public $download_types = array(); |
|
37 | + |
|
38 | + /** |
|
39 | + * An array of the post types for the Global Defaults field. |
|
40 | + * |
|
41 | + * @var array |
|
42 | + */ |
|
43 | + public $default_types = array(); |
|
44 | + |
|
45 | + /** |
|
46 | + * An array of the endpoints for the Endpoint Translation field. |
|
47 | + * |
|
48 | + * @var array |
|
49 | + */ |
|
50 | + public $endpoints = array(); |
|
51 | + |
|
52 | + /** |
|
53 | + * Constructor |
|
54 | + */ |
|
55 | + public function __construct() { |
|
56 | + $this->load_classes(); |
|
57 | + add_action( 'cmb2_admin_init', array( $this, 'register_settings_page' ) ); |
|
58 | + add_action( 'lsx_hp_settings_page', array( $this, 'generate_tabs' ), 1, 1 ); |
|
59 | + |
|
60 | + add_action( 'lsx_hp_settings_page_general_top', array( $this, 'general_settings' ), 1, 1 ); |
|
61 | + add_action( 'lsx_hp_settings_page', array( $this, 'global_defaults' ), 3, 1 ); |
|
62 | + add_action( 'lsx_hp_settings_page', array( $this, 'global_downloads' ), 5, 1 ); |
|
63 | + add_action( 'lsx_hp_settings_page', array( $this, 'stat_disable' ), 6, 1 ); |
|
64 | + add_action( 'lsx_hp_settings_page', array( $this, 'endpoint_translations' ), 7, 1 ); |
|
65 | + add_action( 'lsx_hp_settings_page', array( $this, 'exercise_translations' ), 7, 1 ); |
|
66 | + add_action( 'lsx_hp_settings_page', array( $this, 'post_type_toggles' ), 9, 1 ); |
|
67 | + } |
|
68 | + |
|
69 | + /** |
|
70 | + * Return an instance of this class. |
|
71 | + * |
|
72 | + * @since 1.0.0 |
|
73 | + * |
|
74 | + * @return object \lsx_health_plan\classes\admin\Settings() A single instance of this class. |
|
75 | + */ |
|
76 | + public static function get_instance() { |
|
77 | + // If the single instance hasn't been set, set it now. |
|
78 | + if ( null === self::$instance ) { |
|
79 | + self::$instance = new self(); |
|
80 | + } |
|
81 | + return self::$instance; |
|
82 | + } |
|
83 | + |
|
84 | + /** |
|
85 | + * Loads the variable classes and the static classes. |
|
86 | + */ |
|
87 | + private function load_classes() { |
|
88 | + |
|
89 | + $this->post_types = array( |
|
90 | + 'plan', |
|
91 | + 'workout', |
|
92 | + 'exercise', |
|
93 | + //'meal', |
|
94 | + 'recipe', |
|
95 | + //'tip', |
|
96 | + ); |
|
97 | + |
|
98 | + foreach ( $this->post_types as $post_type ) { |
|
99 | + $this->$post_type = require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/settings/class-' . $post_type . '.php'; |
|
100 | + } |
|
101 | + } |
|
102 | + |
|
103 | + /** |
|
104 | + * Sets the variables needed for the fields. |
|
105 | + * |
|
106 | + * @return void |
|
107 | + */ |
|
108 | + public function set_vars() { |
|
109 | + |
|
110 | + $this->default_types = array( |
|
111 | + 'page' => array( |
|
112 | + 'title' => __( 'Warm Up', 'lsx-health-plan' ), |
|
113 | + 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
114 | + 'limit' => 1, |
|
115 | + 'id' => 'plan_warmup', |
|
116 | + ), |
|
117 | + ); |
|
118 | + $this->download_types = array( |
|
119 | + 'page' => array( |
|
120 | + 'title' => __( 'Warm Up', 'lsx-health-plan' ), |
|
121 | + 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
122 | + 'limit' => 1, |
|
123 | + ), |
|
124 | + ); |
|
125 | + $this->endpoints = array( |
|
126 | + 'endpoint_warm_up' => array( |
|
127 | + 'title' => __( 'Warm Up Endpoint', 'lsx-health-plan' ), |
|
128 | + 'default' => 'warm-up', |
|
129 | + ), |
|
130 | + ); |
|
131 | + |
|
132 | + if ( post_type_exists( 'meal' ) ) { |
|
133 | + $this->download_types['meal'] = array( |
|
134 | + 'title' => __( 'Meal Plan', 'lsx-health-plan' ), |
|
135 | + 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
136 | + ); |
|
137 | + $this->default_types['meal'] = array( |
|
138 | + 'title' => __( 'Meal Plan', 'lsx-health-plan' ), |
|
139 | + 'description' => __( 'Set a default meal plan.', 'lsx-health-plan' ), |
|
140 | + 'id' => 'connected_meals', |
|
141 | + ); |
|
142 | + $this->endpoints['endpoint_meal'] = array( |
|
143 | + 'title' => __( 'Meal Endpoint', 'lsx-health-plan' ), |
|
144 | + 'default' => 'meal', |
|
145 | + 'description' => __( 'Define the tab slug which shows on the single plan page.', 'lsx-health-plan' ), |
|
146 | + ); |
|
147 | + $this->endpoints['endpoint_meal_archive'] = array( |
|
148 | + 'title' => __( 'Meals Archive Endpoint', 'lsx-health-plan' ), |
|
149 | + 'default' => 'meals', |
|
150 | + ); |
|
151 | + $this->endpoints['meal_single_slug'] = array( |
|
152 | + 'title' => __( 'Single Meal Slug', 'lsx-health-plan' ), |
|
153 | + 'default' => 'meal', |
|
154 | + ); |
|
155 | + } |
|
156 | + if ( post_type_exists( 'recipe' ) ) { |
|
157 | + $this->download_types['recipe'] = array( |
|
158 | + 'title' => __( 'Recipe', 'lsx-health-plan' ), |
|
159 | + 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
160 | + ); |
|
161 | + $this->default_types['recipe'] = array( |
|
162 | + 'title' => __( 'Recipe', 'lsx-health-plan' ), |
|
163 | + 'description' => __( 'Set a default recipe.', 'lsx-health-plan' ), |
|
164 | + 'id' => 'connected_recipes', |
|
165 | + ); |
|
166 | + $this->endpoints['endpoint_recipe'] = array( |
|
167 | + 'title' => __( 'Recipes Endpoint', 'lsx-health-plan' ), |
|
168 | + 'default' => 'recipe', |
|
169 | + ); |
|
170 | + } |
|
171 | + if ( post_type_exists( 'workout' ) ) { |
|
172 | + $this->download_types['workout'] = array( |
|
173 | + 'title' => __( 'Workout', 'lsx-health-plan' ), |
|
174 | + 'description' => __( 'Set a default workout routine PDF.', 'lsx-health-plan' ), |
|
175 | + ); |
|
176 | + $this->default_types['workout'] = array( |
|
177 | + 'title' => __( 'Workout', 'lsx-health-plan' ), |
|
178 | + 'description' => __( 'Set a default workout routine.', 'lsx-health-plan' ), |
|
179 | + 'id' => 'connected_workouts', |
|
180 | + ); |
|
181 | + $this->endpoints['endpoint_workout_archive'] = array( |
|
182 | + 'title' => __( 'Workouts Archive Endpoint', 'lsx-health-plan' ), |
|
183 | + 'default' => '', |
|
184 | + ); |
|
185 | + $this->endpoints['endpoint_workout'] = array( |
|
186 | + 'title' => __( 'Single Workout Endpoint', 'lsx-health-plan' ), |
|
187 | + 'default' => 'workout', |
|
188 | + ); |
|
189 | + } |
|
190 | + |
|
191 | + $this->endpoints['login_slug'] = array( |
|
192 | + 'title' => __( 'Login Slug', 'lsx-health-plan' ), |
|
193 | + 'default' => 'login', |
|
194 | + ); |
|
195 | + $this->endpoints['my_plan_slug'] = array( |
|
196 | + 'title' => __( 'My Plan Slug', 'lsx-health-plan' ), |
|
197 | + 'default' => 'my-plan', |
|
198 | + ); |
|
199 | + $this->endpoints['plan_single_slug'] = array( |
|
200 | + 'title' => __( 'Single Plan Slug', 'lsx-health-plan' ), |
|
201 | + 'default' => 'plan', |
|
202 | + ); |
|
203 | + $this->endpoints['endpoint_plan_archive'] = array( |
|
204 | + 'title' => __( 'Plans Archive Endpoint', 'lsx-health-plan' ), |
|
205 | + 'default' => 'plans', |
|
206 | + ); |
|
207 | + |
|
208 | + if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
209 | + $this->endpoints['exercise'] = array( |
|
210 | + 'exercise_single' => array( |
|
211 | + 'title' => __( 'Single Exercise Slug', 'lsx-health-plan' ), |
|
212 | + 'default' => 'exercise', |
|
213 | + ), |
|
214 | + 'exercise_archive' => array( |
|
215 | + 'title' => __( 'Archive Exercise Slug', 'lsx-health-plan' ), |
|
216 | + 'default' => 'exercises', |
|
217 | + ), |
|
218 | + 'exercise_type' => array( |
|
219 | + 'title' => __( 'Exercise Type Slug', 'lsx-health-plan' ), |
|
220 | + 'default' => 'exercise-type', |
|
221 | + ), |
|
222 | + 'exercise_equipment' => array( |
|
223 | + 'title' => __( 'Equipment Slug', 'lsx-health-plan' ), |
|
224 | + 'default' => 'equipment', |
|
225 | + ), |
|
226 | + 'exercise_musclegroup' => array( |
|
227 | + 'title' => __( 'Muscle Group Slug', 'lsx-health-plan' ), |
|
228 | + 'default' => 'muscle-group', |
|
229 | + ), |
|
230 | + ); |
|
231 | + } |
|
232 | + } |
|
233 | + |
|
234 | + /** |
|
235 | + * Hook in and register a submenu options page for the Page post-type menu. |
|
236 | + */ |
|
237 | + public function register_settings_page() { |
|
238 | + $this->set_vars(); |
|
239 | + $cmb = new_cmb2_box( |
|
240 | + array( |
|
241 | + 'id' => $this->screen_id, |
|
242 | + 'title' => esc_html__( 'Settings', 'lsx-health-plan' ), |
|
243 | + 'object_types' => array( 'options-page' ), |
|
244 | + 'option_key' => 'lsx_health_plan_options', // The option key and admin menu page slug. |
|
245 | + 'parent_slug' => 'edit.php?post_type=plan', // Make options page a submenu item of the themes menu. |
|
246 | + 'capability' => 'manage_options', // Cap required to view options-page. |
|
247 | + ) |
|
248 | + ); |
|
249 | + do_action( 'lsx_hp_settings_page', $cmb ); |
|
250 | + } |
|
251 | + |
|
252 | + /** |
|
253 | + * Registers the general settings. |
|
254 | + * |
|
255 | + * @param object $cmb new_cmb2_box(). |
|
256 | + * @return void |
|
257 | + */ |
|
258 | + public function general_settings( $cmb ) { |
|
259 | + $cmb->add_field( |
|
260 | + array( |
|
261 | + 'name' => __( 'Membership Product', 'lsx-health-plan' ), |
|
262 | + 'id' => 'membership_product', |
|
263 | + 'type' => 'post_search_ajax', |
|
264 | + 'limit' => 1, |
|
265 | + 'sortable' => false, |
|
266 | + 'query_args' => array( |
|
267 | + 'post_type' => array( 'product' ), |
|
268 | + 'post_status' => array( 'publish' ), |
|
269 | + 'posts_per_page' => -1, |
|
270 | + ), |
|
271 | + ) |
|
272 | + ); |
|
273 | + |
|
274 | + $cmb->add_field( |
|
275 | + array( |
|
276 | + 'name' => __( 'Your Warm-up Intro', 'lsx-health-plan' ), |
|
277 | + 'id' => 'warmup_intro', |
|
278 | + 'type' => 'textarea_small', |
|
279 | + 'value' => '', |
|
280 | + 'default' => __( "Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan' ), |
|
281 | + ) |
|
282 | + ); |
|
283 | + if ( post_type_exists( 'workout' ) ) { |
|
284 | + $cmb->add_field( |
|
285 | + array( |
|
286 | + 'name' => __( 'Your Workout Intro', 'lsx-health-plan' ), |
|
287 | + 'id' => 'workout_intro', |
|
288 | + 'type' => 'textarea_small', |
|
289 | + 'value' => '', |
|
290 | + 'default' => __( "Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan' ), |
|
291 | + ) |
|
292 | + ); |
|
293 | + } |
|
294 | + if ( post_type_exists( 'meal' ) ) { |
|
295 | + $cmb->add_field( |
|
296 | + array( |
|
297 | + 'name' => __( 'Your Meal Plan Intro', 'lsx-health-plan' ), |
|
298 | + 'id' => 'meal_plan_intro', |
|
299 | + 'type' => 'textarea_small', |
|
300 | + 'value' => '', |
|
301 | + 'default' => __( 'Get the right mix of nutrients to keep muscles strong & healthy.', 'lsx-health-plan' ), |
|
302 | + ) |
|
303 | + ); |
|
304 | + } |
|
305 | + if ( post_type_exists( 'recipe' ) ) { |
|
306 | + $cmb->add_field( |
|
307 | + array( |
|
308 | + 'name' => __( 'Recipes Intro', 'lsx-health-plan' ), |
|
309 | + 'id' => 'recipes_intro', |
|
310 | + 'type' => 'textarea_small', |
|
311 | + 'value' => '', |
|
312 | + 'default' => __( "Let's get cooking! Delicious and easy to follow recipes.", 'lsx-health-plan' ), |
|
313 | + ) |
|
314 | + ); |
|
315 | + } |
|
316 | + } |
|
317 | + |
|
318 | + /** |
|
319 | + * Registers the global default settings. |
|
320 | + * |
|
321 | + * @param object $cmb new_cmb2_box(). |
|
322 | + * @return void |
|
323 | + */ |
|
324 | + public function global_defaults( $cmb ) { |
|
325 | + $cmb->add_field( |
|
326 | + array( |
|
327 | + 'id' => 'global_defaults_title', |
|
328 | + 'type' => 'title', |
|
329 | + 'name' => __( 'Global Defaults', 'lsx-health-plan' ), |
|
330 | + 'default' => __( 'Global Defaults', 'lsx-health-plan' ), |
|
331 | + 'description' => __( 'If you have not connected a specific post to your day plan, set a default option below.', 'lsx-health-plan' ), |
|
332 | + ) |
|
333 | + ); |
|
334 | + |
|
335 | + foreach ( $this->default_types as $type => $default_type ) { |
|
336 | + $limit = 5; |
|
337 | + $sortable = false; |
|
338 | + if ( isset( $default_type['limit'] ) ) { |
|
339 | + $limit = $default_type['limit']; |
|
340 | + $sortable = true; |
|
341 | + } |
|
342 | + |
|
343 | + if ( 'page' === $type && false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
344 | + $type = array( 'page', 'workout' ); |
|
345 | + } |
|
346 | + |
|
347 | + $cmb->add_field( |
|
348 | + array( |
|
349 | + 'name' => $default_type['title'], |
|
350 | + 'desc' => $default_type['description'], |
|
351 | + 'id' => $default_type['id'], |
|
352 | + 'type' => 'post_search_ajax', |
|
353 | + 'limit' => $limit, |
|
354 | + 'sortable' => $sortable, |
|
355 | + 'query_args' => array( |
|
356 | + 'post_type' => $type, |
|
357 | + 'post_status' => array( 'publish' ), |
|
358 | + 'posts_per_page' => -1, |
|
359 | + ), |
|
360 | + ) |
|
361 | + ); |
|
362 | + } |
|
363 | + |
|
364 | + $cmb->add_field( |
|
365 | + array( |
|
366 | + 'id' => 'settings_global_defaults_closing', |
|
367 | + 'type' => 'tab_closing', |
|
368 | + ) |
|
369 | + ); |
|
370 | + } |
|
371 | + |
|
372 | + /** |
|
373 | + * Registers the global dowloads settings |
|
374 | + * |
|
375 | + * @param object $cmb new_cmb2_box(). |
|
376 | + * @return void |
|
377 | + */ |
|
378 | + public function global_downloads( $cmb ) { |
|
379 | + $cmb->add_field( |
|
380 | + array( |
|
381 | + 'id' => 'global_downloads_title', |
|
382 | + 'type' => 'title', |
|
383 | + 'name' => __( 'Global Downloads', 'lsx-health-plan' ), |
|
384 | + 'default' => __( 'Global Downloads', 'lsx-health-plan' ), |
|
385 | + 'description' => __( 'If you have not connected a specific download file to your plans, set a default option below', 'lsx-health-plan' ), |
|
386 | + ) |
|
387 | + ); |
|
388 | + |
|
389 | + foreach ( $this->download_types as $type => $download_type ) { |
|
390 | + $limit = 5; |
|
391 | + $sortable = false; |
|
392 | + if ( isset( $download_type['limit'] ) ) { |
|
393 | + $limit = $download_type['limit']; |
|
394 | + $sortable = true; |
|
395 | + } |
|
396 | + |
|
397 | + $cmb->add_field( |
|
398 | + array( |
|
399 | + 'name' => $download_type['title'], |
|
400 | + 'id' => 'download_' . $type, |
|
401 | + 'type' => 'post_search_ajax', |
|
402 | + 'limit' => $limit, |
|
403 | + 'sortable' => $sortable, |
|
404 | + 'query_args' => array( |
|
405 | + 'post_type' => array( 'dlm_download' ), |
|
406 | + 'post_status' => array( 'publish' ), |
|
407 | + 'posts_per_page' => -1, |
|
408 | + ), |
|
409 | + ) |
|
410 | + ); |
|
411 | + } |
|
412 | + $cmb->add_field( |
|
413 | + array( |
|
414 | + 'id' => 'settings_global_downloads_closing', |
|
415 | + 'type' => 'tab_closing', |
|
416 | + ) |
|
417 | + ); |
|
418 | + } |
|
419 | + |
|
420 | + /** |
|
421 | + * Registers the endpoint translation settings. |
|
422 | + * |
|
423 | + * @param object $cmb new_cmb2_box(). |
|
424 | + * @return void |
|
425 | + */ |
|
426 | + public function endpoint_translations( $cmb ) { |
|
427 | + $cmb->add_field( |
|
428 | + array( |
|
429 | + 'id' => 'endpoints_title', |
|
430 | + 'type' => 'title', |
|
431 | + 'name' => __( 'Set Endpoint Translations', 'lsx-health-plan' ), |
|
432 | + 'default' => __( 'Set Endpoint Translations', 'lsx-health-plan' ), |
|
433 | + ) |
|
434 | + ); |
|
435 | + foreach ( $this->endpoints as $slug => $endpoint_vars ) { |
|
436 | + if ( 'exercise' === $slug ) { |
|
437 | + continue; |
|
438 | + } |
|
439 | + |
|
440 | + $cmb->add_field( |
|
441 | + array( |
|
442 | + 'name' => $endpoint_vars['title'], |
|
443 | + 'id' => $slug, |
|
444 | + 'type' => 'input', |
|
445 | + 'value' => '', |
|
446 | + 'default' => $endpoint_vars['default'], |
|
447 | + ) |
|
448 | + ); |
|
449 | + } |
|
450 | + $cmb->add_field( |
|
451 | + array( |
|
452 | + 'id' => 'settings_endpoints_closing', |
|
453 | + 'type' => 'tab_closing', |
|
454 | + 'before_row' => '<p style="margin-top:20px; font-style: italic;">Endpoint is a web address (URL) at which the user can gain access to it. You need to resave your permalinks after changing the endpoint settings.</p>', |
|
455 | + ) |
|
456 | + ); |
|
457 | + } |
|
458 | + |
|
459 | + /** |
|
460 | + * Registers the endpoint translation settings. |
|
461 | + * |
|
462 | + * @param object $cmb new_cmb2_box(). |
|
463 | + * @return void |
|
464 | + */ |
|
465 | + public function exercise_translations( $cmb ) { |
|
466 | + if ( isset( $this->endpoints['exercise'] ) && '' !== $this->endpoints['exercise'] && ! empty( $this->endpoints['exercise'] ) ) { |
|
467 | + $cmb->add_field( |
|
468 | + array( |
|
469 | + 'id' => 'exercise_endpoints_title', |
|
470 | + 'type' => 'title', |
|
471 | + 'name' => __( 'Set Exercise Translations', 'lsx-health-plan' ), |
|
472 | + 'default' => __( 'Set Exercise Translations', 'lsx-health-plan' ), |
|
473 | + 'description' => __( 'Change the exercise endpoints.', 'lsx-health-plan' ), |
|
474 | + ) |
|
475 | + ); |
|
476 | + |
|
477 | + foreach ( $this->endpoints['exercise'] as $slug => $endpoint_vars ) { |
|
478 | + $cmb->add_field( |
|
479 | + array( |
|
480 | + 'name' => $endpoint_vars['title'], |
|
481 | + 'id' => 'endpoint_' . $slug, |
|
482 | + 'type' => 'input', |
|
483 | + 'value' => '', |
|
484 | + 'default' => $endpoint_vars['default'], |
|
485 | + ) |
|
486 | + ); |
|
487 | + } |
|
488 | + |
|
489 | + $cmb->add_field( |
|
490 | + array( |
|
491 | + 'id' => 'settings_exercise_endpoints_closing', |
|
492 | + 'type' => 'tab_closing', |
|
493 | + 'before_row' => '<p style="margin-top:20px; font-style: italic;">If you need to translate the exercise URL endpoints, do so below.</p>', |
|
494 | + ) |
|
495 | + ); |
|
496 | + } |
|
497 | + } |
|
498 | + |
|
499 | + /** |
|
500 | + * Registers the post type toggle settings |
|
501 | + * |
|
502 | + * @param object $cmb new_cmb2_box(). |
|
503 | + * @return void |
|
504 | + */ |
|
505 | + public function post_type_toggles( $cmb ) { |
|
506 | + $post_types = apply_filters( 'lsx_health_plan_post_types', isset( $this->post_types ) ); |
|
507 | + |
|
508 | + $cmb->add_field( |
|
509 | + array( |
|
510 | + 'id' => 'post_type_toggles_title', |
|
511 | + 'type' => 'title', |
|
512 | + 'name' => __( 'Disable Post Types', 'lsx-health-plan' ), |
|
513 | + 'default' => __( 'Disable Post Types', 'lsx-health-plan' ), |
|
514 | + 'description' => __( 'Disable post types if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
515 | + ) |
|
516 | + ); |
|
517 | + |
|
518 | + foreach ( $post_types as $post_type ) { |
|
519 | + if ( 'plan' === $post_type || 'exercise' === $post_type || ( 'video' === $post_type && false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) ) { |
|
520 | + continue; |
|
521 | + } |
|
522 | + |
|
523 | + $cmb->add_field( |
|
524 | + array( |
|
525 | + 'name' => ucwords( $post_type ), |
|
526 | + 'id' => $post_type . '_disabled', |
|
527 | + 'type' => 'checkbox', |
|
528 | + 'value' => 1, |
|
529 | + 'default' => 0, |
|
530 | + ) |
|
531 | + ); |
|
532 | + } |
|
533 | + |
|
534 | + $cmb->add_field( |
|
535 | + array( |
|
536 | + 'id' => 'settings_post_type_toggles_closing', |
|
537 | + 'type' => 'tab_closing', |
|
538 | + ) |
|
539 | + ); |
|
540 | + |
|
541 | + $cmb->add_field( |
|
542 | + array( |
|
543 | + 'id' => 'post_type_toggles_enable_title', |
|
544 | + 'type' => 'title', |
|
545 | + 'name' => __( 'Enable Post Types', 'lsx-health-plan' ), |
|
546 | + 'default' => __( 'Enable Post Types', 'lsx-health-plan' ), |
|
547 | + 'description' => __( 'Enable new functionality like the "exercise" post type.', 'lsx-health-plan' ), |
|
548 | + ) |
|
549 | + ); |
|
550 | + $cmb->add_field( |
|
551 | + array( |
|
552 | + 'name' => __( 'Exercises', 'lsx-health-plan' ), |
|
553 | + 'id' => 'exercise_enabled', |
|
554 | + 'type' => 'checkbox', |
|
555 | + 'value' => 1, |
|
556 | + 'default' => 0, |
|
557 | + 'description' => __( 'Enabling the exercise post type will automatically replace the Video post type.', 'lsx-health-plan' ), |
|
558 | + ) |
|
559 | + ); |
|
560 | + $cmb->add_field( |
|
561 | + array( |
|
562 | + 'id' => 'settings_post_type_toggles_enable_closing', |
|
563 | + 'type' => 'tab_closing', |
|
564 | + ) |
|
565 | + ); |
|
566 | + } |
|
567 | + /** |
|
568 | + * Registers the Profile Stat Toggle settings |
|
569 | + * |
|
570 | + * @param object $cmb new_cmb2_box(). |
|
571 | + * @return void |
|
572 | + */ |
|
573 | + |
|
574 | + public function stat_disable( $cmb ) { |
|
575 | + $cmb->add_field( |
|
576 | + array( |
|
577 | + 'id' => 'stat_disable_title', |
|
578 | + 'type' => 'title', |
|
579 | + 'name' => __( 'Disable Profile Stats', 'lsx-health-plan' ), |
|
580 | + 'default' => __( 'Disable Profile Stats', 'lsx-health-plan' ), |
|
581 | + ) |
|
582 | + ); |
|
583 | + $cmb->add_field( |
|
584 | + array( |
|
585 | + 'name' => __( 'Disable All Stats', 'lsx-health-plan' ), |
|
586 | + 'desc' => 'Disable All Stats', |
|
587 | + 'id' => 'disable_all_stats', |
|
588 | + 'type' => 'checkbox', |
|
589 | + 'value' => 1, |
|
590 | + 'default' => 0, |
|
591 | + ) |
|
592 | + ); |
|
593 | + $cmb->add_field( |
|
594 | + array( |
|
595 | + 'name' => __( 'Disable Weight', 'lsx-health-plan' ), |
|
596 | + 'id' => 'disable_weight_checkbox', |
|
597 | + 'type' => 'checkbox', |
|
598 | + 'value' => 1, |
|
599 | + 'default' => 0, |
|
600 | + ) |
|
601 | + ); |
|
602 | + $cmb->add_field( |
|
603 | + array( |
|
604 | + 'name' => __( 'Disable Height', 'lsx-health-plan' ), |
|
605 | + 'id' => 'disable_height_checkbox', |
|
606 | + 'type' => 'checkbox', |
|
607 | + 'value' => 1, |
|
608 | + 'default' => 0, |
|
609 | + ) |
|
610 | + ); |
|
611 | + $cmb->add_field( |
|
612 | + array( |
|
613 | + 'name' => __( 'Disable Waist', 'lsx-health-plan' ), |
|
614 | + 'id' => 'disable_waist_checkbox', |
|
615 | + 'type' => 'checkbox', |
|
616 | + 'value' => 1, |
|
617 | + 'default' => 0, |
|
618 | + ) |
|
619 | + ); |
|
620 | + $cmb->add_field( |
|
621 | + array( |
|
622 | + 'name' => __( 'Disable BMI', 'lsx-health-plan' ), |
|
623 | + 'id' => 'disable_bmi_checkbox', |
|
624 | + 'type' => 'checkbox', |
|
625 | + 'value' => 1, |
|
626 | + 'default' => 0, |
|
627 | + ) |
|
628 | + ); |
|
629 | + $cmb->add_field( |
|
630 | + array( |
|
631 | + 'id' => 'settings_stat_disable_closing', |
|
632 | + 'type' => 'tab_closing', |
|
633 | + ) |
|
634 | + ); |
|
635 | + } |
|
636 | + |
|
637 | + /** |
|
638 | + * Enable Business Directory Search settings only if LSX Search plugin is enabled. |
|
639 | + * |
|
640 | + * @param object $cmb The CMB2() class. |
|
641 | + * @param string $section either engine,archive or single. |
|
642 | + * @return void |
|
643 | + */ |
|
644 | + public function generate_tabs( $cmb ) { |
|
645 | + $tabs = $this->get_settings_tabs(); |
|
646 | + |
|
647 | + foreach ( $tabs as $tab_key => $tab ) { |
|
648 | + $cmb->add_field( |
|
649 | + array( |
|
650 | + 'id' => 'settings_' . $tab_key . '_title', |
|
651 | + 'type' => 'title', |
|
652 | + 'name' => $tab['title'], |
|
653 | + 'default' => $tab['title'], |
|
654 | + 'description' => $tab['desc'], |
|
655 | + ) |
|
656 | + ); |
|
657 | + do_action( 'lsx_hp_settings_page_' . $tab_key . '_top', $cmb ); |
|
658 | + |
|
659 | + do_action( 'lsx_hp_settings_page_' . $tab_key . '_middle', $cmb ); |
|
660 | + |
|
661 | + do_action( 'lsx_hp_settings_page_' . $tab_key . '_bottom', $cmb ); |
|
662 | + |
|
663 | + $cmb->add_field( |
|
664 | + array( |
|
665 | + 'id' => 'settings_' . $tab_key . '_closing', |
|
666 | + 'type' => 'tab_closing', |
|
667 | + ) |
|
668 | + ); |
|
669 | + } |
|
670 | + } |
|
671 | + |
|
672 | + |
|
673 | + /** |
|
674 | + * Returns the tabs and their descriptions. |
|
675 | + * |
|
676 | + * @return array |
|
677 | + */ |
|
678 | + public function get_settings_tabs() { |
|
679 | + $tabs = array( |
|
680 | + 'general' => array( |
|
681 | + 'title' => __( 'General', 'lsx-health-plan' ), |
|
682 | + 'desc' => __( 'Control the sitewide settings for the LSX HP site.', 'lsx-health-plan' ), |
|
683 | + ), |
|
684 | + ); |
|
685 | + |
|
686 | + foreach ( $this->post_types as $post_type ) { |
|
687 | + switch ( $post_type ) { |
|
688 | + default: |
|
689 | + //if ( ! in_array( $post_type, \lsx\search\includes\get_restricted_post_types() ) ) { |
|
690 | + $temp_post_type = get_post_type_object( $post_type ); |
|
691 | + if ( ! is_wp_error( $temp_post_type ) ) { |
|
692 | + $page_url = get_post_type_archive_link( $temp_post_type->name ); |
|
693 | + $description = sprintf( |
|
694 | + /* translators: %s: The subscription info */ |
|
695 | + __( 'Control the settings for your <a target="_blank" href="%1$s">%2$s</a> archive.', 'lsx-search' ), |
|
696 | + $page_url, |
|
697 | + $temp_post_type->label |
|
698 | + ); |
|
699 | + |
|
700 | + $tabs[ $post_type ] = array( |
|
701 | + 'title' => $temp_post_type->label, |
|
702 | + 'desc' => $description, |
|
703 | + ); |
|
704 | + } |
|
705 | + //} |
|
706 | + break; |
|
707 | + } |
|
708 | + } |
|
709 | + return $tabs; |
|
710 | + } |
|
711 | 711 | } |
@@ -53,19 +53,19 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function __construct() { |
55 | 55 | $this->load_classes(); |
56 | - add_action( 'admin_menu', array( $this, 'order_menus' ), 200 ); |
|
57 | - add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) ); |
|
58 | - add_filter( 'cmb2_override_meta_save', array( $this, 'save_previous_values' ), 20, 4 ); |
|
59 | - add_filter( 'cmb2_override_meta_remove', array( $this, 'save_previous_values' ), 20, 4 ); |
|
60 | - add_action( 'cmb2_save_field', array( $this, 'post_relations' ), 20, 4 ); |
|
61 | - add_action( 'cmb2_save_field', array( $this, 'create_query_fields' ), 20, 4 ); |
|
62 | - add_action( 'before_delete_post', array( $this, 'delete_post_meta_connections' ), 20, 1 ); |
|
63 | - add_action( 'cmb2_save_post_fields', array( $this, 'extract_plan_fields' ), 10, 4 ); |
|
56 | + add_action('admin_menu', array($this, 'order_menus'), 200); |
|
57 | + add_action('admin_enqueue_scripts', array($this, 'assets')); |
|
58 | + add_filter('cmb2_override_meta_save', array($this, 'save_previous_values'), 20, 4); |
|
59 | + add_filter('cmb2_override_meta_remove', array($this, 'save_previous_values'), 20, 4); |
|
60 | + add_action('cmb2_save_field', array($this, 'post_relations'), 20, 4); |
|
61 | + add_action('cmb2_save_field', array($this, 'create_query_fields'), 20, 4); |
|
62 | + add_action('before_delete_post', array($this, 'delete_post_meta_connections'), 20, 1); |
|
63 | + add_action('cmb2_save_post_fields', array($this, 'extract_plan_fields'), 10, 4); |
|
64 | 64 | |
65 | 65 | //add_action( 'cmb2_save_post_fields', array( $this, 'debugger_for_cmb2' ), 10, 4 ); |
66 | 66 | |
67 | 67 | // Customizer. |
68 | - add_filter( 'lsx_customizer_colour_selectors_body', array( $this, 'customizer_body_colours_handler' ), 15, 2 ); |
|
68 | + add_filter('lsx_customizer_colour_selectors_body', array($this, 'customizer_body_colours_handler'), 15, 2); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | /** |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public static function get_instance() { |
77 | 77 | // If the single instance hasn't been set, set it now. |
78 | - if ( null === self::$instance ) { |
|
78 | + if (null === self::$instance) { |
|
79 | 79 | self::$instance = new self(); |
80 | 80 | } |
81 | 81 | return self::$instance; |
@@ -102,57 +102,57 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function order_menus() { |
104 | 104 | global $menu, $submenu; |
105 | - if ( ! empty( $submenu ) ) { |
|
105 | + if ( ! empty($submenu)) { |
|
106 | 106 | $parent_check = array( |
107 | 107 | 'edit.php?post_type=plan', |
108 | 108 | 'edit.php?post_type=workout', |
109 | 109 | 'edit.php?post_type=meal', |
110 | 110 | ); |
111 | - foreach ( $submenu as $menu_id => $menu_values ) { |
|
112 | - if ( in_array( $menu_id, $parent_check ) ) { |
|
113 | - foreach ( $menu_values as $sub_menu_key => $sub_menu_values ) { |
|
114 | - switch ( $sub_menu_values[0] ) { |
|
111 | + foreach ($submenu as $menu_id => $menu_values) { |
|
112 | + if (in_array($menu_id, $parent_check)) { |
|
113 | + foreach ($menu_values as $sub_menu_key => $sub_menu_values) { |
|
114 | + switch ($sub_menu_values[0]) { |
|
115 | 115 | |
116 | - case __( 'Add New', 'lsx-health-plan' ): |
|
117 | - unset( $submenu[ $menu_id ][ $sub_menu_key ] ); |
|
116 | + case __('Add New', 'lsx-health-plan'): |
|
117 | + unset($submenu[$menu_id][$sub_menu_key]); |
|
118 | 118 | break; |
119 | 119 | |
120 | - case __( 'All', 'lsx-health-plan' ): |
|
120 | + case __('All', 'lsx-health-plan'): |
|
121 | 121 | $title = $sub_menu_values[0]; |
122 | 122 | // Check and change the label. |
123 | - switch ( $sub_menu_values[2] ) { |
|
123 | + switch ($sub_menu_values[2]) { |
|
124 | 124 | case 'edit.php?post_type=meal': |
125 | - $title = esc_attr__( 'Meals', 'lsx-health-plan' ); |
|
125 | + $title = esc_attr__('Meals', 'lsx-health-plan'); |
|
126 | 126 | break; |
127 | 127 | |
128 | 128 | case 'edit.php?post_type=recipe': |
129 | - $title = esc_attr__( 'Recipes', 'lsx-health-plan' ); |
|
129 | + $title = esc_attr__('Recipes', 'lsx-health-plan'); |
|
130 | 130 | break; |
131 | 131 | |
132 | 132 | case 'edit.php?post_type=workout': |
133 | - $title = esc_attr__( 'Workouts', 'lsx-health-plan' ); |
|
133 | + $title = esc_attr__('Workouts', 'lsx-health-plan'); |
|
134 | 134 | break; |
135 | 135 | |
136 | 136 | case 'edit.php?post_type=plan': |
137 | - $title = esc_attr__( 'Plans', 'lsx-health-plan' ); |
|
137 | + $title = esc_attr__('Plans', 'lsx-health-plan'); |
|
138 | 138 | break; |
139 | 139 | |
140 | 140 | case 'edit.php?post_type=video': |
141 | - $title = esc_attr__( 'Videos', 'lsx-health-plan' ); |
|
141 | + $title = esc_attr__('Videos', 'lsx-health-plan'); |
|
142 | 142 | break; |
143 | 143 | |
144 | 144 | case 'edit.php?post_type=exercise': |
145 | - $title = esc_attr__( 'Exercises', 'lsx-health-plan' ); |
|
145 | + $title = esc_attr__('Exercises', 'lsx-health-plan'); |
|
146 | 146 | break; |
147 | 147 | |
148 | 148 | case 'edit.php?post_type=tip': |
149 | - $title = esc_attr__( 'Tips', 'lsx-health-plan' ); |
|
149 | + $title = esc_attr__('Tips', 'lsx-health-plan'); |
|
150 | 150 | break; |
151 | 151 | |
152 | 152 | default: |
153 | 153 | break; |
154 | 154 | } |
155 | - $submenu[ $menu_id ][ $sub_menu_key ][0] = $title; // @codingStandardsIgnoreLine |
|
155 | + $submenu[$menu_id][$sub_menu_key][0] = $title; // @codingStandardsIgnoreLine |
|
156 | 156 | break; |
157 | 157 | |
158 | 158 | default: |
@@ -170,12 +170,12 @@ discard block |
||
170 | 170 | * @return void |
171 | 171 | */ |
172 | 172 | public function assets() { |
173 | - wp_enqueue_script( 'media-upload' ); |
|
174 | - wp_enqueue_script( 'thickbox' ); |
|
175 | - wp_enqueue_style( 'thickbox' ); |
|
173 | + wp_enqueue_script('media-upload'); |
|
174 | + wp_enqueue_script('thickbox'); |
|
175 | + wp_enqueue_style('thickbox'); |
|
176 | 176 | |
177 | - wp_enqueue_script( 'lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-admin.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
178 | - wp_enqueue_style( 'lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/css/lsx-health-plan-admin.css', array(), LSX_HEALTH_PLAN_VER ); |
|
177 | + wp_enqueue_script('lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-admin.min.js', array('jquery'), LSX_HEALTH_PLAN_VER, true); |
|
178 | + wp_enqueue_style('lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/css/lsx-health-plan-admin.css', array(), LSX_HEALTH_PLAN_VER); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
@@ -184,7 +184,7 @@ discard block |
||
184 | 184 | * @return void |
185 | 185 | */ |
186 | 186 | public function get_connections() { |
187 | - return apply_filters( 'lsx_health_plan_connections', $this->connections ); |
|
187 | + return apply_filters('lsx_health_plan_connections', $this->connections); |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | /** |
@@ -196,13 +196,13 @@ discard block |
||
196 | 196 | * @param [type] $cmb2 |
197 | 197 | * @return void |
198 | 198 | */ |
199 | - public function save_previous_values( $value_to_save, $a, $args, $cmb2 ) { |
|
200 | - if ( isset( $cmb2->data_to_save['ID'] ) ) { |
|
199 | + public function save_previous_values($value_to_save, $a, $args, $cmb2) { |
|
200 | + if (isset($cmb2->data_to_save['ID'])) { |
|
201 | 201 | $connections = $this->get_connections(); |
202 | - $post_type = get_post_type( $cmb2->data_to_save['ID'] ); |
|
203 | - if ( isset( $connections[ $post_type ] ) && array_key_exists( $a['field_id'], $connections[ $post_type ] ) ) { |
|
202 | + $post_type = get_post_type($cmb2->data_to_save['ID']); |
|
203 | + if (isset($connections[$post_type]) && array_key_exists($a['field_id'], $connections[$post_type])) { |
|
204 | 204 | // Get the previous values if the field, so we can run through them and remove the current ID from them later. |
205 | - $this->previous_values = get_post_meta( $a['id'], $a['field_id'], true ); |
|
205 | + $this->previous_values = get_post_meta($a['id'], $a['field_id'], true); |
|
206 | 206 | } |
207 | 207 | } |
208 | 208 | return $value_to_save; |
@@ -213,30 +213,30 @@ discard block |
||
213 | 213 | * |
214 | 214 | * @return void |
215 | 215 | */ |
216 | - public function post_relations( $field_id, $updated, $action, $cmb2 ) { |
|
216 | + public function post_relations($field_id, $updated, $action, $cmb2) { |
|
217 | 217 | // If the connections are empty then skip this function. |
218 | 218 | $connections = $this->get_connections(); |
219 | - if ( empty( $connections ) ) { |
|
219 | + if (empty($connections)) { |
|
220 | 220 | return; |
221 | 221 | } |
222 | 222 | |
223 | 223 | // If the field has been updated. |
224 | - if ( isset( $cmb2->data_to_save['ID'] ) ) { |
|
225 | - $post_type = get_post_type( $cmb2->data_to_save['ID'] ); |
|
226 | - if ( isset( $connections[ $post_type ] ) && array_key_exists( $field_id, $connections[ $post_type ] ) ) { |
|
227 | - $saved_values = get_post_meta( $cmb2->data_to_save['ID'], $field_id, true ); |
|
224 | + if (isset($cmb2->data_to_save['ID'])) { |
|
225 | + $post_type = get_post_type($cmb2->data_to_save['ID']); |
|
226 | + if (isset($connections[$post_type]) && array_key_exists($field_id, $connections[$post_type])) { |
|
227 | + $saved_values = get_post_meta($cmb2->data_to_save['ID'], $field_id, true); |
|
228 | 228 | |
229 | - if ( 'updated' === $action ) { |
|
230 | - $this->add_connected_posts( $saved_values, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
229 | + if ('updated' === $action) { |
|
230 | + $this->add_connected_posts($saved_values, $cmb2->data_to_save['ID'], $connections[$post_type][$field_id]); |
|
231 | 231 | // Check if any posts have been removed. |
232 | - if ( count( $this->previous_values ) > count( $saved_values ) ) { |
|
233 | - $posts_to_remove = array_diff( $this->previous_values, $saved_values ); |
|
234 | - if ( ! empty( $posts_to_remove ) ) { |
|
235 | - $this->remove_connected_posts( $posts_to_remove, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
232 | + if (count($this->previous_values) > count($saved_values)) { |
|
233 | + $posts_to_remove = array_diff($this->previous_values, $saved_values); |
|
234 | + if ( ! empty($posts_to_remove)) { |
|
235 | + $this->remove_connected_posts($posts_to_remove, $cmb2->data_to_save['ID'], $connections[$post_type][$field_id]); |
|
236 | 236 | } |
237 | 237 | } |
238 | - } else if ( 'removed' === $action && ! empty( $this->previous_values ) ) { |
|
239 | - $this->remove_connected_posts( $this->previous_values, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
238 | + } else if ('removed' === $action && ! empty($this->previous_values)) { |
|
239 | + $this->remove_connected_posts($this->previous_values, $cmb2->data_to_save['ID'], $connections[$post_type][$field_id]); |
|
240 | 240 | } |
241 | 241 | } |
242 | 242 | } |
@@ -250,26 +250,26 @@ discard block |
||
250 | 250 | * @param [type] $connected_key |
251 | 251 | * @return void |
252 | 252 | */ |
253 | - public function add_connected_posts( $values, $current_id, $connected_key ) { |
|
254 | - foreach ( $values as $value ) { |
|
255 | - $current_post_array = get_post_meta( $value, $connected_key, true ); |
|
253 | + public function add_connected_posts($values, $current_id, $connected_key) { |
|
254 | + foreach ($values as $value) { |
|
255 | + $current_post_array = get_post_meta($value, $connected_key, true); |
|
256 | 256 | $previous_values = $current_post_array; |
257 | 257 | |
258 | - if ( ! empty( $current_post_array ) ) { |
|
259 | - $current_post_array = array_map( 'strval', $current_post_array ); |
|
260 | - array_unique( $current_post_array ); |
|
258 | + if ( ! empty($current_post_array)) { |
|
259 | + $current_post_array = array_map('strval', $current_post_array); |
|
260 | + array_unique($current_post_array); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | // If the current connected post has no saved connections then we create it. |
264 | - if ( false === $current_post_array || empty( $current_post_array ) ) { |
|
265 | - $current_post_array = array( $current_id ); |
|
266 | - } elseif ( ! in_array( (string) $current_id, $current_post_array, true ) ) { |
|
264 | + if (false === $current_post_array || empty($current_post_array)) { |
|
265 | + $current_post_array = array($current_id); |
|
266 | + } elseif ( ! in_array((string) $current_id, $current_post_array, true)) { |
|
267 | 267 | $current_post_array[] = $current_id; |
268 | 268 | } |
269 | 269 | |
270 | 270 | // Check if the values are empty, if not update them. |
271 | - if ( ! empty( $current_post_array ) ) { |
|
272 | - update_post_meta( $value, $connected_key, $current_post_array, $previous_values ); |
|
271 | + if ( ! empty($current_post_array)) { |
|
272 | + update_post_meta($value, $connected_key, $current_post_array, $previous_values); |
|
273 | 273 | } |
274 | 274 | } |
275 | 275 | } |
@@ -282,25 +282,25 @@ discard block |
||
282 | 282 | * @param [type] $connected_key |
283 | 283 | * @return void |
284 | 284 | */ |
285 | - public function remove_connected_posts( $values, $current_ID, $connected_key ) { |
|
286 | - foreach ( $values as $value ) { |
|
287 | - $current_post_array = get_post_meta( $value, $connected_key, true ); |
|
285 | + public function remove_connected_posts($values, $current_ID, $connected_key) { |
|
286 | + foreach ($values as $value) { |
|
287 | + $current_post_array = get_post_meta($value, $connected_key, true); |
|
288 | 288 | $new_array = array(); |
289 | 289 | // Loop through only if the current ID has been saved against the post. |
290 | - if ( in_array( $current_ID, $current_post_array, false ) ) { |
|
290 | + if (in_array($current_ID, $current_post_array, false)) { |
|
291 | 291 | |
292 | 292 | // Loop through all the connected saved IDS. |
293 | - foreach ( $current_post_array as $cpa ) { |
|
294 | - if ( (int) $cpa !== (int) $current_ID ) { |
|
293 | + foreach ($current_post_array as $cpa) { |
|
294 | + if ((int) $cpa !== (int) $current_ID) { |
|
295 | 295 | $new_array[] = $cpa; |
296 | 296 | } |
297 | 297 | } |
298 | - if ( ! empty( $new_array ) ) { |
|
299 | - $new_array = array_unique( $new_array ); |
|
300 | - delete_post_meta( $value, $connected_key ); |
|
301 | - add_post_meta( $value, $connected_key, $new_array, true ); |
|
298 | + if ( ! empty($new_array)) { |
|
299 | + $new_array = array_unique($new_array); |
|
300 | + delete_post_meta($value, $connected_key); |
|
301 | + add_post_meta($value, $connected_key, $new_array, true); |
|
302 | 302 | } else { |
303 | - delete_post_meta( $value, $connected_key ); |
|
303 | + delete_post_meta($value, $connected_key); |
|
304 | 304 | } |
305 | 305 | } |
306 | 306 | } |
@@ -312,13 +312,13 @@ discard block |
||
312 | 312 | * @param string $item_id |
313 | 313 | * @return void |
314 | 314 | */ |
315 | - public function delete_post_meta_connections( $item_id = '' ) { |
|
316 | - if ( '' !== $item_id ) { |
|
317 | - $post_type = get_post_type( $item_id ); |
|
315 | + public function delete_post_meta_connections($item_id = '') { |
|
316 | + if ('' !== $item_id) { |
|
317 | + $post_type = get_post_type($item_id); |
|
318 | 318 | $connections = $this->get_connections(); |
319 | - if ( isset( $connections[ $post_type ] ) && ! empty( $connections[ $post_type ] ) && is_array( $connections[ $post_type ] ) ) { |
|
320 | - foreach ( $connections[ $post_type ] as $this_key => $connected_key ) { |
|
321 | - $this->delete_connected_items( $item_id, $this_key, $connected_key ); |
|
319 | + if (isset($connections[$post_type]) && ! empty($connections[$post_type]) && is_array($connections[$post_type])) { |
|
320 | + foreach ($connections[$post_type] as $this_key => $connected_key) { |
|
321 | + $this->delete_connected_items($item_id, $this_key, $connected_key); |
|
322 | 322 | } |
323 | 323 | } |
324 | 324 | } |
@@ -332,23 +332,23 @@ discard block |
||
332 | 332 | * @param string $connected_key |
333 | 333 | * @return void |
334 | 334 | */ |
335 | - public function delete_connected_items( $item_id = '', $this_key, $connected_key ) { |
|
336 | - if ( '' !== $item_id ) { |
|
337 | - $connected_items = get_post_meta( $item_id, $this_key, true ); |
|
338 | - if ( ! empty( $connected_items ) ) { |
|
339 | - foreach ( $connected_items as $con_id ) { |
|
335 | + public function delete_connected_items($item_id = '', $this_key, $connected_key) { |
|
336 | + if ('' !== $item_id) { |
|
337 | + $connected_items = get_post_meta($item_id, $this_key, true); |
|
338 | + if ( ! empty($connected_items)) { |
|
339 | + foreach ($connected_items as $con_id) { |
|
340 | 340 | // Get the connected item array from the connected item. |
341 | - $their_connections = get_post_meta( $con_id, $connected_key, true ); |
|
342 | - if ( ! empty( $their_connections ) ) { |
|
341 | + $their_connections = get_post_meta($con_id, $connected_key, true); |
|
342 | + if ( ! empty($their_connections)) { |
|
343 | 343 | $new_connections = $their_connections; |
344 | 344 | // Run through the array and remove the post to be deleteds ID. |
345 | - foreach ( $their_connections as $ckey => $cvalue ) { |
|
346 | - if ( (int) $item_id === (int) $cvalue ) { |
|
347 | - unset( $new_connections[ $ckey ] ); |
|
345 | + foreach ($their_connections as $ckey => $cvalue) { |
|
346 | + if ((int) $item_id === (int) $cvalue) { |
|
347 | + unset($new_connections[$ckey]); |
|
348 | 348 | } |
349 | 349 | } |
350 | 350 | // Now we save the field. |
351 | - update_post_meta( $con_id, $connected_key, $new_connections, $their_connections ); |
|
351 | + update_post_meta($con_id, $connected_key, $new_connections, $their_connections); |
|
352 | 352 | } |
353 | 353 | } |
354 | 354 | } |
@@ -360,20 +360,20 @@ discard block |
||
360 | 360 | * |
361 | 361 | * @return void |
362 | 362 | */ |
363 | - public function create_query_fields( $field_id, $updated, $action, $cmb2 ) { |
|
363 | + public function create_query_fields($field_id, $updated, $action, $cmb2) { |
|
364 | 364 | // If the connections are empty then skip this function. |
365 | 365 | $search_fields = array( |
366 | 366 | 'plan_product', |
367 | 367 | ); |
368 | - if ( ! in_array( $field_id, $search_fields ) ) { |
|
368 | + if ( ! in_array($field_id, $search_fields)) { |
|
369 | 369 | return; |
370 | 370 | } |
371 | 371 | |
372 | 372 | // If the field has been updated. |
373 | - if ( isset( $cmb2->data_to_save['ID'] ) && isset( $cmb2->data_to_save[ $field_id . '_results' ] ) && ! empty( $cmb2->data_to_save[ $field_id . '_results' ] ) ) { |
|
374 | - delete_post_meta( $cmb2->data_to_save['ID'], '_' . $field_id . '_id' ); |
|
375 | - foreach ( $cmb2->data_to_save[ $field_id . '_results' ] as $temp ) { |
|
376 | - add_post_meta( $cmb2->data_to_save['ID'], '_' . $field_id . '_id', $temp, false ); |
|
373 | + if (isset($cmb2->data_to_save['ID']) && isset($cmb2->data_to_save[$field_id . '_results']) && ! empty($cmb2->data_to_save[$field_id . '_results'])) { |
|
374 | + delete_post_meta($cmb2->data_to_save['ID'], '_' . $field_id . '_id'); |
|
375 | + foreach ($cmb2->data_to_save[$field_id . '_results'] as $temp) { |
|
376 | + add_post_meta($cmb2->data_to_save['ID'], '_' . $field_id . '_id', $temp, false); |
|
377 | 377 | } |
378 | 378 | } |
379 | 379 | } |
@@ -387,26 +387,26 @@ discard block |
||
387 | 387 | * @param [type] $cmb2 |
388 | 388 | * @return void |
389 | 389 | */ |
390 | - public function extract_plan_fields( $object_id, $cmb_id, $updated, $cmb2 ) { |
|
391 | - if ( 'plan_sections_metabox' === $cmb_id ) { |
|
390 | + public function extract_plan_fields($object_id, $cmb_id, $updated, $cmb2) { |
|
391 | + if ('plan_sections_metabox' === $cmb_id) { |
|
392 | 392 | // Check if our fields are available, and cycle through them. |
393 | - if ( isset( $cmb2->data_to_save['plan_sections'] ) && ! empty( $cmb2->data_to_save['plan_sections'] ) ) { |
|
393 | + if (isset($cmb2->data_to_save['plan_sections']) && ! empty($cmb2->data_to_save['plan_sections'])) { |
|
394 | 394 | $fields_to_save = array(); |
395 | 395 | // Run through each row of fields. |
396 | - foreach ( $cmb2->data_to_save['plan_sections'] as $field_index => $fields ) { |
|
396 | + foreach ($cmb2->data_to_save['plan_sections'] as $field_index => $fields) { |
|
397 | 397 | // Run through each field in that section. |
398 | - foreach ( $fields as $field_key => $field_value ) { |
|
398 | + foreach ($fields as $field_key => $field_value) { |
|
399 | 399 | $stored_values_key = 'plan_sections_' . $field_index . '_' . $field_key . '_store'; |
400 | - if ( isset( $cmb2->data_to_save[ $stored_values_key ] ) && ! empty( $cmb2->data_to_save[ $stored_values_key ] ) ) { |
|
401 | - $stored_values = $cmb2->data_to_save[ $stored_values_key ]; |
|
402 | - $stored_values = explode( ',', $stored_values ); |
|
403 | - foreach ( $stored_values as $id_to_save ) { |
|
404 | - $fields_to_save[ $field_key ][] = $id_to_save; |
|
400 | + if (isset($cmb2->data_to_save[$stored_values_key]) && ! empty($cmb2->data_to_save[$stored_values_key])) { |
|
401 | + $stored_values = $cmb2->data_to_save[$stored_values_key]; |
|
402 | + $stored_values = explode(',', $stored_values); |
|
403 | + foreach ($stored_values as $id_to_save) { |
|
404 | + $fields_to_save[$field_key][] = $id_to_save; |
|
405 | 405 | } |
406 | 406 | } |
407 | 407 | } |
408 | 408 | } |
409 | - $this->save_field_array( $object_id, $fields_to_save ); |
|
409 | + $this->save_field_array($object_id, $fields_to_save); |
|
410 | 410 | } |
411 | 411 | } |
412 | 412 | } |
@@ -418,23 +418,23 @@ discard block |
||
418 | 418 | * @param array $fields_to_save |
419 | 419 | * @return void |
420 | 420 | */ |
421 | - public function save_field_array( $object_id = 0, $fields_to_save = array() ) { |
|
421 | + public function save_field_array($object_id = 0, $fields_to_save = array()) { |
|
422 | 422 | |
423 | 423 | // Run through the fields and save the meta items. |
424 | - if ( ! empty( $fields_to_save ) ) { |
|
425 | - foreach ( $fields_to_save as $field_key => $field_values ) { |
|
426 | - delete_post_meta( $object_id, $field_key ); |
|
424 | + if ( ! empty($fields_to_save)) { |
|
425 | + foreach ($fields_to_save as $field_key => $field_values) { |
|
426 | + delete_post_meta($object_id, $field_key); |
|
427 | 427 | |
428 | - $field_values = array_unique( $field_values ); |
|
429 | - foreach ( $field_values as $field_value ) { |
|
430 | - add_post_meta( $object_id, $field_key, $field_value, false ); |
|
428 | + $field_values = array_unique($field_values); |
|
429 | + foreach ($field_values as $field_value) { |
|
430 | + add_post_meta($object_id, $field_key, $field_value, false); |
|
431 | 431 | } |
432 | 432 | } |
433 | 433 | } |
434 | 434 | } |
435 | 435 | |
436 | - public function debugger_for_cmb2( $object_id, $cmb_id, $updated, $cmb2 ) { |
|
437 | - if ( 'workout_section_6_metabox' === $cmb_id ) { |
|
436 | + public function debugger_for_cmb2($object_id, $cmb_id, $updated, $cmb2) { |
|
437 | + if ('workout_section_6_metabox' === $cmb_id) { |
|
438 | 438 | die(); |
439 | 439 | } |
440 | 440 | } |
@@ -442,7 +442,7 @@ discard block |
||
442 | 442 | /** |
443 | 443 | * Handle body colours that might be change by LSX Customizer. |
444 | 444 | */ |
445 | - public function customizer_body_colours_handler( $css, $colors ) { |
|
445 | + public function customizer_body_colours_handler($css, $colors) { |
|
446 | 446 | $css .= ' |
447 | 447 | @import "' . LSX_HEALTH_PLAN_PATH . '/assets/css/scss/partials/customizer-health-plan-body-colours"; |
448 | 448 |
@@ -8,442 +8,442 @@ discard block |
||
8 | 8 | */ |
9 | 9 | class Admin { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * |
|
16 | - * @var object \lsx_health_plan\classes\Admin() |
|
17 | - */ |
|
18 | - protected static $instance = null; |
|
19 | - |
|
20 | - /** |
|
21 | - * The post relation fields |
|
22 | - * |
|
23 | - * @var array |
|
24 | - */ |
|
25 | - public $connections = array(); |
|
26 | - |
|
27 | - /** |
|
28 | - * Stores the previous values needed to remove the post relations |
|
29 | - * |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - public $previous_values = array(); |
|
33 | - |
|
34 | - /** |
|
35 | - * @var object \lsx_health_plan\classes\admin\Settings(); |
|
36 | - */ |
|
37 | - public $settings; |
|
38 | - |
|
39 | - /** |
|
40 | - * @var object \lsx_health_plan\classes\admin\Help_Page(); |
|
41 | - */ |
|
42 | - public $help; |
|
43 | - |
|
44 | - /** |
|
45 | - * Holds the settings page theme functions |
|
46 | - * |
|
47 | - * @var object \lsx_health_plan\classes\admin\Settings_Theme(); |
|
48 | - */ |
|
49 | - public $settings_theme; |
|
50 | - |
|
51 | - /** |
|
52 | - * Constructor |
|
53 | - */ |
|
54 | - public function __construct() { |
|
55 | - $this->load_classes(); |
|
56 | - add_action( 'admin_menu', array( $this, 'order_menus' ), 200 ); |
|
57 | - add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) ); |
|
58 | - add_filter( 'cmb2_override_meta_save', array( $this, 'save_previous_values' ), 20, 4 ); |
|
59 | - add_filter( 'cmb2_override_meta_remove', array( $this, 'save_previous_values' ), 20, 4 ); |
|
60 | - add_action( 'cmb2_save_field', array( $this, 'post_relations' ), 20, 4 ); |
|
61 | - add_action( 'cmb2_save_field', array( $this, 'create_query_fields' ), 20, 4 ); |
|
62 | - add_action( 'before_delete_post', array( $this, 'delete_post_meta_connections' ), 20, 1 ); |
|
63 | - add_action( 'cmb2_save_post_fields', array( $this, 'extract_plan_fields' ), 10, 4 ); |
|
64 | - |
|
65 | - //add_action( 'cmb2_save_post_fields', array( $this, 'debugger_for_cmb2' ), 10, 4 ); |
|
66 | - |
|
67 | - // Customizer. |
|
68 | - add_filter( 'lsx_customizer_colour_selectors_body', array( $this, 'customizer_body_colours_handler' ), 15, 2 ); |
|
69 | - } |
|
70 | - |
|
71 | - /** |
|
72 | - * Return an instance of this class. |
|
73 | - * |
|
74 | - * @return object \lsx\member_directory\classes\Admin() A single instance of this class. |
|
75 | - */ |
|
76 | - public static function get_instance() { |
|
77 | - // If the single instance hasn't been set, set it now. |
|
78 | - if ( null === self::$instance ) { |
|
79 | - self::$instance = new self(); |
|
80 | - } |
|
81 | - return self::$instance; |
|
82 | - } |
|
83 | - |
|
84 | - /** |
|
85 | - * Loads the admin subclasses |
|
86 | - */ |
|
87 | - private function load_classes() { |
|
88 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/class-settings.php'; |
|
89 | - $this->settings = admin\Settings::get_instance(); |
|
90 | - |
|
91 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/class-help-page.php'; |
|
92 | - $this->help = admin\Help_Page::get_instance(); |
|
93 | - |
|
94 | - require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/class-settings-theme.php'; |
|
95 | - $this->settings_theme = admin\Settings_Theme::get_instance(); |
|
96 | - } |
|
97 | - |
|
98 | - /** |
|
99 | - * Orders the HP menu Items |
|
100 | - * |
|
101 | - * @return void |
|
102 | - */ |
|
103 | - public function order_menus() { |
|
104 | - global $menu, $submenu; |
|
105 | - if ( ! empty( $submenu ) ) { |
|
106 | - $parent_check = array( |
|
107 | - 'edit.php?post_type=plan', |
|
108 | - 'edit.php?post_type=workout', |
|
109 | - 'edit.php?post_type=meal', |
|
110 | - ); |
|
111 | - foreach ( $submenu as $menu_id => $menu_values ) { |
|
112 | - if ( in_array( $menu_id, $parent_check ) ) { |
|
113 | - foreach ( $menu_values as $sub_menu_key => $sub_menu_values ) { |
|
114 | - switch ( $sub_menu_values[0] ) { |
|
115 | - |
|
116 | - case __( 'Add New', 'lsx-health-plan' ): |
|
117 | - unset( $submenu[ $menu_id ][ $sub_menu_key ] ); |
|
118 | - break; |
|
119 | - |
|
120 | - case __( 'All', 'lsx-health-plan' ): |
|
121 | - $title = $sub_menu_values[0]; |
|
122 | - // Check and change the label. |
|
123 | - switch ( $sub_menu_values[2] ) { |
|
124 | - case 'edit.php?post_type=meal': |
|
125 | - $title = esc_attr__( 'Meals', 'lsx-health-plan' ); |
|
126 | - break; |
|
127 | - |
|
128 | - case 'edit.php?post_type=recipe': |
|
129 | - $title = esc_attr__( 'Recipes', 'lsx-health-plan' ); |
|
130 | - break; |
|
131 | - |
|
132 | - case 'edit.php?post_type=workout': |
|
133 | - $title = esc_attr__( 'Workouts', 'lsx-health-plan' ); |
|
134 | - break; |
|
135 | - |
|
136 | - case 'edit.php?post_type=plan': |
|
137 | - $title = esc_attr__( 'Plans', 'lsx-health-plan' ); |
|
138 | - break; |
|
139 | - |
|
140 | - case 'edit.php?post_type=video': |
|
141 | - $title = esc_attr__( 'Videos', 'lsx-health-plan' ); |
|
142 | - break; |
|
143 | - |
|
144 | - case 'edit.php?post_type=exercise': |
|
145 | - $title = esc_attr__( 'Exercises', 'lsx-health-plan' ); |
|
146 | - break; |
|
147 | - |
|
148 | - case 'edit.php?post_type=tip': |
|
149 | - $title = esc_attr__( 'Tips', 'lsx-health-plan' ); |
|
150 | - break; |
|
151 | - |
|
152 | - default: |
|
153 | - break; |
|
154 | - } |
|
155 | - $submenu[ $menu_id ][ $sub_menu_key ][0] = $title; // @codingStandardsIgnoreLine |
|
156 | - break; |
|
157 | - |
|
158 | - default: |
|
159 | - break; |
|
160 | - } |
|
161 | - } |
|
162 | - } |
|
163 | - } |
|
164 | - } |
|
165 | - } |
|
166 | - |
|
167 | - /** |
|
168 | - * Undocumented function |
|
169 | - * |
|
170 | - * @return void |
|
171 | - */ |
|
172 | - public function assets() { |
|
173 | - wp_enqueue_script( 'media-upload' ); |
|
174 | - wp_enqueue_script( 'thickbox' ); |
|
175 | - wp_enqueue_style( 'thickbox' ); |
|
176 | - |
|
177 | - wp_enqueue_script( 'lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-admin.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
178 | - wp_enqueue_style( 'lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/css/lsx-health-plan-admin.css', array(), LSX_HEALTH_PLAN_VER ); |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * Returns the registered connections. |
|
183 | - * |
|
184 | - * @return void |
|
185 | - */ |
|
186 | - public function get_connections() { |
|
187 | - return apply_filters( 'lsx_health_plan_connections', $this->connections ); |
|
188 | - } |
|
189 | - |
|
190 | - /** |
|
191 | - * Saves the previous values before they are overwritten by the new ones. |
|
192 | - * |
|
193 | - * @param [type] $value_to_save |
|
194 | - * @param [type] $a |
|
195 | - * @param [type] $args |
|
196 | - * @param [type] $cmb2 |
|
197 | - * @return void |
|
198 | - */ |
|
199 | - public function save_previous_values( $value_to_save, $a, $args, $cmb2 ) { |
|
200 | - if ( isset( $cmb2->data_to_save['ID'] ) ) { |
|
201 | - $connections = $this->get_connections(); |
|
202 | - $post_type = get_post_type( $cmb2->data_to_save['ID'] ); |
|
203 | - if ( isset( $connections[ $post_type ] ) && array_key_exists( $a['field_id'], $connections[ $post_type ] ) ) { |
|
204 | - // Get the previous values if the field, so we can run through them and remove the current ID from them later. |
|
205 | - $this->previous_values = get_post_meta( $a['id'], $a['field_id'], true ); |
|
206 | - } |
|
207 | - } |
|
208 | - return $value_to_save; |
|
209 | - } |
|
210 | - |
|
211 | - /** |
|
212 | - * Sets up the "post relations" |
|
213 | - * |
|
214 | - * @return void |
|
215 | - */ |
|
216 | - public function post_relations( $field_id, $updated, $action, $cmb2 ) { |
|
217 | - // If the connections are empty then skip this function. |
|
218 | - $connections = $this->get_connections(); |
|
219 | - if ( empty( $connections ) ) { |
|
220 | - return; |
|
221 | - } |
|
222 | - |
|
223 | - // If the field has been updated. |
|
224 | - if ( isset( $cmb2->data_to_save['ID'] ) ) { |
|
225 | - $post_type = get_post_type( $cmb2->data_to_save['ID'] ); |
|
226 | - if ( isset( $connections[ $post_type ] ) && array_key_exists( $field_id, $connections[ $post_type ] ) ) { |
|
227 | - $saved_values = get_post_meta( $cmb2->data_to_save['ID'], $field_id, true ); |
|
228 | - |
|
229 | - if ( 'updated' === $action ) { |
|
230 | - $this->add_connected_posts( $saved_values, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
231 | - // Check if any posts have been removed. |
|
232 | - if ( count( $this->previous_values ) > count( $saved_values ) ) { |
|
233 | - $posts_to_remove = array_diff( $this->previous_values, $saved_values ); |
|
234 | - if ( ! empty( $posts_to_remove ) ) { |
|
235 | - $this->remove_connected_posts( $posts_to_remove, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
236 | - } |
|
237 | - } |
|
238 | - } else if ( 'removed' === $action && ! empty( $this->previous_values ) ) { |
|
239 | - $this->remove_connected_posts( $this->previous_values, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
240 | - } |
|
241 | - } |
|
242 | - } |
|
243 | - } |
|
244 | - |
|
245 | - /** |
|
246 | - * Updates the connected posts witht he current post ID |
|
247 | - * |
|
248 | - * @param [type] $values |
|
249 | - * @param [type] $current_id |
|
250 | - * @param [type] $connected_key |
|
251 | - * @return void |
|
252 | - */ |
|
253 | - public function add_connected_posts( $values, $current_id, $connected_key ) { |
|
254 | - foreach ( $values as $value ) { |
|
255 | - $current_post_array = get_post_meta( $value, $connected_key, true ); |
|
256 | - $previous_values = $current_post_array; |
|
257 | - |
|
258 | - if ( ! empty( $current_post_array ) ) { |
|
259 | - $current_post_array = array_map( 'strval', $current_post_array ); |
|
260 | - array_unique( $current_post_array ); |
|
261 | - } |
|
262 | - |
|
263 | - // If the current connected post has no saved connections then we create it. |
|
264 | - if ( false === $current_post_array || empty( $current_post_array ) ) { |
|
265 | - $current_post_array = array( $current_id ); |
|
266 | - } elseif ( ! in_array( (string) $current_id, $current_post_array, true ) ) { |
|
267 | - $current_post_array[] = $current_id; |
|
268 | - } |
|
269 | - |
|
270 | - // Check if the values are empty, if not update them. |
|
271 | - if ( ! empty( $current_post_array ) ) { |
|
272 | - update_post_meta( $value, $connected_key, $current_post_array, $previous_values ); |
|
273 | - } |
|
274 | - } |
|
275 | - } |
|
276 | - |
|
277 | - /** |
|
278 | - * Removes the post ID from the connected posts. |
|
279 | - * |
|
280 | - * @param [type] $values |
|
281 | - * @param [type] $current_ID |
|
282 | - * @param [type] $connected_key |
|
283 | - * @return void |
|
284 | - */ |
|
285 | - public function remove_connected_posts( $values, $current_ID, $connected_key ) { |
|
286 | - foreach ( $values as $value ) { |
|
287 | - $current_post_array = get_post_meta( $value, $connected_key, true ); |
|
288 | - $new_array = array(); |
|
289 | - // Loop through only if the current ID has been saved against the post. |
|
290 | - if ( in_array( $current_ID, $current_post_array, false ) ) { |
|
291 | - |
|
292 | - // Loop through all the connected saved IDS. |
|
293 | - foreach ( $current_post_array as $cpa ) { |
|
294 | - if ( (int) $cpa !== (int) $current_ID ) { |
|
295 | - $new_array[] = $cpa; |
|
296 | - } |
|
297 | - } |
|
298 | - if ( ! empty( $new_array ) ) { |
|
299 | - $new_array = array_unique( $new_array ); |
|
300 | - delete_post_meta( $value, $connected_key ); |
|
301 | - add_post_meta( $value, $connected_key, $new_array, true ); |
|
302 | - } else { |
|
303 | - delete_post_meta( $value, $connected_key ); |
|
304 | - } |
|
305 | - } |
|
306 | - } |
|
307 | - } |
|
308 | - |
|
309 | - /** |
|
310 | - * Runs on 'before_delete_post' to run through and remove this post ID from its connected values. |
|
311 | - * |
|
312 | - * @param string $item_id |
|
313 | - * @return void |
|
314 | - */ |
|
315 | - public function delete_post_meta_connections( $item_id = '' ) { |
|
316 | - if ( '' !== $item_id ) { |
|
317 | - $post_type = get_post_type( $item_id ); |
|
318 | - $connections = $this->get_connections(); |
|
319 | - if ( isset( $connections[ $post_type ] ) && ! empty( $connections[ $post_type ] ) && is_array( $connections[ $post_type ] ) ) { |
|
320 | - foreach ( $connections[ $post_type ] as $this_key => $connected_key ) { |
|
321 | - $this->delete_connected_items( $item_id, $this_key, $connected_key ); |
|
322 | - } |
|
323 | - } |
|
324 | - } |
|
325 | - } |
|
326 | - |
|
327 | - /** |
|
328 | - * This function will remvoe the post id fomr its connected posts. |
|
329 | - * |
|
330 | - * @param string $item_id |
|
331 | - * @param string $this_key |
|
332 | - * @param string $connected_key |
|
333 | - * @return void |
|
334 | - */ |
|
335 | - public function delete_connected_items( $item_id = '', $this_key, $connected_key ) { |
|
336 | - if ( '' !== $item_id ) { |
|
337 | - $connected_items = get_post_meta( $item_id, $this_key, true ); |
|
338 | - if ( ! empty( $connected_items ) ) { |
|
339 | - foreach ( $connected_items as $con_id ) { |
|
340 | - // Get the connected item array from the connected item. |
|
341 | - $their_connections = get_post_meta( $con_id, $connected_key, true ); |
|
342 | - if ( ! empty( $their_connections ) ) { |
|
343 | - $new_connections = $their_connections; |
|
344 | - // Run through the array and remove the post to be deleteds ID. |
|
345 | - foreach ( $their_connections as $ckey => $cvalue ) { |
|
346 | - if ( (int) $item_id === (int) $cvalue ) { |
|
347 | - unset( $new_connections[ $ckey ] ); |
|
348 | - } |
|
349 | - } |
|
350 | - // Now we save the field. |
|
351 | - update_post_meta( $con_id, $connected_key, $new_connections, $their_connections ); |
|
352 | - } |
|
353 | - } |
|
354 | - } |
|
355 | - } |
|
356 | - } |
|
357 | - |
|
358 | - /** |
|
359 | - * Saves the serialized post ids in singular custom fields so they are easily queried using WP_Query |
|
360 | - * |
|
361 | - * @return void |
|
362 | - */ |
|
363 | - public function create_query_fields( $field_id, $updated, $action, $cmb2 ) { |
|
364 | - // If the connections are empty then skip this function. |
|
365 | - $search_fields = array( |
|
366 | - 'plan_product', |
|
367 | - ); |
|
368 | - if ( ! in_array( $field_id, $search_fields ) ) { |
|
369 | - return; |
|
370 | - } |
|
371 | - |
|
372 | - // If the field has been updated. |
|
373 | - if ( isset( $cmb2->data_to_save['ID'] ) && isset( $cmb2->data_to_save[ $field_id . '_results' ] ) && ! empty( $cmb2->data_to_save[ $field_id . '_results' ] ) ) { |
|
374 | - delete_post_meta( $cmb2->data_to_save['ID'], '_' . $field_id . '_id' ); |
|
375 | - foreach ( $cmb2->data_to_save[ $field_id . '_results' ] as $temp ) { |
|
376 | - add_post_meta( $cmb2->data_to_save['ID'], '_' . $field_id . '_id', $temp, false ); |
|
377 | - } |
|
378 | - } |
|
379 | - } |
|
380 | - |
|
381 | - /** |
|
382 | - * Extract the plan fields so they save to an indexable array. |
|
383 | - * |
|
384 | - * @param [type] $object_id |
|
385 | - * @param [type] $cmb_id |
|
386 | - * @param [type] $updated |
|
387 | - * @param [type] $cmb2 |
|
388 | - * @return void |
|
389 | - */ |
|
390 | - public function extract_plan_fields( $object_id, $cmb_id, $updated, $cmb2 ) { |
|
391 | - if ( 'plan_sections_metabox' === $cmb_id ) { |
|
392 | - // Check if our fields are available, and cycle through them. |
|
393 | - if ( isset( $cmb2->data_to_save['plan_sections'] ) && ! empty( $cmb2->data_to_save['plan_sections'] ) ) { |
|
394 | - $fields_to_save = array(); |
|
395 | - // Run through each row of fields. |
|
396 | - foreach ( $cmb2->data_to_save['plan_sections'] as $field_index => $fields ) { |
|
397 | - // Run through each field in that section. |
|
398 | - foreach ( $fields as $field_key => $field_value ) { |
|
399 | - $stored_values_key = 'plan_sections_' . $field_index . '_' . $field_key . '_store'; |
|
400 | - if ( isset( $cmb2->data_to_save[ $stored_values_key ] ) && ! empty( $cmb2->data_to_save[ $stored_values_key ] ) ) { |
|
401 | - $stored_values = $cmb2->data_to_save[ $stored_values_key ]; |
|
402 | - $stored_values = explode( ',', $stored_values ); |
|
403 | - foreach ( $stored_values as $id_to_save ) { |
|
404 | - $fields_to_save[ $field_key ][] = $id_to_save; |
|
405 | - } |
|
406 | - } |
|
407 | - } |
|
408 | - } |
|
409 | - $this->save_field_array( $object_id, $fields_to_save ); |
|
410 | - } |
|
411 | - } |
|
412 | - } |
|
413 | - |
|
414 | - /** |
|
415 | - * Runs through the supplied array and saved the fields to the current Object. |
|
416 | - * |
|
417 | - * @param integer $object_id |
|
418 | - * @param array $fields_to_save |
|
419 | - * @return void |
|
420 | - */ |
|
421 | - public function save_field_array( $object_id = 0, $fields_to_save = array() ) { |
|
422 | - |
|
423 | - // Run through the fields and save the meta items. |
|
424 | - if ( ! empty( $fields_to_save ) ) { |
|
425 | - foreach ( $fields_to_save as $field_key => $field_values ) { |
|
426 | - delete_post_meta( $object_id, $field_key ); |
|
427 | - |
|
428 | - $field_values = array_unique( $field_values ); |
|
429 | - foreach ( $field_values as $field_value ) { |
|
430 | - add_post_meta( $object_id, $field_key, $field_value, false ); |
|
431 | - } |
|
432 | - } |
|
433 | - } |
|
434 | - } |
|
435 | - |
|
436 | - public function debugger_for_cmb2( $object_id, $cmb_id, $updated, $cmb2 ) { |
|
437 | - if ( 'workout_section_6_metabox' === $cmb_id ) { |
|
438 | - die(); |
|
439 | - } |
|
440 | - } |
|
441 | - |
|
442 | - /** |
|
443 | - * Handle body colours that might be change by LSX Customizer. |
|
444 | - */ |
|
445 | - public function customizer_body_colours_handler( $css, $colors ) { |
|
446 | - $css .= ' |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * |
|
16 | + * @var object \lsx_health_plan\classes\Admin() |
|
17 | + */ |
|
18 | + protected static $instance = null; |
|
19 | + |
|
20 | + /** |
|
21 | + * The post relation fields |
|
22 | + * |
|
23 | + * @var array |
|
24 | + */ |
|
25 | + public $connections = array(); |
|
26 | + |
|
27 | + /** |
|
28 | + * Stores the previous values needed to remove the post relations |
|
29 | + * |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + public $previous_values = array(); |
|
33 | + |
|
34 | + /** |
|
35 | + * @var object \lsx_health_plan\classes\admin\Settings(); |
|
36 | + */ |
|
37 | + public $settings; |
|
38 | + |
|
39 | + /** |
|
40 | + * @var object \lsx_health_plan\classes\admin\Help_Page(); |
|
41 | + */ |
|
42 | + public $help; |
|
43 | + |
|
44 | + /** |
|
45 | + * Holds the settings page theme functions |
|
46 | + * |
|
47 | + * @var object \lsx_health_plan\classes\admin\Settings_Theme(); |
|
48 | + */ |
|
49 | + public $settings_theme; |
|
50 | + |
|
51 | + /** |
|
52 | + * Constructor |
|
53 | + */ |
|
54 | + public function __construct() { |
|
55 | + $this->load_classes(); |
|
56 | + add_action( 'admin_menu', array( $this, 'order_menus' ), 200 ); |
|
57 | + add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) ); |
|
58 | + add_filter( 'cmb2_override_meta_save', array( $this, 'save_previous_values' ), 20, 4 ); |
|
59 | + add_filter( 'cmb2_override_meta_remove', array( $this, 'save_previous_values' ), 20, 4 ); |
|
60 | + add_action( 'cmb2_save_field', array( $this, 'post_relations' ), 20, 4 ); |
|
61 | + add_action( 'cmb2_save_field', array( $this, 'create_query_fields' ), 20, 4 ); |
|
62 | + add_action( 'before_delete_post', array( $this, 'delete_post_meta_connections' ), 20, 1 ); |
|
63 | + add_action( 'cmb2_save_post_fields', array( $this, 'extract_plan_fields' ), 10, 4 ); |
|
64 | + |
|
65 | + //add_action( 'cmb2_save_post_fields', array( $this, 'debugger_for_cmb2' ), 10, 4 ); |
|
66 | + |
|
67 | + // Customizer. |
|
68 | + add_filter( 'lsx_customizer_colour_selectors_body', array( $this, 'customizer_body_colours_handler' ), 15, 2 ); |
|
69 | + } |
|
70 | + |
|
71 | + /** |
|
72 | + * Return an instance of this class. |
|
73 | + * |
|
74 | + * @return object \lsx\member_directory\classes\Admin() A single instance of this class. |
|
75 | + */ |
|
76 | + public static function get_instance() { |
|
77 | + // If the single instance hasn't been set, set it now. |
|
78 | + if ( null === self::$instance ) { |
|
79 | + self::$instance = new self(); |
|
80 | + } |
|
81 | + return self::$instance; |
|
82 | + } |
|
83 | + |
|
84 | + /** |
|
85 | + * Loads the admin subclasses |
|
86 | + */ |
|
87 | + private function load_classes() { |
|
88 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/class-settings.php'; |
|
89 | + $this->settings = admin\Settings::get_instance(); |
|
90 | + |
|
91 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/class-help-page.php'; |
|
92 | + $this->help = admin\Help_Page::get_instance(); |
|
93 | + |
|
94 | + require_once LSX_HEALTH_PLAN_PATH . 'classes/admin/class-settings-theme.php'; |
|
95 | + $this->settings_theme = admin\Settings_Theme::get_instance(); |
|
96 | + } |
|
97 | + |
|
98 | + /** |
|
99 | + * Orders the HP menu Items |
|
100 | + * |
|
101 | + * @return void |
|
102 | + */ |
|
103 | + public function order_menus() { |
|
104 | + global $menu, $submenu; |
|
105 | + if ( ! empty( $submenu ) ) { |
|
106 | + $parent_check = array( |
|
107 | + 'edit.php?post_type=plan', |
|
108 | + 'edit.php?post_type=workout', |
|
109 | + 'edit.php?post_type=meal', |
|
110 | + ); |
|
111 | + foreach ( $submenu as $menu_id => $menu_values ) { |
|
112 | + if ( in_array( $menu_id, $parent_check ) ) { |
|
113 | + foreach ( $menu_values as $sub_menu_key => $sub_menu_values ) { |
|
114 | + switch ( $sub_menu_values[0] ) { |
|
115 | + |
|
116 | + case __( 'Add New', 'lsx-health-plan' ): |
|
117 | + unset( $submenu[ $menu_id ][ $sub_menu_key ] ); |
|
118 | + break; |
|
119 | + |
|
120 | + case __( 'All', 'lsx-health-plan' ): |
|
121 | + $title = $sub_menu_values[0]; |
|
122 | + // Check and change the label. |
|
123 | + switch ( $sub_menu_values[2] ) { |
|
124 | + case 'edit.php?post_type=meal': |
|
125 | + $title = esc_attr__( 'Meals', 'lsx-health-plan' ); |
|
126 | + break; |
|
127 | + |
|
128 | + case 'edit.php?post_type=recipe': |
|
129 | + $title = esc_attr__( 'Recipes', 'lsx-health-plan' ); |
|
130 | + break; |
|
131 | + |
|
132 | + case 'edit.php?post_type=workout': |
|
133 | + $title = esc_attr__( 'Workouts', 'lsx-health-plan' ); |
|
134 | + break; |
|
135 | + |
|
136 | + case 'edit.php?post_type=plan': |
|
137 | + $title = esc_attr__( 'Plans', 'lsx-health-plan' ); |
|
138 | + break; |
|
139 | + |
|
140 | + case 'edit.php?post_type=video': |
|
141 | + $title = esc_attr__( 'Videos', 'lsx-health-plan' ); |
|
142 | + break; |
|
143 | + |
|
144 | + case 'edit.php?post_type=exercise': |
|
145 | + $title = esc_attr__( 'Exercises', 'lsx-health-plan' ); |
|
146 | + break; |
|
147 | + |
|
148 | + case 'edit.php?post_type=tip': |
|
149 | + $title = esc_attr__( 'Tips', 'lsx-health-plan' ); |
|
150 | + break; |
|
151 | + |
|
152 | + default: |
|
153 | + break; |
|
154 | + } |
|
155 | + $submenu[ $menu_id ][ $sub_menu_key ][0] = $title; // @codingStandardsIgnoreLine |
|
156 | + break; |
|
157 | + |
|
158 | + default: |
|
159 | + break; |
|
160 | + } |
|
161 | + } |
|
162 | + } |
|
163 | + } |
|
164 | + } |
|
165 | + } |
|
166 | + |
|
167 | + /** |
|
168 | + * Undocumented function |
|
169 | + * |
|
170 | + * @return void |
|
171 | + */ |
|
172 | + public function assets() { |
|
173 | + wp_enqueue_script( 'media-upload' ); |
|
174 | + wp_enqueue_script( 'thickbox' ); |
|
175 | + wp_enqueue_style( 'thickbox' ); |
|
176 | + |
|
177 | + wp_enqueue_script( 'lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-admin.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
178 | + wp_enqueue_style( 'lsx-health-plan-admin', LSX_HEALTH_PLAN_URL . 'assets/css/lsx-health-plan-admin.css', array(), LSX_HEALTH_PLAN_VER ); |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * Returns the registered connections. |
|
183 | + * |
|
184 | + * @return void |
|
185 | + */ |
|
186 | + public function get_connections() { |
|
187 | + return apply_filters( 'lsx_health_plan_connections', $this->connections ); |
|
188 | + } |
|
189 | + |
|
190 | + /** |
|
191 | + * Saves the previous values before they are overwritten by the new ones. |
|
192 | + * |
|
193 | + * @param [type] $value_to_save |
|
194 | + * @param [type] $a |
|
195 | + * @param [type] $args |
|
196 | + * @param [type] $cmb2 |
|
197 | + * @return void |
|
198 | + */ |
|
199 | + public function save_previous_values( $value_to_save, $a, $args, $cmb2 ) { |
|
200 | + if ( isset( $cmb2->data_to_save['ID'] ) ) { |
|
201 | + $connections = $this->get_connections(); |
|
202 | + $post_type = get_post_type( $cmb2->data_to_save['ID'] ); |
|
203 | + if ( isset( $connections[ $post_type ] ) && array_key_exists( $a['field_id'], $connections[ $post_type ] ) ) { |
|
204 | + // Get the previous values if the field, so we can run through them and remove the current ID from them later. |
|
205 | + $this->previous_values = get_post_meta( $a['id'], $a['field_id'], true ); |
|
206 | + } |
|
207 | + } |
|
208 | + return $value_to_save; |
|
209 | + } |
|
210 | + |
|
211 | + /** |
|
212 | + * Sets up the "post relations" |
|
213 | + * |
|
214 | + * @return void |
|
215 | + */ |
|
216 | + public function post_relations( $field_id, $updated, $action, $cmb2 ) { |
|
217 | + // If the connections are empty then skip this function. |
|
218 | + $connections = $this->get_connections(); |
|
219 | + if ( empty( $connections ) ) { |
|
220 | + return; |
|
221 | + } |
|
222 | + |
|
223 | + // If the field has been updated. |
|
224 | + if ( isset( $cmb2->data_to_save['ID'] ) ) { |
|
225 | + $post_type = get_post_type( $cmb2->data_to_save['ID'] ); |
|
226 | + if ( isset( $connections[ $post_type ] ) && array_key_exists( $field_id, $connections[ $post_type ] ) ) { |
|
227 | + $saved_values = get_post_meta( $cmb2->data_to_save['ID'], $field_id, true ); |
|
228 | + |
|
229 | + if ( 'updated' === $action ) { |
|
230 | + $this->add_connected_posts( $saved_values, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
231 | + // Check if any posts have been removed. |
|
232 | + if ( count( $this->previous_values ) > count( $saved_values ) ) { |
|
233 | + $posts_to_remove = array_diff( $this->previous_values, $saved_values ); |
|
234 | + if ( ! empty( $posts_to_remove ) ) { |
|
235 | + $this->remove_connected_posts( $posts_to_remove, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
236 | + } |
|
237 | + } |
|
238 | + } else if ( 'removed' === $action && ! empty( $this->previous_values ) ) { |
|
239 | + $this->remove_connected_posts( $this->previous_values, $cmb2->data_to_save['ID'], $connections[ $post_type ][ $field_id ] ); |
|
240 | + } |
|
241 | + } |
|
242 | + } |
|
243 | + } |
|
244 | + |
|
245 | + /** |
|
246 | + * Updates the connected posts witht he current post ID |
|
247 | + * |
|
248 | + * @param [type] $values |
|
249 | + * @param [type] $current_id |
|
250 | + * @param [type] $connected_key |
|
251 | + * @return void |
|
252 | + */ |
|
253 | + public function add_connected_posts( $values, $current_id, $connected_key ) { |
|
254 | + foreach ( $values as $value ) { |
|
255 | + $current_post_array = get_post_meta( $value, $connected_key, true ); |
|
256 | + $previous_values = $current_post_array; |
|
257 | + |
|
258 | + if ( ! empty( $current_post_array ) ) { |
|
259 | + $current_post_array = array_map( 'strval', $current_post_array ); |
|
260 | + array_unique( $current_post_array ); |
|
261 | + } |
|
262 | + |
|
263 | + // If the current connected post has no saved connections then we create it. |
|
264 | + if ( false === $current_post_array || empty( $current_post_array ) ) { |
|
265 | + $current_post_array = array( $current_id ); |
|
266 | + } elseif ( ! in_array( (string) $current_id, $current_post_array, true ) ) { |
|
267 | + $current_post_array[] = $current_id; |
|
268 | + } |
|
269 | + |
|
270 | + // Check if the values are empty, if not update them. |
|
271 | + if ( ! empty( $current_post_array ) ) { |
|
272 | + update_post_meta( $value, $connected_key, $current_post_array, $previous_values ); |
|
273 | + } |
|
274 | + } |
|
275 | + } |
|
276 | + |
|
277 | + /** |
|
278 | + * Removes the post ID from the connected posts. |
|
279 | + * |
|
280 | + * @param [type] $values |
|
281 | + * @param [type] $current_ID |
|
282 | + * @param [type] $connected_key |
|
283 | + * @return void |
|
284 | + */ |
|
285 | + public function remove_connected_posts( $values, $current_ID, $connected_key ) { |
|
286 | + foreach ( $values as $value ) { |
|
287 | + $current_post_array = get_post_meta( $value, $connected_key, true ); |
|
288 | + $new_array = array(); |
|
289 | + // Loop through only if the current ID has been saved against the post. |
|
290 | + if ( in_array( $current_ID, $current_post_array, false ) ) { |
|
291 | + |
|
292 | + // Loop through all the connected saved IDS. |
|
293 | + foreach ( $current_post_array as $cpa ) { |
|
294 | + if ( (int) $cpa !== (int) $current_ID ) { |
|
295 | + $new_array[] = $cpa; |
|
296 | + } |
|
297 | + } |
|
298 | + if ( ! empty( $new_array ) ) { |
|
299 | + $new_array = array_unique( $new_array ); |
|
300 | + delete_post_meta( $value, $connected_key ); |
|
301 | + add_post_meta( $value, $connected_key, $new_array, true ); |
|
302 | + } else { |
|
303 | + delete_post_meta( $value, $connected_key ); |
|
304 | + } |
|
305 | + } |
|
306 | + } |
|
307 | + } |
|
308 | + |
|
309 | + /** |
|
310 | + * Runs on 'before_delete_post' to run through and remove this post ID from its connected values. |
|
311 | + * |
|
312 | + * @param string $item_id |
|
313 | + * @return void |
|
314 | + */ |
|
315 | + public function delete_post_meta_connections( $item_id = '' ) { |
|
316 | + if ( '' !== $item_id ) { |
|
317 | + $post_type = get_post_type( $item_id ); |
|
318 | + $connections = $this->get_connections(); |
|
319 | + if ( isset( $connections[ $post_type ] ) && ! empty( $connections[ $post_type ] ) && is_array( $connections[ $post_type ] ) ) { |
|
320 | + foreach ( $connections[ $post_type ] as $this_key => $connected_key ) { |
|
321 | + $this->delete_connected_items( $item_id, $this_key, $connected_key ); |
|
322 | + } |
|
323 | + } |
|
324 | + } |
|
325 | + } |
|
326 | + |
|
327 | + /** |
|
328 | + * This function will remvoe the post id fomr its connected posts. |
|
329 | + * |
|
330 | + * @param string $item_id |
|
331 | + * @param string $this_key |
|
332 | + * @param string $connected_key |
|
333 | + * @return void |
|
334 | + */ |
|
335 | + public function delete_connected_items( $item_id = '', $this_key, $connected_key ) { |
|
336 | + if ( '' !== $item_id ) { |
|
337 | + $connected_items = get_post_meta( $item_id, $this_key, true ); |
|
338 | + if ( ! empty( $connected_items ) ) { |
|
339 | + foreach ( $connected_items as $con_id ) { |
|
340 | + // Get the connected item array from the connected item. |
|
341 | + $their_connections = get_post_meta( $con_id, $connected_key, true ); |
|
342 | + if ( ! empty( $their_connections ) ) { |
|
343 | + $new_connections = $their_connections; |
|
344 | + // Run through the array and remove the post to be deleteds ID. |
|
345 | + foreach ( $their_connections as $ckey => $cvalue ) { |
|
346 | + if ( (int) $item_id === (int) $cvalue ) { |
|
347 | + unset( $new_connections[ $ckey ] ); |
|
348 | + } |
|
349 | + } |
|
350 | + // Now we save the field. |
|
351 | + update_post_meta( $con_id, $connected_key, $new_connections, $their_connections ); |
|
352 | + } |
|
353 | + } |
|
354 | + } |
|
355 | + } |
|
356 | + } |
|
357 | + |
|
358 | + /** |
|
359 | + * Saves the serialized post ids in singular custom fields so they are easily queried using WP_Query |
|
360 | + * |
|
361 | + * @return void |
|
362 | + */ |
|
363 | + public function create_query_fields( $field_id, $updated, $action, $cmb2 ) { |
|
364 | + // If the connections are empty then skip this function. |
|
365 | + $search_fields = array( |
|
366 | + 'plan_product', |
|
367 | + ); |
|
368 | + if ( ! in_array( $field_id, $search_fields ) ) { |
|
369 | + return; |
|
370 | + } |
|
371 | + |
|
372 | + // If the field has been updated. |
|
373 | + if ( isset( $cmb2->data_to_save['ID'] ) && isset( $cmb2->data_to_save[ $field_id . '_results' ] ) && ! empty( $cmb2->data_to_save[ $field_id . '_results' ] ) ) { |
|
374 | + delete_post_meta( $cmb2->data_to_save['ID'], '_' . $field_id . '_id' ); |
|
375 | + foreach ( $cmb2->data_to_save[ $field_id . '_results' ] as $temp ) { |
|
376 | + add_post_meta( $cmb2->data_to_save['ID'], '_' . $field_id . '_id', $temp, false ); |
|
377 | + } |
|
378 | + } |
|
379 | + } |
|
380 | + |
|
381 | + /** |
|
382 | + * Extract the plan fields so they save to an indexable array. |
|
383 | + * |
|
384 | + * @param [type] $object_id |
|
385 | + * @param [type] $cmb_id |
|
386 | + * @param [type] $updated |
|
387 | + * @param [type] $cmb2 |
|
388 | + * @return void |
|
389 | + */ |
|
390 | + public function extract_plan_fields( $object_id, $cmb_id, $updated, $cmb2 ) { |
|
391 | + if ( 'plan_sections_metabox' === $cmb_id ) { |
|
392 | + // Check if our fields are available, and cycle through them. |
|
393 | + if ( isset( $cmb2->data_to_save['plan_sections'] ) && ! empty( $cmb2->data_to_save['plan_sections'] ) ) { |
|
394 | + $fields_to_save = array(); |
|
395 | + // Run through each row of fields. |
|
396 | + foreach ( $cmb2->data_to_save['plan_sections'] as $field_index => $fields ) { |
|
397 | + // Run through each field in that section. |
|
398 | + foreach ( $fields as $field_key => $field_value ) { |
|
399 | + $stored_values_key = 'plan_sections_' . $field_index . '_' . $field_key . '_store'; |
|
400 | + if ( isset( $cmb2->data_to_save[ $stored_values_key ] ) && ! empty( $cmb2->data_to_save[ $stored_values_key ] ) ) { |
|
401 | + $stored_values = $cmb2->data_to_save[ $stored_values_key ]; |
|
402 | + $stored_values = explode( ',', $stored_values ); |
|
403 | + foreach ( $stored_values as $id_to_save ) { |
|
404 | + $fields_to_save[ $field_key ][] = $id_to_save; |
|
405 | + } |
|
406 | + } |
|
407 | + } |
|
408 | + } |
|
409 | + $this->save_field_array( $object_id, $fields_to_save ); |
|
410 | + } |
|
411 | + } |
|
412 | + } |
|
413 | + |
|
414 | + /** |
|
415 | + * Runs through the supplied array and saved the fields to the current Object. |
|
416 | + * |
|
417 | + * @param integer $object_id |
|
418 | + * @param array $fields_to_save |
|
419 | + * @return void |
|
420 | + */ |
|
421 | + public function save_field_array( $object_id = 0, $fields_to_save = array() ) { |
|
422 | + |
|
423 | + // Run through the fields and save the meta items. |
|
424 | + if ( ! empty( $fields_to_save ) ) { |
|
425 | + foreach ( $fields_to_save as $field_key => $field_values ) { |
|
426 | + delete_post_meta( $object_id, $field_key ); |
|
427 | + |
|
428 | + $field_values = array_unique( $field_values ); |
|
429 | + foreach ( $field_values as $field_value ) { |
|
430 | + add_post_meta( $object_id, $field_key, $field_value, false ); |
|
431 | + } |
|
432 | + } |
|
433 | + } |
|
434 | + } |
|
435 | + |
|
436 | + public function debugger_for_cmb2( $object_id, $cmb_id, $updated, $cmb2 ) { |
|
437 | + if ( 'workout_section_6_metabox' === $cmb_id ) { |
|
438 | + die(); |
|
439 | + } |
|
440 | + } |
|
441 | + |
|
442 | + /** |
|
443 | + * Handle body colours that might be change by LSX Customizer. |
|
444 | + */ |
|
445 | + public function customizer_body_colours_handler( $css, $colors ) { |
|
446 | + $css .= ' |
|
447 | 447 | @import "' . LSX_HEALTH_PLAN_PATH . '/assets/css/scss/partials/customizer-health-plan-body-colours"; |
448 | 448 | |
449 | 449 | /** |
@@ -459,6 +459,6 @@ discard block |
||
459 | 459 | ); |
460 | 460 | '; |
461 | 461 | |
462 | - return $css; |
|
463 | - } |
|
462 | + return $css; |
|
463 | + } |
|
464 | 464 | } |