@@ -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,14 +24,14 @@ 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 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_workouts' ); |
|
34 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_workouts'); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | /** |
@@ -40,15 +40,15 @@ discard block |
||
40 | 40 | * @param string $post_id |
41 | 41 | * @return boolean |
42 | 42 | */ |
43 | -function lsx_health_plan_has_meal( $post_id = '' ) { |
|
44 | - if ( ! post_type_exists( 'meal' ) ) { |
|
43 | +function lsx_health_plan_has_meal($post_id = '') { |
|
44 | + if ( ! post_type_exists('meal')) { |
|
45 | 45 | return false; |
46 | 46 | } |
47 | - if ( '' === $post_id ) { |
|
47 | + if ('' === $post_id) { |
|
48 | 48 | $post_id = get_the_ID(); |
49 | 49 | } |
50 | - echo \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
51 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_meals' ); |
|
50 | + echo \lsx_health_plan\functions\has_attached_post($post_id, 'connected_meals'); |
|
51 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_meals'); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -57,14 +57,14 @@ discard block |
||
57 | 57 | * @param string $post_id |
58 | 58 | * @return boolean |
59 | 59 | */ |
60 | -function lsx_health_plan_has_recipe( $post_id = '' ) { |
|
61 | - if ( ! post_type_exists( 'recipe' ) ) { |
|
60 | +function lsx_health_plan_has_recipe($post_id = '') { |
|
61 | + if ( ! post_type_exists('recipe')) { |
|
62 | 62 | return false; |
63 | 63 | } |
64 | - if ( '' === $post_id ) { |
|
64 | + if ('' === $post_id) { |
|
65 | 65 | $post_id = get_the_ID(); |
66 | 66 | } |
67 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_recipes' ); |
|
67 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_recipes'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | /** |
@@ -73,13 +73,13 @@ discard block |
||
73 | 73 | * @param string $post_id |
74 | 74 | * @return boolean |
75 | 75 | */ |
76 | -function lsx_health_plan_has_downloads( $post_id = '' ) { |
|
76 | +function lsx_health_plan_has_downloads($post_id = '') { |
|
77 | 77 | $has_downloads = false; |
78 | - if ( '' === $post_id ) { |
|
78 | + if ('' === $post_id) { |
|
79 | 79 | $post_id = get_the_ID(); |
80 | 80 | } |
81 | - $downloads = \lsx_health_plan\functions\get_downloads( 'all', $post_id ); |
|
82 | - if ( ! empty( $downloads ) ) { |
|
81 | + $downloads = \lsx_health_plan\functions\get_downloads('all', $post_id); |
|
82 | + if ( ! empty($downloads)) { |
|
83 | 83 | $has_downloads = true; |
84 | 84 | } |
85 | 85 | return $has_downloads; |
@@ -91,14 +91,14 @@ discard block |
||
91 | 91 | * @param string $post_id |
92 | 92 | * @return boolean |
93 | 93 | */ |
94 | -function lsx_health_plan_has_tip( $post_id = '' ) { |
|
95 | - if ( ! post_type_exists( 'tip' ) ) { |
|
94 | +function lsx_health_plan_has_tip($post_id = '') { |
|
95 | + if ( ! post_type_exists('tip')) { |
|
96 | 96 | return false; |
97 | 97 | } |
98 | - if ( '' === $post_id ) { |
|
98 | + if ('' === $post_id) { |
|
99 | 99 | $post_id = get_the_ID(); |
100 | 100 | } |
101 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_tips' ); |
|
101 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_tips'); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -107,14 +107,14 @@ discard block |
||
107 | 107 | * @param string $post_id |
108 | 108 | * @return boolean |
109 | 109 | */ |
110 | -function lsx_health_plan_has_video( $post_id = '' ) { |
|
111 | - if ( ! post_type_exists( 'video' ) ) { |
|
110 | +function lsx_health_plan_has_video($post_id = '') { |
|
111 | + if ( ! post_type_exists('video')) { |
|
112 | 112 | return false; |
113 | 113 | } |
114 | - if ( '' === $post_id ) { |
|
114 | + if ('' === $post_id) { |
|
115 | 115 | $post_id = get_the_ID(); |
116 | 116 | } |
117 | - return \lsx_health_plan\functions\has_attached_post( $post_id, 'connected_videos' ); |
|
117 | + return \lsx_health_plan\functions\has_attached_post($post_id, 'connected_videos'); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -124,11 +124,11 @@ discard block |
||
124 | 124 | */ |
125 | 125 | function lsx_health_plan_user_has_purchase() { |
126 | 126 | $valid_order = false; |
127 | - $product_id = \lsx_health_plan\functions\get_option( 'membership_product', false ); |
|
127 | + $product_id = \lsx_health_plan\functions\get_option('membership_product', false); |
|
128 | 128 | |
129 | - if ( is_user_logged_in() && false !== $product_id ) { |
|
129 | + if (is_user_logged_in() && false !== $product_id) { |
|
130 | 130 | $current_user = wp_get_current_user(); |
131 | - if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) { |
|
131 | + if (wc_customer_bought_product($current_user->user_email, $current_user->ID, $product_id)) { |
|
132 | 132 | $valid_order = true; |
133 | 133 | } |
134 | 134 | } |
@@ -141,15 +141,15 @@ discard block |
||
141 | 141 | * @param string $post_id |
142 | 142 | * @return boolean |
143 | 143 | */ |
144 | -function lsx_health_plan_is_current_tab( $needle = '' ) { |
|
144 | +function lsx_health_plan_is_current_tab($needle = '') { |
|
145 | 145 | $is_tab = false; |
146 | - $plan_slug = \lsx_health_plan\functions\get_option( 'my_plan_slug', false ); |
|
147 | - if ( false === $plan_slug ) { |
|
146 | + $plan_slug = \lsx_health_plan\functions\get_option('my_plan_slug', false); |
|
147 | + if (false === $plan_slug) { |
|
148 | 148 | $plan_slug = 'my-plan'; |
149 | 149 | } |
150 | - if ( is_singular( 'plan' ) || is_page( $plan_slug ) ) { |
|
151 | - $endpoint = get_query_var( 'endpoint' ); |
|
152 | - if ( false !== $endpoint && $needle === $endpoint ) { |
|
150 | + if (is_singular('plan') || is_page($plan_slug)) { |
|
151 | + $endpoint = get_query_var('endpoint'); |
|
152 | + if (false !== $endpoint && $needle === $endpoint) { |
|
153 | 153 | $is_tab = true; |
154 | 154 | } |
155 | 155 | } |
@@ -162,14 +162,14 @@ discard block |
||
162 | 162 | * @param string $post_id |
163 | 163 | * @return boolean |
164 | 164 | */ |
165 | -function lsx_health_plan_is_day_complete( $post_id = '', $section_key = '' ) { |
|
165 | +function lsx_health_plan_is_day_complete($post_id = '', $section_key = '') { |
|
166 | 166 | $is_complete = false; |
167 | - if ( '' === $post_id ) { |
|
167 | + if ('' === $post_id) { |
|
168 | 168 | $post_id = get_the_ID(); |
169 | 169 | } |
170 | - $key = \lsx_health_plan\functions\plan\generate_section_id( $section_key ); |
|
171 | - $is_day_complete = get_user_meta( get_current_user_id(), 'day_' . $key . '_complete', true ); |
|
172 | - if ( false !== $is_day_complete && '' !== $is_day_complete ) { |
|
170 | + $key = \lsx_health_plan\functions\plan\generate_section_id($section_key); |
|
171 | + $is_day_complete = get_user_meta(get_current_user_id(), 'day_' . $key . '_complete', true); |
|
172 | + if (false !== $is_day_complete && '' !== $is_day_complete) { |
|
173 | 173 | $is_complete = true; |
174 | 174 | } |
175 | 175 | |
@@ -187,11 +187,11 @@ discard block |
||
187 | 187 | * @param string $week The week name 'week-1'. |
188 | 188 | * @return boolean |
189 | 189 | */ |
190 | -function lsx_health_plan_week_has_downloads( $week = '' ) { |
|
190 | +function lsx_health_plan_week_has_downloads($week = '') { |
|
191 | 191 | $has_downloads = false; |
192 | - if ( '' !== $week ) { |
|
193 | - $downloads = \lsx_health_plan\functions\get_weekly_downloads( $week ); |
|
194 | - if ( ! empty( $downloads ) ) { |
|
192 | + if ('' !== $week) { |
|
193 | + $downloads = \lsx_health_plan\functions\get_weekly_downloads($week); |
|
194 | + if ( ! empty($downloads)) { |
|
195 | 195 | $has_downloads = true; |
196 | 196 | } |
197 | 197 | } |
@@ -204,15 +204,15 @@ discard block |
||
204 | 204 | * @param string $post_id |
205 | 205 | * @return boolean |
206 | 206 | */ |
207 | -function lsx_health_plan_has_tips( $post_id = '' ) { |
|
207 | +function lsx_health_plan_has_tips($post_id = '') { |
|
208 | 208 | $has_tips = false; |
209 | - if ( '' === $post_id ) { |
|
209 | + if ('' === $post_id) { |
|
210 | 210 | $post_id = get_the_ID(); |
211 | 211 | } |
212 | - $post_type = get_post_type( $post_id ); |
|
213 | - $connected_tips = get_post_meta( get_the_ID(), $post_type . '_connected_tips', true ); |
|
214 | - $connected_tips = \lsx_health_plan\functions\check_posts_exist( $connected_tips ); |
|
215 | - if ( ! empty( $connected_tips ) ) { |
|
212 | + $post_type = get_post_type($post_id); |
|
213 | + $connected_tips = get_post_meta(get_the_ID(), $post_type . '_connected_tips', true); |
|
214 | + $connected_tips = \lsx_health_plan\functions\check_posts_exist($connected_tips); |
|
215 | + if ( ! empty($connected_tips)) { |
|
216 | 216 | $has_tips = true; |
217 | 217 | } |
218 | 218 | return $has_tips; |
@@ -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, |