Passed
Push — master ( 28e31b...62acb0 )
by Warwick
04:33
created
includes/shortcodes.php 2 patches
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@  discard block
 block discarded – undo
14 14
  */
15 15
 function restricted_content() {
16 16
 	$content = '';
17
-	if ( ! is_user_logged_in() ) {
17
+	if ( ! is_user_logged_in()) {
18 18
 		ob_start();
19
-		echo do_shortcode( '[woocommerce_my_account]' );
19
+		echo do_shortcode('[woocommerce_my_account]');
20 20
 		$content = ob_get_clean();
21 21
 	}
22 22
 	return $content;
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
  *
52 52
  * @return void
53 53
  */
54
-function all_plans_box( $args = array() ) {
54
+function all_plans_box($args = array()) {
55 55
 
56 56
 	ob_start();
57 57
 	echo lsx_health_plan_all_plans_block(); // WPCS: XSS OK.
@@ -64,18 +64,18 @@  discard block
 block discarded – undo
64 64
  *
65 65
  * @return void
66 66
  */
67
-function day_plan_box( $args = array() ) {
67
+function day_plan_box($args = array()) {
68 68
 	$defaults = array(
69 69
 		'week_view'      => false,
70 70
 		'show_downloads' => false,
71 71
 		'plan'           => '',
72 72
 	);
73
-	$args     = wp_parse_args( $args, $defaults );
73
+	$args = wp_parse_args($args, $defaults);
74 74
 	ob_start();
75
-	if ( false === $args['week_view'] ) {
76
-		echo lsx_health_plan_day_plan_block( $args ); // WPCS: XSS OK.
75
+	if (false === $args['week_view']) {
76
+		echo lsx_health_plan_day_plan_block($args); // WPCS: XSS OK.
77 77
 	} else {
78
-		echo lsx_health_plan_week_plan_block( $args ); // WPCS: XSS OK.
78
+		echo lsx_health_plan_week_plan_block($args); // WPCS: XSS OK.
79 79
 	}
80 80
 	$content = ob_get_clean();
81 81
 	return $content;
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
  * @param array $args
88 88
  * @return void
89 89
  */
90
-function exercise_box( $args = array() ) {
90
+function exercise_box($args = array()) {
91 91
 	$defaults = array(
92 92
 		'include'       => '',
93 93
 		'term'          => '',
@@ -106,9 +106,9 @@  discard block
 block discarded – undo
106 106
 		'parent'        => false,
107 107
 		'modal_content' => 'excerpt',
108 108
 	);
109
-	$args     = wp_parse_args( $args, $defaults );
109
+	$args = wp_parse_args($args, $defaults);
110 110
 	ob_start();
111
-	echo lsx_health_plan_items( $args ); // WPCS: XSS OK.
111
+	echo lsx_health_plan_items($args); // WPCS: XSS OK.
112 112
 	$content = ob_get_clean();
113 113
 	return $content;
114 114
 }
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
 	echo lsx_health_plan_featured_video_block(); // WPCS: XSS OK.
124 124
 	$content = ob_get_clean();
125 125
 
126
-	wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
127
-	wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
126
+	wp_enqueue_script('slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array('jquery'), LSX_HEALTH_PLAN_VER, true);
127
+	wp_enqueue_script('lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array('slick'), LSX_HEALTH_PLAN_VER, true);
128 128
 	return $content;
129 129
 }
130 130
 
@@ -137,8 +137,8 @@  discard block
 block discarded – undo
137 137
 	ob_start();
138 138
 	echo lsx_health_plan_featured_recipes_block(); // WPCS: XSS OK.
139 139
 	$content = ob_get_clean();
140
-	wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
141
-	wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
140
+	wp_enqueue_script('slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array('jquery'), LSX_HEALTH_PLAN_VER, true);
141
+	wp_enqueue_script('lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array('slick'), LSX_HEALTH_PLAN_VER, true);
142 142
 	return $content;
143 143
 }
144 144
 
@@ -151,8 +151,8 @@  discard block
 block discarded – undo
151 151
 	ob_start();
152 152
 	echo lsx_health_plan_featured_tips_block(); // WPCS: XSS OK.
153 153
 	$content = ob_get_clean();
154
-	wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
155
-	wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
154
+	wp_enqueue_script('slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array('jquery'), LSX_HEALTH_PLAN_VER, true);
155
+	wp_enqueue_script('lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array('slick'), LSX_HEALTH_PLAN_VER, true);
156 156
 	return $content;
157 157
 }
158 158
 
@@ -163,8 +163,8 @@  discard block
 block discarded – undo
163 163
  */
164 164
 function account_notices() {
165 165
 	$content = '';
166
-	if ( function_exists( 'wc_print_notices' ) ) {
167
-		$content = wc_print_notices( true );
166
+	if (function_exists('wc_print_notices')) {
167
+		$content = wc_print_notices(true);
168 168
 	}
169 169
 	return $content;
170 170
 }
Please login to merge, or discard this patch.
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@  discard block
 block discarded – undo
13 13
  * @return string
14 14
  */
15 15
 function restricted_content() {
16
-	$content = '';
17
-	if ( ! is_user_logged_in() ) {
18
-		ob_start();
19
-		echo do_shortcode( '[woocommerce_my_account]' );
20
-		$content = ob_get_clean();
21
-	}
22
-	return $content;
16
+     $content = '';
17
+     if ( ! is_user_logged_in() ) {
18
+          ob_start();
19
+          echo do_shortcode( '[woocommerce_my_account]' );
20
+          $content = ob_get_clean();
21
+     }
22
+     return $content;
23 23
 }
24 24
 
25 25
 /**
@@ -28,10 +28,10 @@  discard block
 block discarded – undo
28 28
  * @return void
29 29
  */
30 30
 function my_profile_tabs() {
31
-	ob_start();
32
-	echo lsx_health_plan_my_profile_tabs(); // WPCS: XSS OK.
33
-	$content = ob_get_clean();
34
-	return $content;
31
+     ob_start();
32
+     echo lsx_health_plan_my_profile_tabs(); // WPCS: XSS OK.
33
+     $content = ob_get_clean();
34
+     return $content;
35 35
 }
36 36
 
37 37
 /**
@@ -40,10 +40,10 @@  discard block
 block discarded – undo
40 40
  * @return void
41 41
  */
42 42
 function my_profile_box() {
43
-	ob_start();
44
-	echo lsx_health_plan_my_profile_box(); // WPCS: XSS OK.
45
-	$content = ob_get_clean();
46
-	return $content;
43
+     ob_start();
44
+     echo lsx_health_plan_my_profile_box(); // WPCS: XSS OK.
45
+     $content = ob_get_clean();
46
+     return $content;
47 47
 }
48 48
 
49 49
 /**
@@ -53,10 +53,10 @@  discard block
 block discarded – undo
53 53
  */
54 54
 function all_plans_box( $args = array() ) {
55 55
 
56
-	ob_start();
57
-	echo lsx_health_plan_all_plans_block(); // WPCS: XSS OK.
58
-	$content = ob_get_clean();
59
-	return $content;
56
+     ob_start();
57
+     echo lsx_health_plan_all_plans_block(); // WPCS: XSS OK.
58
+     $content = ob_get_clean();
59
+     return $content;
60 60
 }
61 61
 
62 62
 /**
@@ -65,20 +65,20 @@  discard block
 block discarded – undo
65 65
  * @return void
66 66
  */
67 67
 function day_plan_box( $args = array() ) {
68
-	$defaults = array(
69
-		'week_view'      => false,
70
-		'show_downloads' => false,
71
-		'plan'           => '',
72
-	);
73
-	$args     = wp_parse_args( $args, $defaults );
74
-	ob_start();
75
-	if ( false === $args['week_view'] ) {
76
-		echo lsx_health_plan_day_plan_block( $args ); // WPCS: XSS OK.
77
-	} else {
78
-		echo lsx_health_plan_week_plan_block( $args ); // WPCS: XSS OK.
79
-	}
80
-	$content = ob_get_clean();
81
-	return $content;
68
+     $defaults = array(
69
+          'week_view'      => false,
70
+          'show_downloads' => false,
71
+          'plan'           => '',
72
+     );
73
+     $args     = wp_parse_args( $args, $defaults );
74
+     ob_start();
75
+     if ( false === $args['week_view'] ) {
76
+          echo lsx_health_plan_day_plan_block( $args ); // WPCS: XSS OK.
77
+     } else {
78
+          echo lsx_health_plan_week_plan_block( $args ); // WPCS: XSS OK.
79
+     }
80
+     $content = ob_get_clean();
81
+     return $content;
82 82
 }
83 83
 
84 84
 /**
@@ -88,29 +88,29 @@  discard block
 block discarded – undo
88 88
  * @return void
89 89
  */
90 90
 function exercise_box( $args = array() ) {
91
-	$defaults = array(
92
-		'include'       => '',
93
-		'term'          => '',
94
-		'taxonomy'      => '',
95
-		'view_more'     => false,
96
-		'columns'       => 3,
97
-		'limit'         => 4,
98
-		'post_type'     => 'exercise',
99
-		'orderby'       => 'date',
100
-		'order'         => 'DESC',
101
-		'description'   => 'none',
102
-		'link'          => 'item',
103
-		'link_class'    => 'btn border-btn',
104
-		'layout'        => 'grid',
105
-		'image_size'    => 'lsx-thumbnail-square',
106
-		'parent'        => false,
107
-		'modal_content' => 'excerpt',
108
-	);
109
-	$args     = wp_parse_args( $args, $defaults );
110
-	ob_start();
111
-	echo lsx_health_plan_items( $args ); // WPCS: XSS OK.
112
-	$content = ob_get_clean();
113
-	return $content;
91
+     $defaults = array(
92
+          'include'       => '',
93
+          'term'          => '',
94
+          'taxonomy'      => '',
95
+          'view_more'     => false,
96
+          'columns'       => 3,
97
+          'limit'         => 4,
98
+          'post_type'     => 'exercise',
99
+          'orderby'       => 'date',
100
+          'order'         => 'DESC',
101
+          'description'   => 'none',
102
+          'link'          => 'item',
103
+          'link_class'    => 'btn border-btn',
104
+          'layout'        => 'grid',
105
+          'image_size'    => 'lsx-thumbnail-square',
106
+          'parent'        => false,
107
+          'modal_content' => 'excerpt',
108
+     );
109
+     $args     = wp_parse_args( $args, $defaults );
110
+     ob_start();
111
+     echo lsx_health_plan_items( $args ); // WPCS: XSS OK.
112
+     $content = ob_get_clean();
113
+     return $content;
114 114
 }
115 115
 
116 116
 /**
@@ -119,13 +119,13 @@  discard block
 block discarded – undo
119 119
  * @return void
120 120
  */
121 121
 function feature_video_box() {
122
-	ob_start();
123
-	echo lsx_health_plan_featured_video_block(); // WPCS: XSS OK.
124
-	$content = ob_get_clean();
122
+     ob_start();
123
+     echo lsx_health_plan_featured_video_block(); // WPCS: XSS OK.
124
+     $content = ob_get_clean();
125 125
 
126
-	wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
127
-	wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
128
-	return $content;
126
+     wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
127
+     wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
128
+     return $content;
129 129
 }
130 130
 
131 131
 /**
@@ -134,12 +134,12 @@  discard block
 block discarded – undo
134 134
  * @return void
135 135
  */
136 136
 function feature_recipes_box() {
137
-	ob_start();
138
-	echo lsx_health_plan_featured_recipes_block(); // WPCS: XSS OK.
139
-	$content = ob_get_clean();
140
-	wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
141
-	wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
142
-	return $content;
137
+     ob_start();
138
+     echo lsx_health_plan_featured_recipes_block(); // WPCS: XSS OK.
139
+     $content = ob_get_clean();
140
+     wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
141
+     wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
142
+     return $content;
143 143
 }
144 144
 
145 145
 /**
@@ -148,12 +148,12 @@  discard block
 block discarded – undo
148 148
  * @return void
149 149
  */
150 150
 function feature_tips_box() {
151
-	ob_start();
152
-	echo lsx_health_plan_featured_tips_block(); // WPCS: XSS OK.
153
-	$content = ob_get_clean();
154
-	wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
155
-	wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
156
-	return $content;
151
+     ob_start();
152
+     echo lsx_health_plan_featured_tips_block(); // WPCS: XSS OK.
153
+     $content = ob_get_clean();
154
+     wp_enqueue_script( 'slick', LSX_HEALTH_PLAN_URL . 'assets/js/slick.min.js', array( 'jquery' ), LSX_HEALTH_PLAN_VER, true );
155
+     wp_enqueue_script( 'lsx-health-plan-slider', LSX_HEALTH_PLAN_URL . 'assets/js/lsx-health-plan-slider.min.js', array( 'slick' ), LSX_HEALTH_PLAN_VER, true );
156
+     return $content;
157 157
 }
158 158
 
159 159
 /**
@@ -162,9 +162,9 @@  discard block
 block discarded – undo
162 162
  * @return string
163 163
  */
164 164
 function account_notices() {
165
-	$content = '';
166
-	if ( function_exists( 'wc_print_notices' ) ) {
167
-		$content = wc_print_notices( true );
168
-	}
169
-	return $content;
165
+     $content = '';
166
+     if ( function_exists( 'wc_print_notices' ) ) {
167
+          $content = wc_print_notices( true );
168
+     }
169
+     return $content;
170 170
 }
Please login to merge, or discard this patch.
includes/template-tags/woocommerce.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
 	global $product;
11 11
 
12 12
 	$restricted = false;
13
-	if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) {
14
-		$restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() );
13
+	if (function_exists('wc_memberships_is_post_content_restricted')) {
14
+		$restricted = wc_memberships_is_post_content_restricted() && ! current_user_can('wc_memberships_view_restricted_post_content', get_the_ID());
15 15
 	}
16
-	if ( true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products() ) {
16
+	if (true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products()) {
17 17
 		$products      = \lsx_health_plan\functions\woocommerce\get_plan_products();
18
-		$product_count = count( $products );
19
-		if ( 1 === (int) $product_count ) {
18
+		$product_count = count($products);
19
+		if (1 === (int) $product_count) {
20 20
 			$class = 'col-md-12';
21 21
 		} else {
22 22
 			$class = 'col-md-6';
@@ -24,25 +24,25 @@  discard block
 block discarded – undo
24 24
 		?>
25 25
 			<div class="plans-products-wrapper row">
26 26
 				<?php
27
-				foreach ( $products as $product ) {
28
-					$product = wc_get_product( $product );
27
+				foreach ($products as $product) {
28
+					$product = wc_get_product($product);
29 29
 					?>
30
-						<div class="plan-product <?php echo esc_attr( $class ); ?>">
31
-							<h3 class="title"><a href="<?php echo esc_html( $product->get_permalink() ); ?>"><?php echo esc_html( $product->get_title() ); ?></a></h3>
30
+						<div class="plan-product <?php echo esc_attr($class); ?>">
31
+							<h3 class="title"><a href="<?php echo esc_html($product->get_permalink()); ?>"><?php echo esc_html($product->get_title()); ?></a></h3>
32 32
 							<?php
33
-							$description = $product->is_type( 'variation' ) ? $product->get_description() : $product->get_short_description();
34
-							if ( '' !== $description ) {
33
+							$description = $product->is_type('variation') ? $product->get_description() : $product->get_short_description();
34
+							if ('' !== $description) {
35 35
 								?>
36 36
 									<div class="description">
37
-										<?php echo esc_html( $description ); ?>
37
+										<?php echo esc_html($description); ?>
38 38
 									</div>
39 39
 								<?php
40 40
 							}
41 41
 							?>
42
-							<?php echo wp_kses_post( $product->get_price_html() ); ?>
42
+							<?php echo wp_kses_post($product->get_price_html()); ?>
43 43
 
44 44
 							<div class="add-to-cart">
45
-								<a class="btn cta-btn" href="<?php echo esc_attr( $product->add_to_cart_url() ); ?>"><?php echo esc_attr( $product->add_to_cart_text() ); ?></a>
45
+								<a class="btn cta-btn" href="<?php echo esc_attr($product->add_to_cart_url()); ?>"><?php echo esc_attr($product->add_to_cart_text()); ?></a>
46 46
 							</div>
47 47
 						</div>
48 48
 					<?php
Please login to merge, or discard this patch.
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -7,38 +7,38 @@  discard block
 block discarded – undo
7 7
 
8 8
 
9 9
 function lsx_hp_single_plan_products() {
10
-	global $product;
10
+     global $product;
11 11
 
12
-	$restricted = false;
13
-	if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) {
14
-		$restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() );
15
-	}
16
-	if ( true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products() ) {
17
-		$products      = \lsx_health_plan\functions\woocommerce\get_plan_products();
18
-		$product_count = count( $products );
19
-		if ( 1 === (int) $product_count ) {
20
-			$class = 'col-md-12';
21
-		} else {
22
-			$class = 'col-md-6';
23
-		}
24
-		?>
12
+     $restricted = false;
13
+     if ( function_exists( 'wc_memberships_is_post_content_restricted' ) ) {
14
+          $restricted = wc_memberships_is_post_content_restricted() && ! current_user_can( 'wc_memberships_view_restricted_post_content', get_the_ID() );
15
+     }
16
+     if ( true === $restricted && \lsx_health_plan\functions\woocommerce\plan_has_products() ) {
17
+          $products      = \lsx_health_plan\functions\woocommerce\get_plan_products();
18
+          $product_count = count( $products );
19
+          if ( 1 === (int) $product_count ) {
20
+               $class = 'col-md-12';
21
+          } else {
22
+               $class = 'col-md-6';
23
+          }
24
+          ?>
25 25
 			<div class="plans-products-wrapper row">
26 26
 				<?php
27
-				foreach ( $products as $product ) {
28
-					$product = wc_get_product( $product );
29
-					?>
27
+                    foreach ( $products as $product ) {
28
+                         $product = wc_get_product( $product );
29
+                         ?>
30 30
 						<div class="plan-product <?php echo esc_attr( $class ); ?>">
31 31
 							<h3 class="title"><a href="<?php echo esc_html( $product->get_permalink() ); ?>"><?php echo esc_html( $product->get_title() ); ?></a></h3>
32 32
 							<?php
33
-							$description = $product->is_type( 'variation' ) ? $product->get_description() : $product->get_short_description();
34
-							if ( '' !== $description ) {
35
-								?>
33
+                                   $description = $product->is_type( 'variation' ) ? $product->get_description() : $product->get_short_description();
34
+                                   if ( '' !== $description ) {
35
+                                        ?>
36 36
 									<div class="description">
37 37
 										<?php echo esc_html( $description ); ?>
38 38
 									</div>
39 39
 								<?php
40
-							}
41
-							?>
40
+                                   }
41
+                                   ?>
42 42
 							<?php echo wp_kses_post( $product->get_price_html() ); ?>
43 43
 
44 44
 							<div class="add-to-cart">
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 							</div>
47 47
 						</div>
48 48
 					<?php
49
-				}
50
-				?>
49
+                    }
50
+                    ?>
51 51
 			</div>
52 52
 		<?php
53
-	}
53
+     }
54 54
 }
Please login to merge, or discard this patch.
includes/functions/woocommerce.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 function plan_has_products() {
16 16
 	$lsx_hp       = lsx_health_plan();
17 17
 	$has_products = false;
18
-	if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) {
18
+	if ( ! empty($lsx_hp->integrations->woocommerce->plans->product_ids)) {
19 19
 		$has_products = true;
20 20
 	}
21 21
 	return $has_products;
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 function get_plan_products() {
30 30
 	$lsx_hp       = lsx_health_plan();
31 31
 	$has_products = array();
32
-	if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) {
32
+	if ( ! empty($lsx_hp->integrations->woocommerce->plans->product_ids)) {
33 33
 		$has_products = $lsx_hp->integrations->woocommerce->plans->product_ids;
34 34
 	}
35 35
 	return $has_products;
@@ -42,20 +42,20 @@  discard block
 block discarded – undo
42 42
  */
43 43
 function get_membership_products() {
44 44
 	$product_ids = array();
45
-	if ( function_exists( 'wc_memberships_get_user_memberships' ) ) {
45
+	if (function_exists('wc_memberships_get_user_memberships')) {
46 46
 		$user_memberships = wc_memberships_get_user_memberships();
47 47
 
48
-		if ( ! empty( $user_memberships ) ) {
49
-			foreach ( $user_memberships as $membership ) {
48
+		if ( ! empty($user_memberships)) {
49
+			foreach ($user_memberships as $membership) {
50 50
 				$current_products = $membership->plan->get_product_ids();
51
-				if ( ! empty( $current_products ) ) {
52
-					$product_ids = array_merge( $product_ids, $current_products );
51
+				if ( ! empty($current_products)) {
52
+					$product_ids = array_merge($product_ids, $current_products);
53 53
 				}
54 54
 			}
55 55
 		}
56 56
 	}
57
-	if ( ! empty( $product_ids ) ) {
58
-		$product_ids = array_unique( $product_ids );
57
+	if ( ! empty($product_ids)) {
58
+		$product_ids = array_unique($product_ids);
59 59
 	}
60 60
 	return $product_ids;
61 61
 }
Please login to merge, or discard this patch.
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -13,12 +13,12 @@  discard block
 block discarded – undo
13 13
  * @return boolean
14 14
  */
15 15
 function plan_has_products() {
16
-	$lsx_hp       = lsx_health_plan();
17
-	$has_products = false;
18
-	if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) {
19
-		$has_products = true;
20
-	}
21
-	return $has_products;
16
+     $lsx_hp       = lsx_health_plan();
17
+     $has_products = false;
18
+     if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) {
19
+          $has_products = true;
20
+     }
21
+     return $has_products;
22 22
 }
23 23
 
24 24
 /**
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
  * @return array
28 28
  */
29 29
 function get_plan_products() {
30
-	$lsx_hp       = lsx_health_plan();
31
-	$has_products = array();
32
-	if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) {
33
-		$has_products = $lsx_hp->integrations->woocommerce->plans->product_ids;
34
-	}
35
-	return $has_products;
30
+     $lsx_hp       = lsx_health_plan();
31
+     $has_products = array();
32
+     if ( ! empty( $lsx_hp->integrations->woocommerce->plans->product_ids ) ) {
33
+          $has_products = $lsx_hp->integrations->woocommerce->plans->product_ids;
34
+     }
35
+     return $has_products;
36 36
 }
37 37
 
38 38
 /**
@@ -41,21 +41,21 @@  discard block
 block discarded – undo
41 41
  * @return array
42 42
  */
43 43
 function get_membership_products() {
44
-	$product_ids = array();
45
-	if ( function_exists( 'wc_memberships_get_user_memberships' ) ) {
46
-		$user_memberships = wc_memberships_get_user_memberships();
44
+     $product_ids = array();
45
+     if ( function_exists( 'wc_memberships_get_user_memberships' ) ) {
46
+          $user_memberships = wc_memberships_get_user_memberships();
47 47
 
48
-		if ( ! empty( $user_memberships ) ) {
49
-			foreach ( $user_memberships as $membership ) {
50
-				$current_products = $membership->plan->get_product_ids();
51
-				if ( ! empty( $current_products ) ) {
52
-					$product_ids = array_merge( $product_ids, $current_products );
53
-				}
54
-			}
55
-		}
56
-	}
57
-	if ( ! empty( $product_ids ) ) {
58
-		$product_ids = array_unique( $product_ids );
59
-	}
60
-	return $product_ids;
48
+          if ( ! empty( $user_memberships ) ) {
49
+               foreach ( $user_memberships as $membership ) {
50
+                    $current_products = $membership->plan->get_product_ids();
51
+                    if ( ! empty( $current_products ) ) {
52
+                         $product_ids = array_merge( $product_ids, $current_products );
53
+                    }
54
+               }
55
+          }
56
+     }
57
+     if ( ! empty( $product_ids ) ) {
58
+          $product_ids = array_unique( $product_ids );
59
+     }
60
+     return $product_ids;
61 61
 }
Please login to merge, or discard this patch.
includes/functions/recipes.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
  * @return boolean
15 15
  */
16 16
 function register_recipe_modal() {
17
-	remove_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
17
+	remove_action('lsx_content_sharing', 'lsx_sharing_output', 20);
18 18
 	ob_start();
19 19
 	include LSX_HEALTH_PLAN_PATH . '/templates/content-recipe.php';
20 20
 	$modal_body = ob_get_clean();
21
-	add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
22
-	\lsx_health_plan\functions\register_modal( 'recipe-modal-' . get_the_ID(), '', $modal_body );
21
+	add_action('lsx_content_sharing', 'lsx_sharing_output', 20);
22
+	\lsx_health_plan\functions\register_modal('recipe-modal-' . get_the_ID(), '', $modal_body);
23 23
 }
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
  * @return boolean
15 15
  */
16 16
 function register_recipe_modal() {
17
-	remove_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
18
-	ob_start();
19
-	include LSX_HEALTH_PLAN_PATH . '/templates/content-recipe.php';
20
-	$modal_body = ob_get_clean();
21
-	add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
22
-	\lsx_health_plan\functions\register_modal( 'recipe-modal-' . get_the_ID(), '', $modal_body );
17
+     remove_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
18
+     ob_start();
19
+     include LSX_HEALTH_PLAN_PATH . '/templates/content-recipe.php';
20
+     $modal_body = ob_get_clean();
21
+     add_action( 'lsx_content_sharing', 'lsx_sharing_output', 20 );
22
+     \lsx_health_plan\functions\register_modal( 'recipe-modal-' . get_the_ID(), '', $modal_body );
23 23
 }
Please login to merge, or discard this patch.
templates/single-meal.php 3 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 <?php lsx_content_wrap_before(); ?>
11 11
 
12
-<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
12
+<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
13 13
 
14 14
 	<?php lsx_content_before(); ?>
15 15
 
@@ -17,12 +17,12 @@  discard block
 block discarded – undo
17 17
 
18 18
 		<?php lsx_content_top(); ?>
19 19
 
20
-		<?php if ( have_posts() ) : ?>
20
+		<?php if (have_posts()) : ?>
21 21
 
22 22
 			<div class="post-wrapper">
23 23
 
24 24
 				<?php
25
-				while ( have_posts() ) :
25
+				while (have_posts()) :
26 26
 					the_post();
27 27
 				?>
28 28
 					<div class="meal-content">
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
 		<?php else : ?>
40 40
 
41
-			<?php get_template_part( 'partials/content', 'none' ); ?>
41
+			<?php get_template_part('partials/content', 'none'); ?>
42 42
 
43 43
 		<?php endif; ?>
44 44
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
 			<div class="post-wrapper">
23 23
 
24 24
 				<?php
25
-				while ( have_posts() ) :
26
-					the_post();
27
-				?>
25
+                    while ( have_posts() ) :
26
+                         the_post();
27
+                    ?>
28 28
 					<div class="meal-content">
29 29
 					<?php the_content(); ?>
30 30
 					</div>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,9 +36,12 @@
 block discarded – undo
36 36
 
37 37
 			<?php lsx_paging_nav(); ?>
38 38
 
39
-		<?php else : ?>
39
+		<?php else {
40
+     : ?>
40 41
 
41
-			<?php get_template_part( 'partials/content', 'none' ); ?>
42
+			<?php get_template_part( 'partials/content', 'none' );
43
+}
44
+?>
42 45
 
43 46
 		<?php endif; ?>
44 47
 
Please login to merge, or discard this patch.
templates/content-recipe.php 2 patches
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -7,22 +7,22 @@  discard block
 block discarded – undo
7 7
 ?>
8 8
 
9 9
 <?php
10
-$prep_time     = get_post_meta( get_the_ID(), 'recipe_prep_time', true );
11
-$cooking_time  = get_post_meta( get_the_ID(), 'recipe_cooking_time', true );
12
-$serves        = get_post_meta( get_the_ID(), 'recipe_serves', true );
13
-$portion       = get_post_meta( get_the_ID(), 'recipe_portion', true );
14
-$energy        = get_post_meta( get_the_ID(), 'recipe_energy', true );
15
-$protein       = get_post_meta( get_the_ID(), 'recipe_protein', true );
16
-$carbohydrates = get_post_meta( get_the_ID(), 'recipe_carbohydrates', true );
17
-$fibre         = get_post_meta( get_the_ID(), 'recipe_fibre', true );
18
-$fat           = get_post_meta( get_the_ID(), 'recipe_fat', true );
10
+$prep_time     = get_post_meta(get_the_ID(), 'recipe_prep_time', true);
11
+$cooking_time  = get_post_meta(get_the_ID(), 'recipe_cooking_time', true);
12
+$serves        = get_post_meta(get_the_ID(), 'recipe_serves', true);
13
+$portion       = get_post_meta(get_the_ID(), 'recipe_portion', true);
14
+$energy        = get_post_meta(get_the_ID(), 'recipe_energy', true);
15
+$protein       = get_post_meta(get_the_ID(), 'recipe_protein', true);
16
+$carbohydrates = get_post_meta(get_the_ID(), 'recipe_carbohydrates', true);
17
+$fibre         = get_post_meta(get_the_ID(), 'recipe_fibre', true);
18
+$fat           = get_post_meta(get_the_ID(), 'recipe_fat', true);
19 19
 
20 20
 
21 21
 // Getting translated endpoint.
22
-$recipe = \lsx_health_plan\functions\get_option( 'endpoint_recipe_single', 'recipe' );
22
+$recipe = \lsx_health_plan\functions\get_option('endpoint_recipe_single', 'recipe');
23 23
 
24
-$connected_members  = get_post_meta( get_the_ID(), ( $recipe . '_connected_team_member' ), true );
25
-$connected_articles = get_post_meta( get_the_ID(), ( $recipe . '_connected_articles' ), true );
24
+$connected_members  = get_post_meta(get_the_ID(), ($recipe . '_connected_team_member'), true);
25
+$connected_articles = get_post_meta(get_the_ID(), ($recipe . '_connected_articles'), true);
26 26
 ?>
27 27
 
28 28
 <?php lsx_entry_before(); ?>
@@ -37,41 +37,41 @@  discard block
 block discarded – undo
37 37
 
38 38
 	<div id="single-recipe" class="entry-content">
39 39
 		<h2 class="title-lined"><?php the_title(); ?>
40
-		<?php if ( class_exists( 'LSX_Sharing' ) || ( function_exists( 'sharing_display' ) || class_exists( 'Jetpack_Likes' ) ) ) : ?>
40
+		<?php if (class_exists('LSX_Sharing') || (function_exists('sharing_display') || class_exists('Jetpack_Likes'))) : ?>
41 41
 			<div class="post-sharing-wrapper">
42 42
 
43 43
 				<?php
44
-				if ( class_exists( 'LSX_Sharing' ) ) {
44
+				if (class_exists('LSX_Sharing')) {
45 45
 					lsx_content_sharing();
46 46
 				} else {
47
-					if ( function_exists( 'sharing_display' ) ) {
48
-						sharing_display( '', true );
47
+					if (function_exists('sharing_display')) {
48
+						sharing_display('', true);
49 49
 					}
50 50
 
51
-					if ( class_exists( 'Jetpack_Likes' ) ) {
51
+					if (class_exists('Jetpack_Likes')) {
52 52
 						$custom_likes = new Jetpack_Likes();
53
-						echo wp_kses_post( $custom_likes->post_likes( '' ) );
53
+						echo wp_kses_post($custom_likes->post_likes(''));
54 54
 					}
55 55
 				}
56 56
 				?>
57 57
 		<?php endif ?>
58 58
 		</h2>
59
-		<?php echo wp_kses_post( lsx_hp_member_connected( $connected_members, 'recipe' ) ); ?>
59
+		<?php echo wp_kses_post(lsx_hp_member_connected($connected_members, 'recipe')); ?>
60 60
 		<div class="row">
61 61
 			<div class="col-md-6 recipe-image lsx-hp-shadow">
62 62
 				<?php
63 63
 				$featured_image = get_the_post_thumbnail();
64
-				if ( ! empty( $featured_image ) && '' !== $featured_image ) {
65
-					the_post_thumbnail( 'large', array(
64
+				if ( ! empty($featured_image) && '' !== $featured_image) {
65
+					the_post_thumbnail('large', array(
66 66
 						'class' => 'aligncenter',
67
-					) );
67
+					));
68 68
 				} else {
69 69
 					?>
70
-					<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
70
+					<img loading="lazy" src="<?php echo esc_attr(plugin_dir_url(__FILE__) . '../assets/images/placeholder.jpg'); ?>">
71 71
 					<?php
72 72
 				}
73 73
 				?>
74
-				<?php if ( ( ! empty( $prep_time ) ) || ( ! empty( $cooking_time ) ) || ( ! empty( $serves ) ) || ( ! empty( $portion ) ) || ( ! empty( $energy ) ) || ( ! empty( $protein ) ) || ( ! empty( $carbohydrates ) ) || ( ! empty( $fibre ) ) || ( ! empty( $fat ) ) ) { ?>
74
+				<?php if (( ! empty($prep_time)) || ( ! empty($cooking_time)) || ( ! empty($serves)) || ( ! empty($portion)) || ( ! empty($energy)) || ( ! empty($protein)) || ( ! empty($carbohydrates)) || ( ! empty($fibre)) || ( ! empty($fat))) { ?>
75 75
 				<div class="recipe-data">
76 76
 					<?php lsx_health_plan_recipe_data(); ?>
77 77
 				</div>
@@ -79,12 +79,12 @@  discard block
 block discarded – undo
79 79
 			</div>
80 80
 			<div class="col-md-6 recipe-content">
81 81
 				<?php the_content(); ?>
82
-				<?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?>
82
+				<?php echo do_shortcode('[lsx_health_plan_featured_tips_block]'); ?>
83 83
 				<div class="back-plan-btn">
84 84
 				<?php
85
-				if ( function_exists( 'wc_get_page_id' ) ) {
85
+				if (function_exists('wc_get_page_id')) {
86 86
 					?>
87
-					<a class="btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'Back To My Plan', 'lsx-health-plan' ); ?></a>
87
+					<a class="btn" href="<?php echo wp_kses_post(get_permalink(wc_get_page_id('myaccount'))); ?>"><?php esc_html_e('Back To My Plan', 'lsx-health-plan'); ?></a>
88 88
 					<?php
89 89
 				}
90 90
 				?>
@@ -99,8 +99,8 @@  discard block
 block discarded – undo
99 99
 </article><!-- #post-## -->
100 100
 
101 101
 <?php
102
-if ( ! empty( $connected_articles ) ) {
103
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
102
+if ( ! empty($connected_articles)) {
103
+	lsx_hp_single_related($connected_articles, __('Related articles', 'lsx-health-plan'));
104 104
 }
105 105
 ?>
106 106
 
Please login to merge, or discard this patch.
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -41,36 +41,36 @@  discard block
 block discarded – undo
41 41
 			<div class="post-sharing-wrapper">
42 42
 
43 43
 				<?php
44
-				if ( class_exists( 'LSX_Sharing' ) ) {
45
-					lsx_content_sharing();
46
-				} else {
47
-					if ( function_exists( 'sharing_display' ) ) {
48
-						sharing_display( '', true );
49
-					}
50
-
51
-					if ( class_exists( 'Jetpack_Likes' ) ) {
52
-						$custom_likes = new Jetpack_Likes();
53
-						echo wp_kses_post( $custom_likes->post_likes( '' ) );
54
-					}
55
-				}
56
-				?>
44
+                    if ( class_exists( 'LSX_Sharing' ) ) {
45
+                         lsx_content_sharing();
46
+                    } else {
47
+                         if ( function_exists( 'sharing_display' ) ) {
48
+                              sharing_display( '', true );
49
+                         }
50
+
51
+                         if ( class_exists( 'Jetpack_Likes' ) ) {
52
+                              $custom_likes = new Jetpack_Likes();
53
+                              echo wp_kses_post( $custom_likes->post_likes( '' ) );
54
+                         }
55
+                    }
56
+                    ?>
57 57
 		<?php endif ?>
58 58
 		</h2>
59 59
 		<?php echo wp_kses_post( lsx_hp_member_connected( $connected_members, 'recipe' ) ); ?>
60 60
 		<div class="row">
61 61
 			<div class="col-md-6 recipe-image lsx-hp-shadow">
62 62
 				<?php
63
-				$featured_image = get_the_post_thumbnail();
64
-				if ( ! empty( $featured_image ) && '' !== $featured_image ) {
65
-					the_post_thumbnail( 'large', array(
66
-						'class' => 'aligncenter',
67
-					) );
68
-				} else {
69
-					?>
63
+                    $featured_image = get_the_post_thumbnail();
64
+                    if ( ! empty( $featured_image ) && '' !== $featured_image ) {
65
+                         the_post_thumbnail( 'large', array(
66
+                              'class' => 'aligncenter',
67
+                         ) );
68
+                    } else {
69
+                         ?>
70 70
 					<img loading="lazy" src="<?php echo esc_attr( plugin_dir_url( __FILE__ ) . '../assets/images/placeholder.jpg' ); ?>">
71 71
 					<?php
72
-				}
73
-				?>
72
+                    }
73
+                    ?>
74 74
 				<?php if ( ( ! empty( $prep_time ) ) || ( ! empty( $cooking_time ) ) || ( ! empty( $serves ) ) || ( ! empty( $portion ) ) || ( ! empty( $energy ) ) || ( ! empty( $protein ) ) || ( ! empty( $carbohydrates ) ) || ( ! empty( $fibre ) ) || ( ! empty( $fat ) ) ) { ?>
75 75
 				<div class="recipe-data">
76 76
 					<?php lsx_health_plan_recipe_data(); ?>
@@ -82,12 +82,12 @@  discard block
 block discarded – undo
82 82
 				<?php echo do_shortcode( '[lsx_health_plan_featured_tips_block]' ); ?>
83 83
 				<div class="back-plan-btn">
84 84
 				<?php
85
-				if ( function_exists( 'wc_get_page_id' ) ) {
86
-					?>
85
+                    if ( function_exists( 'wc_get_page_id' ) ) {
86
+                         ?>
87 87
 					<a class="btn" href="<?php echo wp_kses_post( get_permalink( wc_get_page_id( 'myaccount' ) ) ); ?>"><?php esc_html_e( 'Back To My Plan', 'lsx-health-plan' ); ?></a>
88 88
 					<?php
89
-				}
90
-				?>
89
+                    }
90
+                    ?>
91 91
 				</div>
92 92
 			</div>
93 93
 		</div>
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
 <?php
102 102
 if ( ! empty( $connected_articles ) ) {
103
-	lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
103
+     lsx_hp_single_related( $connected_articles, __( 'Related articles', 'lsx-health-plan' ) );
104 104
 }
105 105
 ?>
106 106
 
Please login to merge, or discard this patch.
templates/archive-plan.php 3 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 <?php lsx_content_wrap_before(); ?>
11 11
 
12
-<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
12
+<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
13 13
 
14 14
 	<?php lsx_content_before(); ?>
15 15
 
@@ -20,12 +20,12 @@  discard block
 block discarded – undo
20 20
 
21 21
 			<div class="post-wrapper plan-archive-plan archive-plan">
22 22
 				<div class="row lsx-plan-row">
23
-					<?php if ( have_posts() ) : ?>
23
+					<?php if (have_posts()) : ?>
24 24
 						<?php
25 25
 
26 26
 						$count = 0;
27 27
 
28
-						while ( have_posts() ) :
28
+						while (have_posts()) :
29 29
 							the_post();
30 30
 							?>
31 31
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
 					<?php else : ?>
37 37
 
38
-						<?php get_template_part( 'partials/content', 'none' ); ?>
38
+						<?php get_template_part('partials/content', 'none'); ?>
39 39
 
40 40
 					<?php endif; ?>
41 41
 				</div>
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,11 +23,11 @@
 block discarded – undo
23 23
 					<?php if ( have_posts() ) : ?>
24 24
 						<?php
25 25
 
26
-						$count = 0;
26
+                              $count = 0;
27 27
 
28
-						while ( have_posts() ) :
29
-							the_post();
30
-							?>
28
+                              while ( have_posts() ) :
29
+                                   the_post();
30
+                                   ?>
31 31
 
32 32
 							<?php include LSX_HEALTH_PLAN_PATH . '/templates/content-archive-plan.php'; ?>
33 33
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,9 +33,12 @@
 block discarded – undo
33 33
 
34 34
 						<?php endwhile; ?>
35 35
 
36
-					<?php else : ?>
36
+					<?php else {
37
+     : ?>
37 38
 
38
-						<?php get_template_part( 'partials/content', 'none' ); ?>
39
+						<?php get_template_part( 'partials/content', 'none' );
40
+}
41
+?>
39 42
 
40 43
 					<?php endif; ?>
41 44
 				</div>
Please login to merge, or discard this patch.
templates/single-workout.php 3 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 <?php lsx_content_wrap_before(); ?>
11 11
 
12
-<div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>">
12
+<div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>">
13 13
 
14 14
 	<?php lsx_content_before(); ?>
15 15
 
@@ -17,12 +17,12 @@  discard block
 block discarded – undo
17 17
 
18 18
 		<?php lsx_content_top(); ?>
19 19
 
20
-		<?php if ( have_posts() ) : ?>
20
+		<?php if (have_posts()) : ?>
21 21
 
22 22
 			<div class="post-wrapper">
23 23
 
24 24
 				<?php
25
-				while ( have_posts() ) :
25
+				while (have_posts()) :
26 26
 					the_post();
27 27
 				?>
28 28
 					<?php include LSX_HEALTH_PLAN_PATH . '/templates/tab-content-workout.php'; ?>
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
 		<?php else : ?>
37 37
 
38
-			<?php get_template_part( 'partials/content', 'none' ); ?>
38
+			<?php get_template_part('partials/content', 'none'); ?>
39 39
 
40 40
 		<?php endif; ?>
41 41
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,9 +36,12 @@
 block discarded – undo
36 36
 
37 37
 			<?php lsx_paging_nav(); ?>
38 38
 
39
-		<?php else : ?>
39
+		<?php else {
40
+     : ?>
40 41
 
41
-			<?php get_template_part( 'partials/content', 'none' ); ?>
42
+			<?php get_template_part( 'partials/content', 'none' );
43
+}
44
+?>
42 45
 
43 46
 		<?php endif; ?>
44 47
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,9 +22,9 @@
 block discarded – undo
22 22
 			<div class="post-wrapper">
23 23
 
24 24
 				<?php
25
-				while ( have_posts() ) :
26
-					the_post();
27
-				?>
25
+                    while ( have_posts() ) :
26
+                         the_post();
27
+                    ?>
28 28
 					<?php include LSX_HEALTH_PLAN_PATH . '/templates/tab-content-workout.php'; ?>
29 29
 
30 30
 				<?php endwhile; ?>
Please login to merge, or discard this patch.
templates/tab-content-recipes.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -19,41 +19,41 @@  discard block
 block discarded – undo
19 19
 		<?php
20 20
 			//the_content();
21 21
 
22
-			wp_link_pages( array(
22
+			wp_link_pages(array(
23 23
 				'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
24 24
 				'after'       => '</div></div>',
25 25
 				'link_before' => '<span>',
26 26
 				'link_after'  => '</span>',
27
-			) );
27
+			));
28 28
 		?>
29 29
 		<div class="single-plan-inner recipes-content">
30 30
 			<div class="single-plan-section-title recipes-plan title-lined">
31
-				<?php lsx_get_svg_icon( 'recipes.svg' ); ?>
32
-				<h2><?php esc_html_e( 'Recipes', 'lsx-health-plan' ); ?> <span class="blue-title"><?php the_title(); ?></span></h2>
31
+				<?php lsx_get_svg_icon('recipes.svg'); ?>
32
+				<h2><?php esc_html_e('Recipes', 'lsx-health-plan'); ?> <span class="blue-title"><?php the_title(); ?></span></h2>
33 33
 			</div>
34 34
 			<div class="recipes">
35 35
 			<div class="row eating-row">
36 36
 			<?php
37
-			$connected_recipes = get_post_meta( get_the_ID(), 'connected_recipes', true );
38
-			if ( empty( $connected_recipes ) ) {
39
-				$options = \lsx_health_plan\functions\get_option( 'all' );
40
-				if ( isset( $options['connected_recipes'] ) && '' !== $options['connected_recipes'] && ! empty( $options['connected_recipes'] ) ) {
37
+			$connected_recipes = get_post_meta(get_the_ID(), 'connected_recipes', true);
38
+			if (empty($connected_recipes)) {
39
+				$options = \lsx_health_plan\functions\get_option('all');
40
+				if (isset($options['connected_recipes']) && '' !== $options['connected_recipes'] && ! empty($options['connected_recipes'])) {
41 41
 					$connected_recipes = $options['connected_recipes'];
42
-					if ( ! array( $connected_recipes ) ) {
43
-						$connected_recipes = array( $connected_recipes );
42
+					if ( ! array($connected_recipes)) {
43
+						$connected_recipes = array($connected_recipes);
44 44
 					}
45 45
 				}
46 46
 			}
47
-			$args    = array(
47
+			$args = array(
48 48
 				'orderby'   => 'date',
49 49
 				'order'     => 'DESC',
50 50
 				'post_type' => 'recipe',
51 51
 				'post__in'  => $connected_recipes,
52 52
 			);
53
-			$recipes = new WP_Query( $args );
53
+			$recipes = new WP_Query($args);
54 54
 
55
-			if ( $recipes->have_posts() ) {
56
-				while ( $recipes->have_posts() ) {
55
+			if ($recipes->have_posts()) {
56
+				while ($recipes->have_posts()) {
57 57
 					$recipes->the_post();
58 58
 					$post_id = get_the_id();
59 59
 
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 						<div class="content-box box-shadow">
63 63
 							<h3 class="recipe-title title-lined"><?php the_title(); ?></h3>
64 64
 							<?php lsx_health_plan_recipe_data(); ?>
65
-							<a href="<?php echo esc_url( get_permalink() ); ?>" class="btn btn-full"><?php esc_html_e( 'View Recipe', 'lsx-health-plan' ); ?></a>
65
+							<a href="<?php echo esc_url(get_permalink()); ?>" class="btn btn-full"><?php esc_html_e('View Recipe', 'lsx-health-plan'); ?></a>
66 66
 						</div>
67 67
 					</div>
68 68
 				<?php
Please login to merge, or discard this patch.
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -17,15 +17,15 @@  discard block
 block discarded – undo
17 17
 
18 18
 	<div class="entry-content">
19 19
 		<?php
20
-			//the_content();
20
+               //the_content();
21 21
 
22
-			wp_link_pages( array(
23
-				'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
24
-				'after'       => '</div></div>',
25
-				'link_before' => '<span>',
26
-				'link_after'  => '</span>',
27
-			) );
28
-		?>
22
+               wp_link_pages( array(
23
+                    'before'      => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">',
24
+                    'after'       => '</div></div>',
25
+                    'link_before' => '<span>',
26
+                    'link_after'  => '</span>',
27
+               ) );
28
+          ?>
29 29
 		<div class="single-plan-inner recipes-content">
30 30
 			<div class="single-plan-section-title recipes-plan title-lined">
31 31
 				<?php lsx_get_svg_icon( 'recipes.svg' ); ?>
@@ -34,30 +34,30 @@  discard block
 block discarded – undo
34 34
 			<div class="recipes">
35 35
 			<div class="row eating-row">
36 36
 			<?php
37
-			$connected_recipes = get_post_meta( get_the_ID(), 'connected_recipes', true );
38
-			if ( empty( $connected_recipes ) ) {
39
-				$options = \lsx_health_plan\functions\get_option( 'all' );
40
-				if ( isset( $options['connected_recipes'] ) && '' !== $options['connected_recipes'] && ! empty( $options['connected_recipes'] ) ) {
41
-					$connected_recipes = $options['connected_recipes'];
42
-					if ( ! array( $connected_recipes ) ) {
43
-						$connected_recipes = array( $connected_recipes );
44
-					}
45
-				}
46
-			}
47
-			$args    = array(
48
-				'orderby'   => 'date',
49
-				'order'     => 'DESC',
50
-				'post_type' => 'recipe',
51
-				'post__in'  => $connected_recipes,
52
-			);
53
-			$recipes = new WP_Query( $args );
37
+               $connected_recipes = get_post_meta( get_the_ID(), 'connected_recipes', true );
38
+               if ( empty( $connected_recipes ) ) {
39
+                    $options = \lsx_health_plan\functions\get_option( 'all' );
40
+                    if ( isset( $options['connected_recipes'] ) && '' !== $options['connected_recipes'] && ! empty( $options['connected_recipes'] ) ) {
41
+                         $connected_recipes = $options['connected_recipes'];
42
+                         if ( ! array( $connected_recipes ) ) {
43
+                              $connected_recipes = array( $connected_recipes );
44
+                         }
45
+                    }
46
+               }
47
+               $args    = array(
48
+                    'orderby'   => 'date',
49
+                    'order'     => 'DESC',
50
+                    'post_type' => 'recipe',
51
+                    'post__in'  => $connected_recipes,
52
+               );
53
+               $recipes = new WP_Query( $args );
54 54
 
55
-			if ( $recipes->have_posts() ) {
56
-				while ( $recipes->have_posts() ) {
57
-					$recipes->the_post();
58
-					$post_id = get_the_id();
55
+               if ( $recipes->have_posts() ) {
56
+                    while ( $recipes->have_posts() ) {
57
+                         $recipes->the_post();
58
+                         $post_id = get_the_id();
59 59
 
60
-					?>
60
+                         ?>
61 61
 					<div class="col-md-4 recipe-column">
62 62
 						<div class="content-box box-shadow">
63 63
 							<h3 class="recipe-title title-lined"><?php the_title(); ?></h3>
@@ -66,9 +66,9 @@  discard block
 block discarded – undo
66 66
 						</div>
67 67
 					</div>
68 68
 				<?php
69
-				}
70
-			}
71
-			?>
69
+                    }
70
+               }
71
+               ?>
72 72
 			<?php wp_reset_postdata(); ?>
73 73
 			</div>
74 74
 			</div>
Please login to merge, or discard this patch.