Merge branch 'MDL-33507' of git://github.com/danpoltawski/moodle
[moodle.git] / mod / upgrade.txt
blob20957dcd863bcc9c5c971d9fd9d93f008c86d307
1 This files describes API changes in /mod/* - activity modules,
2 information provided here is intended especially for developers.
5 === 2.3 ===
7 required changes in code:
9 * define the capability mod/xxx:addinstance (and the corresponding lang string)
10   (unless your mod is a MOD_ARCHETYPE_SYSTEM).
11 * xxx_pluginfile() is now given the 7th parameter (hopefully the last one) that
12   contains additional options for the file serving. The array should be re-passed
13   to send_stored_file().
15 * most resourcelib_embed_* functions are replaced with core_media_renderer;
16   for an example, see mod/resource/locallib.php, resource_display_embed()
19 === 2.2 ===
21 required changes in code:
22 * fix missing parameter types in optional_param() and required_param()
23 * use new optional_param_array(), required_param_array() or clean_param_array() when dealing with array parameters
24 * textlib->asort() replaced by specialized collatorlib::asort()
25 * use new make_temp_directory() and make_cache_directory()
28 === 2.1 ===
30 required changes in code:
31 * add new support for basic restore from 1.9
34 === 2.0 ===
36 required changes in code:
37 * use new DML syntax everywhere
38   (http://docs.moodle.org/dev/DML_functions)
39 * use new DDL syntax in db/upgrade.php
40   (http://docs.moodle.org/dev/DDL_functions)
41 * replace defaults.php by settings.php and db/install.php
42 * replace STATEMENTS section in db/install.xml with PHP code db/install.php or db/log.php
43 * move post installation code from lib.php into db/install.php
44 * move uninstallation code from lib.php to db/uninstall.php
45 * new mandatory naming of intro and introformat table fields in module tables,
46   the presence of these fields is indicated in xxx_plugin_supports()
47 * completely rewrite file handling
48   (http://docs.moodle.org/dev/File_API)
49 * rewrite backup/restore
50   (not finished yet)
51 * rewrite trusttext support - new db table columns needed
52 * migrate all module features from mod_edit.php form to lib.php/modulename_supports() function
53 * implement new gradebook support (legacy 1.8.x grading not supported anymore)
54 * migrate custom resource module subtypes into separate modules,
55   necessary only for custom plugins in mod/resource/
56 * use new $PAGE and $OUTPUT instead of old weblib functions
57 * theme changes: move plugin styles into mod/xxx/styles.css and use new css markers for images,
58                  move all images into new mod/xxx/pix/ directory and use new outputlib api
59                  move module icon to mod/xxx/pix/icon.gif
60                  old global $THEME is fully replaced by $OUTPUT
61                  create plugin renderers
62   (http://docs.moodle.org/dev/Theme_changes_in_2.0)
63 * migrate all javascript new coding style using YUI3+YUI2
64   (http://docs.moodle.org/dev/JavaScript_usage_guide)
65 * remove '_utf8' from lang pack names, use new {a} syntax
66 * replace helps with new 'xxx_hlp' strings
67 * please note the $plugin->requires in version.php has to be bigger than 2010000000,
68   otherwise the plugin is marked as outdated and upgrade is interrupted
70 optional - no changes needed in older code:
71 * settingstree.php replaced by settings.php - just unset the $settings if you want to make custom part of settings admin tree
72 * support for new mforms editor element and embedded files
73   (not finished yet)
74 * portfolio support
75   (http://docs.moodle.org/dev/Portfolio_API)
76 * course completion tracking support
77 * new navigation features
78 * new comments API
79   (http://docs.moodle.org/dev/Comments_2.0)
80 * new ratings API
81   (http://docs.moodle.org/dev/Ratings_2.0)