need grade_get_grades example

need grade_get_grades example

napisao/la Erik Oberhausen -
Broj odgovora: 1

Hello.

I have been tasked to modify some things on a template which requires me to fetch a user's grades through the lessons of a topics format course. (Moodle 1.9)

As I have been playing with the main format.php file, I am able to expose the course and user objects but am having no luck grabbing lesson scores for a test user I have setup. I pushed the user through several simplistic true/false lessons, with each lesson completed.

I have attempted to grab the scores in this manner:

$grades = grade_get_grades($course->id, 'mod', 'lesson', 4, $USER->id);

The lesson id above is hard coded, but I have tried it dynamically as well as plugging in other values but I am always getting an empty object returned:

object Object ( [items] => Array ( [outcomes] => Array ) )

I'm able to see the completed scores in the mdl_lesson_grades table.

Hoping that I'm just missing something very simple.

Any reply is greatly appreciated.

Thanks!