Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
This files describes API changes in /admin/tool/* - plugins,
2
information provided here is intended especially for developers.
3
 
4
=== 4.0 ===
5
 
6
* The Health center tool has been completely removed.
7
 
8
=== 3.6 ===
9
 
10
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.
11
 
12
=== 2.2 ===
13
 
14
API changes:
15
* new admin tool plugin type introduced
16
 
17
 
18
How to migrate existing admin reports:
19
# move all files to new /admin/tool/yourplugin/ location
20
# update all links to admin tools /$CFG->admin/report/ to /$CFG->admin/tool/
21
# add language pack with at least 'pluginname' string
22
# update all language strings (use 'tool_yourplugin' instead of 'report_yourplugin') - use AMOS hints in commit message
23
# update all capability names
24
# create db/install.php migration script - delete old settings and capabilities (see converted plugins for examples)
25
# grep the plugin codebase and look for any remaining 'coursereport' occurrences
26
# update CSS selectors
27
 
28
See http://docs.moodle.org/dev/Admin_tools for more details and explanation.