[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.139.87.151: ~ $
<?php
/**
 * Function that help the user navigate through the course
 *
 * @since 2.1.0
 *
 * @package LearnDash\Navigation
 */

use LearnDash\Core\Utilities\Cast;

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

/**
 * Generates the previous post link/url/ID for a lesson/topic/quiz in a course.
 *
 * Important note: learndash_clear_prev_next_links() affects it via `learndash_previous_post_link` hook.
 * For some historical reason, it affects the link case only, not ID or URL.
 *
 * @since 2.1.0
 * @since 4.11.0 Added support for quizzes.
 *
 * @param string|null  $default_value Default previous post link. Default empty string.
 *                                    Null type is added for backward compatibility.
 * @param string|bool  $url           Whether to return URL or ID instead of HTML output. Default false.
 *                                    If true, the URL is returned.
 *                                    If 'id', ID is returned.
 *                                    Otherwise, an HTML link is returned.
 * @param WP_Post|null $post          Current post. If not passed, the global post object is used.
 *
 * @return string|int Previous post link URL or HTML link or Post ID depending on the `$url` parameter.
 *                    If a link cannot be generated, the default value will be returned.
 */
function learndash_previous_post_link( $default_value = '', $url = false, $post = null ) {
	// If a post is not passed, use the global post object.

	if ( ! $post instanceof WP_Post ) {
		global $post;
	}

	// Prepare arguments.

	/**
	 * Filters previous step default value for the course.
	 *
	 * @since 4.11.0
	 *
	 * @param string       $default_value Default previous step value. Always cast to string.
	 * @param WP_Post|null $post          Current post. If not passed, the global post object is used. If not available, null.
	 *
	 * @return int Previous step default value.
	 */
	$default_value = apply_filters(
		'learndash_course_previous_step_default_value',
		Cast::to_string( $default_value ),
		$post
	);

	// If post is not available, return the default previous post link.
	if ( ! $post instanceof WP_Post ) {
		return $default_value;
	}

	// If the post is not a lesson/topic/quiz, return the default previous post link.
	if (
		! in_array(
			$post->post_type,
			[
				LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::LESSON ),
				LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::TOPIC ),
				LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::QUIZ ),
			],
			true
		)
	) {
		return $default_value;
	}

	$course_id             = Cast::to_int( learndash_get_course_id( $post ) );
	$course_step_ids       = learndash_course_get_linear_step_ids( $course_id );
	$current_step_position = array_search( $post->ID, $course_step_ids, true );

	if ( false === $current_step_position ) {
		return $default_value;
	}

	$previous_step_position = Cast::to_int( $current_step_position ) - 1;

	// If the current step is the first step, return the default previous post link.
	if ( ! isset( $course_step_ids[ $previous_step_position ] ) ) {
		return $default_value;
	}

	$previous_post = get_post( $course_step_ids[ $previous_step_position ] );

	// If the previous step is not a post for some reason, return the default previous post link.
	if ( ! $previous_post instanceof WP_Post ) {
			return $default_value;
	}

	// Return the post ID if the ID is requested.
	if ( 'id' === $url ) {
		/**
		 * Filters previous step ID for the course.
		 *
		 * @since 4.11.0
		 *
		 * @param int     $previous_post_id Previous post ID.
		 * @param WP_Post $post             Current post.
		 * @param WP_Post $previous_post    Previous post.
		 *
		 * @return int Previous step ID.
		 */
		return apply_filters( 'learndash_course_previous_step_id', $previous_post->ID, $post, $previous_post );
	}

	$permalink = Cast::to_string(
		learndash_get_step_permalink( $previous_post->ID, $course_id )
	);

	// If $permalink is empty, return the default previous post link.
	if ( empty( $permalink ) ) {
		return $default_value;
	}

	// Return the post URL if the URL is requested.
	if ( Cast::to_bool( $url ) ) {
		/**
		 * Filters previous step url for the course.
		 *
		 * @since 4.11.0
		 *
		 * @param string  $permalink     Permalink.
		 * @param WP_Post $post          Current post.
		 * @param WP_Post $previous_post Previous post.
		 *
		 * @return string Previous step URL.
		 */
		return apply_filters( 'learndash_course_previous_step_url', $permalink, $post, $previous_post );
	}

	// Return the HTML output if the URL is not requested.

	$link_label = learndash_get_label_course_step_previous( $previous_post->post_type );

	$link_name_with_arrow = $link_label;
	if ( ! is_rtl() ) {
		$link_name_with_arrow = '<span class="meta-nav">&larr;</span> ' . $link_label;
	}

	$link = sprintf(
		'<a href="%1$s" class="prev-link" rel="prev">%2$s</a>',
		esc_url( $permalink ),
		$link_name_with_arrow
	);

	/**
	 * Filters previous post link output for the course.
	 *
	 * @since 2.1.0
	 * @since 4.11.0 Added `$previous_post` parameter.
	 *
	 * @param string  $link          Link HTML.
	 * @param string  $permalink     Permalink.
	 * @param string  $link_label    Link label.
	 * @param WP_Post $post          Current post.
	 * @param WP_Post $previous_post Previous post.
	 *
	 * @return string Previous post link output.
	 */
	return apply_filters(
		'learndash_previous_post_link',
		$link,
		$permalink,
		$link_label,
		$post,
		$previous_post
	);
}

