@@ -1,32 +1,32 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if ( ! defined( 'ABSPATH' ) ) exit; |
3 | 3 | /** |
4 | - * List the Course Modules and Lesson in these modules |
|
5 | - * |
|
6 | - * Template is hooked into Single Course sensei_single_main_content. It will |
|
7 | - * only be shown if the course contains modules. |
|
8 | - * |
|
9 | - * All lessons shown here will not be included in the list of other lessons. |
|
10 | - * |
|
11 | - * @author Automattic |
|
12 | - * @package Sensei |
|
13 | - * @category Templates |
|
14 | - * @version 1.9.0 |
|
15 | - */ |
|
4 | + * List the Course Modules and Lesson in these modules |
|
5 | + * |
|
6 | + * Template is hooked into Single Course sensei_single_main_content. It will |
|
7 | + * only be shown if the course contains modules. |
|
8 | + * |
|
9 | + * All lessons shown here will not be included in the list of other lessons. |
|
10 | + * |
|
11 | + * @author Automattic |
|
12 | + * @package Sensei |
|
13 | + * @category Templates |
|
14 | + * @version 1.9.0 |
|
15 | + */ |
|
16 | 16 | ?> |
17 | 17 | |
18 | 18 | <?php |
19 | 19 | |
20 | - /** |
|
21 | - * Hook runs inside single-course/course-modules.php |
|
22 | - * |
|
23 | - * It runs before the modules are shown. This hook fires on the single course page. It will show |
|
24 | - * irrespective of irrespective the course has any modules or not. |
|
25 | - * |
|
26 | - * @since 1.8.0 |
|
27 | - * |
|
28 | - */ |
|
29 | - do_action('sensei_single_course_modules_before'); |
|
20 | + /** |
|
21 | + * Hook runs inside single-course/course-modules.php |
|
22 | + * |
|
23 | + * It runs before the modules are shown. This hook fires on the single course page. It will show |
|
24 | + * irrespective of irrespective the course has any modules or not. |
|
25 | + * |
|
26 | + * @since 1.8.0 |
|
27 | + * |
|
28 | + */ |
|
29 | + do_action('sensei_single_course_modules_before'); |
|
30 | 30 | |
31 | 31 | ?> |
32 | 32 | |
@@ -39,19 +39,19 @@ discard block |
||
39 | 39 | |
40 | 40 | <?php |
41 | 41 | |
42 | - /** |
|
43 | - * Hook runs inside single-course/course-modules.php |
|
44 | - * |
|
45 | - * It runs inside the if statement after the article tag opens just before the modules are shown. This hook will NOT fire if there |
|
46 | - * are no modules to show. |
|
47 | - * |
|
48 | - * @since 1.9.0 |
|
49 | - * |
|
50 | - * @hooked Sensei()->modules->course_modules_title - 20 |
|
51 | - */ |
|
52 | - do_action('sensei_single_course_modules_inside_before'); |
|
42 | + /** |
|
43 | + * Hook runs inside single-course/course-modules.php |
|
44 | + * |
|
45 | + * It runs inside the if statement after the article tag opens just before the modules are shown. This hook will NOT fire if there |
|
46 | + * are no modules to show. |
|
47 | + * |
|
48 | + * @since 1.9.0 |
|
49 | + * |
|
50 | + * @hooked Sensei()->modules->course_modules_title - 20 |
|
51 | + */ |
|
52 | + do_action('sensei_single_course_modules_inside_before'); |
|
53 | 53 | |
54 | - ?> |
|
54 | + ?> |
|
55 | 55 | |
56 | 56 | <header> |
57 | 57 | |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | <?php the_title(); ?> |
91 | 91 | |
92 | 92 | <?php |
93 | - $course_id = Sensei()->lesson->get_course_id( get_the_ID() ); |
|
94 | - if ( Sensei_Utils::is_preview_lesson( get_the_ID() ) && ! Sensei_Utils::user_started_course( $course_id, get_current_user_id() ) ) { ?> |
|
93 | + $course_id = Sensei()->lesson->get_course_id( get_the_ID() ); |
|
94 | + if ( Sensei_Utils::is_preview_lesson( get_the_ID() ) && ! Sensei_Utils::user_started_course( $course_id, get_current_user_id() ) ) { ?> |
|
95 | 95 | |
96 | 96 | <span class="preview-label">Free Preview</span> |
97 | 97 | |
@@ -111,18 +111,18 @@ discard block |
||
111 | 111 | |
112 | 112 | <?php |
113 | 113 | |
114 | - /** |
|
115 | - * Hook runs inside single-course/course-modules.php |
|
116 | - * |
|
117 | - * It runs inside the if statement before the closing article tag directly after the modules were shown. |
|
118 | - * This hook will not trigger if there are no modules to show. |
|
119 | - * |
|
120 | - * @since 1.9.0 |
|
121 | - * |
|
122 | - */ |
|
123 | - do_action('sensei_single_course_modules_inside_after'); |
|
124 | - |
|
125 | - ?> |
|
114 | + /** |
|
115 | + * Hook runs inside single-course/course-modules.php |
|
116 | + * |
|
117 | + * It runs inside the if statement before the closing article tag directly after the modules were shown. |
|
118 | + * This hook will not trigger if there are no modules to show. |
|
119 | + * |
|
120 | + * @since 1.9.0 |
|
121 | + * |
|
122 | + */ |
|
123 | + do_action('sensei_single_course_modules_inside_after'); |
|
124 | + |
|
125 | + ?> |
|
126 | 126 | |
127 | 127 | </article> |
128 | 128 |