<?php/** * Display a course progress bar and * a button for the next incomplete lesson in the course * * @since 1.0.0 * @version 3.11.1 */defined('ABSPATH')||exit;global$post;if(!llms_is_user_enrolled(get_current_user_id(),$post->ID)){return;}$student=newLLMS_Student();$progress=$student->get_progress($post->ID,'course');?><divclass="llms-course-progress"><?phpif(apply_filters('lifterlms_display_course_progress_bar',true)):?><?phplifterlms_course_progress_bar($progress,false,false);?><?phpendif;?><?phplifterlms_course_continue_button($post->ID,$student,$progress);?></div>