/**
 * Generates the next post link/url/ID for a lesson/topic/quiz in a course.
 *
 * Important note: learndash_clear_prev_next_links() affects it via `learndash_next_post_link` hook.
 * For some historical reason, it affects the link case only, not ID or URL.
 *
 * @since 2.1.0
 * @since 4.11.0 Added support for quizzes.
 *
 * @param string|null  $default_value Default next post link. Default empty string.
 *                                    Null type is added for backward compatibility.
 * @param string|bool  $url           Whether to return URL or ID instead of HTML output. Default false.
 *                                    If true, the URL is returned.
 *                                    If 'id', ID is returned.
 *                                    Otherwise, an HTML link is returned.
 * @param WP_Post|null $post          Current post. If not passed, the global post object is used.
 *
 * @return string|int Next post link URL or HTML link or Post ID depending on the `$url` parameter.
 *                    If a link cannot be generated, the default value will be returned.
 */
function learndash_next_post_link( $default_value = '', $url = false, $post = null ) {
	// If a post is not passed, use the global post object.

	if ( ! $post instanceof WP_Post ) {
		global $post;
	}

	// Prepare arguments.

	/**
	 * Filters next step default value for the course.
	 *
	 * @since 4.11.0
	 *
	 * @param string       $default_value Default step post value. Always cast to string.
	 * @param WP_Post|null $post          Current post. If not passed, the global post object is used. If not available, null.
	 *
	 * @return int Next step default value.
	 */
	$default_value = apply_filters(
		'learndash_course_next_step_default_value',
		Cast::to_string( $default_value ),
		$post
	);

	// If that is not available, return the default next post link.

	if ( ! $post instanceof WP_Post ) {
		return $default_value;
	}

	// If the post is not a lesson/topic/quiz, return the default next post link.
	if (
		! in_array(
			$post->post_type,
			[
				LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::LESSON ),
				LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::TOPIC ),
				LDLMS_Post_Types::get_post_type_slug( LDLMS_Post_Types::QUIZ ),
			],
			true
		)
	) {
		return $default_value;
	}

	$course_id             = Cast::to_int( learndash_get_course_id( $post ) );
	$course_step_ids       = learndash_course_get_linear_step_ids( $course_id );
	$current_step_position = array_search( $post->ID, $course_step_ids, true );

	if ( false === $current_step_position ) {
		return $default_value;
	}

	$next_step_position = Cast::to_int( $current_step_position ) + 1;

	// If the current step is the last step, return the default next post link.
	if ( ! isset( $course_step_ids[ $next_step_position ] ) ) {
		return $default_value;
	}

	$next_post = get_post( $course_step_ids[ $next_step_position ] );

	// If the next step is not a post for some reason, return the default next post link.
	if ( ! $next_post instanceof WP_Post ) {
		return $default_value;
	}

	// Return the post ID if the ID is requested.
	if ( 'id' === $url ) {
		/**
		 * Filters next step ID for the course.
		 *
		 * @since 4.11.0
		 *
		 * @param int     $next_post_id Next post ID.
		 * @param WP_Post $post         Current post.
		 * @param WP_Post $next_post    Next post.
		 *
		 * @return int Next step ID.
		 */
		return apply_filters( 'learndash_course_next_step_id', $next_post->ID, $post, $next_post );
	}

	$permalink = Cast::to_string(
		learndash_get_step_permalink( $next_post->ID, $course_id )
	);

	// If $permalink is empty, return the default next post link.
	if ( empty( $permalink ) ) {
		return $default_value;
	}

	// Return the post URL if the URL is requested.
	if ( Cast::to_bool( $url ) ) {
		/**
		 * Filters next step url for the course.
		 *
		 * @since 4.11.0
		 *
		 * @param string  $permalink Permalink.
		 * @param WP_Post $post      Current post.
		 * @param WP_Post $next_post Next post.
		 *
		 * @return string Next step URL.
		 */
		return apply_filters( 'learndash_course_next_step_url', $permalink, $post, $next_post );
	}

	// Return the HTML output if the URL is not requested.

	$link_label = learndash_get_label_course_step_next( $next_post->post_type );

	$link_name_with_arrow = $link_label;
	if ( ! is_rtl() ) {
		$link_name_with_arrow = $link_label . ' <span class="meta-nav">&rarr;</span>';
	}

	$link = sprintf(
		'<a href="%1$s" class="next-link" rel="next">%2$s</a>',
		esc_url( $permalink ),
		$link_name_with_arrow
	);

	/**
	 * Filters next post link output for the course.
	 *
	 * @since 2.1.0
	 * @since 4.11.0 Added `$next_post` parameter.
	 *
	 * @param string  $link       Link HTML.
	 * @param string  $permalink  Permalink.
	 * @param string  $link_label Link label.
	 * @param WP_Post $post       Current post.
	 * @param WP_Post $next_post  Next post.
	 *
	 * @return string Next post link output.
	 */
	return apply_filters( 'learndash_next_post_link', $link, $permalink, $link_label, $post, $next_post );
}

