MDL-38466 filters: Redos protection and unit tests
[moodle.git] / mod / upgrade.txt
blobf7611075ad0079ed95d668befd2028fd888ed5dd
1 This files describes API changes in /mod/* - activity modules,
2 information provided here is intended especially for developers.
4 === 2.7 ===
6 * modgrade form element has been redesigned and allows setting the maximum grade point higher than 100.
7 * The usage of $module in mod/xxx/version.php files is now deprecated. Please use
8   $plugin instead. The support for the legacy notation will be dropped in Moodle 2.10.
9 * xxx_get_view_actions() and xxx_get_post_actions() will be ignored by new logging system for
10   participation report. view_action and post_action will be detected by event's crud and edulevel.
11 * The functions xxx_user_outline() and xxx_user_complete() have been removed from the majority of core modules (see MDL-41286),
12   except for those that require unique functionality. These functions are used by the outline report, but now if they no longer
13   exist, the default behaviour is chosen, which supports the legacy and standard log storages introduced in 2.7 (see MDL-41266).
14   It is highly recommended you remove these functions from your module if they are simply performing the default behaviour.
16 === 2.6 ===
18 * Modules using the question bank MUST now declare their use of it with the xxx_supports()
19   flag FEATURE_USES_QUESTIONS.
20 * xxx_get_types() module callback can now return subtypes that have
21   a custom help text set. Also instead of array it can now return
22   MOD_SUBTYPE_NO_CHILDREN. This is optional and still defaults to prior
23   behavior. See get_module_metadata() in course/lib.php for details.
24 * shift_course_mod_dates() has been modified to accept optional mod instance id. If mod instance id is passed then
25   dates changed will happen only on specific module instance and not on all instances of that module in course.
27 === 2.5 ===
29 * support for 'mod/*' filters was removed
31 === 2.4 ===
33 new features:
35 * mod/xxx/adminlib.php may now include 'plugininfo_yoursubplugintype' class definition
36   used by plugin_manager; it is recommended to store extra admin settings classes in this file
38 optional - no changes needed:
40 * mod_lesson_renderer::header() now accepts an additional parameter $extrapagetitle
42 * mod/data/lib.php data_get_all_recordids() now has two new optional variables:  $selectdata and $params.
44 === 2.3 ===
46 required changes in code:
48 * define the capability mod/xxx:addinstance (and the corresponding lang string)
49   (unless your mod is a MOD_ARCHETYPE_SYSTEM).
50 * xxx_pluginfile() is now given the 7th parameter (hopefully the last one) that
51   contains additional options for the file serving. The array should be re-passed
52   to send_stored_file().
54 * most resourcelib_embed_* functions are replaced with core_media_renderer;
55   for an example, see mod/resource/locallib.php, resource_display_embed()
57 optional - no changes needed:
59 * add support for handling course drag and drop types - functions
60   xxx_dndupload_register() and xxx_dndupload_handle($uploadinfo) see:
61   http://docs.moodle.org/dev/Implementing_Course_drag_and_drop_upload_support_in_a_module
63 === 2.2 ===
65 required changes in code:
66 * fix missing parameter types in optional_param() and required_param()
67 * use new optional_param_array(), required_param_array() or clean_param_array() when dealing with array parameters
68 * core_text::asort() replaced by specialized core_collator::asort()
69 * use new make_temp_directory() and make_cache_directory()
72 === 2.1 ===
74 required changes in code:
75 * add new support for basic restore from 1.9
78 === 2.0 ===
80 required changes in code:
81 * use new DML syntax everywhere
82   (http://docs.moodle.org/dev/DML_functions)
83 * use new DDL syntax in db/upgrade.php
84   (http://docs.moodle.org/dev/DDL_functions)
85 * replace defaults.php by settings.php and db/install.php
86 * replace STATEMENTS section in db/install.xml with PHP code db/install.php or db/log.php
87 * move post installation code from lib.php into db/install.php
88 * move uninstallation code from lib.php to db/uninstall.php
89 * new mandatory naming of intro and introformat table fields in module tables,
90   the presence of these fields is indicated in xxx_plugin_supports()
91 * completely rewrite file handling
92   (http://docs.moodle.org/dev/File_API)
93 * rewrite backup/restore
94   (not finished yet)
95 * rewrite trusttext support - new db table columns needed
96 * migrate all module features from mod_edit.php form to lib.php/modulename_supports() function
97 * implement new gradebook support (legacy 1.8.x grading not supported anymore)
98 * migrate custom resource module subtypes into separate modules,
99   necessary only for custom plugins in mod/resource/
100 * use new $PAGE and $OUTPUT instead of old weblib functions
101 * theme changes: move plugin styles into mod/xxx/styles.css and use new css markers for images,
102                  move all images into new mod/xxx/pix/ directory and use new outputlib api
103                  move module icon to mod/xxx/pix/icon.gif
104                  old global $THEME is fully replaced by $OUTPUT
105                  create plugin renderers
106   (http://docs.moodle.org/dev/Theme_changes_in_2.0)
107 * migrate all javascript new coding style using YUI3+YUI2
108   (http://docs.moodle.org/dev/JavaScript_usage_guide)
109 * remove '_utf8' from lang pack names, use new {a} syntax
110 * replace helps with new 'xxx_hlp' strings
111 * please note the $plugin->requires in version.php has to be bigger than 2010000000,
112   otherwise the plugin is marked as outdated and upgrade is interrupted
114 optional - no changes needed in older code:
115 * settingstree.php replaced by settings.php - just unset the $settings if you want to make custom part of settings admin tree
116 * support for new mforms editor element and embedded files
117   (not finished yet)
118 * portfolio support
119   (http://docs.moodle.org/dev/Portfolio_API)
120 * course completion tracking support
121 * new navigation features
122 * new comments API
123   (http://docs.moodle.org/dev/Comments_2.0)
124 * new ratings API
125   (http://docs.moodle.org/dev/Ratings_2.0)