@@ -31,25 +31,25 @@ discard block |
||
| 31 | 31 | */ |
| 32 | 32 | public function __construct() { |
| 33 | 33 | |
| 34 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
| 34 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
| 35 | 35 | // Post Type and Taxonomies. |
| 36 | - add_action( 'init', array( $this, 'register_post_type' ) ); |
|
| 37 | - add_action( 'init', array( $this, 'exercise_type_taxonomy_setup' ) ); |
|
| 38 | - add_action( 'init', array( $this, 'equipment_taxonomy_setup' ) ); |
|
| 39 | - add_action( 'init', array( $this, 'muscle_group_taxonomy_setup' ) ); |
|
| 40 | - add_action( 'admin_menu', array( $this, 'register_menus' ) ); |
|
| 36 | + add_action('init', array($this, 'register_post_type')); |
|
| 37 | + add_action('init', array($this, 'exercise_type_taxonomy_setup')); |
|
| 38 | + add_action('init', array($this, 'equipment_taxonomy_setup')); |
|
| 39 | + add_action('init', array($this, 'muscle_group_taxonomy_setup')); |
|
| 40 | + add_action('admin_menu', array($this, 'register_menus')); |
|
| 41 | 41 | |
| 42 | 42 | // Custom Fields. |
| 43 | - add_action( 'cmb2_admin_init', array( $this, 'exercise_details' ), 8 ); |
|
| 44 | - add_action( 'cmb2_admin_init', array( $this, 'gallery_metabox' ), 9 ); |
|
| 45 | - add_filter( 'lsx_health_plan_connections', array( $this, 'enable_connections' ), 10, 1 ); |
|
| 43 | + add_action('cmb2_admin_init', array($this, 'exercise_details'), 8); |
|
| 44 | + add_action('cmb2_admin_init', array($this, 'gallery_metabox'), 9); |
|
| 45 | + add_filter('lsx_health_plan_connections', array($this, 'enable_connections'), 10, 1); |
|
| 46 | 46 | |
| 47 | 47 | // Template Redirects. |
| 48 | - add_filter( 'lsx_health_plan_archive_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 49 | - add_filter( 'lsx_health_plan_single_template', array( $this, 'enable_post_type' ), 10, 1 ); |
|
| 48 | + add_filter('lsx_health_plan_archive_template', array($this, 'enable_post_type'), 10, 1); |
|
| 49 | + add_filter('lsx_health_plan_single_template', array($this, 'enable_post_type'), 10, 1); |
|
| 50 | 50 | |
| 51 | 51 | //Breadcrumbs |
| 52 | - add_filter( 'woocommerce_get_breadcrumb', array( $this, 'exercise_breadcrumb_filter' ), 30, 1 ); |
|
| 52 | + add_filter('woocommerce_get_breadcrumb', array($this, 'exercise_breadcrumb_filter'), 30, 1); |
|
| 53 | 53 | |
| 54 | 54 | } |
| 55 | 55 | |
@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | */ |
| 66 | 66 | public static function get_instance() { |
| 67 | 67 | // If the single instance hasn't been set, set it now. |
| 68 | - if ( null === self::$instance ) { |
|
| 68 | + if (null === self::$instance) { |
|
| 69 | 69 | self::$instance = new self(); |
| 70 | 70 | } |
| 71 | 71 | return self::$instance; |
@@ -75,21 +75,21 @@ discard block |
||
| 75 | 75 | */ |
| 76 | 76 | public function register_post_type() { |
| 77 | 77 | $labels = array( |
| 78 | - 'name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
| 79 | - 'singular_name' => esc_html__( 'Exercise', 'lsx-health-plan' ), |
|
| 80 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
| 81 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 82 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 83 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
| 84 | - 'all_items' => esc_html__( 'All Exercises', 'lsx-health-plan' ), |
|
| 85 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
| 86 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 87 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
| 88 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
| 78 | + 'name' => esc_html__('Exercises', 'lsx-health-plan'), |
|
| 79 | + 'singular_name' => esc_html__('Exercise', 'lsx-health-plan'), |
|
| 80 | + 'add_new' => esc_html_x('Add New', 'post type general name', 'lsx-health-plan'), |
|
| 81 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 82 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 83 | + 'new_item' => esc_html__('New', 'lsx-health-plan'), |
|
| 84 | + 'all_items' => esc_html__('All Exercises', 'lsx-health-plan'), |
|
| 85 | + 'view_item' => esc_html__('View', 'lsx-health-plan'), |
|
| 86 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 87 | + 'not_found' => esc_html__('None found', 'lsx-health-plan'), |
|
| 88 | + 'not_found_in_trash' => esc_html__('None found in Trash', 'lsx-health-plan'), |
|
| 89 | 89 | 'parent_item_colon' => '', |
| 90 | - 'menu_name' => esc_html__( 'Exercises', 'lsx-health-plan' ), |
|
| 90 | + 'menu_name' => esc_html__('Exercises', 'lsx-health-plan'), |
|
| 91 | 91 | ); |
| 92 | - $args = array( |
|
| 92 | + $args = array( |
|
| 93 | 93 | 'labels' => $labels, |
| 94 | 94 | 'public' => true, |
| 95 | 95 | 'publicly_queryable' => true, |
@@ -99,10 +99,10 @@ discard block |
||
| 99 | 99 | 'menu_icon' => 'dashicons-universal-access', |
| 100 | 100 | 'query_var' => true, |
| 101 | 101 | 'rewrite' => array( |
| 102 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ), |
|
| 102 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_single', 'exercise'), |
|
| 103 | 103 | ), |
| 104 | 104 | 'capability_type' => 'page', |
| 105 | - 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercises' ), |
|
| 105 | + 'has_archive' => \lsx_health_plan\functions\get_option('endpoint_exercise_archive', 'exercises'), |
|
| 106 | 106 | 'hierarchical' => false, |
| 107 | 107 | 'menu_position' => null, |
| 108 | 108 | 'supports' => array( |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | 'custom-fields', |
| 114 | 114 | ), |
| 115 | 115 | ); |
| 116 | - register_post_type( 'exercise', $args ); |
|
| 116 | + register_post_type('exercise', $args); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -123,17 +123,17 @@ discard block |
||
| 123 | 123 | */ |
| 124 | 124 | public function exercise_type_taxonomy_setup() { |
| 125 | 125 | $labels = array( |
| 126 | - 'name' => esc_html_x( 'Exercise Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 127 | - 'singular_name' => esc_html_x( 'Exercise Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 128 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 129 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 130 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 131 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 132 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 133 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 134 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 135 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 136 | - 'menu_name' => esc_html__( 'Exercise Types', 'lsx-health-plan' ), |
|
| 126 | + 'name' => esc_html_x('Exercise Type', 'taxonomy general name', 'lsx-health-plan'), |
|
| 127 | + 'singular_name' => esc_html_x('Exercise Type', 'taxonomy singular name', 'lsx-health-plan'), |
|
| 128 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 129 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
| 130 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
| 131 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
| 132 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 133 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
| 134 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 135 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
| 136 | + 'menu_name' => esc_html__('Exercise Types', 'lsx-health-plan'), |
|
| 137 | 137 | ); |
| 138 | 138 | |
| 139 | 139 | $args = array( |
@@ -143,12 +143,12 @@ discard block |
||
| 143 | 143 | 'show_admin_column' => true, |
| 144 | 144 | 'query_var' => true, |
| 145 | 145 | 'rewrite' => array( |
| 146 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_type', 'exercise-type' ), |
|
| 146 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_type', 'exercise-type'), |
|
| 147 | 147 | ), |
| 148 | 148 | 'show_in_rest' => true, |
| 149 | 149 | ); |
| 150 | 150 | |
| 151 | - register_taxonomy( 'exercise-type', array( 'exercise' ), $args ); |
|
| 151 | + register_taxonomy('exercise-type', array('exercise'), $args); |
|
| 152 | 152 | } |
| 153 | 153 | |
| 154 | 154 | /** |
@@ -158,17 +158,17 @@ discard block |
||
| 158 | 158 | */ |
| 159 | 159 | public function equipment_taxonomy_setup() { |
| 160 | 160 | $labels = array( |
| 161 | - 'name' => esc_html_x( 'Equipment', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 162 | - 'singular_name' => esc_html_x( 'Equipment', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 163 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 164 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 165 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 166 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 167 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 168 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 169 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 170 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 171 | - 'menu_name' => esc_html__( 'Equipment', 'lsx-health-plan' ), |
|
| 161 | + 'name' => esc_html_x('Equipment', 'taxonomy general name', 'lsx-health-plan'), |
|
| 162 | + 'singular_name' => esc_html_x('Equipment', 'taxonomy singular name', 'lsx-health-plan'), |
|
| 163 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 164 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
| 165 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
| 166 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
| 167 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 168 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
| 169 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 170 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
| 171 | + 'menu_name' => esc_html__('Equipment', 'lsx-health-plan'), |
|
| 172 | 172 | ); |
| 173 | 173 | |
| 174 | 174 | $args = array( |
@@ -178,12 +178,12 @@ discard block |
||
| 178 | 178 | 'show_admin_column' => true, |
| 179 | 179 | 'query_var' => true, |
| 180 | 180 | 'rewrite' => array( |
| 181 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_equipment', 'equipment' ), |
|
| 181 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_equipment', 'equipment'), |
|
| 182 | 182 | ), |
| 183 | 183 | 'show_in_rest' => true, |
| 184 | 184 | ); |
| 185 | 185 | |
| 186 | - register_taxonomy( 'equipment', array( 'exercise' ), $args ); |
|
| 186 | + register_taxonomy('equipment', array('exercise'), $args); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | /** |
@@ -193,17 +193,17 @@ discard block |
||
| 193 | 193 | */ |
| 194 | 194 | public function muscle_group_taxonomy_setup() { |
| 195 | 195 | $labels = array( |
| 196 | - 'name' => esc_html_x( 'Muscle Groups', 'taxonomy general name', 'lsx-health-plan' ), |
|
| 197 | - 'singular_name' => esc_html_x( 'Muscle Group', 'taxonomy singular name', 'lsx-health-plan' ), |
|
| 198 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
| 199 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
| 200 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
| 201 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
| 202 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
| 203 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
| 204 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
| 205 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
| 206 | - 'menu_name' => esc_html__( 'Muscle Groups', 'lsx-health-plan' ), |
|
| 196 | + 'name' => esc_html_x('Muscle Groups', 'taxonomy general name', 'lsx-health-plan'), |
|
| 197 | + 'singular_name' => esc_html_x('Muscle Group', 'taxonomy singular name', 'lsx-health-plan'), |
|
| 198 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
| 199 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
| 200 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
| 201 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
| 202 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
| 203 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
| 204 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
| 205 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
| 206 | + 'menu_name' => esc_html__('Muscle Groups', 'lsx-health-plan'), |
|
| 207 | 207 | ); |
| 208 | 208 | |
| 209 | 209 | $args = array( |
@@ -213,12 +213,12 @@ discard block |
||
| 213 | 213 | 'show_admin_column' => true, |
| 214 | 214 | 'query_var' => true, |
| 215 | 215 | 'rewrite' => array( |
| 216 | - 'slug' => \lsx_health_plan\functions\get_option( 'endpoint_exercise_muscle_group', 'muscle-group' ), |
|
| 216 | + 'slug' => \lsx_health_plan\functions\get_option('endpoint_exercise_muscle_group', 'muscle-group'), |
|
| 217 | 217 | ), |
| 218 | 218 | 'show_in_rest' => true, |
| 219 | 219 | ); |
| 220 | 220 | |
| 221 | - register_taxonomy( 'muscle-group', array( 'exercise' ), $args ); |
|
| 221 | + register_taxonomy('muscle-group', array('exercise'), $args); |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | /** |
@@ -227,10 +227,10 @@ discard block |
||
| 227 | 227 | * @return void |
| 228 | 228 | */ |
| 229 | 229 | public function register_menus() { |
| 230 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercises', 'lsx-health-plan' ), esc_html__( 'Exercises', 'lsx-health-plan' ), 'edit_posts', 'edit.php?post_type=exercise' ); |
|
| 231 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Exercise Types', 'lsx-health-plan' ), esc_html__( 'Exercise Types', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise' ); |
|
| 232 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Equipment', 'lsx-health-plan' ), esc_html__( 'Equipment', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise' ); |
|
| 233 | - add_submenu_page( 'edit.php?post_type=workout', esc_html__( 'Muscle Groups', 'lsx-health-plan' ), esc_html__( 'Muscle Groups', 'lsx-health-plan' ), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise' ); |
|
| 230 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Exercises', 'lsx-health-plan'), esc_html__('Exercises', 'lsx-health-plan'), 'edit_posts', 'edit.php?post_type=exercise'); |
|
| 231 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Exercise Types', 'lsx-health-plan'), esc_html__('Exercise Types', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=exercise-type&post_type=exercise'); |
|
| 232 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Equipment', 'lsx-health-plan'), esc_html__('Equipment', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=equipment&post_type=exercise'); |
|
| 233 | + add_submenu_page('edit.php?post_type=workout', esc_html__('Muscle Groups', 'lsx-health-plan'), esc_html__('Muscle Groups', 'lsx-health-plan'), 'edit_posts', 'edit-tags.php?taxonomy=muscle-group&post_type=exercise'); |
|
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | /** |
@@ -239,7 +239,7 @@ discard block |
||
| 239 | 239 | * @param array $post_types |
| 240 | 240 | * @return array |
| 241 | 241 | */ |
| 242 | - public function enable_post_type( $post_types = array() ) { |
|
| 242 | + public function enable_post_type($post_types = array()) { |
|
| 243 | 243 | $post_types[] = $this->slug; |
| 244 | 244 | return $post_types; |
| 245 | 245 | } |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | * @param array $connections |
| 251 | 251 | * @return void |
| 252 | 252 | */ |
| 253 | - public function enable_connections( $connections = array() ) { |
|
| 253 | + public function enable_connections($connections = array()) { |
|
| 254 | 254 | $connections['exercise']['connected_workouts'] = 'connected_exercises'; |
| 255 | 255 | $connections['workout']['connected_exercises'] = 'connected_workouts'; |
| 256 | 256 | return $connections; |
@@ -263,8 +263,8 @@ discard block |
||
| 263 | 263 | $cmb = new_cmb2_box( |
| 264 | 264 | array( |
| 265 | 265 | 'id' => $this->slug . '_gallery_details_metabox', |
| 266 | - 'title' => __( 'Exercise Gallery', 'lsx-health-plan' ), |
|
| 267 | - 'object_types' => array( $this->slug ), |
|
| 266 | + 'title' => __('Exercise Gallery', 'lsx-health-plan'), |
|
| 267 | + 'object_types' => array($this->slug), |
|
| 268 | 268 | 'context' => 'normal', |
| 269 | 269 | 'priority' => 'low', |
| 270 | 270 | 'show_names' => true, |
@@ -273,12 +273,12 @@ discard block |
||
| 273 | 273 | |
| 274 | 274 | $cmb->add_field( |
| 275 | 275 | array( |
| 276 | - 'name' => __( 'Layout', 'lsx-health-plan' ), |
|
| 276 | + 'name' => __('Layout', 'lsx-health-plan'), |
|
| 277 | 277 | 'id' => $this->slug . '_gallery_layout', |
| 278 | 278 | 'type' => 'radio', |
| 279 | 279 | 'options' => array( |
| 280 | - 'slider' => __( 'Slider', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
| 281 | - 'grid' => __( 'Grid', 'lsx-health-plan' ), |
|
| 280 | + 'slider' => __('Slider', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number |
|
| 281 | + 'grid' => __('Grid', 'lsx-health-plan'), |
|
| 282 | 282 | ), |
| 283 | 283 | 'default' => 'grid', |
| 284 | 284 | ) |
@@ -286,12 +286,12 @@ discard block |
||
| 286 | 286 | |
| 287 | 287 | $cmb->add_field( |
| 288 | 288 | array( |
| 289 | - 'name' => __( 'Grid Columns', 'lsx-health-plan' ), |
|
| 289 | + 'name' => __('Grid Columns', 'lsx-health-plan'), |
|
| 290 | 290 | 'id' => $this->slug . '_gallery_columns', |
| 291 | 291 | 'type' => 'select', |
| 292 | 292 | 'options' => array( |
| 293 | - '3' => __( '2 Columns', 'lsx-health-plan' ), |
|
| 294 | - '4' => __( '3 Columns', 'lsx-health-plan' ), |
|
| 293 | + '3' => __('2 Columns', 'lsx-health-plan'), |
|
| 294 | + '4' => __('3 Columns', 'lsx-health-plan'), |
|
| 295 | 295 | ), |
| 296 | 296 | 'default' => '1', |
| 297 | 297 | ) |
@@ -303,9 +303,9 @@ discard block |
||
| 303 | 303 | 'id' => $this->slug . '_gallery', |
| 304 | 304 | 'type' => 'group', |
| 305 | 305 | 'options' => array( |
| 306 | - 'group_title' => __( 'Gallery', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
| 307 | - 'add_button' => __( 'Add Item', 'lsx-health-plan' ), |
|
| 308 | - 'remove_button' => __( 'Remove Item', 'lsx-health-plan' ), |
|
| 306 | + 'group_title' => __('Gallery', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number |
|
| 307 | + 'add_button' => __('Add Item', 'lsx-health-plan'), |
|
| 308 | + 'remove_button' => __('Remove Item', 'lsx-health-plan'), |
|
| 309 | 309 | 'sortable' => true, |
| 310 | 310 | ), |
| 311 | 311 | 'classes' => 'lsx-admin-row', |
@@ -316,13 +316,13 @@ discard block |
||
| 316 | 316 | $cmb->add_group_field( |
| 317 | 317 | $gallery_group, |
| 318 | 318 | array( |
| 319 | - 'name' => __( 'Image', 'lsx-health-plan' ), |
|
| 319 | + 'name' => __('Image', 'lsx-health-plan'), |
|
| 320 | 320 | 'id' => $this->slug . '_gallery_image', |
| 321 | 321 | 'type' => 'file', |
| 322 | 322 | 'text' => array( |
| 323 | - 'add_upload_file_text' => __( 'Add File', 'lsx-health-plan' ), |
|
| 323 | + 'add_upload_file_text' => __('Add File', 'lsx-health-plan'), |
|
| 324 | 324 | ), |
| 325 | - 'desc' => __( 'Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan' ), |
|
| 325 | + 'desc' => __('Upload an image a minimum of 800px x 600px in size.', 'lsx-health-plan'), |
|
| 326 | 326 | 'query_args' => array( |
| 327 | 327 | 'type' => array( |
| 328 | 328 | 'image/gif', |
@@ -338,20 +338,20 @@ discard block |
||
| 338 | 338 | $cmb->add_group_field( |
| 339 | 339 | $gallery_group, |
| 340 | 340 | array( |
| 341 | - 'name' => __( 'oEmbed', 'lsx-health-plan' ), |
|
| 341 | + 'name' => __('oEmbed', 'lsx-health-plan'), |
|
| 342 | 342 | 'id' => $this->slug . '_gallery_embed', |
| 343 | 343 | 'type' => 'text', |
| 344 | - 'desc' => __( 'Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan' ), |
|
| 344 | + 'desc' => __('Drop in the embed url for your video from YouTube, Vimeo or DailyMotion, e.g: "https://www.youtube.com/watch?v=9xwazD5SyVg". A full list of supports formats can be found at <a href="https://make.wordpress.org/support/user-manual/content/media/adding-media-to-your-pages-and-posts/embedding-media-from-other-sites/">WordPress</a>', 'lsx-health-plan'), |
|
| 345 | 345 | ) |
| 346 | 346 | ); |
| 347 | 347 | |
| 348 | 348 | $cmb->add_group_field( |
| 349 | 349 | $gallery_group, |
| 350 | 350 | array( |
| 351 | - 'name' => __( 'External Media', 'lsx-health-plan' ), |
|
| 351 | + 'name' => __('External Media', 'lsx-health-plan'), |
|
| 352 | 352 | 'id' => $this->slug . '_gallery_external', |
| 353 | 353 | 'type' => 'textarea_code', |
| 354 | - 'desc' => __( 'Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan' ), |
|
| 354 | + 'desc' => __('Drop in the iFrame embed code from Giphy in this field, i.e: <iframe src="https://giphy.com/embed/3o7527Rn1HxXWqgxuo" width="480" height="270" frameborder="0" class="giphy-embed" allowfullscreen></iframe>', 'lsx-health-plan'), |
|
| 355 | 355 | ) |
| 356 | 356 | ); |
| 357 | 357 | } |
@@ -365,8 +365,8 @@ discard block |
||
| 365 | 365 | $cmb = new_cmb2_box( |
| 366 | 366 | array( |
| 367 | 367 | 'id' => $this->slug . '_general_details_metabox', |
| 368 | - 'title' => __( 'Details', 'lsx-health-plan' ), |
|
| 369 | - 'object_types' => array( $this->slug ), |
|
| 368 | + 'title' => __('Details', 'lsx-health-plan'), |
|
| 369 | + 'object_types' => array($this->slug), |
|
| 370 | 370 | 'context' => 'normal', |
| 371 | 371 | 'priority' => 'high', |
| 372 | 372 | 'show_names' => true, |
@@ -375,15 +375,15 @@ discard block |
||
| 375 | 375 | |
| 376 | 376 | $cmb->add_field( |
| 377 | 377 | array( |
| 378 | - 'name' => __( 'Side', 'lsx-health-plan' ), |
|
| 378 | + 'name' => __('Side', 'lsx-health-plan'), |
|
| 379 | 379 | 'id' => $this->slug . '_side', |
| 380 | 380 | 'type' => 'select', |
| 381 | 381 | 'options' => array( |
| 382 | - '' => __( 'Select', 'lsx-health-plan' ), |
|
| 383 | - 'left' => __( 'Left', 'lsx-health-plan' ), |
|
| 384 | - 'right' => __( 'Right', 'lsx-health-plan' ), |
|
| 382 | + '' => __('Select', 'lsx-health-plan'), |
|
| 383 | + 'left' => __('Left', 'lsx-health-plan'), |
|
| 384 | + 'right' => __('Right', 'lsx-health-plan'), |
|
| 385 | 385 | ), |
| 386 | - 'desc' => __( 'Select which side this exercise uses. ', 'lsx-health-plan' ), |
|
| 386 | + 'desc' => __('Select which side this exercise uses. ', 'lsx-health-plan'), |
|
| 387 | 387 | ) |
| 388 | 388 | ); |
| 389 | 389 | } |
@@ -394,16 +394,16 @@ discard block |
||
| 394 | 394 | * @var array $crumbs |
| 395 | 395 | * @return array |
| 396 | 396 | */ |
| 397 | - public function exercise_breadcrumb_filter( $crumbs ) { |
|
| 398 | - $exercise = \lsx_health_plan\functions\get_option( 'endpoint_exercise', 'exercise' ); |
|
| 399 | - $exercises = \lsx_health_plan\functions\get_option( 'endpoint_exercise_archive', 'exercise' ); |
|
| 400 | - $url = get_post_type_archive_link( $exercise ); |
|
| 397 | + public function exercise_breadcrumb_filter($crumbs) { |
|
| 398 | + $exercise = \lsx_health_plan\functions\get_option('endpoint_exercise', 'exercise'); |
|
| 399 | + $exercises = \lsx_health_plan\functions\get_option('endpoint_exercise_archive', 'exercise'); |
|
| 400 | + $url = get_post_type_archive_link($exercise); |
|
| 401 | 401 | |
| 402 | - if ( is_singular( 'exercise' ) ) { |
|
| 402 | + if (is_singular('exercise')) { |
|
| 403 | 403 | $exercise_name = get_the_title(); |
| 404 | - $term_obj_list = get_the_terms( get_the_ID(), 'exercise-type' ); |
|
| 404 | + $term_obj_list = get_the_terms(get_the_ID(), 'exercise-type'); |
|
| 405 | 405 | $exercise_type = $term_obj_list[0]->name; |
| 406 | - $exercise_type_url = get_term_link( $term_obj_list[0]->term_id ); |
|
| 406 | + $exercise_type_url = get_term_link($term_obj_list[0]->term_id); |
|
| 407 | 407 | |
| 408 | 408 | $crumbs[1] = array( |
| 409 | 409 | 0 => $exercises, |
@@ -417,10 +417,10 @@ discard block |
||
| 417 | 417 | 0 => $exercise_name, |
| 418 | 418 | ); |
| 419 | 419 | } |
| 420 | - if ( is_tax( 'exercise-type' ) || is_tax( 'muscle-group' ) || is_tax( 'equipment' ) ) { |
|
| 421 | - $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); |
|
| 420 | + if (is_tax('exercise-type') || is_tax('muscle-group') || is_tax('equipment')) { |
|
| 421 | + $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy')); |
|
| 422 | 422 | |
| 423 | - $single_term_title = str_replace( '-', ' ', $term->taxonomy ) . ': ' . $term->name; |
|
| 423 | + $single_term_title = str_replace('-', ' ', $term->taxonomy) . ': ' . $term->name; |
|
| 424 | 424 | |
| 425 | 425 | $crumbs[1] = array( |
| 426 | 426 | 0 => $exercises, |
@@ -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 | ?> |
@@ -11,11 +11,11 @@ discard block |
||
| 11 | 11 | * @param string $post_id |
| 12 | 12 | * @return boolean |
| 13 | 13 | */ |
| 14 | -function lsx_health_plan_has_warmup( $post_id = '' ) { |
|
| 15 | - if ( '' === $post_id ) { |
|
| 14 | +function lsx_health_plan_has_warmup($post_id = '') { |
|
| 15 | + if ('' === $post_id) { |
|
| 16 | 16 | $post_id = get_the_ID(); |
| 17 | 17 | } |
| 18 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'plan_warmup' ); |
|
| 18 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'plan_warmup'); |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | /** |
@@ -24,22 +24,22 @@ discard block |
||
| 24 | 24 | * @param string $post_id |
| 25 | 25 | * @return boolean |
| 26 | 26 | */ |
| 27 | -function lsx_health_plan_has_workout( $post_id = '' ) { |
|
| 28 | - if ( ! post_type_exists( 'workout' ) ) { |
|
| 27 | +function lsx_health_plan_has_workout($post_id = '') { |
|
| 28 | + if ( ! post_type_exists('workout')) { |
|
| 29 | 29 | return false; |
| 30 | 30 | } |
| 31 | - if ( '' === $post_id ) { |
|
| 31 | + if ('' === $post_id) { |
|
| 32 | 32 | $post_id = get_the_ID(); |
| 33 | 33 | } |
| 34 | 34 | $has_workouts = false; |
| 35 | 35 | |
| 36 | - $section_key = get_query_var( 'section', false ); |
|
| 37 | - if ( false !== $section_key ) { |
|
| 38 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
| 39 | - if ( isset( $section_info['connected_workouts'] ) && ! empty( $section_info['connected_workouts'] ) ) { |
|
| 36 | + $section_key = get_query_var('section', false); |
|
| 37 | + if (false !== $section_key) { |
|
| 38 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
| 39 | + if (isset($section_info['connected_workouts']) && ! empty($section_info['connected_workouts'])) { |
|
| 40 | 40 | $has_workouts = true; |
| 41 | 41 | } |
| 42 | - } elseif ( \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ) ) { |
|
| 42 | + } elseif (\lsx_health_plan\functions\has_attached_post($post_id, 'connected_workouts')) { |
|
| 43 | 43 | $has_workouts = true; |
| 44 | 44 | } |
| 45 | 45 | |
@@ -52,15 +52,15 @@ discard block |
||
| 52 | 52 | * @param string $post_id |
| 53 | 53 | * @return boolean |
| 54 | 54 | */ |
| 55 | -function lsx_health_plan_has_meal( $post_id = '' ) { |
|
| 56 | - if ( ! post_type_exists( 'meal' ) ) { |
|
| 55 | +function lsx_health_plan_has_meal($post_id = '') { |
|
| 56 | + if ( ! post_type_exists('meal')) { |
|
| 57 | 57 | return false; |
| 58 | 58 | } |
| 59 | - if ( '' === $post_id ) { |
|
| 59 | + if ('' === $post_id) { |
|
| 60 | 60 | $post_id = get_the_ID(); |
| 61 | 61 | } |
| 62 | 62 | |
| 63 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
| 63 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_meals'); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | /** |
@@ -69,14 +69,14 @@ discard block |
||
| 69 | 69 | * @param string $post_id |
| 70 | 70 | * @return boolean |
| 71 | 71 | */ |
| 72 | -function lsx_health_plan_has_recipe( $post_id = '' ) { |
|
| 73 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
| 72 | +function lsx_health_plan_has_recipe($post_id = '') { |
|
| 73 | + if ( ! post_type_exists('recipe')) { |
|
| 74 | 74 | return false; |
| 75 | 75 | } |
| 76 | - if ( '' === $post_id ) { |
|
| 76 | + if ('' === $post_id) { |
|
| 77 | 77 | $post_id = get_the_ID(); |
| 78 | 78 | } |
| 79 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
| 79 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_recipes'); |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
@@ -85,13 +85,13 @@ discard block |
||
| 85 | 85 | * @param string $post_id |
| 86 | 86 | * @return boolean |
| 87 | 87 | */ |
| 88 | -function lsx_health_plan_has_downloads( $post_id = '' ) { |
|
| 88 | +function lsx_health_plan_has_downloads($post_id = '') { |
|
| 89 | 89 | $has_downloads = false; |
| 90 | - if ( '' === $post_id ) { |
|
| 90 | + if ('' === $post_id) { |
|
| 91 | 91 | $post_id = get_the_ID(); |
| 92 | 92 | } |
| 93 | - $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
| 94 | - if ( ! empty( $downloads ) ) { |
|
| 93 | + $downloads = \lsx_health_plan\functions\get_downloads('all', $post_id); |
|
| 94 | + if ( ! empty($downloads)) { |
|
| 95 | 95 | $has_downloads = true; |
| 96 | 96 | } |
| 97 | 97 | return $has_downloads; |
@@ -103,14 +103,14 @@ discard block |
||
| 103 | 103 | * @param string $post_id |
| 104 | 104 | * @return boolean |
| 105 | 105 | */ |
| 106 | -function lsx_health_plan_has_tip( $post_id = '' ) { |
|
| 107 | - if ( ! post_type_exists( 'tip' ) ) { |
|
| 106 | +function lsx_health_plan_has_tip($post_id = '') { |
|
| 107 | + if ( ! post_type_exists('tip')) { |
|
| 108 | 108 | return false; |
| 109 | 109 | } |
| 110 | - if ( '' === $post_id ) { |
|
| 110 | + if ('' === $post_id) { |
|
| 111 | 111 | $post_id = get_the_ID(); |
| 112 | 112 | } |
| 113 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
| 113 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_tips'); |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
@@ -119,14 +119,14 @@ discard block |
||
| 119 | 119 | * @param string $post_id |
| 120 | 120 | * @return boolean |
| 121 | 121 | */ |
| 122 | -function lsx_health_plan_has_video( $post_id = '' ) { |
|
| 123 | - if ( ! post_type_exists( 'video' ) ) { |
|
| 122 | +function lsx_health_plan_has_video($post_id = '') { |
|
| 123 | + if ( ! post_type_exists('video')) { |
|
| 124 | 124 | return false; |
| 125 | 125 | } |
| 126 | - if ( '' === $post_id ) { |
|
| 126 | + if ('' === $post_id) { |
|
| 127 | 127 | $post_id = get_the_ID(); |
| 128 | 128 | } |
| 129 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
| 129 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_videos'); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | /** |
@@ -136,11 +136,11 @@ discard block |
||
| 136 | 136 | */ |
| 137 | 137 | function lsx_health_plan_user_has_purchase() { |
| 138 | 138 | $valid_order = false; |
| 139 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
| 139 | + $product_id = \lsx_health_plan\functions\get_option('membership_product', false); |
|
| 140 | 140 | |
| 141 | - if ( is_user_logged_in() && false !== $product_id ) { |
|
| 141 | + if (is_user_logged_in() && false !== $product_id) { |
|
| 142 | 142 | $current_user = wp_get_current_user(); |
| 143 | - if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
| 143 | + if (wc_customer_bought_product($current_user->user_email, $current_user->ID, $product_id)) { |
|
| 144 | 144 | $valid_order = true; |
| 145 | 145 | } |
| 146 | 146 | } |
@@ -153,15 +153,15 @@ discard block |
||
| 153 | 153 | * @param string $post_id |
| 154 | 154 | * @return boolean |
| 155 | 155 | */ |
| 156 | -function lsx_health_plan_is_current_tab( $needle = '' ) { |
|
| 156 | +function lsx_health_plan_is_current_tab($needle = '') { |
|
| 157 | 157 | $is_tab = false; |
| 158 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
| 159 | - if ( false === $plan_slug ) { |
|
| 158 | + $plan_slug = \lsx_health_plan\functions\get_option('my_plan_slug', false); |
|
| 159 | + if (false === $plan_slug) { |
|
| 160 | 160 | $plan_slug = 'my-plan'; |
| 161 | 161 | } |
| 162 | - if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
| 163 | - $endpoint = get_query_var( 'endpoint' ); |
|
| 164 | - if ( false !== $endpoint && $needle === $endpoint ) { |
|
| 162 | + if (is_singular('plan') || is_page($plan_slug)) { |
|
| 163 | + $endpoint = get_query_var('endpoint'); |
|
| 164 | + if (false !== $endpoint && $needle === $endpoint) { |
|
| 165 | 165 | $is_tab = true; |
| 166 | 166 | } |
| 167 | 167 | } |
@@ -174,14 +174,14 @@ discard block |
||
| 174 | 174 | * @param string $post_id |
| 175 | 175 | * @return boolean |
| 176 | 176 | */ |
| 177 | -function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) { |
|
| 177 | +function lsx_health_plan_is_day_complete($post_id = '', $section_key = '') { |
|
| 178 | 178 | $is_complete = false; |
| 179 | - if ( '' === $post_id ) { |
|
| 179 | + if ('' === $post_id) { |
|
| 180 | 180 | $post_id = get_the_ID(); |
| 181 | 181 | } |
| 182 | - $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
| 183 | - $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
| 184 | - if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
| 182 | + $key = \lsx_health_plan\functions\plan\generate_section_id($section_key); |
|
| 183 | + $is_day_complete = get_user_meta(get_current_user_id(), 'day_' . $key . '_complete', true); |
|
| 184 | + if (false !== $is_day_complete && '' !== $is_day_complete) { |
|
| 185 | 185 | $is_complete = true; |
| 186 | 186 | } |
| 187 | 187 | |
@@ -199,11 +199,11 @@ discard block |
||
| 199 | 199 | * @param string $week The week name 'week-1'. |
| 200 | 200 | * @return boolean |
| 201 | 201 | */ |
| 202 | -function lsx_health_plan_week_has_downloads( $week = '' ) { |
|
| 202 | +function lsx_health_plan_week_has_downloads($week = '') { |
|
| 203 | 203 | $has_downloads = false; |
| 204 | - if ( '' !== $week ) { |
|
| 205 | - $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
| 206 | - if ( ! empty( $downloads ) ) { |
|
| 204 | + if ('' !== $week) { |
|
| 205 | + $downloads = \lsx_health_plan\functions\get_weekly_downloads($week); |
|
| 206 | + if ( ! empty($downloads)) { |
|
| 207 | 207 | $has_downloads = true; |
| 208 | 208 | } |
| 209 | 209 | } |
@@ -216,15 +216,15 @@ discard block |
||
| 216 | 216 | * @param string $post_id |
| 217 | 217 | * @return boolean |
| 218 | 218 | */ |
| 219 | -function lsx_health_plan_has_tips( $post_id = '' ) { |
|
| 219 | +function lsx_health_plan_has_tips($post_id = '') { |
|
| 220 | 220 | $has_tips = false; |
| 221 | - if ( '' === $post_id ) { |
|
| 221 | + if ('' === $post_id) { |
|
| 222 | 222 | $post_id = get_the_ID(); |
| 223 | 223 | } |
| 224 | - $post_type = get_post_type( $post_id ); |
|
| 225 | - $connected_tips = get_post_meta( get_the_ID(), $post_type . '_connected_tips', true ); |
|
| 226 | - $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
| 227 | - if ( ! empty( $connected_tips ) ) { |
|
| 224 | + $post_type = get_post_type($post_id); |
|
| 225 | + $connected_tips = get_post_meta(get_the_ID(), $post_type . '_connected_tips', true); |
|
| 226 | + $connected_tips = \lsx_health_plan\functions\check_posts_exist($connected_tips); |
|
| 227 | + if ( ! empty($connected_tips)) { |
|
| 228 | 228 | $has_tips = true; |
| 229 | 229 | } |
| 230 | 230 | return $has_tips; |
@@ -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', |