/**
 * Hides the next/previous post links in certain situations.
 *
 * Fires on `previous_post_link` and `next_post_link` hook.
 *
 * @since 2.1.0
 *
 * @param string $prev_link The next/previous post link.
 *
 * @return string The next/previous post link.
 */
function learndash_clear_prev_next_links( $prev_link = '' ) {
	global $post;

	if ( ! is_singular() || empty( $post->post_type ) || ! in_array( $post->post_type, array( 'sfwd-quiz', 'sfwd-courses', 'sfwd-topic', 'sfwd-assignment' ), true ) ) {
		return $prev_link;
	} else {
		return '';
	}
}
add_filter( 'previous_post_link', 'learndash_clear_prev_next_links', 1 );
add_filter( 'next_post_link', 'learndash_clear_prev_next_links', 1 );

/**
 * Outputs the continue quiz link.
 *
 * @param int $id Quiz ID.
 *
 * @return string The continue quiz link HTML.
 *                Empty string if the quiz is not a part of a course or ID passed is not a quiz.
 */
function learndash_quiz_continue_link( $id ) {
	$quiz_id   = Cast::to_int( $id );
	$course_id = Cast::to_int( learndash_get_course_id( $id ) );

	if (
		$course_id <= 0
		|| $quiz_id <= 0
		|| get_post_type( $quiz_id ) !== learndash_get_post_type_slug( LDLMS_Post_Types::QUIZ )
	) {
		return '';
	}

	$url = add_query_arg(
		[
			'quiz_redirect' => 1,
			'quiz_id'       => $quiz_id,
		],
		Cast::to_string( learndash_get_step_permalink( $id, $course_id ) )
	);

	$link = sprintf(
		'<a id="quiz_continue_link" href="%1$s">%2$s</a>',
		esc_url( $url ),
		LearnDash_Custom_Label::get_label( 'button_click_here_to_continue' ) // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Method escapes output.
	);

	/**
	 * Filters HTML of continue quiz link.
	 *
	 * @since 2.1.0
	 *
	 * @param string $link Continue link HTML.
	 * @param string $url  Continue link url.
	 *
	 * @return string Continue link HTML.
	 */
	return apply_filters( 'learndash_quiz_continue_link', $link, $url );
}

