ORDER BY POINTS

ORDER BY POINTS

by Diana Marcela Giraldo Tabares -
Number of replies: 1

Good afternoon,

I have been working with the CDC gradebook and it works well. But I need to know, how to order the records by the points earned automatically but not by the name. I assume that you need to change a variable on the order by, but I´m not sure if it´s in the grades.php or in the lib.php?


Thanks for your help.

Diana Marcela Giraldo T.

In reply to Diana Marcela Giraldo Tabares

Re: ORDER BY POINTS

by Jeff Graham -
Hi Diana,

You will need to make the changes in gradeslib.php towards the end of grade_get_formatted_grades() there is a large case statement "switch ($sort_by) {" you can change the default setting there.

Based on what you've described I think you will want to change the following line within that case statement.
uasort($grades_by_student, 'grade_sort_by_lastname');
to
uasort($grades_by_student, 'grade_sort_by_points');


Regards,
Jeff