MDL-29483 The list of gradable areas is now obtained from the module

At the moment, only activity modules are supported.
This commit is contained in:
David Mudrak 2011-11-02 22:25:32 +01:00
parent 967d346f72
commit 9e4eb676e4
2 changed files with 27 additions and 7 deletions

View file

@ -3892,3 +3892,12 @@ function assignment_page_type_list($pagetype, $parentcontext, $currentcontext) {
);
return $module_pagetype;
}
/**
* Lists all gradable areas for the advanced grading methods gramework
*
* @return array
*/
function assignment_grading_areas_list() {
return array('submission' => get_string('submissions', 'mod_assignment'));
}