Simple Grader Post-installation Notes ===================================== Change the default aggregation coefficient of grade items --------------------------------------------------------- Open {MOODLE_BASE}/lib/grade/grade_item.php and seek to line 197. Make the following change: var $aggregationcoef = 0; => var $aggregationcoef = 1; Note: The line number may not be exact in your version, but it should be close. Add a check for the Simple Grader Report Plugin to gradelib ----------------------------------------------------------- Add the the following lines to the beginning of the function grade_regrade_final_grade in {MOODLE_BASE}/lib/gradelib.php: // Check for Simple Grader Report global $CFG; $exists = file_exists($CFG->dirroot. '/grade/report/simple_grader/lib/simple_gradelib.php'); if ($exists) { require_once($CFG->dirroot . '/grade/report/simple_grader/lib/simple_gradelib.php'); return simple_grade_regrade_final_grades($courseid, $userid, $updated_item); } // End check for Simple Grader Report If Simple Grader Report exists, its regrade function is called instead of the default being run. This is necessary because Simple Grader Report does not uses the same grading rules and algorithms as the default grader report. Check for simple_grader in report index.php ---------------------------------------------------------- Change the following lines from: if (empty($last)) { if (in_array('grader', $reports)) { $last = 'grader'; } to: if (empty($last)) { if (in_array('simple_grader', $reports)) { $last = 'simple_grader'; }