Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
=== 4.5 Onwards ===
2
 
3
This file has been replaced by UPGRADING.md. See MDL-81125 for further information.
4
 
5
===
1 efrain 6
This files describes API changes in /admin/tool/* - plugins,
7
information provided here is intended especially for developers.
8
 
9
=== 4.0 ===
10
 
11
* The Health center tool has been completely removed.
12
 
13
=== 3.6 ===
14
 
15
The assignment upgrade tool has been removed. If you need to upgrade assignments from before Moodle 2.3, you will have to upgrade to any Moodle version from 2.3 to 3.5, upgrade the assignments and then upgrade to a later version.
16
 
17
=== 2.2 ===
18
 
19
API changes:
20
* new admin tool plugin type introduced
21
 
22
 
23
How to migrate existing admin reports:
24
# move all files to new /admin/tool/yourplugin/ location
25
# update all links to admin tools /$CFG->admin/report/ to /$CFG->admin/tool/
26
# add language pack with at least 'pluginname' string
27
# update all language strings (use 'tool_yourplugin' instead of 'report_yourplugin') - use AMOS hints in commit message
28
# update all capability names
29
# create db/install.php migration script - delete old settings and capabilities (see converted plugins for examples)
30
# grep the plugin codebase and look for any remaining 'coursereport' occurrences
31
# update CSS selectors
32
 
33
See http://docs.moodle.org/dev/Admin_tools for more details and explanation.