1 This files describes API changes in the assign code.
3 * The method \assign::grading_disabled() now has optional $gradinginfo parameter to improve performance
4 * Renderer (renderer.php) has been moved from mod root to classes/output/ to be more PSR compliant.
5 * Class assign_header has been moved from renderable.php to classes/ouput/assign_header.php
6 * Class assign_submion_status has been moved from renderable.php to classes/ouput/assign_submion_status.php
7 * The external functions mod_assign_external::list_participants and mod_assign_external::get_participant now return a new field
8 "submissionstatus" indicating the submission status (new, draft, reopened or submitted). Empty when not submitted.
12 * The following functions, previously used (exclusively) by upgrade steps are not available anymore because of the upgrade cleanup performed for this version. See MDL-65809 for more info:
13 - get_assignments_with_rescaled_null_grades()
16 * The allow_image_conversion method has been added to the submissionplugins. It determines whether the submission plugin
17 allows image conversion or not. By default conversion is not allowed (except when overwritten in the submission plugin)
18 * Webservice function mod_assign_get_submission_status, return value 'warnofungroupedusers', changed from PARAM_BOOL to PARAM_ALPHA. See the description for possible values.
19 * The following functions have been finally deprecated and can not be used anymore:
23 * Submissions plugins should implement the "remove" function to remove data when "Remove submission" is used.
26 * The mod_assign_base_testcase unit test base class has been deprecated.
27 It encouraged poor unit test design and led to significant performance issues with unit tests. See MDL-55609 for
29 * The function can_grade() now has optional $user parameter.
30 * Feedback plugins can now specify whether or not they want to attach files to the
31 feedback that is stored in the gradebook via the new method files_for_gradebook().
32 An example of what this method would return is -
34 'contextid' => $modulecontext->id,
35 'component' => ASSIGNFEEDBACK_XYZ_COMPONENT,
36 'filearea' => ASSIGNFEEDBACK_XYZ_FILEAREA,
37 'itemid' => $grade->id
41 * Functions assign:get_assign_grading_summary_renderable, assign:can_view_submission, assign:count_submissions_with_status,
42 assign:count_submissions_need_grading and mod_assign_external::get_submission_status now admit an additional group parameter.
43 This parameter can be used to force those functions to retrieve data only for the given group.
46 * assign::add_attempt requires that set_most_recent_team_submission() be called if attempting to use this function with a team
50 * assign_refresh_events() Now takes two additional parameters to refine the update to a specific instance. This function
51 now optionally takes the module instance object or ID, and the course module object or ID. Please try to send the full
52 objects instead of the ids to save DB calls.
55 * All pluginfile file serving functions now pass through the options to send_stored_file() (all assignment plugins should do
57 * Fixed calendar event types for overridden due dates from 'close' to 'due'.
58 * Removed calendar event type of 'open', since mod_assign only has the 'due' event type. No point in creating an override event
59 for an event type that does not exist.
62 * External function mod_assign_external::get_assignments now returns additional optional fields:
63 - preventsubmissionnotingroup: Prevent submission not in group.
64 - submissionstatement and submissionstatementformat: When there is a submission statement defined.
65 * Proper checking for empty submissions
66 * Submission modification time checking - this will help students working in groups not clobber each others'
68 * External functions that were returning file information now return the following file fields:
69 filename, filepath, mimetype, filesize, timemodified and fileurl.
70 Those fields are now marked as VALUE_OPTIONAL for backwards compatibility.
71 Please, note that previously the filename was part of the filepath field, now they are separated.
72 * Submission and feedback plugins can now specify file areas related to their configuration data,
73 which will then be included in backup and restore; see assign_plugin::get_config_file_areas().
74 * Submission and feedback plugins must now return the specific list of configs available for external functions,
75 this can be done implementing the new assign plugin method get_config_for_external()
76 * Webservice function mod_assign_get_submissions returns a new field 'gradingstatus' from each submission.
79 * The feedback plugins now need to implement the is_feedback_modified() method. The default is to return true
80 for backwards compatibiltiy.
81 * When downloading all submissions as a zip each students' files are in a separate folder, are no longer renamed
82 and the folder structure is kept intact.
85 * assign_submission_status renderable now requires $usergroups in its constructor
86 * External function mod_assign_external::get_assignments now have a new optional parameter: includenotenrolledcourses.
87 Its default value is false, setting it to true will return assignments for courses a user can see even if it's not enroled.
90 * External parameter now returns PARAM_RAW instead of PARAM_TEXT for webservices using feedback comments.
91 * External function mod_assign_external::get_assignments now returns additional optional fields:
92 - intro: Assignment intro.
93 - introformat: Intro format.
94 - introattachments: Intro attachments files.
97 * Some DB changes were made to simplify the SQL required to query the latest attempt.
98 - The assign_submission table now has a column "latest" which is set to 1 for the latest submission attempt.
99 - There will always be a submission row if there is a grade (so the latest grade can be found by joining with the submission)
100 - There is a new submission status "new" for a submission that has never been attempted by a student (but the record exists purely
101 to mark the latest attempt number as 0). The function get_user_submission will create a record with the status set to "new"
102 by default (the previous default was "draft").
106 * Added setting sendstudentnotifications to assign DB table with admin defaults. This sets the default value for the
107 "Notify students" option on the grading forms. This setting can be retrieved via webservices.
109 * Web service function mod_assign_save_grade has an additional optional parameter $advancedgradingdata which allows
110 advanced grading data to be used.
111 * A new web service function mod_assign_save_grades has been added which allows multiple grades to be processed.
112 * The event submission_updated() [mod/assign/classes/event/submission_updated.php] has been altered to now be an abstract class
113 for submission events in the submission plug-ins.
117 * format_text() is no longer used for formating assignment content to be used in events (assign_submission_onlinetext::save()) or
118 the word count (assign_submission_onlinetext::format_for_log()) in mod/assign/submission/onlinetext/locallib.php. format_text()
119 should only be used when displaying information to the screen. It was being used incorrectly before in these areas. Plugins using
120 the event assessable_uploaded() should use file_rewrite_pluginfile_urls() to translate the text back to the desired output.
123 * To see submission/grades of inactive users, user should have moodle/course:viewsuspendedusers capability.
124 * count_* functions will return only active participants.
125 * assign_submission_plugin->lock and unlock methods have an additional parameter for user flags. A user will not
126 always have a submission record when the submission is locked/unlocked.
127 * Submission and feedback plugins can now participate in webservices. The plugin must implement get_external_parameters()
128 to describe the parameters it is expecting from the mod_assign_save_grade or mod_assign_save_submission functions. The
129 plugin will then handle the webservice via it's normal save() method with the extra data supplied in the $data argument.
133 * New feature - Attempt History
135 This adds settings so that a student can have build up a history of separate submission attempts and grades for the same
138 Extra settings on the assign table are:
139 attemptreopenmethod - The way attempts can be reopened. One of:
140 ASSIGN_ATTEMPT_REOPEN_METHOD_NONE - Attempts cannot be reopened (default)
141 ASSIGN_ATTEMPT_REOPEN_METHOD_UNTIL_PASS - Attempts are reopened on grading until the gradebook
142 indicates this student has passed.
143 ASSIGN_ATTEMPT_REOPEN_METHOD_MANUAL - Attempts are reopened on manually by the grader.
144 maxattempts - The maximum allowed number of attempts per student for this assign instance.
146 Extra settings on the submission and grade records:
147 attemptnumber - Starting from 0 until the latest attempt.
149 New table assign_user_flags holds user specific flags that were stored in the assign_grade table. (contains assignment,
150 userid, extensionduedate, mailed and locked)
153 "get_user_grade" function has an extra optional parameter to retrieve a specific attempt number.
154 "get_user_submission" function has an extra optional parameter to retrieve a specific attempt number.
155 "get_group_submission" function has an extra optional parameter to retrieve a specific attempt number.
156 new "get_user_flags" function can retrieve the user flags for a specific user (extensionduedate, mailed and locked).
157 new "update_user_flags" function can update the user flags for a specific user (extensionduedate, mailed and locked).
159 assign_submission_plugin changes:
160 "precheck_submission" function now takes a submission record so you can determine which submission is being checked.
161 "submit_for_grading" function now takes a submission record so you can determine which submission is being submitted.
162 new function "copy_submission" can be implemented to copy submission data from one submission to a new one.
164 New renderable object "assign_attempt_history" for rendering the list of previous submissions.
165 New renderable object "assign_gradingmessage" for rendering a generic grading message.
167 assign_grading_table changes:
168 get_group_and_submission is now protected and should not be called from outside this class.
171 === Earlier changes ===
173 * Were not documented in this way. Sorry.