@@ -13,12 +13,12 @@ discard block |
||
13 | 13 | * @return boolean |
14 | 14 | */ |
15 | 15 | function plan_has_products() { |
16 | - $lsx_hp = lsx_health_plan(); |
|
17 | - $has_products = false; |
|
18 | - if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) { |
|
19 | - $has_products = true; |
|
20 | - } |
|
21 | - return $has_products; |
|
16 | + $lsx_hp = lsx_health_plan(); |
|
17 | + $has_products = false; |
|
18 | + if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) { |
|
19 | + $has_products = true; |
|
20 | + } |
|
21 | + return $has_products; |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -27,12 +27,12 @@ discard block |
||
27 | 27 | * @return array |
28 | 28 | */ |
29 | 29 | function get_plan_products() { |
30 | - $lsx_hp = lsx_health_plan(); |
|
31 | - $has_products = array(); |
|
32 | - if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) { |
|
33 | - $has_products = $lsx_hp->integrations->woocommerce->plans->product_ids; |
|
34 | - } |
|
35 | - return $has_products; |
|
30 | + $lsx_hp = lsx_health_plan(); |
|
31 | + $has_products = array(); |
|
32 | + if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) { |
|
33 | + $has_products = $lsx_hp->integrations->woocommerce->plans->product_ids; |
|
34 | + } |
|
35 | + return $has_products; |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -41,21 +41,21 @@ discard block |
||
41 | 41 | * @return array |
42 | 42 | */ |
43 | 43 | function get_membership_products() { |
44 | - $product_ids = array(); |
|
45 | - if ( function_exists( 'wc_memberships_get_user_memberships' ) ) { |
|
46 | - $user_memberships = wc_memberships_get_user_memberships(); |
|
44 | + $product_ids = array(); |
|
45 | + if ( function_exists( 'wc_memberships_get_user_memberships' ) ) { |
|
46 | + $user_memberships = wc_memberships_get_user_memberships(); |
|
47 | 47 | |
48 | - if ( ! empty( $user_memberships ) ) { |
|
49 | - foreach ( $user_memberships as $membership ) { |
|
50 | - $current_products = $membership->plan->get_product_ids(); |
|
51 | - if ( ! empty( $current_products ) ) { |
|
52 | - $product_ids = array_merge( $product_ids, $current_products ); |
|
53 | - } |
|
54 | - } |
|
55 | - } |
|
56 | - } |
|
57 | - if ( ! empty( $product_ids ) ) { |
|
58 | - $product_ids = array_unique( $product_ids ); |
|
59 | - } |
|
60 | - return $product_ids; |
|
48 | + if ( ! empty( $user_memberships ) ) { |
|
49 | + foreach ( $user_memberships as $membership ) { |
|
50 | + $current_products = $membership->plan->get_product_ids(); |
|
51 | + if ( ! empty( $current_products ) ) { |
|
52 | + $product_ids = array_merge( $product_ids, $current_products ); |
|
53 | + } |
|
54 | + } |
|
55 | + } |
|
56 | + } |
|
57 | + if ( ! empty( $product_ids ) ) { |
|
58 | + $product_ids = array_unique( $product_ids ); |
|
59 | + } |
|
60 | + return $product_ids; |
|
61 | 61 | } |
@@ -14,10 +14,10 @@ |
||
14 | 14 | * @return boolean |
15 | 15 | */ |
16 | 16 | function register_recipe_modal() { |
17 | - remove_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 ); |
|
18 | - ob_start(); |
|
19 | - include LSX_HEALTH_PLAN_PATH . '/templates/content-recipe.php'; |
|
20 | - $modal_body = ob_get_clean(); |
|
21 | - add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 ); |
|
22 | - \lsx_health_plan\functions\register_modal( 'recipe-modal-' . get_the_ID(), '', $modal_body ); |
|
17 | + remove_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 ); |
|
18 | + ob_start(); |
|
19 | + include LSX_HEALTH_PLAN_PATH . '/templates/content-recipe.php'; |
|
20 | + $modal_body = ob_get_clean(); |
|
21 | + add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 ); |
|
22 | + \lsx_health_plan\functions\register_modal( 'recipe-modal-' . get_the_ID(), '', $modal_body ); |
|
23 | 23 | } |
@@ -13,13 +13,13 @@ discard block |
||
13 | 13 | * @return string |
14 | 14 | */ |
15 | 15 | function restricted_content() { |
16 | - $content = ''; |
|
17 | - if ( ! is_user_logged_in() ) { |
|
18 | - ob_start(); |
|
19 | - echo do_shortcode( '[woocommerce_my_account]' ); |
|
20 | - $content = ob_get_clean(); |
|
21 | - } |
|
22 | - return $content; |
|
16 | + $content = ''; |
|
17 | + if ( ! is_user_logged_in() ) { |
|
18 | + ob_start(); |
|
19 | + echo do_shortcode( '[woocommerce_my_account]' ); |
|
20 | + $content = ob_get_clean(); |
|
21 | + } |
|
22 | + return $content; |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | /** |
@@ -28,10 +28,10 @@ discard block |
||
28 | 28 | * @return void |
29 | 29 | */ |
30 | 30 | function my_profile_tabs() { |
31 | - ob_start(); |
|
32 | - echo lsx_health_plan_my_profile_tabs(); // WPCS: XSS OK. |
|
33 | - $content = ob_get_clean(); |
|
34 | - return $content; |
|
31 | + ob_start(); |
|
32 | + echo lsx_health_plan_my_profile_tabs(); // WPCS: XSS OK. |
|
33 | + $content = ob_get_clean(); |
|
34 | + return $content; |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -40,10 +40,10 @@ discard block |
||
40 | 40 | * @return void |
41 | 41 | */ |
42 | 42 | function my_profile_box() { |
43 | - ob_start(); |
|
44 | - echo lsx_health_plan_my_profile_box(); // WPCS: XSS OK. |
|
45 | - $content = ob_get_clean(); |
|
46 | - return $content; |
|
43 | + ob_start(); |
|
44 | + echo lsx_health_plan_my_profile_box(); // WPCS: XSS OK. |
|
45 | + $content = ob_get_clean(); |
|
46 | + return $content; |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -53,10 +53,10 @@ discard block |
||
53 | 53 | */ |
54 | 54 | function all_plans_box( $args = array() ) { |
55 | 55 | |
56 | - ob_start(); |
|
57 | - echo lsx_health_plan_all_plans_block(); // WPCS: XSS OK. |
|
58 | - $content = ob_get_clean(); |
|
59 | - return $content; |
|
56 | + ob_start(); |
|
57 | + echo lsx_health_plan_all_plans_block(); // WPCS: XSS OK. |
|
58 | + $content = ob_get_clean(); |
|
59 | + return $content; |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -65,20 +65,20 @@ discard block |
||
65 | 65 | * @return void |
66 | 66 | */ |
67 | 67 | function day_plan_box( $args = array() ) { |
68 | - $defaults = array( |
|
69 | - 'week_view' => false, |
|
70 | - 'show_downloads' => false, |
|
71 | - 'plan' => '', |
|
72 | - ); |
|
73 | - $args = wp_parse_args( $args, $defaults ); |
|
74 | - ob_start(); |
|
75 | - if ( false === $args['week_view'] ) { |
|
76 | - echo lsx_health_plan_day_plan_block( $args ); // WPCS: XSS OK. |
|
77 | - } else { |
|
78 | - echo lsx_health_plan_week_plan_block( $args ); // WPCS: XSS OK. |
|
79 | - } |
|
80 | - $content = ob_get_clean(); |
|
81 | - return $content; |
|
68 | + $defaults = array( |
|
69 | + 'week_view' => false, |
|
70 | + 'show_downloads' => false, |
|
71 | + 'plan' => '', |
|
72 | + ); |
|
73 | + $args = wp_parse_args( $args, $defaults ); |
|
74 | + ob_start(); |
|
75 | + if ( false === $args['week_view'] ) { |
|
76 | + echo lsx_health_plan_day_plan_block( $args ); // WPCS: XSS OK. |
|
77 | + } else { |
|
78 | + echo lsx_health_plan_week_plan_block( $args ); // WPCS: XSS OK. |
|
79 | + } |
|
80 | + $content = ob_get_clean(); |
|
81 | + return $content; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -88,29 +88,29 @@ discard block |
||
88 | 88 | * @return void |
89 | 89 | */ |
90 | 90 | function exercise_box( $args = array() ) { |
91 | - $defaults = array( |
|
92 | - 'include' => '', |
|
93 | - 'term' => '', |
|
94 | - 'taxonomy' => '', |
|
95 | - 'view_more' => false, |
|
96 | - 'columns' => 3, |
|
97 | - 'limit' => 4, |
|
98 | - 'post_type' => 'exercise', |
|
99 | - 'orderby' => 'date', |
|
100 | - 'order' => 'DESC', |
|
101 | - 'description' => 'none', |
|
102 | - 'link' => 'item', |
|
103 | - 'link_class' => 'btn border-btn', |
|
104 | - 'layout' => 'grid', |
|
105 | - 'image_size' => 'lsx-thumbnail-square', |
|
106 | - 'parent' => false, |
|
107 | - 'modal_content' => 'excerpt', |
|
108 | - ); |
|
109 | - $args = wp_parse_args( $args, $defaults ); |
|
110 | - ob_start(); |
|
111 | - echo lsx_health_plan_items( $args ); // WPCS: XSS OK. |
|
112 | - $content = ob_get_clean(); |
|
113 | - return $content; |
|
91 | + $defaults = array( |
|
92 | + 'include' => '', |
|
93 | + 'term' => '', |
|
94 | + 'taxonomy' => '', |
|
95 | + 'view_more' => false, |
|
96 | + 'columns' => 3, |
|
97 | + 'limit' => 4, |
|
98 | + 'post_type' => 'exercise', |
|
99 | + 'orderby' => 'date', |
|
100 | + 'order' => 'DESC', |
|
101 | + 'description' => 'none', |
|
102 | + 'link' => 'item', |
|
103 | + 'link_class' => 'btn border-btn', |
|
104 | + 'layout' => 'grid', |
|
105 | + 'image_size' => 'lsx-thumbnail-square', |
|
106 | + 'parent' => false, |
|
107 | + 'modal_content' => 'excerpt', |
|
108 | + ); |
|
109 | + $args = wp_parse_args( $args, $defaults ); |
|
110 | + ob_start(); |
|
111 | + echo lsx_health_plan_items( $args ); // WPCS: XSS OK. |
|
112 | + $content = ob_get_clean(); |
|
113 | + return $content; |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -119,13 +119,13 @@ discard block |
||
119 | 119 | * @return void |
120 | 120 | */ |
121 | 121 | function feature_video_box() { |
122 | - ob_start(); |
|
123 | - echo lsx_health_plan_featured_video_block(); // WPCS: XSS OK. |
|
124 | - $content = ob_get_clean(); |
|
122 | + ob_start(); |
|
123 | + echo lsx_health_plan_featured_video_block(); // WPCS: XSS OK. |
|
124 | + $content = ob_get_clean(); |
|
125 | 125 | |
126 | - wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
127 | - wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
128 | - return $content; |
|
126 | + wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
127 | + wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
128 | + return $content; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -134,12 +134,12 @@ discard block |
||
134 | 134 | * @return void |
135 | 135 | */ |
136 | 136 | function feature_recipes_box() { |
137 | - ob_start(); |
|
138 | - echo lsx_health_plan_featured_recipes_block(); // WPCS: XSS OK. |
|
139 | - $content = ob_get_clean(); |
|
140 | - wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
141 | - wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
142 | - return $content; |
|
137 | + ob_start(); |
|
138 | + echo lsx_health_plan_featured_recipes_block(); // WPCS: XSS OK. |
|
139 | + $content = ob_get_clean(); |
|
140 | + wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
141 | + wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
142 | + return $content; |
|
143 | 143 | } |
144 | 144 | |
145 | 145 | /** |
@@ -148,12 +148,12 @@ discard block |
||
148 | 148 | * @return void |
149 | 149 | */ |
150 | 150 | function feature_tips_box() { |
151 | - ob_start(); |
|
152 | - echo lsx_health_plan_featured_tips_block(); // WPCS: XSS OK. |
|
153 | - $content = ob_get_clean(); |
|
154 | - wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
155 | - wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
156 | - return $content; |
|
151 | + ob_start(); |
|
152 | + echo lsx_health_plan_featured_tips_block(); // WPCS: XSS OK. |
|
153 | + $content = ob_get_clean(); |
|
154 | + wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true ); |
|
155 | + wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
156 | + return $content; |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -162,9 +162,9 @@ discard block |
||
162 | 162 | * @return string |
163 | 163 | */ |
164 | 164 | function account_notices() { |
165 | - $content = ''; |
|
166 | - if ( function_exists( 'wc_print_notices' ) ) { |
|
167 | - $content = wc_print_notices( true ); |
|
168 | - } |
|
169 | - return $content; |
|
165 | + $content = ''; |
|
166 | + if ( function_exists( 'wc_print_notices' ) ) { |
|
167 | + $content = wc_print_notices( true ); |
|
168 | + } |
|
169 | + return $content; |
|
170 | 170 | } |
@@ -7,38 +7,38 @@ discard block |
||
7 | 7 | |
8 | 8 | |
9 | 9 | function lsx_hp_single_plan_products() { |
10 | - global $product; |
|
10 | + global $product; |
|
11 | 11 | |
12 | - $restricted = false; |
|
13 | - if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
14 | - $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
15 | - } |
|
16 | - if ( true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
17 | - $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
18 | - $product_count = count( $products ); |
|
19 | - if ( 1 === (int) $product_count ) { |
|
20 | - $class = 'col-md-12'; |
|
21 | - } else { |
|
22 | - $class = 'col-md-6'; |
|
23 | - } |
|
24 | - ?> |
|
12 | + $restricted = false; |
|
13 | + if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
14 | + $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
15 | + } |
|
16 | + if ( true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products() ) { |
|
17 | + $products = \lsx_health_plan\functions\woocommerce\get_plan_products(); |
|
18 | + $product_count = count( $products ); |
|
19 | + if ( 1 === (int) $product_count ) { |
|
20 | + $class = 'col-md-12'; |
|
21 | + } else { |
|
22 | + $class = 'col-md-6'; |
|
23 | + } |
|
24 | + ?> |
|
25 | 25 | <div class="plans-products-wrapper row"> |
26 | 26 | <?php |
27 | - foreach ( $products as $product ) { |
|
28 | - $product = wc_get_product( $product ); |
|
29 | - ?> |
|
27 | + foreach ( $products as $product ) { |
|
28 | + $product = wc_get_product( $product ); |
|
29 | + ?> |
|
30 | 30 | <div class="plan-product <?php echo esc_attr( $class ); ?>"> |
31 | 31 | <h3 class="title"><a href="<?php echo esc_html( $product->get_permalink() ); ?>"><?php echo esc_html( $product->get_title() ); ?></a></h3> |
32 | 32 | <?php |
33 | - $description = $product->is_type( 'variation' ) ? $product->get_description() : $product->get_short_description(); |
|
34 | - if ( '' !== $description ) { |
|
35 | - ?> |
|
33 | + $description = $product->is_type( 'variation' ) ? $product->get_description() : $product->get_short_description(); |
|
34 | + if ( '' !== $description ) { |
|
35 | + ?> |
|
36 | 36 | <div class="description"> |
37 | 37 | <?php echo esc_html( $description ); ?> |
38 | 38 | </div> |
39 | 39 | <?php |
40 | - } |
|
41 | - ?> |
|
40 | + } |
|
41 | + ?> |
|
42 | 42 | <?php echo wp_kses_post( $product->get_price_html() ); ?> |
43 | 43 | |
44 | 44 | <div class="add-to-cart"> |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | </div> |
47 | 47 | </div> |
48 | 48 | <?php |
49 | - } |
|
50 | - ?> |
|
49 | + } |
|
50 | + ?> |
|
51 | 51 | </div> |
52 | 52 | <?php |
53 | - } |
|
53 | + } |
|
54 | 54 | } |
@@ -11,10 +11,10 @@ discard block |
||
11 | 11 | * @return exercise_type |
12 | 12 | */ |
13 | 13 | function lsx_health_plan_exercise_type() { |
14 | - $term_obj_list = get_the_term_list( get_the_ID(), 'exercise-type', '', ', ' ); |
|
15 | - if ( ! empty( $term_obj_list ) ) { |
|
16 | - return $term_obj_list; |
|
17 | - } |
|
14 | + $term_obj_list = get_the_term_list( get_the_ID(), 'exercise-type', '', ', ' ); |
|
15 | + if ( ! empty( $term_obj_list ) ) { |
|
16 | + return $term_obj_list; |
|
17 | + } |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | /** |
@@ -23,10 +23,10 @@ discard block |
||
23 | 23 | * @return muscle_group_equipment |
24 | 24 | */ |
25 | 25 | function lsx_health_plan_muscle_group_equipment() { |
26 | - $term_obj_list = get_the_term_list( get_the_ID(), 'muscle-group', '', ', ' ); |
|
27 | - if ( ! empty( $term_obj_list ) ) { |
|
28 | - return $term_obj_list; |
|
29 | - } |
|
26 | + $term_obj_list = get_the_term_list( get_the_ID(), 'muscle-group', '', ', ' ); |
|
27 | + if ( ! empty( $term_obj_list ) ) { |
|
28 | + return $term_obj_list; |
|
29 | + } |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -35,10 +35,10 @@ discard block |
||
35 | 35 | * @return exercise_equipment |
36 | 36 | */ |
37 | 37 | function lsx_health_plan_exercise_equipment() { |
38 | - $term_obj_list = get_the_term_list( get_the_ID(), 'equipment', '', ', ' ); |
|
39 | - if ( ! empty( $term_obj_list ) ) { |
|
40 | - return $term_obj_list; |
|
41 | - } |
|
38 | + $term_obj_list = get_the_term_list( get_the_ID(), 'equipment', '', ', ' ); |
|
39 | + if ( ! empty( $term_obj_list ) ) { |
|
40 | + return $term_obj_list; |
|
41 | + } |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -47,81 +47,81 @@ discard block |
||
47 | 47 | * @return void |
48 | 48 | */ |
49 | 49 | function lsx_health_plan_exercise_data() { |
50 | - include LSX_HEALTH_PLAN_PATH . '/templates/table-exercise-data.php'; |
|
50 | + include LSX_HEALTH_PLAN_PATH . '/templates/table-exercise-data.php'; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | function lsx_health_plan_workout_exercise_alt_button( $m, $group, $echo = true, $args = array(), $alt_title, $alt_description, $alt_image ) { |
54 | - $defaults = array( |
|
55 | - 'modal_trigger' => 'button', |
|
56 | - 'modal_content' => 'excerpt', |
|
57 | - ); |
|
58 | - $args = wp_parse_args( $args, $defaults ); |
|
54 | + $defaults = array( |
|
55 | + 'modal_trigger' => 'button', |
|
56 | + 'modal_content' => 'excerpt', |
|
57 | + ); |
|
58 | + $args = wp_parse_args( $args, $defaults ); |
|
59 | 59 | |
60 | - $exercise_id = ''; |
|
61 | - if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
62 | - $exercise_id = esc_html( $group['connected_exercises'] ); |
|
63 | - $content = get_post_field( 'post_content', $exercise_id ); |
|
64 | - $url = get_permalink( $exercise_id ); |
|
65 | - $equipment_group = get_the_term_list( $exercise_id, 'equipment', '', ', ' ); |
|
66 | - $muscle_group = get_the_term_list( $exercise_id, 'muscle-group', '', ', ' ); |
|
67 | - $lsx_hp = lsx_health_plan(); |
|
60 | + $exercise_id = ''; |
|
61 | + if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
62 | + $exercise_id = esc_html( $group['connected_exercises'] ); |
|
63 | + $content = get_post_field( 'post_content', $exercise_id ); |
|
64 | + $url = get_permalink( $exercise_id ); |
|
65 | + $equipment_group = get_the_term_list( $exercise_id, 'equipment', '', ', ' ); |
|
66 | + $muscle_group = get_the_term_list( $exercise_id, 'muscle-group', '', ', ' ); |
|
67 | + $lsx_hp = lsx_health_plan(); |
|
68 | 68 | |
69 | - if ( 'excerpt' === $args['modal_content'] ) { |
|
70 | - $content = wp_trim_words( $content, 40 ); |
|
71 | - } |
|
69 | + if ( 'excerpt' === $args['modal_content'] ) { |
|
70 | + $content = wp_trim_words( $content, 40 ); |
|
71 | + } |
|
72 | 72 | |
73 | - if ( 'link' ) { |
|
74 | - $play_button = '<a data-toggle="modal" href="#workout-alt-exercise-modal-' . $m . '">' . get_the_title( $exercise_id ) . '</a>'; |
|
75 | - } else { |
|
76 | - $play_button = '<button data-toggle="alt-modal" data-target="#workout-alt-exercise-modal-' . $m . '"><span class="fa fa-play-circle"></span></button>'; |
|
77 | - } |
|
73 | + if ( 'link' ) { |
|
74 | + $play_button = '<a data-toggle="modal" href="#workout-alt-exercise-modal-' . $m . '">' . get_the_title( $exercise_id ) . '</a>'; |
|
75 | + } else { |
|
76 | + $play_button = '<button data-toggle="alt-modal" data-target="#workout-alt-exercise-modal-' . $m . '"><span class="fa fa-play-circle"></span></button>'; |
|
77 | + } |
|
78 | 78 | |
79 | - $modal_body = ''; |
|
79 | + $modal_body = ''; |
|
80 | 80 | |
81 | - if ( '' !== $alt_image ) { |
|
82 | - $modal_body .= '<div class="modal-image"/><img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '"></div>'; |
|
83 | - } else { |
|
84 | - if ( $lsx_hp->frontend->gallery->has_gallery( $exercise_id ) ) { |
|
85 | - $gallery_args = array( |
|
86 | - 'css_class' => 'modal-slider', |
|
87 | - ); |
|
88 | - $modal_body .= $lsx_hp->frontend->gallery->get_gallery( '', '', $gallery_args ); |
|
89 | - } else { |
|
90 | - $modal_body .= '<div class="modal-image"/>' . get_the_post_thumbnail( $exercise_id, 'large' ) . '</div>'; |
|
91 | - } |
|
92 | - } |
|
81 | + if ( '' !== $alt_image ) { |
|
82 | + $modal_body .= '<div class="modal-image"/><img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '"></div>'; |
|
83 | + } else { |
|
84 | + if ( $lsx_hp->frontend->gallery->has_gallery( $exercise_id ) ) { |
|
85 | + $gallery_args = array( |
|
86 | + 'css_class' => 'modal-slider', |
|
87 | + ); |
|
88 | + $modal_body .= $lsx_hp->frontend->gallery->get_gallery( '', '', $gallery_args ); |
|
89 | + } else { |
|
90 | + $modal_body .= '<div class="modal-image"/>' . get_the_post_thumbnail( $exercise_id, 'large' ) . '</div>'; |
|
91 | + } |
|
92 | + } |
|
93 | 93 | |
94 | - if ( '' !== $alt_title ) { |
|
95 | - $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . $alt_title . '</h5>'; |
|
96 | - } else { |
|
97 | - $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . get_the_title( $exercise_id ) . '</h5>'; |
|
98 | - } |
|
94 | + if ( '' !== $alt_title ) { |
|
95 | + $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . $alt_title . '</h5>'; |
|
96 | + } else { |
|
97 | + $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . get_the_title( $exercise_id ) . '</h5>'; |
|
98 | + } |
|
99 | 99 | |
100 | - if ( ! empty( $equipment_group ) ) { |
|
101 | - $modal_body .= '<span class="equipment-terms">Equipment: ' . $equipment_group . '</span>'; |
|
102 | - } |
|
103 | - if ( ! empty( $muscle_group ) ) { |
|
104 | - $modal_body .= '<span class="muscle-terms">Muscle Group: ' . $muscle_group . '</span>'; |
|
105 | - } |
|
106 | - $modal_body .= '</div>'; |
|
107 | - if ( '' !== $args['modal_content'] ) { |
|
108 | - if ( '' !== $alt_description ) { |
|
109 | - $modal_body .= '<div class="modal-excerpt"/>' . $alt_description . '</div>'; |
|
110 | - } else { |
|
111 | - $modal_body .= '<div class="modal-excerpt"/>' . $content . '</div>'; |
|
112 | - } |
|
113 | - } |
|
114 | - if ( 'excerpt' === $args['modal_content'] ) { |
|
115 | - $modal_body .= '<a class="moretag" target="_blank" href="' . $url . '">' . __( 'Read More', 'lsx-heal-plan' ) . '</a>'; |
|
116 | - } |
|
117 | - \lsx_health_plan\functions\register_modal( 'workout-alt-exercise-modal-' . $m, '', $modal_body ); |
|
100 | + if ( ! empty( $equipment_group ) ) { |
|
101 | + $modal_body .= '<span class="equipment-terms">Equipment: ' . $equipment_group . '</span>'; |
|
102 | + } |
|
103 | + if ( ! empty( $muscle_group ) ) { |
|
104 | + $modal_body .= '<span class="muscle-terms">Muscle Group: ' . $muscle_group . '</span>'; |
|
105 | + } |
|
106 | + $modal_body .= '</div>'; |
|
107 | + if ( '' !== $args['modal_content'] ) { |
|
108 | + if ( '' !== $alt_description ) { |
|
109 | + $modal_body .= '<div class="modal-excerpt"/>' . $alt_description . '</div>'; |
|
110 | + } else { |
|
111 | + $modal_body .= '<div class="modal-excerpt"/>' . $content . '</div>'; |
|
112 | + } |
|
113 | + } |
|
114 | + if ( 'excerpt' === $args['modal_content'] ) { |
|
115 | + $modal_body .= '<a class="moretag" target="_blank" href="' . $url . '">' . __( 'Read More', 'lsx-heal-plan' ) . '</a>'; |
|
116 | + } |
|
117 | + \lsx_health_plan\functions\register_modal( 'workout-alt-exercise-modal-' . $m, '', $modal_body ); |
|
118 | 118 | |
119 | - if ( true === $echo ) { |
|
120 | - echo wp_kses_post( $play_button ); |
|
121 | - } else { |
|
122 | - return $play_button; |
|
123 | - } |
|
124 | - } |
|
119 | + if ( true === $echo ) { |
|
120 | + echo wp_kses_post( $play_button ); |
|
121 | + } else { |
|
122 | + return $play_button; |
|
123 | + } |
|
124 | + } |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -134,65 +134,65 @@ discard block |
||
134 | 134 | * @return void |
135 | 135 | */ |
136 | 136 | function lsx_health_plan_workout_exercise_button( $m, $group, $echo = true, $args = array() ) { |
137 | - $defaults = array( |
|
138 | - 'modal_trigger' => 'button', |
|
139 | - 'modal_content' => 'excerpt', |
|
140 | - ); |
|
141 | - $args = wp_parse_args( $args, $defaults ); |
|
137 | + $defaults = array( |
|
138 | + 'modal_trigger' => 'button', |
|
139 | + 'modal_content' => 'excerpt', |
|
140 | + ); |
|
141 | + $args = wp_parse_args( $args, $defaults ); |
|
142 | 142 | |
143 | - $exercise_id = ''; |
|
144 | - if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
145 | - $exercise_id = esc_html( $group['connected_exercises'] ); |
|
146 | - $content = get_post_field( 'post_content', $exercise_id ); |
|
147 | - $url = get_permalink( $exercise_id ); |
|
148 | - $equipment_group = get_the_term_list( $exercise_id, 'equipment', '', ', ' ); |
|
149 | - $muscle_group = get_the_term_list( $exercise_id, 'muscle-group', '', ', ' ); |
|
150 | - $lsx_hp = lsx_health_plan(); |
|
143 | + $exercise_id = ''; |
|
144 | + if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
145 | + $exercise_id = esc_html( $group['connected_exercises'] ); |
|
146 | + $content = get_post_field( 'post_content', $exercise_id ); |
|
147 | + $url = get_permalink( $exercise_id ); |
|
148 | + $equipment_group = get_the_term_list( $exercise_id, 'equipment', '', ', ' ); |
|
149 | + $muscle_group = get_the_term_list( $exercise_id, 'muscle-group', '', ', ' ); |
|
150 | + $lsx_hp = lsx_health_plan(); |
|
151 | 151 | |
152 | - if ( 'excerpt' === $args['modal_content'] ) { |
|
153 | - $content = wp_trim_words( $content, 40 ); |
|
154 | - } |
|
152 | + if ( 'excerpt' === $args['modal_content'] ) { |
|
153 | + $content = wp_trim_words( $content, 40 ); |
|
154 | + } |
|
155 | 155 | |
156 | - if ( 'link' ) { |
|
157 | - $play_button = '<a data-toggle="modal" href="#workout-exercise-modal-' . $m . '">' . get_the_title( $exercise_id ) . '</a>'; |
|
158 | - } else { |
|
159 | - $play_button = '<button data-toggle="modal" data-target="#workout-exercise-modal-' . $m . '"><span class="fa fa-play-circle"></span></button>'; |
|
160 | - } |
|
156 | + if ( 'link' ) { |
|
157 | + $play_button = '<a data-toggle="modal" href="#workout-exercise-modal-' . $m . '">' . get_the_title( $exercise_id ) . '</a>'; |
|
158 | + } else { |
|
159 | + $play_button = '<button data-toggle="modal" data-target="#workout-exercise-modal-' . $m . '"><span class="fa fa-play-circle"></span></button>'; |
|
160 | + } |
|
161 | 161 | |
162 | - $modal_body = ''; |
|
162 | + $modal_body = ''; |
|
163 | 163 | |
164 | - if ( $lsx_hp->frontend->gallery->has_gallery( $exercise_id ) ) { |
|
165 | - $gallery_args = array( |
|
166 | - 'css_class' => 'modal-slider', |
|
167 | - ); |
|
168 | - $modal_body .= $lsx_hp->frontend->gallery->get_gallery( '', '', $gallery_args ); |
|
169 | - } else { |
|
170 | - $modal_body .= '<div class="modal-image"/>' . get_the_post_thumbnail( $exercise_id, 'large' ) . '</div>'; |
|
171 | - } |
|
164 | + if ( $lsx_hp->frontend->gallery->has_gallery( $exercise_id ) ) { |
|
165 | + $gallery_args = array( |
|
166 | + 'css_class' => 'modal-slider', |
|
167 | + ); |
|
168 | + $modal_body .= $lsx_hp->frontend->gallery->get_gallery( '', '', $gallery_args ); |
|
169 | + } else { |
|
170 | + $modal_body .= '<div class="modal-image"/>' . get_the_post_thumbnail( $exercise_id, 'large' ) . '</div>'; |
|
171 | + } |
|
172 | 172 | |
173 | - $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . get_the_title( $exercise_id ) . '</h5>'; |
|
173 | + $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . get_the_title( $exercise_id ) . '</h5>'; |
|
174 | 174 | |
175 | - if ( ! empty( $equipment_group ) ) { |
|
176 | - $modal_body .= '<span class="equipment-terms">Equipment: ' . $equipment_group . '</span>'; |
|
177 | - } |
|
178 | - if ( ! empty( $muscle_group ) ) { |
|
179 | - $modal_body .= '<span class="muscle-terms">Muscle Group: ' . $muscle_group . '</span>'; |
|
180 | - } |
|
181 | - $modal_body .= '</div>'; |
|
182 | - if ( '' !== $args['modal_content'] ) { |
|
183 | - $modal_body .= '<div class="modal-excerpt"/>' . $content . '</div>'; |
|
184 | - } |
|
185 | - if ( 'excerpt' === $args['modal_content'] ) { |
|
186 | - $modal_body .= '<a class="moretag" target="_blank" href="' . $url . '">' . __( 'Read More', 'lsx-heal-plan' ) . '</a>'; |
|
187 | - } |
|
188 | - \lsx_health_plan\functions\register_modal( 'workout-exercise-modal-' . $m, '', $modal_body ); |
|
175 | + if ( ! empty( $equipment_group ) ) { |
|
176 | + $modal_body .= '<span class="equipment-terms">Equipment: ' . $equipment_group . '</span>'; |
|
177 | + } |
|
178 | + if ( ! empty( $muscle_group ) ) { |
|
179 | + $modal_body .= '<span class="muscle-terms">Muscle Group: ' . $muscle_group . '</span>'; |
|
180 | + } |
|
181 | + $modal_body .= '</div>'; |
|
182 | + if ( '' !== $args['modal_content'] ) { |
|
183 | + $modal_body .= '<div class="modal-excerpt"/>' . $content . '</div>'; |
|
184 | + } |
|
185 | + if ( 'excerpt' === $args['modal_content'] ) { |
|
186 | + $modal_body .= '<a class="moretag" target="_blank" href="' . $url . '">' . __( 'Read More', 'lsx-heal-plan' ) . '</a>'; |
|
187 | + } |
|
188 | + \lsx_health_plan\functions\register_modal( 'workout-exercise-modal-' . $m, '', $modal_body ); |
|
189 | 189 | |
190 | - if ( true === $echo ) { |
|
191 | - echo wp_kses_post( $play_button ); |
|
192 | - } else { |
|
193 | - return $play_button; |
|
194 | - } |
|
195 | - } |
|
190 | + if ( true === $echo ) { |
|
191 | + echo wp_kses_post( $play_button ); |
|
192 | + } else { |
|
193 | + return $play_button; |
|
194 | + } |
|
195 | + } |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | /** |
@@ -203,38 +203,38 @@ discard block |
||
203 | 203 | * @return void |
204 | 204 | */ |
205 | 205 | function lsx_health_plan_shortcode_exercise_button( $m, $content = true ) { |
206 | - $equipment_group = get_the_term_list( $m, 'equipment', '', ', ' ); |
|
207 | - $muscle_group = get_the_term_list( $m, 'muscle-group', '', ', ' ); |
|
208 | - $title = get_the_title(); |
|
209 | - $lsx_hp = lsx_health_plan(); |
|
210 | - $button = '<a data-toggle="modal" href="#exercise-modal-' . $m . '" data-target="#exercise-modal-' . $m . '"></a>'; |
|
206 | + $equipment_group = get_the_term_list( $m, 'equipment', '', ', ' ); |
|
207 | + $muscle_group = get_the_term_list( $m, 'muscle-group', '', ', ' ); |
|
208 | + $title = get_the_title(); |
|
209 | + $lsx_hp = lsx_health_plan(); |
|
210 | + $button = '<a data-toggle="modal" href="#exercise-modal-' . $m . '" data-target="#exercise-modal-' . $m . '"></a>'; |
|
211 | 211 | |
212 | - if ( true === $content ) { |
|
213 | - $content = get_the_content(); |
|
214 | - } |
|
212 | + if ( true === $content ) { |
|
213 | + $content = get_the_content(); |
|
214 | + } |
|
215 | 215 | |
216 | - $modal_body = ''; |
|
217 | - if ( $lsx_hp->frontend->gallery->has_gallery( $m ) ) { |
|
218 | - $gallery_args = array( |
|
219 | - 'css_class' => 'modal-slider', |
|
220 | - ); |
|
221 | - $modal_body .= $lsx_hp->frontend->gallery->get_gallery( '', '', $gallery_args ); |
|
222 | - } else { |
|
223 | - $modal_body .= '<div class="modal-image">' . get_the_post_thumbnail( $m, 'large' ) . '</div>'; |
|
224 | - } |
|
225 | - $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . $title . '</h5>'; |
|
216 | + $modal_body = ''; |
|
217 | + if ( $lsx_hp->frontend->gallery->has_gallery( $m ) ) { |
|
218 | + $gallery_args = array( |
|
219 | + 'css_class' => 'modal-slider', |
|
220 | + ); |
|
221 | + $modal_body .= $lsx_hp->frontend->gallery->get_gallery( '', '', $gallery_args ); |
|
222 | + } else { |
|
223 | + $modal_body .= '<div class="modal-image">' . get_the_post_thumbnail( $m, 'large' ) . '</div>'; |
|
224 | + } |
|
225 | + $modal_body .= '<div class="title-lined exercise-modal"><h5 class="modal-title">' . $title . '</h5>'; |
|
226 | 226 | |
227 | - if ( ! empty( $equipment_group ) ) { |
|
228 | - $modal_body .= '<span class="equipment-terms">Equipment: ' . $equipment_group . '</span>'; |
|
229 | - } |
|
230 | - if ( ! empty( $muscle_group ) ) { |
|
231 | - $modal_body .= '<span class="muscle-terms">Muscle Group: ' . $muscle_group . '</span>'; |
|
232 | - } |
|
233 | - $modal_body .= '</div>'; |
|
234 | - $modal_body .= $content; |
|
235 | - \lsx_health_plan\functions\register_modal( 'exercise-modal-' . $m, '', $modal_body ); |
|
227 | + if ( ! empty( $equipment_group ) ) { |
|
228 | + $modal_body .= '<span class="equipment-terms">Equipment: ' . $equipment_group . '</span>'; |
|
229 | + } |
|
230 | + if ( ! empty( $muscle_group ) ) { |
|
231 | + $modal_body .= '<span class="muscle-terms">Muscle Group: ' . $muscle_group . '</span>'; |
|
232 | + } |
|
233 | + $modal_body .= '</div>'; |
|
234 | + $modal_body .= $content; |
|
235 | + \lsx_health_plan\functions\register_modal( 'exercise-modal-' . $m, '', $modal_body ); |
|
236 | 236 | |
237 | - return ( $button ); |
|
237 | + return ( $button ); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | /** |
@@ -246,18 +246,18 @@ discard block |
||
246 | 246 | * @return string |
247 | 247 | */ |
248 | 248 | function lsx_health_plan_exercise_title( $before = '', $after = '', $echo = true, $exercise_id = false ) { |
249 | - if ( false === $exercise_id ) { |
|
250 | - $exercise_id = get_the_ID(); |
|
251 | - } |
|
252 | - $title = get_the_title( $exercise_id ); |
|
253 | - $side = get_post_meta( $exercise_id, 'exercise_side', true ); |
|
254 | - if ( '' !== $side ) { |
|
255 | - $title .= ' - ' . ucwords( $side ); |
|
256 | - } |
|
257 | - $title = apply_filters( 'lsx_health_plan_exercise_title', $before . $title . $after, $title, $before, $after, $exercise_id ); |
|
258 | - if ( true === $echo ) { |
|
259 | - echo wp_kses_post( $title ); |
|
260 | - } else { |
|
261 | - return $title; |
|
262 | - } |
|
249 | + if ( false === $exercise_id ) { |
|
250 | + $exercise_id = get_the_ID(); |
|
251 | + } |
|
252 | + $title = get_the_title( $exercise_id ); |
|
253 | + $side = get_post_meta( $exercise_id, 'exercise_side', true ); |
|
254 | + if ( '' !== $side ) { |
|
255 | + $title .= ' - ' . ucwords( $side ); |
|
256 | + } |
|
257 | + $title = apply_filters( 'lsx_health_plan_exercise_title', $before . $title . $after, $title, $before, $after, $exercise_id ); |
|
258 | + if ( true === $echo ) { |
|
259 | + echo wp_kses_post( $title ); |
|
260 | + } else { |
|
261 | + return $title; |
|
262 | + } |
|
263 | 263 | } |
@@ -12,10 +12,10 @@ discard block |
||
12 | 12 | * @return boolean |
13 | 13 | */ |
14 | 14 | function lsx_health_plan_has_warmup( $post_id = '' ) { |
15 | - if ( '' === $post_id ) { |
|
16 | - $post_id = get_the_ID(); |
|
17 | - } |
|
18 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' ); |
|
15 | + if ( '' === $post_id ) { |
|
16 | + $post_id = get_the_ID(); |
|
17 | + } |
|
18 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' ); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -25,13 +25,13 @@ discard block |
||
25 | 25 | * @return boolean |
26 | 26 | */ |
27 | 27 | function lsx_health_plan_has_workout( $post_id = '' ) { |
28 | - if ( ! post_type_exists( 'workout' ) ) { |
|
29 | - return false; |
|
30 | - } |
|
31 | - if ( '' === $post_id ) { |
|
32 | - $post_id = get_the_ID(); |
|
33 | - } |
|
34 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ); |
|
28 | + if ( ! post_type_exists( 'workout' ) ) { |
|
29 | + return false; |
|
30 | + } |
|
31 | + if ( '' === $post_id ) { |
|
32 | + $post_id = get_the_ID(); |
|
33 | + } |
|
34 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -41,13 +41,13 @@ discard block |
||
41 | 41 | * @return boolean |
42 | 42 | */ |
43 | 43 | function lsx_health_plan_has_meal( $post_id = '' ) { |
44 | - if ( ! post_type_exists( 'meal' ) ) { |
|
45 | - return false; |
|
46 | - } |
|
47 | - if ( '' === $post_id ) { |
|
48 | - $post_id = get_the_ID(); |
|
49 | - } |
|
50 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
44 | + if ( ! post_type_exists( 'meal' ) ) { |
|
45 | + return false; |
|
46 | + } |
|
47 | + if ( '' === $post_id ) { |
|
48 | + $post_id = get_the_ID(); |
|
49 | + } |
|
50 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -57,13 +57,13 @@ discard block |
||
57 | 57 | * @return boolean |
58 | 58 | */ |
59 | 59 | function lsx_health_plan_has_recipe( $post_id = '' ) { |
60 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
61 | - return false; |
|
62 | - } |
|
63 | - if ( '' === $post_id ) { |
|
64 | - $post_id = get_the_ID(); |
|
65 | - } |
|
66 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
60 | + if ( ! post_type_exists( 'recipe' ) ) { |
|
61 | + return false; |
|
62 | + } |
|
63 | + if ( '' === $post_id ) { |
|
64 | + $post_id = get_the_ID(); |
|
65 | + } |
|
66 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -73,15 +73,15 @@ discard block |
||
73 | 73 | * @return boolean |
74 | 74 | */ |
75 | 75 | function lsx_health_plan_has_downloads( $post_id = '' ) { |
76 | - $has_downloads = false; |
|
77 | - if ( '' === $post_id ) { |
|
78 | - $post_id = get_the_ID(); |
|
79 | - } |
|
80 | - $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
81 | - if ( ! empty( $downloads ) ) { |
|
82 | - $has_downloads = true; |
|
83 | - } |
|
84 | - return $has_downloads; |
|
76 | + $has_downloads = false; |
|
77 | + if ( '' === $post_id ) { |
|
78 | + $post_id = get_the_ID(); |
|
79 | + } |
|
80 | + $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
81 | + if ( ! empty( $downloads ) ) { |
|
82 | + $has_downloads = true; |
|
83 | + } |
|
84 | + return $has_downloads; |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | /** |
@@ -91,13 +91,13 @@ discard block |
||
91 | 91 | * @return boolean |
92 | 92 | */ |
93 | 93 | function lsx_health_plan_has_tip( $post_id = '' ) { |
94 | - if ( ! post_type_exists( 'tip' ) ) { |
|
95 | - return false; |
|
96 | - } |
|
97 | - if ( '' === $post_id ) { |
|
98 | - $post_id = get_the_ID(); |
|
99 | - } |
|
100 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
94 | + if ( ! post_type_exists( 'tip' ) ) { |
|
95 | + return false; |
|
96 | + } |
|
97 | + if ( '' === $post_id ) { |
|
98 | + $post_id = get_the_ID(); |
|
99 | + } |
|
100 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -107,13 +107,13 @@ discard block |
||
107 | 107 | * @return boolean |
108 | 108 | */ |
109 | 109 | function lsx_health_plan_has_video( $post_id = '' ) { |
110 | - if ( ! post_type_exists( 'video' ) ) { |
|
111 | - return false; |
|
112 | - } |
|
113 | - if ( '' === $post_id ) { |
|
114 | - $post_id = get_the_ID(); |
|
115 | - } |
|
116 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
110 | + if ( ! post_type_exists( 'video' ) ) { |
|
111 | + return false; |
|
112 | + } |
|
113 | + if ( '' === $post_id ) { |
|
114 | + $post_id = get_the_ID(); |
|
115 | + } |
|
116 | + return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | /** |
@@ -122,16 +122,16 @@ discard block |
||
122 | 122 | * @return boolean |
123 | 123 | */ |
124 | 124 | function lsx_health_plan_user_has_purchase() { |
125 | - $valid_order = false; |
|
126 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
125 | + $valid_order = false; |
|
126 | + $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
127 | 127 | |
128 | - if ( is_user_logged_in() && false !== $product_id ) { |
|
129 | - $current_user = wp_get_current_user(); |
|
130 | - if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
131 | - $valid_order = true; |
|
132 | - } |
|
133 | - } |
|
134 | - return $valid_order; |
|
128 | + if ( is_user_logged_in() && false !== $product_id ) { |
|
129 | + $current_user = wp_get_current_user(); |
|
130 | + if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
131 | + $valid_order = true; |
|
132 | + } |
|
133 | + } |
|
134 | + return $valid_order; |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
@@ -141,18 +141,18 @@ discard block |
||
141 | 141 | * @return boolean |
142 | 142 | */ |
143 | 143 | function lsx_health_plan_is_current_tab( $needle = '' ) { |
144 | - $is_tab = false; |
|
145 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
146 | - if ( false === $plan_slug ) { |
|
147 | - $plan_slug = 'my-plan'; |
|
148 | - } |
|
149 | - if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
150 | - $endpoint = get_query_var( 'endpoint' ); |
|
151 | - if ( false !== $endpoint && $needle === $endpoint ) { |
|
152 | - $is_tab = true; |
|
153 | - } |
|
154 | - } |
|
155 | - return $is_tab; |
|
144 | + $is_tab = false; |
|
145 | + $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
146 | + if ( false === $plan_slug ) { |
|
147 | + $plan_slug = 'my-plan'; |
|
148 | + } |
|
149 | + if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
150 | + $endpoint = get_query_var( 'endpoint' ); |
|
151 | + if ( false !== $endpoint && $needle === $endpoint ) { |
|
152 | + $is_tab = true; |
|
153 | + } |
|
154 | + } |
|
155 | + return $is_tab; |
|
156 | 156 | } |
157 | 157 | |
158 | 158 | /** |
@@ -162,22 +162,22 @@ discard block |
||
162 | 162 | * @return boolean |
163 | 163 | */ |
164 | 164 | function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) { |
165 | - $is_complete = false; |
|
166 | - if ( '' === $post_id ) { |
|
167 | - $post_id = get_the_ID(); |
|
168 | - } |
|
169 | - $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
170 | - $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
171 | - if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
172 | - $is_complete = true; |
|
173 | - } |
|
165 | + $is_complete = false; |
|
166 | + if ( '' === $post_id ) { |
|
167 | + $post_id = get_the_ID(); |
|
168 | + } |
|
169 | + $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
170 | + $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
171 | + if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
172 | + $is_complete = true; |
|
173 | + } |
|
174 | 174 | |
175 | - return $is_complete; |
|
175 | + return $is_complete; |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | function lsx_health_plan_is_plan_complete() { |
179 | - $complete = false; |
|
180 | - return $complete; |
|
179 | + $complete = false; |
|
180 | + return $complete; |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -187,14 +187,14 @@ discard block |
||
187 | 187 | * @return boolean |
188 | 188 | */ |
189 | 189 | function lsx_health_plan_week_has_downloads( $week = '' ) { |
190 | - $has_downloads = false; |
|
191 | - if ( '' !== $week ) { |
|
192 | - $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
193 | - if ( ! empty( $downloads ) ) { |
|
194 | - $has_downloads = true; |
|
195 | - } |
|
196 | - } |
|
197 | - return $has_downloads; |
|
190 | + $has_downloads = false; |
|
191 | + if ( '' !== $week ) { |
|
192 | + $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
193 | + if ( ! empty( $downloads ) ) { |
|
194 | + $has_downloads = true; |
|
195 | + } |
|
196 | + } |
|
197 | + return $has_downloads; |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | /** |
@@ -204,14 +204,14 @@ discard block |
||
204 | 204 | * @return boolean |
205 | 205 | */ |
206 | 206 | function lsx_health_plan_has_tips( $post_id = '' ) { |
207 | - $has_tips = false; |
|
208 | - if ( '' === $post_id ) { |
|
209 | - $post_id = get_the_ID(); |
|
210 | - } |
|
211 | - $connected_tips = get_post_meta( get_the_ID(), 'connected_tips', true ); |
|
212 | - $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
213 | - if ( ! empty( $connected_tips ) ) { |
|
214 | - $has_tips = true; |
|
215 | - } |
|
216 | - return $has_tips; |
|
207 | + $has_tips = false; |
|
208 | + if ( '' === $post_id ) { |
|
209 | + $post_id = get_the_ID(); |
|
210 | + } |
|
211 | + $connected_tips = get_post_meta( get_the_ID(), 'connected_tips', true ); |
|
212 | + $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
213 | + if ( ! empty( $connected_tips ) ) { |
|
214 | + $has_tips = true; |
|
215 | + } |
|
216 | + return $has_tips; |
|
217 | 217 | } |
@@ -8,82 +8,82 @@ |
||
8 | 8 | */ |
9 | 9 | class Articles { |
10 | 10 | |
11 | - /** |
|
12 | - * Holds class instance |
|
13 | - * |
|
14 | - * @var object \lsx_health_plan\classes\Articles() |
|
15 | - */ |
|
16 | - protected static $instance = null; |
|
11 | + /** |
|
12 | + * Holds class instance |
|
13 | + * |
|
14 | + * @var object \lsx_health_plan\classes\Articles() |
|
15 | + */ |
|
16 | + protected static $instance = null; |
|
17 | 17 | |
18 | - /** |
|
19 | - * An array of the post types for the Global Defaults field. |
|
20 | - * |
|
21 | - * @var array |
|
22 | - */ |
|
23 | - //public $default_types = array( 'exercise', 'recipe', 'meal', 'workout', 'plan' ); |
|
18 | + /** |
|
19 | + * An array of the post types for the Global Defaults field. |
|
20 | + * |
|
21 | + * @var array |
|
22 | + */ |
|
23 | + //public $default_types = array( 'exercise', 'recipe', 'meal', 'workout', 'plan' ); |
|
24 | 24 | |
25 | - /** |
|
26 | - * Constructor. |
|
27 | - */ |
|
28 | - public function __construct() { |
|
29 | - $this->default_types = array( |
|
30 | - \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' ), |
|
31 | - \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ), |
|
32 | - \lsx_health_plan\functions\get_option( 'endpoint_recipe_single', 'recipe' ), |
|
33 | - \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ), |
|
34 | - \lsx_health_plan\functions\get_option( 'endpoint_plan', 'plan' ), |
|
35 | - ); |
|
36 | - add_action( 'cmb2_admin_init', array( $this, 'related_articles_metabox' ) ); |
|
37 | - } |
|
25 | + /** |
|
26 | + * Constructor. |
|
27 | + */ |
|
28 | + public function __construct() { |
|
29 | + $this->default_types = array( |
|
30 | + \lsx_health_plan\functions\get_option( 'endpoint_meal', 'meal' ), |
|
31 | + \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ), |
|
32 | + \lsx_health_plan\functions\get_option( 'endpoint_recipe_single', 'recipe' ), |
|
33 | + \lsx_health_plan\functions\get_option( 'endpoint_workout', 'workout' ), |
|
34 | + \lsx_health_plan\functions\get_option( 'endpoint_plan', 'plan' ), |
|
35 | + ); |
|
36 | + add_action( 'cmb2_admin_init', array( $this, 'related_articles_metabox' ) ); |
|
37 | + } |
|
38 | 38 | |
39 | - /** |
|
40 | - * Return an instance of this class. |
|
41 | - * |
|
42 | - * @since 1.0.0 |
|
43 | - * |
|
44 | - * @return object \lsx_health_plan\classes\Articles() A single instance of this class. |
|
45 | - */ |
|
46 | - public static function get_instance() { |
|
47 | - // If the single instance hasn't been set, set it now. |
|
48 | - if ( null === self::$instance ) { |
|
49 | - self::$instance = new self(); |
|
50 | - } |
|
51 | - return self::$instance; |
|
52 | - } |
|
39 | + /** |
|
40 | + * Return an instance of this class. |
|
41 | + * |
|
42 | + * @since 1.0.0 |
|
43 | + * |
|
44 | + * @return object \lsx_health_plan\classes\Articles() A single instance of this class. |
|
45 | + */ |
|
46 | + public static function get_instance() { |
|
47 | + // If the single instance hasn't been set, set it now. |
|
48 | + if ( null === self::$instance ) { |
|
49 | + self::$instance = new self(); |
|
50 | + } |
|
51 | + return self::$instance; |
|
52 | + } |
|
53 | 53 | |
54 | - /** |
|
55 | - * Define the related articles member metabox and field configurations. |
|
56 | - */ |
|
57 | - public function related_articles_metabox() { |
|
58 | - foreach ( $this->default_types as $type => $default_type ) { |
|
59 | - $cmb = new_cmb2_box( |
|
60 | - array( |
|
61 | - 'id' => $default_type . '_related_articles_metabox', |
|
62 | - 'title' => __( 'Related Articles', 'lsx-health-plan' ), |
|
63 | - 'object_types' => array( $default_type ), // Post type. |
|
64 | - 'context' => 'normal', |
|
65 | - 'priority' => 'low', |
|
66 | - 'show_names' => true, |
|
67 | - ) |
|
68 | - ); |
|
54 | + /** |
|
55 | + * Define the related articles member metabox and field configurations. |
|
56 | + */ |
|
57 | + public function related_articles_metabox() { |
|
58 | + foreach ( $this->default_types as $type => $default_type ) { |
|
59 | + $cmb = new_cmb2_box( |
|
60 | + array( |
|
61 | + 'id' => $default_type . '_related_articles_metabox', |
|
62 | + 'title' => __( 'Related Articles', 'lsx-health-plan' ), |
|
63 | + 'object_types' => array( $default_type ), // Post type. |
|
64 | + 'context' => 'normal', |
|
65 | + 'priority' => 'low', |
|
66 | + 'show_names' => true, |
|
67 | + ) |
|
68 | + ); |
|
69 | 69 | |
70 | - $cmb->add_field( |
|
71 | - array( |
|
72 | - 'name' => __( 'Related Articles', 'lsx-health-plan' ), |
|
73 | - 'desc' => __( 'Connect the related articles that applies to this ', 'lsx-health-plan' ) . $default_type, |
|
74 | - 'id' => $default_type . '_connected_articles', |
|
75 | - 'type' => 'post_search_ajax', |
|
76 | - 'limit' => 3, // Limit selection to X items only (default 1). |
|
77 | - 'sortable' => true, // Allow selected items to be sortable (default false). |
|
78 | - 'query_args' => array( |
|
79 | - 'post_type' => array( 'post' ), |
|
80 | - 'post_status' => array( 'publish' ), |
|
81 | - 'posts_per_page' => -1, |
|
82 | - ), |
|
83 | - ) |
|
84 | - ); |
|
85 | - } |
|
70 | + $cmb->add_field( |
|
71 | + array( |
|
72 | + 'name' => __( 'Related Articles', 'lsx-health-plan' ), |
|
73 | + 'desc' => __( 'Connect the related articles that applies to this ', 'lsx-health-plan' ) . $default_type, |
|
74 | + 'id' => $default_type . '_connected_articles', |
|
75 | + 'type' => 'post_search_ajax', |
|
76 | + 'limit' => 3, // Limit selection to X items only (default 1). |
|
77 | + 'sortable' => true, // Allow selected items to be sortable (default false). |
|
78 | + 'query_args' => array( |
|
79 | + 'post_type' => array( 'post' ), |
|
80 | + 'post_status' => array( 'publish' ), |
|
81 | + 'posts_per_page' => -1, |
|
82 | + ), |
|
83 | + ) |
|
84 | + ); |
|
85 | + } |
|
86 | 86 | |
87 | - } |
|
87 | + } |
|
88 | 88 | |
89 | 89 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | |
14 | 14 | // If this file is called directly, abort. |
15 | 15 | if ( ! defined( 'WPINC' ) ) { |
16 | - die; |
|
16 | + die; |
|
17 | 17 | } |
18 | 18 | define( 'LSX_HEALTH_PLAN_PATH', plugin_dir_path( __FILE__ ) ); |
19 | 19 | define( 'LSX_HEALTH_PLAN_CORE', __FILE__ ); |
@@ -30,12 +30,12 @@ discard block |
||
30 | 30 | * @return void |
31 | 31 | */ |
32 | 32 | function lsx_remove_extra_meta_box() { |
33 | - global $wp_meta_boxes; |
|
34 | - $all_post_types = [ 'plan', 'video', 'workout', 'tip', 'recipe', 'meal' ]; |
|
35 | - //remove_meta_box( 'wpseo_meta', $all_post_types, 'normal' ); |
|
36 | - remove_meta_box( 'commentsdiv', $all_post_types, 'normal' ); |
|
37 | - remove_meta_box( 'commentstatusdiv', $all_post_types, 'normal' ); |
|
38 | - remove_meta_box( 'lsx_blocks_title_meta', $all_post_types, 'side' ); |
|
33 | + global $wp_meta_boxes; |
|
34 | + $all_post_types = [ 'plan', 'video', 'workout', 'tip', 'recipe', 'meal' ]; |
|
35 | + //remove_meta_box( 'wpseo_meta', $all_post_types, 'normal' ); |
|
36 | + remove_meta_box( 'commentsdiv', $all_post_types, 'normal' ); |
|
37 | + remove_meta_box( 'commentstatusdiv', $all_post_types, 'normal' ); |
|
38 | + remove_meta_box( 'lsx_blocks_title_meta', $all_post_types, 'side' ); |
|
39 | 39 | } |
40 | 40 | add_action( 'add_meta_boxes', 'lsx_remove_extra_meta_box', 100 ); |
41 | 41 | |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | * @return void |
46 | 46 | */ |
47 | 47 | function lsx_login_redirect() { |
48 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
49 | - if ( false === $plan_slug ) { |
|
50 | - $plan_slug = 'my-plan'; |
|
51 | - } |
|
52 | - return home_url( $plan_slug ); |
|
48 | + $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
49 | + if ( false === $plan_slug ) { |
|
50 | + $plan_slug = 'my-plan'; |
|
51 | + } |
|
52 | + return home_url( $plan_slug ); |
|
53 | 53 | } |
54 | 54 | add_filter( 'woocommerce_login_redirect', 'lsx_login_redirect' ); |
55 | 55 | |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * @return object lsx_health_plan\classes\Core::get_instance(); |
60 | 60 | */ |
61 | 61 | function lsx_health_plan() { |
62 | - return \lsx_health_plan\classes\Core::get_instance(); |
|
62 | + return \lsx_health_plan\classes\Core::get_instance(); |
|
63 | 63 | } |
64 | 64 | lsx_health_plan(); |
65 | 65 | |
@@ -69,13 +69,13 @@ discard block |
||
69 | 69 | * @return void |
70 | 70 | */ |
71 | 71 | function lsx_get_svg_icon( $icon ) { |
72 | - $path = '/assets/images/'; |
|
72 | + $path = '/assets/images/'; |
|
73 | 73 | |
74 | - if ( file_exists( LSX_HEALTH_PLAN_PATH . $path . $icon ) ) { |
|
75 | - // Load and return the contents of the file |
|
76 | - return include LSX_HEALTH_PLAN_PATH . $path . $icon; |
|
77 | - } |
|
74 | + if ( file_exists( LSX_HEALTH_PLAN_PATH . $path . $icon ) ) { |
|
75 | + // Load and return the contents of the file |
|
76 | + return include LSX_HEALTH_PLAN_PATH . $path . $icon; |
|
77 | + } |
|
78 | 78 | |
79 | - // Return a blank string if we can't find the file. |
|
80 | - return ''; |
|
79 | + // Return a blank string if we can't find the file. |
|
80 | + return ''; |
|
81 | 81 | } |
@@ -22,17 +22,17 @@ discard block |
||
22 | 22 | <?php } ?> |
23 | 23 | <a href="<?php echo esc_url( get_permalink() ); ?>"> |
24 | 24 | <?php |
25 | - $featured_image = get_the_post_thumbnail(); |
|
26 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
27 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
28 | - 'class' => 'aligncenter', |
|
29 | - ) ); |
|
30 | - } else { |
|
31 | - ?> |
|
25 | + $featured_image = get_the_post_thumbnail(); |
|
26 | + if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
27 | + the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
28 | + 'class' => 'aligncenter', |
|
29 | + ) ); |
|
30 | + } else { |
|
31 | + ?> |
|
32 | 32 | <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
33 | 33 | <?php |
34 | - } |
|
35 | - ?> |
|
34 | + } |
|
35 | + ?> |
|
36 | 36 | </a> |
37 | 37 | </div> |
38 | 38 | <div class="content-box workout-content-box white-bg"> |
@@ -40,14 +40,14 @@ discard block |
||
40 | 40 | <?php the_title( '<h3 class="workout-title">', '</h3>' ); ?> |
41 | 41 | </a> |
42 | 42 | <?php |
43 | - if ( ! has_excerpt() ) { |
|
44 | - $content = wp_trim_words( get_the_content(), 20 ); |
|
45 | - $content = '<p>' . $content . '</p>'; |
|
46 | - } else { |
|
47 | - $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
48 | - } |
|
49 | - echo wp_kses_post( $content ); |
|
50 | - ?> |
|
43 | + if ( ! has_excerpt() ) { |
|
44 | + $content = wp_trim_words( get_the_content(), 20 ); |
|
45 | + $content = '<p>' . $content . '</p>'; |
|
46 | + } else { |
|
47 | + $content = apply_filters( 'the_excerpt', get_the_excerpt() ); |
|
48 | + } |
|
49 | + echo wp_kses_post( $content ); |
|
50 | + ?> |
|
51 | 51 | <a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'See workout', 'lsx-health-plan' ); ?></a> |
52 | 52 | </div> |
53 | 53 | <?php lsx_entry_bottom(); ?> |