@@ -67,7 +67,7 @@ |
||
67 | 67 | */ |
68 | 68 | public static function get_instance() { |
69 | 69 | // If the single instance hasn't been set, set it now. |
70 | - if ( null === self::$instance ) { |
|
70 | + if (null === self::$instance) { |
|
71 | 71 | self::$instance = new self(); |
72 | 72 | } |
73 | 73 | return self::$instance; |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function __construct() { |
31 | 31 | //add_filter( 'facetwp_index_row', array( $this, 'facetwp_index_row' ), 10, 2 ); |
32 | - add_filter( 'facetwp_indexer_post_facet', array( $this, 'facetwp_indexer_post_facet' ), 10, 2 ); |
|
32 | + add_filter('facetwp_indexer_post_facet', array($this, 'facetwp_indexer_post_facet'), 10, 2); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public static function get_instance() { |
43 | 43 | // If the single instance hasn't been set, set it now. |
44 | - if ( null === self::$instance ) { |
|
44 | + if (null === self::$instance) { |
|
45 | 45 | self::$instance = new self(); |
46 | 46 | } |
47 | 47 | return self::$instance; |
@@ -54,24 +54,24 @@ discard block |
||
54 | 54 | * @param array $params |
55 | 55 | * @return array |
56 | 56 | */ |
57 | - public function facetwp_indexer_post_facet( $return, $params ) { |
|
57 | + public function facetwp_indexer_post_facet($return, $params) { |
|
58 | 58 | $facet = $params['facet']; |
59 | - $source = isset( $facet['source'] ) ? $facet['source'] : ''; |
|
59 | + $source = isset($facet['source']) ? $facet['source'] : ''; |
|
60 | 60 | |
61 | - if ( 'lsx_hp/connected_plans' === $source ) { |
|
62 | - $post_type = get_post_type( $params['defaults']['post_id'] ); |
|
63 | - switch ( $post_type ) { |
|
61 | + if ('lsx_hp/connected_plans' === $source) { |
|
62 | + $post_type = get_post_type($params['defaults']['post_id']); |
|
63 | + switch ($post_type) { |
|
64 | 64 | case 'workout': |
65 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
66 | - $this->index_exercises( $params['defaults'] ); |
|
65 | + $return = $this->index_connected_plans($params['defaults']); |
|
66 | + $this->index_exercises($params['defaults']); |
|
67 | 67 | break; |
68 | 68 | |
69 | 69 | case 'recipe': |
70 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
70 | + $return = $this->index_connected_plans($params['defaults']); |
|
71 | 71 | break; |
72 | 72 | |
73 | 73 | case 'meal': |
74 | - $return = $this->index_connected_plans( $params['defaults'] ); |
|
74 | + $return = $this->index_connected_plans($params['defaults']); |
|
75 | 75 | break; |
76 | 76 | |
77 | 77 | default: |
@@ -91,29 +91,29 @@ discard block |
||
91 | 91 | * @param array $params |
92 | 92 | * @return boolean |
93 | 93 | */ |
94 | - public function index_connected_plans( $row ) { |
|
94 | + public function index_connected_plans($row) { |
|
95 | 95 | $indexed = false; |
96 | 96 | $top_level_plans = array(); |
97 | 97 | // Get meals this exercise is connected to. |
98 | - $plans = get_post_meta( $row['post_id'], 'connected_plans', true ); |
|
98 | + $plans = get_post_meta($row['post_id'], 'connected_plans', true); |
|
99 | 99 | |
100 | - if ( ! empty( $plans ) ) { |
|
101 | - $plan = end( $plans ); |
|
102 | - $has_parent = wp_get_post_parent_id( $plan ); |
|
103 | - if ( 0 === $has_parent ) { |
|
100 | + if ( ! empty($plans)) { |
|
101 | + $plan = end($plans); |
|
102 | + $has_parent = wp_get_post_parent_id($plan); |
|
103 | + if (0 === $has_parent) { |
|
104 | 104 | $top_level_plans[] = $plan; |
105 | - } elseif ( false !== $top_level_plans ) { |
|
105 | + } elseif (false !== $top_level_plans) { |
|
106 | 106 | $top_level_plans[] = $has_parent; |
107 | 107 | } |
108 | 108 | } |
109 | - if ( ! empty( $top_level_plans ) && ( '' !== $top_level_plans ) ) { |
|
110 | - $top_level_plans = array_unique( $top_level_plans ); |
|
109 | + if ( ! empty($top_level_plans) && ('' !== $top_level_plans)) { |
|
110 | + $top_level_plans = array_unique($top_level_plans); |
|
111 | 111 | $this->current_plan_ids = $top_level_plans; |
112 | 112 | $indexed = true; |
113 | - foreach ( $top_level_plans as $plan_id ) { |
|
113 | + foreach ($top_level_plans as $plan_id) { |
|
114 | 114 | $row['facet_value'] = $plan_id; |
115 | - $row['facet_display_value'] = get_the_title( $plan_id ); |
|
116 | - FWP()->indexer->index_row( $row ); |
|
115 | + $row['facet_display_value'] = get_the_title($plan_id); |
|
116 | + FWP()->indexer->index_row($row); |
|
117 | 117 | } |
118 | 118 | } |
119 | 119 | return $indexed; |
@@ -126,41 +126,41 @@ discard block |
||
126 | 126 | * @param array $params |
127 | 127 | * @return void |
128 | 128 | */ |
129 | - public function index_exercises( $row ) { |
|
130 | - if ( empty( $this->current_plan_ids ) ) { |
|
129 | + public function index_exercises($row) { |
|
130 | + if (empty($this->current_plan_ids)) { |
|
131 | 131 | return; |
132 | 132 | } |
133 | 133 | $i = 1; |
134 | 134 | $section_counter = 6; |
135 | 135 | $unique_connections = array(); |
136 | 136 | |
137 | - while ( $i <= $section_counter ) { |
|
137 | + while ($i <= $section_counter) { |
|
138 | 138 | // Here we grab the exercises and we add them to the index with the plan IDS. |
139 | - $groups = get_post_meta( $row['post_id'], 'workout_section_' . $i, true ); |
|
140 | - if ( ! empty( $groups ) ) { |
|
141 | - foreach ( $groups as $group ) { |
|
142 | - if ( isset( $group['connected_exercises'] ) && '' !== $group['connected_exercises'] ) { |
|
139 | + $groups = get_post_meta($row['post_id'], 'workout_section_' . $i, true); |
|
140 | + if ( ! empty($groups)) { |
|
141 | + foreach ($groups as $group) { |
|
142 | + if (isset($group['connected_exercises']) && '' !== $group['connected_exercises']) { |
|
143 | 143 | |
144 | - if ( ! is_array( $group['connected_exercises'] ) ) { |
|
145 | - $group['connected_exercises'] = array( $group['connected_exercises'] ); |
|
144 | + if ( ! is_array($group['connected_exercises'])) { |
|
145 | + $group['connected_exercises'] = array($group['connected_exercises']); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | // Loop through each exercise and add it to the plan. |
149 | - foreach ( $group['connected_exercises'] as $eid ) { |
|
149 | + foreach ($group['connected_exercises'] as $eid) { |
|
150 | 150 | $exercise_default = $row; |
151 | 151 | $exercise_default['post_id'] = $eid; |
152 | 152 | |
153 | - foreach ( $this->current_plan_ids as $plan_id ) { |
|
153 | + foreach ($this->current_plan_ids as $plan_id) { |
|
154 | 154 | // Check to see if this connection has been added already. |
155 | - if ( isset( $unique_connections[ $eid . '_' . $plan_id ] ) ) { |
|
155 | + if (isset($unique_connections[$eid . '_' . $plan_id])) { |
|
156 | 156 | continue; |
157 | 157 | } |
158 | 158 | |
159 | - $title = get_the_title( $plan_id ); |
|
160 | - if ( ! empty( $title ) ) { |
|
159 | + $title = get_the_title($plan_id); |
|
160 | + if ( ! empty($title)) { |
|
161 | 161 | $exercise_default['facet_value'] = $plan_id; |
162 | 162 | $exercise_default['facet_display_value'] = $title; |
163 | - $unique_connections[ $eid . '_' . $plan_id ] = $exercise_default; |
|
163 | + $unique_connections[$eid . '_' . $plan_id] = $exercise_default; |
|
164 | 164 | } |
165 | 165 | } |
166 | 166 | } |
@@ -171,9 +171,9 @@ discard block |
||
171 | 171 | } |
172 | 172 | |
173 | 173 | // If we have some unique connections, we index them. |
174 | - if ( ! empty( $unique_connections ) ) { |
|
175 | - foreach ( $unique_connections as $unique_row ) { |
|
176 | - FWP()->indexer->index_row( $unique_row ); |
|
174 | + if ( ! empty($unique_connections)) { |
|
175 | + foreach ($unique_connections as $unique_row) { |
|
176 | + FWP()->indexer->index_row($unique_row); |
|
177 | 177 | } |
178 | 178 | } |
179 | 179 | } |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | */ |
23 | 23 | public function __construct() { |
24 | 24 | // Lost Password fields |
25 | - add_action( 'woocommerce_before_lost_password_form', array( $this, 'lost_password_page_title' ), 10 ); |
|
25 | + add_action('woocommerce_before_lost_password_form', array($this, 'lost_password_page_title'), 10); |
|
26 | 26 | |
27 | - add_action( 'wp', array( $this, 'allow_reset_password_page' ), 9 ); |
|
27 | + add_action('wp', array($this, 'allow_reset_password_page'), 9); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | */ |
37 | 37 | public static function get_instance() { |
38 | 38 | // If the single instance hasn't been set, set it now. |
39 | - if ( null === self::$instance ) { |
|
39 | + if (null === self::$instance) { |
|
40 | 40 | self::$instance = new self(); |
41 | 41 | } |
42 | 42 | return self::$instance; |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | public function lost_password_page_title() { |
46 | 46 | ?> |
47 | - <h1 class="lost-your-password-title"><?php esc_html_e( 'Lost your password?', 'lsx-health-plan' ); ?></h1> |
|
47 | + <h1 class="lost-your-password-title"><?php esc_html_e('Lost your password?', 'lsx-health-plan'); ?></h1> |
|
48 | 48 | <?php |
49 | 49 | } |
50 | 50 | |
@@ -54,13 +54,13 @@ discard block |
||
54 | 54 | * @return void |
55 | 55 | */ |
56 | 56 | public function allow_reset_password_page() { |
57 | - if ( ! is_user_logged_in() && function_exists( 'wc_memberships' ) && is_wc_endpoint_url( 'lost-password' ) ) { |
|
57 | + if ( ! is_user_logged_in() && function_exists('wc_memberships') && is_wc_endpoint_url('lost-password')) { |
|
58 | 58 | |
59 | 59 | $members_instance = wc_memberships(); |
60 | 60 | $restriction_instance = $members_instance->get_restrictions_instance(); |
61 | 61 | $post_restrictions_instance = $restriction_instance->get_posts_restrictions_instance(); |
62 | - remove_action( 'wp', array( $post_restrictions_instance, 'handle_restriction_modes' ), 10, 1 ); |
|
63 | - add_action( 'body_class', array( $this, 'remove_body_classes' ) ); |
|
62 | + remove_action('wp', array($post_restrictions_instance, 'handle_restriction_modes'), 10, 1); |
|
63 | + add_action('body_class', array($this, 'remove_body_classes')); |
|
64 | 64 | } |
65 | 65 | } |
66 | 66 | |
@@ -70,11 +70,11 @@ discard block |
||
70 | 70 | * @param array $classes |
71 | 71 | * @return void |
72 | 72 | */ |
73 | - public function remove_body_classes( $classes = array() ) { |
|
74 | - if ( ! empty( $classes ) ) { |
|
75 | - foreach ( $classes as $class_key => $class_value ) { |
|
76 | - if ( 'gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value ) { |
|
77 | - unset( $classes[ $class_key ] ); |
|
73 | + public function remove_body_classes($classes = array()) { |
|
74 | + if ( ! empty($classes)) { |
|
75 | + foreach ($classes as $class_key => $class_value) { |
|
76 | + if ('gutenberg-compatible-template' === $class_value || 'using-gutenberg' === $class_value) { |
|
77 | + unset($classes[$class_key]); |
|
78 | 78 | } |
79 | 79 | } |
80 | 80 | } |
@@ -5,11 +5,11 @@ discard block |
||
5 | 5 | * @package lsx-health-plan |
6 | 6 | */ |
7 | 7 | |
8 | -$section_key = get_query_var( 'section' ); |
|
9 | -$endpoint_key = get_query_var( 'endpoint' ); |
|
10 | -if ( '' !== $section_key && '' === $endpoint && \lsx_health_plan\functions\plan\has_sections() ) { |
|
11 | - $section_info = \lsx_health_plan\functions\plan\get_section_info( $section_key ); |
|
12 | - if ( isset( $section_info['description'] ) && '' !== $section_info['description'] ) { |
|
8 | +$section_key = get_query_var('section'); |
|
9 | +$endpoint_key = get_query_var('endpoint'); |
|
10 | +if ('' !== $section_key && '' === $endpoint && \lsx_health_plan\functions\plan\has_sections()) { |
|
11 | + $section_info = \lsx_health_plan\functions\plan\get_section_info($section_key); |
|
12 | + if (isset($section_info['description']) && '' !== $section_info['description']) { |
|
13 | 13 | global $shortcode_args; |
14 | 14 | ?> |
15 | 15 | <?php lsx_entry_before(); ?> |
@@ -25,22 +25,22 @@ discard block |
||
25 | 25 | <div class="entry-content"> |
26 | 26 | <div class="overview"> |
27 | 27 | <?php |
28 | - echo wp_kses_post( apply_filters( 'the_content', $section_info['description'] ) ); |
|
28 | + echo wp_kses_post(apply_filters('the_content', $section_info['description'])); |
|
29 | 29 | |
30 | - wp_link_pages( array( |
|
30 | + wp_link_pages(array( |
|
31 | 31 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
32 | 32 | 'after' => '</div></div>', |
33 | 33 | 'link_before' => '<span>', |
34 | 34 | 'link_after' => '</span>', |
35 | - ) ); |
|
35 | + )); |
|
36 | 36 | ?> |
37 | 37 | </div> |
38 | 38 | </div><!-- .entry-content --> |
39 | - <?php if ( null === $shortcode_args ) { ?> |
|
40 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
39 | + <?php if (null === $shortcode_args) { ?> |
|
40 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
41 | 41 | <div class="tip-row extras-box"> |
42 | 42 | <div class="tip-right"> |
43 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
|
43 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?> |
|
44 | 44 | </div> |
45 | 45 | </div> |
46 | 46 | <?php } ?> |
@@ -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,38 +31,38 @@ 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 | <?php |
50 | 50 | the_content(); |
51 | - wp_link_pages( array( |
|
51 | + wp_link_pages(array( |
|
52 | 52 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
53 | 53 | 'after' => '</div></div>', |
54 | 54 | 'link_before' => '<span>', |
55 | 55 | 'link_after' => '</span>', |
56 | - ) ); |
|
56 | + )); |
|
57 | 57 | ?> |
58 | 58 | </div> |
59 | 59 | </div><!-- .entry-content --> |
60 | 60 | <?php lsx_entry_bottom(); ?> |
61 | - <?php if ( null === $shortcode_args ) { ?> |
|
61 | + <?php if (null === $shortcode_args) { ?> |
|
62 | 62 | <div class="tip-row extras-box"> |
63 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
63 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
64 | 64 | <div class="tip-right"> |
65 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
|
65 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?> |
|
66 | 66 | </div> |
67 | 67 | <?php } ?> |
68 | 68 | </div> |
@@ -77,17 +77,17 @@ discard block |
||
77 | 77 | <div class="entry-content"> |
78 | 78 | <div class="single-plan-inner warmup-content"> |
79 | 79 | <div class="single-plan-section-title warmup-plan title-lined"> |
80 | - <?php lsx_get_svg_icon( 'warm.svg' ); ?> |
|
81 | - <h2><?php esc_html_e( 'Warm Up', 'lsx-health-plan' ); ?></h2> |
|
80 | + <?php lsx_get_svg_icon('warm.svg'); ?> |
|
81 | + <h2><?php esc_html_e('Warm Up', 'lsx-health-plan'); ?></h2> |
|
82 | 82 | </div> |
83 | 83 | <?php |
84 | 84 | the_content(); |
85 | - wp_link_pages( array( |
|
85 | + wp_link_pages(array( |
|
86 | 86 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
87 | 87 | 'after' => '</div></div>', |
88 | 88 | 'link_before' => '<span>', |
89 | 89 | 'link_after' => '</span>', |
90 | - ) ); |
|
90 | + )); |
|
91 | 91 | ?> |
92 | 92 | </div> |
93 | 93 | </div><!-- .entry-content --> |
@@ -24,20 +24,20 @@ |
||
24 | 24 | <?php |
25 | 25 | the_content(); |
26 | 26 | |
27 | - wp_link_pages( array( |
|
27 | + wp_link_pages(array( |
|
28 | 28 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
29 | 29 | 'after' => '</div></div>', |
30 | 30 | 'link_before' => '<span>', |
31 | 31 | 'link_after' => '</span>', |
32 | - ) ); |
|
32 | + )); |
|
33 | 33 | ?> |
34 | 34 | </div> |
35 | 35 | </div><!-- .entry-content --> |
36 | - <?php if ( null === $shortcode_args ) { ?> |
|
37 | - <?php if ( post_type_exists( 'tip' ) && lsx_health_plan_has_tips() ) { ?> |
|
36 | + <?php if (null === $shortcode_args) { ?> |
|
37 | + <?php if (post_type_exists('tip') && lsx_health_plan_has_tips()) { ?> |
|
38 | 38 | <div class="tip-row extras-box"> |
39 | 39 | <div class="tip-right"> |
40 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block' ); ?> |
|
40 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block'); ?> |
|
41 | 41 | </div> |
42 | 42 | </div> |
43 | 43 | <?php } ?> |
@@ -33,35 +33,35 @@ 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 | |
67 | 67 | /** |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | */ |
74 | 74 | public static function get_instance() { |
75 | 75 | // If the single instance hasn't been set, set it now. |
76 | - if ( null === self::$instance ) { |
|
76 | + if (null === self::$instance) { |
|
77 | 77 | self::$instance = new self(); |
78 | 78 | } |
79 | 79 | return self::$instance; |
@@ -83,21 +83,21 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function register_post_type() { |
85 | 85 | $labels = array( |
86 | - 'name' => esc_html__( 'Plans', 'lsx-health-plan' ), |
|
87 | - 'singular_name' => esc_html__( 'Plan', 'lsx-health-plan' ), |
|
88 | - 'add_new' => esc_html_x( 'Add New', 'post type general name', 'lsx-health-plan' ), |
|
89 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
90 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
91 | - 'new_item' => esc_html__( 'New', 'lsx-health-plan' ), |
|
92 | - 'all_items' => esc_html__( 'All Plans', 'lsx-health-plan' ), |
|
93 | - 'view_item' => esc_html__( 'View', 'lsx-health-plan' ), |
|
94 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
95 | - 'not_found' => esc_html__( 'None found', 'lsx-health-plan' ), |
|
96 | - 'not_found_in_trash' => esc_html__( 'None found in Trash', 'lsx-health-plan' ), |
|
86 | + 'name' => esc_html__('Plans', 'lsx-health-plan'), |
|
87 | + 'singular_name' => esc_html__('Plan', 'lsx-health-plan'), |
|
88 | + 'add_new' => esc_html_x('Add New', 'post type general name', 'lsx-health-plan'), |
|
89 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
90 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
91 | + 'new_item' => esc_html__('New', 'lsx-health-plan'), |
|
92 | + 'all_items' => esc_html__('All Plans', 'lsx-health-plan'), |
|
93 | + 'view_item' => esc_html__('View', 'lsx-health-plan'), |
|
94 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
95 | + 'not_found' => esc_html__('None found', 'lsx-health-plan'), |
|
96 | + 'not_found_in_trash' => esc_html__('None found in Trash', 'lsx-health-plan'), |
|
97 | 97 | 'parent_item_colon' => '', |
98 | - 'menu_name' => esc_html__( 'Plans', 'lsx-health-plan' ), |
|
98 | + 'menu_name' => esc_html__('Plans', 'lsx-health-plan'), |
|
99 | 99 | ); |
100 | - $args = array( |
|
100 | + $args = array( |
|
101 | 101 | 'labels' => $labels, |
102 | 102 | 'public' => true, |
103 | 103 | 'publicly_queryable' => true, |
@@ -107,10 +107,10 @@ discard block |
||
107 | 107 | 'menu_icon' => 'dashicons-welcome-write-blog', |
108 | 108 | 'query_var' => true, |
109 | 109 | 'rewrite' => array( |
110 | - 'slug' => \lsx_health_plan\functions\get_option( 'plan_single_slug', 'plan' ), |
|
110 | + 'slug' => \lsx_health_plan\functions\get_option('plan_single_slug', 'plan'), |
|
111 | 111 | ), |
112 | 112 | 'capability_type' => 'page', |
113 | - 'has_archive' => \lsx_health_plan\functions\get_option( 'endpoint_plan_archive', 'plans' ), |
|
113 | + 'has_archive' => \lsx_health_plan\functions\get_option('endpoint_plan_archive', 'plans'), |
|
114 | 114 | 'hierarchical' => false, |
115 | 115 | 'menu_position' => null, |
116 | 116 | 'supports' => array( |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | 'custom-fields', |
122 | 122 | ), |
123 | 123 | ); |
124 | - register_post_type( 'plan', $args ); |
|
124 | + register_post_type('plan', $args); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -129,17 +129,17 @@ discard block |
||
129 | 129 | */ |
130 | 130 | public function plan_type_taxonomy_setup() { |
131 | 131 | $labels = array( |
132 | - 'name' => esc_html_x( 'Plan Type', 'taxonomy general name', 'lsx-health-plan' ), |
|
133 | - 'singular_name' => esc_html_x( 'Plan Type', 'taxonomy singular name', 'lsx-health-plan' ), |
|
134 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
135 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
136 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
137 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
138 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
139 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
140 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
141 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
142 | - 'menu_name' => esc_html__( 'Plan Types', 'lsx-health-plan' ), |
|
132 | + 'name' => esc_html_x('Plan Type', 'taxonomy general name', 'lsx-health-plan'), |
|
133 | + 'singular_name' => esc_html_x('Plan Type', 'taxonomy singular name', 'lsx-health-plan'), |
|
134 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
135 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
136 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
137 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
138 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
139 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
140 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
141 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
142 | + 'menu_name' => esc_html__('Plan Types', 'lsx-health-plan'), |
|
143 | 143 | ); |
144 | 144 | |
145 | 145 | $args = array( |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | ), |
154 | 154 | ); |
155 | 155 | |
156 | - register_taxonomy( 'plan-type', array( 'plan' ), $args ); |
|
156 | + register_taxonomy('plan-type', array('plan'), $args); |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -161,17 +161,17 @@ discard block |
||
161 | 161 | */ |
162 | 162 | public function week_taxonomy_setup() { |
163 | 163 | $labels = array( |
164 | - 'name' => esc_html_x( 'Week', 'taxonomy general name', 'lsx-health-plan' ), |
|
165 | - 'singular_name' => esc_html_x( 'Week', 'taxonomy singular name', 'lsx-health-plan' ), |
|
166 | - 'search_items' => esc_html__( 'Search', 'lsx-health-plan' ), |
|
167 | - 'all_items' => esc_html__( 'All', 'lsx-health-plan' ), |
|
168 | - 'parent_item' => esc_html__( 'Parent', 'lsx-health-plan' ), |
|
169 | - 'parent_item_colon' => esc_html__( 'Parent:', 'lsx-health-plan' ), |
|
170 | - 'edit_item' => esc_html__( 'Edit', 'lsx-health-plan' ), |
|
171 | - 'update_item' => esc_html__( 'Update', 'lsx-health-plan' ), |
|
172 | - 'add_new_item' => esc_html__( 'Add New', 'lsx-health-plan' ), |
|
173 | - 'new_item_name' => esc_html__( 'New Name', 'lsx-health-plan' ), |
|
174 | - 'menu_name' => esc_html__( 'Weeks', 'lsx-health-plan' ), |
|
164 | + 'name' => esc_html_x('Week', 'taxonomy general name', 'lsx-health-plan'), |
|
165 | + 'singular_name' => esc_html_x('Week', 'taxonomy singular name', 'lsx-health-plan'), |
|
166 | + 'search_items' => esc_html__('Search', 'lsx-health-plan'), |
|
167 | + 'all_items' => esc_html__('All', 'lsx-health-plan'), |
|
168 | + 'parent_item' => esc_html__('Parent', 'lsx-health-plan'), |
|
169 | + 'parent_item_colon' => esc_html__('Parent:', 'lsx-health-plan'), |
|
170 | + 'edit_item' => esc_html__('Edit', 'lsx-health-plan'), |
|
171 | + 'update_item' => esc_html__('Update', 'lsx-health-plan'), |
|
172 | + 'add_new_item' => esc_html__('Add New', 'lsx-health-plan'), |
|
173 | + 'new_item_name' => esc_html__('New Name', 'lsx-health-plan'), |
|
174 | + 'menu_name' => esc_html__('Weeks', 'lsx-health-plan'), |
|
175 | 175 | ); |
176 | 176 | |
177 | 177 | $args = array( |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | ), |
187 | 187 | ); |
188 | 188 | |
189 | - register_taxonomy( 'week', array( 'plan' ), $args ); |
|
189 | + register_taxonomy('week', array('plan'), $args); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -194,13 +194,13 @@ discard block |
||
194 | 194 | * |
195 | 195 | * @since 0.1.0 |
196 | 196 | */ |
197 | - public function add_thumbnail_form_field( $term = false ) { |
|
198 | - if ( is_object( $term ) ) { |
|
199 | - $value = get_term_meta( $term->term_id, 'thumbnail', true ); |
|
200 | - $image_preview = wp_get_attachment_image_src( $value, 'thumbnail' ); |
|
197 | + public function add_thumbnail_form_field($term = false) { |
|
198 | + if (is_object($term)) { |
|
199 | + $value = get_term_meta($term->term_id, 'thumbnail', true); |
|
200 | + $image_preview = wp_get_attachment_image_src($value, 'thumbnail'); |
|
201 | 201 | |
202 | - if ( is_array( $image_preview ) ) { |
|
203 | - $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 . '" />'; |
|
202 | + if (is_array($image_preview)) { |
|
203 | + $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 . '" />'; |
|
204 | 204 | } |
205 | 205 | } else { |
206 | 206 | $image_preview = false; |
@@ -208,15 +208,15 @@ discard block |
||
208 | 208 | } |
209 | 209 | ?> |
210 | 210 | <tr class="form-field form-required term-thumbnail-wrap"> |
211 | - <th scope="row"><label for="thumbnail"><?php esc_html_e( 'Icon Image', 'lsx-health-plan' ); ?></label></th> |
|
211 | + <th scope="row"><label for="thumbnail"><?php esc_html_e('Icon Image', 'lsx-health-plan'); ?></label></th> |
|
212 | 212 | <td> |
213 | - <input class="input_image_id" type="hidden" name="thumbnail" value="<?php echo wp_kses_post( $value ); ?>"> |
|
213 | + <input class="input_image_id" type="hidden" name="thumbnail" value="<?php echo wp_kses_post($value); ?>"> |
|
214 | 214 | <div class="thumbnail-preview"> |
215 | - <?php echo wp_kses_post( $image_preview ); ?> |
|
215 | + <?php echo wp_kses_post($image_preview); ?> |
|
216 | 216 | </div> |
217 | - <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> |
|
218 | - <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> |
|
219 | - <?php wp_nonce_field( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ); ?> |
|
217 | + <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> |
|
218 | + <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> |
|
219 | + <?php wp_nonce_field('lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce'); ?> |
|
220 | 220 | </td> |
221 | 221 | </tr> |
222 | 222 | <?php |
@@ -230,27 +230,27 @@ discard block |
||
230 | 230 | * @param int $term_id |
231 | 231 | * @param string $taxonomy |
232 | 232 | */ |
233 | - public function save_meta( $term_id = 0, $taxonomy = '' ) { |
|
234 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
233 | + public function save_meta($term_id = 0, $taxonomy = '') { |
|
234 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
235 | 235 | return; |
236 | 236 | } |
237 | 237 | |
238 | - if ( ! isset( $_POST['thumbnail'] ) ) { |
|
238 | + if ( ! isset($_POST['thumbnail'])) { |
|
239 | 239 | return; |
240 | 240 | } |
241 | 241 | |
242 | - if ( check_admin_referer( 'lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce' ) ) { |
|
243 | - if ( ! isset( $_POST['thumbnail'] ) ) { |
|
242 | + if (check_admin_referer('lsx_hp_term_thumbnail_nonce', 'lsx_hp_term_thumbnail_nonce')) { |
|
243 | + if ( ! isset($_POST['thumbnail'])) { |
|
244 | 244 | return; |
245 | 245 | } |
246 | 246 | |
247 | - $thumbnail_meta = sanitize_text_field( $_POST['thumbnail'] ); |
|
248 | - $thumbnail_meta = ! empty( $thumbnail_meta ) ? $thumbnail_meta : ''; |
|
247 | + $thumbnail_meta = sanitize_text_field($_POST['thumbnail']); |
|
248 | + $thumbnail_meta = ! empty($thumbnail_meta) ? $thumbnail_meta : ''; |
|
249 | 249 | |
250 | - if ( empty( $thumbnail_meta ) ) { |
|
251 | - delete_term_meta( $term_id, 'thumbnail' ); |
|
250 | + if (empty($thumbnail_meta)) { |
|
251 | + delete_term_meta($term_id, 'thumbnail'); |
|
252 | 252 | } else { |
253 | - update_term_meta( $term_id, 'thumbnail', $thumbnail_meta ); |
|
253 | + update_term_meta($term_id, 'thumbnail', $thumbnail_meta); |
|
254 | 254 | } |
255 | 255 | } |
256 | 256 | } |
@@ -259,40 +259,40 @@ discard block |
||
259 | 259 | * Define the metabox and field configurations. |
260 | 260 | */ |
261 | 261 | public function details_metaboxes() { |
262 | - $cmb = new_cmb2_box( array( |
|
262 | + $cmb = new_cmb2_box(array( |
|
263 | 263 | 'id' => $this->slug . '_details_metabox', |
264 | - 'title' => __( 'Details', 'lsx-health-plan' ), |
|
265 | - 'object_types' => array( $this->slug ), // Post type |
|
264 | + 'title' => __('Details', 'lsx-health-plan'), |
|
265 | + 'object_types' => array($this->slug), // Post type |
|
266 | 266 | 'context' => 'normal', |
267 | 267 | 'priority' => 'high', |
268 | 268 | 'show_names' => true, |
269 | - ) ); |
|
269 | + )); |
|
270 | 270 | |
271 | - $cmb->add_field( array( |
|
272 | - 'name' => __( 'Plan Short Description', 'lsx-health-plan' ), |
|
271 | + $cmb->add_field(array( |
|
272 | + 'name' => __('Plan Short Description', 'lsx-health-plan'), |
|
273 | 273 | 'id' => $this->slug . '_short_description', |
274 | 274 | 'type' => 'textarea_small', |
275 | - 'desc' => __( 'Add a small description for this plan (optional)', 'lsx-health-plan' ), |
|
276 | - ) ); |
|
275 | + 'desc' => __('Add a small description for this plan (optional)', 'lsx-health-plan'), |
|
276 | + )); |
|
277 | 277 | |
278 | 278 | $warmup_type = 'page'; |
279 | - if ( false !== \lsx_health_plan\functions\get_option( 'exercise_enabled', false ) ) { |
|
280 | - $warmup_type = array( 'page', 'workout' ); |
|
279 | + if (false !== \lsx_health_plan\functions\get_option('exercise_enabled', false)) { |
|
280 | + $warmup_type = array('page', 'workout'); |
|
281 | 281 | } |
282 | - $cmb->add_field( array( |
|
283 | - 'name' => __( 'Warmup', 'lsx-health-plan' ), |
|
284 | - 'desc' => __( 'Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan' ), |
|
282 | + $cmb->add_field(array( |
|
283 | + 'name' => __('Warmup', 'lsx-health-plan'), |
|
284 | + 'desc' => __('Connect the warm up page that applies to this day plan using the field provided.', 'lsx-health-plan'), |
|
285 | 285 | 'id' => $this->slug . '_warmup', |
286 | 286 | 'type' => 'post_search_ajax', |
287 | 287 | // Optional : |
288 | - 'limit' => 3, // Limit selection to X items only (default 1) |
|
288 | + 'limit' => 3, // Limit selection to X items only (default 1) |
|
289 | 289 | 'sortable' => true, // Allow selected items to be sortable (default false) |
290 | 290 | 'query_args' => array( |
291 | 291 | 'post_type' => $warmup_type, |
292 | - 'post_status' => array( 'publish' ), |
|
292 | + 'post_status' => array('publish'), |
|
293 | 293 | 'posts_per_page' => -1, |
294 | 294 | ), |
295 | - ) ); |
|
295 | + )); |
|
296 | 296 | } |
297 | 297 | |
298 | 298 | /** |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | * @param array $post_types |
302 | 302 | * @return array |
303 | 303 | */ |
304 | - public function enable_post_type( $post_types = array() ) { |
|
304 | + public function enable_post_type($post_types = array()) { |
|
305 | 305 | $post_types[] = $this->slug; |
306 | 306 | return $post_types; |
307 | 307 | } |
@@ -315,8 +315,8 @@ discard block |
||
315 | 315 | $cmb = new_cmb2_box( |
316 | 316 | array( |
317 | 317 | 'id' => $this->slug . '_connections_metabox', |
318 | - 'title' => __( 'Plans', 'lsx-health-plan' ), |
|
319 | - 'object_types' => array( 'workout', 'meal', 'tip', 'recipe' ), |
|
318 | + 'title' => __('Plans', 'lsx-health-plan'), |
|
319 | + 'object_types' => array('workout', 'meal', 'tip', 'recipe'), |
|
320 | 320 | 'context' => 'normal', |
321 | 321 | 'priority' => 'high', |
322 | 322 | 'show_names' => true, |
@@ -324,15 +324,15 @@ discard block |
||
324 | 324 | ); |
325 | 325 | $cmb->add_field( |
326 | 326 | array( |
327 | - 'name' => __( 'Plan', 'lsx-health-plan' ), |
|
327 | + 'name' => __('Plan', 'lsx-health-plan'), |
|
328 | 328 | 'id' => 'connected_plans', |
329 | - 'desc' => __( 'Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan' ), |
|
329 | + 'desc' => __('Connect this to the day plan it applies to, using the field provided.', 'lsx-health-plan'), |
|
330 | 330 | 'type' => 'post_search_ajax', |
331 | 331 | 'limit' => 15, |
332 | 332 | 'sortable' => true, |
333 | 333 | 'query_args' => array( |
334 | - 'post_type' => array( 'plan' ), |
|
335 | - 'post_status' => array( 'publish' ), |
|
334 | + 'post_type' => array('plan'), |
|
335 | + 'post_status' => array('publish'), |
|
336 | 336 | 'posts_per_page' => -1, |
337 | 337 | ), |
338 | 338 | ) |
@@ -345,9 +345,9 @@ discard block |
||
345 | 345 | * @param string $title the term title. |
346 | 346 | * @return string |
347 | 347 | */ |
348 | - public function get_the_archive_title( $title ) { |
|
349 | - if ( is_post_type_archive( 'plan' ) ) { |
|
350 | - $title = __( 'Our health plans', 'lsx-health-plan' ); |
|
348 | + public function get_the_archive_title($title) { |
|
349 | + if (is_post_type_archive('plan')) { |
|
350 | + $title = __('Our health plans', 'lsx-health-plan'); |
|
351 | 351 | } |
352 | 352 | return $title; |
353 | 353 | } |
@@ -358,9 +358,9 @@ discard block |
||
358 | 358 | * @param object $wp_query |
359 | 359 | * @return array |
360 | 360 | */ |
361 | - public function set_parent_only( $wp_query ) { |
|
362 | - if ( ! is_admin() && $wp_query->is_main_query() && ( $wp_query->is_post_type_archive( 'plan' ) || $wp_query->is_tax( 'plan-type' ) ) ) { |
|
363 | - $wp_query->set( 'post_parent', '0' ); |
|
361 | + public function set_parent_only($wp_query) { |
|
362 | + if ( ! is_admin() && $wp_query->is_main_query() && ($wp_query->is_post_type_archive('plan') || $wp_query->is_tax('plan-type'))) { |
|
363 | + $wp_query->set('post_parent', '0'); |
|
364 | 364 | } |
365 | 365 | } |
366 | 366 | |
@@ -371,8 +371,8 @@ discard block |
||
371 | 371 | $cmb = new_cmb2_box( |
372 | 372 | array( |
373 | 373 | 'id' => $this->slug . '_featured_metabox_plan', |
374 | - 'title' => __( 'Featured Plan', 'lsx-health-plan' ), |
|
375 | - 'object_types' => array( $this->slug ), // Post type |
|
374 | + 'title' => __('Featured Plan', 'lsx-health-plan'), |
|
375 | + 'object_types' => array($this->slug), // Post type |
|
376 | 376 | 'context' => 'side', |
377 | 377 | 'priority' => 'high', |
378 | 378 | 'show_names' => true, |
@@ -380,8 +380,8 @@ discard block |
||
380 | 380 | ); |
381 | 381 | $cmb->add_field( |
382 | 382 | array( |
383 | - 'name' => __( 'Featured Plan', 'lsx-health-plan' ), |
|
384 | - 'desc' => __( 'Enable a featured plan' ), |
|
383 | + 'name' => __('Featured Plan', 'lsx-health-plan'), |
|
384 | + 'desc' => __('Enable a featured plan'), |
|
385 | 385 | 'id' => $this->slug . '_featured_plan', |
386 | 386 | 'type' => 'checkbox', |
387 | 387 | 'show_on_cb' => 'cmb2_hide_if_no_cats', |
@@ -396,8 +396,8 @@ discard block |
||
396 | 396 | $cmb = new_cmb2_box( |
397 | 397 | array( |
398 | 398 | 'id' => $this->slug . '_sections_metabox', |
399 | - 'title' => __( 'Sections', 'lsx-health-plan' ), |
|
400 | - 'object_types' => array( $this->slug ), // Post type. |
|
399 | + 'title' => __('Sections', 'lsx-health-plan'), |
|
400 | + 'object_types' => array($this->slug), // Post type. |
|
401 | 401 | 'context' => 'normal', |
402 | 402 | 'priority' => 'low', |
403 | 403 | 'show_names' => true, |
@@ -413,9 +413,9 @@ discard block |
||
413 | 413 | 'id' => $this->slug . '_sections', |
414 | 414 | 'type' => 'group', |
415 | 415 | 'options' => array( |
416 | - 'group_title' => __( 'Section', 'lsx-health-plan' ) . ' {#}', // {#} gets replaced by row number |
|
417 | - 'add_button' => __( 'Add section', 'lsx-health-plan' ), |
|
418 | - 'remove_button' => __( 'Remove section', 'lsx-health-plan' ), |
|
416 | + 'group_title' => __('Section', 'lsx-health-plan') . ' {#}', // {#} gets replaced by row number |
|
417 | + 'add_button' => __('Add section', 'lsx-health-plan'), |
|
418 | + 'remove_button' => __('Remove section', 'lsx-health-plan'), |
|
419 | 419 | 'sortable' => true, |
420 | 420 | 'closed' => true, // true to have the groups closed by default |
421 | 421 | ), |
@@ -427,10 +427,10 @@ discard block |
||
427 | 427 | $cmb->add_group_field( |
428 | 428 | $group, |
429 | 429 | array( |
430 | - 'name' => __( 'Title', 'lsx-health-plan' ), |
|
430 | + 'name' => __('Title', 'lsx-health-plan'), |
|
431 | 431 | 'id' => 'title', |
432 | 432 | 'type' => 'text', |
433 | - 'desc' => __( 'e.g Day 1 / Week 1', 'lsx-health-plan' ), |
|
433 | + 'desc' => __('e.g Day 1 / Week 1', 'lsx-health-plan'), |
|
434 | 434 | 'classes' => 'lsx-field-col lsx-field-col-50', |
435 | 435 | ) |
436 | 436 | ); |
@@ -438,10 +438,10 @@ discard block |
||
438 | 438 | $cmb->add_group_field( |
439 | 439 | $group, |
440 | 440 | array( |
441 | - 'name' => __( 'Group', 'lsx-health-plan' ), |
|
441 | + 'name' => __('Group', 'lsx-health-plan'), |
|
442 | 442 | 'id' => 'group', |
443 | 443 | 'type' => 'text', |
444 | - 'desc' => __( 'e.g Week 1 / January', 'lsx-health-plan' ), |
|
444 | + 'desc' => __('e.g Week 1 / January', 'lsx-health-plan'), |
|
445 | 445 | 'classes' => 'lsx-field-col lsx-field-col-50', |
446 | 446 | ) |
447 | 447 | ); |
@@ -449,25 +449,25 @@ discard block |
||
449 | 449 | $cmb->add_group_field( |
450 | 450 | $group, |
451 | 451 | array( |
452 | - 'name' => __( 'Overview', 'lsx-health-plan' ), |
|
452 | + 'name' => __('Overview', 'lsx-health-plan'), |
|
453 | 453 | 'id' => 'description', |
454 | 454 | 'type' => 'wysiwyg', |
455 | 455 | ) |
456 | 456 | ); |
457 | 457 | |
458 | - if ( post_type_exists( 'workout' ) ) { |
|
458 | + if (post_type_exists('workout')) { |
|
459 | 459 | $cmb->add_group_field( |
460 | 460 | $group, |
461 | 461 | array( |
462 | - 'name' => __( 'Workouts', 'lsx-health-plan' ), |
|
462 | + 'name' => __('Workouts', 'lsx-health-plan'), |
|
463 | 463 | 'id' => 'connected_workouts', |
464 | - 'desc' => __( 'Connect the workout(s) that apply to this section.', 'lsx-health-plan' ), |
|
464 | + 'desc' => __('Connect the workout(s) that apply to this section.', 'lsx-health-plan'), |
|
465 | 465 | 'type' => 'post_search_ajax', |
466 | 466 | 'limit' => 15, |
467 | 467 | 'sortable' => true, |
468 | 468 | 'query_args' => array( |
469 | - 'post_type' => array( 'workout' ), |
|
470 | - 'post_status' => array( 'publish' ), |
|
469 | + 'post_type' => array('workout'), |
|
470 | + 'post_status' => array('publish'), |
|
471 | 471 | 'posts_per_page' => -1, |
472 | 472 | ), |
473 | 473 | 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-33', |
@@ -475,40 +475,40 @@ discard block |
||
475 | 475 | ); |
476 | 476 | } |
477 | 477 | |
478 | - if ( post_type_exists( 'meal' ) ) { |
|
478 | + if (post_type_exists('meal')) { |
|
479 | 479 | $cmb->add_group_field( |
480 | 480 | $group, |
481 | 481 | array( |
482 | - 'name' => __( 'Meals', 'lsx-health-plan' ), |
|
483 | - 'desc' => __( 'Connect the meal(s) that apply to this section.', 'lsx-health-plan' ), |
|
482 | + 'name' => __('Meals', 'lsx-health-plan'), |
|
483 | + 'desc' => __('Connect the meal(s) that apply to this section.', 'lsx-health-plan'), |
|
484 | 484 | 'id' => 'connected_meals', |
485 | 485 | 'type' => 'post_search_ajax', |
486 | 486 | // Optional : |
487 | 487 | 'limit' => 15, // Limit selection to X items only (default 1) |
488 | 488 | 'sortable' => true, // Allow selected items to be sortable (default false) |
489 | 489 | 'query_args' => array( |
490 | - 'post_type' => array( 'meal' ), |
|
491 | - 'post_status' => array( 'publish' ), |
|
490 | + 'post_type' => array('meal'), |
|
491 | + 'post_status' => array('publish'), |
|
492 | 492 | 'posts_per_page' => -1, |
493 | 493 | ), |
494 | 494 | 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-33', |
495 | 495 | ) |
496 | 496 | ); |
497 | 497 | } |
498 | - if ( post_type_exists( 'tip' ) ) { |
|
498 | + if (post_type_exists('tip')) { |
|
499 | 499 | $cmb->add_group_field( |
500 | 500 | $group, |
501 | 501 | array( |
502 | - 'name' => __( 'Tips', 'lsx-health-plan' ), |
|
502 | + 'name' => __('Tips', 'lsx-health-plan'), |
|
503 | 503 | 'id' => 'connected_tips', |
504 | - 'desc' => __( 'Connect the tip(s) that apply to this section.', 'lsx-health-plan' ), |
|
504 | + 'desc' => __('Connect the tip(s) that apply to this section.', 'lsx-health-plan'), |
|
505 | 505 | 'type' => 'post_search_ajax', |
506 | 506 | // Optional : |
507 | - 'limit' => 15, // Limit selection to X items only (default 1) |
|
508 | - 'sortable' => true, // Allow selected items to be sortable (default false) |
|
507 | + 'limit' => 15, // Limit selection to X items only (default 1) |
|
508 | + 'sortable' => true, // Allow selected items to be sortable (default false) |
|
509 | 509 | 'query_args' => array( |
510 | - 'post_type' => array( 'tip' ), |
|
511 | - 'post_status' => array( 'publish' ), |
|
510 | + 'post_type' => array('tip'), |
|
511 | + 'post_status' => array('publish'), |
|
512 | 512 | 'posts_per_page' => -1, |
513 | 513 | ), |
514 | 514 | 'classes' => 'lsx-field-col lsx-field-add-field lsx-field-col-33', |
@@ -10,13 +10,13 @@ discard block |
||
10 | 10 | $muscle_group = lsx_health_plan_muscle_group_equipment(); |
11 | 11 | |
12 | 12 | // Getting translated endpoint. |
13 | -$exercise = \lsx_health_plan\functions\get_option( 'endpoint_exercise_single', 'exercise' ); |
|
13 | +$exercise = \lsx_health_plan\functions\get_option('endpoint_exercise_single', 'exercise'); |
|
14 | 14 | |
15 | -$connected_members = get_post_meta( get_the_ID(), ( $exercise . '_connected_team_member' ), true ); |
|
16 | -$connected_articles = get_post_meta( get_the_ID(), ( $exercise . '_connected_articles' ), true ); |
|
15 | +$connected_members = get_post_meta(get_the_ID(), ($exercise . '_connected_team_member'), true); |
|
16 | +$connected_articles = get_post_meta(get_the_ID(), ($exercise . '_connected_articles'), true); |
|
17 | 17 | |
18 | 18 | $sharing = 'sharing-disabled'; |
19 | -if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : |
|
19 | +if (class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : |
|
20 | 20 | $sharing = 'sharing-enabled'; |
21 | 21 | endif; |
22 | 22 | |
@@ -34,51 +34,51 @@ discard block |
||
34 | 34 | |
35 | 35 | <div id="single-exercise" class="entry-content"> |
36 | 36 | |
37 | - <div class="exercise-title-section title-lined <?php echo esc_html( $sharing ); ?>"> |
|
38 | - <?php if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?> |
|
37 | + <div class="exercise-title-section title-lined <?php echo esc_html($sharing); ?>"> |
|
38 | + <?php if (class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?> |
|
39 | 39 | |
40 | 40 | <?php |
41 | - if ( class_exists( 'LSX_Sharing' ) ) { |
|
41 | + if (class_exists('LSX_Sharing')) { |
|
42 | 42 | lsx_content_sharing(); |
43 | 43 | } else { |
44 | - if ( function_exists( 'sharing_display' ) ) { |
|
45 | - sharing_display( '', true ); |
|
44 | + if (function_exists('sharing_display')) { |
|
45 | + sharing_display('', true); |
|
46 | 46 | } |
47 | 47 | |
48 | - if ( class_exists( 'Jetpack_Likes' ) ) { |
|
48 | + if (class_exists('Jetpack_Likes')) { |
|
49 | 49 | $custom_likes = new Jetpack_Likes(); |
50 | - echo wp_kses_post( $custom_likes->post_likes( '' ) ); |
|
50 | + echo wp_kses_post($custom_likes->post_likes('')); |
|
51 | 51 | } |
52 | 52 | } |
53 | 53 | ?> |
54 | 54 | <?php endif ?> |
55 | 55 | |
56 | - <?php lsx_health_plan_exercise_title( '<h2>', '</h2>' ); ?> |
|
56 | + <?php lsx_health_plan_exercise_title('<h2>', '</h2>'); ?> |
|
57 | 57 | </div> |
58 | - <?php echo wp_kses_post( lsx_hp_member_connected( $connected_members, 'exercise' ) ); ?> |
|
58 | + <?php echo wp_kses_post(lsx_hp_member_connected($connected_members, 'exercise')); ?> |
|
59 | 59 | <div class="row"> |
60 | 60 | <div class="col-md-6 exercise-image lsx-hp-shadow"> |
61 | 61 | |
62 | 62 | <?php |
63 | 63 | $lsx_hp = lsx_health_plan(); |
64 | 64 | |
65 | - if ( $lsx_hp->frontend->gallery->has_gallery( get_the_ID() ) ) { |
|
65 | + if ($lsx_hp->frontend->gallery->has_gallery(get_the_ID())) { |
|
66 | 66 | lsx_health_plan_gallery(); |
67 | 67 | } else { |
68 | 68 | $featured_image = get_the_post_thumbnail(); |
69 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
70 | - the_post_thumbnail( 'large', array( |
|
69 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
70 | + the_post_thumbnail('large', array( |
|
71 | 71 | 'class' => 'aligncenter', |
72 | - ) ); |
|
72 | + )); |
|
73 | 73 | } else { |
74 | 74 | ?> |
75 | - <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
75 | + <img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
76 | 76 | <?php |
77 | 77 | } |
78 | 78 | } |
79 | 79 | ?> |
80 | 80 | |
81 | - <?php if ( ( ! empty( $exercise_type ) ) || ( ! empty( $equipment ) ) || ( ! empty( $muscle_group ) ) ) { ?> |
|
81 | + <?php if (( ! empty($exercise_type)) || ( ! empty($equipment)) || ( ! empty($muscle_group))) { ?> |
|
82 | 82 | <div class="exercise-data"> |
83 | 83 | <?php lsx_health_plan_exercise_data(); ?> |
84 | 84 | </div> |
@@ -86,12 +86,12 @@ discard block |
||
86 | 86 | </div> |
87 | 87 | <div class="col-md-6 exercise-content"> |
88 | 88 | <?php the_content(); ?> |
89 | - <?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?> |
|
89 | + <?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?> |
|
90 | 90 | <div class="back-plan-btn"> |
91 | 91 | <?php |
92 | - if ( function_exists( 'wc_get_page_id' ) ) { |
|
92 | + if (function_exists('wc_get_page_id')) { |
|
93 | 93 | ?> |
94 | - <a class="btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'Back to my exercises', 'lsx-health-plan' ); ?></a> |
|
94 | + <a class="btn" href="<?php echo wp_kses_post(get_permalink(wc_get_page_id('myaccount'))); ?>"><?php esc_html_e('Back to my exercises', 'lsx-health-plan'); ?></a> |
|
95 | 95 | <?php |
96 | 96 | } |
97 | 97 | ?> |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | </article><!-- #post-## --> |
106 | 106 | |
107 | 107 | <?php |
108 | -if ( ! empty( $connected_articles ) ) { |
|
109 | - lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) ); |
|
108 | +if ( ! empty($connected_articles)) { |
|
109 | + lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan')); |
|
110 | 110 | } |
111 | 111 | ?> |
112 | 112 |
@@ -12,31 +12,31 @@ discard block |
||
12 | 12 | <?php |
13 | 13 | $column_class = '4'; |
14 | 14 | // Check for shortcode overrides. |
15 | -if ( null !== $shortcode_args ) { |
|
16 | - if ( isset( $shortcode_args['columns'] ) ) { |
|
15 | +if (null !== $shortcode_args) { |
|
16 | + if (isset($shortcode_args['columns'])) { |
|
17 | 17 | $column_class = $shortcode_args['columns']; |
18 | - $column_class = \lsx_health_plan\functions\column_class( $column_class ); |
|
18 | + $column_class = \lsx_health_plan\functions\column_class($column_class); |
|
19 | 19 | } |
20 | 20 | } |
21 | 21 | ?> |
22 | 22 | |
23 | -<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr( $column_class ); ?>"> |
|
23 | +<div class="col-xs-12 col-sm-6 col-md-<?php echo esc_attr($column_class); ?>"> |
|
24 | 24 | <article class="lsx-slot box-shadow"> |
25 | 25 | <?php lsx_entry_top(); ?> |
26 | 26 | |
27 | 27 | <?php lsx_hp_recipe_plan_meta(); ?> |
28 | 28 | |
29 | 29 | <div class="recipe-feature-img"> |
30 | - <a href="<?php echo esc_url( get_permalink() ); ?>"> |
|
30 | + <a href="<?php echo esc_url(get_permalink()); ?>"> |
|
31 | 31 | <?php |
32 | 32 | $featured_image = get_the_post_thumbnail(); |
33 | - if ( ! empty( $featured_image ) && '' !== $featured_image ) { |
|
34 | - the_post_thumbnail( 'lsx-thumbnail-square', array( |
|
33 | + if ( ! empty($featured_image) && '' !== $featured_image) { |
|
34 | + the_post_thumbnail('lsx-thumbnail-square', array( |
|
35 | 35 | 'class' => 'aligncenter', |
36 | - ) ); |
|
36 | + )); |
|
37 | 37 | } else { |
38 | 38 | ?> |
39 | - <img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>"> |
|
39 | + <img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>"> |
|
40 | 40 | <?php |
41 | 41 | } |
42 | 42 | ?> |
@@ -44,10 +44,10 @@ discard block |
||
44 | 44 | </div> |
45 | 45 | <div class="content-box white-bg"> |
46 | 46 | <?php lsx_health_plan_recipe_data(); ?> |
47 | - <a class="recipe-title-link" href="<?php echo esc_url( get_permalink() ); ?>"> |
|
48 | - <?php the_title( '<h3 class="recipe-title">', '</h3>' ); ?> |
|
47 | + <a class="recipe-title-link" href="<?php echo esc_url(get_permalink()); ?>"> |
|
48 | + <?php the_title('<h3 class="recipe-title">', '</h3>'); ?> |
|
49 | 49 | </a> |
50 | - <a href="<?php echo esc_url( get_permalink() ); ?>" class="btn border-btn"><?php esc_html_e( 'View Recipe', 'lsx-health-plan' ); ?></a> |
|
50 | + <a href="<?php echo esc_url(get_permalink()); ?>" class="btn border-btn"><?php esc_html_e('View Recipe', 'lsx-health-plan'); ?></a> |
|
51 | 51 | </div> |
52 | 52 | <?php lsx_entry_bottom(); ?> |
53 | 53 | </article> |