@@ -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 --> |
@@ -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 } ?> |
@@ -6,19 +6,19 @@ discard block |
||
| 6 | 6 | */ |
| 7 | 7 | global $connected_meals, $shortcode_args; |
| 8 | 8 | |
| 9 | -if ( is_singular( 'plan' ) ) { |
|
| 10 | - $section_key = get_query_var( 'section' ); |
|
| 11 | - if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 12 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 13 | - if ( isset( $section_info['connected_meals'] ) && '' !== $section_info['connected_meals'] ) { |
|
| 14 | - $connected_meals = \lsx_health_plan\functions\prep_array( $section_info['connected_meals'] ); |
|
| 9 | +if (is_singular('plan')) { |
|
| 10 | + $section_key = get_query_var('section'); |
|
| 11 | + if ('' !== $section_key && \lsx_health_plan\functions\plan\has_sections()) { |
|
| 12 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
| 13 | + if (isset($section_info['connected_meals']) && '' !== $section_info['connected_meals']) { |
|
| 14 | + $connected_meals = \lsx_health_plan\functions\prep_array($section_info['connected_meals']); |
|
| 15 | 15 | } |
| 16 | 16 | } |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | // Check for any shortcode overrides. |
| 20 | -if ( null !== $shortcode_args && isset( $shortcode_args['include'] ) ) { |
|
| 21 | - $connected_meals = array( get_the_ID() ); |
|
| 20 | +if (null !== $shortcode_args && isset($shortcode_args['include'])) { |
|
| 21 | + $connected_meals = array(get_the_ID()); |
|
| 22 | 22 | } |
| 23 | 23 | ?> |
| 24 | 24 | |
@@ -27,65 +27,65 @@ discard block |
||
| 27 | 27 | <?php |
| 28 | 28 | |
| 29 | 29 | // Looking for meals. |
| 30 | - if ( empty( $connected_meals ) ) { |
|
| 31 | - $connected_meals = get_post_meta( get_the_ID(), 'connected_meals', true ); |
|
| 30 | + if (empty($connected_meals)) { |
|
| 31 | + $connected_meals = get_post_meta(get_the_ID(), 'connected_meals', true); |
|
| 32 | 32 | |
| 33 | - if ( empty( $connected_meals ) ) { |
|
| 34 | - $options = \lsx_health_plan\functions\get_option( 'all' ); |
|
| 35 | - if ( isset( $options['connected_meals'] ) && '' !== $options['connected_meals'] && ! empty( $options['connected_meals'] ) ) { |
|
| 33 | + if (empty($connected_meals)) { |
|
| 34 | + $options = \lsx_health_plan\functions\get_option('all'); |
|
| 35 | + if (isset($options['connected_meals']) && '' !== $options['connected_meals'] && ! empty($options['connected_meals'])) { |
|
| 36 | 36 | $connected_meals = $options['connected_meals']; |
| 37 | - if ( ! array( $connected_meals ) ) { |
|
| 38 | - $connected_meals = array( $connected_meals ); |
|
| 37 | + if ( ! array($connected_meals)) { |
|
| 38 | + $connected_meals = array($connected_meals); |
|
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | } |
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | // This is for the meal single template. |
| 45 | - if ( is_single() && is_singular( 'meal' ) ) { |
|
| 46 | - $connected_meals = array( get_the_ID() ); |
|
| 45 | + if (is_single() && is_singular('meal')) { |
|
| 46 | + $connected_meals = array(get_the_ID()); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | // Shoping list |
| 50 | - $shopping_list = get_post_meta( get_the_ID(), 'meal_shopping_list', true ); |
|
| 51 | - if ( ! empty( $shopping_list ) ) { |
|
| 50 | + $shopping_list = get_post_meta(get_the_ID(), 'meal_shopping_list', true); |
|
| 51 | + if ( ! empty($shopping_list)) { |
|
| 52 | 52 | ?> |
| 53 | - <a class="btn border-btn btn-shopping" href="<?php echo esc_url( get_page_link( $shopping_list ) ); ?>" target="_blank"><?php esc_html_e( 'Download Shopping List', 'lsx-health-plan' ); ?><i class="fa fa-download" aria-hidden="true"></i></a> |
|
| 53 | + <a class="btn border-btn btn-shopping" href="<?php echo esc_url(get_page_link($shopping_list)); ?>" target="_blank"><?php esc_html_e('Download Shopping List', 'lsx-health-plan'); ?><i class="fa fa-download" aria-hidden="true"></i></a> |
|
| 54 | 54 | <?php |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | // The top part |
| 58 | - echo wp_kses_post( wp_kses_post( lsx_health_plan_meal_main_content() ) ); |
|
| 58 | + echo wp_kses_post(wp_kses_post(lsx_health_plan_meal_main_content())); |
|
| 59 | 59 | |
| 60 | - if ( false !== $connected_meals && '' !== $connected_meals && ! empty( $connected_meals ) ) { |
|
| 60 | + if (false !== $connected_meals && '' !== $connected_meals && ! empty($connected_meals)) { |
|
| 61 | 61 | |
| 62 | - $args = array( |
|
| 62 | + $args = array( |
|
| 63 | 63 | 'orderby' => 'date', |
| 64 | 64 | 'order' => 'DESC', |
| 65 | 65 | 'post_type' => 'meal', |
| 66 | 66 | 'post__in' => $connected_meals, |
| 67 | 67 | ); |
| 68 | - $meals = new WP_Query( $args ); |
|
| 69 | - if ( $meals->have_posts() ) { |
|
| 70 | - while ( $meals->have_posts() ) { |
|
| 68 | + $meals = new WP_Query($args); |
|
| 69 | + if ($meals->have_posts()) { |
|
| 70 | + while ($meals->have_posts()) { |
|
| 71 | 71 | $meals->the_post(); |
| 72 | - $meal_id = get_the_ID(); |
|
| 72 | + $meal_id = get_the_ID(); |
|
| 73 | 73 | |
| 74 | 74 | |
| 75 | 75 | // Breakfast. |
| 76 | - $pre_breakfast_snack = get_post_meta( get_the_ID(), 'meal_pre_breakfast_snack', true ); |
|
| 77 | - $breakfast = get_post_meta( get_the_ID(), 'meal_breakfast', true ); |
|
| 78 | - $post_breakfast_snack = get_post_meta( get_the_ID(), 'meal_breakfast_snack', true ); |
|
| 76 | + $pre_breakfast_snack = get_post_meta(get_the_ID(), 'meal_pre_breakfast_snack', true); |
|
| 77 | + $breakfast = get_post_meta(get_the_ID(), 'meal_breakfast', true); |
|
| 78 | + $post_breakfast_snack = get_post_meta(get_the_ID(), 'meal_breakfast_snack', true); |
|
| 79 | 79 | |
| 80 | 80 | // Lunch. |
| 81 | - $pre_lunch_snack = get_post_meta( get_the_ID(), 'meal_pre_lunch_snack', true ); |
|
| 82 | - $lunch = get_post_meta( get_the_ID(), 'meal_lunch', true ); |
|
| 83 | - $post_lunch_snack = get_post_meta( get_the_ID(), 'meal_lunch_snack', true ); |
|
| 81 | + $pre_lunch_snack = get_post_meta(get_the_ID(), 'meal_pre_lunch_snack', true); |
|
| 82 | + $lunch = get_post_meta(get_the_ID(), 'meal_lunch', true); |
|
| 83 | + $post_lunch_snack = get_post_meta(get_the_ID(), 'meal_lunch_snack', true); |
|
| 84 | 84 | |
| 85 | 85 | // Dinner. |
| 86 | - $pre_dinner_snack = get_post_meta( get_the_ID(), 'meal_pre_dinner_snack', true ); |
|
| 87 | - $dinner = get_post_meta( get_the_ID(), 'meal_dinner', true ); |
|
| 88 | - $post_dinner_snack = get_post_meta( get_the_ID(), 'meal_dinner_snack', true ); |
|
| 86 | + $pre_dinner_snack = get_post_meta(get_the_ID(), 'meal_pre_dinner_snack', true); |
|
| 87 | + $dinner = get_post_meta(get_the_ID(), 'meal_dinner', true); |
|
| 88 | + $post_dinner_snack = get_post_meta(get_the_ID(), 'meal_dinner_snack', true); |
|
| 89 | 89 | |
| 90 | 90 | //Main Meals Title |
| 91 | 91 | //echo '<h3 class="meals-section-title">' . esc_html__( 'Meal Plan', 'lsx-health-plan' ) . '</h3>'; |
@@ -93,19 +93,19 @@ discard block |
||
| 93 | 93 | <div class="row eating-row"> |
| 94 | 94 | <div class="col-md-4 eating-column"> |
| 95 | 95 | <?php |
| 96 | - if ( ! empty( $pre_breakfast_snack ) ) { |
|
| 97 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 98 | - echo wp_kses_post( apply_filters( 'the_content', $pre_breakfast_snack ) ); |
|
| 96 | + if ( ! empty($pre_breakfast_snack)) { |
|
| 97 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 98 | + echo wp_kses_post(apply_filters('the_content', $pre_breakfast_snack)); |
|
| 99 | 99 | echo '</div>'; |
| 100 | 100 | } |
| 101 | - if ( ! empty( $breakfast ) ) { |
|
| 102 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Breakfast', 'lsx-health-plan' ) . '</h3>'; |
|
| 103 | - echo wp_kses_post( apply_filters( 'the_content', $breakfast ) ); |
|
| 101 | + if ( ! empty($breakfast)) { |
|
| 102 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Breakfast', 'lsx-health-plan') . '</h3>'; |
|
| 103 | + echo wp_kses_post(apply_filters('the_content', $breakfast)); |
|
| 104 | 104 | echo '</div>'; |
| 105 | 105 | } |
| 106 | - if ( ! empty( $post_breakfast_snack ) ) { |
|
| 107 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 108 | - echo wp_kses_post( apply_filters( 'the_content', $post_breakfast_snack ) ); |
|
| 106 | + if ( ! empty($post_breakfast_snack)) { |
|
| 107 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 108 | + echo wp_kses_post(apply_filters('the_content', $post_breakfast_snack)); |
|
| 109 | 109 | echo '</div>'; |
| 110 | 110 | } |
| 111 | 111 | |
@@ -113,24 +113,24 @@ discard block |
||
| 113 | 113 | 'meal_id' => $meal_id, |
| 114 | 114 | 'meal_time' => 'breakfast', |
| 115 | 115 | ); |
| 116 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 116 | + lsx_hp_meal_plan_recipes($args); |
|
| 117 | 117 | ?> |
| 118 | 118 | </div> |
| 119 | 119 | <div class="col-md-4 eating-column"> |
| 120 | 120 | <?php |
| 121 | - if ( ! empty( $pre_lunch_snack ) ) { |
|
| 122 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 123 | - echo wp_kses_post( apply_filters( 'the_content', $pre_lunch_snack ) ); |
|
| 121 | + if ( ! empty($pre_lunch_snack)) { |
|
| 122 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 123 | + echo wp_kses_post(apply_filters('the_content', $pre_lunch_snack)); |
|
| 124 | 124 | echo '</div>'; |
| 125 | 125 | } |
| 126 | - if ( ! empty( $lunch ) ) { |
|
| 127 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Lunch', 'lsx-health-plan' ) . '</h3>'; |
|
| 128 | - echo wp_kses_post( apply_filters( 'the_content', $lunch ) ); |
|
| 126 | + if ( ! empty($lunch)) { |
|
| 127 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Lunch', 'lsx-health-plan') . '</h3>'; |
|
| 128 | + echo wp_kses_post(apply_filters('the_content', $lunch)); |
|
| 129 | 129 | echo '</div>'; |
| 130 | 130 | } |
| 131 | - if ( ! empty( $post_lunch_snack ) ) { |
|
| 132 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 133 | - echo wp_kses_post( apply_filters( 'the_content', $post_lunch_snack ) ); |
|
| 131 | + if ( ! empty($post_lunch_snack)) { |
|
| 132 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 133 | + echo wp_kses_post(apply_filters('the_content', $post_lunch_snack)); |
|
| 134 | 134 | echo '</div>'; |
| 135 | 135 | } |
| 136 | 136 | |
@@ -138,24 +138,24 @@ discard block |
||
| 138 | 138 | 'meal_id' => $meal_id, |
| 139 | 139 | 'meal_time' => 'lunch', |
| 140 | 140 | ); |
| 141 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 141 | + lsx_hp_meal_plan_recipes($args); |
|
| 142 | 142 | ?> |
| 143 | 143 | </div> |
| 144 | 144 | <div class="col-md-4 eating-column"> |
| 145 | 145 | <?php |
| 146 | - if ( ! empty( $pre_dinner_snack ) ) { |
|
| 147 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 148 | - echo wp_kses_post( apply_filters( 'the_content', $pre_dinner_snack ) ); |
|
| 146 | + if ( ! empty($pre_dinner_snack)) { |
|
| 147 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 148 | + echo wp_kses_post(apply_filters('the_content', $pre_dinner_snack)); |
|
| 149 | 149 | echo '</div>'; |
| 150 | 150 | } |
| 151 | - if ( ! empty( $dinner ) ) { |
|
| 152 | - echo '<div class="content-box"><h3 class="eating-title">' . esc_html__( 'Dinner', 'lsx-health-plan' ) . '</h3>'; |
|
| 153 | - echo wp_kses_post( apply_filters( 'the_content', $dinner ) ); |
|
| 151 | + if ( ! empty($dinner)) { |
|
| 152 | + echo '<div class="content-box"><h3 class="eating-title">' . esc_html__('Dinner', 'lsx-health-plan') . '</h3>'; |
|
| 153 | + echo wp_kses_post(apply_filters('the_content', $dinner)); |
|
| 154 | 154 | echo '</div>'; |
| 155 | 155 | } |
| 156 | - if ( ! empty( $post_dinner_snack ) ) { |
|
| 157 | - echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__( 'Snack', 'lsx-health-plan' ) . '</h3>'; |
|
| 158 | - echo wp_kses_post( apply_filters( 'the_content', $post_dinner_snack ) ); |
|
| 156 | + if ( ! empty($post_dinner_snack)) { |
|
| 157 | + echo '<div class="content-box"><h3 class="eating-title snack-title">' . esc_html__('Snack', 'lsx-health-plan') . '</h3>'; |
|
| 158 | + echo wp_kses_post(apply_filters('the_content', $post_dinner_snack)); |
|
| 159 | 159 | echo '</div>'; |
| 160 | 160 | } |
| 161 | 161 | |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | 'meal_id' => $meal_id, |
| 164 | 164 | 'meal_time' => 'dinner', |
| 165 | 165 | ); |
| 166 | - lsx_hp_meal_plan_recipes( $args ); |
|
| 166 | + lsx_hp_meal_plan_recipes($args); |
|
| 167 | 167 | ?> |
| 168 | 168 | </div> |
| 169 | 169 | </div> |
@@ -33,35 +33,35 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public function __construct() { |
| 35 | 35 | |
| 36 | - add_action( 'init', array( $this, 'register_post_type' ) ); |
|
| 37 | - add_action( 'init', array( $this, 'plan_type_taxonomy_setup' ) ); |
|
| 38 | - add_action( 'init', array( $this, 'week_taxonomy_setup' ) ); |
|
| 36 | + add_action('init', array($this, 'register_post_type')); |
|
| 37 | + add_action('init', array($this, 'plan_type_taxonomy_setup')); |
|
| 38 | + add_action('init', array($this, 'week_taxonomy_setup')); |
|
| 39 | 39 | |
| 40 | 40 | // Icons for the plan types. |
| 41 | - add_action( 'create_term', array( $this, 'save_meta' ), 10, 2 ); |
|
| 42 | - add_action( 'edit_term', array( $this, 'save_meta' ), 10, 2 ); |
|
| 41 | + add_action('create_term', array($this, 'save_meta'), 10, 2); |
|
| 42 | + add_action('edit_term', array($this, 'save_meta'), 10, 2); |
|
| 43 | 43 | $prefix_taxonomy = 'plan-type'; |
| 44 | - add_action( sprintf( '%s_edit_form_fields', $prefix_taxonomy ), array( $this, 'add_thumbnail_form_field' ), 3, 1 ); |
|
| 44 | + add_action(sprintf('%s_edit_form_fields', $prefix_taxonomy), array($this, 'add_thumbnail_form_field'), 3, 1); |
|
| 45 | 45 | |
| 46 | 46 | // Register the Metaboxes. |
| 47 | - add_action( 'cmb2_admin_init', array( $this, 'featured_metabox' ), 5 ); |
|
| 48 | - add_action( 'cmb2_admin_init', array( $this, 'details_metaboxes' ), 5 ); |
|
| 49 | - add_action( 'cmb2_admin_init', array( $this, 'plan_connections' ), 5 ); |
|
| 50 | - add_action( 'cmb2_admin_init', array( $this, 'sections_metabox_loop' ), 1 ); |
|
| 47 | + add_action('cmb2_admin_init', array($this, 'featured_metabox'), 5); |
|
| 48 | + add_action('cmb2_admin_init', array($this, 'details_metaboxes'), 5); |
|
| 49 | + add_action('cmb2_admin_init', array($this, 'plan_connections'), 5); |
|
| 50 | + add_action('cmb2_admin_init', array($this, 'sections_metabox_loop'), 1); |
|
| 51 | 51 | |
| 52 | - add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 ); |
|
| 52 | + add_filter('get_the_archive_title', array($this, 'get_the_archive_title'), 100); |
|
| 53 | 53 | //add_filter( 'lsx_global_header_title', array( $this, 'hp_recipe_header_title' ), 200, 1 ); |
| 54 | 54 | |
| 55 | 55 | // Template Redirects. |
| 56 | - add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 57 | - add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 56 | + add_filter('lsx_health_plan_archive_template', array($this, 'enable_post_type'), 10, 1); |
|
| 57 | + add_filter('lsx_health_plan_single_template', array($this, 'enable_post_type'), 10, 1); |
|
| 58 | 58 | |
| 59 | 59 | // Plan Archive Actions. |
| 60 | - add_action( 'pre_get_posts', array( $this, 'set_parent_only' ), 10, 1 ); |
|
| 61 | - add_filter( 'get_the_archive_title', array( $this, 'get_the_archive_title' ), 100 ); |
|
| 62 | - add_action( 'lsx_content_top', 'lsx_hp_plan_archive_filters', 10, 1 ); |
|
| 63 | - add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_search_enabled', 10, 1 ); |
|
| 64 | - add_filter( 'lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_filters_disabled', 10, 1 ); |
|
| 60 | + add_action('pre_get_posts', array($this, 'set_parent_only'), 10, 1); |
|
| 61 | + add_filter('get_the_archive_title', array($this, 'get_the_archive_title'), 100); |
|
| 62 | + add_action('lsx_content_top', 'lsx_hp_plan_archive_filters', 10, 1); |
|
| 63 | + add_filter('lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_search_enabled', 10, 1); |
|
| 64 | + add_filter('lsx_hp_disable_plan_archive_filters', '\lsx_health_plan\functions\plan\is_filters_disabled', 10, 1); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | /** |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | public static function get_instance() { |
| 75 | 75 | // If the single instance hasn't been set, set it now. |
| 76 | - if ( null === self::$instance ) { |
|
| 76 | + if (null === self::$instance) { |
|
| 77 | 77 | self::$instance = new self(); |
| 78 | 78 | } |
| 79 | 79 | return self::$instance; |
@@ -83,21 +83,21 @@ discard block |
||
| 83 | 83 | */ |
| 84 | 84 | public function register_post_type() { |
| 85 | 85 | $labels = array( |
| 86 | - 'name' => esc_html__( 'Plans', 'lsx-health-plan' ), |
|
| 87 | - 'singular_name' => esc_html__( 'Plan', 'lsx-health-plan' ), |
|
| 88 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
| 89 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 90 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 91 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
| 92 | - 'all_items' => esc_html__( 'All Plans', 'lsx-health-plan' ), |
|
| 93 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
| 94 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 95 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
| 96 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
| 86 | + 'name' => esc_html__('Plans', 'lsx-health-plan'), |
|
| 87 | + 'singular_name' => esc_html__('Plan', 'lsx-health-plan'), |
|
| 88 | + 'add_new' => esc_html_x('Add New', 'post type general name', 'lsx-health-plan'), |
|
| 89 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 90 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 91 | + 'new_item' => esc_html__('New', 'lsx-health-plan'), |
|
| 92 | + 'all_items' => esc_html__('All Plans', 'lsx-health-plan'), |
|
| 93 | + 'view_item' => esc_html__('View', 'lsx-health-plan'), |
|
| 94 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 95 | + 'not_found' => esc_html__('None found', 'lsx-health-plan'), |
|
| 96 | + 'not_found_in_trash' => esc_html__('None found in Trash', 'lsx-health-plan'), |
|
| 97 | 97 | 'parent_item_colon' => '', |
| 98 | - 'menu_name' => esc_html__( 'Plans', 'lsx-health-plan' ), |
|
| 98 | + 'menu_name' => esc_html__('Plans', 'lsx-health-plan'), |
|
| 99 | 99 | ); |
| 100 | - $args = array( |
|
| 100 | + $args = array( |
|
| 101 | 101 | 'labels' => $labels, |
| 102 | 102 | 'public' => true, |
| 103 | 103 | 'publicly_queryable' => true, |
@@ -107,10 +107,10 @@ discard block |
||
| 107 | 107 | 'menu_icon' => 'dashicons-welcome-write-blog', |
| 108 | 108 | 'query_var' => true, |
| 109 | 109 | 'rewrite' => array( |
| 110 | - 'slug' => \lsx_health_plan\functions\get_option( 'plan_single_slug', 'plan' ), |
|
| 110 | + 'slug' => \lsx_health_plan\functions\get_option('plan_single_slug', 'plan'), |
|
| 111 | 111 | ), |
| 112 | 112 | 'capability_type' => 'page', |
| 113 | - 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plans' ), |
|
| 113 | + 'has_archive' => \lsx_health_plan\functions\get_option('endpoint_plan_archive', 'plans'), |
|
| 114 | 114 | 'hierarchical' => false, |
| 115 | 115 | 'menu_position' => null, |
| 116 | 116 | 'supports' => array( |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | 'custom-fields', |
| 122 | 122 | ), |
| 123 | 123 | ); |
| 124 | - register_post_type( 'plan', $args ); |
|
| 124 | + register_post_type('plan', $args); |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
@@ -129,17 +129,17 @@ discard block |
||
| 129 | 129 | */ |
| 130 | 130 | public function plan_type_taxonomy_setup() { |
| 131 | 131 | $labels = array( |
| 132 | - 'name' => esc_html_x( 'Plan Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 133 | - 'singular_name' => esc_html_x( 'Plan Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 134 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 135 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 136 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 137 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 138 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 139 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 140 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 141 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 142 | - 'menu_name' => esc_html__( 'Plan Types', 'lsx-health-plan' ), |
|
| 132 | + 'name' => esc_html_x('Plan Type', 'taxonomy general name', 'lsx-health-plan'), |
|
| 133 | + 'singular_name' => esc_html_x('Plan Type', 'taxonomy singular name', 'lsx-health-plan'), |
|
| 134 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 135 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
| 136 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
| 137 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
| 138 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 139 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
| 140 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 141 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
| 142 | + 'menu_name' => esc_html__('Plan Types', 'lsx-health-plan'), |
|
| 143 | 143 | ); |
| 144 | 144 | |
| 145 | 145 | $args = array( |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | ), |
| 154 | 154 | ); |
| 155 | 155 | |
| 156 | - register_taxonomy( 'plan-type', array( 'plan' ), $args ); |
|
| 156 | + register_taxonomy('plan-type', array('plan'), $args); |
|
| 157 | 157 | } |
| 158 | 158 | |
| 159 | 159 | /** |
@@ -161,17 +161,17 @@ discard block |
||
| 161 | 161 | */ |
| 162 | 162 | public function week_taxonomy_setup() { |
| 163 | 163 | $labels = array( |
| 164 | - 'name' => esc_html_x( 'Week', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 165 | - 'singular_name' => esc_html_x( 'Week', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 166 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 167 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 168 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 169 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 170 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 171 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 172 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 173 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 174 | - 'menu_name' => esc_html__( 'Weeks', 'lsx-health-plan' ), |
|
| 164 | + 'name' => esc_html_x('Week', 'taxonomy general name', 'lsx-health-plan'), |
|
| 165 | + 'singular_name' => esc_html_x('Week', 'taxonomy singular name', 'lsx-health-plan'), |
|
| 166 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 167 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
| 168 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
| 169 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
| 170 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 171 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
| 172 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 173 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
| 174 | + 'menu_name' => esc_html__('Weeks', 'lsx-health-plan'), |
|
| 175 | 175 | ); |
| 176 | 176 | |
| 177 | 177 | $args = array( |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | ), |
| 187 | 187 | ); |
| 188 | 188 | |
| 189 | - register_taxonomy( 'week', array( 'plan' ), $args ); |
|
| 189 | + register_taxonomy('week', array('plan'), $args); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
@@ -194,13 +194,13 @@ discard block |
||
| 194 | 194 | * |
| 195 | 195 | * @since 0.1.0 |
| 196 | 196 | */ |
| 197 | - public function add_thumbnail_form_field( $term = false ) { |
|
| 198 | - if ( is_object( $term ) ) { |
|
| 199 | - $value = get_term_meta( $term->term_id, 'thumbnail', true ); |
|
| 200 | - $image_preview = wp_get_attachment_image_src( $value, 'thumbnail' ); |
|
| 197 | + public function add_thumbnail_form_field($term = false) { |
|
| 198 | + if (is_object($term)) { |
|
| 199 | + $value = get_term_meta($term->term_id, 'thumbnail', true); |
|
| 200 | + $image_preview = wp_get_attachment_image_src($value, 'thumbnail'); |
|
| 201 | 201 | |
| 202 | - if ( is_array( $image_preview ) ) { |
|
| 203 | - $image_preview = '<img style="height: 50px; width: 50px;" src="' . esc_url( $image_preview[0] ) . '" width="' . $image_preview[1] . '" height="' . $image_preview[2] . '" class="alignnone size-thumbnail d wp-image-' . $value . '" />'; |
|
| 202 | + if (is_array($image_preview)) { |
|
| 203 | + $image_preview = '<img style="height: 50px; width: 50px;" src="' . esc_url($image_preview[0]) . '" width="' . $image_preview[1] . '" height="' . $image_preview[2] . '" class="alignnone size-thumbnail d wp-image-' . $value . '" />'; |
|
| 204 | 204 | } |
| 205 | 205 | } else { |
| 206 | 206 | $image_preview = false; |
@@ -208,15 +208,15 @@ discard block |
||
| 208 | 208 | } |
| 209 | 209 | ?> |
| 210 | 210 | <tr class="form-field form-required term-thumbnail-wrap"> |
| 211 | - <th scope="row"><label for="thumbnail"><?php esc_html_e( 'Icon Image', 'lsx-health-plan' ); ?></label></th> |
|
| 211 | + <th scope="row"><label for="thumbnail"><?php esc_html_e('Icon Image', 'lsx-health-plan'); ?></label></th> |
|
| 212 | 212 | <td> |
| 213 | - <input class="input_image_id" type="hidden" name="thumbnail" value="<?php echo wp_kses_post( $value ); ?>"> |
|
| 213 | + <input class="input_image_id" type="hidden" name="thumbnail" value="<?php echo wp_kses_post($value); ?>"> |
|
| 214 | 214 | <div class="thumbnail-preview"> |
| 215 | - <?php echo wp_kses_post( $image_preview ); ?> |
|
| 215 | + <?php echo wp_kses_post($image_preview); ?> |
|
| 216 | 216 | </div> |
| 217 | - <a style="<?php if ( '' !== $value && false !== $value ) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-add"><?php esc_html_e( 'Choose Image', 'lsx-health-plan' ); ?></a> |
|
| 218 | - <a style="<?php if ( '' === $value || false === $value ) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-remove"><?php esc_html_e( 'Remove Image', 'lsx-health-plan' ); ?></a> |
|
| 219 | - <?php wp_nonce_field( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ); ?> |
|
| 217 | + <a style="<?php if ('' !== $value && false !== $value) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-add"><?php esc_html_e('Choose Image', 'lsx-health-plan'); ?></a> |
|
| 218 | + <a style="<?php if ('' === $value || false === $value) { ?>display:none;<?php } ?>" class="button-secondary lsx-thumbnail-image-remove"><?php esc_html_e('Remove Image', 'lsx-health-plan'); ?></a> |
|
| 219 | + <?php wp_nonce_field('lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce'); ?> |
|
| 220 | 220 | </td> |
| 221 | 221 | </tr> |
| 222 | 222 | <?php |
@@ -230,27 +230,27 @@ discard block |
||
| 230 | 230 | * @param int $term_id |
| 231 | 231 | * @param string $taxonomy |
| 232 | 232 | */ |
| 233 | - public function save_meta( $term_id = 0, $taxonomy = '' ) { |
|
| 234 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
| 233 | + public function save_meta($term_id = 0, $taxonomy = '') { |
|
| 234 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
| 235 | 235 | return; |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | - if ( ! isset( $_POST['thumbnail'] ) ) { |
|
| 238 | + if ( ! isset($_POST['thumbnail'])) { |
|
| 239 | 239 | return; |
| 240 | 240 | } |
| 241 | 241 | |
| 242 | - if ( check_admin_referer( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ) ) { |
|
| 243 | - if ( ! isset( $_POST['thumbnail'] ) ) { |
|
| 242 | + if (check_admin_referer('lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce')) { |
|
| 243 | + if ( ! isset($_POST['thumbnail'])) { |
|
| 244 | 244 | return; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | - $thumbnail_meta = sanitize_text_field( $_POST['thumbnail'] ); |
|
| 248 | - $thumbnail_meta = ! empty( $thumbnail_meta ) ? $thumbnail_meta : ''; |
|
| 247 | + $thumbnail_meta = sanitize_text_field($_POST['thumbnail']); |
|
| 248 | + $thumbnail_meta = ! empty($thumbnail_meta) ? $thumbnail_meta : ''; |
|
| 249 | 249 | |
| 250 | - if ( empty( $thumbnail_meta ) ) { |
|
| 251 | - delete_term_meta( $term_id, 'thumbnail' ); |
|
| 250 | + if (empty($thumbnail_meta)) { |
|
| 251 | + delete_term_meta($term_id, 'thumbnail'); |
|
| 252 | 252 | } else { |
| 253 | - update_term_meta( $term_id, 'thumbnail', $thumbnail_meta ); |
|
| 253 | + update_term_meta($term_id, 'thumbnail', $thumbnail_meta); |
|
| 254 | 254 | } |
| 255 | 255 | } |
| 256 | 256 | } |
@@ -259,40 +259,40 @@ discard block |
||
| 259 | 259 | * Define the metabox and field configurations. |
| 260 | 260 | */ |
| 261 | 261 | public function details_metaboxes() { |
| 262 | - $cmb = new_cmb2_box( array( |
|
| 262 | + $cmb = new_cmb2_box(array( |
|
| 263 | 263 | 'id' => $this->slug . '_details_metabox', |
| 264 | - 'title' => __( 'Details', 'lsx-health-plan' ), |
|
| 265 | - 'object_types' => array( $this->slug ), // Post type |
|
| 264 | + 'title' => __('Details', 'lsx-health-plan'), |
|
| 265 | + 'object_types' => array($this->slug), // Post type |
|
| 266 | 266 | 'context' => 'normal', |
| 267 | 267 | 'priority' => 'high', |
| 268 | 268 | 'show_names' => true, |
| 269 | - ) ); |
|
| 269 | + )); |
|
| 270 | 270 | |
| 271 | - $cmb->add_field( array( |
|
| 272 | - 'name' => __( 'Plan Short Description', 'lsx-health-plan' ), |
|
| 271 | + $cmb->add_field(array( |
|
| 272 | + 'name' => __('Plan Short Description', 'lsx-health-plan'), |
|
| 273 | 273 | 'id' => $this->slug . '_short_description', |
| 274 | 274 | 'type' => 'textarea_small', |
| 275 | - 'desc' => __( 'Add a small description for this plan (optional)', 'lsx-health-plan' ), |
|
| 276 | - ) ); |
|
| 275 | + 'desc' => __('Add a small description for this plan (optional)', 'lsx-health-plan'), |
|
| 276 | + )); |
|
| 277 | 277 | |
| 278 | 278 | $warmup_type = 'page'; |
| 279 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
| 280 | - $warmup_type = array( 'page', 'workout' ); |
|
| 279 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
| 280 | + $warmup_type = array('page', 'workout'); |
|
| 281 | 281 | } |
| 282 | - $cmb->add_field( array( |
|
| 283 | - 'name' => __( 'Warmup', 'lsx-health-plan' ), |
|
| 284 | - 'desc' => __( 'Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan' ), |
|
| 282 | + $cmb->add_field(array( |
|
| 283 | + 'name' => __('Warmup', 'lsx-health-plan'), |
|
| 284 | + 'desc' => __('Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan'), |
|
| 285 | 285 | 'id' => $this->slug . '_warmup', |
| 286 | 286 | 'type' => 'post_search_ajax', |
| 287 | 287 | // Optional : |
| 288 | - 'limit' => 3, // Limit selection to X items only (default 1) |
|
| 288 | + 'limit' => 3, // Limit selection to X items only (default 1) |
|
| 289 | 289 | 'sortable' => true, // Allow selected items to be sortable (default false) |
| 290 | 290 | 'query_args' => array( |
| 291 | 291 | 'post_type' => $warmup_type, |
| 292 | - 'post_status' => array( 'publish' ), |
|
| 292 | + 'post_status' => array('publish'), |
|
| 293 | 293 | 'posts_per_page' => -1, |
| 294 | 294 | ), |
| 295 | - ) ); |
|
| 295 | + )); |
|
| 296 | 296 | } |
| 297 | 297 | |
| 298 | 298 | /** |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | * @param array $post_types |
| 302 | 302 | * @return array |
| 303 | 303 | */ |
| 304 | - public function enable_post_type( $post_types = array() ) { |
|
| 304 | + public function enable_post_type($post_types = array()) { |
|
| 305 | 305 | $post_types[] = $this->slug; |
| 306 | 306 | return $post_types; |
| 307 | 307 | } |
@@ -315,8 +315,8 @@ discard block |
||
| 315 | 315 | $cmb = new_cmb2_box( |
| 316 | 316 | array( |
| 317 | 317 | 'id' => $this->slug . '_connections_metabox', |
| 318 | - 'title' => __( 'Plans', 'lsx-health-plan' ), |
|
| 319 | - 'object_types' => array( 'workout', 'meal', 'tip', 'recipe' ), |
|
| 318 | + 'title' => __('Plans', 'lsx-health-plan'), |
|
| 319 | + 'object_types' => array('workout', 'meal', 'tip', 'recipe'), |
|
| 320 | 320 | 'context' => 'normal', |
| 321 | 321 | 'priority' => 'high', |
| 322 | 322 | 'show_names' => true, |
@@ -324,15 +324,15 @@ discard block |
||
| 324 | 324 | ); |
| 325 | 325 | $cmb->add_field( |
| 326 | 326 | array( |
| 327 | - 'name' => __( 'Plan', 'lsx-health-plan' ), |
|
| 327 | + 'name' => __('Plan', 'lsx-health-plan'), |
|
| 328 | 328 | 'id' => 'connected_plans', |
| 329 | - 'desc' => __( 'Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan' ), |
|
| 329 | + 'desc' => __('Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan'), |
|
| 330 | 330 | 'type' => 'post_search_ajax', |
| 331 | 331 | 'limit' => 15, |
| 332 | 332 | 'sortable' => true, |
| 333 | 333 | 'query_args' => array( |
| 334 | - 'post_type' => array( 'plan' ), |
|
| 335 | - 'post_status' => array( 'publish' ), |
|
| 334 | + 'post_type' => array('plan'), |
|
| 335 | + 'post_status' => array('publish'), |
|
| 336 | 336 | 'posts_per_page' => -1, |
| 337 | 337 | ), |
| 338 | 338 | ) |
@@ -345,9 +345,9 @@ discard block |
||
| 345 | 345 | * @param string $title the term title. |
| 346 | 346 | * @return string |
| 347 | 347 | */ |
| 348 | - public function get_the_archive_title( $title ) { |
|
| 349 | - if ( is_post_type_archive( 'plan' ) ) { |
|
| 350 | - $title = __( 'Our health plans', 'lsx-health-plan' ); |
|
| 348 | + public function get_the_archive_title($title) { |
|
| 349 | + if (is_post_type_archive('plan')) { |
|
| 350 | + $title = __('Our health plans', 'lsx-health-plan'); |
|
| 351 | 351 | } |
| 352 | 352 | return $title; |
| 353 | 353 | } |
@@ -358,9 +358,9 @@ discard block |
||
| 358 | 358 | * @param object $wp_query |
| 359 | 359 | * @return array |
| 360 | 360 | */ |
| 361 | - public function set_parent_only( $wp_query ) { |
|
| 362 | - if ( ! is_admin() && $wp_query->is_main_query() && ( $wp_query->is_post_type_archive( 'plan' ) || $wp_query->is_tax( 'plan-type' ) ) ) { |
|
| 363 | - $wp_query->set( 'post_parent', '0' ); |
|
| 361 | + public function set_parent_only($wp_query) { |
|
| 362 | + if ( ! is_admin() && $wp_query->is_main_query() && ($wp_query->is_post_type_archive('plan') || $wp_query->is_tax('plan-type'))) { |
|
| 363 | + $wp_query->set('post_parent', '0'); |
|
| 364 | 364 | } |
| 365 | 365 | } |
| 366 | 366 | |
@@ -371,8 +371,8 @@ discard block |
||
| 371 | 371 | $cmb = new_cmb2_box( |
| 372 | 372 | array( |
| 373 | 373 | 'id' => $this->slug . '_featured_metabox_plan', |
| 374 | - 'title' => __( 'Featured Plan', 'lsx-health-plan' ), |
|
| 375 | - 'object_types' => array( $this->slug ), // Post type |
|
| 374 | + 'title' => __('Featured Plan', 'lsx-health-plan'), |
|
| 375 | + 'object_types' => array($this->slug), // Post type |
|
| 376 | 376 | 'context' => 'side', |
| 377 | 377 | 'priority' => 'high', |
| 378 | 378 | 'show_names' => true, |
@@ -380,8 +380,8 @@ discard block |
||
| 380 | 380 | ); |
| 381 | 381 | $cmb->add_field( |
| 382 | 382 | array( |
| 383 | - 'name' => __( 'Featured Plan', 'lsx-health-plan' ), |
|
| 384 | - 'desc' => __( 'Enable a featured plan' ), |
|
| 383 | + 'name' => __('Featured Plan', 'lsx-health-plan'), |
|
| 384 | + 'desc' => __('Enable a featured plan'), |
|
| 385 | 385 | 'id' => $this->slug . '_featured_plan', |
| 386 | 386 | 'type' => 'checkbox', |
| 387 | 387 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -396,8 +396,8 @@ discard block |
||
| 396 | 396 | $cmb = new_cmb2_box( |
| 397 | 397 | array( |
| 398 | 398 | 'id' => $this->slug . '_sections_metabox', |
| 399 | - 'title' => __( 'Sections', 'lsx-health-plan' ), |
|
| 400 | - 'object_types' => array( $this->slug ), // Post type. |
|
| 399 | + 'title' => __('Sections', 'lsx-health-plan'), |
|
| 400 | + 'object_types' => array($this->slug), // Post type. |
|
| 401 | 401 | 'context' => 'normal', |
| 402 | 402 | 'priority' => 'low', |
| 403 | 403 | 'show_names' => true, |
@@ -413,9 +413,9 @@ discard block |
||
| 413 | 413 | 'id' => $this->slug . '_sections', |
| 414 | 414 | 'type' => 'group', |
| 415 | 415 | 'options' => array( |
| 416 | - 'group_title' => __( 'Section', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
| 417 | - 'add_button' => __( 'Add section', 'lsx-health-plan' ), |
|
| 418 | - 'remove_button' => __( 'Remove section', 'lsx-health-plan' ), |
|
| 416 | + 'group_title' => __('Section', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number |
|
| 417 | + 'add_button' => __('Add section', 'lsx-health-plan'), |
|
| 418 | + 'remove_button' => __('Remove section', 'lsx-health-plan'), |
|
| 419 | 419 | 'sortable' => true, |
| 420 | 420 | 'closed' => true, // true to have the groups closed by default |
| 421 | 421 | ), |
@@ -427,10 +427,10 @@ discard block |
||
| 427 | 427 | $cmb->add_group_field( |
| 428 | 428 | $group, |
| 429 | 429 | array( |
| 430 | - 'name' => __( 'Title', 'lsx-health-plan' ), |
|
| 430 | + 'name' => __('Title', 'lsx-health-plan'), |
|
| 431 | 431 | 'id' => 'title', |
| 432 | 432 | 'type' => 'text', |
| 433 | - 'desc' => __( 'e.g Day 1 / Week 1', 'lsx-health-plan' ), |
|
| 433 | + 'desc' => __('e.g Day 1 / Week 1', 'lsx-health-plan'), |
|
| 434 | 434 | 'classes' => 'lsx-field-col lsx-field-col-50', |
| 435 | 435 | ) |
| 436 | 436 | ); |
@@ -438,10 +438,10 @@ discard block |
||
| 438 | 438 | $cmb->add_group_field( |
| 439 | 439 | $group, |
| 440 | 440 | array( |
| 441 | - 'name' => __( 'Group', 'lsx-health-plan' ), |
|
| 441 | + 'name' => __('Group', 'lsx-health-plan'), |
|
| 442 | 442 | 'id' => 'group', |
| 443 | 443 | 'type' => 'text', |
| 444 | - 'desc' => __( 'e.g Week 1 / January', 'lsx-health-plan' ), |
|
| 444 | + 'desc' => __('e.g Week 1 / January', 'lsx-health-plan'), |
|
| 445 | 445 | 'classes' => 'lsx-field-col lsx-field-col-50', |
| 446 | 446 | ) |
| 447 | 447 | ); |
@@ -449,25 +449,25 @@ discard block |
||
| 449 | 449 | $cmb->add_group_field( |
| 450 | 450 | $group, |
| 451 | 451 | array( |
| 452 | - 'name' => __( 'Overview', 'lsx-health-plan' ), |
|
| 452 | + 'name' => __('Overview', 'lsx-health-plan'), |
|
| 453 | 453 | 'id' => 'description', |
| 454 | 454 | 'type' => 'wysiwyg', |
| 455 | 455 | ) |
| 456 | 456 | ); |
| 457 | 457 | |
| 458 | - if ( post_type_exists( 'workout' ) ) { |
|
| 458 | + if (post_type_exists('workout')) { |
|
| 459 | 459 | $cmb->add_group_field( |
| 460 | 460 | $group, |
| 461 | 461 | array( |
| 462 | - 'name' => __( 'Workouts', 'lsx-health-plan' ), |
|
| 462 | + 'name' => __('Workouts', 'lsx-health-plan'), |
|
| 463 | 463 | 'id' => 'connected_workouts', |
| 464 | - 'desc' => __( 'Connect the workout(s) that apply to this section.', 'lsx-health-plan' ), |
|
| 464 | + 'desc' => __('Connect the workout(s) that apply to this section.', 'lsx-health-plan'), |
|
| 465 | 465 | 'type' => 'post_search_ajax', |
| 466 | 466 | 'limit' => 15, |
| 467 | 467 | 'sortable' => true, |
| 468 | 468 | 'query_args' => array( |
| 469 | - 'post_type' => array( 'workout' ), |
|
| 470 | - 'post_status' => array( 'publish' ), |
|
| 469 | + 'post_type' => array('workout'), |
|
| 470 | + 'post_status' => array('publish'), |
|
| 471 | 471 | 'posts_per_page' => -1, |
| 472 | 472 | ), |
| 473 | 473 | 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-33', |
@@ -475,40 +475,40 @@ discard block |
||
| 475 | 475 | ); |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | - if ( post_type_exists( 'meal' ) ) { |
|
| 478 | + if (post_type_exists('meal')) { |
|
| 479 | 479 | $cmb->add_group_field( |
| 480 | 480 | $group, |
| 481 | 481 | array( |
| 482 | - 'name' => __( 'Meals', 'lsx-health-plan' ), |
|
| 483 | - 'desc' => __( 'Connect the meal(s) that apply to this section.', 'lsx-health-plan' ), |
|
| 482 | + 'name' => __('Meals', 'lsx-health-plan'), |
|
| 483 | + 'desc' => __('Connect the meal(s) that apply to this section.', 'lsx-health-plan'), |
|
| 484 | 484 | 'id' => 'connected_meals', |
| 485 | 485 | 'type' => 'post_search_ajax', |
| 486 | 486 | // Optional : |
| 487 | 487 | 'limit' => 15, // Limit selection to X items only (default 1) |
| 488 | 488 | 'sortable' => true, // Allow selected items to be sortable (default false) |
| 489 | 489 | 'query_args' => array( |
| 490 | - 'post_type' => array( 'meal' ), |
|
| 491 | - 'post_status' => array( 'publish' ), |
|
| 490 | + 'post_type' => array('meal'), |
|
| 491 | + 'post_status' => array('publish'), |
|
| 492 | 492 | 'posts_per_page' => -1, |
| 493 | 493 | ), |
| 494 | 494 | 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-33', |
| 495 | 495 | ) |
| 496 | 496 | ); |
| 497 | 497 | } |
| 498 | - if ( post_type_exists( 'tip' ) ) { |
|
| 498 | + if (post_type_exists('tip')) { |
|
| 499 | 499 | $cmb->add_group_field( |
| 500 | 500 | $group, |
| 501 | 501 | array( |
| 502 | - 'name' => __( 'Tips', 'lsx-health-plan' ), |
|
| 502 | + 'name' => __('Tips', 'lsx-health-plan'), |
|
| 503 | 503 | 'id' => 'connected_tips', |
| 504 | - 'desc' => __( 'Connect the tip(s) that apply to this section.', 'lsx-health-plan' ), |
|
| 504 | + 'desc' => __('Connect the tip(s) that apply to this section.', 'lsx-health-plan'), |
|
| 505 | 505 | 'type' => 'post_search_ajax', |
| 506 | 506 | // Optional : |
| 507 | - 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 508 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
| 507 | + 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 508 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
| 509 | 509 | 'query_args' => array( |
| 510 | - 'post_type' => array( 'tip' ), |
|
| 511 | - 'post_status' => array( 'publish' ), |
|
| 510 | + 'post_type' => array('tip'), |
|
| 511 | + 'post_status' => array('publish'), |
|
| 512 | 512 | 'posts_per_page' => -1, |
| 513 | 513 | ), |
| 514 | 514 | 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-33', |
@@ -6,29 +6,29 @@ |
||
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | 8 | |
| 9 | -$this_post_type = get_post_type( get_the_ID() ); |
|
| 9 | +$this_post_type = get_post_type(get_the_ID()); |
|
| 10 | 10 | |
| 11 | -$connected_tips = get_post_meta( get_the_ID(), ( $this_post_type . '_connected_tips' ), true ); |
|
| 11 | +$connected_tips = get_post_meta(get_the_ID(), ($this_post_type . '_connected_tips'), true); |
|
| 12 | 12 | |
| 13 | 13 | ?> |
| 14 | 14 | <div id="lsx-tips-shortcode" class="daily-plan-block"> |
| 15 | 15 | <div class="lsx-tips-shortcode lsx-tips-slider slick-slider slick-dotted" > |
| 16 | 16 | <?php |
| 17 | 17 | |
| 18 | - foreach ( $connected_tips as $tip ) { |
|
| 19 | - $tip_link = get_permalink( $tip ); |
|
| 20 | - $tip_name = get_the_title( $tip ); |
|
| 21 | - $tip_content = get_post_field( 'post_content', $tip ); |
|
| 18 | + foreach ($connected_tips as $tip) { |
|
| 19 | + $tip_link = get_permalink($tip); |
|
| 20 | + $tip_name = get_the_title($tip); |
|
| 21 | + $tip_content = get_post_field('post_content', $tip); |
|
| 22 | 22 | $icon = LSX_HEALTH_PLAN_URL . 'assets/images/tips-icon.svg'; |
| 23 | 23 | ?> |
| 24 | 24 | <div class="content-box diet-tip-wrapper quick-tip"> |
| 25 | 25 | <div class="row"> |
| 26 | 26 | <div class="col-lg-1 col-md-1 col-sm-1 col-xs-2"> |
| 27 | - <img loading="lazy" src="<?php echo esc_url( $icon ); ?>" alt="tip"/> |
|
| 27 | + <img loading="lazy" src="<?php echo esc_url($icon); ?>" alt="tip"/> |
|
| 28 | 28 | </div> |
| 29 | 29 | <div class="col-lg-11 col-md-11 col-sm-11 col-xs-10"> |
| 30 | - <h3 class="tip-title"><?php echo esc_html( $tip_name ); ?></h3> |
|
| 31 | - <?php echo wp_kses_post( $tip_content ); ?> |
|
| 30 | + <h3 class="tip-title"><?php echo esc_html($tip_name); ?></h3> |
|
| 31 | + <?php echo wp_kses_post($tip_content); ?> |
|
| 32 | 32 | </div> |
| 33 | 33 | </div> |
| 34 | 34 | </div> |
@@ -17,44 +17,44 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | $plan_id = get_the_ID(); |
| 19 | 19 | $has_sections = \lsx_health_plan\functions\plan\has_sections(); |
| 20 | -$has_parent = wp_get_post_parent_id( $plan_id ); |
|
| 20 | +$has_parent = wp_get_post_parent_id($plan_id); |
|
| 21 | 21 | $restricted = false; |
| 22 | -$is_section = get_query_var( 'section', false ); |
|
| 22 | +$is_section = get_query_var('section', false); |
|
| 23 | 23 | |
| 24 | 24 | // Getting translated endpoint. |
| 25 | -$plan = \lsx_health_plan\functions\get_option( 'endpoint_plan', 'plan' ); |
|
| 25 | +$plan = \lsx_health_plan\functions\get_option('endpoint_plan', 'plan'); |
|
| 26 | 26 | |
| 27 | -$connected_members = get_post_meta( get_the_ID(), ( $plan . '_connected_team_member' ), true ); |
|
| 28 | -$connected_articles = get_post_meta( get_the_ID(), ( $plan . '_connected_articles' ), true ); |
|
| 27 | +$connected_members = get_post_meta(get_the_ID(), ($plan . '_connected_team_member'), true); |
|
| 28 | +$connected_articles = get_post_meta(get_the_ID(), ($plan . '_connected_articles'), true); |
|
| 29 | 29 | |
| 30 | -if ( ! empty( $has_sections ) ) { |
|
| 30 | +if ( ! empty($has_sections)) { |
|
| 31 | 31 | $plan_type_class = 'parent-plan'; |
| 32 | - if ( 0 !== $has_parent ) { |
|
| 32 | + if (0 !== $has_parent) { |
|
| 33 | 33 | $plan_type_class = 'parent-sub-plan'; |
| 34 | 34 | } |
| 35 | 35 | } else { |
| 36 | 36 | $plan_type_class = 'unique-plan'; |
| 37 | - if ( 0 !== $has_parent ) { |
|
| 37 | + if (0 !== $has_parent) { |
|
| 38 | 38 | $plan_type_class = 'child-plan-' . $has_parent; |
| 39 | 39 | } |
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | // Get the plan restrictions. |
| 43 | -if ( function_exists( 'wc_memberships_is_post_content_restricted' ) && wc_memberships_is_post_content_restricted( get_the_ID() ) ) { |
|
| 44 | - $restricted = ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
| 43 | +if (function_exists('wc_memberships_is_post_content_restricted') && wc_memberships_is_post_content_restricted(get_the_ID())) { |
|
| 44 | + $restricted = ! current_user_can('wc_memberships_view_restricted_post_content', get_the_ID()); |
|
| 45 | 45 | } |
| 46 | 46 | ?> |
| 47 | 47 | |
| 48 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
| 48 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
| 49 | 49 | |
| 50 | 50 | <?php lsx_content_before(); ?> |
| 51 | 51 | |
| 52 | - <main id="main" class="site-main <?php echo esc_html( $plan_type_class ); ?>" role="main"> |
|
| 52 | + <main id="main" class="site-main <?php echo esc_html($plan_type_class); ?>" role="main"> |
|
| 53 | 53 | |
| 54 | 54 | <?php lsx_content_top(); ?> |
| 55 | 55 | |
| 56 | 56 | <?php |
| 57 | - if ( ! empty( $has_sections ) && false === $is_section ) { |
|
| 57 | + if ( ! empty($has_sections) && false === $is_section) { |
|
| 58 | 58 | ?> |
| 59 | 59 | <div class="post-wrapper"> |
| 60 | 60 | <div class="plan-content"> |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | <div class="entry-content"> |
| 65 | 65 | <div class="single-plan-inner main-plan-content"> |
| 66 | 66 | <div class="single-plan-section-title title-lined"> |
| 67 | - <?php lsx_get_svg_icon( 'meal.svg' ); ?> |
|
| 67 | + <?php lsx_get_svg_icon('meal.svg'); ?> |
|
| 68 | 68 | <h2><?php the_title(); ?></h2> |
| 69 | 69 | |
| 70 | 70 | </div> |
@@ -72,26 +72,26 @@ discard block |
||
| 72 | 72 | <?php |
| 73 | 73 | |
| 74 | 74 | // The top part |
| 75 | - echo wp_kses_post( wp_kses_post( lsx_health_plan_main_content() ) ); |
|
| 75 | + echo wp_kses_post(wp_kses_post(lsx_health_plan_main_content())); |
|
| 76 | 76 | |
| 77 | - echo wp_kses_post( '<h3 class="my-plan-title">' . __( 'Your Game Plan', 'lsx-health-plan' ) . '</h3>' ); |
|
| 77 | + echo wp_kses_post('<h3 class="my-plan-title">' . __('Your Game Plan', 'lsx-health-plan') . '</h3>'); |
|
| 78 | 78 | |
| 79 | 79 | ?> |
| 80 | 80 | <div class="the-plan-content"> |
| 81 | 81 | <?php |
| 82 | 82 | |
| 83 | - if ( false === $restricted ) { |
|
| 84 | - echo wp_kses_post( '<span class="progress"><progress class="bar" value="' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '" max="100"> ' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '% </progress><span>' . \lsx_health_plan\functions\get_progress( get_the_ID() ) . '%</span></span>' ); |
|
| 83 | + if (false === $restricted) { |
|
| 84 | + echo wp_kses_post('<span class="progress"><progress class="bar" value="' . \lsx_health_plan\functions\get_progress(get_the_ID()) . '" max="100"> ' . \lsx_health_plan\functions\get_progress(get_the_ID()) . '% </progress><span>' . \lsx_health_plan\functions\get_progress(get_the_ID()) . '%</span></span>'); |
|
| 85 | 85 | } |
| 86 | 86 | |
| 87 | - echo do_shortcode( '[lsx_health_plan_day_plan_block week_view="true" show_downloads="true" plan="' . get_the_ID() . '"]' ); |
|
| 87 | + echo do_shortcode('[lsx_health_plan_day_plan_block week_view="true" show_downloads="true" plan="' . get_the_ID() . '"]'); |
|
| 88 | 88 | |
| 89 | 89 | ?> |
| 90 | 90 | <div class="row status-plan-buttons main-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 border-btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'My Plans', 'lsx-health-plan' ); ?></a> |
|
| 94 | + <a class="btn border-btn" href="<?php echo wp_kses_post(get_permalink(wc_get_page_id('myaccount'))); ?>"><?php esc_html_e('My Plans', 'lsx-health-plan'); ?></a> |
|
| 95 | 95 | <?php |
| 96 | 96 | } |
| 97 | 97 | ?> |
@@ -121,8 +121,8 @@ discard block |
||
| 121 | 121 | <?php lsx_content_bottom(); ?> |
| 122 | 122 | |
| 123 | 123 | <?php |
| 124 | - if ( ! empty( $connected_articles ) ) { |
|
| 125 | - lsx_hp_single_related( $connected_articles, __( 'Latest articles', 'lsx-health-plan' ) ); |
|
| 124 | + if ( ! empty($connected_articles)) { |
|
| 125 | + lsx_hp_single_related($connected_articles, __('Latest articles', 'lsx-health-plan')); |
|
| 126 | 126 | } |
| 127 | 127 | ?> |
| 128 | 128 | |
@@ -11,11 +11,11 @@ discard block |
||
| 11 | 11 | * @param string $post_id |
| 12 | 12 | * @return boolean |
| 13 | 13 | */ |
| 14 | -function lsx_health_plan_has_warmup( $post_id = '' ) { |
|
| 15 | - if ( '' === $post_id ) { |
|
| 14 | +function lsx_health_plan_has_warmup($post_id = '') { |
|
| 15 | + if ('' === $post_id) { |
|
| 16 | 16 | $post_id = get_the_ID(); |
| 17 | 17 | } |
| 18 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' ); |
|
| 18 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'plan_warmup'); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -24,14 +24,14 @@ discard block |
||
| 24 | 24 | * @param string $post_id |
| 25 | 25 | * @return boolean |
| 26 | 26 | */ |
| 27 | -function lsx_health_plan_has_workout( $post_id = '' ) { |
|
| 28 | - if ( ! post_type_exists( 'workout' ) ) { |
|
| 27 | +function lsx_health_plan_has_workout($post_id = '') { |
|
| 28 | + if ( ! post_type_exists('workout')) { |
|
| 29 | 29 | return false; |
| 30 | 30 | } |
| 31 | - if ( '' === $post_id ) { |
|
| 31 | + if ('' === $post_id) { |
|
| 32 | 32 | $post_id = get_the_ID(); |
| 33 | 33 | } |
| 34 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ); |
|
| 34 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_workouts'); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /** |
@@ -40,14 +40,14 @@ discard block |
||
| 40 | 40 | * @param string $post_id |
| 41 | 41 | * @return boolean |
| 42 | 42 | */ |
| 43 | -function lsx_health_plan_has_meal( $post_id = '' ) { |
|
| 44 | - if ( ! post_type_exists( 'meal' ) ) { |
|
| 43 | +function lsx_health_plan_has_meal($post_id = '') { |
|
| 44 | + if ( ! post_type_exists('meal')) { |
|
| 45 | 45 | return false; |
| 46 | 46 | } |
| 47 | - if ( '' === $post_id ) { |
|
| 47 | + if ('' === $post_id) { |
|
| 48 | 48 | $post_id = get_the_ID(); |
| 49 | 49 | } |
| 50 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
| 50 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_meals'); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | /** |
@@ -56,14 +56,14 @@ discard block |
||
| 56 | 56 | * @param string $post_id |
| 57 | 57 | * @return boolean |
| 58 | 58 | */ |
| 59 | -function lsx_health_plan_has_recipe( $post_id = '' ) { |
|
| 60 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
| 59 | +function lsx_health_plan_has_recipe($post_id = '') { |
|
| 60 | + if ( ! post_type_exists('recipe')) { |
|
| 61 | 61 | return false; |
| 62 | 62 | } |
| 63 | - if ( '' === $post_id ) { |
|
| 63 | + if ('' === $post_id) { |
|
| 64 | 64 | $post_id = get_the_ID(); |
| 65 | 65 | } |
| 66 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
| 66 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_recipes'); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | /** |
@@ -72,13 +72,13 @@ discard block |
||
| 72 | 72 | * @param string $post_id |
| 73 | 73 | * @return boolean |
| 74 | 74 | */ |
| 75 | -function lsx_health_plan_has_downloads( $post_id = '' ) { |
|
| 75 | +function lsx_health_plan_has_downloads($post_id = '') { |
|
| 76 | 76 | $has_downloads = false; |
| 77 | - if ( '' === $post_id ) { |
|
| 77 | + if ('' === $post_id) { |
|
| 78 | 78 | $post_id = get_the_ID(); |
| 79 | 79 | } |
| 80 | - $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
| 81 | - if ( ! empty( $downloads ) ) { |
|
| 80 | + $downloads = \lsx_health_plan\functions\get_downloads('all', $post_id); |
|
| 81 | + if ( ! empty($downloads)) { |
|
| 82 | 82 | $has_downloads = true; |
| 83 | 83 | } |
| 84 | 84 | return $has_downloads; |
@@ -90,14 +90,14 @@ discard block |
||
| 90 | 90 | * @param string $post_id |
| 91 | 91 | * @return boolean |
| 92 | 92 | */ |
| 93 | -function lsx_health_plan_has_tip( $post_id = '' ) { |
|
| 94 | - if ( ! post_type_exists( 'tip' ) ) { |
|
| 93 | +function lsx_health_plan_has_tip($post_id = '') { |
|
| 94 | + if ( ! post_type_exists('tip')) { |
|
| 95 | 95 | return false; |
| 96 | 96 | } |
| 97 | - if ( '' === $post_id ) { |
|
| 97 | + if ('' === $post_id) { |
|
| 98 | 98 | $post_id = get_the_ID(); |
| 99 | 99 | } |
| 100 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
| 100 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_tips'); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | /** |
@@ -106,14 +106,14 @@ discard block |
||
| 106 | 106 | * @param string $post_id |
| 107 | 107 | * @return boolean |
| 108 | 108 | */ |
| 109 | -function lsx_health_plan_has_video( $post_id = '' ) { |
|
| 110 | - if ( ! post_type_exists( 'video' ) ) { |
|
| 109 | +function lsx_health_plan_has_video($post_id = '') { |
|
| 110 | + if ( ! post_type_exists('video')) { |
|
| 111 | 111 | return false; |
| 112 | 112 | } |
| 113 | - if ( '' === $post_id ) { |
|
| 113 | + if ('' === $post_id) { |
|
| 114 | 114 | $post_id = get_the_ID(); |
| 115 | 115 | } |
| 116 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
| 116 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_videos'); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -123,11 +123,11 @@ discard block |
||
| 123 | 123 | */ |
| 124 | 124 | function lsx_health_plan_user_has_purchase() { |
| 125 | 125 | $valid_order = false; |
| 126 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
| 126 | + $product_id = \lsx_health_plan\functions\get_option('membership_product', false); |
|
| 127 | 127 | |
| 128 | - if ( is_user_logged_in() && false !== $product_id ) { |
|
| 128 | + if (is_user_logged_in() && false !== $product_id) { |
|
| 129 | 129 | $current_user = wp_get_current_user(); |
| 130 | - if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
| 130 | + if (wc_customer_bought_product($current_user->user_email, $current_user->ID, $product_id)) { |
|
| 131 | 131 | $valid_order = true; |
| 132 | 132 | } |
| 133 | 133 | } |
@@ -140,15 +140,15 @@ discard block |
||
| 140 | 140 | * @param string $post_id |
| 141 | 141 | * @return boolean |
| 142 | 142 | */ |
| 143 | -function lsx_health_plan_is_current_tab( $needle = '' ) { |
|
| 143 | +function lsx_health_plan_is_current_tab($needle = '') { |
|
| 144 | 144 | $is_tab = false; |
| 145 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
| 146 | - if ( false === $plan_slug ) { |
|
| 145 | + $plan_slug = \lsx_health_plan\functions\get_option('my_plan_slug', false); |
|
| 146 | + if (false === $plan_slug) { |
|
| 147 | 147 | $plan_slug = 'my-plan'; |
| 148 | 148 | } |
| 149 | - if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
| 150 | - $endpoint = get_query_var( 'endpoint' ); |
|
| 151 | - if ( false !== $endpoint && $needle === $endpoint ) { |
|
| 149 | + if (is_singular('plan') || is_page($plan_slug)) { |
|
| 150 | + $endpoint = get_query_var('endpoint'); |
|
| 151 | + if (false !== $endpoint && $needle === $endpoint) { |
|
| 152 | 152 | $is_tab = true; |
| 153 | 153 | } |
| 154 | 154 | } |
@@ -161,14 +161,14 @@ discard block |
||
| 161 | 161 | * @param string $post_id |
| 162 | 162 | * @return boolean |
| 163 | 163 | */ |
| 164 | -function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) { |
|
| 164 | +function lsx_health_plan_is_day_complete($post_id = '', $section_key = '') { |
|
| 165 | 165 | $is_complete = false; |
| 166 | - if ( '' === $post_id ) { |
|
| 166 | + if ('' === $post_id) { |
|
| 167 | 167 | $post_id = get_the_ID(); |
| 168 | 168 | } |
| 169 | - $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
| 170 | - $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
| 171 | - if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
| 169 | + $key = \lsx_health_plan\functions\plan\generate_section_id($section_key); |
|
| 170 | + $is_day_complete = get_user_meta(get_current_user_id(), 'day_' . $key . '_complete', true); |
|
| 171 | + if (false !== $is_day_complete && '' !== $is_day_complete) { |
|
| 172 | 172 | $is_complete = true; |
| 173 | 173 | } |
| 174 | 174 | |
@@ -186,11 +186,11 @@ discard block |
||
| 186 | 186 | * @param string $week The week name 'week-1'. |
| 187 | 187 | * @return boolean |
| 188 | 188 | */ |
| 189 | -function lsx_health_plan_week_has_downloads( $week = '' ) { |
|
| 189 | +function lsx_health_plan_week_has_downloads($week = '') { |
|
| 190 | 190 | $has_downloads = false; |
| 191 | - if ( '' !== $week ) { |
|
| 192 | - $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
| 193 | - if ( ! empty( $downloads ) ) { |
|
| 191 | + if ('' !== $week) { |
|
| 192 | + $downloads = \lsx_health_plan\functions\get_weekly_downloads($week); |
|
| 193 | + if ( ! empty($downloads)) { |
|
| 194 | 194 | $has_downloads = true; |
| 195 | 195 | } |
| 196 | 196 | } |
@@ -203,14 +203,14 @@ discard block |
||
| 203 | 203 | * @param string $post_id |
| 204 | 204 | * @return boolean |
| 205 | 205 | */ |
| 206 | -function lsx_health_plan_has_tips( $post_id = '' ) { |
|
| 206 | +function lsx_health_plan_has_tips($post_id = '') { |
|
| 207 | 207 | $has_tips = false; |
| 208 | - if ( '' === $post_id ) { |
|
| 208 | + if ('' === $post_id) { |
|
| 209 | 209 | $post_id = get_the_ID(); |
| 210 | 210 | } |
| 211 | - $connected_tips = get_post_meta( get_the_ID(), 'connected_tips', true ); |
|
| 212 | - $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
| 213 | - if ( ! empty( $connected_tips ) ) { |
|
| 211 | + $connected_tips = get_post_meta(get_the_ID(), 'connected_tips', true); |
|
| 212 | + $connected_tips = \lsx_health_plan\functions\check_posts_exist($connected_tips); |
|
| 213 | + if ( ! empty($connected_tips)) { |
|
| 214 | 214 | $has_tips = true; |
| 215 | 215 | } |
| 216 | 216 | return $has_tips; |
@@ -15,9 +15,9 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | function is_search_enabled() { |
| 17 | 17 | $enabled = false; |
| 18 | - if ( function_exists( 'lsx_search' ) ) { |
|
| 18 | + if (function_exists('lsx_search')) { |
|
| 19 | 19 | $search_instance = \LSX_Search::get_instance(); |
| 20 | - if ( null !== $search_instance ) { |
|
| 20 | + if (null !== $search_instance) { |
|
| 21 | 21 | $enabled = $search_instance->frontend->is_search_enabled(); |
| 22 | 22 | } |
| 23 | 23 | } |
@@ -30,15 +30,15 @@ discard block |
||
| 30 | 30 | * @param integer $plan_id |
| 31 | 31 | * @return boolean |
| 32 | 32 | */ |
| 33 | -function has_sections( $plan_id = 0 ) { |
|
| 33 | +function has_sections($plan_id = 0) { |
|
| 34 | 34 | $sections = false; |
| 35 | - if ( 0 === $plan_id ) { |
|
| 35 | + if (0 === $plan_id) { |
|
| 36 | 36 | $plan_id = get_the_ID(); |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - $section_array = get_post_meta( $plan_id, 'plan_sections', true ); |
|
| 39 | + $section_array = get_post_meta($plan_id, 'plan_sections', true); |
|
| 40 | 40 | |
| 41 | - if ( ! empty( $section_array ) ) { |
|
| 41 | + if ( ! empty($section_array)) { |
|
| 42 | 42 | $sections = true; |
| 43 | 43 | } |
| 44 | 44 | return $sections; |
@@ -51,16 +51,16 @@ discard block |
||
| 51 | 51 | * @param boolean $group_sections |
| 52 | 52 | * @return array |
| 53 | 53 | */ |
| 54 | -function get_sections( $plan_id = 0, $group_sections = false ) { |
|
| 54 | +function get_sections($plan_id = 0, $group_sections = false) { |
|
| 55 | 55 | $sections = array(); |
| 56 | - if ( 0 === $plan_id ) { |
|
| 56 | + if (0 === $plan_id) { |
|
| 57 | 57 | $plan_id = get_the_ID(); |
| 58 | 58 | } |
| 59 | - $section_array = get_post_meta( $plan_id, 'plan_sections', true ); |
|
| 60 | - if ( ! empty( $section_array ) ) { |
|
| 59 | + $section_array = get_post_meta($plan_id, 'plan_sections', true); |
|
| 60 | + if ( ! empty($section_array)) { |
|
| 61 | 61 | $sections = $section_array; |
| 62 | - if ( false !== $group_sections ) { |
|
| 63 | - $sections = group_sections( $sections ); |
|
| 62 | + if (false !== $group_sections) { |
|
| 63 | + $sections = group_sections($sections); |
|
| 64 | 64 | } |
| 65 | 65 | } |
| 66 | 66 | return $sections; |
@@ -72,14 +72,14 @@ discard block |
||
| 72 | 72 | * @param string $section_key |
| 73 | 73 | * @return array |
| 74 | 74 | */ |
| 75 | -function get_section_info( $section_key = '' ) { |
|
| 75 | +function get_section_info($section_key = '') { |
|
| 76 | 76 | $section_info = array(); |
| 77 | 77 | |
| 78 | 78 | $sections = get_sections(); |
| 79 | - if ( ! empty( $sections ) ) { |
|
| 80 | - foreach ( $sections as $key => $values ) { |
|
| 81 | - $current_key = sanitize_title( $values['title'] ); |
|
| 82 | - if ( $current_key === $section_key ) { |
|
| 79 | + if ( ! empty($sections)) { |
|
| 80 | + foreach ($sections as $key => $values) { |
|
| 81 | + $current_key = sanitize_title($values['title']); |
|
| 82 | + if ($current_key === $section_key) { |
|
| 83 | 83 | return $values; |
| 84 | 84 | } |
| 85 | 85 | } |
@@ -93,16 +93,16 @@ discard block |
||
| 93 | 93 | * @param array $sections |
| 94 | 94 | * @return array |
| 95 | 95 | */ |
| 96 | -function group_sections( $sections = array() ) { |
|
| 96 | +function group_sections($sections = array()) { |
|
| 97 | 97 | $groups = array(); |
| 98 | - if ( ! empty( $sections ) ) { |
|
| 99 | - foreach ( $sections as $section_key => $section_values ) { |
|
| 100 | - $group_key = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 101 | - if ( isset( $section_values['group'] ) && '' !== $section_values['group'] ) { |
|
| 98 | + if ( ! empty($sections)) { |
|
| 99 | + foreach ($sections as $section_key => $section_values) { |
|
| 100 | + $group_key = apply_filters('lsx_hp_default_plan_group', __('Daily Plan', 'lsx-health-plan')); |
|
| 101 | + if (isset($section_values['group']) && '' !== $section_values['group']) { |
|
| 102 | 102 | $group_key = $section_values['group']; |
| 103 | 103 | } |
| 104 | - $group_key = sanitize_title( $group_key ); |
|
| 105 | - $groups[ $group_key ][ $section_key ] = $section_values; |
|
| 104 | + $group_key = sanitize_title($group_key); |
|
| 105 | + $groups[$group_key][$section_key] = $section_values; |
|
| 106 | 106 | } |
| 107 | 107 | } |
| 108 | 108 | return $groups; |
@@ -114,11 +114,11 @@ discard block |
||
| 114 | 114 | * @param array $sections |
| 115 | 115 | * @return array |
| 116 | 116 | */ |
| 117 | -function get_group_title( $sections = array() ) { |
|
| 118 | - $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 119 | - if ( ! empty( $sections ) ) { |
|
| 120 | - $first_section = reset( $sections ); |
|
| 121 | - if ( isset( $first_section['group'] ) && '' !== $first_section['group'] ) { |
|
| 117 | +function get_group_title($sections = array()) { |
|
| 118 | + $group_title = apply_filters('lsx_hp_default_plan_group', __('Daily Plan', 'lsx-health-plan')); |
|
| 119 | + if ( ! empty($sections)) { |
|
| 120 | + $first_section = reset($sections); |
|
| 121 | + if (isset($first_section['group']) && '' !== $first_section['group']) { |
|
| 122 | 122 | $group_title = $first_section['group']; |
| 123 | 123 | } |
| 124 | 124 | } |
@@ -132,13 +132,13 @@ discard block |
||
| 132 | 132 | * @param string $title |
| 133 | 133 | * @return array |
| 134 | 134 | */ |
| 135 | -function get_permalink( $plan_id = 0, $title = '' ) { |
|
| 136 | - if ( 0 === $plan_id ) { |
|
| 135 | +function get_permalink($plan_id = 0, $title = '') { |
|
| 136 | + if (0 === $plan_id) { |
|
| 137 | 137 | $plan_id = get_the_ID(); |
| 138 | 138 | } |
| 139 | - $url = \get_permalink( $plan_id ); |
|
| 140 | - if ( '' !== $title ) { |
|
| 141 | - $url .= sanitize_title( $title ) . '/'; |
|
| 139 | + $url = \get_permalink($plan_id); |
|
| 140 | + if ('' !== $title) { |
|
| 141 | + $url .= sanitize_title($title) . '/'; |
|
| 142 | 142 | } |
| 143 | 143 | return $url; |
| 144 | 144 | } |
@@ -148,9 +148,9 @@ discard block |
||
| 148 | 148 | * |
| 149 | 149 | * @return boolean |
| 150 | 150 | */ |
| 151 | -function is_filters_disabled( $disabled = false ) { |
|
| 152 | - $is_disabled = \lsx_health_plan\functions\get_option( 'plan_filters_disabled', false ); |
|
| 153 | - if ( false !== $is_disabled ) { |
|
| 151 | +function is_filters_disabled($disabled = false) { |
|
| 152 | + $is_disabled = \lsx_health_plan\functions\get_option('plan_filters_disabled', false); |
|
| 153 | + if (false !== $is_disabled) { |
|
| 154 | 154 | $disabled = true; |
| 155 | 155 | } |
| 156 | 156 | return $disabled; |
@@ -163,18 +163,18 @@ discard block |
||
| 163 | 163 | * @param string $section_key |
| 164 | 164 | * @return string |
| 165 | 165 | */ |
| 166 | -function generate_section_id( $section_key = '' ) { |
|
| 167 | - $key = get_the_ID(); |
|
| 168 | - if ( '' === $section_key ) { |
|
| 169 | - $section_key = get_query_var( 'section' ); |
|
| 166 | +function generate_section_id($section_key = '') { |
|
| 167 | + $key = get_the_ID(); |
|
| 168 | + if ('' === $section_key) { |
|
| 169 | + $section_key = get_query_var('section'); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | - $section_key = sanitize_title( $section_key ); |
|
| 172 | + $section_key = sanitize_title($section_key); |
|
| 173 | 173 | |
| 174 | - if ( '' !== $section_key && \lsx_health_plan\functions\plan\has_sections() ) { |
|
| 175 | - $group_title = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 176 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 177 | - $key .= '_' . sanitize_key( $group_title ) . '_' . sanitize_key( $section_info['title'] ); |
|
| 174 | + if ('' !== $section_key && \lsx_health_plan\functions\plan\has_sections()) { |
|
| 175 | + $group_title = apply_filters('lsx_hp_default_plan_group', __('Daily Plan', 'lsx-health-plan')); |
|
| 176 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
| 177 | + $key .= '_' . sanitize_key($group_title) . '_' . sanitize_key($section_info['title']); |
|
| 178 | 178 | } |
| 179 | 179 | return $key; |
| 180 | 180 | } |
@@ -16,24 +16,24 @@ discard block |
||
| 16 | 16 | * @param boolean $single |
| 17 | 17 | * @return boolean |
| 18 | 18 | */ |
| 19 | -function has_attached_post( $post_id = '', $meta_key = '', $single = true ) { |
|
| 19 | +function has_attached_post($post_id = '', $meta_key = '', $single = true) { |
|
| 20 | 20 | $has_post = false; |
| 21 | - if ( '' === $post_id ) { |
|
| 21 | + if ('' === $post_id) { |
|
| 22 | 22 | $post_id = get_the_ID(); |
| 23 | 23 | } |
| 24 | - $items = get_post_meta( $post_id, $meta_key, $single ); |
|
| 25 | - if ( '' !== $items && false !== $items && 0 !== $items ) { |
|
| 26 | - if ( ! is_array( $items ) ) { |
|
| 27 | - $items = array( $items ); |
|
| 24 | + $items = get_post_meta($post_id, $meta_key, $single); |
|
| 25 | + if ('' !== $items && false !== $items && 0 !== $items) { |
|
| 26 | + if ( ! is_array($items)) { |
|
| 27 | + $items = array($items); |
|
| 28 | 28 | } |
| 29 | - $items = check_posts_exist( $items ); |
|
| 30 | - if ( ! empty( $items ) ) { |
|
| 29 | + $items = check_posts_exist($items); |
|
| 30 | + if ( ! empty($items)) { |
|
| 31 | 31 | $has_post = true; |
| 32 | 32 | } |
| 33 | 33 | } else { |
| 34 | 34 | // Check for defaults. |
| 35 | - $options = get_option( 'all' ); |
|
| 36 | - if ( isset( $options[ $meta_key ] ) && '' !== $options[ $meta_key ] && ! empty( $options[ $meta_key ] ) ) { |
|
| 35 | + $options = get_option('all'); |
|
| 36 | + if (isset($options[$meta_key]) && '' !== $options[$meta_key] && ! empty($options[$meta_key])) { |
|
| 37 | 37 | $has_post = true; |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -47,17 +47,17 @@ discard block |
||
| 47 | 47 | * @param mixed $default Optional default value |
| 48 | 48 | * @return mixed Option value |
| 49 | 49 | */ |
| 50 | -function get_option( $key = '', $default = false ) { |
|
| 51 | - if ( function_exists( 'cmb2_get_option' ) ) { |
|
| 52 | - return cmb2_get_option( 'lsx_health_plan_options', $key, $default ); |
|
| 50 | +function get_option($key = '', $default = false) { |
|
| 51 | + if (function_exists('cmb2_get_option')) { |
|
| 52 | + return cmb2_get_option('lsx_health_plan_options', $key, $default); |
|
| 53 | 53 | } |
| 54 | 54 | // Fallback to get_option if CMB2 is not loaded yet. |
| 55 | - $opts = \get_option( 'lsx_health_plan_options', $default ); |
|
| 55 | + $opts = \get_option('lsx_health_plan_options', $default); |
|
| 56 | 56 | $val = $default; |
| 57 | - if ( 'all' === $key ) { |
|
| 57 | + if ('all' === $key) { |
|
| 58 | 58 | $val = $opts; |
| 59 | - } elseif ( is_array( $opts ) && array_key_exists( $key, $opts ) && false !== $opts[ $key ] ) { |
|
| 60 | - $val = $opts[ $key ]; |
|
| 59 | + } elseif (is_array($opts) && array_key_exists($key, $opts) && false !== $opts[$key]) { |
|
| 60 | + $val = $opts[$key]; |
|
| 61 | 61 | } |
| 62 | 62 | return $val; |
| 63 | 63 | } |
@@ -69,54 +69,54 @@ discard block |
||
| 69 | 69 | * @param mixed $default Optional default value |
| 70 | 70 | * @return mixed Option value |
| 71 | 71 | */ |
| 72 | -function get_downloads( $type = 'all', $post_id = '' ) { |
|
| 72 | +function get_downloads($type = 'all', $post_id = '') { |
|
| 73 | 73 | $lsx_health_plan = \lsx_health_plan(); |
| 74 | 74 | $post_types = $lsx_health_plan->get_post_types(); |
| 75 | - if ( '' === $post_id ) { |
|
| 75 | + if ('' === $post_id) { |
|
| 76 | 76 | $post_id = get_the_ID(); |
| 77 | 77 | } |
| 78 | 78 | $downloads = array(); |
| 79 | - $options = get_option( 'all' ); |
|
| 79 | + $options = get_option('all'); |
|
| 80 | 80 | |
| 81 | - foreach ( $post_types as $post_type ) { |
|
| 82 | - if ( 'all' === $type || in_array( $type, $post_types, true ) ) { |
|
| 81 | + foreach ($post_types as $post_type) { |
|
| 82 | + if ('all' === $type || in_array($type, $post_types, true)) { |
|
| 83 | 83 | |
| 84 | 84 | // Get the default downloads for this post type. |
| 85 | 85 | $default_downloads = array(); |
| 86 | 86 | $new_downloads = array(); |
| 87 | - if ( isset( $options[ 'download_' . $post_type ] ) ) { |
|
| 88 | - if ( is_array( $options[ 'download_' . $post_type ] ) ) { |
|
| 89 | - $default_downloads = $options[ 'download_' . $post_type ]; |
|
| 87 | + if (isset($options['download_' . $post_type])) { |
|
| 88 | + if (is_array($options['download_' . $post_type])) { |
|
| 89 | + $default_downloads = $options['download_' . $post_type]; |
|
| 90 | 90 | } else { |
| 91 | - $default_downloads[] = $options[ 'download_' . $post_type ]; |
|
| 91 | + $default_downloads[] = $options['download_' . $post_type]; |
|
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - if ( 'page' === $post_type ) { |
|
| 95 | + if ('page' === $post_type) { |
|
| 96 | 96 | $key = 'plan_warmup'; |
| 97 | 97 | } else { |
| 98 | 98 | $key = 'connected_' . $post_type . 's'; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - $connected_items = get_post_meta( $post_id, $key, true ); |
|
| 102 | - if ( ! empty( $connected_items ) ) { |
|
| 103 | - foreach ( $connected_items as $connected_item ) { |
|
| 104 | - $current_downloads = get_post_meta( $connected_item, 'connected_downloads', true ); |
|
| 105 | - if ( false !== $current_downloads && ! empty( $current_downloads ) ) { |
|
| 106 | - $new_downloads = array_merge( $new_downloads, $current_downloads ); |
|
| 101 | + $connected_items = get_post_meta($post_id, $key, true); |
|
| 102 | + if ( ! empty($connected_items)) { |
|
| 103 | + foreach ($connected_items as $connected_item) { |
|
| 104 | + $current_downloads = get_post_meta($connected_item, 'connected_downloads', true); |
|
| 105 | + if (false !== $current_downloads && ! empty($current_downloads)) { |
|
| 106 | + $new_downloads = array_merge($new_downloads, $current_downloads); |
|
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - if ( ! empty( $new_downloads ) ) { |
|
| 112 | - $downloads = array_merge( $downloads, $new_downloads ); |
|
| 113 | - } elseif ( ! empty( $default_downloads ) ) { |
|
| 114 | - $downloads = array_merge( $downloads, $default_downloads ); |
|
| 111 | + if ( ! empty($new_downloads)) { |
|
| 112 | + $downloads = array_merge($downloads, $new_downloads); |
|
| 113 | + } elseif ( ! empty($default_downloads)) { |
|
| 114 | + $downloads = array_merge($downloads, $default_downloads); |
|
| 115 | 115 | } |
| 116 | - $downloads = array_unique( $downloads ); |
|
| 116 | + $downloads = array_unique($downloads); |
|
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | - $downloads = check_posts_exist( $downloads ); |
|
| 119 | + $downloads = check_posts_exist($downloads); |
|
| 120 | 120 | return $downloads; |
| 121 | 121 | } |
| 122 | 122 | |
@@ -126,11 +126,11 @@ discard block |
||
| 126 | 126 | * @param string $week Week name 'week-1'. |
| 127 | 127 | * @return array an array of the downloads or empty. |
| 128 | 128 | */ |
| 129 | -function get_weekly_downloads( $week = '' ) { |
|
| 129 | +function get_weekly_downloads($week = '') { |
|
| 130 | 130 | $downloads = array(); |
| 131 | - if ( '' !== $week ) { |
|
| 132 | - $saved_downloads = get_transient( 'lsx_hp_weekly_downloads_' . $week ); |
|
| 133 | - if ( false !== $saved_downloads && ! empty( $saved_downloads ) ) { |
|
| 131 | + if ('' !== $week) { |
|
| 132 | + $saved_downloads = get_transient('lsx_hp_weekly_downloads_' . $week); |
|
| 133 | + if (false !== $saved_downloads && ! empty($saved_downloads)) { |
|
| 134 | 134 | $downloads = $saved_downloads; |
| 135 | 135 | } else { |
| 136 | 136 | $args = array( |
@@ -144,17 +144,17 @@ discard block |
||
| 144 | 144 | array( |
| 145 | 145 | 'taxonomy' => 'dlm_download_category', |
| 146 | 146 | 'field' => 'slug', |
| 147 | - 'terms' => array( $week ), |
|
| 147 | + 'terms' => array($week), |
|
| 148 | 148 | ), |
| 149 | 149 | ), |
| 150 | 150 | ); |
| 151 | - $download_query = new \WP_Query( $args ); |
|
| 152 | - if ( $download_query->have_posts() ) { |
|
| 151 | + $download_query = new \WP_Query($args); |
|
| 152 | + if ($download_query->have_posts()) { |
|
| 153 | 153 | $downloads = $download_query->posts; |
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | } |
| 157 | - $downloads = check_posts_exist( $downloads ); |
|
| 157 | + $downloads = check_posts_exist($downloads); |
|
| 158 | 158 | return $downloads; |
| 159 | 159 | } |
| 160 | 160 | |
@@ -164,20 +164,20 @@ discard block |
||
| 164 | 164 | * @param array $post_ids |
| 165 | 165 | * @return void |
| 166 | 166 | */ |
| 167 | -function check_posts_exist( $post_ids = array() ) { |
|
| 167 | +function check_posts_exist($post_ids = array()) { |
|
| 168 | 168 | $new_ids = array(); |
| 169 | 169 | global $wpdb; |
| 170 | - if ( is_array( $post_ids ) && ! empty( $post_ids ) ) { |
|
| 171 | - $post_ids = "'" . implode( "','", $post_ids ) . "'"; |
|
| 170 | + if (is_array($post_ids) && ! empty($post_ids)) { |
|
| 171 | + $post_ids = "'" . implode("','", $post_ids) . "'"; |
|
| 172 | 172 | $query = " |
| 173 | 173 | SELECT `ID` |
| 174 | 174 | FROM `{$wpdb->posts}` |
| 175 | 175 | WHERE `ID` IN ({$post_ids}) |
| 176 | 176 | AND `post_status` != 'trash' |
| 177 | 177 | "; |
| 178 | - $results = $wpdb->get_results( $query ); // WPCS: unprepared SQL |
|
| 179 | - if ( ! empty( $results ) ) { |
|
| 180 | - $new_ids = wp_list_pluck( $results, 'ID' ); |
|
| 178 | + $results = $wpdb->get_results($query); // WPCS: unprepared SQL |
|
| 179 | + if ( ! empty($results)) { |
|
| 180 | + $new_ids = wp_list_pluck($results, 'ID'); |
|
| 181 | 181 | } |
| 182 | 182 | } |
| 183 | 183 | return $new_ids; |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | * @param string $body |
| 192 | 192 | * @return void |
| 193 | 193 | */ |
| 194 | -function register_modal( $id = '', $title = '', $body = '' ) { |
|
| 194 | +function register_modal($id = '', $title = '', $body = '') { |
|
| 195 | 195 | lsx_health_plan()->frontend->modals->register_modal( |
| 196 | 196 | array( |
| 197 | 197 | 'title' => $title, |
@@ -207,36 +207,36 @@ discard block |
||
| 207 | 207 | * @param array $args |
| 208 | 208 | * @return void |
| 209 | 209 | */ |
| 210 | -function output_modal( $args = array() ) { |
|
| 210 | +function output_modal($args = array()) { |
|
| 211 | 211 | $defaults = array( |
| 212 | 212 | 'id' => '', |
| 213 | 213 | 'title' => '', |
| 214 | 214 | 'body' => '', |
| 215 | 215 | ); |
| 216 | - $args = wp_parse_args( $args, $defaults ); |
|
| 216 | + $args = wp_parse_args($args, $defaults); |
|
| 217 | 217 | ?> |
| 218 | 218 | <!-- Modal --> |
| 219 | - <div class="modal fade lsx-health-plan-modal" id="<?php echo esc_html( $args['id'] ); ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo esc_html( $args['id'] ); ?>" aria-hidden="true"> |
|
| 219 | + <div class="modal fade lsx-health-plan-modal" id="<?php echo esc_html($args['id']); ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo esc_html($args['id']); ?>" aria-hidden="true"> |
|
| 220 | 220 | <div class="modal-dialog" role="document"> |
| 221 | 221 | <div class="modal-content"> |
| 222 | 222 | <button type="button" class="close" data-dismiss="modal">×</button> |
| 223 | 223 | <div class="modal-header"> |
| 224 | 224 | <?php |
| 225 | - if ( '' !== $args['title'] ) { |
|
| 226 | - echo wp_kses_post( '<h2>' . $args['title'] . '</h2>' ); |
|
| 225 | + if ('' !== $args['title']) { |
|
| 226 | + echo wp_kses_post('<h2>' . $args['title'] . '</h2>'); |
|
| 227 | 227 | } |
| 228 | 228 | ?> |
| 229 | 229 | </div> |
| 230 | 230 | <div class="modal-body"> |
| 231 | 231 | <?php |
| 232 | - if ( '' !== $args['body'] ) { |
|
| 232 | + if ('' !== $args['body']) { |
|
| 233 | 233 | $allowed_html = array( |
| 234 | 234 | 'iframe' => array( |
| 235 | 235 | 'data-src' => array(), |
| 236 | 236 | 'src' => array(), |
| 237 | 237 | 'width' => array(), |
| 238 | 238 | 'height' => array(), |
| 239 | - 'frameBorder' => array( '0' ), |
|
| 239 | + 'frameBorder' => array('0'), |
|
| 240 | 240 | 'class' => array(), |
| 241 | 241 | 'allowFullScreen' => array(), |
| 242 | 242 | 'style' => array(), |
@@ -245,10 +245,10 @@ discard block |
||
| 245 | 245 | 'class' => array(), |
| 246 | 246 | ), |
| 247 | 247 | ); |
| 248 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
| 249 | - echo wp_kses_post( $args['body'] ); |
|
| 248 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
| 249 | + echo wp_kses_post($args['body']); |
|
| 250 | 250 | } else { |
| 251 | - echo wp_kses( $args['body'], $allowed_html ); |
|
| 251 | + echo wp_kses($args['body'], $allowed_html); |
|
| 252 | 252 | } |
| 253 | 253 | } |
| 254 | 254 | ?> |
@@ -266,11 +266,11 @@ discard block |
||
| 266 | 266 | * @param [type] $embed |
| 267 | 267 | * @return void |
| 268 | 268 | */ |
| 269 | -function get_video_url( $embed ) { |
|
| 269 | +function get_video_url($embed) { |
|
| 270 | 270 | $url = ''; |
| 271 | - if ( false !== stripos( $embed, '<iframe' ) ) { |
|
| 272 | - preg_match( '/src="([^"]+)"/', $embed, $match ); |
|
| 273 | - if ( is_array( $match ) && isset( $match[1] ) ) { |
|
| 271 | + if (false !== stripos($embed, '<iframe')) { |
|
| 272 | + preg_match('/src="([^"]+)"/', $embed, $match); |
|
| 273 | + if (is_array($match) && isset($match[1])) { |
|
| 274 | 274 | $url = '<iframe data-src="' . $match[1] . '" style="border: 0;" frameBorder="0" class="giphy-embed" allowFullScreen height="300" width="100%"></iframe>'; |
| 275 | 275 | } else { |
| 276 | 276 | $url = $embed; |
@@ -288,15 +288,15 @@ discard block |
||
| 288 | 288 | * @param array $post_ids |
| 289 | 289 | * @return boolean |
| 290 | 290 | */ |
| 291 | -function is_week_complete( $term_id = false, $section_keys = array(), $group_title = '' ) { |
|
| 291 | +function is_week_complete($term_id = false, $section_keys = array(), $group_title = '') { |
|
| 292 | 292 | $return = false; |
| 293 | - if ( ! empty( $section_keys ) ) { |
|
| 294 | - $group_count = count( $section_keys ); |
|
| 295 | - foreach ( $section_keys as &$pid ) { |
|
| 296 | - $pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id( $pid ) . '_complete'; |
|
| 293 | + if ( ! empty($section_keys)) { |
|
| 294 | + $group_count = count($section_keys); |
|
| 295 | + foreach ($section_keys as &$pid) { |
|
| 296 | + $pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id($pid) . '_complete'; |
|
| 297 | 297 | } |
| 298 | - $days_complete = get_meta_amounts( $section_keys ); |
|
| 299 | - if ( (int) $group_count === (int) $days_complete ) { |
|
| 298 | + $days_complete = get_meta_amounts($section_keys); |
|
| 299 | + if ((int) $group_count === (int) $days_complete) { |
|
| 300 | 300 | $return = true; |
| 301 | 301 | } |
| 302 | 302 | } |
@@ -310,20 +310,20 @@ discard block |
||
| 310 | 310 | * @param string $key |
| 311 | 311 | * @return void |
| 312 | 312 | */ |
| 313 | -function get_meta_amounts( $post_ids = array() ) { |
|
| 313 | +function get_meta_amounts($post_ids = array()) { |
|
| 314 | 314 | global $wpdb; |
| 315 | 315 | $amount = 0; |
| 316 | 316 | $current_user = wp_get_current_user(); |
| 317 | - if ( false !== $current_user && ! empty( $post_ids ) ) { |
|
| 318 | - $post_ids = "'" . implode( "','", $post_ids ) . "'"; |
|
| 317 | + if (false !== $current_user && ! empty($post_ids)) { |
|
| 318 | + $post_ids = "'" . implode("','", $post_ids) . "'"; |
|
| 319 | 319 | $query = " |
| 320 | 320 | SELECT COUNT(`meta_value`) |
| 321 | 321 | FROM `{$wpdb->usermeta}` |
| 322 | 322 | WHERE `meta_key` IN ({$post_ids}) |
| 323 | 323 | AND `user_id` = '{$current_user->ID}' |
| 324 | 324 | "; |
| 325 | - $results = $wpdb->get_var( $query ); // WPCS: unprepared SQL |
|
| 326 | - if ( ! empty( $results ) ) { |
|
| 325 | + $results = $wpdb->get_var($query); // WPCS: unprepared SQL |
|
| 326 | + if ( ! empty($results)) { |
|
| 327 | 327 | $amount = $results; |
| 328 | 328 | } |
| 329 | 329 | } |
@@ -336,20 +336,20 @@ discard block |
||
| 336 | 336 | * @param [type] $post |
| 337 | 337 | * @return void |
| 338 | 338 | */ |
| 339 | -function hp_get_plan_type_meta( $post ) { |
|
| 339 | +function hp_get_plan_type_meta($post) { |
|
| 340 | 340 | $plan_meta = ''; |
| 341 | 341 | |
| 342 | - $term_obj_list = get_the_terms( $post->ID, 'plan-type' ); |
|
| 343 | - if ( false !== $term_obj_list ) { |
|
| 344 | - $terms_string = join( ' & ', wp_list_pluck( $term_obj_list, 'name' ) ); |
|
| 345 | - $terms_ids = wp_list_pluck( $term_obj_list, 'term_id' ); |
|
| 342 | + $term_obj_list = get_the_terms($post->ID, 'plan-type'); |
|
| 343 | + if (false !== $term_obj_list) { |
|
| 344 | + $terms_string = join(' & ', wp_list_pluck($term_obj_list, 'name')); |
|
| 345 | + $terms_ids = wp_list_pluck($term_obj_list, 'term_id'); |
|
| 346 | 346 | |
| 347 | - foreach ( $terms_ids as $terms_id ) { |
|
| 348 | - $term_thumbnail_id = get_term_meta( $terms_id, 'thumbnail', true ); |
|
| 349 | - $img = wp_get_attachment_image_src( $term_thumbnail_id, 'thumbnail' ); |
|
| 350 | - if ( ! empty( $img ) ) { |
|
| 347 | + foreach ($terms_ids as $terms_id) { |
|
| 348 | + $term_thumbnail_id = get_term_meta($terms_id, 'thumbnail', true); |
|
| 349 | + $img = wp_get_attachment_image_src($term_thumbnail_id, 'thumbnail'); |
|
| 350 | + if ( ! empty($img)) { |
|
| 351 | 351 | $image_url = $img[0]; |
| 352 | - $img = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $image_url ) . '" />'; |
|
| 352 | + $img = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($image_url) . '" />'; |
|
| 353 | 353 | } |
| 354 | 354 | |
| 355 | 355 | $plan_meta .= $img; |
@@ -364,14 +364,14 @@ discard block |
||
| 364 | 364 | /** |
| 365 | 365 | * Limit media library access |
| 366 | 366 | */ |
| 367 | -function set_only_author( $wp_query ) { |
|
| 367 | +function set_only_author($wp_query) { |
|
| 368 | 368 | global $current_user; |
| 369 | - if ( is_admin() && ! current_user_can( 'edit_others_posts' ) ) { |
|
| 370 | - $wp_query->set( 'administrator', $current_user->ID ); |
|
| 371 | - add_filter( 'views_upload', 'fix_media_counts' ); |
|
| 369 | + if (is_admin() && ! current_user_can('edit_others_posts')) { |
|
| 370 | + $wp_query->set('administrator', $current_user->ID); |
|
| 371 | + add_filter('views_upload', 'fix_media_counts'); |
|
| 372 | 372 | } |
| 373 | 373 | } |
| 374 | -add_action( 'pre_get_posts', '\lsx_health_plan\functions\set_only_author' ); |
|
| 374 | +add_action('pre_get_posts', '\lsx_health_plan\functions\set_only_author'); |
|
| 375 | 375 | |
| 376 | 376 | /** |
| 377 | 377 | * Outputs an excerpt even if there is not excerpt. |
@@ -379,11 +379,11 @@ discard block |
||
| 379 | 379 | * @param [type] $post_id |
| 380 | 380 | * @return void |
| 381 | 381 | */ |
| 382 | -function hp_excerpt( $post_id ) { |
|
| 383 | - if ( ! has_excerpt( $post_id ) ) { |
|
| 384 | - $content = wp_trim_words( get_post_field( 'post_content', $post_id ), 10 ); |
|
| 382 | +function hp_excerpt($post_id) { |
|
| 383 | + if ( ! has_excerpt($post_id)) { |
|
| 384 | + $content = wp_trim_words(get_post_field('post_content', $post_id), 10); |
|
| 385 | 385 | } else { |
| 386 | - $content = get_the_excerpt( $post_id ); |
|
| 386 | + $content = get_the_excerpt($post_id); |
|
| 387 | 387 | } |
| 388 | 388 | return $content; |
| 389 | 389 | } |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | * @param string $columns |
| 395 | 395 | * @return void |
| 396 | 396 | */ |
| 397 | -function column_class( $columns = '3' ) { |
|
| 397 | +function column_class($columns = '3') { |
|
| 398 | 398 | $cols .= '5' === $columns ? '15' : 12 / $columns; |
| 399 | 399 | return $cols; |
| 400 | 400 | } |
@@ -405,16 +405,16 @@ discard block |
||
| 405 | 405 | * @param string $workout |
| 406 | 406 | * @return void |
| 407 | 407 | */ |
| 408 | -function get_exercises_by_workout( $workout = '' ) { |
|
| 408 | +function get_exercises_by_workout($workout = '') { |
|
| 409 | 409 | $exercises = array(); |
| 410 | 410 | $i = 1; |
| 411 | 411 | $section_counter = 6; |
| 412 | - while ( $i <= $section_counter ) { |
|
| 412 | + while ($i <= $section_counter) { |
|
| 413 | 413 | $group_name = 'workout_section_' . $i; |
| 414 | - $groups = get_post_meta( $workout, $group_name, true ); |
|
| 415 | - if ( ! empty( $groups ) ) { |
|
| 416 | - foreach ( $groups as $group ) { |
|
| 417 | - if ( isset( $group['connected_exercises'] ) ) { |
|
| 414 | + $groups = get_post_meta($workout, $group_name, true); |
|
| 415 | + if ( ! empty($groups)) { |
|
| 416 | + foreach ($groups as $group) { |
|
| 417 | + if (isset($group['connected_exercises'])) { |
|
| 418 | 418 | $exercises[] = $group['connected_exercises']; |
| 419 | 419 | } |
| 420 | 420 | } |
@@ -431,26 +431,26 @@ discard block |
||
| 431 | 431 | * @param int $plan_id |
| 432 | 432 | * @return int |
| 433 | 433 | */ |
| 434 | -function get_progress( $plan_id = false ) { |
|
| 434 | +function get_progress($plan_id = false) { |
|
| 435 | 435 | $progress = 0; |
| 436 | 436 | $complete = 0; |
| 437 | 437 | $count = 0; |
| 438 | - if ( false !== $plan_id ) { |
|
| 438 | + if (false !== $plan_id) { |
|
| 439 | 439 | // Find the plan parent, if 0 then it is the parent. |
| 440 | - $plan_parent = wp_get_post_parent_id( $plan_id ); |
|
| 441 | - if ( 0 !== $plan_parent ) { |
|
| 440 | + $plan_parent = wp_get_post_parent_id($plan_id); |
|
| 441 | + if (0 !== $plan_parent) { |
|
| 442 | 442 | $plan_id = $plan_parent; |
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | // Get the children to gather a count. |
| 446 | - $plan_children = get_children( $plan_id ); |
|
| 446 | + $plan_children = get_children($plan_id); |
|
| 447 | 447 | $children_ids = array(); |
| 448 | - if ( ! empty( $plan_children ) ) { |
|
| 449 | - $count = count( $plan_children ); |
|
| 450 | - foreach ( $plan_children as &$pid ) { |
|
| 448 | + if ( ! empty($plan_children)) { |
|
| 449 | + $count = count($plan_children); |
|
| 450 | + foreach ($plan_children as &$pid) { |
|
| 451 | 451 | $children_ids[] = 'day_' . $pid->ID . '_complete'; |
| 452 | 452 | } |
| 453 | - $complete = get_meta_amounts( $children_ids ); |
|
| 453 | + $complete = get_meta_amounts($children_ids); |
|
| 454 | 454 | $progress = (int) $complete / (int) $count * 100; |
| 455 | 455 | } |
| 456 | 456 | } |
@@ -467,19 +467,19 @@ discard block |
||
| 467 | 467 | function hp_back_archive_link() { |
| 468 | 468 | |
| 469 | 469 | $post_type = 'exercise'; |
| 470 | - if ( is_tax( 'recipe-cuisine' ) || is_tax( 'recipe-type' ) ) { |
|
| 470 | + if (is_tax('recipe-cuisine') || is_tax('recipe-type')) { |
|
| 471 | 471 | $post_type = 'recipe'; |
| 472 | 472 | } |
| 473 | 473 | |
| 474 | - if ( is_tax() ) { |
|
| 474 | + if (is_tax()) { |
|
| 475 | 475 | ?> |
| 476 | 476 | <div class="archive-category-title hp-archive-category-title"> |
| 477 | - <a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( $post_type ) ) ); ?>"><?php echo esc_html__( 'Back To ', 'lsx' ) . esc_html( $post_type ); ?></a> |
|
| 477 | + <a class="back-to-blog" href="<?php echo (esc_url(get_post_type_archive_link($post_type))); ?>"><?php echo esc_html__('Back To ', 'lsx') . esc_html($post_type); ?></a> |
|
| 478 | 478 | </div> |
| 479 | 479 | <?php |
| 480 | 480 | } |
| 481 | 481 | } |
| 482 | -add_action( 'lsx_content_wrap_before', '\lsx_health_plan\functions\hp_back_archive_link', 20 ); |
|
| 482 | +add_action('lsx_content_wrap_before', '\lsx_health_plan\functions\hp_back_archive_link', 20); |
|
| 483 | 483 | |
| 484 | 484 | /** |
| 485 | 485 | * Returns an array. |
@@ -487,11 +487,11 @@ discard block |
||
| 487 | 487 | * @param mixed $item |
| 488 | 488 | * @return array |
| 489 | 489 | */ |
| 490 | -function prep_array( $item ) { |
|
| 491 | - if ( ! is_array( $item ) ) { |
|
| 492 | - $item = explode( ',', $item ); |
|
| 493 | - if ( ! is_array( $item ) ) { |
|
| 494 | - $item = array( $item ); |
|
| 490 | +function prep_array($item) { |
|
| 491 | + if ( ! is_array($item)) { |
|
| 492 | + $item = explode(',', $item); |
|
| 493 | + if ( ! is_array($item)) { |
|
| 494 | + $item = array($item); |
|
| 495 | 495 | } |
| 496 | 496 | } |
| 497 | 497 | return $item; |