Merge branch 'MDL-51445_m30v1' of https://github.com/sbourget/moodle into MOODLE_30_S...
[moodle.git] / mod / upgrade.txt
blobfc4c1509cb79a94c78fd92af882dfb168b1f561a
1 This files describes API changes in /mod/* - activity modules,
2 information provided here is intended especially for developers.
4 === 3.0 ===
6 * Dropped support for the $module in mod/xxx/version.php files (deprecated
7   since 2.7). All activity modules must use the $plugin syntax now. See
8   https://docs.moodle.org/dev/version.php for details (MDL-43896).
9 * Modules using rating component must implement a callback mod_x_rating_can_see_item_ratings(). Refer
10   to mod_forum_rating_can_see_item_ratings() for example.
12 === 2.9 ===
14 * Added Grade to pass field to mod_form for activities that support grading.
15 * The method moodleform_mod::add_intro_editor() used in mod_form.php form
16   definitions has been deprecated. Replace it with the new
17   moodleform_mod::standard_intro_elements() method that takes the new site
18   configuration requiremodintro into account (MDL-49101).
20 === 2.8 ===
22 * Constant FEATURE_GROUPMEMBERSONLY is deprecated. Modules should remove this
23   constant from their module_supports() API function.
24 * $CFG->enablegroupmembersonly no longer exists.
26 === 2.7 ===
28 * modgrade form element has been redesigned and allows setting the maximum grade point higher than 100.
29 * The usage of $module in mod/xxx/version.php files is now deprecated. Please use
30   $plugin instead. The support for the legacy notation will be dropped in Moodle 2.10.
31 * xxx_get_view_actions() and xxx_get_post_actions() will be ignored by new logging system for
32   participation report. view_action and post_action will be detected by event's crud and edulevel.
33 * The functions xxx_user_outline() and xxx_user_complete() have been removed from the majority of core modules (see MDL-41286),
34   except for those that require unique functionality. These functions are used by the outline report, but now if they no longer
35   exist, the default behaviour is chosen, which supports the legacy and standard log storages introduced in 2.7 (see MDL-41266).
36   It is highly recommended you remove these functions from your module if they are simply performing the default behaviour.
38 === 2.6 ===
40 * Modules using the question bank MUST now declare their use of it with the xxx_supports()
41   flag FEATURE_USES_QUESTIONS.
42 * xxx_get_types() module callback can now return subtypes that have
43   a custom help text set. Also instead of array it can now return
44   MOD_SUBTYPE_NO_CHILDREN. This is optional and still defaults to prior
45   behavior. See get_module_metadata() in course/lib.php for details.
46 * shift_course_mod_dates() has been modified to accept optional mod instance id. If mod instance id is passed then
47   dates changed will happen only on specific module instance and not on all instances of that module in course.
49 === 2.5 ===
51 * support for 'mod/*' filters was removed
53 === 2.4 ===
55 new features:
57 * mod/xxx/adminlib.php may now include 'plugininfo_yoursubplugintype' class definition
58   used by plugin_manager; it is recommended to store extra admin settings classes in this file
60 optional - no changes needed:
62 * mod_lesson_renderer::header() now accepts an additional parameter $extrapagetitle
64 * mod/data/lib.php data_get_all_recordids() now has two new optional variables:  $selectdata and $params.
66 === 2.3 ===
68 required changes in code:
70 * define the capability mod/xxx:addinstance (and the corresponding lang string)
71   (unless your mod is a MOD_ARCHETYPE_SYSTEM).
72 * xxx_pluginfile() is now given the 7th parameter (hopefully the last one) that
73   contains additional options for the file serving. The array should be re-passed
74   to send_stored_file().
76 * most resourcelib_embed_* functions are replaced with core_media_renderer;
77   for an example, see mod/resource/locallib.php, resource_display_embed()
79 optional - no changes needed:
81 * add support for handling course drag and drop types - functions
82   xxx_dndupload_register() and xxx_dndupload_handle($uploadinfo) see:
83   http://docs.moodle.org/dev/Implementing_Course_drag_and_drop_upload_support_in_a_module
85 === 2.2 ===
87 required changes in code:
88 * fix missing parameter types in optional_param() and required_param()
89 * use new optional_param_array(), required_param_array() or clean_param_array() when dealing with array parameters
90 * core_text::asort() replaced by specialized core_collator::asort()
91 * use new make_temp_directory() and make_cache_directory()
94 === 2.1 ===
96 required changes in code:
97 * add new support for basic restore from 1.9
100 === 2.0 ===
102 required changes in code:
103 * use new DML syntax everywhere
104   (http://docs.moodle.org/dev/DML_functions)
105 * use new DDL syntax in db/upgrade.php
106   (http://docs.moodle.org/dev/DDL_functions)
107 * replace defaults.php by settings.php and db/install.php
108 * replace STATEMENTS section in db/install.xml with PHP code db/install.php or db/log.php
109 * move post installation code from lib.php into db/install.php
110 * move uninstallation code from lib.php to db/uninstall.php
111 * new mandatory naming of intro and introformat table fields in module tables,
112   the presence of these fields is indicated in xxx_plugin_supports()
113 * completely rewrite file handling
114   (http://docs.moodle.org/dev/File_API)
115 * rewrite backup/restore
116   (not finished yet)
117 * rewrite trusttext support - new db table columns needed
118 * migrate all module features from mod_edit.php form to lib.php/modulename_supports() function
119 * implement new gradebook support (legacy 1.8.x grading not supported anymore)
120 * migrate custom resource module subtypes into separate modules,
121   necessary only for custom plugins in mod/resource/
122 * use new $PAGE and $OUTPUT instead of old weblib functions
123 * theme changes: move plugin styles into mod/xxx/styles.css and use new css markers for images,
124                  move all images into new mod/xxx/pix/ directory and use new outputlib api
125                  move module icon to mod/xxx/pix/icon.gif
126                  old global $THEME is fully replaced by $OUTPUT
127                  create plugin renderers
128   (http://docs.moodle.org/dev/Theme_changes_in_2.0)
129 * migrate all javascript new coding style using YUI3+YUI2
130   (http://docs.moodle.org/dev/JavaScript_usage_guide)
131 * remove '_utf8' from lang pack names, use new {a} syntax
132 * replace helps with new 'xxx_hlp' strings
133 * please note the $plugin->requires in version.php has to be bigger than 2010000000,
134   otherwise the plugin is marked as outdated and upgrade is interrupted
136 optional - no changes needed in older code:
137 * settingstree.php replaced by settings.php - just unset the $settings if you want to make custom part of settings admin tree
138 * support for new mforms editor element and embedded files
139   (not finished yet)
140 * portfolio support
141   (http://docs.moodle.org/dev/Portfolio_API)
142 * course completion tracking support
143 * new navigation features
144 * new comments API
145   (http://docs.moodle.org/dev/Comments_2.0)
146 * new ratings API
147   (http://docs.moodle.org/dev/Ratings_2.0)