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