topic.php
9.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<?php
/**
* Displays a topic.
*
* Available Variables:
*
* $course_id : (int) ID of the course
* $course : (object) Post object of the course
* $course_settings : (array) Settings specific to current course
* $course_status : Course Status
* $has_access : User has access to course or is enrolled.
*
* $courses_options : Options/Settings as configured on Course Options page
* $lessons_options : Options/Settings as configured on Lessons Options page
* $quizzes_options : Options/Settings as configured on Quiz Options page
*
* $user_id : (object) Current User ID
* $logged_in : (true/false) User is logged in
* $current_user : (object) Currently logged in user object
* $quizzes : (array) Quizzes Array
* $post : (object) The topic post object
* $lesson_post : (object) Lesson post object in which the topic exists
* $topics : (array) Array of Topics in the current lesson
* $all_quizzes_completed : (true/false) User has completed all quizzes on the lesson Or, there are no quizzes.
* $lesson_progression_enabled : (true/false)
* $show_content : (true/false) true if lesson progression is disabled or if previous lesson and topic is completed.
* $previous_lesson_completed : (true/false) true if previous lesson is completed
* $previous_topic_completed : (true/false) true if previous topic is completed
*
* @since 2.1.0
*
* @package LearnDash\Templates\Legacy\Quiz
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<?php
/**
* Topic Dots
*/
?>
<?php if ( ! empty( $topics ) ) : ?>
<div id='learndash_topic_dots-<?php echo esc_attr( $lesson_id ); ?>' class="learndash_topic_dots type-dots">
<b>
<?php
printf(
// translators: placeholder: Topic.
esc_html_x( '%s Progress:', 'placeholder: Topic', 'learndash' ),
LearnDash_Custom_Label::get_label( 'topic' ) // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Method escapes output
);
?>
</b>
<?php foreach ( $topics as $key => $topic ) : ?>
<?php $completed_class = empty( $topic->completed ) ? 'topic-notcompleted' : 'topic-completed'; ?>
<?php $completed_class .= ( $topic->ID === $post->ID ) ? ' ld-topic-current' : ''; ?>
<a class='<?php echo esc_attr( $completed_class ); ?>' href='<?php echo esc_url( learndash_get_step_permalink( $topic->ID, $course_id ) ); ?>' title='<?php echo esc_html( $topic->post_title ); ?>'>
<span title='<?php echo esc_html( $topic->post_title ); ?>'></span>
</a>
<?php endforeach; ?>
</div>
<?php endif; ?>
<?php if ( ! empty( $course_id ) ) { ?>
<div id="learndash_back_to_lesson"><a href='<?php echo esc_url( learndash_get_step_permalink( $lesson_id, $course_id ) ); ?>'>←
<?php
echo learndash_get_label_course_step_back( get_post_type( $lesson_id ) );
?>
</a></div>
<?php } ?>
<?php if ( $lesson_progression_enabled && ! $previous_topic_completed ) : ?>
<span id="learndash_complete_prev_topic">
<?php
$previous_item = learndash_get_previous( $post );
if ( empty( $previous_item ) ) {
$previous_item = learndash_get_previous( $lesson_post );
}
if ( ( ! empty( $previous_item ) ) && ( $previous_item instanceof WP_Post ) ) {
if ( 'sfwd-quiz' === $previous_item->post_type ) {
echo sprintf(
// translators: placeholder: quiz URL.
esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: quiz URL', 'learndash' ),
'<a class="learndash-link-previous-incomplete" href="' . esc_url( learndash_get_step_permalink( $previous_item->ID, $course_id ) ) . '">' . esc_html( learndash_get_custom_label_lower( 'quiz' ) ) . '</a>'
);
} elseif ( 'sfwd-topic' === $previous_item->post_type ) {
echo sprintf(
// translators: placeholder: topic URL.
esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: topic URL', 'learndash' ),
'<a class="learndash-link-previous-incomplete" href="' . esc_url( learndash_get_step_permalink( $previous_item->ID, $course_id ) ) . '">' . esc_html( learndash_get_custom_label_lower( 'topic' ) ) . '</a>'
);
} else {
echo sprintf(
// translators: placeholder: lesson URL.
esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: lesson URL', 'learndash' ),
'<a class="learndash-link-previous-incomplete" href="' . esc_url( learndash_get_step_permalink( $previous_item->ID, $course_id ) ) . '">' . esc_html( learndash_get_custom_label_lower( 'lesson' ) ) . '</a>'
);
}
} else {
echo sprintf(
// translators: placeholder: lesson.
esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: lesson', 'learndash' ),
esc_html( learndash_get_custom_label_lower( 'lesson' ) )
);
}
?>
</span>
<br />
<?php elseif ( $lesson_progression_enabled && ! $previous_lesson_completed ) : ?>
<span id="learndash_complete_prev_lesson">
<?php
$previous_item = learndash_get_previous( $post );
if ( empty( $previous_item ) ) {
$previous_item = learndash_get_previous( $lesson_post );
}
if ( ( ! empty( $previous_item ) ) && ( $previous_item instanceof WP_Post ) ) {
if ( 'sfwd-quiz' === $previous_item->post_type ) {
echo sprintf(
// translators: placeholder: quiz URL.
esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: quiz URL', 'learndash' ),
'<a class="learndash-link-previous-incomplete" href="' . esc_url( learndash_get_step_permalink( $previous_item->ID, $course_id ) ) . '">' . esc_html( learndash_get_custom_label_lower( 'quiz' ) ) . '</a>'
);
} elseif ( 'sfwd-topic' === $previous_item->post_type ) {
echo sprintf(
// translators: placeholder: topic URL.
esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: topic URL', 'learndash' ),
'<a class="learndash-link-previous-incomplete" href="' . esc_url( learndash_get_step_permalink( $previous_item->ID, $course_id ) ) . '">' . esc_html( learndash_get_custom_label_lower( 'topic' ) ) . '</a>'
);
} else {
echo sprintf(
// translators: placeholder: lesson URL.
esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: lesson URL', 'learndash' ),
'<a class="learndash-link-previous-incomplete" href="' . esc_url( learndash_get_step_permalink( $previous_item->ID, $course_id ) ) . '">' . esc_html( learndash_get_custom_label_lower( 'lesson' ) ) . '</a>'
);
}
} else {
// translators: placeholder: lesson.
echo sprintf( esc_html_x( 'Please go back and complete the previous %s.', 'placeholder: lesson', 'learndash' ), esc_html( learndash_get_custom_label_lower( 'lesson' ) ) );
}
?>
</span>
<br />
<?php endif; ?>
<?php if ( $show_content ) : ?>
<?php if ( ( isset( $materials ) ) && ( ! empty( $materials ) ) ) : ?>
<div id="learndash_topic_materials" class="learndash_topic_materials">
<h4>
<?php
// translators: placeholder: Topic.
printf( esc_html_x( '%s Materials', 'placeholder: Topic', 'learndash' ), LearnDash_Custom_Label::get_label( 'topic' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Method escapes output
?>
</h4>
<p><?php echo $materials; ?></p>
</div>
<?php endif; ?>
<div class="learndash_content"><?php echo $content; ?></div>
<?php if ( ! empty( $quizzes ) ) : ?>
<div id="learndash_quizzes" class="learndash_quizzes">
<div id="quiz_heading"><span><?php echo LearnDash_Custom_Label::get_label( 'quizzes' ); ?></span><span class="right"><?php esc_html_e( 'Status', 'learndash' ); ?></span></div> <?php // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Method escapes output ?>
<div id="quiz_list" class="quiz_list">
<?php foreach ( $quizzes as $quiz ) : ?>
<div id='post-<?php echo esc_attr( $quiz['post']->ID ); ?>' class='<?php echo esc_attr( $quiz['sample'] ); ?>'>
<div class="list-count"><?php echo esc_html( $quiz['sno'] ); ?></div>
<h4>
<a class='<?php echo esc_attr( $quiz['status'] ); ?>' href='<?php echo esc_url( $quiz['permalink'] ); ?>'><?php echo $quiz['post']->post_title; ?></a>
</h4>
</div>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>
<?php if ( ( learndash_lesson_hasassignments( $post ) ) && ( ! empty( $user_id ) ) ) : // cspell:disable-line. ?>
<?php
$ret = SFWD_LMS::get_template(
'learndash_lesson_assignment_uploads_list.php',
array(
'course_step_post' => $post,
'user_id' => $user_id,
)
);
echo $ret;
?>
<?php endif; ?>
<?php
/**
* Show Mark Complete Button
*/
?>
<?php if ( $all_quizzes_completed && $logged_in && ! empty( $course_id ) ) : ?>
<?php
echo '<br />' . learndash_mark_complete(
$post,
array(
'form' => array(
'id' => 'sfwd-mark-complete',
),
'button' => array(
'id' => 'learndash_mark_complete_button',
),
'timer' => array(
'id' => 'learndash_timer',
),
)
);
?>
<?php endif; ?>
<?php endif; ?>
<?php
$ret = SFWD_LMS::get_template(
'learndash_course_steps_navigation.php',
array(
'course_id' => $course_id,
'course_step_post' => $post,
'user_id' => $user_id,
'course_settings' => isset( $course_settings ) ? $course_settings : array(),
)
);
echo $ret;