@@ -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,22 +24,22 @@ 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 | 34 | $has_workouts = false; |
35 | 35 | |
36 | - $section_key = get_query_var( 'section', false ); |
|
37 | - if ( false !== $section_key ) { |
|
38 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
39 | - if ( isset( $section_info['connected_workouts'] ) && ! empty( $section_info['connected_workouts'] ) ) { |
|
36 | + $section_key = get_query_var('section', false); |
|
37 | + if (false !== $section_key) { |
|
38 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
39 | + if (isset($section_info['connected_workouts']) && ! empty($section_info['connected_workouts'])) { |
|
40 | 40 | $has_workouts = true; |
41 | 41 | } |
42 | - } elseif ( \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ) ) { |
|
42 | + } elseif (\lsx_health_plan\functions\has_attached_post($post_id, 'connected_workouts')) { |
|
43 | 43 | $has_workouts = true; |
44 | 44 | } |
45 | 45 | |
@@ -52,15 +52,15 @@ discard block |
||
52 | 52 | * @param string $post_id |
53 | 53 | * @return boolean |
54 | 54 | */ |
55 | -function lsx_health_plan_has_meal( $post_id = '' ) { |
|
56 | - if ( ! post_type_exists( 'meal' ) ) { |
|
55 | +function lsx_health_plan_has_meal($post_id = '') { |
|
56 | + if ( ! post_type_exists('meal')) { |
|
57 | 57 | return false; |
58 | 58 | } |
59 | - if ( '' === $post_id ) { |
|
59 | + if ('' === $post_id) { |
|
60 | 60 | $post_id = get_the_ID(); |
61 | 61 | } |
62 | 62 | |
63 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
63 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_meals'); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | /** |
@@ -69,14 +69,14 @@ discard block |
||
69 | 69 | * @param string $post_id |
70 | 70 | * @return boolean |
71 | 71 | */ |
72 | -function lsx_health_plan_has_recipe( $post_id = '' ) { |
|
73 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
72 | +function lsx_health_plan_has_recipe($post_id = '') { |
|
73 | + if ( ! post_type_exists('recipe')) { |
|
74 | 74 | return false; |
75 | 75 | } |
76 | - if ( '' === $post_id ) { |
|
76 | + if ('' === $post_id) { |
|
77 | 77 | $post_id = get_the_ID(); |
78 | 78 | } |
79 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
79 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_recipes'); |
|
80 | 80 | } |
81 | 81 | |
82 | 82 | /** |
@@ -85,13 +85,13 @@ discard block |
||
85 | 85 | * @param string $post_id |
86 | 86 | * @return boolean |
87 | 87 | */ |
88 | -function lsx_health_plan_has_downloads( $post_id = '' ) { |
|
88 | +function lsx_health_plan_has_downloads($post_id = '') { |
|
89 | 89 | $has_downloads = false; |
90 | - if ( '' === $post_id ) { |
|
90 | + if ('' === $post_id) { |
|
91 | 91 | $post_id = get_the_ID(); |
92 | 92 | } |
93 | - $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
94 | - if ( ! empty( $downloads ) ) { |
|
93 | + $downloads = \lsx_health_plan\functions\get_downloads('all', $post_id); |
|
94 | + if ( ! empty($downloads)) { |
|
95 | 95 | $has_downloads = true; |
96 | 96 | } |
97 | 97 | return $has_downloads; |
@@ -103,14 +103,14 @@ discard block |
||
103 | 103 | * @param string $post_id |
104 | 104 | * @return boolean |
105 | 105 | */ |
106 | -function lsx_health_plan_has_tip( $post_id = '' ) { |
|
107 | - if ( ! post_type_exists( 'tip' ) ) { |
|
106 | +function lsx_health_plan_has_tip($post_id = '') { |
|
107 | + if ( ! post_type_exists('tip')) { |
|
108 | 108 | return false; |
109 | 109 | } |
110 | - if ( '' === $post_id ) { |
|
110 | + if ('' === $post_id) { |
|
111 | 111 | $post_id = get_the_ID(); |
112 | 112 | } |
113 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
113 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_tips'); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | /** |
@@ -119,14 +119,14 @@ discard block |
||
119 | 119 | * @param string $post_id |
120 | 120 | * @return boolean |
121 | 121 | */ |
122 | -function lsx_health_plan_has_video( $post_id = '' ) { |
|
123 | - if ( ! post_type_exists( 'video' ) ) { |
|
122 | +function lsx_health_plan_has_video($post_id = '') { |
|
123 | + if ( ! post_type_exists('video')) { |
|
124 | 124 | return false; |
125 | 125 | } |
126 | - if ( '' === $post_id ) { |
|
126 | + if ('' === $post_id) { |
|
127 | 127 | $post_id = get_the_ID(); |
128 | 128 | } |
129 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
129 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_videos'); |
|
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
@@ -145,15 +145,15 @@ discard block |
||
145 | 145 | * @param string $post_id |
146 | 146 | * @return boolean |
147 | 147 | */ |
148 | -function lsx_health_plan_is_current_tab( $needle = '' ) { |
|
148 | +function lsx_health_plan_is_current_tab($needle = '') { |
|
149 | 149 | $is_tab = false; |
150 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
151 | - if ( false === $plan_slug ) { |
|
150 | + $plan_slug = \lsx_health_plan\functions\get_option('my_plan_slug', false); |
|
151 | + if (false === $plan_slug) { |
|
152 | 152 | $plan_slug = 'my-plan'; |
153 | 153 | } |
154 | - if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
155 | - $endpoint = get_query_var( 'endpoint' ); |
|
156 | - if ( false !== $endpoint && $needle === $endpoint ) { |
|
154 | + if (is_singular('plan') || is_page($plan_slug)) { |
|
155 | + $endpoint = get_query_var('endpoint'); |
|
156 | + if (false !== $endpoint && $needle === $endpoint) { |
|
157 | 157 | $is_tab = true; |
158 | 158 | } |
159 | 159 | } |
@@ -166,14 +166,14 @@ discard block |
||
166 | 166 | * @param string $post_id |
167 | 167 | * @return boolean |
168 | 168 | */ |
169 | -function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) { |
|
169 | +function lsx_health_plan_is_day_complete($post_id = '', $section_key = '') { |
|
170 | 170 | $is_complete = false; |
171 | - if ( '' === $post_id ) { |
|
171 | + if ('' === $post_id) { |
|
172 | 172 | $post_id = get_the_ID(); |
173 | 173 | } |
174 | - $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
175 | - $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
176 | - if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
174 | + $key = \lsx_health_plan\functions\plan\generate_section_id($section_key); |
|
175 | + $is_day_complete = get_user_meta(get_current_user_id(), 'day_' . $key . '_complete', true); |
|
176 | + if (false !== $is_day_complete && '' !== $is_day_complete) { |
|
177 | 177 | $is_complete = true; |
178 | 178 | } |
179 | 179 | |
@@ -191,11 +191,11 @@ discard block |
||
191 | 191 | * @param string $week The week name 'week-1'. |
192 | 192 | * @return boolean |
193 | 193 | */ |
194 | -function lsx_health_plan_week_has_downloads( $week = '' ) { |
|
194 | +function lsx_health_plan_week_has_downloads($week = '') { |
|
195 | 195 | $has_downloads = false; |
196 | - if ( '' !== $week ) { |
|
197 | - $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
198 | - if ( ! empty( $downloads ) ) { |
|
196 | + if ('' !== $week) { |
|
197 | + $downloads = \lsx_health_plan\functions\get_weekly_downloads($week); |
|
198 | + if ( ! empty($downloads)) { |
|
199 | 199 | $has_downloads = true; |
200 | 200 | } |
201 | 201 | } |
@@ -208,15 +208,15 @@ discard block |
||
208 | 208 | * @param string $post_id |
209 | 209 | * @return boolean |
210 | 210 | */ |
211 | -function lsx_health_plan_has_tips( $post_id = '' ) { |
|
211 | +function lsx_health_plan_has_tips($post_id = '') { |
|
212 | 212 | $has_tips = false; |
213 | - if ( '' === $post_id ) { |
|
213 | + if ('' === $post_id) { |
|
214 | 214 | $post_id = get_the_ID(); |
215 | 215 | } |
216 | - $post_type = get_post_type( $post_id ); |
|
217 | - $connected_tips = get_post_meta( get_the_ID(), $post_type . '_connected_tips', true ); |
|
218 | - $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
219 | - if ( ! empty( $connected_tips ) ) { |
|
216 | + $post_type = get_post_type($post_id); |
|
217 | + $connected_tips = get_post_meta(get_the_ID(), $post_type . '_connected_tips', true); |
|
218 | + $connected_tips = \lsx_health_plan\functions\check_posts_exist($connected_tips); |
|
219 | + if ( ! empty($connected_tips)) { |
|
220 | 220 | $has_tips = true; |
221 | 221 | } |
222 | 222 | return $has_tips; |