lifterlms_template_student_dashboard_my_grades_table( obj $course, obj $student )

Output the template for a single grades table on the student dashboard


Description Description


Parameters Parameters

$course

(obj) (Required) LLMS_Course.

$student

(obj) (Required) LLMS_Student.


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/functions/llms.functions.templates.dashboard.php

	function lifterlms_template_student_dashboard_my_grades_table( $course, $student ) {

		$section_headings = apply_filters( 'llms_student_dashboard_my_grades_table_headings', array(
			'completion_date' => __( 'Completion Date', 'lifterlms' ),
			'associated_quiz' => __( 'Quiz', 'lifterlms' ),
			'overall_grade' => __( 'Grade', 'lifterlms' ),
		) );

		llms_get_template( 'myaccount/my-grades-single-table.php', array(
			'course' => $course,
			'student' => $student,
			'section_headings' => $section_headings,
		) );

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.24.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.





Permalink: