forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrade.txt
37 lines (31 loc) · 2.02 KB
/
upgrade.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
This file describes API changes in /grade/* ;
Information provided here is intended especially for developers.
=== 4.0 ===
* The select_in_gradebook_tabs() function in behat_grade.php has been deprecated. Please use the function
select_in_gradebook_navigation_selector() instead.
* The setting $CFG->grade_navmethod setting has been completely removed because it's not required anymore. This setting
was used to set the type of navigation (tabs or dropdown box) used in gradebook which is now replaced with tertiary
navigation.
* The print_grade_plugin_selector() function has been deprecated. This function was used to generate and output the
dropdown box navigation in gradebook which is now replaced with tertiary navigation.
* The grade_print_tabs() function has been deprecated. This function was used to generate and output the tabs navigation
in gradebook which is now replaced with tertiary navigation.
* There is a new callback inside of grade_get_plugin_info called extend_gradebook_plugininfo
which allows for new tabs to be added to the gradebook.
=== 3.7 ===
* The grade_cron() function has been removed. Please use grade_history_cleanup_task and grade_cron_task scheduled tasks instead.
=== 3.6 ===
* The grade_plugin_return constructor now uses parameters from the
request as defaults, which can be overridden by parameters supplied
to the constructor. This may lead to a change in behaviour if only
some of the possible parameters are supplied.
* The grade_plugin_return class now tracks groupid as well as the
type, plugin, courseid, userid and page parameters that were tracked
previously. The groupid parameter will be set using
groups_get_course_group for the relevant course if the group is
otherwise unspecified.
* The above changes mean that code using grade_plugin_return objects
should generally no longer call groups_get_course_group directly,
but should use the gpr->groupid parameter instead.
* The grade_plugin_return constructor now accepts either course or
courseid as a parameter to specify course.