[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.142.198.108: ~ $
<?php
/**
 * Displays a quiz.
 *
 * 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
 * $post            : (object) The quiz post object () (Deprecated in LD 3.1. User $quiz_post instead).
 * $quiz_post       : (object) The quiz post object ().
 * $lesson_progression_enabled  : (true/false)
 * $show_content    : (true/false) true if user is logged in and lesson progression is disabled or if previous lesson and topic is completed.
 * $attempts_left   : (true/false)
 * $attempts_count : (integer) No of attempts already made
 * $quiz_settings   : (array)
 *
 * Note:
 *
 * To get lesson/topic post object under which the quiz is added:
 * $lesson_post = !empty($quiz_settings["lesson"])? get_post($quiz_settings["lesson"]):null;
 *
 * @since 2.1.0
 *
 * @package LearnDash\Templates\Legacy\Quiz
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ( ! isset( $quiz_post ) ) || ( ! is_a( $quiz_post, 'WP_Post' ) ) ) {
	return;
}

if ( ! empty( $lesson_progression_enabled ) ) {

	$last_incomplete_step = learndash_is_quiz_accessable( null, $quiz_post, true, $course_id );
	if ( 1 !== $last_incomplete_step ) {
		if ( is_a( $last_incomplete_step, 'WP_Post' ) ) {
			if ( $last_incomplete_step->post_type === learndash_get_post_type_slug( 'topic' ) ) {
				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="' . learndash_get_step_permalink( $last_incomplete_step->ID, $course_id ) . '">' . learndash_get_custom_label_lower( 'topic' ) . '</a>'
				);
			} elseif ( $last_incomplete_step->post_type === learndash_get_post_type_slug( 'lesson' ) ) {
				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="' . learndash_get_step_permalink( $last_incomplete_step->ID, $course_id ) . '">' . learndash_get_custom_label_lower( 'lesson' ) . '</a>'
				);
			} elseif ( $last_incomplete_step->post_type === learndash_get_post_type_slug( 'quiz' ) ) {
				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="' . learndash_get_step_permalink( $last_incomplete_step->ID, $course_id ) . '">' . learndash_get_custom_label_lower( 'quiz' ) . '</a>'
				);
			} else {
				echo esc_html__( 'Please go back and complete the previous step.', 'learndash' );
			}
		}
	}
}

if ( $show_content ) {
	if ( ( isset( $materials ) ) && ( ! empty( $materials ) ) ) :
		?>
		<div id="learndash_quiz_materials" class="learndash_quiz_materials">
			<h4>
			<?php
			// translators: placeholder: Quiz.
			printf( esc_html_x( '%s Materials', 'placeholder: Quiz', 'learndash' ), LearnDash_Custom_Label::get_label( 'quiz' ) );
			?>
			</h4>
			<p><?php echo $materials; ?></p>
		</div>
		<?php
	endif;

	echo $content;
	if ( $attempts_left ) {
		echo $quiz_content;
	} else {
		?>
			<p id="learndash_already_taken">
			<?php
			echo sprintf(
				// translators: placeholders: quiz, attempts count.
				esc_html_x( 'You have already taken this %1$s %2$d time(s) and may not take it again.', 'placeholders: quiz, attempts count', 'learndash' ),
				learndash_get_custom_label_lower( 'quiz' ),
				$attempts_count
			);
			?>
			</p>
		<?php
	}
}

Filemanager

Name Type Size Permission Actions
images Folder 0755
quiz Folder 0755
course.php File 10.51 KB 0644
course_content_shortcode.php File 6.09 KB 0644
course_details_admin.php File 4.58 KB 0644
course_info_shortcode.php File 7.04 KB 0644
course_list_template.php File 1.02 KB 0644
course_navigation_admin.php File 15.63 KB 0644
course_navigation_switcher_admin.php File 6.32 KB 0644
course_navigation_widget.php File 1.88 KB 0644
course_navigation_widget_rows.php File 10.54 KB 0644
course_progress_rows.php File 8.78 KB 0644
course_progress_widget.php File 518 B 0644
course_registered_rows.php File 797 B 0644
learndash_course_complete_message.php File 902 B 0644
learndash_course_expire_status_message.php File 1.01 KB 0644
learndash_course_inprogress_message.php File 908 B 0644
learndash_course_lesson_not_available.php File 1.84 KB 0644
learndash_course_not_started_message.php File 902 B 0644
learndash_course_points_access_message.php File 1.12 KB 0644
learndash_course_points_user_message.php File 1.42 KB 0644
learndash_course_prerequisites_message.php File 2.53 KB 0644
learndash_course_steps_navigation.php File 1.84 KB 0644
learndash_course_student_message.php File 892 B 0644
learndash_course_visitor_message.php File 835 B 0644
learndash_group_message.php File 810 B 0644
learndash_lesson_assignment_upload_form.php File 3.33 KB 0644
learndash_lesson_assignment_uploads_list.php File 3.96 KB 0644
learndash_lesson_video-rtl.css File 1.89 KB 0644
learndash_lesson_video.css File 1.89 KB 0644
learndash_lesson_video.min-rtl.css File 1.72 KB 0644
learndash_lesson_video.min.css File 1.72 KB 0644
learndash_lesson_video.php File 1.38 KB 0644
learndash_pager-rtl.css File 934 B 0644
learndash_pager.css File 930 B 0644
learndash_pager.js File 14.7 KB 0644
learndash_pager.min-rtl.css File 618 B 0644
learndash_pager.min.css File 615 B 0644
learndash_pager.min.js File 7.28 KB 0644
learndash_pager.php File 4.5 KB 0644
learndash_quiz_front-rtl.css File 14.49 KB 0644
learndash_quiz_front.css File 14.48 KB 0644
learndash_quiz_front.min-rtl.css File 11.8 KB 0644
learndash_quiz_front.min.css File 11.8 KB 0644
learndash_quiz_messages.php File 10.84 KB 0644
learndash_quiz_statistics-rtl.css File 1.88 KB 0644
learndash_quiz_statistics.css File 1.87 KB 0644
learndash_quiz_statistics.min-rtl.css File 1.55 KB 0644
learndash_quiz_statistics.min.css File 1.55 KB 0644
learndash_template_functions.php File 147 B 0644
learndash_template_script.js File 5.69 KB 0644
learndash_template_script.min.js File 3.08 KB 0644
learndash_template_style-rtl.css File 23.24 KB 0644
learndash_template_style.css File 23.15 KB 0644
learndash_template_style.min-rtl.css File 18.83 KB 0644
learndash_template_style.min.css File 18.73 KB 0644
lesson.php File 7.36 KB 0644
profile.php File 11.3 KB 0644
quiz.php File 4.06 KB 0644
quiz_navigation_admin.php File 3.57 KB 0644
quiz_navigation_switcher_admin.php File 3.69 KB 0644
quiz_progress_rows.php File 9.01 KB 0644
quiz_result_categories_email.php File 678 B 0644
topic.php File 9.02 KB 0644
user_groups_shortcode.php File 2.9 KB 0644