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