@@ -16,24 +16,24 @@ discard block |
||
| 16 | 16 | * @param boolean $single |
| 17 | 17 | * @return boolean |
| 18 | 18 | */ |
| 19 | -function has_attached_post( $post_id = '', $meta_key = '', $single = true ) { |
|
| 19 | +function has_attached_post($post_id = '', $meta_key = '', $single = true) { |
|
| 20 | 20 | $has_post = false; |
| 21 | - if ( '' === $post_id ) { |
|
| 21 | + if ('' === $post_id) { |
|
| 22 | 22 | $post_id = get_the_ID(); |
| 23 | 23 | } |
| 24 | - $items = get_post_meta( $post_id, $meta_key, $single ); |
|
| 25 | - if ( '' !== $items && false !== $items && 0 !== $items ) { |
|
| 26 | - if ( ! is_array( $items ) ) { |
|
| 27 | - $items = array( $items ); |
|
| 24 | + $items = get_post_meta($post_id, $meta_key, $single); |
|
| 25 | + if ('' !== $items && false !== $items && 0 !== $items) { |
|
| 26 | + if ( ! is_array($items)) { |
|
| 27 | + $items = array($items); |
|
| 28 | 28 | } |
| 29 | - $items = check_posts_exist( $items ); |
|
| 30 | - if ( ! empty( $items ) ) { |
|
| 29 | + $items = check_posts_exist($items); |
|
| 30 | + if ( ! empty($items)) { |
|
| 31 | 31 | $has_post = true; |
| 32 | 32 | } |
| 33 | 33 | } else { |
| 34 | 34 | // Check for defaults. |
| 35 | - $options = get_option( 'all' ); |
|
| 36 | - if ( isset( $options[ $meta_key ] ) && '' !== $options[ $meta_key ] && ! empty( $options[ $meta_key ] ) ) { |
|
| 35 | + $options = get_option('all'); |
|
| 36 | + if (isset($options[$meta_key]) && '' !== $options[$meta_key] && ! empty($options[$meta_key])) { |
|
| 37 | 37 | $has_post = true; |
| 38 | 38 | } |
| 39 | 39 | } |
@@ -47,17 +47,17 @@ discard block |
||
| 47 | 47 | * @param mixed $default Optional default value |
| 48 | 48 | * @return mixed Option value |
| 49 | 49 | */ |
| 50 | -function get_option( $key = '', $default = false ) { |
|
| 51 | - if ( function_exists( 'cmb2_get_option' ) ) { |
|
| 52 | - return cmb2_get_option( 'lsx_health_plan_options', $key, $default ); |
|
| 50 | +function get_option($key = '', $default = false) { |
|
| 51 | + if (function_exists('cmb2_get_option')) { |
|
| 52 | + return cmb2_get_option('lsx_health_plan_options', $key, $default); |
|
| 53 | 53 | } |
| 54 | 54 | // Fallback to get_option if CMB2 is not loaded yet. |
| 55 | - $opts = \get_option( 'lsx_health_plan_options', $default ); |
|
| 55 | + $opts = \get_option('lsx_health_plan_options', $default); |
|
| 56 | 56 | $val = $default; |
| 57 | - if ( 'all' === $key ) { |
|
| 57 | + if ('all' === $key) { |
|
| 58 | 58 | $val = $opts; |
| 59 | - } elseif ( is_array( $opts ) && array_key_exists( $key, $opts ) && false !== $opts[ $key ] ) { |
|
| 60 | - $val = $opts[ $key ]; |
|
| 59 | + } elseif (is_array($opts) && array_key_exists($key, $opts) && false !== $opts[$key]) { |
|
| 60 | + $val = $opts[$key]; |
|
| 61 | 61 | } |
| 62 | 62 | return $val; |
| 63 | 63 | } |
@@ -69,54 +69,54 @@ discard block |
||
| 69 | 69 | * @param mixed $default Optional default value |
| 70 | 70 | * @return mixed Option value |
| 71 | 71 | */ |
| 72 | -function get_downloads( $type = 'all', $post_id = '' ) { |
|
| 72 | +function get_downloads($type = 'all', $post_id = '') { |
|
| 73 | 73 | $lsx_health_plan = \lsx_health_plan(); |
| 74 | 74 | $post_types = $lsx_health_plan->get_post_types(); |
| 75 | - if ( '' === $post_id ) { |
|
| 75 | + if ('' === $post_id) { |
|
| 76 | 76 | $post_id = get_the_ID(); |
| 77 | 77 | } |
| 78 | 78 | $downloads = array(); |
| 79 | - $options = get_option( 'all' ); |
|
| 79 | + $options = get_option('all'); |
|
| 80 | 80 | |
| 81 | - foreach ( $post_types as $post_type ) { |
|
| 82 | - if ( 'all' === $type || in_array( $type, $post_types, true ) ) { |
|
| 81 | + foreach ($post_types as $post_type) { |
|
| 82 | + if ('all' === $type || in_array($type, $post_types, true)) { |
|
| 83 | 83 | |
| 84 | 84 | // Get the default downloads for this post type. |
| 85 | 85 | $default_downloads = array(); |
| 86 | 86 | $new_downloads = array(); |
| 87 | - if ( isset( $options[ 'download_' . $post_type ] ) ) { |
|
| 88 | - if ( is_array( $options[ 'download_' . $post_type ] ) ) { |
|
| 89 | - $default_downloads = $options[ 'download_' . $post_type ]; |
|
| 87 | + if (isset($options['download_' . $post_type])) { |
|
| 88 | + if (is_array($options['download_' . $post_type])) { |
|
| 89 | + $default_downloads = $options['download_' . $post_type]; |
|
| 90 | 90 | } else { |
| 91 | - $default_downloads[] = $options[ 'download_' . $post_type ]; |
|
| 91 | + $default_downloads[] = $options['download_' . $post_type]; |
|
| 92 | 92 | } |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - if ( 'page' === $post_type ) { |
|
| 95 | + if ('page' === $post_type) { |
|
| 96 | 96 | $key = 'plan_warmup'; |
| 97 | 97 | } else { |
| 98 | 98 | $key = 'connected_' . $post_type . 's'; |
| 99 | 99 | } |
| 100 | 100 | |
| 101 | - $connected_items = get_post_meta( $post_id, $key, true ); |
|
| 102 | - if ( ! empty( $connected_items ) ) { |
|
| 103 | - foreach ( $connected_items as $connected_item ) { |
|
| 104 | - $current_downloads = get_post_meta( $connected_item, 'connected_downloads', true ); |
|
| 105 | - if ( false !== $current_downloads && ! empty( $current_downloads ) ) { |
|
| 106 | - $new_downloads = array_merge( $new_downloads, $current_downloads ); |
|
| 101 | + $connected_items = get_post_meta($post_id, $key, true); |
|
| 102 | + if ( ! empty($connected_items)) { |
|
| 103 | + foreach ($connected_items as $connected_item) { |
|
| 104 | + $current_downloads = get_post_meta($connected_item, 'connected_downloads', true); |
|
| 105 | + if (false !== $current_downloads && ! empty($current_downloads)) { |
|
| 106 | + $new_downloads = array_merge($new_downloads, $current_downloads); |
|
| 107 | 107 | } |
| 108 | 108 | } |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - if ( ! empty( $new_downloads ) ) { |
|
| 112 | - $downloads = array_merge( $downloads, $new_downloads ); |
|
| 113 | - } elseif ( ! empty( $default_downloads ) ) { |
|
| 114 | - $downloads = array_merge( $downloads, $default_downloads ); |
|
| 111 | + if ( ! empty($new_downloads)) { |
|
| 112 | + $downloads = array_merge($downloads, $new_downloads); |
|
| 113 | + } elseif ( ! empty($default_downloads)) { |
|
| 114 | + $downloads = array_merge($downloads, $default_downloads); |
|
| 115 | 115 | } |
| 116 | - $downloads = array_unique( $downloads ); |
|
| 116 | + $downloads = array_unique($downloads); |
|
| 117 | 117 | } |
| 118 | 118 | } |
| 119 | - $downloads = check_posts_exist( $downloads ); |
|
| 119 | + $downloads = check_posts_exist($downloads); |
|
| 120 | 120 | return $downloads; |
| 121 | 121 | } |
| 122 | 122 | |
@@ -126,11 +126,11 @@ discard block |
||
| 126 | 126 | * @param string $week Week name 'week-1'. |
| 127 | 127 | * @return array an array of the downloads or empty. |
| 128 | 128 | */ |
| 129 | -function get_weekly_downloads( $week = '' ) { |
|
| 129 | +function get_weekly_downloads($week = '') { |
|
| 130 | 130 | $downloads = array(); |
| 131 | - if ( '' !== $week ) { |
|
| 132 | - $saved_downloads = get_transient( 'lsx_hp_weekly_downloads_' . $week ); |
|
| 133 | - if ( false !== $saved_downloads && ! empty( $saved_downloads ) ) { |
|
| 131 | + if ('' !== $week) { |
|
| 132 | + $saved_downloads = get_transient('lsx_hp_weekly_downloads_' . $week); |
|
| 133 | + if (false !== $saved_downloads && ! empty($saved_downloads)) { |
|
| 134 | 134 | $downloads = $saved_downloads; |
| 135 | 135 | } else { |
| 136 | 136 | $args = array( |
@@ -144,17 +144,17 @@ discard block |
||
| 144 | 144 | array( |
| 145 | 145 | 'taxonomy' => 'dlm_download_category', |
| 146 | 146 | 'field' => 'slug', |
| 147 | - 'terms' => array( $week ), |
|
| 147 | + 'terms' => array($week), |
|
| 148 | 148 | ), |
| 149 | 149 | ), |
| 150 | 150 | ); |
| 151 | - $download_query = new \WP_Query( $args ); |
|
| 152 | - if ( $download_query->have_posts() ) { |
|
| 151 | + $download_query = new \WP_Query($args); |
|
| 152 | + if ($download_query->have_posts()) { |
|
| 153 | 153 | $downloads = $download_query->posts; |
| 154 | 154 | } |
| 155 | 155 | } |
| 156 | 156 | } |
| 157 | - $downloads = check_posts_exist( $downloads ); |
|
| 157 | + $downloads = check_posts_exist($downloads); |
|
| 158 | 158 | return $downloads; |
| 159 | 159 | } |
| 160 | 160 | |
@@ -164,20 +164,20 @@ discard block |
||
| 164 | 164 | * @param array $post_ids |
| 165 | 165 | * @return void |
| 166 | 166 | */ |
| 167 | -function check_posts_exist( $post_ids = array() ) { |
|
| 167 | +function check_posts_exist($post_ids = array()) { |
|
| 168 | 168 | $new_ids = array(); |
| 169 | 169 | global $wpdb; |
| 170 | - if ( is_array( $post_ids ) && ! empty( $post_ids ) ) { |
|
| 171 | - $post_ids = "'" . implode( "','", $post_ids ) . "'"; |
|
| 170 | + if (is_array($post_ids) && ! empty($post_ids)) { |
|
| 171 | + $post_ids = "'" . implode("','", $post_ids) . "'"; |
|
| 172 | 172 | $query = " |
| 173 | 173 | SELECT `ID` |
| 174 | 174 | FROM `{$wpdb->posts}` |
| 175 | 175 | WHERE `ID` IN ({$post_ids}) |
| 176 | 176 | AND `post_status` != 'trash' |
| 177 | 177 | "; |
| 178 | - $results = $wpdb->get_results( $query ); // WPCS: unprepared SQL |
|
| 179 | - if ( ! empty( $results ) ) { |
|
| 180 | - $new_ids = wp_list_pluck( $results, 'ID' ); |
|
| 178 | + $results = $wpdb->get_results($query); // WPCS: unprepared SQL |
|
| 179 | + if ( ! empty($results)) { |
|
| 180 | + $new_ids = wp_list_pluck($results, 'ID'); |
|
| 181 | 181 | } |
| 182 | 182 | } |
| 183 | 183 | return $new_ids; |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | * @param string $body |
| 192 | 192 | * @return void |
| 193 | 193 | */ |
| 194 | -function register_modal( $id = '', $title = '', $body = '' ) { |
|
| 194 | +function register_modal($id = '', $title = '', $body = '') { |
|
| 195 | 195 | lsx_health_plan()->frontend->modals->register_modal( |
| 196 | 196 | array( |
| 197 | 197 | 'title' => $title, |
@@ -207,36 +207,36 @@ discard block |
||
| 207 | 207 | * @param array $args |
| 208 | 208 | * @return void |
| 209 | 209 | */ |
| 210 | -function output_modal( $args = array() ) { |
|
| 210 | +function output_modal($args = array()) { |
|
| 211 | 211 | $defaults = array( |
| 212 | 212 | 'id' => '', |
| 213 | 213 | 'title' => '', |
| 214 | 214 | 'body' => '', |
| 215 | 215 | ); |
| 216 | - $args = wp_parse_args( $args, $defaults ); |
|
| 216 | + $args = wp_parse_args($args, $defaults); |
|
| 217 | 217 | ?> |
| 218 | 218 | <!-- Modal --> |
| 219 | - <div class="modal fade lsx-health-plan-modal" id="<?php echo esc_html( $args['id'] ); ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo esc_html( $args['id'] ); ?>" aria-hidden="true"> |
|
| 219 | + <div class="modal fade lsx-health-plan-modal" id="<?php echo esc_html($args['id']); ?>" tabindex="-1" role="dialog" aria-labelledby="<?php echo esc_html($args['id']); ?>" aria-hidden="true"> |
|
| 220 | 220 | <div class="modal-dialog" role="document"> |
| 221 | 221 | <div class="modal-content"> |
| 222 | 222 | <button type="button" class="close" data-dismiss="modal">×</button> |
| 223 | 223 | <div class="modal-header"> |
| 224 | 224 | <?php |
| 225 | - if ( '' !== $args['title'] ) { |
|
| 226 | - echo wp_kses_post( '<h2>' . $args['title'] . '</h2>' ); |
|
| 225 | + if ('' !== $args['title']) { |
|
| 226 | + echo wp_kses_post('<h2>' . $args['title'] . '</h2>'); |
|
| 227 | 227 | } |
| 228 | 228 | ?> |
| 229 | 229 | </div> |
| 230 | 230 | <div class="modal-body"> |
| 231 | 231 | <?php |
| 232 | - if ( '' !== $args['body'] ) { |
|
| 232 | + if ('' !== $args['body']) { |
|
| 233 | 233 | $allowed_html = array( |
| 234 | 234 | 'iframe' => array( |
| 235 | 235 | 'data-src' => array(), |
| 236 | 236 | 'src' => array(), |
| 237 | 237 | 'width' => array(), |
| 238 | 238 | 'height' => array(), |
| 239 | - 'frameBorder' => array( '0' ), |
|
| 239 | + 'frameBorder' => array('0'), |
|
| 240 | 240 | 'class' => array(), |
| 241 | 241 | 'allowFullScreen' => array(), |
| 242 | 242 | 'style' => array(), |
@@ -245,10 +245,10 @@ discard block |
||
| 245 | 245 | 'class' => array(), |
| 246 | 246 | ), |
| 247 | 247 | ); |
| 248 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
| 249 | - echo wp_kses_post( $args['body'] ); |
|
| 248 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
| 249 | + echo wp_kses_post($args['body']); |
|
| 250 | 250 | } else { |
| 251 | - echo wp_kses( $args['body'], $allowed_html ); |
|
| 251 | + echo wp_kses($args['body'], $allowed_html); |
|
| 252 | 252 | } |
| 253 | 253 | } |
| 254 | 254 | ?> |
@@ -266,11 +266,11 @@ discard block |
||
| 266 | 266 | * @param [type] $embed |
| 267 | 267 | * @return void |
| 268 | 268 | */ |
| 269 | -function get_video_url( $embed ) { |
|
| 269 | +function get_video_url($embed) { |
|
| 270 | 270 | $url = ''; |
| 271 | - if ( false !== stripos( $embed, '<iframe' ) ) { |
|
| 272 | - preg_match( '/src="([^"]+)"/', $embed, $match ); |
|
| 273 | - if ( is_array( $match ) && isset( $match[1] ) ) { |
|
| 271 | + if (false !== stripos($embed, '<iframe')) { |
|
| 272 | + preg_match('/src="([^"]+)"/', $embed, $match); |
|
| 273 | + if (is_array($match) && isset($match[1])) { |
|
| 274 | 274 | $url = '<iframe data-src="' . $match[1] . '" style="border: 0;" frameBorder="0" class="giphy-embed" allowFullScreen height="300" width="100%"></iframe>'; |
| 275 | 275 | } else { |
| 276 | 276 | $url = $embed; |
@@ -288,15 +288,15 @@ discard block |
||
| 288 | 288 | * @param array $post_ids |
| 289 | 289 | * @return boolean |
| 290 | 290 | */ |
| 291 | -function is_week_complete( $term_id = false, $section_keys = array(), $group_title = '' ) { |
|
| 291 | +function is_week_complete($term_id = false, $section_keys = array(), $group_title = '') { |
|
| 292 | 292 | $return = false; |
| 293 | - if ( ! empty( $section_keys ) ) { |
|
| 294 | - $group_count = count( $section_keys ); |
|
| 295 | - foreach ( $section_keys as &$pid ) { |
|
| 296 | - $pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id( $pid ) . '_complete'; |
|
| 293 | + if ( ! empty($section_keys)) { |
|
| 294 | + $group_count = count($section_keys); |
|
| 295 | + foreach ($section_keys as &$pid) { |
|
| 296 | + $pid = 'day_' . \lsx_health_plan\functions\plan\generate_section_id($pid) . '_complete'; |
|
| 297 | 297 | } |
| 298 | - $days_complete = get_meta_amounts( $section_keys ); |
|
| 299 | - if ( (int) $group_count === (int) $days_complete ) { |
|
| 298 | + $days_complete = get_meta_amounts($section_keys); |
|
| 299 | + if ((int) $group_count === (int) $days_complete) { |
|
| 300 | 300 | $return = true; |
| 301 | 301 | } |
| 302 | 302 | } |
@@ -310,20 +310,20 @@ discard block |
||
| 310 | 310 | * @param string $key |
| 311 | 311 | * @return void |
| 312 | 312 | */ |
| 313 | -function get_meta_amounts( $post_ids = array() ) { |
|
| 313 | +function get_meta_amounts($post_ids = array()) { |
|
| 314 | 314 | global $wpdb; |
| 315 | 315 | $amount = 0; |
| 316 | 316 | $current_user = wp_get_current_user(); |
| 317 | - if ( false !== $current_user && ! empty( $post_ids ) ) { |
|
| 318 | - $post_ids = "'" . implode( "','", $post_ids ) . "'"; |
|
| 317 | + if (false !== $current_user && ! empty($post_ids)) { |
|
| 318 | + $post_ids = "'" . implode("','", $post_ids) . "'"; |
|
| 319 | 319 | $query = " |
| 320 | 320 | SELECT COUNT(`meta_value`) |
| 321 | 321 | FROM `{$wpdb->usermeta}` |
| 322 | 322 | WHERE `meta_key` IN ({$post_ids}) |
| 323 | 323 | AND `user_id` = '{$current_user->ID}' |
| 324 | 324 | "; |
| 325 | - $results = $wpdb->get_var( $query ); // WPCS: unprepared SQL |
|
| 326 | - if ( ! empty( $results ) ) { |
|
| 325 | + $results = $wpdb->get_var($query); // WPCS: unprepared SQL |
|
| 326 | + if ( ! empty($results)) { |
|
| 327 | 327 | $amount = $results; |
| 328 | 328 | } |
| 329 | 329 | } |
@@ -336,20 +336,20 @@ discard block |
||
| 336 | 336 | * @param [type] $post |
| 337 | 337 | * @return void |
| 338 | 338 | */ |
| 339 | -function hp_get_plan_type_meta( $post ) { |
|
| 339 | +function hp_get_plan_type_meta($post) { |
|
| 340 | 340 | $plan_meta = ''; |
| 341 | 341 | |
| 342 | - $term_obj_list = get_the_terms( $post->ID, 'plan-type' ); |
|
| 343 | - if ( false !== $term_obj_list ) { |
|
| 344 | - $terms_string = join( ' & ', wp_list_pluck( $term_obj_list, 'name' ) ); |
|
| 345 | - $terms_ids = wp_list_pluck( $term_obj_list, 'term_id' ); |
|
| 342 | + $term_obj_list = get_the_terms($post->ID, 'plan-type'); |
|
| 343 | + if (false !== $term_obj_list) { |
|
| 344 | + $terms_string = join(' & ', wp_list_pluck($term_obj_list, 'name')); |
|
| 345 | + $terms_ids = wp_list_pluck($term_obj_list, 'term_id'); |
|
| 346 | 346 | |
| 347 | - foreach ( $terms_ids as $terms_id ) { |
|
| 348 | - $term_thumbnail_id = get_term_meta( $terms_id, 'thumbnail', true ); |
|
| 349 | - $img = wp_get_attachment_image_src( $term_thumbnail_id, 'thumbnail' ); |
|
| 350 | - if ( ! empty( $img ) ) { |
|
| 347 | + foreach ($terms_ids as $terms_id) { |
|
| 348 | + $term_thumbnail_id = get_term_meta($terms_id, 'thumbnail', true); |
|
| 349 | + $img = wp_get_attachment_image_src($term_thumbnail_id, 'thumbnail'); |
|
| 350 | + if ( ! empty($img)) { |
|
| 351 | 351 | $image_url = $img[0]; |
| 352 | - $img = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url( $image_url ) . '" />'; |
|
| 352 | + $img = '<img loading="lazy" alt="thumbnail" style="width:24px; height: auto;" class="attachment-responsive wp-post-image lsx-responsive" src="' . esc_url($image_url) . '" />'; |
|
| 353 | 353 | } |
| 354 | 354 | |
| 355 | 355 | $plan_meta .= $img; |
@@ -364,14 +364,14 @@ discard block |
||
| 364 | 364 | /** |
| 365 | 365 | * Limit media library access |
| 366 | 366 | */ |
| 367 | -function set_only_author( $wp_query ) { |
|
| 367 | +function set_only_author($wp_query) { |
|
| 368 | 368 | global $current_user; |
| 369 | - if ( is_admin() && ! current_user_can( 'edit_others_posts' ) ) { |
|
| 370 | - $wp_query->set( 'administrator', $current_user->ID ); |
|
| 371 | - add_filter( 'views_upload', 'fix_media_counts' ); |
|
| 369 | + if (is_admin() && ! current_user_can('edit_others_posts')) { |
|
| 370 | + $wp_query->set('administrator', $current_user->ID); |
|
| 371 | + add_filter('views_upload', 'fix_media_counts'); |
|
| 372 | 372 | } |
| 373 | 373 | } |
| 374 | -add_action( 'pre_get_posts', '\lsx_health_plan\functions\set_only_author' ); |
|
| 374 | +add_action('pre_get_posts', '\lsx_health_plan\functions\set_only_author'); |
|
| 375 | 375 | |
| 376 | 376 | /** |
| 377 | 377 | * Outputs an excerpt even if there is not excerpt. |
@@ -379,11 +379,11 @@ discard block |
||
| 379 | 379 | * @param [type] $post_id |
| 380 | 380 | * @return void |
| 381 | 381 | */ |
| 382 | -function hp_excerpt( $post_id ) { |
|
| 383 | - if ( ! has_excerpt( $post_id ) ) { |
|
| 384 | - $content = wp_trim_words( get_post_field( 'post_content', $post_id ), 10 ); |
|
| 382 | +function hp_excerpt($post_id) { |
|
| 383 | + if ( ! has_excerpt($post_id)) { |
|
| 384 | + $content = wp_trim_words(get_post_field('post_content', $post_id), 10); |
|
| 385 | 385 | } else { |
| 386 | - $content = get_the_excerpt( $post_id ); |
|
| 386 | + $content = get_the_excerpt($post_id); |
|
| 387 | 387 | } |
| 388 | 388 | return $content; |
| 389 | 389 | } |
@@ -394,7 +394,7 @@ discard block |
||
| 394 | 394 | * @param string $columns |
| 395 | 395 | * @return void |
| 396 | 396 | */ |
| 397 | -function column_class( $columns = '3' ) { |
|
| 397 | +function column_class($columns = '3') { |
|
| 398 | 398 | $cols .= '5' === $columns ? '15' : 12 / $columns; |
| 399 | 399 | return $cols; |
| 400 | 400 | } |
@@ -405,16 +405,16 @@ discard block |
||
| 405 | 405 | * @param string $workout |
| 406 | 406 | * @return void |
| 407 | 407 | */ |
| 408 | -function get_exercises_by_workout( $workout = '' ) { |
|
| 408 | +function get_exercises_by_workout($workout = '') { |
|
| 409 | 409 | $exercises = array(); |
| 410 | 410 | $i = 1; |
| 411 | 411 | $section_counter = 6; |
| 412 | - while ( $i <= $section_counter ) { |
|
| 412 | + while ($i <= $section_counter) { |
|
| 413 | 413 | $group_name = 'workout_section_' . $i; |
| 414 | - $groups = get_post_meta( $workout, $group_name, true ); |
|
| 415 | - if ( ! empty( $groups ) ) { |
|
| 416 | - foreach ( $groups as $group ) { |
|
| 417 | - if ( isset( $group['connected_exercises'] ) ) { |
|
| 414 | + $groups = get_post_meta($workout, $group_name, true); |
|
| 415 | + if ( ! empty($groups)) { |
|
| 416 | + foreach ($groups as $group) { |
|
| 417 | + if (isset($group['connected_exercises'])) { |
|
| 418 | 418 | $exercises[] = $group['connected_exercises']; |
| 419 | 419 | } |
| 420 | 420 | } |
@@ -431,19 +431,19 @@ discard block |
||
| 431 | 431 | * @param int $plan_id |
| 432 | 432 | * @return int |
| 433 | 433 | */ |
| 434 | -function get_progress( $plan_id = false ) { |
|
| 434 | +function get_progress($plan_id = false) { |
|
| 435 | 435 | $progress = 0; |
| 436 | 436 | $complete = array(); |
| 437 | 437 | $count = 0; |
| 438 | - if ( false !== $plan_id && \lsx_health_plan\functions\plan\has_sections( $plan_id ) ) { |
|
| 438 | + if (false !== $plan_id && \lsx_health_plan\functions\plan\has_sections($plan_id)) { |
|
| 439 | 439 | $sections = \lsx_health_plan\functions\plan\get_sections(); |
| 440 | - $all_count = count( $sections ); |
|
| 441 | - foreach ( $sections as $section_key => $section_values ) { |
|
| 442 | - if ( lsx_health_plan_is_day_complete( $plan_id, $section_values['title'] ) ) { |
|
| 440 | + $all_count = count($sections); |
|
| 441 | + foreach ($sections as $section_key => $section_values) { |
|
| 442 | + if (lsx_health_plan_is_day_complete($plan_id, $section_values['title'])) { |
|
| 443 | 443 | $complete[] = true; |
| 444 | 444 | } |
| 445 | 445 | } |
| 446 | - $progress = (int) count( $complete ) / (int) $all_count * 100; |
|
| 446 | + $progress = (int) count($complete) / (int) $all_count * 100; |
|
| 447 | 447 | } |
| 448 | 448 | return $progress; |
| 449 | 449 | } |
@@ -458,19 +458,19 @@ discard block |
||
| 458 | 458 | function hp_back_archive_link() { |
| 459 | 459 | |
| 460 | 460 | $post_type = 'exercise'; |
| 461 | - if ( is_tax( 'recipe-cuisine' ) || is_tax( 'recipe-type' ) ) { |
|
| 461 | + if (is_tax('recipe-cuisine') || is_tax('recipe-type')) { |
|
| 462 | 462 | $post_type = 'recipe'; |
| 463 | 463 | } |
| 464 | 464 | |
| 465 | - if ( is_tax() ) { |
|
| 465 | + if (is_tax()) { |
|
| 466 | 466 | ?> |
| 467 | 467 | <div class="archive-category-title hp-archive-category-title"> |
| 468 | - <a class="back-to-blog" href="<?php echo ( esc_url( get_post_type_archive_link( $post_type ) ) ); ?>"><?php echo esc_html__( 'Back To ', 'lsx' ) . esc_html( $post_type ) . 's'; ?></a> |
|
| 468 | + <a class="back-to-blog" href="<?php echo (esc_url(get_post_type_archive_link($post_type))); ?>"><?php echo esc_html__('Back To ', 'lsx') . esc_html($post_type) . 's'; ?></a> |
|
| 469 | 469 | </div> |
| 470 | 470 | <?php |
| 471 | 471 | } |
| 472 | 472 | } |
| 473 | -add_action( 'lsx_content_wrap_before', '\lsx_health_plan\functions\hp_back_archive_link', 20 ); |
|
| 473 | +add_action('lsx_content_wrap_before', '\lsx_health_plan\functions\hp_back_archive_link', 20); |
|
| 474 | 474 | |
| 475 | 475 | /** |
| 476 | 476 | * Returns an array. |
@@ -478,11 +478,11 @@ discard block |
||
| 478 | 478 | * @param mixed $item |
| 479 | 479 | * @return array |
| 480 | 480 | */ |
| 481 | -function prep_array( $item ) { |
|
| 482 | - if ( ! is_array( $item ) ) { |
|
| 483 | - $item = explode( ',', $item ); |
|
| 484 | - if ( ! is_array( $item ) ) { |
|
| 485 | - $item = array( $item ); |
|
| 481 | +function prep_array($item) { |
|
| 482 | + if ( ! is_array($item)) { |
|
| 483 | + $item = explode(',', $item); |
|
| 484 | + if ( ! is_array($item)) { |
|
| 485 | + $item = array($item); |
|
| 486 | 486 | } |
| 487 | 487 | } |
| 488 | 488 | return $item; |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | */ |
| 47 | 47 | public static function get_instance() { |
| 48 | 48 | // If the single instance hasn't been set, set it now. |
| 49 | - if ( null === self::$instance ) { |
|
| 49 | + if (null === self::$instance) { |
|
| 50 | 50 | self::$instance = new self(); |
| 51 | 51 | } |
| 52 | 52 | return self::$instance; |
@@ -57,29 +57,29 @@ discard block |
||
| 57 | 57 | * |
| 58 | 58 | * @return void |
| 59 | 59 | */ |
| 60 | - public function query_sections( $plan_id = '' ) { |
|
| 61 | - if ( '' === $plan_id ) { |
|
| 60 | + public function query_sections($plan_id = '') { |
|
| 61 | + if ('' === $plan_id) { |
|
| 62 | 62 | $plan_id = get_the_ID(); |
| 63 | 63 | } |
| 64 | 64 | |
| 65 | - $section_array = get_post_meta( $plan_id, 'plan_sections', true ); |
|
| 66 | - if ( ! empty( $section_array ) ) { |
|
| 65 | + $section_array = get_post_meta($plan_id, 'plan_sections', true); |
|
| 66 | + if ( ! empty($section_array)) { |
|
| 67 | 67 | $this->has_sections = true; |
| 68 | 68 | $this->sections = $section_array; |
| 69 | 69 | } |
| 70 | 70 | return $this->has_sections; |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | - public function get_sections( $group = false ) { |
|
| 73 | + public function get_sections($group = false) { |
|
| 74 | 74 | $sections = $this->sections; |
| 75 | - if ( false !== $group ) { |
|
| 76 | - $sections = $this->group_sections( $sections ); |
|
| 75 | + if (false !== $group) { |
|
| 76 | + $sections = $this->group_sections($sections); |
|
| 77 | 77 | } |
| 78 | 78 | return $sections; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | public function get_section_count() { |
| 82 | - return count( $this->sections ); |
|
| 82 | + return count($this->sections); |
|
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | /** |
@@ -88,16 +88,16 @@ discard block |
||
| 88 | 88 | * @param array $sections |
| 89 | 89 | * @return array |
| 90 | 90 | */ |
| 91 | - public function group_sections( $sections = array() ) { |
|
| 91 | + public function group_sections($sections = array()) { |
|
| 92 | 92 | $groups = array(); |
| 93 | - if ( ! empty( $sections ) ) { |
|
| 94 | - foreach ( $sections as $section_key => $section_values ) { |
|
| 95 | - $group_key = apply_filters( 'lsx_hp_default_plan_group', __( 'Daily Plan', 'lsx-health-plan' ) ); |
|
| 96 | - if ( isset( $section_values['group'] ) && '' !== $section_values['group'] ) { |
|
| 93 | + if ( ! empty($sections)) { |
|
| 94 | + foreach ($sections as $section_key => $section_values) { |
|
| 95 | + $group_key = apply_filters('lsx_hp_default_plan_group', __('Daily Plan', 'lsx-health-plan')); |
|
| 96 | + if (isset($section_values['group']) && '' !== $section_values['group']) { |
|
| 97 | 97 | $group_key = $section_values['group']; |
| 98 | 98 | } |
| 99 | - $group_key = sanitize_title( $group_key ); |
|
| 100 | - $groups[ $group_key ][ $section_key ] = $section_values; |
|
| 99 | + $group_key = sanitize_title($group_key); |
|
| 100 | + $groups[$group_key][$section_key] = $section_values; |
|
| 101 | 101 | } |
| 102 | 102 | } |
| 103 | 103 | return $groups; |
@@ -43,16 +43,16 @@ discard block |
||
| 43 | 43 | */ |
| 44 | 44 | public function __construct() { |
| 45 | 45 | // Remove the default restrictions, as we will add our own. |
| 46 | - add_action( 'wp', array( $this, 'set_screen' ), 1 ); |
|
| 47 | - add_action( 'wp', array( $this, 'disable_parent_plan_restrictions' ), 2 ); |
|
| 48 | - add_action( 'wp', array( $this, 'child_plan_redirect_restrictions' ), 2 ); |
|
| 46 | + add_action('wp', array($this, 'set_screen'), 1); |
|
| 47 | + add_action('wp', array($this, 'disable_parent_plan_restrictions'), 2); |
|
| 48 | + add_action('wp', array($this, 'child_plan_redirect_restrictions'), 2); |
|
| 49 | 49 | |
| 50 | 50 | // Initiate the WP Head functions. |
| 51 | - add_action( 'wp_head', array( $this, 'set_screen' ) ); |
|
| 52 | - add_action( 'lsx_content_top', 'lsx_hp_single_plan_products' ); |
|
| 51 | + add_action('wp_head', array($this, 'set_screen')); |
|
| 52 | + add_action('lsx_content_top', 'lsx_hp_single_plan_products'); |
|
| 53 | 53 | |
| 54 | 54 | // Plan Archive Actions. |
| 55 | - add_action( 'lsx_entry_before', array( $this, 'set_product_ids' ) ); |
|
| 55 | + add_action('lsx_entry_before', array($this, 'set_product_ids')); |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | /** |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | public static function get_instance() { |
| 66 | 66 | // If the single instance hasn't been set, set it now. |
| 67 | - if ( null === self::$instance ) { |
|
| 67 | + if (null === self::$instance) { |
|
| 68 | 68 | self::$instance = new self(); |
| 69 | 69 | } |
| 70 | 70 | return self::$instance; |
@@ -74,19 +74,19 @@ discard block |
||
| 74 | 74 | * Define the product metabox on the plan post type |
| 75 | 75 | */ |
| 76 | 76 | public function set_screen() { |
| 77 | - if ( is_singular( 'plan' ) ) { |
|
| 78 | - $section = get_query_var( 'section' ); |
|
| 79 | - if ( ! empty( $section ) ) { |
|
| 77 | + if (is_singular('plan')) { |
|
| 78 | + $section = get_query_var('section'); |
|
| 79 | + if ( ! empty($section)) { |
|
| 80 | 80 | $this->screen = 'child_plan'; |
| 81 | 81 | } else { |
| 82 | 82 | $this->screen = 'parent_plan'; |
| 83 | 83 | } |
| 84 | - $product_ids = get_post_meta( get_the_ID(), 'plan_product', true ); |
|
| 85 | - if ( false !== $product_ids && ! empty( $product_ids ) ) { |
|
| 84 | + $product_ids = get_post_meta(get_the_ID(), 'plan_product', true); |
|
| 85 | + if (false !== $product_ids && ! empty($product_ids)) { |
|
| 86 | 86 | $this->product_ids = $product_ids; |
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | - if ( is_post_type_archive( 'plan' ) ) { |
|
| 89 | + if (is_post_type_archive('plan')) { |
|
| 90 | 90 | $this->screen = 'plan_archive'; |
| 91 | 91 | } |
| 92 | 92 | } |
@@ -98,9 +98,9 @@ discard block |
||
| 98 | 98 | */ |
| 99 | 99 | public function set_product_ids() { |
| 100 | 100 | $this->product_ids = false; |
| 101 | - if ( 'plan' === get_post_type() ) { |
|
| 102 | - $product_ids = get_post_meta( get_the_ID(), 'plan_product', true ); |
|
| 103 | - if ( false !== $product_ids && ! empty( $product_ids ) ) { |
|
| 101 | + if ('plan' === get_post_type()) { |
|
| 102 | + $product_ids = get_post_meta(get_the_ID(), 'plan_product', true); |
|
| 103 | + if (false !== $product_ids && ! empty($product_ids)) { |
|
| 104 | 104 | $this->product_ids = $product_ids; |
| 105 | 105 | } |
| 106 | 106 | } |
@@ -111,11 +111,11 @@ discard block |
||
| 111 | 111 | * restriction functionality elsewhere. |
| 112 | 112 | */ |
| 113 | 113 | public function disable_parent_plan_restrictions() { |
| 114 | - if ( '' === $this->screen ) { |
|
| 114 | + if ('' === $this->screen) { |
|
| 115 | 115 | return; |
| 116 | 116 | } |
| 117 | 117 | $restrictions = wc_memberships()->get_restrictions_instance()->get_posts_restrictions_instance(); |
| 118 | - remove_action( 'wp', array( $restrictions, 'handle_restriction_modes' ) ); |
|
| 118 | + remove_action('wp', array($restrictions, 'handle_restriction_modes')); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | /** |
@@ -123,12 +123,12 @@ discard block |
||
| 123 | 123 | * restriction functionality elsewhere. |
| 124 | 124 | */ |
| 125 | 125 | public function child_plan_redirect_restrictions() { |
| 126 | - if ( ! is_singular( 'plan' ) || 'child_plan' !== $this->screen || ! function_exists( 'wc_memberships_is_post_content_restricted' ) ) { |
|
| 126 | + if ( ! is_singular('plan') || 'child_plan' !== $this->screen || ! function_exists('wc_memberships_is_post_content_restricted')) { |
|
| 127 | 127 | return; |
| 128 | 128 | } |
| 129 | - $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
| 130 | - if ( true === $restricted ) { |
|
| 131 | - wp_redirect( get_permalink( get_the_ID() ) ); |
|
| 129 | + $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can('wc_memberships_view_restricted_post_content', get_the_ID()); |
|
| 130 | + if (true === $restricted) { |
|
| 131 | + wp_redirect(get_permalink(get_the_ID())); |
|
| 132 | 132 | exit; |
| 133 | 133 | } |
| 134 | 134 | } |
@@ -56,9 +56,9 @@ discard block |
||
| 56 | 56 | * Constructor |
| 57 | 57 | */ |
| 58 | 58 | public function __construct() { |
| 59 | - if ( ! is_admin() ) { |
|
| 59 | + if ( ! is_admin()) { |
|
| 60 | 60 | $this->load_classes(); |
| 61 | - add_action( 'template_redirect', array( $this, 'redirect' ) ); |
|
| 61 | + add_action('template_redirect', array($this, 'redirect')); |
|
| 62 | 62 | |
| 63 | 63 | } |
| 64 | 64 | } |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | */ |
| 73 | 73 | public static function get_instance() { |
| 74 | 74 | // If the single instance hasn't been set, set it now. |
| 75 | - if ( null === self::$instance ) { |
|
| 75 | + if (null === self::$instance) { |
|
| 76 | 76 | self::$instance = new self(); |
| 77 | 77 | } |
| 78 | 78 | return self::$instance; |
@@ -110,17 +110,17 @@ discard block |
||
| 110 | 110 | * @return void |
| 111 | 111 | */ |
| 112 | 112 | public function redirect() { |
| 113 | - if ( ! is_user_logged_in() || ! function_exists( 'wc_get_page_id' ) || is_home() ) { |
|
| 113 | + if ( ! is_user_logged_in() || ! function_exists('wc_get_page_id') || is_home()) { |
|
| 114 | 114 | return; |
| 115 | 115 | } |
| 116 | - if ( lsx_health_plan_user_has_purchase() && ( is_page( wc_get_page_id( 'cart' ) ) || is_page( wc_get_page_id( 'checkout' ) ) ) ) { |
|
| 117 | - wp_redirect( get_permalink( wc_get_page_id( 'myaccount' ) ) ); |
|
| 116 | + if (lsx_health_plan_user_has_purchase() && (is_page(wc_get_page_id('cart')) || is_page(wc_get_page_id('checkout')))) { |
|
| 117 | + wp_redirect(get_permalink(wc_get_page_id('myaccount'))); |
|
| 118 | 118 | die; |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
| 122 | - if ( false !== $product_id && is_single( $product_id ) ) { |
|
| 123 | - wp_redirect( home_url() ); |
|
| 121 | + $product_id = \lsx_health_plan\functions\get_option('membership_product', false); |
|
| 122 | + if (false !== $product_id && is_single($product_id)) { |
|
| 123 | + wp_redirect(home_url()); |
|
| 124 | 124 | wp_die(); |
| 125 | 125 | } |
| 126 | 126 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * Constructor |
| 22 | 22 | */ |
| 23 | 23 | public function __construct() { |
| 24 | - add_action( 'init', array( $this, 'setup' ) ); |
|
| 24 | + add_action('init', array($this, 'setup')); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public static function get_instance() { |
| 35 | 35 | // If the single instance hasn't been set, set it now. |
| 36 | - if ( null === self::$instance ) { |
|
| 36 | + if (null === self::$instance) { |
|
| 37 | 37 | self::$instance = new self(); |
| 38 | 38 | } |
| 39 | 39 | return self::$instance; |
@@ -51,45 +51,45 @@ discard block |
||
| 51 | 51 | */ |
| 52 | 52 | public function add_rewrite_rules() { |
| 53 | 53 | // Here is where we add in the rewrite rules above the normal WP ones. |
| 54 | - add_rewrite_tag( '%endpoint%', '([^&]+)' ); |
|
| 55 | - add_rewrite_tag( '%section%', '([^&]+)' ); |
|
| 54 | + add_rewrite_tag('%endpoint%', '([^&]+)'); |
|
| 55 | + add_rewrite_tag('%section%', '([^&]+)'); |
|
| 56 | 56 | |
| 57 | 57 | // Plan Sections. |
| 58 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/?$', 'index.php?plan=$matches[1]§ion=$matches[2]', 'top' ); |
|
| 58 | + add_rewrite_rule('plan/([^/]+)/([^/]+)/?$', 'index.php?plan=$matches[1]§ion=$matches[2]', 'top'); |
|
| 59 | 59 | |
| 60 | 60 | // Warm up. |
| 61 | - $warm_up = \lsx_health_plan\functions\get_option( 'endpoint_warm_up', false ); |
|
| 62 | - if ( false === $warm_up ) { |
|
| 61 | + $warm_up = \lsx_health_plan\functions\get_option('endpoint_warm_up', false); |
|
| 62 | + if (false === $warm_up) { |
|
| 63 | 63 | $warm_up = 'warm-up'; |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $warm_up . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=warm-up', 'top' ); |
|
| 66 | + add_rewrite_rule('plan/([^/]+)/([^/]+)/' . $warm_up . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=warm-up', 'top'); |
|
| 67 | 67 | |
| 68 | 68 | // Workout. |
| 69 | - if ( post_type_exists( 'workout' ) ) { |
|
| 70 | - $workout = \lsx_health_plan\functions\get_option( 'endpoint_workout', false ); |
|
| 71 | - if ( false === $workout ) { |
|
| 69 | + if (post_type_exists('workout')) { |
|
| 70 | + $workout = \lsx_health_plan\functions\get_option('endpoint_workout', false); |
|
| 71 | + if (false === $workout) { |
|
| 72 | 72 | $workout = 'workout'; |
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $workout . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=workout', 'top' ); |
|
| 75 | + add_rewrite_rule('plan/([^/]+)/([^/]+)/' . $workout . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=workout', 'top'); |
|
| 76 | 76 | |
| 77 | 77 | // Meal. |
| 78 | - if ( post_type_exists( 'meal' ) ) { |
|
| 79 | - $meal = \lsx_health_plan\functions\get_option( 'endpoint_meal', false ); |
|
| 80 | - if ( false === $meal ) { |
|
| 78 | + if (post_type_exists('meal')) { |
|
| 79 | + $meal = \lsx_health_plan\functions\get_option('endpoint_meal', false); |
|
| 80 | + if (false === $meal) { |
|
| 81 | 81 | $meal = 'meal'; |
| 82 | 82 | } |
| 83 | 83 | } |
| 84 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $meal . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=meal', 'top' ); |
|
| 84 | + add_rewrite_rule('plan/([^/]+)/([^/]+)/' . $meal . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=meal', 'top'); |
|
| 85 | 85 | |
| 86 | 86 | // Recipe. |
| 87 | - if ( post_type_exists( 'recipe' ) ) { |
|
| 88 | - $recipe = \lsx_health_plan\functions\get_option( 'endpoint_recipe', false ); |
|
| 89 | - if ( false === $recipe ) { |
|
| 87 | + if (post_type_exists('recipe')) { |
|
| 88 | + $recipe = \lsx_health_plan\functions\get_option('endpoint_recipe', false); |
|
| 89 | + if (false === $recipe) { |
|
| 90 | 90 | $recipe = 'recipes'; |
| 91 | 91 | } |
| 92 | 92 | } |
| 93 | - add_rewrite_rule( 'plan/([^/]+)/([^/]+)/' . $recipe . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=recipes', 'top' ); |
|
| 93 | + add_rewrite_rule('plan/([^/]+)/([^/]+)/' . $recipe . '/?$', 'index.php?plan=$matches[1]§ion=$matches[2]&endpoint=recipes', 'top'); |
|
| 94 | 94 | } |
| 95 | 95 | } |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | * Constructor |
| 22 | 22 | */ |
| 23 | 23 | public function __construct() { |
| 24 | - add_action( 'init', array( $this, 'handle_day_action' ), 100 ); |
|
| 24 | + add_action('init', array($this, 'handle_day_action'), 100); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | /** |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public static function get_instance() { |
| 35 | 35 | // If the single instance hasn't been set, set it now. |
| 36 | - if ( null === self::$instance ) { |
|
| 36 | + if (null === self::$instance) { |
|
| 37 | 37 | self::$instance = new self(); |
| 38 | 38 | } |
| 39 | 39 | return self::$instance; |
@@ -43,18 +43,18 @@ discard block |
||
| 43 | 43 | * Registers the rewrites. |
| 44 | 44 | */ |
| 45 | 45 | public function handle_day_action() { |
| 46 | - if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'complete' ) ) { |
|
| 47 | - update_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete', true ); |
|
| 48 | - $plan_id = sanitize_key( $_POST['lsx-health-plan-id'] ); |
|
| 49 | - $plan_parent = wp_get_post_parent_id( $plan_id ); |
|
| 50 | - if ( 0 !== $plan_parent ) { |
|
| 46 | + if (isset($_POST['lsx-health-plan-actions']) && wp_verify_nonce($_POST['lsx-health-plan-actions'], 'complete')) { |
|
| 47 | + update_user_meta(get_current_user_id(), 'day_' . sanitize_key($_POST['lsx-health-plan-id']) . '_complete', true); |
|
| 48 | + $plan_id = sanitize_key($_POST['lsx-health-plan-id']); |
|
| 49 | + $plan_parent = wp_get_post_parent_id($plan_id); |
|
| 50 | + if (0 !== $plan_parent) { |
|
| 51 | 51 | $plan_id = $plan_parent; |
| 52 | 52 | } |
| 53 | - wp_safe_redirect( get_permalink( $plan_id ) ); |
|
| 53 | + wp_safe_redirect(get_permalink($plan_id)); |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | - if ( isset( $_POST['lsx-health-plan-actions'] ) && wp_verify_nonce( $_POST['lsx-health-plan-actions'], 'unlock' ) ) { |
|
| 57 | - delete_user_meta( get_current_user_id(), 'day_' . sanitize_key( $_POST['lsx-health-plan-id'] ) . '_complete' ); |
|
| 56 | + if (isset($_POST['lsx-health-plan-actions']) && wp_verify_nonce($_POST['lsx-health-plan-actions'], 'unlock')) { |
|
| 57 | + delete_user_meta(get_current_user_id(), 'day_' . sanitize_key($_POST['lsx-health-plan-id']) . '_complete'); |
|
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | } |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | * Constructor |
| 29 | 29 | */ |
| 30 | 30 | public function __construct() { |
| 31 | - add_action( 'wp_footer', array( $this, 'output_modals' ) ); |
|
| 31 | + add_action('wp_footer', array($this, 'output_modals')); |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | /** |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | */ |
| 41 | 41 | public static function get_instance() { |
| 42 | 42 | // If the single instance hasn't been set, set it now. |
| 43 | - if ( null === self::$instance ) { |
|
| 43 | + if (null === self::$instance) { |
|
| 44 | 44 | self::$instance = new self(); |
| 45 | 45 | } |
| 46 | 46 | return self::$instance; |
@@ -53,10 +53,10 @@ discard block |
||
| 53 | 53 | * @param string $index |
| 54 | 54 | * @return void |
| 55 | 55 | */ |
| 56 | - public function register_modal( $modal = array(), $index = '' ) { |
|
| 57 | - if ( '' !== $index && ! empty( $modal ) ) { |
|
| 56 | + public function register_modal($modal = array(), $index = '') { |
|
| 57 | + if ('' !== $index && ! empty($modal)) { |
|
| 58 | 58 | $modal['id'] = $index; |
| 59 | - $this->modals[ $index ] = $modal; |
|
| 59 | + $this->modals[$index] = $modal; |
|
| 60 | 60 | } |
| 61 | 61 | } |
| 62 | 62 | |
@@ -64,11 +64,11 @@ discard block |
||
| 64 | 64 | * Registers the rewrites. |
| 65 | 65 | */ |
| 66 | 66 | public function output_modals() { |
| 67 | - if ( ! empty( $this->modals ) ) { |
|
| 68 | - wp_enqueue_script( 'lsx-health-plan-modals', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-modals.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true ); |
|
| 67 | + if ( ! empty($this->modals)) { |
|
| 68 | + wp_enqueue_script('lsx-health-plan-modals', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-modals.min.js', array('slick'), LSX_HEALTH_PLAN_VER, true); |
|
| 69 | 69 | |
| 70 | - foreach ( $this->modals as $index => $modal ) { |
|
| 71 | - \lsx_health_plan\functions\output_modal( $modal ); |
|
| 70 | + foreach ($this->modals as $index => $modal) { |
|
| 71 | + \lsx_health_plan\functions\output_modal($modal); |
|
| 72 | 72 | } |
| 73 | 73 | } |
| 74 | 74 | } |
@@ -21,9 +21,9 @@ discard block |
||
| 21 | 21 | * Constructor |
| 22 | 22 | */ |
| 23 | 23 | public function __construct() { |
| 24 | - add_filter( 'template_include', array( $this, 'archive_template_include' ), 99 ); |
|
| 25 | - add_filter( 'template_include', array( $this, 'single_template_include' ), 99 ); |
|
| 26 | - add_filter( 'template_include', array( $this, 'taxonomy_template_include' ), 99 ); |
|
| 24 | + add_filter('template_include', array($this, 'archive_template_include'), 99); |
|
| 25 | + add_filter('template_include', array($this, 'single_template_include'), 99); |
|
| 26 | + add_filter('template_include', array($this, 'taxonomy_template_include'), 99); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public static function get_instance() { |
| 37 | 37 | // If the single instance hasn't been set, set it now. |
| 38 | - if ( null === self::$instance ) { |
|
| 38 | + if (null === self::$instance) { |
|
| 39 | 39 | self::$instance = new self(); |
| 40 | 40 | } |
| 41 | 41 | return self::$instance; |
@@ -44,11 +44,11 @@ discard block |
||
| 44 | 44 | /** |
| 45 | 45 | * Archive template. |
| 46 | 46 | */ |
| 47 | - public function archive_template_include( $template ) { |
|
| 48 | - $applicable_post_types = apply_filters( 'lsx_health_plan_archive_template', array() ); |
|
| 49 | - if ( ! empty( $applicable_post_types ) && is_main_query() && is_post_type_archive( $applicable_post_types ) ) { |
|
| 47 | + public function archive_template_include($template) { |
|
| 48 | + $applicable_post_types = apply_filters('lsx_health_plan_archive_template', array()); |
|
| 49 | + if ( ! empty($applicable_post_types) && is_main_query() && is_post_type_archive($applicable_post_types)) { |
|
| 50 | 50 | $post_type = get_post_type(); |
| 51 | - if ( empty( locate_template( array( 'archive-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php' ) ) { |
|
| 51 | + if (empty(locate_template(array('archive-' . $post_type . '.php'))) && file_exists(LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php')) { |
|
| 52 | 52 | $template = LSX_HEALTH_PLAN_PATH . 'templates/archive-' . $post_type . '.php'; |
| 53 | 53 | } |
| 54 | 54 | } |
@@ -58,11 +58,11 @@ discard block |
||
| 58 | 58 | /** |
| 59 | 59 | * Single template. |
| 60 | 60 | */ |
| 61 | - public function single_template_include( $template ) { |
|
| 62 | - $applicable_post_types = apply_filters( 'lsx_health_plan_single_template', array() ); |
|
| 63 | - if ( ! empty( $applicable_post_types ) && is_main_query() && is_singular( $applicable_post_types ) ) { |
|
| 61 | + public function single_template_include($template) { |
|
| 62 | + $applicable_post_types = apply_filters('lsx_health_plan_single_template', array()); |
|
| 63 | + if ( ! empty($applicable_post_types) && is_main_query() && is_singular($applicable_post_types)) { |
|
| 64 | 64 | $post_type = get_post_type(); |
| 65 | - if ( empty( locate_template( array( 'single-' . $post_type . '.php' ) ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php' ) ) { |
|
| 65 | + if (empty(locate_template(array('single-' . $post_type . '.php'))) && file_exists(LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php')) { |
|
| 66 | 66 | $template = LSX_HEALTH_PLAN_PATH . 'templates/single-' . $post_type . '.php'; |
| 67 | 67 | } |
| 68 | 68 | } |
@@ -75,11 +75,11 @@ discard block |
||
| 75 | 75 | * @param $template string |
| 76 | 76 | * @return string |
| 77 | 77 | */ |
| 78 | - public function taxonomy_template_include( $template ) { |
|
| 79 | - $applicable_taxonomies = apply_filters( 'lsx_health_plan_taxonomies_template', array() ); |
|
| 80 | - if ( is_main_query() && is_tax( $applicable_taxonomies ) ) { |
|
| 81 | - $current_taxonomy = get_query_var( 'taxonomy' ); |
|
| 82 | - if ( '' === locate_template( array( 'taxonomy-' . $current_taxonomy . '.php' ) ) && file_exists( LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php' ) ) { |
|
| 78 | + public function taxonomy_template_include($template) { |
|
| 79 | + $applicable_taxonomies = apply_filters('lsx_health_plan_taxonomies_template', array()); |
|
| 80 | + if (is_main_query() && is_tax($applicable_taxonomies)) { |
|
| 81 | + $current_taxonomy = get_query_var('taxonomy'); |
|
| 82 | + if ('' === locate_template(array('taxonomy-' . $current_taxonomy . '.php')) && file_exists(LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php')) { |
|
| 83 | 83 | $template = LSX_HEALTH_PLAN_PATH . 'templates/taxonomy-' . $current_taxonomy . '.php'; |
| 84 | 84 | } |
| 85 | 85 | } |
@@ -30,12 +30,12 @@ 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' ) ); |
|
| 35 | - add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 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' ) ); |
|
| 33 | + add_action('init', array($this, 'register_post_type')); |
|
| 34 | + add_action('init', array($this, 'taxonomy_setup')); |
|
| 35 | + add_filter('lsx_health_plan_single_template', array($this, 'enable_post_type'), 10, 1); |
|
| 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 | |
| 41 | 41 | /** |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public static function get_instance() { |
| 49 | 49 | // If the single instance hasn't been set, set it now. |
| 50 | - if ( null === self::$instance ) { |
|
| 50 | + if (null === self::$instance) { |
|
| 51 | 51 | self::$instance = new self(); |
| 52 | 52 | } |
| 53 | 53 | return self::$instance; |
@@ -57,21 +57,21 @@ discard block |
||
| 57 | 57 | */ |
| 58 | 58 | public function register_post_type() { |
| 59 | 59 | $labels = array( |
| 60 | - 'name' => esc_html__( 'Meals', 'lsx-health-plan' ), |
|
| 61 | - 'singular_name' => esc_html__( 'Meal', 'lsx-health-plan' ), |
|
| 62 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
| 63 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 64 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 65 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
| 66 | - 'all_items' => esc_html__( 'All Meals', 'lsx-health-plan' ), |
|
| 67 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
| 68 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 69 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
| 70 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
| 60 | + 'name' => esc_html__('Meals', 'lsx-health-plan'), |
|
| 61 | + 'singular_name' => esc_html__('Meal', 'lsx-health-plan'), |
|
| 62 | + 'add_new' => esc_html_x('Add New', 'post type general name', 'lsx-health-plan'), |
|
| 63 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 64 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 65 | + 'new_item' => esc_html__('New', 'lsx-health-plan'), |
|
| 66 | + 'all_items' => esc_html__('All Meals', 'lsx-health-plan'), |
|
| 67 | + 'view_item' => esc_html__('View', 'lsx-health-plan'), |
|
| 68 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 69 | + 'not_found' => esc_html__('None found', 'lsx-health-plan'), |
|
| 70 | + 'not_found_in_trash' => esc_html__('None found in Trash', 'lsx-health-plan'), |
|
| 71 | 71 | 'parent_item_colon' => '', |
| 72 | - 'menu_name' => esc_html__( 'Meals', 'lsx-health-plan' ), |
|
| 72 | + 'menu_name' => esc_html__('Meals', 'lsx-health-plan'), |
|
| 73 | 73 | ); |
| 74 | - $args = array( |
|
| 74 | + $args = array( |
|
| 75 | 75 | 'labels' => $labels, |
| 76 | 76 | 'public' => true, |
| 77 | 77 | 'publicly_queryable' => true, |
@@ -81,10 +81,10 @@ discard block |
||
| 81 | 81 | 'menu_icon' => 'dashicons-carrot', |
| 82 | 82 | 'query_var' => true, |
| 83 | 83 | 'rewrite' => array( |
| 84 | - 'slug' => \lsx_health_plan\functions\get_option( 'meal_single_slug', 'meal' ), |
|
| 84 | + 'slug' => \lsx_health_plan\functions\get_option('meal_single_slug', 'meal'), |
|
| 85 | 85 | ), |
| 86 | 86 | 'capability_type' => 'post', |
| 87 | - 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_meal_archive', 'meals' ), |
|
| 87 | + 'has_archive' => \lsx_health_plan\functions\get_option('endpoint_meal_archive', 'meals'), |
|
| 88 | 88 | 'hierarchical' => true, |
| 89 | 89 | 'menu_position' => null, |
| 90 | 90 | 'supports' => array( |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | 'custom-fields', |
| 96 | 96 | ), |
| 97 | 97 | ); |
| 98 | - register_post_type( 'meal', $args ); |
|
| 98 | + register_post_type('meal', $args); |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | /** |
@@ -103,19 +103,19 @@ discard block |
||
| 103 | 103 | */ |
| 104 | 104 | public function taxonomy_setup() { |
| 105 | 105 | $labels = array( |
| 106 | - 'name' => esc_html_x( 'Meal Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 107 | - 'singular_name' => esc_html_x( 'Meal Types', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 108 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 109 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 110 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 111 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 112 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 113 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 114 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 115 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 116 | - 'menu_name' => esc_html__( 'Meal Types', 'lsx-health-plan' ), |
|
| 106 | + 'name' => esc_html_x('Meal Type', 'taxonomy general name', 'lsx-health-plan'), |
|
| 107 | + 'singular_name' => esc_html_x('Meal Types', 'taxonomy singular name', 'lsx-health-plan'), |
|
| 108 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 109 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
| 110 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
| 111 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
| 112 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 113 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
| 114 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 115 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
| 116 | + 'menu_name' => esc_html__('Meal Types', 'lsx-health-plan'), |
|
| 117 | 117 | ); |
| 118 | - $args = array( |
|
| 118 | + $args = array( |
|
| 119 | 119 | 'hierarchical' => true, |
| 120 | 120 | 'labels' => $labels, |
| 121 | 121 | 'show_ui' => true, |
@@ -126,7 +126,7 @@ discard block |
||
| 126 | 126 | 'slug' => 'meal-type', |
| 127 | 127 | ), |
| 128 | 128 | ); |
| 129 | - register_taxonomy( 'meal-type', array( $this->slug ), $args ); |
|
| 129 | + register_taxonomy('meal-type', array($this->slug), $args); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | * @param array $post_types |
| 136 | 136 | * @return array |
| 137 | 137 | */ |
| 138 | - public function enable_post_type( $post_types = array() ) { |
|
| 138 | + public function enable_post_type($post_types = array()) { |
|
| 139 | 139 | $post_types[] = $this->slug; |
| 140 | 140 | return $post_types; |
| 141 | 141 | } |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | * @param array $connections |
| 147 | 147 | * @return void |
| 148 | 148 | */ |
| 149 | - public function enable_connections( $connections = array() ) { |
|
| 149 | + public function enable_connections($connections = array()) { |
|
| 150 | 150 | $connections['meal']['connected_plans'] = 'connected_meals'; |
| 151 | 151 | $connections['plan']['connected_meals'] = 'connected_plans'; |
| 152 | 152 | return $connections; |
@@ -159,8 +159,8 @@ discard block |
||
| 159 | 159 | $cmb = new_cmb2_box( |
| 160 | 160 | array( |
| 161 | 161 | 'id' => $this->slug . '_featured_metabox_meal', |
| 162 | - 'title' => __( 'Featured Meal', 'lsx-health-plan' ), |
|
| 163 | - 'object_types' => array( $this->slug ), // Post type |
|
| 162 | + 'title' => __('Featured Meal', 'lsx-health-plan'), |
|
| 163 | + 'object_types' => array($this->slug), // Post type |
|
| 164 | 164 | 'context' => 'side', |
| 165 | 165 | 'priority' => 'high', |
| 166 | 166 | 'show_names' => true, |
@@ -168,8 +168,8 @@ discard block |
||
| 168 | 168 | ); |
| 169 | 169 | $cmb->add_field( |
| 170 | 170 | array( |
| 171 | - 'name' => __( 'Featured Meal', 'lsx-health-plan' ), |
|
| 172 | - 'desc' => __( 'Enable a featured meal' ), |
|
| 171 | + 'name' => __('Featured Meal', 'lsx-health-plan'), |
|
| 172 | + 'desc' => __('Enable a featured meal'), |
|
| 173 | 173 | 'id' => $this->slug . '_featured_meal', |
| 174 | 174 | 'type' => 'checkbox', |
| 175 | 175 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -181,66 +181,66 @@ discard block |
||
| 181 | 181 | * Define the metabox and field configurations. |
| 182 | 182 | */ |
| 183 | 183 | public function details_metaboxes() { |
| 184 | - $cmb = new_cmb2_box( array( |
|
| 184 | + $cmb = new_cmb2_box(array( |
|
| 185 | 185 | 'id' => $this->slug . '_shopping_list_metabox', |
| 186 | - 'title' => __( 'Shopping List', 'lsx-health-plan' ), |
|
| 187 | - 'object_types' => array( $this->slug ), // Post type |
|
| 186 | + 'title' => __('Shopping List', 'lsx-health-plan'), |
|
| 187 | + 'object_types' => array($this->slug), // Post type |
|
| 188 | 188 | 'context' => 'normal', |
| 189 | 189 | 'priority' => 'high', |
| 190 | 190 | 'show_names' => true, |
| 191 | - ) ); |
|
| 192 | - $cmb->add_field( array( |
|
| 193 | - 'name' => __( 'Shopping List', 'lsx-health-plan' ), |
|
| 194 | - 'desc' => __( 'Connect the shopping list page that applies to this meal by entering the name of the page in the field provided.' ), |
|
| 191 | + )); |
|
| 192 | + $cmb->add_field(array( |
|
| 193 | + 'name' => __('Shopping List', 'lsx-health-plan'), |
|
| 194 | + 'desc' => __('Connect the shopping list page that applies to this meal by entering the name of the page in the field provided.'), |
|
| 195 | 195 | 'id' => $this->slug . '_shopping_list', |
| 196 | 196 | 'type' => 'post_search_ajax', |
| 197 | 197 | // Optional : |
| 198 | - 'limit' => 1, // Limit selection to X items only (default 1) |
|
| 198 | + 'limit' => 1, // Limit selection to X items only (default 1) |
|
| 199 | 199 | 'sortable' => true, // Allow selected items to be sortable (default false) |
| 200 | 200 | 'query_args' => array( |
| 201 | - 'post_type' => array( 'page' ), |
|
| 202 | - 'post_status' => array( 'publish' ), |
|
| 201 | + 'post_type' => array('page'), |
|
| 202 | + 'post_status' => array('publish'), |
|
| 203 | 203 | 'posts_per_page' => -1, |
| 204 | 204 | ), |
| 205 | - ) ); |
|
| 206 | - $cmb = new_cmb2_box( array( |
|
| 205 | + )); |
|
| 206 | + $cmb = new_cmb2_box(array( |
|
| 207 | 207 | 'id' => $this->slug . '_details_metabox', |
| 208 | - 'title' => __( 'Meal Details', 'lsx-health-plan' ), |
|
| 209 | - 'object_types' => array( $this->slug ), // Post type |
|
| 208 | + 'title' => __('Meal Details', 'lsx-health-plan'), |
|
| 209 | + 'object_types' => array($this->slug), // Post type |
|
| 210 | 210 | 'context' => 'normal', |
| 211 | 211 | 'priority' => 'high', |
| 212 | 212 | 'show_names' => true, |
| 213 | - ) ); |
|
| 213 | + )); |
|
| 214 | 214 | |
| 215 | - $cmb->add_field( array( |
|
| 216 | - 'name' => __( 'Meal Short Description', 'lsx-health-plan' ), |
|
| 215 | + $cmb->add_field(array( |
|
| 216 | + 'name' => __('Meal Short Description', 'lsx-health-plan'), |
|
| 217 | 217 | 'id' => $this->slug . '_short_description', |
| 218 | 218 | 'type' => 'textarea_small', |
| 219 | - 'desc' => __( 'Add a small description for this meal (optional)', 'lsx-health-plan' ), |
|
| 220 | - ) ); |
|
| 219 | + 'desc' => __('Add a small description for this meal (optional)', 'lsx-health-plan'), |
|
| 220 | + )); |
|
| 221 | 221 | |
| 222 | - $cmb->add_field( array( |
|
| 223 | - 'name' => __( 'Pre Breakfast Snack', 'lsx-health-plan' ), |
|
| 222 | + $cmb->add_field(array( |
|
| 223 | + 'name' => __('Pre Breakfast Snack', 'lsx-health-plan'), |
|
| 224 | 224 | 'id' => $this->slug . '_pre_breakfast_snack', |
| 225 | 225 | 'type' => 'wysiwyg', |
| 226 | 226 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
| 227 | 227 | 'options' => array( |
| 228 | 228 | 'textarea_rows' => 5, |
| 229 | 229 | ), |
| 230 | - ) ); |
|
| 231 | - $cmb->add_field( array( |
|
| 232 | - 'name' => __( 'Breakfast', 'lsx-health-plan' ), |
|
| 230 | + )); |
|
| 231 | + $cmb->add_field(array( |
|
| 232 | + 'name' => __('Breakfast', 'lsx-health-plan'), |
|
| 233 | 233 | 'id' => $this->slug . '_breakfast', |
| 234 | 234 | 'type' => 'wysiwyg', |
| 235 | 235 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
| 236 | 236 | 'options' => array( |
| 237 | 237 | 'textarea_rows' => 5, |
| 238 | 238 | ), |
| 239 | - ) ); |
|
| 239 | + )); |
|
| 240 | 240 | |
| 241 | 241 | $cmb->add_field( |
| 242 | 242 | array( |
| 243 | - 'name' => __( 'Post Breakfast Snack', 'lsx-health-plan' ), |
|
| 243 | + 'name' => __('Post Breakfast Snack', 'lsx-health-plan'), |
|
| 244 | 244 | 'id' => $this->slug . '_breakfast_snack', |
| 245 | 245 | 'type' => 'wysiwyg', |
| 246 | 246 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -250,19 +250,19 @@ discard block |
||
| 250 | 250 | ) |
| 251 | 251 | ); |
| 252 | 252 | |
| 253 | - if ( post_type_exists( 'recipe' ) ) { |
|
| 253 | + if (post_type_exists('recipe')) { |
|
| 254 | 254 | $cmb->add_field( |
| 255 | 255 | array( |
| 256 | - 'name' => __( 'Breakfast Recipes', 'lsx-health-plan' ), |
|
| 257 | - 'desc' => __( 'Connect additional recipes options for breakfast.', 'lsx-health-plan' ), |
|
| 256 | + 'name' => __('Breakfast Recipes', 'lsx-health-plan'), |
|
| 257 | + 'desc' => __('Connect additional recipes options for breakfast.', 'lsx-health-plan'), |
|
| 258 | 258 | 'id' => 'breakfast_recipes', |
| 259 | 259 | 'type' => 'post_search_ajax', |
| 260 | 260 | // Optional : |
| 261 | - 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 261 | + 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 262 | 262 | 'sortable' => true, // Allow selected items to be sortable (default false) |
| 263 | 263 | 'query_args' => array( |
| 264 | - 'post_type' => array( 'recipe' ), |
|
| 265 | - 'post_status' => array( 'publish' ), |
|
| 264 | + 'post_type' => array('recipe'), |
|
| 265 | + 'post_status' => array('publish'), |
|
| 266 | 266 | 'posts_per_page' => -1, |
| 267 | 267 | ), |
| 268 | 268 | ) |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | |
| 272 | 272 | $cmb->add_field( |
| 273 | 273 | array( |
| 274 | - 'name' => __( 'Pre Lunch Snack', 'lsx-health-plan' ), |
|
| 274 | + 'name' => __('Pre Lunch Snack', 'lsx-health-plan'), |
|
| 275 | 275 | 'id' => $this->slug . '_pre_lunch_snack', |
| 276 | 276 | 'type' => 'wysiwyg', |
| 277 | 277 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -282,7 +282,7 @@ discard block |
||
| 282 | 282 | ); |
| 283 | 283 | $cmb->add_field( |
| 284 | 284 | array( |
| 285 | - 'name' => __( 'Lunch', 'lsx-health-plan' ), |
|
| 285 | + 'name' => __('Lunch', 'lsx-health-plan'), |
|
| 286 | 286 | 'id' => $this->slug . '_lunch', |
| 287 | 287 | 'type' => 'wysiwyg', |
| 288 | 288 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -293,7 +293,7 @@ discard block |
||
| 293 | 293 | ); |
| 294 | 294 | $cmb->add_field( |
| 295 | 295 | array( |
| 296 | - 'name' => __( 'Post Lunch Snack', 'lsx-health-plan' ), |
|
| 296 | + 'name' => __('Post Lunch Snack', 'lsx-health-plan'), |
|
| 297 | 297 | 'id' => $this->slug . '_lunch_snack', |
| 298 | 298 | 'type' => 'wysiwyg', |
| 299 | 299 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -303,19 +303,19 @@ discard block |
||
| 303 | 303 | ) |
| 304 | 304 | ); |
| 305 | 305 | |
| 306 | - if ( post_type_exists( 'recipe' ) ) { |
|
| 306 | + if (post_type_exists('recipe')) { |
|
| 307 | 307 | $cmb->add_field( |
| 308 | 308 | array( |
| 309 | - 'name' => __( 'Lunch Recipes', 'lsx-health-plan' ), |
|
| 310 | - 'desc' => __( 'Connect additional recipes options for lunch.', 'lsx-health-plan' ), |
|
| 309 | + 'name' => __('Lunch Recipes', 'lsx-health-plan'), |
|
| 310 | + 'desc' => __('Connect additional recipes options for lunch.', 'lsx-health-plan'), |
|
| 311 | 311 | 'id' => 'lunch_recipes', |
| 312 | 312 | 'type' => 'post_search_ajax', |
| 313 | 313 | // Optional : |
| 314 | - 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 314 | + 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 315 | 315 | 'sortable' => true, // Allow selected items to be sortable (default false) |
| 316 | 316 | 'query_args' => array( |
| 317 | - 'post_type' => array( 'recipe' ), |
|
| 318 | - 'post_status' => array( 'publish' ), |
|
| 317 | + 'post_type' => array('recipe'), |
|
| 318 | + 'post_status' => array('publish'), |
|
| 319 | 319 | 'posts_per_page' => -1, |
| 320 | 320 | ), |
| 321 | 321 | ) |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | |
| 325 | 325 | $cmb->add_field( |
| 326 | 326 | array( |
| 327 | - 'name' => __( 'Pre Dinner Snack', 'lsx-health-plan' ), |
|
| 327 | + 'name' => __('Pre Dinner Snack', 'lsx-health-plan'), |
|
| 328 | 328 | 'id' => $this->slug . '_pre_dinner_snack', |
| 329 | 329 | 'type' => 'wysiwyg', |
| 330 | 330 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | ); |
| 336 | 336 | $cmb->add_field( |
| 337 | 337 | array( |
| 338 | - 'name' => __( 'Dinner', 'lsx-health-plan' ), |
|
| 338 | + 'name' => __('Dinner', 'lsx-health-plan'), |
|
| 339 | 339 | 'id' => $this->slug . '_dinner', |
| 340 | 340 | 'type' => 'wysiwyg', |
| 341 | 341 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -346,7 +346,7 @@ discard block |
||
| 346 | 346 | ); |
| 347 | 347 | $cmb->add_field( |
| 348 | 348 | array( |
| 349 | - 'name' => __( 'Post Dinner Snack', 'lsx-health-plan' ), |
|
| 349 | + 'name' => __('Post Dinner Snack', 'lsx-health-plan'), |
|
| 350 | 350 | 'id' => $this->slug . '_dinner_snack', |
| 351 | 351 | 'type' => 'wysiwyg', |
| 352 | 352 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -356,19 +356,19 @@ discard block |
||
| 356 | 356 | ) |
| 357 | 357 | ); |
| 358 | 358 | |
| 359 | - if ( post_type_exists( 'recipe' ) ) { |
|
| 359 | + if (post_type_exists('recipe')) { |
|
| 360 | 360 | $cmb->add_field( |
| 361 | 361 | array( |
| 362 | - 'name' => __( 'Dinner Recipes', 'lsx-health-plan' ), |
|
| 363 | - 'desc' => __( 'Connect additional recipes options for dinner.', 'lsx-health-plan' ), |
|
| 362 | + 'name' => __('Dinner Recipes', 'lsx-health-plan'), |
|
| 363 | + 'desc' => __('Connect additional recipes options for dinner.', 'lsx-health-plan'), |
|
| 364 | 364 | 'id' => 'dinner_recipes', |
| 365 | 365 | 'type' => 'post_search_ajax', |
| 366 | 366 | // Optional : |
| 367 | - 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 367 | + 'limit' => 15, // Limit selection to X items only (default 1) |
|
| 368 | 368 | 'sortable' => true, // Allow selected items to be sortable (default false) |
| 369 | 369 | 'query_args' => array( |
| 370 | - 'post_type' => array( 'recipe' ), |
|
| 371 | - 'post_status' => array( 'publish' ), |
|
| 370 | + 'post_type' => array('recipe'), |
|
| 371 | + 'post_status' => array('publish'), |
|
| 372 | 372 | 'posts_per_page' => -1, |
| 373 | 373 | ), |
| 374 | 374 | ) |