/**
 * Outputs the LearnDash topic dots.
 *
 * Indicates the name of the topic and whether it's been completed
 *
 * @since 2.1.0
 *
 * @param int      $lesson_id Lesson ID.
 * @param boolean  $show_text Whether to show text.
 * @param string   $type      The type of dots. Value can be 'dots', 'list' or 'array'.
 * @param int|null $user_id   User ID.
 * @param int|null $course_id Course ID.
 *
 * @return string|array The topic dots output or an array of topics.
 */
function learndash_topic_dots( $lesson_id, $show_text = false, $type = 'dots', $user_id = null, $course_id = null ) {
	if ( empty( $lesson_id ) ) {
		return '';
	}

	if ( empty( $course_id ) ) {
		$course_id = learndash_get_course_id( $lesson_id );
	}

	$topics = learndash_get_topic_list( $lesson_id, $course_id );
	if ( empty( $topics[0]->ID ) ) {
		return '';
	}

	$topics_progress = learndash_get_course_progress( $user_id, $topics[0]->ID, $course_id );

	if ( ! empty( $topics_progress['posts'][0] ) ) {
		$topics = $topics_progress['posts'];
	}

	if ( 'array' == $type ) {
		return $topics;
	}

	$html = "<div id='learndash_topic_dots-" . esc_attr( $lesson_id ) . "' class='learndash_topic_dots type-" . esc_attr( $type ) . "'>";

	if ( ! empty( $show_text ) ) {
		$html .= '<strong>' . esc_html( $show_text ) . '</strong>';
	}

	switch ( $type ) {
		case 'list':
			$html .= '<ul>';
			$sn    = 0;

			foreach ( $topics as $topic ) {
				$sn++;

				if ( $topic->completed ) {
					$completed = 'topic-completed';
				} else {
					$completed = 'topic-notcompleted';
				}

				/**
				 * Filters output of topic list dots.
				 *
				 * @since 2.1.0
				 *
				 * @param string  $topic_dots  Topic dots output.
				 * @param WP_Post $topic       Topic WP_Post object to be checked.
				 * @param bool    $completed   A flag if a topic is completed or not.
				 * @param string  $type        Type of dots. Value can dots or list.
				 * @param mixed   $topic_count Count of topics.
				 */
				$html .= apply_filters(
					'learndash_topic_dots_item',
					"<li><a class='" . esc_attr( $completed ) . "' href='" . esc_url( get_permalink( $topic->ID ) ) . "'  title='" . esc_html( apply_filters( 'the_title', $topic->post_title, $topic->ID ) ) . "'><span>" . wp_kses_post( apply_filters( 'the_title', $topic->post_title, $topic->ID ) ) . '</span></a></li>', // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- WP core hook.
					$topic,
					(bool) $topic->completed,
					$type,
					$sn
				);
			}

			$html .= '</ul>';
			break;

		case 'dots':
		default:
			$sn = 0;

			foreach ( $topics as $topic ) {
				$sn++;

				if ( $topic->completed ) {
					$completed = 'topic-completed';
				} else {
					$completed = 'topic-notcompleted';
				}

				/** This filter is documented in includes/course/ld-course-navigation.php */
				$html .= apply_filters( 'learndash_topic_dots_item', '<a class="' . esc_attr( $completed ) . '" href="' . esc_url( get_permalink( $topic->ID ) ) . '"><span title="' . esc_html( apply_filters( 'the_title', $topic->post_title, $topic->ID ) ) . '"></span></a>', $topic, $completed, $type, $sn ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- WP Core Hook
			}

			break;
	}

	$html .= '</div>';

	return $html;
}

/**
 * Gets the topics list for a lesson.
 *
 * @since 2.1.0
 *
 * @param int|null $lesson_id The ID of the lesson to get topics.
 * @param int|null $course_id     Course ID.
 *
 * @return array An array of topics list.
 */
function learndash_get_topic_list( $lesson_id = null, $course_id = null ) {
	if ( ( defined( 'LEARNDASH_COURSE_FUNCTIONS_LEGACY' ) ) && ( true === LEARNDASH_COURSE_FUNCTIONS_LEGACY ) ) {
		return learndash_get_topic_list_legacy( $lesson_id, $course_id );
	}

	$course_topics = array();

	if ( empty( $course_id ) ) {
		$course_id = learndash_get_course_id( $lesson_id );
	}

	$lesson_id = absint( $lesson_id );
	$course_id = absint( $course_id );

	if ( ( ! empty( $course_id ) ) && ( ! empty( $lesson_id ) ) ) {
		$course_topics = learndash_course_get_topics( $course_id, $lesson_id );
		/**
		 * See the part from learndash_topic_dots() where this function is called.
		 * The logic expects the returned array to be indexed starting at zero.
		 */
		if ( ! empty( $course_topics ) ) {
			$course_topics = array_values( $course_topics );
		}
	}

	return $course_topics;
}

/**
 * Gets the quiz list for a resource.
 *
 * @global WP_Post $post Global post object.
 *
 * @since 2.1.0
 *
 * @param int|null $id An ID of the resource.
 *
 * @return array An array of quizzes.
 */
function learndash_get_global_quiz_list( $id = null ) {
	$quizzes = array();

	$course_id = learndash_get_course_id( $id );
	if ( ! empty( $course_id ) ) {
		if ( ( defined( 'LEARNDASH_COURSE_FUNCTIONS_LEGACY' ) ) && ( true === LEARNDASH_COURSE_FUNCTIONS_LEGACY ) ) {
			return learndash_get_global_quiz_list_legacy( $id );
		}

		$quizzes = learndash_course_get_quizzes( $course_id, $course_id );
	}
	return $quizzes;
}

/**
 * Gets the lesson list output for a course.
 *
 * @since 2.1.0
 *
 * @param int|WP_Post|null $course_id  Optional. The course ID or `WP_Post` object. Default null.
 * @param int|null         $user_id    Optional. User ID. Default null.
 * @param array            $query_args Optional. An array of query arguments to get lesson list. Default empty array.
 *
 * @return array The lesson list array.
 */
function learndash_get_course_lessons_list( $course_id = null, $user_id = null, $query_args = array() ) {
	if ( ( defined( 'LEARNDASH_COURSE_FUNCTIONS_LEGACY' ) ) && ( true === LEARNDASH_COURSE_FUNCTIONS_LEGACY ) ) {
		return learndash_get_course_lessons_list_legacy( $course_id, $user_id, $query_args );
	}

	$lessons = array();

	if ( empty( $user_id ) ) {
		$user_id = get_current_user_id();
	}

	if ( empty( $course_id ) ) {
		$course_id = learndash_get_course_id();
	}

	$course_post = get_post( $course_id );
	if ( ( is_a( $course_post, 'WP_Post' ) ) && ( learndash_get_post_type_slug( 'course' ) === $course_post->post_type ) ) {
		$course_id = $course_post->ID;
	}

	if ( ! empty( $course_id ) ) {
		// Convert some legacy query parameters.
		if ( isset( $query_args['num'] ) ) {
			if ( ( ! isset( $query_args['per_page'] ) ) || ( empty( $query_args['per_page'] ) ) ) {
				$query_args['per_page'] = intval( $query_args['num'] );
			}
			unset( $query_args['num'] );
		}

		if ( isset( $query_args['posts_per_page'] ) ) {
			if ( ( ! isset( $query_args['per_page'] ) ) || ( empty( $query_args['per_page'] ) ) ) {
				$query_args['per_page'] = intval( $query_args['posts_per_page'] );
			}
			unset( $query_args['posts_per_page'] );
		}

		if ( isset( $query_args['pagination'] ) ) {
			if ( ! isset( $query_args['nopaging'] ) ) {
				if ( ( 'true' === $query_args['pagination'] ) || ( true === $query_args['pagination'] ) ) {
					$query_args['nopaging'] = false;
				} elseif ( ( 'false' === $query_args['pagination'] ) || ( false === $query_args['pagination'] ) ) {
					$query_args['nopaging'] = true;
				}
			}
			unset( $query_args['pagination'] );
		}

		if ( ! isset( $query_args['paged'] ) ) {
			if ( isset( $_GET['ld-lesson-page'] ) ) {
				$query_args['paged'] = intval( $_GET['ld-lesson-page'] );
			}
		}

		$query_args['return_type'] = 'WP_Post';

		$ld_course_object = LDLMS_Factory_Post::course( intval( $course_id ) );
		if ( ( $ld_course_object ) && ( is_a( $ld_course_object, 'LDLMS_Model_Course' ) ) ) {
			$course_lessons = $ld_course_object->get_lessons( $query_args );
			if ( ! empty( $course_lessons ) ) {
				$lessons_pager = $ld_course_object->get_pager( $course_id, learndash_get_post_type_slug( 'lesson' ) );
				$sno           = 1;
				if ( ( isset( $lessons_pager['per_page'] ) ) && ( isset( $lessons_pager['paged'] ) ) ) {
					$sno = 1 + ( absint( $lessons_pager['per_page'] ) * ( absint( $lessons_pager['paged'] ) - 1 ) );
				}
				foreach ( $course_lessons as $lesson_post ) {
					$lesson_item = array(
						'sno'                => $sno,
						'id'                 => $lesson_post->ID,
						'post'               => $lesson_post,
						'permalink'          => '',
						'class'              => '',
						'status'             => '',
						'sample'             => '',
						'sub_title'          => '',
						'lesson_access_from' => '',
					);

					if ( LearnDash_Settings_Section::get_section_setting( 'LearnDash_Settings_Section_Permalinks', 'nested_urls' ) == 'yes' ) {
						$lesson_item['permalink'] = learndash_get_step_permalink( $lesson_post->ID, $course_id );
					} else {
						$lesson_item['permalink'] = get_permalink( $lesson_post->ID );
					}

					$lesson_item['sample'] = ( learndash_is_sample( $lesson_post->ID ) ) ? 'is_sample' : 'is_not_sample';

					if ( ! learndash_is_lesson_notcomplete( $user_id, array( $lesson_post->ID => 1 ), $course_id ) ) {
						$lesson_item['status'] = 'completed';
					} else {
						$lesson_item['lesson_access_from'] = ld_lesson_access_from( $lesson_post->ID, $user_id, $course_id );

						if ( empty( $lesson_item['lesson_access_from'] ) ) {
							$lesson_item['status'] = 'notcompleted';
						} else {
							$lesson_item['status']    = 'notavailable';
							$lesson_item['sub_title'] = SFWD_LMS::get_template(
								'learndash_course_lesson_not_available',
								array(
									'user_id'   => $user_id,
									'course_id' => $course_id,
									'lesson_id' => $lesson_post->ID,
									'lesson_access_from_int' => $lesson_item['lesson_access_from'],
									'lesson_access_from_date' => learndash_adjust_date_time_display( $lesson_item['lesson_access_from'] ),
									'context'   => 'loop_content_shortcode',
								),
								false
							);
						}
					}

					$lessons[ $sno ] = $lesson_item;

					$sno++;
				}
			}

			/**
			 * Support the legacy pagination data structure and hook.
			 */
			$query_posts   = new WP_Query();
			$lessons_pager = $ld_course_object->get_pager( $course_id, learndash_get_post_type_slug( 'lesson' ) );
			if ( is_array( $lessons_pager ) ) {
				if ( isset( $lessons_pager['paged'] ) ) {
					$query_posts->query_vars['paged'] = intval( $lessons_pager['paged'] );
				}
				if ( isset( $lessons_pager['total_items'] ) ) {
					$query_posts->found_posts = absint( $lessons_pager['total_items'] );
				}
				if ( isset( $lessons_pager['total_pages'] ) ) {
					$query_posts->max_num_pages = $lessons_pager['total_pages'];
				}
			}

			/**
			 * Fires after the course lesson list pagination.
			 *
			 * @param WP_Query $query_posts   Course lesson list WP_Query object.
			 * @param string   $pager_context The context where pagination is shown.
			 */
			do_action(
				'learndash_course_lessons_list_pager',
				$query_posts,
				isset( $query_args['pager_context'] ) ? esc_attr( $query_args['pager_context'] ) : ''
			);
		}
	}

	return $lessons;
}

/**
 * Gets the quiz list output for a course.
 *
 * @since 2.1.0
 *
 * @param int|WP_Post|null $course  Optional. The `WP_Post` course object or course ID. Default null.
 * @param int|null         $user_id Optional. User ID. Default null.
 *
 * @return array|string The quiz list HTML output.
 */
function learndash_get_course_quiz_list( $course = null, $user_id = null ) {
	if ( ( defined( 'LEARNDASH_COURSE_FUNCTIONS_LEGACY' ) ) && ( true === LEARNDASH_COURSE_FUNCTIONS_LEGACY ) ) {
		return learndash_get_course_quiz_list_legacy( $course, $user_id );
	}

	$quizzes = array();

	if ( is_a( $course, 'WP_Post' ) ) {
		$course_id = $course->ID;
	} else {
		$course_post = get_post( absint( $course ) );
		if ( ( is_a( $course_post, 'WP_Post' ) ) && ( learndash_get_post_type_slug( 'course' ) === $course_post->post_type ) ) {
			$course_id = $course_post->ID;
		}
	}

	if ( empty( $course_id ) ) {
		$course_id = learndash_get_course_id();
	}

	if ( ! empty( $course_id ) ) {
		$course_quizzes = learndash_course_get_quizzes( $course_id, $course_id );
		if ( ! empty( $course_quizzes ) ) {
			$sno = 1;
			foreach ( $course_quizzes as $quiz_post ) {
				$quiz_item = array(
					'sno'                   => $sno,
					'id'                    => $quiz_post->ID,
					'post'                  => $quiz_post,
					'permalink'             => '',
					'class'                 => '',
					'status'                => '',
					'sample'                => '',
					'sub_title'             => '',
					'ld_lesson_access_from' => '',
				);

				if ( LearnDash_Settings_Section::get_section_setting( 'LearnDash_Settings_Section_Permalinks', 'nested_urls' ) == 'yes' ) {
					$quiz_item['permalink'] = learndash_get_step_permalink( $quiz_post->ID, $course_id );
				} else {
					$quiz_item['permalink'] = get_permalink( $quiz_post->ID );
				}

				$quiz_item['sample'] = ( learndash_is_sample( $quiz_post->ID ) ) ? 'is_sample' : 'is_not_sample';
				$quiz_item['status'] = ( learndash_is_quiz_notcomplete( $user_id, array( $quiz_post->ID => 1 ), false, $course_id ) ) ? 'notcompleted' : 'completed';

				$quizzes[] = $quiz_item;
				$sno++;
			}
		}
	}

	return $quizzes;
}

/**
 * Gets the quiz list output for a lesson/topic.
 *
 * @since 2.1.0
 *
 * @param int|WP_Post $lesson    The `WP_Post` lesson/topic object or ID.
 * @param int|null    $user_id   Optional. User ID. Default null.
 * @param int|null    $course_id Optional. Course ID. Default null.
 *
 * @return array|string The lesson quiz list HTML output.
 */
function learndash_get_lesson_quiz_list( $lesson, $user_id = null, $course_id = null ) {
	if ( ( defined( 'LEARNDASH_COURSE_FUNCTIONS_LEGACY' ) ) && ( true === LEARNDASH_COURSE_FUNCTIONS_LEGACY ) ) {
		return learndash_get_lesson_quiz_list_legacy( $lesson, $user_id, $course_id );
	}

	$quizzes   = array();
	$lesson_id = 0;

	if ( is_a( $lesson, 'WP_Post' ) ) {
		$lesson_id = $lesson->ID;
	} else {
		$lesson_post = get_post( absint( $lesson ) );
		if ( ( is_a( $lesson_post, 'WP_Post' ) ) && ( in_array( $lesson_post->post_type, learndash_get_post_type_slug( array( 'lesson', 'topic' ) ), true ) ) ) {
			$lesson_id = $lesson_post->ID;
		}
	}

	if ( empty( $course_id ) ) {
		$course_id = learndash_get_course_id( $lesson_id );
	}

	if ( ( ! empty( $course_id ) ) && ( ! empty( $lesson_id ) ) ) {
		$course_quizzes = learndash_course_get_quizzes( $course_id, $lesson_id );
		if ( ! empty( $course_quizzes ) ) {

			$sno = 1;
			foreach ( $course_quizzes as $quiz_post ) {
				$quiz_item = array(
					'sno'                   => $sno,
					'id'                    => $quiz_post->ID,
					'post'                  => $quiz_post,
					'permalink'             => '',
					'class'                 => '',
					'status'                => '',
					'sample'                => '',
					'sub_title'             => '',
					'ld_lesson_access_from' => '',
				);

				if ( LearnDash_Settings_Section::get_section_setting( 'LearnDash_Settings_Section_Permalinks', 'nested_urls' ) == 'yes' ) {
					$quiz_item['permalink'] = learndash_get_step_permalink( $quiz_post->ID, $course_id );
				} else {
					$quiz_item['permalink'] = get_permalink( $quiz_post->ID );
				}

				$quiz_item['sample'] = ( learndash_is_sample( $quiz_post->ID ) ) ? 'is_sample' : 'is_not_sample';
				$quiz_item['status'] = ( learndash_is_quiz_notcomplete( $user_id, array( $quiz_post->ID => 1 ), false, $course_id ) ) ? 'notcompleted' : 'completed';

				$quizzes[] = $quiz_item;

				$sno++;
			}
		}
	}

	return $quizzes;
}

Filemanager

Name Type Size Permission Actions
ld-activity-functions.php File 24.32 KB 0644
ld-course-functions-legacy.php File 51.63 KB 0644
ld-course-functions.php File 51.51 KB 0644
ld-course-info-widget.php File 22.98 KB 0644
ld-course-list-shortcode.php File 199 B 0644
ld-course-metaboxes.php File 1.78 KB 0644
ld-course-navigation.php File 27.17 KB 0644
ld-course-progress.php File 89.44 KB 0644
ld-course-steps-functions.php File 44.03 KB 0644
ld-course-user-functions.php File 36.49 KB 0644
ld-course-video.php File 37.82 KB 0644