PluginProbe
Tutor LMS – eLearning and online course solution / 1.9.4
Tutor LMS – eLearning and online course solution v1.9.4
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 All 191 releases
tutor / templates / single-assignment.php
single-assignment.php
36 lines 883 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for displaying assignment
4 *
5 * @since v.1.0.0
6 *
7 * @author Themeum
8 * @url https://themeum.com
9 *
10 * @package TutorLMS/Templates
11 * @version 1.4.3
12 */
13
14 get_tutor_header();
15
16 global $post;
17 $currentPost = $post;
18 $enable_spotlight_mode = tutor_utils()->get_option('enable_spotlight_mode');
19
20 ?>
21
22 <?php do_action('tutor_assignment/single/before/wrap'); ?>
23 <div class="tutor-single-lesson-wrap <?php echo $enable_spotlight_mode ? "tutor-spotlight-mode" : ""; ?>">
24
25 <div class="tutor-lesson-sidebar">
26 <?php tutor_lessons_sidebar(); ?>
27 </div>
28
29 <div id="tutor-single-entry-content" class="tutor-lesson-content tutor-single-entry-content tutor-single-entry-content-<?php the_ID(); ?>">
30 <?php tutor_assignment_content(); ?>
31 </div>
32
33 </div>
34 <?php do_action('tutor_assignment/single/after/wrap');
35
36 get_tutor_footer();