Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Grade settings modules: Difference between revisions

From MoodleDocs
Line 20: Line 20:
=== grading_methods ===
=== grading_methods ===


Holds the grading methods that may be used by moduels.
Holds the grading methods that may be used by modules.


{| class="nicetable"
{| class="nicetable"
Line 44: Line 44:
| The module containing the string description of the grading method ie get_string(stringkey, stringkeymodule). Null if not required.
| The module containing the string description of the grading method ie get_string(stringkey, stringkeymodule). Null if not required.
|}
|}


=== grade_modules_settings ===
=== grade_modules_settings ===

Revision as of 08:33, 28 January 2010

Note: This page is a work-in-progress. Feedback and suggested improvements are welcome. Please join the discussion on moodle.org or use the page comments.


Moodle 2.0


Executive Summary

Module grade settings should be provided and stored in a central location rather than being handled by each individual module. In the UI, grade settings should appear in their own section provided by grade library.

  1. Reduce duplicate code - Requiring each module to be aware of grading settings leads to unnecessary duplication of grading code.
  1. Allow centralized grading - Shifting all grade related settings into the grade tables makes it easier to provide a centralized marking UI.

Interface

UpdatingAssignmentUI.gif

Database structures

New tables to be created

grading_methods

Holds the grading methods that may be used by modules.

Field Type Default Info
id int(10) auto-incrementing The unique ID for this grading method.
stringkey varchar(40) The key of the string description of the grading method ie get_string(stringkey). For example highest grade, average grade, last attempt, first attempt.
stringkeymodule varchar(40) The module containing the string description of the grading method ie get_string(stringkey, stringkeymodule). Null if not required.

grade_modules_settings

Holds the grade related settings for all modules. Additional columns, course id etc, may be required/desirable to make getting and setting of the settings easier.

Field Type Default Info
id int(10) auto-incrementing The unique ID for this setting.
coursemoduleid int(10) The PK of the associated record in course_modules - identifies the instance of module associated with the settings.
grade int(10) The grade
grademethod int(4) The PK of the grading method the module instance uses. For example highest grade, average grade, last attempt, first attempt.
decimalpoints int(4) How many decimal points should be displayed
applypenalties int(4) Used by quiz module. Should students be penalized for incorrect answers.


The following columns need to be migrated to the new system then removed.

  1. assignment - grade
  2. quiz - grade, grademethod

Code Alterations

Class moodleform_mod()

course/moodleform_mod.php contains the definition of the class moodleform_mod. Modules extend this class to create their configuration form.

the following new method will be added

coursemodule_grading_elements()

Similar to standard_coursemodule_elements(). Adds elements to an instance of moodle form. A new method is being added rather than adding grading elements to those already output by standard_coursemodule_elements() to allow the grading elements to appear near the top of page, just below the General section. Standard elements are usually added at the bottom of the settings. The assignment and quiz modules in 1.9 have their grade settings at the top and shifting them to the bottom would be unexpected.

It will determine whether to include a grade, grading method etc element by calling plugin_supports() found in lib/moodlelib.php like this... if (plugin_supports('mod', $mod, FEATURE_GRADE_HAS_GRADE, false)) {

   //include grade element

}

mod/%modulename%/lib.php defines a function called %modulename%_supports() that lists the elements that the module supports.

Module Enhancements

Each module's mod_form.php definition() method, for example in mod/assignment/mod_form.php, will call $this->coursemodule_grading_elements() to insert the grading elements.

Another constant like FEATURE_GRADE_HAS_GRADE called FEATURE_GRADE_HAS_GRADING_METHOD will be needed for modules like quiz that have a variable grading method.

Each module's %modname%_supports() method, for example assignment_supports() in the assignment modules, will need to be checked and possibly altered to specify the modules support for a grade and grading method.

Outstanding Issues

Where is the code that actually makes use of the module instance grade setting?