Completed
Pull Request — master (#1233)
by Dan
07:34
created
widgets/widget-woothemes-sensei-course-component.php 4 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -167,8 +167,6 @@
 block discarded – undo
167 167
 
168 168
 	/**
169 169
 	 * Load the desired component, if a method is available for it.
170
-	 * @param  string $component The component to potentially be loaded.
171
-     *
172 170
 	 * @since  1.0.0
173 171
 	 * @return void
174 172
 	 */
Please login to merge, or discard this patch.
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -64,11 +64,11 @@  discard block
 block discarded – undo
64 64
 		remove_filter( 'pre_get_posts', 'sensei_course_archive_filter', 10, 1 );
65 65
 
66 66
 		if ( in_array( $instance['component'], array_keys( $this->woo_widget_componentslist ) )
67
-            && ( 'activecourses' == $instance['component'] || 'completedcourses' == $instance['component'] )
68
-            && !is_user_logged_in() ) {
67
+			&& ( 'activecourses' == $instance['component'] || 'completedcourses' == $instance['component'] )
68
+			&& !is_user_logged_in() ) {
69 69
 
70 70
 			// No Output
71
-            return;
71
+			return;
72 72
 
73 73
 		} else {
74 74
 			/* Our variables from the widget settings. */
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	 * @param  array $instance The settings for this instance.
131 131
 	 * @return void
132 132
 	 */
133
-    public function form( $instance ) {
133
+	public function form( $instance ) {
134 134
 
135 135
 		/* Set up some default widget settings. */
136 136
 		/* Make sure all keys are added here, even with empty string values. */
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 	/**
169 169
 	 * Load the desired component, if a method is available for it.
170 170
 	 * @param  string $component The component to potentially be loaded.
171
-     *
171
+	 *
172 172
 	 * @since  1.0.0
173 173
 	 * @return void
174 174
 	 */
@@ -207,24 +207,24 @@  discard block
 block discarded – undo
207 207
 
208 208
 		}
209 209
 
210
-        if ( ! empty( $course_ids ) ) {
210
+		if ( ! empty( $course_ids ) ) {
211 211
 
212
-            $posts_array = Sensei()->course->course_query( intval( $instance['limit'] ), esc_attr( $instance['component'] ), $course_ids );
212
+			$posts_array = Sensei()->course->course_query( intval( $instance['limit'] ), esc_attr( $instance['component'] ), $course_ids );
213 213
 
214 214
 		} else {
215 215
 
216
-            if ( 'activecourses' == esc_attr( $instance['component'] ) || 'completedcourses' == esc_attr( $instance['component'] ) ) {
216
+			if ( 'activecourses' == esc_attr( $instance['component'] ) || 'completedcourses' == esc_attr( $instance['component'] ) ) {
217 217
 				$posts_array = array();
218 218
 
219
-            } else {
219
+			} else {
220 220
 
221
-                $course_args = array(
222
-                    'post_type' => 'course',
223
-                    'orderby'         	=> 'date',
224
-                    'order'           	=> 'DESC',
225
-                    'post_status'      	=> 'publish',
226
-                    'posts_per_page' => $instance['limit'],
227
-                );
221
+				$course_args = array(
222
+					'post_type' => 'course',
223
+					'orderby'         	=> 'date',
224
+					'order'           	=> 'DESC',
225
+					'post_status'      	=> 'publish',
226
+					'posts_per_page' => $instance['limit'],
227
+				);
228 228
 
229 229
 				$posts_array = get_posts( $course_args );
230 230
 			}
@@ -234,13 +234,13 @@  discard block
 block discarded – undo
234 234
 		if ( count( $posts_array ) > 0 ) { ?>
235 235
 			<ul>
236 236
 			<?php foreach ($posts_array as $post_item){
237
-		    	$post_id = absint( $post_item->ID );
238
-		    	$post_title = $post_item->post_title;
239
-		    	$user_info = get_userdata( absint( $post_item->post_author ) );
240
-		    	$author_link = get_author_posts_url( absint( $post_item->post_author ) );
241
-		    	$author_display_name = $user_info->display_name;
242
-		    	$author_id = $post_item->post_author;
243
-		    ?>
237
+				$post_id = absint( $post_item->ID );
238
+				$post_title = $post_item->post_title;
239
+				$user_info = get_userdata( absint( $post_item->post_author ) );
240
+				$author_link = get_author_posts_url( absint( $post_item->post_author ) );
241
+				$author_display_name = $user_info->display_name;
242
+				$author_id = $post_item->post_author;
243
+			?>
244 244
 		    	<li class="fix">
245 245
 		    		<?php do_action( 'sensei_course_image', $post_id ); ?>
246 246
 		    		<a href="<?php echo esc_url( get_permalink( $post_id ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>"><?php echo $post_title; ?></a>
@@ -255,9 +255,9 @@  discard block
 block discarded – undo
255 255
 		    	</li>
256 256
 		    <?php } // End For Loop ?>
257 257
 		    <?php if ( 'activecourses' == esc_attr( $instance['component'] ) || 'completedcourses' == esc_attr( $instance['component'] ) ) {
258
-		    	$my_account_page_id = intval( Sensei()->settings->settings[ 'my_course_page' ] );
259
-		    	echo '<li class="my-account fix"><a href="'. esc_url( get_permalink( $my_account_page_id ) ) .'">'.__('My Courses', 'woothemes-sensei').' <span class="meta-nav"></span></a></li>';
260
-		    } // End If Statement ?>
258
+				$my_account_page_id = intval( Sensei()->settings->settings[ 'my_course_page' ] );
259
+				echo '<li class="my-account fix"><a href="'. esc_url( get_permalink( $my_account_page_id ) ) .'">'.__('My Courses', 'woothemes-sensei').' <span class="meta-nav"></span></a></li>';
260
+			} // End If Statement ?>
261 261
 		</ul>
262 262
 		<?php } else {
263 263
 			// No posts returned. This means the user either has no active or no completed courses.
Please login to merge, or discard this patch.
Braces   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,8 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly.
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
5
+// Exit if accessed directly.
3 6
 
4 7
 /**
5 8
  * Sensei Course Component Widget
Please login to merge, or discard this patch.
Spacing   +72 added lines, -72 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly.
2
+if ( ! defined('ABSPATH')) exit; // Exit if accessed directly.
3 3
 
4 4
 /**
5 5
  * Sensei Course Component Widget
@@ -26,30 +26,30 @@  discard block
 block discarded – undo
26 26
 	public function __construct() {
27 27
 		/* Widget variable settings. */
28 28
 		$this->woo_widget_cssclass = 'widget_sensei_course_component';
29
-		$this->woo_widget_description = __( 'This widget will output a list of Courses - New, Featured, Free, Paid, Active, Completed.', 'woothemes-sensei' );
29
+		$this->woo_widget_description = __('This widget will output a list of Courses - New, Featured, Free, Paid, Active, Completed.', 'woothemes-sensei');
30 30
 		$this->woo_widget_idbase = 'sensei_course_component';
31
-		$this->woo_widget_title = __( 'Sensei - Course Component', 'woothemes-sensei' );
31
+		$this->woo_widget_title = __('Sensei - Course Component', 'woothemes-sensei');
32 32
 
33 33
 		$this->woo_widget_componentslist = array(
34
-												'usercourses' => __( 'New Courses', 'woothemes-sensei' ),
35
-												'featuredcourses' => __( 'Featured Courses', 'woothemes-sensei' ),
36
-												'activecourses' => __( 'My Active Courses', 'woothemes-sensei' ),
37
-												'completedcourses' => __( 'My Completed Courses', 'woothemes-sensei' ),
34
+												'usercourses' => __('New Courses', 'woothemes-sensei'),
35
+												'featuredcourses' => __('Featured Courses', 'woothemes-sensei'),
36
+												'activecourses' => __('My Active Courses', 'woothemes-sensei'),
37
+												'completedcourses' => __('My Completed Courses', 'woothemes-sensei'),
38 38
 												);
39 39
 
40 40
 		// Add support for the WooCommerce shelf.
41
-		if ( Sensei_WC::is_woocommerce_active() ) {
42
-			$this->woo_widget_componentslist['freecourses'] = __( 'Free Courses', 'woothemes-sensei' );
43
-			$this->woo_widget_componentslist['paidcourses'] = __( 'Paid Courses', 'woothemes-sensei' );
41
+		if (Sensei_WC::is_woocommerce_active()) {
42
+			$this->woo_widget_componentslist['freecourses'] = __('Free Courses', 'woothemes-sensei');
43
+			$this->woo_widget_componentslist['paidcourses'] = __('Paid Courses', 'woothemes-sensei');
44 44
 		}
45 45
 		/* Widget settings. */
46
-		$widget_ops = array( 'classname' => $this->woo_widget_cssclass, 'description' => $this->woo_widget_description );
46
+		$widget_ops = array('classname' => $this->woo_widget_cssclass, 'description' => $this->woo_widget_description);
47 47
 
48 48
 		/* Widget control settings. */
49
-		$control_ops = array( 'width' => 250, 'height' => 350, 'id_base' => $this->woo_widget_idbase );
49
+		$control_ops = array('width' => 250, 'height' => 350, 'id_base' => $this->woo_widget_idbase);
50 50
 
51 51
 		/* Create the widget. */
52
-		parent::__construct( $this->woo_widget_idbase, $this->woo_widget_title, $widget_ops, $control_ops );
52
+		parent::__construct($this->woo_widget_idbase, $this->woo_widget_title, $widget_ops, $control_ops);
53 53
 	} // End __construct()
54 54
 
55 55
 	/**
@@ -59,44 +59,44 @@  discard block
 block discarded – undo
59 59
 	 * @param  array $instance Widget settings for this instance.
60 60
 	 * @return void
61 61
 	 */
62
-	public function widget( $args, $instance ) {
62
+	public function widget($args, $instance) {
63 63
 
64
-		remove_filter( 'pre_get_posts', 'sensei_course_archive_filter', 10, 1 );
64
+		remove_filter('pre_get_posts', 'sensei_course_archive_filter', 10, 1);
65 65
 
66
-		if ( in_array( $instance['component'], array_keys( $this->woo_widget_componentslist ) )
67
-            && ( 'activecourses' == $instance['component'] || 'completedcourses' == $instance['component'] )
68
-            && !is_user_logged_in() ) {
66
+		if (in_array($instance['component'], array_keys($this->woo_widget_componentslist))
67
+            && ('activecourses' == $instance['component'] || 'completedcourses' == $instance['component'])
68
+            && ! is_user_logged_in()) {
69 69
 
70 70
 			// No Output
71 71
             return;
72 72
 
73 73
 		} else {
74 74
 			/* Our variables from the widget settings. */
75
-			$title = apply_filters('widget_title', $instance['title'], $instance, $this->id_base );
75
+			$title = apply_filters('widget_title', $instance['title'], $instance, $this->id_base);
76 76
 
77 77
 			/* Before widget (defined by themes). */
78 78
 			echo $args['before_widget'];
79 79
 
80 80
 			/* Display the widget title if one was input (before and after defined by themes). */
81
-			if ( $title ) { echo $args['before_title'] . $title . $args['after_title']; }
81
+			if ($title) { echo $args['before_title'].$title.$args['after_title']; }
82 82
 
83 83
 			/* Widget content. */
84 84
 			// Add actions for plugins/themes to hook onto.
85
-			do_action( $this->woo_widget_cssclass . '_top' );
85
+			do_action($this->woo_widget_cssclass.'_top');
86 86
 
87
-			if ( in_array( $instance['component'], array_keys( $this->woo_widget_componentslist ) ) ) {
88
-				$this->load_component( $instance );
87
+			if (in_array($instance['component'], array_keys($this->woo_widget_componentslist))) {
88
+				$this->load_component($instance);
89 89
 			}
90 90
 
91 91
 			// Add actions for plugins/themes to hook onto.
92
-			do_action( $this->woo_widget_cssclass . '_bottom' );
92
+			do_action($this->woo_widget_cssclass.'_bottom');
93 93
 
94 94
 			/* After widget (defined by themes). */
95 95
 			echo $args['after_widget'];
96 96
 
97 97
 		} // End If Statement
98 98
 
99
-		add_filter( 'pre_get_posts', 'sensei_course_archive_filter', 10, 1 );
99
+		add_filter('pre_get_posts', 'sensei_course_archive_filter', 10, 1);
100 100
 
101 101
 	} // End widget()
102 102
 
@@ -107,17 +107,17 @@  discard block
 block discarded – undo
107 107
 	 * @param  array $old_instance Previous settings.
108 108
 	 * @return array               Updated settings.
109 109
 	 */
110
-	public function update ( $new_instance, $old_instance ) {
110
+	public function update($new_instance, $old_instance) {
111 111
 		$instance = $old_instance;
112 112
 
113 113
 		/* Strip tags for title and name to remove HTML (important for text inputs). */
114
-		$instance['title'] = strip_tags( $new_instance['title'] );
114
+		$instance['title'] = strip_tags($new_instance['title']);
115 115
 
116 116
 		/* The select box is returning a text value, so we escape it. */
117
-		$instance['component'] = esc_attr( $new_instance['component'] );
117
+		$instance['component'] = esc_attr($new_instance['component']);
118 118
 
119 119
 		/* The select box is returning a text value, so we escape it. */
120
-		$instance['limit'] = esc_attr( $new_instance['limit'] );
120
+		$instance['limit'] = esc_attr($new_instance['limit']);
121 121
 
122 122
 
123 123
 		return $instance;
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	 * @param  array $instance The settings for this instance.
131 131
 	 * @return void
132 132
 	 */
133
-    public function form( $instance ) {
133
+    public function form($instance) {
134 134
 
135 135
 		/* Set up some default widget settings. */
136 136
 		/* Make sure all keys are added here, even with empty string values. */
@@ -140,26 +140,26 @@  discard block
 block discarded – undo
140 140
 						'limit' => 3
141 141
 					);
142 142
 
143
-		$instance = wp_parse_args( (array) $instance, $defaults );
143
+		$instance = wp_parse_args((array) $instance, $defaults);
144 144
 ?>
145 145
 		<!-- Widget Title: Text Input -->
146 146
 		<p>
147
-			<label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title (optional):', 'woothemes-sensei' ); ?></label>
148
-			<input type="text" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>"  value="<?php echo esc_attr( $instance['title'] ); ?>" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" />
147
+			<label for="<?php echo esc_attr($this->get_field_id('title')); ?>"><?php _e('Title (optional):', 'woothemes-sensei'); ?></label>
148
+			<input type="text" name="<?php echo esc_attr($this->get_field_name('title')); ?>"  value="<?php echo esc_attr($instance['title']); ?>" class="widefat" id="<?php echo esc_attr($this->get_field_id('title')); ?>" />
149 149
 		</p>
150 150
 		<!-- Widget Component: Select Input -->
151 151
 		<p>
152
-			<label for="<?php echo esc_attr( $this->get_field_id( 'component' ) ); ?>"><?php _e( 'Component:', 'woothemes-sensei' ); ?></label>
153
-			<select name="<?php echo esc_attr( $this->get_field_name( 'component' ) ); ?>" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'component' ) ); ?>">
154
-			<?php foreach ( $this->woo_widget_componentslist as $k => $v ) { ?>
155
-				<option value="<?php echo esc_attr( $k ); ?>"<?php selected( $instance['component'], $k ); ?>><?php echo $v; ?></option>
152
+			<label for="<?php echo esc_attr($this->get_field_id('component')); ?>"><?php _e('Component:', 'woothemes-sensei'); ?></label>
153
+			<select name="<?php echo esc_attr($this->get_field_name('component')); ?>" class="widefat" id="<?php echo esc_attr($this->get_field_id('component')); ?>">
154
+			<?php foreach ($this->woo_widget_componentslist as $k => $v) { ?>
155
+				<option value="<?php echo esc_attr($k); ?>"<?php selected($instance['component'], $k); ?>><?php echo $v; ?></option>
156 156
 			<?php } ?>
157 157
 			</select>
158 158
 		</p>
159 159
 		<!-- Widget Limit: Text Input -->
160 160
 		<p>
161
-			<label for="<?php echo esc_attr( $this->get_field_id( 'limit' ) ); ?>"><?php _e( 'Number of Courses (optional):', 'woothemes-sensei' ); ?></label>
162
-			<input type="text" name="<?php echo esc_attr( $this->get_field_name( 'limit' ) ); ?>"  value="<?php echo esc_attr( $instance['limit'] ); ?>" class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'limit' ) ); ?>" />
161
+			<label for="<?php echo esc_attr($this->get_field_id('limit')); ?>"><?php _e('Number of Courses (optional):', 'woothemes-sensei'); ?></label>
162
+			<input type="text" name="<?php echo esc_attr($this->get_field_name('limit')); ?>"  value="<?php echo esc_attr($instance['limit']); ?>" class="widefat" id="<?php echo esc_attr($this->get_field_id('limit')); ?>" />
163 163
 		</p>
164 164
 
165 165
 <?php
@@ -172,28 +172,28 @@  discard block
 block discarded – undo
172 172
 	 * @since  1.0.0
173 173
 	 * @return void
174 174
 	 */
175
-	protected function load_component ( $instance ) {
175
+	protected function load_component($instance) {
176 176
 		global  $current_user;
177 177
 
178 178
 		get_currentuserinfo();
179 179
 
180 180
 		$course_ids = array();
181
-		if ( 'activecourses' == esc_attr( $instance['component'] ) ) {
182
-			$courses = Sensei_Utils::sensei_check_for_activity( array( 'user_id' => $current_user->ID, 'type' => 'sensei_course_status', 'status' => 'in-progress' ), true );
181
+		if ('activecourses' == esc_attr($instance['component'])) {
182
+			$courses = Sensei_Utils::sensei_check_for_activity(array('user_id' => $current_user->ID, 'type' => 'sensei_course_status', 'status' => 'in-progress'), true);
183 183
 			// Need to always return an array, even with only 1 item
184
-			if ( !is_array($courses) ) {
185
-				$courses = array( $courses );
184
+			if ( ! is_array($courses)) {
185
+				$courses = array($courses);
186 186
 			}
187
-			foreach( $courses AS $course ) {
187
+			foreach ($courses AS $course) {
188 188
 				$course_ids[] = $course->comment_post_ID;
189 189
 			}
190
-		} elseif( 'completedcourses' == esc_attr( $instance['component'] ) ) {
191
-			$courses = Sensei_Utils::sensei_check_for_activity( array( 'user_id' => $current_user->ID, 'type' => 'sensei_course_status', 'status' => 'complete' ), true );
190
+		} elseif ('completedcourses' == esc_attr($instance['component'])) {
191
+			$courses = Sensei_Utils::sensei_check_for_activity(array('user_id' => $current_user->ID, 'type' => 'sensei_course_status', 'status' => 'complete'), true);
192 192
 			// Need to always return an array, even with only 1 item
193
-			if ( !is_array($courses) ) {
194
-				$courses = array( $courses );
193
+			if ( ! is_array($courses)) {
194
+				$courses = array($courses);
195 195
 			}
196
-			foreach( $courses AS $course ) {
196
+			foreach ($courses AS $course) {
197 197
 				$course_ids[] = $course->comment_post_ID;
198 198
 			}
199 199
 		} // End If Statement
@@ -201,19 +201,19 @@  discard block
 block discarded – undo
201 201
 		$posts_array = array();
202 202
 
203 203
 		// course_query() is buggy, it doesn't honour the 1st arg if includes are provided, so instead slice the includes
204
-		if ( !empty($instance['limit']) && intval( $instance['limit'] ) >= 1 && intval( $instance['limit'] ) < count($course_ids) ) {
204
+		if ( ! empty($instance['limit']) && intval($instance['limit']) >= 1 && intval($instance['limit']) < count($course_ids)) {
205 205
 
206
-			$course_ids = array_slice( $course_ids, 0, intval( $instance['limit'] ) ); // This does mean the order by is effectively ignored
206
+			$course_ids = array_slice($course_ids, 0, intval($instance['limit'])); // This does mean the order by is effectively ignored
207 207
 
208 208
 		}
209 209
 
210
-        if ( ! empty( $course_ids ) ) {
210
+        if ( ! empty($course_ids)) {
211 211
 
212
-            $posts_array = Sensei()->course->course_query( intval( $instance['limit'] ), esc_attr( $instance['component'] ), $course_ids );
212
+            $posts_array = Sensei()->course->course_query(intval($instance['limit']), esc_attr($instance['component']), $course_ids);
213 213
 
214 214
 		} else {
215 215
 
216
-            if ( 'activecourses' == esc_attr( $instance['component'] ) || 'completedcourses' == esc_attr( $instance['component'] ) ) {
216
+            if ('activecourses' == esc_attr($instance['component']) || 'completedcourses' == esc_attr($instance['component'])) {
217 217
 				$posts_array = array();
218 218
 
219 219
             } else {
@@ -226,43 +226,43 @@  discard block
 block discarded – undo
226 226
                     'posts_per_page' => $instance['limit'],
227 227
                 );
228 228
 
229
-				$posts_array = get_posts( $course_args );
229
+				$posts_array = get_posts($course_args);
230 230
 			}
231 231
 
232 232
 		} // End If Statement
233 233
 
234
-		if ( count( $posts_array ) > 0 ) { ?>
234
+		if (count($posts_array) > 0) { ?>
235 235
 			<ul>
236
-			<?php foreach ($posts_array as $post_item){
237
-		    	$post_id = absint( $post_item->ID );
236
+			<?php foreach ($posts_array as $post_item) {
237
+		    	$post_id = absint($post_item->ID);
238 238
 		    	$post_title = $post_item->post_title;
239
-		    	$user_info = get_userdata( absint( $post_item->post_author ) );
240
-		    	$author_link = get_author_posts_url( absint( $post_item->post_author ) );
239
+		    	$user_info = get_userdata(absint($post_item->post_author));
240
+		    	$author_link = get_author_posts_url(absint($post_item->post_author));
241 241
 		    	$author_display_name = $user_info->display_name;
242 242
 		    	$author_id = $post_item->post_author;
243 243
 		    ?>
244 244
 		    	<li class="fix">
245
-		    		<?php do_action( 'sensei_course_image', $post_id ); ?>
246
-		    		<a href="<?php echo esc_url( get_permalink( $post_id ) ); ?>" title="<?php echo esc_attr( $post_title ); ?>"><?php echo $post_title; ?></a>
245
+		    		<?php do_action('sensei_course_image', $post_id); ?>
246
+		    		<a href="<?php echo esc_url(get_permalink($post_id)); ?>" title="<?php echo esc_attr($post_title); ?>"><?php echo $post_title; ?></a>
247 247
 		    		<br />
248
-		    		<?php if ( isset( Sensei()->settings->settings[ 'course_author' ] ) && ( Sensei()->settings->settings[ 'course_author' ] ) ) { ?>
249
-    					<span class="course-author"><?php _e( 'by ', 'woothemes-sensei' ); ?><a href="<?php echo esc_url( $author_link ); ?>" title="<?php echo esc_attr( $author_display_name ); ?>"><?php echo esc_html( $author_display_name ); ?></a></span>
248
+		    		<?php if (isset(Sensei()->settings->settings['course_author']) && (Sensei()->settings->settings['course_author'])) { ?>
249
+    					<span class="course-author"><?php _e('by ', 'woothemes-sensei'); ?><a href="<?php echo esc_url($author_link); ?>" title="<?php echo esc_attr($author_display_name); ?>"><?php echo esc_html($author_display_name); ?></a></span>
250 250
     					<br />
251 251
     				<?php } // End If Statement ?>
252
-    				<span class="course-lesson-count"><?php echo Sensei()->course->course_lesson_count( $post_id ) . '&nbsp;' . __( 'Lessons', 'woothemes-sensei' ); ?></span>
252
+    				<span class="course-lesson-count"><?php echo Sensei()->course->course_lesson_count($post_id).'&nbsp;'.__('Lessons', 'woothemes-sensei'); ?></span>
253 253
     				<br />
254
-    				<?php sensei_simple_course_price( $post_id ); ?>
254
+    				<?php sensei_simple_course_price($post_id); ?>
255 255
 		    	</li>
256 256
 		    <?php } // End For Loop ?>
257
-		    <?php if ( 'activecourses' == esc_attr( $instance['component'] ) || 'completedcourses' == esc_attr( $instance['component'] ) ) {
258
-		    	$my_account_page_id = intval( Sensei()->settings->settings[ 'my_course_page' ] );
259
-		    	echo '<li class="my-account fix"><a href="'. esc_url( get_permalink( $my_account_page_id ) ) .'">'.__('My Courses', 'woothemes-sensei').' <span class="meta-nav"></span></a></li>';
257
+		    <?php if ('activecourses' == esc_attr($instance['component']) || 'completedcourses' == esc_attr($instance['component'])) {
258
+		    	$my_account_page_id = intval(Sensei()->settings->settings['my_course_page']);
259
+		    	echo '<li class="my-account fix"><a href="'.esc_url(get_permalink($my_account_page_id)).'">'.__('My Courses', 'woothemes-sensei').' <span class="meta-nav"></span></a></li>';
260 260
 		    } // End If Statement ?>
261 261
 		</ul>
262 262
 		<?php } else {
263 263
 			// No posts returned. This means the user either has no active or no completed courses.
264
-			$course_status = substr( esc_attr( $instance['component'] ) , 0, -7);
265
-			echo sprintf( __( 'You have no %1s courses.', 'woothemes-sensei' ), $course_status );
264
+			$course_status = substr(esc_attr($instance['component']), 0, -7);
265
+			echo sprintf(__('You have no %1s courses.', 'woothemes-sensei'), $course_status);
266 266
 		} // End If Statement
267 267
 	} // End load_component()
268 268
 } // End Class
269 269
\ No newline at end of file
Please login to merge, or discard this patch.
uninstall.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@
 block discarded – undo
10 10
  * @author WooThemes
11 11
  * @since 1.0.0
12 12
  */
13
-if( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) exit();
13
+if ( ! defined('WP_UNINSTALL_PLUGIN')) exit();
14 14
 
15 15
 $token = 'woothemes-sensei';
16
-delete_option( 'skip_install_sensei_pages' );
17
-delete_option( 'sensei_installed' );
18 16
\ No newline at end of file
17
+delete_option('skip_install_sensei_pages');
18
+delete_option('sensei_installed');
19 19
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,9 @@
 block discarded – undo
10 10
  * @author WooThemes
11 11
  * @since 1.0.0
12 12
  */
13
-if( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) exit();
13
+if( ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
14
+	exit();
15
+}
14 16
 
15 17
 $token = 'woothemes-sensei';
16 18
 delete_option( 'skip_install_sensei_pages' );
Please login to merge, or discard this patch.
templates/content-lesson.php 3 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 /**
4 4
  * Content-lesson.php template file
5 5
  *
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
  */
15 15
 ?>
16 16
 
17
-<article <?php post_class( get_the_ID() ); ?> >
17
+<article <?php post_class(get_the_ID()); ?> >
18 18
 
19 19
     <section class="lesson-content">
20 20
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
          * @since 1.9.0
28 28
          * @param string $post_id
29 29
          */
30
-        do_action( 'sensei_content_lesson_before', get_the_ID() );
30
+        do_action('sensei_content_lesson_before', get_the_ID());
31 31
         ?>
32 32
 
33 33
         <section class="entry">
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
          * @since 1.9.0
74 74
          * @param string $post_id
75 75
          */
76
-        do_action( 'sensei_content_lesson_after', get_the_ID() );
76
+        do_action('sensei_content_lesson_after', get_the_ID());
77 77
         ?>
78 78
 
79 79
     </section> <!-- article .lesson-content -->
80 80
 
81
-</article> <!-- article .(<?php esc_attr_e( join( ' ', get_post_class( array( 'lesson', 'post' ) ) ) ); ?>  -->
82 81
\ No newline at end of file
82
+</article> <!-- article .(<?php esc_attr_e(join(' ', get_post_class(array('lesson', 'post')))); ?>  -->
83 83
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 /**
4 6
  * The Template for displaying the my course page data.
5 7
  *
Please login to merge, or discard this patch.
Indentation   +51 added lines, -51 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 if ( ! defined( 'ABSPATH' ) ) exit;
3 3
 /**
4
- * Content-lesson.php template file
5
- *
6
- * responsible for content on archive like pages. Only shows the lesson excerpt.
7
- *
8
- * For single lesson content please see single-lesson.php
9
- *
10
- * @author 		Automattic
11
- * @package 	Sensei
12
- * @category    Templates
13
- * @version     1.9.0
14
- */
4
+	 * Content-lesson.php template file
5
+	 *
6
+	 * responsible for content on archive like pages. Only shows the lesson excerpt.
7
+	 *
8
+	 * For single lesson content please see single-lesson.php
9
+	 *
10
+	 * @author 		Automattic
11
+	 * @package 	Sensei
12
+	 * @category    Templates
13
+	 * @version     1.9.0
14
+	 */
15 15
 ?>
16 16
 
17 17
 <article <?php post_class( get_the_ID() ); ?> >
@@ -19,32 +19,32 @@  discard block
 block discarded – undo
19 19
     <section class="lesson-content">
20 20
 
21 21
         <?php
22
-        /**
23
-         * sensei_content_lesson_before
24
-         * action that runs before the sensei {post_type} content. It runs inside the sensei
25
-         * content.php template. This applies to the specific post type that you've targeted.
26
-         *
27
-         * @since 1.9.0
28
-         * @param string $lesson_id
29
-         */
30
-        do_action( 'sensei_content_lesson_before', get_the_ID() );
31
-        ?>
22
+		/**
23
+		 * sensei_content_lesson_before
24
+		 * action that runs before the sensei {post_type} content. It runs inside the sensei
25
+		 * content.php template. This applies to the specific post type that you've targeted.
26
+		 *
27
+		 * @since 1.9.0
28
+		 * @param string $lesson_id
29
+		 */
30
+		do_action( 'sensei_content_lesson_before', get_the_ID() );
31
+		?>
32 32
 
33 33
         <section class="entry">
34 34
 
35 35
             <?php
36
-            /**
37
-             * Fires just before the post content in the content-lesson.php file.
38
-             *
39
-             * @since 1.9.0
40
-             *
41
-             * @hooked Sensei()->modules->module_archive_description -  11
42
-             * @hooked Sensei_Lesson::the_lesson_meta                -  20
43
-             *
44
-             * @param string $lesson_id
45
-             */
46
-            do_action('sensei_content_lesson_inside_before', get_the_ID());
47
-            ?>
36
+			/**
37
+			 * Fires just before the post content in the content-lesson.php file.
38
+			 *
39
+			 * @since 1.9.0
40
+			 *
41
+			 * @hooked Sensei()->modules->module_archive_description -  11
42
+			 * @hooked Sensei_Lesson::the_lesson_meta                -  20
43
+			 *
44
+			 * @param string $lesson_id
45
+			 */
46
+			do_action('sensei_content_lesson_inside_before', get_the_ID());
47
+			?>
48 48
 
49 49
             <p class="lesson-excerpt">
50 50
 
@@ -53,28 +53,28 @@  discard block
 block discarded – undo
53 53
             </p>
54 54
 
55 55
             <?php
56
-            /**
57
-             * Fires just after the post content in the lesson-content.php file.
58
-             *
59
-             * @since 1.9.0
60
-             *
61
-             * @param string $lesson_id
62
-             */
63
-            do_action('sensei_content_lesson_inside_after', get_the_ID());
64
-            ?>
56
+			/**
57
+			 * Fires just after the post content in the lesson-content.php file.
58
+			 *
59
+			 * @since 1.9.0
60
+			 *
61
+			 * @param string $lesson_id
62
+			 */
63
+			do_action('sensei_content_lesson_inside_after', get_the_ID());
64
+			?>
65 65
 
66 66
         </section> <!-- section .entry -->
67 67
 
68 68
         <?php
69
-        /**
70
-         * This action runs after the sensei lesson content. It runs inside the sensei
71
-         * lesson-content.php template.
72
-         *
73
-         * @since 1.9.0
74
-         * @param string $lesson_id
75
-         */
76
-        do_action( 'sensei_content_lesson_after', get_the_ID() );
77
-        ?>
69
+		/**
70
+		 * This action runs after the sensei lesson content. It runs inside the sensei
71
+		 * lesson-content.php template.
72
+		 *
73
+		 * @since 1.9.0
74
+		 * @param string $lesson_id
75
+		 */
76
+		do_action( 'sensei_content_lesson_after', get_the_ID() );
77
+		?>
78 78
 
79 79
     </section> <!-- article .lesson-content -->
80 80
 
Please login to merge, or discard this patch.
templates/single-quiz.php 3 patches
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,9 +108,12 @@
 block discarded – undo
108 108
                 ?>
109 109
 
110 110
             </form>
111
-        <?php else:  ?>
111
+        <?php else {
112
+	:  ?>
112 113
 
113
-            <div class="sensei-message alert"> <?php _e( 'There are no questions for this Quiz yet. Check back soon.', 'woothemes-sensei' ); ?></div>
114
+            <div class="sensei-message alert"> <?php _e( 'There are no questions for this Quiz yet. Check back soon.', 'woothemes-sensei' );
115
+}
116
+?></div>
114 117
 
115 118
         <?php endif; // End If have questions ?>
116 119
 
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  */
12 12
 ?>
13 13
 
14
-<?php  get_sensei_header();  ?>
14
+<?php  get_sensei_header(); ?>
15 15
 
16 16
 <article <?php post_class(); ?>>
17 17
 
@@ -27,15 +27,15 @@  discard block
 block discarded – undo
27 27
          * @param integer $quiz_id
28 28
          *
29 29
          */
30
-        do_action( 'sensei_single_quiz_content_inside_before', get_the_ID() );
30
+        do_action('sensei_single_quiz_content_inside_before', get_the_ID());
31 31
 
32 32
     ?>
33 33
 
34 34
     <section class="entry quiz-questions">
35 35
 
36
-        <?php if ( sensei_quiz_has_questions() ): ?>
36
+        <?php if (sensei_quiz_has_questions()): ?>
37 37
 
38
-            <form method="POST" action="<?php echo esc_url_raw( get_permalink() ); ?>" enctype="multipart/form-data">
38
+            <form method="POST" action="<?php echo esc_url_raw(get_permalink()); ?>" enctype="multipart/form-data">
39 39
 
40 40
                 <?php
41 41
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
                      *
47 47
                      * @param string $the_quiz_id
48 48
                      */
49
-                    do_action( 'sensei_single_quiz_questions_before', get_the_id() );
49
+                    do_action('sensei_single_quiz_questions_before', get_the_id());
50 50
 
51 51
                 ?>
52 52
 
@@ -54,9 +54,9 @@  discard block
 block discarded – undo
54 54
 
55 55
                 <ol id="sensei-quiz-list">
56 56
 
57
-                <?php while ( sensei_quiz_has_questions() ): sensei_setup_the_question(); ?>
57
+                <?php while (sensei_quiz_has_questions()): sensei_setup_the_question(); ?>
58 58
 
59
-                    <li class="<?php sensei_the_question_class();?>">
59
+                    <li class="<?php sensei_the_question_class(); ?>">
60 60
 
61 61
                         <?php
62 62
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                              * @since 1.9.0
72 72
                              * @param string $the_question_id
73 73
                              */
74
-                            do_action( 'sensei_quiz_question_inside_before', sensei_get_the_question_id() );
74
+                            do_action('sensei_quiz_question_inside_before', sensei_get_the_question_id());
75 75
 
76 76
                         ?>
77 77
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                              *
87 87
                              * @param string $the_question_id
88 88
                              */
89
-                            do_action( 'sensei_quiz_question_inside_after', sensei_get_the_question_id() );
89
+                            do_action('sensei_quiz_question_inside_after', sensei_get_the_question_id());
90 90
 
91 91
                         ?>
92 92
 
@@ -103,21 +103,21 @@  discard block
 block discarded – undo
103 103
                      *
104 104
                      * @param string $the_quiz_id
105 105
                      */
106
-                    do_action( 'sensei_single_quiz_questions_after', get_the_id() );
106
+                    do_action('sensei_single_quiz_questions_after', get_the_id());
107 107
 
108 108
                 ?>
109 109
 
110 110
             </form>
111 111
         <?php else:  ?>
112 112
 
113
-            <div class="sensei-message alert"> <?php _e( 'There are no questions for this Quiz yet. Check back soon.', 'woothemes-sensei' ); ?></div>
113
+            <div class="sensei-message alert"> <?php _e('There are no questions for this Quiz yet. Check back soon.', 'woothemes-sensei'); ?></div>
114 114
 
115 115
         <?php endif; // End If have questions ?>
116 116
 
117 117
 
118 118
         <?php
119 119
             $quiz_lesson = Sensei()->quiz->data->quiz_lesson;
120
-            do_action( 'sensei_quiz_back_link', $quiz_lesson  );
120
+            do_action('sensei_quiz_back_link', $quiz_lesson);
121 121
         ?>
122 122
 
123 123
     </section>
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
      * @param integer $quiz_id
133 133
      *
134 134
      */
135
-    do_action( 'sensei_single_quiz_content_inside_after', get_the_ID() );
135
+    do_action('sensei_single_quiz_content_inside_after', get_the_ID());
136 136
 
137 137
     ?>
138 138
 
Please login to merge, or discard this patch.
Indentation   +74 added lines, -74 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The Template for displaying all Quiz Questions.
4
- *
5
- * Override this template by copying it to yourtheme/sensei/single-quiz.php
6
- *
7
- * @author 		Automattic
8
- * @package 	Sensei
9
- * @category    Templates
10
- * @version     1.9.0
11
- */
3
+		 * The Template for displaying all Quiz Questions.
4
+		 *
5
+		 * Override this template by copying it to yourtheme/sensei/single-quiz.php
6
+		 *
7
+		 * @author 		Automattic
8
+		 * @package 	Sensei
9
+		 * @category    Templates
10
+		 * @version     1.9.0
11
+		 */
12 12
 ?>
13 13
 
14 14
 <?php  get_sensei_header();  ?>
@@ -17,19 +17,19 @@  discard block
 block discarded – undo
17 17
 
18 18
     <?php
19 19
 
20
-        /**
21
-         * Hook inside the single quiz post above the content
22
-         *
23
-         * @since 1.9.0
24
-         *
25
-         * @hooked Sensei_Quiz::the_title               - 20
26
-         * @hooked Sensei_Quiz::the_user_status_message - 40
27
-         * @param integer $quiz_id
28
-         *
29
-         */
30
-        do_action( 'sensei_single_quiz_content_inside_before', get_the_ID() );
20
+		/**
21
+		 * Hook inside the single quiz post above the content
22
+		 *
23
+		 * @since 1.9.0
24
+		 *
25
+		 * @hooked Sensei_Quiz::the_title               - 20
26
+		 * @hooked Sensei_Quiz::the_user_status_message - 40
27
+		 * @param integer $quiz_id
28
+		 *
29
+		 */
30
+		do_action( 'sensei_single_quiz_content_inside_before', get_the_ID() );
31 31
 
32
-    ?>
32
+	?>
33 33
 
34 34
     <section class="entry quiz-questions">
35 35
 
@@ -39,16 +39,16 @@  discard block
 block discarded – undo
39 39
 
40 40
                 <?php
41 41
 
42
-                    /**
43
-                     * Action inside before the question content on single-quiz page
44
-                     *
45
-                     * @hooked WooThemes_Sensei_Quiz::the_user_status_message  - 10
46
-                     *
47
-                     * @param string $the_quiz_id
48
-                     */
49
-                    do_action( 'sensei_single_quiz_questions_before', get_the_id() );
42
+					/**
43
+					 * Action inside before the question content on single-quiz page
44
+					 *
45
+					 * @hooked WooThemes_Sensei_Quiz::the_user_status_message  - 10
46
+					 *
47
+					 * @param string $the_quiz_id
48
+					 */
49
+					do_action( 'sensei_single_quiz_questions_before', get_the_id() );
50 50
 
51
-                ?>
51
+				?>
52 52
 
53 53
 
54 54
 
@@ -60,35 +60,35 @@  discard block
 block discarded – undo
60 60
 
61 61
                         <?php
62 62
 
63
-                            /**
64
-                             * Action inside before the question content on single-quiz page
65
-                             *
66
-                             * @hooked WooThemes_Sensei_Question::the_question_title        - 10
67
-                             * @hooked WooThemes_Sensei_Question::the_question_description  - 20
68
-                             * @hooked WooThemes_Sensei_Question::the_question_media        - 30
69
-                             * @hooked WooThemes_Sensei_Question::the_question_hidden_field - 40
70
-                             *
71
-                             * @since 1.9.0
72
-                             * @param string $the_question_id
73
-                             */
74
-                            do_action( 'sensei_quiz_question_inside_before', sensei_get_the_question_id() );
75
-
76
-                        ?>
63
+							/**
64
+							 * Action inside before the question content on single-quiz page
65
+							 *
66
+							 * @hooked WooThemes_Sensei_Question::the_question_title        - 10
67
+							 * @hooked WooThemes_Sensei_Question::the_question_description  - 20
68
+							 * @hooked WooThemes_Sensei_Question::the_question_media        - 30
69
+							 * @hooked WooThemes_Sensei_Question::the_question_hidden_field - 40
70
+							 *
71
+							 * @since 1.9.0
72
+							 * @param string $the_question_id
73
+							 */
74
+							do_action( 'sensei_quiz_question_inside_before', sensei_get_the_question_id() );
75
+
76
+						?>
77 77
 
78 78
                         <?php sensei_the_question_content(); ?>
79 79
 
80 80
                         <?php
81 81
 
82
-                            /**
83
-                             * Action inside before the question content on single-quiz page
84
-                             *
85
-                             * @hooked WooThemes_Sensei_Question::answer_feedback_notes
86
-                             *
87
-                             * @param string $the_question_id
88
-                             */
89
-                            do_action( 'sensei_quiz_question_inside_after', sensei_get_the_question_id() );
82
+							/**
83
+							 * Action inside before the question content on single-quiz page
84
+							 *
85
+							 * @hooked WooThemes_Sensei_Question::answer_feedback_notes
86
+							 *
87
+							 * @param string $the_question_id
88
+							 */
89
+							do_action( 'sensei_quiz_question_inside_after', sensei_get_the_question_id() );
90 90
 
91
-                        ?>
91
+						?>
92 92
 
93 93
                     </li>
94 94
 
@@ -98,14 +98,14 @@  discard block
 block discarded – undo
98 98
 
99 99
                 <?php
100 100
 
101
-                    /**
102
-                     * Action inside before the question content on single-quiz page
103
-                     *
104
-                     * @param string $the_quiz_id
105
-                     */
106
-                    do_action( 'sensei_single_quiz_questions_after', get_the_id() );
101
+					/**
102
+					 * Action inside before the question content on single-quiz page
103
+					 *
104
+					 * @param string $the_quiz_id
105
+					 */
106
+					do_action( 'sensei_single_quiz_questions_after', get_the_id() );
107 107
 
108
-                ?>
108
+				?>
109 109
 
110 110
             </form>
111 111
         <?php else:  ?>
@@ -116,25 +116,25 @@  discard block
 block discarded – undo
116 116
 
117 117
 
118 118
         <?php
119
-            $quiz_lesson = Sensei()->quiz->data->quiz_lesson;
120
-            do_action( 'sensei_quiz_back_link', $quiz_lesson  );
121
-        ?>
119
+			$quiz_lesson = Sensei()->quiz->data->quiz_lesson;
120
+			do_action( 'sensei_quiz_back_link', $quiz_lesson  );
121
+		?>
122 122
 
123 123
     </section>
124 124
 
125 125
     <?php
126 126
 
127
-    /**
128
-     * Hook inside the single quiz post above the content
129
-     *
130
-     * @since 1.9.0
131
-     *
132
-     * @param integer $quiz_id
133
-     *
134
-     */
135
-    do_action( 'sensei_single_quiz_content_inside_after', get_the_ID() );
136
-
137
-    ?>
127
+	/**
128
+	 * Hook inside the single quiz post above the content
129
+	 *
130
+	 * @since 1.9.0
131
+	 *
132
+	 * @param integer $quiz_id
133
+	 *
134
+	 */
135
+	do_action( 'sensei_single_quiz_content_inside_after', get_the_ID() );
136
+
137
+	?>
138 138
 
139 139
 </article><!-- .quiz -->
140 140
 
Please login to merge, or discard this patch.
templates/teacher-archive.php 3 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -1,31 +1,31 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The Template for displaying teacher author archives, this template wil show the teacher
4
- * and all course that belong to to them.
5
- *
6
- * Override this template by copying it to your_theme/sensei/teacher-archive.php
7
- *
8
- * @author 		Automattic
9
- * @package 	Sensei
10
- * @category    Templates
11
- * @version     1.9.0
12
- */
3
+		 * The Template for displaying teacher author archives, this template wil show the teacher
4
+		 * and all course that belong to to them.
5
+		 *
6
+		 * Override this template by copying it to your_theme/sensei/teacher-archive.php
7
+		 *
8
+		 * @author 		Automattic
9
+		 * @package 	Sensei
10
+		 * @category    Templates
11
+		 * @version     1.9.0
12
+		 */
13 13
 ?>
14 14
 
15 15
 <?php  get_sensei_header();  ?>
16 16
 
17 17
     <?php
18 18
 
19
-        /**
20
-         * This action before teacher courses loop. This hook fires within the archive-course.php
21
-         * It fires even if the current archive has no posts.
22
-         *
23
-         * @since 1.9.0
24
-         *
25
-         */
26
-        do_action( 'sensei_teacher_archive_course_loop_before' );
19
+		/**
20
+		 * This action before teacher courses loop. This hook fires within the archive-course.php
21
+		 * It fires even if the current archive has no posts.
22
+		 *
23
+		 * @since 1.9.0
24
+		 *
25
+		 */
26
+		do_action( 'sensei_teacher_archive_course_loop_before' );
27 27
 
28
-    ?>
28
+	?>
29 29
 
30 30
     <?php if ( have_posts() ): ?>
31 31
 
@@ -39,14 +39,14 @@  discard block
 block discarded – undo
39 39
 
40 40
     <?php
41 41
 
42
-        /**
43
-         * This action runs after including the teacher archive loop. This hook fires within the teacher-archive.php
44
-         * It fires even if the current archive has no posts.
45
-         *
46
-         * @since 1.9.0
47
-         */
48
-        do_action( 'sensei_teacher_archive_course_loop_after' );
42
+		/**
43
+		 * This action runs after including the teacher archive loop. This hook fires within the teacher-archive.php
44
+		 * It fires even if the current archive has no posts.
45
+		 *
46
+		 * @since 1.9.0
47
+		 */
48
+		do_action( 'sensei_teacher_archive_course_loop_after' );
49 49
 
50
-    ?>
50
+	?>
51 51
 
52 52
 <?php get_sensei_footer(); ?>
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 ?>
14 14
 
15
-<?php  get_sensei_header();  ?>
15
+<?php  get_sensei_header(); ?>
16 16
 
17 17
     <?php
18 18
 
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
          * @since 1.9.0
24 24
          *
25 25
          */
26
-        do_action( 'sensei_teacher_archive_course_loop_before' );
26
+        do_action('sensei_teacher_archive_course_loop_before');
27 27
 
28 28
     ?>
29 29
 
30
-    <?php if ( have_posts() ): ?>
30
+    <?php if (have_posts()): ?>
31 31
 
32
-        <?php sensei_load_template( 'loop-course.php' ); ?>
32
+        <?php sensei_load_template('loop-course.php'); ?>
33 33
 
34 34
     <?php else: ?>
35 35
 
36
-        <p><?php _e( 'There are no courses for this teacher.', 'woothemes-sensei' ); ?></p>
36
+        <p><?php _e('There are no courses for this teacher.', 'woothemes-sensei'); ?></p>
37 37
 
38 38
     <?php  endif; // End If Statement ?>
39 39
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
          *
46 46
          * @since 1.9.0
47 47
          */
48
-        do_action( 'sensei_teacher_archive_course_loop_after' );
48
+        do_action('sensei_teacher_archive_course_loop_after');
49 49
 
50 50
     ?>
51 51
 
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,9 +31,12 @@
 block discarded – undo
31 31
 
32 32
         <?php sensei_load_template( 'loop-course.php' ); ?>
33 33
 
34
-    <?php else: ?>
34
+    <?php else {
35
+	: ?>
35 36
 
36
-        <p><?php _e( 'There are no courses for this teacher.', 'woothemes-sensei' ); ?></p>
37
+        <p><?php _e( 'There are no courses for this teacher.', 'woothemes-sensei' );
38
+}
39
+?></p>
37 40
 
38 41
     <?php  endif; // End If Statement ?>
39 42
 
Please login to merge, or discard this patch.
templates/archive-lesson.php 3 patches
Indentation   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -1,29 +1,29 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The Template for displaying lesson archives, including the lesson page template.
4
- * This template also handels the lesson modules taxonomy and the lessons_tag taxonomy.
5
- *
6
- * Override this template by copying it to your_theme/sensei/archive-lesson.php
7
- *
8
- * @author 		Automattic
9
- * @package 	Sensei
10
- * @category    Templates
11
- * @version     1.9.0
12
- */
3
+	 * The Template for displaying lesson archives, including the lesson page template.
4
+	 * This template also handels the lesson modules taxonomy and the lessons_tag taxonomy.
5
+	 *
6
+	 * Override this template by copying it to your_theme/sensei/archive-lesson.php
7
+	 *
8
+	 * @author 		Automattic
9
+	 * @package 	Sensei
10
+	 * @category    Templates
11
+	 * @version     1.9.0
12
+	 */
13 13
 ?>
14 14
 
15 15
 <?php  get_sensei_header();  ?>
16 16
 
17 17
     <?php
18 18
 
19
-        /**
20
-         * Action before lesson archive loop. This action runs within the archive-lesson.php.
21
-         *
22
-         * It will be executed even if there are no posts on the archive page.
23
-         */
24
-        do_action( 'sensei_archive_before_lesson_loop' );
19
+		/**
20
+		 * Action before lesson archive loop. This action runs within the archive-lesson.php.
21
+		 *
22
+		 * It will be executed even if there are no posts on the archive page.
23
+		 */
24
+		do_action( 'sensei_archive_before_lesson_loop' );
25 25
 
26
-    ?>
26
+	?>
27 27
 
28 28
     <?php if ( have_posts() ): ?>
29 29
 
@@ -37,12 +37,12 @@  discard block
 block discarded – undo
37 37
 
38 38
     <?php
39 39
 
40
-        /**
41
-         * Action after lesson archive  loop on the archive-lesson.php template file
42
-         * It will be executed even if there are no posts on the archive page.
43
-         *
44
-         * @since 1.9.0
45
-         */
46
-        do_action( 'sensei_archive_after_lesson_loop' );
47
-    ?>
40
+		/**
41
+		 * Action after lesson archive  loop on the archive-lesson.php template file
42
+		 * It will be executed even if there are no posts on the archive page.
43
+		 *
44
+		 * @since 1.9.0
45
+		 */
46
+		do_action( 'sensei_archive_after_lesson_loop' );
47
+	?>
48 48
 <?php get_sensei_footer(); ?>
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 ?>
14 14
 
15
-<?php  get_sensei_header();  ?>
15
+<?php  get_sensei_header(); ?>
16 16
 
17 17
     <?php
18 18
 
@@ -21,17 +21,17 @@  discard block
 block discarded – undo
21 21
          *
22 22
          * It will be executed even if there are no posts on the archive page.
23 23
          */
24
-        do_action( 'sensei_archive_before_lesson_loop' );
24
+        do_action('sensei_archive_before_lesson_loop');
25 25
 
26 26
     ?>
27 27
 
28
-    <?php if ( have_posts() ): ?>
28
+    <?php if (have_posts()): ?>
29 29
 
30
-        <?php sensei_load_template( 'loop-lesson.php' ); ?>
30
+        <?php sensei_load_template('loop-lesson.php'); ?>
31 31
 
32 32
     <?php else: ?>
33 33
 
34
-        <p><?php _e( 'No lessons found that match your selection.', 'woothemes-sensei' ); ?></p>
34
+        <p><?php _e('No lessons found that match your selection.', 'woothemes-sensei'); ?></p>
35 35
 
36 36
     <?php  endif; // End If Statement ?>
37 37
 
@@ -43,6 +43,6 @@  discard block
 block discarded – undo
43 43
          *
44 44
          * @since 1.9.0
45 45
          */
46
-        do_action( 'sensei_archive_after_lesson_loop' );
46
+        do_action('sensei_archive_after_lesson_loop');
47 47
     ?>
48 48
 <?php get_sensei_footer(); ?>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,9 +29,12 @@
 block discarded – undo
29 29
 
30 30
         <?php sensei_load_template( 'loop-lesson.php' ); ?>
31 31
 
32
-    <?php else: ?>
32
+    <?php else {
33
+	: ?>
33 34
 
34
-        <p><?php _e( 'No lessons found that match your selection.', 'woothemes-sensei' ); ?></p>
35
+        <p><?php _e( 'No lessons found that match your selection.', 'woothemes-sensei' );
36
+}
37
+?></p>
35 38
 
36 39
     <?php  endif; // End If Statement ?>
37 40
 
Please login to merge, or discard this patch.
templates/loop-lesson.php 3 patches
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -1,65 +1,65 @@
 block discarded – undo
1 1
 <?php
2 2
 if ( ! defined( 'ABSPATH' ) ) exit;
3 3
 /**
4
- * The Template for outputting Lesson Archive items
5
- *
6
- * Override this template by copying it to yourtheme/sensei/loop-lesson.php
7
- *
8
- * @author 		Automattic
9
- * @package 	Sensei
10
- * @category    Templates
11
- * @version     1.9.0
12
- */
4
+	 * The Template for outputting Lesson Archive items
5
+	 *
6
+	 * Override this template by copying it to yourtheme/sensei/loop-lesson.php
7
+	 *
8
+	 * @author 		Automattic
9
+	 * @package 	Sensei
10
+	 * @category    Templates
11
+	 * @version     1.9.0
12
+	 */
13 13
 ?>
14 14
 
15 15
 <?php
16 16
 /**
17
- * This runs before the post type items in the loop-lesson.php template.
18
- *
19
- * @since 1.9
20
- */
17
+	 * This runs before the post type items in the loop-lesson.php template.
18
+	 *
19
+	 * @since 1.9
20
+	 */
21 21
 do_action( 'sensei_loop_lesson_before' );
22 22
 ?>
23 23
 
24 24
 <section class="lesson-container" >
25 25
 
26 26
     <?php
27
-    /**
28
-     * This runs before the lesson items in the loop-lesson.php template.
29
-     *
30
-     * @since 1.9.0
31
-     *
32
-     * @hooked Sensei()->lesson->lesson_tag_archive_description - 11
33
-     * @hooked Sensei()->lesson->the_archive_header - 20
34
-     */
35
-    do_action( 'sensei_loop_lesson_inside_before' );
36
-    ?>
27
+	/**
28
+	 * This runs before the lesson items in the loop-lesson.php template.
29
+	 *
30
+	 * @since 1.9.0
31
+	 *
32
+	 * @hooked Sensei()->lesson->lesson_tag_archive_description - 11
33
+	 * @hooked Sensei()->lesson->the_archive_header - 20
34
+	 */
35
+	do_action( 'sensei_loop_lesson_inside_before' );
36
+	?>
37 37
 
38 38
 
39 39
     <?php
40
-    //Loop through all lessons
41
-    while ( have_posts() ) { the_post();
40
+	//Loop through all lessons
41
+	while ( have_posts() ) { the_post();
42 42
 
43
-        sensei_load_template_part( 'content', 'lesson' );
43
+		sensei_load_template_part( 'content', 'lesson' );
44 44
 
45
-    }
46
-    ?>
45
+	}
46
+	?>
47 47
 
48 48
     <?php
49
-    /**
50
-     * This runs inside the <ul> after the lesson items in the loop-lesson.php template.
51
-     *
52
-     * @since 1.9.0
53
-     */
54
-    do_action( 'sensei_loop_lesson_inside_after' );
55
-    ?>
49
+	/**
50
+	 * This runs inside the <ul> after the lesson items in the loop-lesson.php template.
51
+	 *
52
+	 * @since 1.9.0
53
+	 */
54
+	do_action( 'sensei_loop_lesson_inside_after' );
55
+	?>
56 56
 
57 57
 </section>
58 58
 
59 59
 <?php
60 60
 /**
61
- * This runs after the lesson items <ul> in the loop-lesson.php template.
62
- *
63
- * @since 1.9.0
64
- */
61
+	 * This runs after the lesson items <ul> in the loop-lesson.php template.
62
+	 *
63
+	 * @since 1.9.0
64
+	 */
65 65
 do_action( 'sensei_loop_lesson_after' );
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 /**
4 4
  * The Template for outputting Lesson Archive items
5 5
  *
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
  *
19 19
  * @since 1.9
20 20
  */
21
-do_action( 'sensei_loop_lesson_before' );
21
+do_action('sensei_loop_lesson_before');
22 22
 ?>
23 23
 
24 24
 <section class="lesson-container" >
@@ -32,15 +32,15 @@  discard block
 block discarded – undo
32 32
      * @hooked Sensei()->lesson->lesson_tag_archive_description - 11
33 33
      * @hooked Sensei()->lesson->the_archive_header - 20
34 34
      */
35
-    do_action( 'sensei_loop_lesson_inside_before' );
35
+    do_action('sensei_loop_lesson_inside_before');
36 36
     ?>
37 37
 
38 38
 
39 39
     <?php
40 40
     //Loop through all lessons
41
-    while ( have_posts() ) { the_post();
41
+    while (have_posts()) { the_post();
42 42
 
43
-        sensei_load_template_part( 'content', 'lesson' );
43
+        sensei_load_template_part('content', 'lesson');
44 44
 
45 45
     }
46 46
     ?>
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
      *
52 52
      * @since 1.9.0
53 53
      */
54
-    do_action( 'sensei_loop_lesson_inside_after' );
54
+    do_action('sensei_loop_lesson_inside_after');
55 55
     ?>
56 56
 
57 57
 </section>
@@ -62,4 +62,4 @@  discard block
 block discarded – undo
62 62
  *
63 63
  * @since 1.9.0
64 64
  */
65
-do_action( 'sensei_loop_lesson_after' );
65
+do_action('sensei_loop_lesson_after');
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 /**
4 6
  * The Template for displaying the my course page data.
5 7
  *
Please login to merge, or discard this patch.
templates/globals/pagination-lesson.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 if ( ! defined( 'ABSPATH' ) ) exit;
3 3
 /**
4
- * Pagination - Lesson
5
- *
6
- * @author 		Automattic
7
- * @package 	Sensei
8
- * @category    Templates
9
- * @version     1.9.0
10
- */
4
+	 * Pagination - Lesson
5
+	 *
6
+	 * @author 		Automattic
7
+	 * @package 	Sensei
8
+	 * @category    Templates
9
+	 * @version     1.9.0
10
+	 */
11 11
 
12 12
 global $post;
13 13
 $nav_id_array = sensei_get_prev_next_lessons( $post->ID );
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined('ABSPATH')) exit;
3 3
 /**
4 4
  * Pagination - Lesson
5 5
  *
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 global $post;
13
-$nav_id_array = sensei_get_prev_next_lessons( $post->ID );
14
-$previous_lesson_id = absint( $nav_id_array['prev_lesson'] );
15
-$next_lesson_id = absint( $nav_id_array['next_lesson'] );
13
+$nav_id_array = sensei_get_prev_next_lessons($post->ID);
14
+$previous_lesson_id = absint($nav_id_array['prev_lesson']);
15
+$next_lesson_id = absint($nav_id_array['next_lesson']);
16 16
 // Output HTML
17
-if ( ( 0 < $previous_lesson_id ) || ( 0 < $next_lesson_id ) ) { ?>
17
+if ((0 < $previous_lesson_id) || (0 < $next_lesson_id)) { ?>
18 18
 	<nav id="post-entries" class="post-entries fix">
19
-        <?php if ( 0 < $previous_lesson_id ) { ?><div class="nav-prev fl"><a href="<?php echo esc_url( get_permalink( $previous_lesson_id ) ); ?>" rel="prev"><span class="meta-nav"></span> <?php echo get_the_title( $previous_lesson_id ); ?></a></div><?php } ?>
20
-        <?php if ( 0 < $next_lesson_id ) { ?><div class="nav-next fr"><a href="<?php echo esc_url( get_permalink( $next_lesson_id ) ); ?>" rel="prev"><span class="meta-nav"></span> <?php echo get_the_title( $next_lesson_id ); ?></a></div><?php } ?>
19
+        <?php if (0 < $previous_lesson_id) { ?><div class="nav-prev fl"><a href="<?php echo esc_url(get_permalink($previous_lesson_id)); ?>" rel="prev"><span class="meta-nav"></span> <?php echo get_the_title($previous_lesson_id); ?></a></div><?php } ?>
20
+        <?php if (0 < $next_lesson_id) { ?><div class="nav-next fr"><a href="<?php echo esc_url(get_permalink($next_lesson_id)); ?>" rel="prev"><span class="meta-nav"></span> <?php echo get_the_title($next_lesson_id); ?></a></div><?php } ?>
21 21
     </nav><!-- #post-entries -->
22 22
 <?php } ?>
23 23
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 /**
4 6
  * The Template for displaying the my course page data.
5 7
  *
Please login to merge, or discard this patch.
templates/globals/pagination-posts.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
7 7
  * @version     1.1.0
8 8
  */
9 9
 
10
-if ( ! defined( 'ABSPATH' ) ) exit;
10
+if ( ! defined('ABSPATH')) exit;
11 11
 
12 12
 ?>
13 13
 <nav id="post-entries" class="post-entries fix">
14
-    <div class="nav-prev fl"><?php previous_post_link( '%link', '<span class="meta-nav"></span> %title' ); ?></div>
15
-    <div class="nav-next fr"><?php next_post_link( '%link', '%title <span class="meta-nav"></span>' ); ?></div>
14
+    <div class="nav-prev fl"><?php previous_post_link('%link', '<span class="meta-nav"></span> %title'); ?></div>
15
+    <div class="nav-next fr"><?php next_post_link('%link', '%title <span class="meta-nav"></span>'); ?></div>
16 16
 </nav><!-- #post-entries -->
17 17
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,7 @@
 block discarded – undo
1 1
 <?php
2
-if ( ! defined( 'ABSPATH' ) ) exit;
2
+if ( ! defined( 'ABSPATH' ) ) {
3
+	exit;
4
+}
3 5
 /**
4 6
  * The Template for displaying the my course page data.
5 7
  *
Please login to merge, or discard this patch.