core_grades_update_grades Manual Item

core_grades_update_grades Manual Item

by maynor Garcia -
Number of replies: 1

I need to update a manual item with core_grades_update_grades  , but I don't know what to write in "component" and "source".

ould you please help me? thanks!



Average of ratings: -
In reply to maynor Garcia

Re: core_grades_update_grades Manual Item

by maynor Garcia -
According to what I was reading, it is not possible with this function to edit the manual items, so what I did was to play with mysql, I arrived to this:

INSERT INTO `mdl_grade_grades` (`userid`, `itemid`, `finalgrade`, `feedback`) values (1046, 6795, '80.0', 'ok') ON DUPLICATE KEY UPDATE finalgrade = '80.0', feedback = 'ok'


With a lot of care, because it is already getting into the database.