@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | * Constructor |
| 26 | 26 | */ |
| 27 | 27 | public function __construct() { |
| 28 | - add_action( 'lsx_hp_settings_page_workout_top', array( $this, 'settings' ), 1, 1 ); |
|
| 28 | + add_action('lsx_hp_settings_page_workout_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,34 +49,34 @@ 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' => __( 'Disable Workouts', 'lsx-health-plan' ), |
|
| 55 | + 'name' => __('Disable Workouts', 'lsx-health-plan'), |
|
| 56 | 56 | 'id' => 'workout_disabled', |
| 57 | 57 | 'type' => 'checkbox', |
| 58 | 58 | 'value' => 1, |
| 59 | 59 | 'default' => 0, |
| 60 | - 'description' => __( 'Disable workout post type if you are wanting a minimal site.', 'lsx-health-plan' ), |
|
| 60 | + 'description' => __('Disable workout post type if you are wanting a minimal site.', 'lsx-health-plan'), |
|
| 61 | 61 | ) |
| 62 | 62 | ); |
| 63 | 63 | $cmb->add_field( |
| 64 | 64 | array( |
| 65 | - 'name' => __( 'Your Warm-up Intro', 'lsx-health-plan' ), |
|
| 65 | + 'name' => __('Your Warm-up Intro', 'lsx-health-plan'), |
|
| 66 | 66 | 'id' => 'warmup_intro', |
| 67 | 67 | 'type' => 'textarea_small', |
| 68 | 68 | 'value' => '', |
| 69 | - 'default' => __( "Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan' ), |
|
| 69 | + 'default' => __("Don't forget your warm-up! It's a vital part of your daily workout routine.", 'lsx-health-plan'), |
|
| 70 | 70 | ) |
| 71 | 71 | ); |
| 72 | - if ( post_type_exists( 'workout' ) ) { |
|
| 72 | + if (post_type_exists('workout')) { |
|
| 73 | 73 | $cmb->add_field( |
| 74 | 74 | array( |
| 75 | - 'name' => __( 'Your Workout Intro', 'lsx-health-plan' ), |
|
| 75 | + 'name' => __('Your Workout Intro', 'lsx-health-plan'), |
|
| 76 | 76 | 'id' => 'workout_intro', |
| 77 | 77 | 'type' => 'textarea_small', |
| 78 | 78 | 'value' => '', |
| 79 | - 'default' => __( "Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan' ), |
|
| 79 | + 'default' => __("Let's do this! Smash your daily workout and reach your fitness goals.", 'lsx-health-plan'), |
|
| 80 | 80 | ) |
| 81 | 81 | ); |
| 82 | 82 | } |
@@ -85,12 +85,12 @@ discard block |
||
| 85 | 85 | 'before_row' => '<h4><b><u>Layout Options</u></b></h4>', |
| 86 | 86 | 'id' => 'workout_tab_layout', |
| 87 | 87 | 'type' => 'select', |
| 88 | - 'name' => __( 'Workout Tab Layout', 'lsx-health-plan' ), |
|
| 89 | - 'description' => __( 'Choose the layout for the workouts.', 'lsx-health-plan' ), |
|
| 88 | + 'name' => __('Workout Tab Layout', 'lsx-health-plan'), |
|
| 89 | + 'description' => __('Choose the layout for the workouts.', 'lsx-health-plan'), |
|
| 90 | 90 | 'options' => array( |
| 91 | - 'table' => __( 'Table', 'lsx-health-plan' ), |
|
| 92 | - 'list' => __( 'List', 'lsx-health-plan' ), |
|
| 93 | - 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
| 91 | + 'table' => __('Table', 'lsx-health-plan'), |
|
| 92 | + 'list' => __('List', 'lsx-health-plan'), |
|
| 93 | + 'grid' => __('Grid', 'lsx-health-plan'), |
|
| 94 | 94 | ), |
| 95 | 95 | ) |
| 96 | 96 | ); |
@@ -98,12 +98,12 @@ discard block |
||
| 98 | 98 | array( |
| 99 | 99 | 'id' => 'workout_tab_link', |
| 100 | 100 | 'type' => 'select', |
| 101 | - 'name' => __( 'Workout Tab Link', 'lsx-health-plan' ), |
|
| 102 | - 'description' => __( 'Choose to show the excerpt, full content or nothing.', 'lsx-health-plan' ), |
|
| 101 | + 'name' => __('Workout Tab Link', 'lsx-health-plan'), |
|
| 102 | + 'description' => __('Choose to show the excerpt, full content or nothing.', 'lsx-health-plan'), |
|
| 103 | 103 | 'options' => array( |
| 104 | - 'none' => __( 'None', 'lsx-health-plan' ), |
|
| 105 | - 'single' => __( 'Single', 'lsx-health-plan' ), |
|
| 106 | - 'modal' => __( 'Modal', 'lsx-health-plan' ), |
|
| 104 | + 'none' => __('None', 'lsx-health-plan'), |
|
| 105 | + 'single' => __('Single', 'lsx-health-plan'), |
|
| 106 | + 'modal' => __('Modal', 'lsx-health-plan'), |
|
| 107 | 107 | ), |
| 108 | 108 | 'default' => '', |
| 109 | 109 | ) |
@@ -112,12 +112,12 @@ discard block |
||
| 112 | 112 | array( |
| 113 | 113 | 'id' => 'workout_tab_modal_content', |
| 114 | 114 | 'type' => 'select', |
| 115 | - 'name' => __( 'Modal Content', 'lsx-health-plan' ), |
|
| 116 | - 'description' => __( 'Choose to show the excerpt, full content or nothing. For the modal content only', 'lsx-health-plan' ), |
|
| 115 | + 'name' => __('Modal Content', 'lsx-health-plan'), |
|
| 116 | + 'description' => __('Choose to show the excerpt, full content or nothing. For the modal content only', 'lsx-health-plan'), |
|
| 117 | 117 | 'options' => array( |
| 118 | - '' => __( 'None', 'lsx-health-plan' ), |
|
| 119 | - 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
| 120 | - 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
| 118 | + '' => __('None', 'lsx-health-plan'), |
|
| 119 | + 'excerpt' => __('Excerpt', 'lsx-health-plan'), |
|
| 120 | + 'full' => __('Full Content', 'lsx-health-plan'), |
|
| 121 | 121 | ), |
| 122 | 122 | 'default' => '', |
| 123 | 123 | ) |
@@ -126,14 +126,14 @@ discard block |
||
| 126 | 126 | array( |
| 127 | 127 | 'id' => 'workout_tab_columns', |
| 128 | 128 | 'type' => 'select', |
| 129 | - 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
| 130 | - 'description' => __( 'If you are displaying a grid, set the amount of columns you want to use.', 'lsx-health-plan' ), |
|
| 129 | + 'name' => __('Grid Columns', 'lsx-health-plan'), |
|
| 130 | + 'description' => __('If you are displaying a grid, set the amount of columns you want to use.', 'lsx-health-plan'), |
|
| 131 | 131 | 'options' => array( |
| 132 | - '12' => __( '1', 'lsx-health-plan' ), |
|
| 133 | - '6' => __( '2', 'lsx-health-plan' ), |
|
| 134 | - '4' => __( '3', 'lsx-health-plan' ), |
|
| 135 | - '3' => __( '4', 'lsx-health-plan' ), |
|
| 136 | - '2' => __( '6', 'lsx-health-plan' ), |
|
| 132 | + '12' => __('1', 'lsx-health-plan'), |
|
| 133 | + '6' => __('2', 'lsx-health-plan'), |
|
| 134 | + '4' => __('3', 'lsx-health-plan'), |
|
| 135 | + '3' => __('4', 'lsx-health-plan'), |
|
| 136 | + '2' => __('6', 'lsx-health-plan'), |
|
| 137 | 137 | ), |
| 138 | 138 | 'default' => '4', |
| 139 | 139 | ) |
@@ -142,12 +142,12 @@ discard block |
||
| 142 | 142 | array( |
| 143 | 143 | 'id' => 'workout_tab_content', |
| 144 | 144 | 'type' => 'select', |
| 145 | - 'name' => __( 'Grid Content', 'lsx-health-plan' ), |
|
| 146 | - 'description' => __( 'Choose to show the excerpt, full content or nothing. For the grid layout only', 'lsx-health-plan' ), |
|
| 145 | + 'name' => __('Grid Content', 'lsx-health-plan'), |
|
| 146 | + 'description' => __('Choose to show the excerpt, full content or nothing. For the grid layout only', 'lsx-health-plan'), |
|
| 147 | 147 | 'options' => array( |
| 148 | - '' => __( 'None', 'lsx-health-plan' ), |
|
| 149 | - 'excerpt' => __( 'Excerpt', 'lsx-health-plan' ), |
|
| 150 | - 'full' => __( 'Full Content', 'lsx-health-plan' ), |
|
| 148 | + '' => __('None', 'lsx-health-plan'), |
|
| 149 | + 'excerpt' => __('Excerpt', 'lsx-health-plan'), |
|
| 150 | + 'full' => __('Full Content', 'lsx-health-plan'), |
|
| 151 | 151 | ), |
| 152 | 152 | 'default' => '', |
| 153 | 153 | ) |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | $cmb->add_field( |
| 157 | 157 | array( |
| 158 | 158 | '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>', |
| 159 | - 'name' => __( 'Single Workout Slug', 'lsx-health-plan' ), |
|
| 159 | + 'name' => __('Single Workout Slug', 'lsx-health-plan'), |
|
| 160 | 160 | 'id' => 'endpoint_workout', |
| 161 | 161 | 'type' => 'input', |
| 162 | 162 | 'value' => '', |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | ); |
| 166 | 166 | $cmb->add_field( |
| 167 | 167 | array( |
| 168 | - 'name' => __( 'Workouts Archive Slug', 'lsx-health-plan' ), |
|
| 168 | + 'name' => __('Workouts Archive Slug', 'lsx-health-plan'), |
|
| 169 | 169 | 'id' => 'endpoint_workout_archive', |
| 170 | 170 | 'type' => 'input', |
| 171 | 171 | 'value' => '', |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | ); |
| 175 | 175 | $cmb->add_field( |
| 176 | 176 | array( |
| 177 | - 'name' => __( 'Warm Up Slug', 'lsx-health-plan' ), |
|
| 177 | + 'name' => __('Warm Up Slug', 'lsx-health-plan'), |
|
| 178 | 178 | 'id' => 'endpoint_warm_up', |
| 179 | 179 | 'type' => 'input', |
| 180 | 180 | 'value' => '', |
@@ -186,68 +186,68 @@ discard block |
||
| 186 | 186 | $cmb->add_field( |
| 187 | 187 | array( |
| 188 | 188 | 'before_row' => '<h4><b><u>Default Options</u></b></h4>', |
| 189 | - 'name' => __( 'Warm Up', 'lsx-health-plan' ), |
|
| 190 | - 'description' => __( 'Set a default warm up routine.', 'lsx-health-plan' ), |
|
| 189 | + 'name' => __('Warm Up', 'lsx-health-plan'), |
|
| 190 | + 'description' => __('Set a default warm up routine.', 'lsx-health-plan'), |
|
| 191 | 191 | 'limit' => 1, |
| 192 | 192 | 'id' => 'plan_warmup', |
| 193 | 193 | 'type' => 'post_search_ajax', |
| 194 | 194 | 'query_args' => array( |
| 195 | 195 | 'post_type' => 'post', |
| 196 | - 'post_status' => array( 'publish' ), |
|
| 196 | + 'post_status' => array('publish'), |
|
| 197 | 197 | 'posts_per_page' => -1, |
| 198 | 198 | ), |
| 199 | 199 | ) |
| 200 | 200 | ); |
| 201 | 201 | $cmb->add_field( |
| 202 | 202 | array( |
| 203 | - 'name' => __( 'Workout', 'lsx-health-plan' ), |
|
| 204 | - 'description' => __( 'Set a default workout routine.', 'lsx-health-plan' ), |
|
| 203 | + 'name' => __('Workout', 'lsx-health-plan'), |
|
| 204 | + 'description' => __('Set a default workout routine.', 'lsx-health-plan'), |
|
| 205 | 205 | 'limit' => 1, |
| 206 | 206 | 'id' => 'connected_workouts', |
| 207 | 207 | 'type' => 'post_search_ajax', |
| 208 | 208 | 'query_args' => array( |
| 209 | 209 | 'post_type' => 'workout', |
| 210 | - 'post_status' => array( 'publish' ), |
|
| 210 | + 'post_status' => array('publish'), |
|
| 211 | 211 | 'posts_per_page' => -1, |
| 212 | 212 | ), |
| 213 | 213 | ) |
| 214 | 214 | ); |
| 215 | - if ( function_exists( 'download_monitor' ) ) { |
|
| 215 | + if (function_exists('download_monitor')) { |
|
| 216 | 216 | $page_url = 'https://wordpress.org/plugins/download-monitor/'; |
| 217 | 217 | $plugin_name = 'Download Monitor'; |
| 218 | 218 | $description = sprintf( |
| 219 | 219 | /* translators: %s: The subscription info */ |
| 220 | - __( 'If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search' ), |
|
| 220 | + __('If you are using <a target="_blank" href="%1$s">%2$s</a> you can set a default download file for your meal here.', 'lsx-search'), |
|
| 221 | 221 | $page_url, |
| 222 | 222 | $plugin_name |
| 223 | 223 | ); |
| 224 | 224 | $cmb->add_field( |
| 225 | 225 | array( |
| 226 | - 'name' => __( 'Default Warm Up PDF', 'lsx-health-plan' ), |
|
| 226 | + 'name' => __('Default Warm Up PDF', 'lsx-health-plan'), |
|
| 227 | 227 | 'description' => $description, |
| 228 | 228 | 'id' => 'download_page', |
| 229 | 229 | 'type' => 'post_search_ajax', |
| 230 | 230 | 'limit' => 1, |
| 231 | 231 | 'query_args' => array( |
| 232 | - 'post_type' => array( 'dlm_download' ), |
|
| 233 | - 'post_status' => array( 'publish' ), |
|
| 232 | + 'post_type' => array('dlm_download'), |
|
| 233 | + 'post_status' => array('publish'), |
|
| 234 | 234 | 'posts_per_page' => -1, |
| 235 | 235 | ), |
| 236 | 236 | ) |
| 237 | 237 | ); |
| 238 | 238 | $cmb->add_field( |
| 239 | 239 | array( |
| 240 | - 'name' => __( 'Default Workout PDF', 'lsx-health-plan' ), |
|
| 240 | + 'name' => __('Default Workout PDF', 'lsx-health-plan'), |
|
| 241 | 241 | 'description' => $description, |
| 242 | 242 | 'id' => 'download_workout', |
| 243 | 243 | 'type' => 'post_search_ajax', |
| 244 | 244 | 'limit' => 1, |
| 245 | 245 | 'query_args' => array( |
| 246 | - 'post_type' => array( 'dlm_download' ), |
|
| 247 | - 'post_status' => array( 'publish' ), |
|
| 246 | + 'post_type' => array('dlm_download'), |
|
| 247 | + 'post_status' => array('publish'), |
|
| 248 | 248 | 'posts_per_page' => -1, |
| 249 | 249 | ), |
| 250 | - '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' ), |
|
| 250 | + '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'), |
|
| 251 | 251 | ) |
| 252 | 252 | ); |
| 253 | 253 | } |
@@ -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; |
@@ -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 | } |
@@ -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 --> |
@@ -5,30 +5,30 @@ discard block |
||
| 5 | 5 | * @package lsx-health-plan |
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | -global $group_name,$shortcode_args; |
|
| 9 | -$groups = get_post_meta( get_the_ID(), $group_name, true ); |
|
| 10 | -if ( is_singular( 'workout' ) ) { |
|
| 11 | - $groups = get_post_meta( get_queried_object_id(), $group_name, true ); |
|
| 8 | +global $group_name, $shortcode_args; |
|
| 9 | +$groups = get_post_meta(get_the_ID(), $group_name, true); |
|
| 10 | +if (is_singular('workout')) { |
|
| 11 | + $groups = get_post_meta(get_queried_object_id(), $group_name, true); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | -$link_setting = \lsx_health_plan\functions\get_option( 'workout_tab_link', 'single' ); |
|
| 15 | -$modal_content_setting = \lsx_health_plan\functions\get_option( 'workout_tab_modal_content', 'excerpt' ); |
|
| 16 | -$content_setting = \lsx_health_plan\functions\get_option( 'workout_tab_content', '' ); |
|
| 17 | -$column_setting = \lsx_health_plan\functions\get_option( 'workout_tab_columns', '4' ); |
|
| 14 | +$link_setting = \lsx_health_plan\functions\get_option('workout_tab_link', 'single'); |
|
| 15 | +$modal_content_setting = \lsx_health_plan\functions\get_option('workout_tab_modal_content', 'excerpt'); |
|
| 16 | +$content_setting = \lsx_health_plan\functions\get_option('workout_tab_content', ''); |
|
| 17 | +$column_setting = \lsx_health_plan\functions\get_option('workout_tab_columns', '4'); |
|
| 18 | 18 | |
| 19 | 19 | // Check for shortcode overrides. |
| 20 | -if ( null !== $shortcode_args ) { |
|
| 21 | - if ( isset( $shortcode_args['link'] ) ) { |
|
| 20 | +if (null !== $shortcode_args) { |
|
| 21 | + if (isset($shortcode_args['link'])) { |
|
| 22 | 22 | $link_setting = $shortcode_args['link']; |
| 23 | 23 | } |
| 24 | - if ( isset( $shortcode_args['description'] ) ) { |
|
| 24 | + if (isset($shortcode_args['description'])) { |
|
| 25 | 25 | $content_setting = $shortcode_args['description']; |
| 26 | 26 | } |
| 27 | - if ( isset( $shortcode_args['columns'] ) ) { |
|
| 27 | + if (isset($shortcode_args['columns'])) { |
|
| 28 | 28 | $column_setting = $shortcode_args['columns']; |
| 29 | - $column_setting = \lsx_health_plan\functions\column_class( $column_setting ); |
|
| 29 | + $column_setting = \lsx_health_plan\functions\column_class($column_setting); |
|
| 30 | 30 | } |
| 31 | - if ( isset( $shortcode_args['modal_content'] ) ) { |
|
| 31 | + if (isset($shortcode_args['modal_content'])) { |
|
| 32 | 32 | $modal_content_setting = $shortcode_args['modal_content']; |
| 33 | 33 | } |
| 34 | 34 | } |
@@ -39,64 +39,64 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | $counter = 1; |
| 41 | 41 | |
| 42 | -if ( ! empty( $groups ) ) { |
|
| 42 | +if ( ! empty($groups)) { |
|
| 43 | 43 | ?> |
| 44 | 44 | <div class="set-grid"> |
| 45 | 45 | <div class="workout-grid row"> |
| 46 | 46 | <?php |
| 47 | - foreach ( $groups as $group ) { |
|
| 47 | + foreach ($groups as $group) { |
|
| 48 | 48 | $connected_exercise = false; |
| 49 | - if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
| 49 | + if (isset($group['connected_exercises']) && '' !== $group['connected_exercises']) { |
|
| 50 | 50 | $connected_exercise = true; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | - if ( ! $connected_exercise ) { |
|
| 53 | + if ( ! $connected_exercise) { |
|
| 54 | 54 | $group['connected_exercises'] = ''; |
| 55 | 55 | } |
| 56 | 56 | $alt_title_value = $group['alt_title'] ?? ''; |
| 57 | - if ( ( $connected_exercise ) || ( ( ! $connected_exercise ) && $alt_title_value ) ) { |
|
| 57 | + if (($connected_exercise) || (( ! $connected_exercise) && $alt_title_value)) { |
|
| 58 | 58 | |
| 59 | 59 | $alt_title = ''; |
| 60 | - if ( isset( $group['alt_title'] ) && '' !== $group['alt_title'] ) { |
|
| 61 | - $alt_title = '<span class="alt-title">' . esc_html( $group['alt_title'] ) . '</span>'; |
|
| 60 | + if (isset($group['alt_title']) && '' !== $group['alt_title']) { |
|
| 61 | + $alt_title = '<span class="alt-title">' . esc_html($group['alt_title']) . '</span>'; |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | $alt_description = ''; |
| 65 | - if ( isset( $group['alt_description'] ) && '' !== $group['alt_description'] ) { |
|
| 66 | - $alt_description = '<span class="alt-description">' . esc_html( $group['alt_description'] ) . '</span>'; |
|
| 65 | + if (isset($group['alt_description']) && '' !== $group['alt_description']) { |
|
| 66 | + $alt_description = '<span class="alt-description">' . esc_html($group['alt_description']) . '</span>'; |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | $alt_image = ''; |
| 70 | - if ( isset( $group['exercise_alt_thumbnail'] ) && '' !== $group['exercise_alt_thumbnail'] ) { |
|
| 70 | + if (isset($group['exercise_alt_thumbnail']) && '' !== $group['exercise_alt_thumbnail']) { |
|
| 71 | 71 | $alt_image = $group['exercise_alt_thumbnail']; |
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | $reps = ''; |
| 75 | - if ( isset( $group['reps'] ) && '' !== $group['reps'] ) { |
|
| 76 | - $reps = '<span class="reps">' . esc_html( $group['reps'] ) . '</span>'; |
|
| 75 | + if (isset($group['reps']) && '' !== $group['reps']) { |
|
| 76 | + $reps = '<span class="reps">' . esc_html($group['reps']) . '</span>'; |
|
| 77 | 77 | } |
| 78 | 78 | $class_excerpt = 'no-excerpt'; |
| 79 | - if ( 'excerpt' === $content_setting ) { |
|
| 79 | + if ('excerpt' === $content_setting) { |
|
| 80 | 80 | $class_excerpt = 'has-excerpt'; |
| 81 | 81 | } |
| 82 | 82 | // Setup our link and content. |
| 83 | - switch ( $link_setting ) { |
|
| 83 | + switch ($link_setting) { |
|
| 84 | 84 | case 'single': |
| 85 | - $link_html = '<a href="' . get_permalink( $group['connected_exercises'] ) . '">'; |
|
| 85 | + $link_html = '<a href="' . get_permalink($group['connected_exercises']) . '">'; |
|
| 86 | 86 | $link_close = '</a>'; |
| 87 | 87 | break; |
| 88 | 88 | |
| 89 | 89 | case 'modal': |
| 90 | - if ( ( '' !== $alt_title ) || ( '' !== $alt_description ) || ( '' !== $alt_image ) ) { |
|
| 90 | + if (('' !== $alt_title) || ('' !== $alt_description) || ('' !== $alt_image)) { |
|
| 91 | 91 | $link_html = '<a class="alt-modal" data-toggle="modal" href="#workout-alt-exercise-modal-' . $group['connected_exercises'] . '">'; |
| 92 | 92 | $link_close = '</a>'; |
| 93 | 93 | // We call the button to register the alt modal, but we do not output it. |
| 94 | - lsx_health_plan_workout_exercise_alt_button( $group['connected_exercises'], $group, false, $modal_args, $alt_title, $alt_description, $alt_image ); |
|
| 94 | + lsx_health_plan_workout_exercise_alt_button($group['connected_exercises'], $group, false, $modal_args, $alt_title, $alt_description, $alt_image); |
|
| 95 | 95 | } else { |
| 96 | 96 | $link_html = '<a data-toggle="modal" href="#workout-exercise-modal-' . $group['connected_exercises'] . '">'; |
| 97 | 97 | $link_close = '</a>'; |
| 98 | 98 | // We call the button to register the modal, but we do not output it. |
| 99 | - lsx_health_plan_workout_exercise_button( $group['connected_exercises'], $group, false, $modal_args ); |
|
| 99 | + lsx_health_plan_workout_exercise_button($group['connected_exercises'], $group, false, $modal_args); |
|
| 100 | 100 | } |
| 101 | 101 | |
| 102 | 102 | break; |
@@ -108,59 +108,59 @@ discard block |
||
| 108 | 108 | break; |
| 109 | 109 | } |
| 110 | 110 | ?> |
| 111 | - <div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_setting ); ?>"> |
|
| 111 | + <div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr($column_setting); ?>"> |
|
| 112 | 112 | <article class="lsx-slot box-shadow"> |
| 113 | 113 | <div class="exercise-feature-img"> |
| 114 | - <?php echo wp_kses_post( $link_html ); ?> |
|
| 114 | + <?php echo wp_kses_post($link_html); ?> |
|
| 115 | 115 | <?php |
| 116 | 116 | $thumbnail_args = array( |
| 117 | 117 | 'class' => 'aligncenter', |
| 118 | 118 | ); |
| 119 | - $featured_image = get_the_post_thumbnail( $group['connected_exercises'], 'medium', $thumbnail_args ); |
|
| 120 | - if ( $alt_image ) { |
|
| 119 | + $featured_image = get_the_post_thumbnail($group['connected_exercises'], 'medium', $thumbnail_args); |
|
| 120 | + if ($alt_image) { |
|
| 121 | 121 | $featured_image = '<img alt="thumbnail" loading="lazy" class="aligncenter wp-post-image" src="' . $alt_image . '">'; |
| 122 | 122 | } |
| 123 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
| 124 | - echo wp_kses_post( $featured_image ); |
|
| 123 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
| 124 | + echo wp_kses_post($featured_image); |
|
| 125 | 125 | } else { |
| 126 | 126 | ?> |
| 127 | - <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __DIR__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
| 127 | + <img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__DIR__) . '../assets/images/placeholder.jpg'); ?>"> |
|
| 128 | 128 | <?php |
| 129 | 129 | } |
| 130 | 130 | ?> |
| 131 | - <?php echo wp_kses_post( $link_close ); ?> |
|
| 131 | + <?php echo wp_kses_post($link_close); ?> |
|
| 132 | 132 | </div> |
| 133 | 133 | <div class="content-box exercise-content-box white-bg"> |
| 134 | - <h3 class="content-box-title <?php echo esc_html( $class_excerpt ); ?>"> |
|
| 135 | - <?php echo wp_kses_post( $link_html ); ?> |
|
| 134 | + <h3 class="content-box-title <?php echo esc_html($class_excerpt); ?>"> |
|
| 135 | + <?php echo wp_kses_post($link_html); ?> |
|
| 136 | 136 | <?php |
| 137 | - $exercise_title = lsx_health_plan_exercise_title( '', '', false, $group['connected_exercises'] ); |
|
| 137 | + $exercise_title = lsx_health_plan_exercise_title('', '', false, $group['connected_exercises']); |
|
| 138 | 138 | |
| 139 | - if ( '' !== $alt_title ) { |
|
| 139 | + if ('' !== $alt_title) { |
|
| 140 | 140 | $exercise_title = '<span class="exercise-counter">' . $counter . '.</span>' . $alt_title; |
| 141 | 141 | } else { |
| 142 | 142 | $exercise_title = '<span class="exercise-counter">' . $counter . '.</span>' . $exercise_title; |
| 143 | 143 | } |
| 144 | - echo wp_kses_post( $exercise_title ); |
|
| 144 | + echo wp_kses_post($exercise_title); |
|
| 145 | 145 | ?> |
| 146 | 146 | </a> |
| 147 | - <?php echo wp_kses_post( $link_close ); ?> |
|
| 147 | + <?php echo wp_kses_post($link_close); ?> |
|
| 148 | 148 | </h3> |
| 149 | 149 | <?php |
| 150 | - if ( '' !== $content_setting ) { |
|
| 150 | + if ('' !== $content_setting) { |
|
| 151 | 151 | ?> |
| 152 | 152 | <p class="lsx-exercises-excerpt"> |
| 153 | 153 | <?php |
| 154 | - if ( 'excerpt' === $content_setting ) { |
|
| 155 | - $excerpt = \lsx_health_plan\functions\hp_excerpt( $group['connected_exercises'] ); |
|
| 154 | + if ('excerpt' === $content_setting) { |
|
| 155 | + $excerpt = \lsx_health_plan\functions\hp_excerpt($group['connected_exercises']); |
|
| 156 | 156 | |
| 157 | - if ( '' !== $alt_description ) { |
|
| 157 | + if ('' !== $alt_description) { |
|
| 158 | 158 | $excerpt = $alt_description; |
| 159 | 159 | } |
| 160 | - echo wp_kses_post( $excerpt ); |
|
| 160 | + echo wp_kses_post($excerpt); |
|
| 161 | 161 | } |
| 162 | - if ( 'full' === $content_setting ) { |
|
| 163 | - echo wp_kses_post( get_the_content( null, null, $group['connected_exercises'] ) ); |
|
| 162 | + if ('full' === $content_setting) { |
|
| 163 | + echo wp_kses_post(get_the_content(null, null, $group['connected_exercises'])); |
|
| 164 | 164 | } |
| 165 | 165 | ?> |
| 166 | 166 | </p> |
@@ -169,28 +169,28 @@ discard block |
||
| 169 | 169 | ?> |
| 170 | 170 | <?php |
| 171 | 171 | $repsclass = ''; |
| 172 | - if ( '' !== $reps ) { |
|
| 172 | + if ('' !== $reps) { |
|
| 173 | 173 | $repsclass = 'have-reps'; |
| 174 | 174 | } |
| 175 | 175 | ?> |
| 176 | - <div class="reps-container <?php echo esc_html( $repsclass ); ?>"> |
|
| 176 | + <div class="reps-container <?php echo esc_html($repsclass); ?>"> |
|
| 177 | 177 | <?php |
| 178 | - if ( '' !== $reps ) { |
|
| 178 | + if ('' !== $reps) { |
|
| 179 | 179 | ?> |
| 180 | - <?php echo wp_kses_post( $reps ); ?> |
|
| 180 | + <?php echo wp_kses_post($reps); ?> |
|
| 181 | 181 | <?php |
| 182 | 182 | } |
| 183 | 183 | ?> |
| 184 | - <?php if ( ( '' !== $link_html ) && ( $connected_exercise ) ) { ?> |
|
| 185 | - <?php echo wp_kses_post( str_replace( '<a', '<a class="btn-simple" ', $link_html ) ); ?> |
|
| 186 | - <?php echo wp_kses_post( $link_close ); ?> |
|
| 184 | + <?php if (('' !== $link_html) && ($connected_exercise)) { ?> |
|
| 185 | + <?php echo wp_kses_post(str_replace('<a', '<a class="btn-simple" ', $link_html)); ?> |
|
| 186 | + <?php echo wp_kses_post($link_close); ?> |
|
| 187 | 187 | <?php } ?> |
| 188 | 188 | </div> |
| 189 | 189 | </div> |
| 190 | 190 | </article> |
| 191 | 191 | </div> |
| 192 | 192 | <?php |
| 193 | - $counter ++; |
|
| 193 | + $counter++; |
|
| 194 | 194 | } |
| 195 | 195 | } |
| 196 | 196 | ?> |
@@ -16,59 +16,59 @@ discard block |
||
| 16 | 16 | ); |
| 17 | 17 | |
| 18 | 18 | $plan_id = get_the_ID(); |
| 19 | -$has_sections = \lsx_health_plan\functions\plan\has_sections( $plan_id ); |
|
| 19 | +$has_sections = \lsx_health_plan\functions\plan\has_sections($plan_id); |
|
| 20 | 20 | $restricted = false; |
| 21 | -$is_section = get_query_var( 'section', false ); |
|
| 21 | +$is_section = get_query_var('section', false); |
|
| 22 | 22 | |
| 23 | 23 | // Getting translated endpoint. |
| 24 | -$plan = \lsx_health_plan\functions\get_option( 'endpoint_plan', 'plan' ); |
|
| 24 | +$plan = \lsx_health_plan\functions\get_option('endpoint_plan', 'plan'); |
|
| 25 | 25 | |
| 26 | -$connected_members = get_post_meta( get_the_ID(), ( $plan . '_connected_team_member' ), true ); |
|
| 27 | -$connected_articles = get_post_meta( get_the_ID(), ( $plan . '_connected_articles' ), true ); |
|
| 28 | -$small_description = get_post_meta( get_the_ID(), ( $plan . '_short_description' ), true ); |
|
| 26 | +$connected_members = get_post_meta(get_the_ID(), ($plan . '_connected_team_member'), true); |
|
| 27 | +$connected_articles = get_post_meta(get_the_ID(), ($plan . '_connected_articles'), true); |
|
| 28 | +$small_description = get_post_meta(get_the_ID(), ($plan . '_short_description'), true); |
|
| 29 | 29 | |
| 30 | -if ( ! empty( $has_sections ) && empty( $is_section ) ) { |
|
| 30 | +if ( ! empty($has_sections) && empty($is_section)) { |
|
| 31 | 31 | $plan_type_class = 'parent-plan'; |
| 32 | 32 | } |
| 33 | -if ( ! empty( $has_sections ) && ! empty( $is_section ) ) { |
|
| 33 | +if ( ! empty($has_sections) && ! empty($is_section)) { |
|
| 34 | 34 | $plan_type_class = 'child-plan'; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | // Get the plan restrictions. |
| 38 | -if ( function_exists( 'wc_memberships_is_post_content_restricted' ) && wc_memberships_is_post_content_restricted( get_the_ID() ) ) { |
|
| 39 | - $restricted = ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() ); |
|
| 38 | +if (function_exists('wc_memberships_is_post_content_restricted') && wc_memberships_is_post_content_restricted(get_the_ID())) { |
|
| 39 | + $restricted = ! current_user_can('wc_memberships_view_restricted_post_content', get_the_ID()); |
|
| 40 | 40 | } |
| 41 | -if ( false === $restricted ) { |
|
| 42 | - $round_progress = round( \lsx_health_plan\functions\get_progress( get_the_ID() ), 0 ); |
|
| 41 | +if (false === $restricted) { |
|
| 42 | + $round_progress = round(\lsx_health_plan\functions\get_progress(get_the_ID()), 0); |
|
| 43 | 43 | } |
| 44 | 44 | ?> |
| 45 | 45 | |
| 46 | -<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
| 46 | +<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
| 47 | 47 | |
| 48 | 48 | <?php lsx_content_before(); ?> |
| 49 | 49 | |
| 50 | - <main id="main" class="site-main <?php echo esc_html( $plan_type_class ); ?>" role="main"> |
|
| 50 | + <main id="main" class="site-main <?php echo esc_html($plan_type_class); ?>" role="main"> |
|
| 51 | 51 | |
| 52 | 52 | <?php lsx_content_top(); ?> |
| 53 | 53 | |
| 54 | 54 | <div class="post-wrapper"> |
| 55 | - <?php if ( ! empty( $has_sections ) && empty( $is_section ) ) { ?> |
|
| 55 | + <?php if ( ! empty($has_sections) && empty($is_section)) { ?> |
|
| 56 | 56 | <div class="plan-content"> |
| 57 | 57 | <?php the_content(); ?> |
| 58 | 58 | </div> |
| 59 | 59 | <?php } ?> |
| 60 | 60 | |
| 61 | 61 | <?php |
| 62 | - if ( ! empty( $has_sections ) ) { |
|
| 63 | - if ( false === $is_section ) { |
|
| 62 | + if ( ! empty($has_sections)) { |
|
| 63 | + if (false === $is_section) { |
|
| 64 | 64 | ?> |
| 65 | 65 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
| 66 | 66 | <div class="entry-content"> |
| 67 | 67 | <div class="single-plan-inner main-plan-content"> |
| 68 | 68 | <div class="single-plan-section-title title-lined"> |
| 69 | - <?php lsx_get_svg_icon( 'my-plan.svg' ); ?> |
|
| 70 | - <h2><?php echo esc_html_e( 'Your Plan', 'lsx-health-plan' ); ?></h2> |
|
| 71 | - <?php if ( class_exists( 'LSX_Sharing' ) ) { |
|
| 69 | + <?php lsx_get_svg_icon('my-plan.svg'); ?> |
|
| 70 | + <h2><?php echo esc_html_e('Your Plan', 'lsx-health-plan'); ?></h2> |
|
| 71 | + <?php if (class_exists('LSX_Sharing')) { |
|
| 72 | 72 | lsx_content_sharing(); |
| 73 | 73 | } ?> |
| 74 | 74 | </div> |
@@ -76,36 +76,36 @@ discard block |
||
| 76 | 76 | <div class="set-box set content-box entry-content"> |
| 77 | 77 | <div class="plan-top-content"> |
| 78 | 78 | <?php |
| 79 | - if ( $connected_members ) { |
|
| 80 | - echo wp_kses_post( lsx_hp_member_connected( $connected_members, $plan ) ); |
|
| 79 | + if ($connected_members) { |
|
| 80 | + echo wp_kses_post(lsx_hp_member_connected($connected_members, $plan)); |
|
| 81 | 81 | } |
| 82 | - if ( false === $restricted ) { |
|
| 83 | - echo wp_kses_post( '<span class="progress"><progress class="bar" value="' . $round_progress . '" max="100"> ' . $round_progress . '% </progress><span>' . $round_progress . '%</span></span>' ); |
|
| 82 | + if (false === $restricted) { |
|
| 83 | + echo wp_kses_post('<span class="progress"><progress class="bar" value="' . $round_progress . '" max="100"> ' . $round_progress . '% </progress><span>' . $round_progress . '%</span></span>'); |
|
| 84 | 84 | } |
| 85 | - if ( $small_description ) { |
|
| 85 | + if ($small_description) { |
|
| 86 | 86 | ?> |
| 87 | 87 | <div class="the-content"> |
| 88 | - <span><?php echo esc_html( $small_description ); ?></span> |
|
| 88 | + <span><?php echo esc_html($small_description); ?></span> |
|
| 89 | 89 | </div> |
| 90 | 90 | <?php |
| 91 | 91 | } |
| 92 | 92 | ?> |
| 93 | 93 | </div> |
| 94 | 94 | <?php |
| 95 | - if ( lsx_health_plan_has_tips() ) { |
|
| 96 | - echo wp_kses_post( do_shortcode( '[lsx_health_plan_featured_tips_block]' ) ); |
|
| 95 | + if (lsx_health_plan_has_tips()) { |
|
| 96 | + echo wp_kses_post(do_shortcode('[lsx_health_plan_featured_tips_block]')); |
|
| 97 | 97 | } ?> |
| 98 | 98 | </div> |
| 99 | 99 | <div class="the-plan-content"> |
| 100 | 100 | <?php |
| 101 | - echo do_shortcode( '[lsx_health_plan_day_plan_block week_view="true" show_downloads="true" plan="' . get_the_ID() . '"]' ); |
|
| 101 | + echo do_shortcode('[lsx_health_plan_day_plan_block week_view="true" show_downloads="true" plan="' . get_the_ID() . '"]'); |
|
| 102 | 102 | |
| 103 | 103 | ?> |
| 104 | 104 | <div class="row status-plan-buttons main-plan-btn"> |
| 105 | 105 | <?php |
| 106 | - if ( function_exists( 'wc_get_page_id' ) ) { |
|
| 106 | + if (function_exists('wc_get_page_id')) { |
|
| 107 | 107 | ?> |
| 108 | - <a class="btn border-btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'My Plans', 'lsx-health-plan' ); ?></a> |
|
| 108 | + <a class="btn border-btn" href="<?php echo wp_kses_post(get_permalink(wc_get_page_id('myaccount'))); ?>"><?php esc_html_e('My Plans', 'lsx-health-plan'); ?></a> |
|
| 109 | 109 | <?php |
| 110 | 110 | } |
| 111 | 111 | ?> |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | |
| 128 | 128 | <?php |
| 129 | 129 | // Show the buttons on the single plan tabs. |
| 130 | - if ( ! empty( $has_sections ) && false !== $is_section ) { |
|
| 130 | + if ( ! empty($has_sections) && false !== $is_section) { |
|
| 131 | 131 | ?> |
| 132 | 132 | <div class="row status-plan-buttons"> |
| 133 | 133 | <?php lsx_health_plan_day_button(); ?> |
@@ -139,8 +139,8 @@ discard block |
||
| 139 | 139 | <?php lsx_content_bottom(); ?> |
| 140 | 140 | |
| 141 | 141 | <?php |
| 142 | - if ( ! empty( $connected_articles ) ) { |
|
| 143 | - lsx_hp_single_related( $connected_articles, __( 'Latest articles', 'lsx-health-plan' ) ); |
|
| 142 | + if ( ! empty($connected_articles)) { |
|
| 143 | + lsx_hp_single_related($connected_articles, __('Latest articles', 'lsx-health-plan')); |
|
| 144 | 144 | } |
| 145 | 145 | ?> |
| 146 | 146 | |
@@ -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, |
@@ -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 | ) |
@@ -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', |