MDL-39278 rebuild moodle.css with everything in place
[moodle.git] / enrol / upgrade.txt
blob14fd40511ad4b55efcd226bbd8b1f53296fa3c93
1 This files describes API changes in /enrol/* - plugins,
2 information provided here is intended especially for developers.
5 === 2.5 ===
7 * plugins may use general enrol/editenrolment.php page to let users edit
8   enrolments manually
10 === 2.4 ===
12 required changes in code:
13 * use role_get_name() or role_fix_names() if you need any role names, using role.name
14   directly from database is not correct any more
15 * new restore support: ENROL_RESTORE_EXACT, ENROL_RESTORE_NOUSERS
16   and ENROL_RESTORE_CLASS were removed, implement new restore_* plugin methods instead
18 other changes and new features:
19 * course enrolment manager now works with disabled plugins too
20 * new support for protected group membership linked to enrol instance
21 * new support for expiry notifications - see enrol_plugin::send_expiry_notifications() method
24 === 2.2 ===
26 required changes in code:
27 * load_temp_role() is deprecated, use load_temp_course_role() instead, temp role not loaded
28 * remove_temp_role() is deprecated, use remove_temp_course_roles() instead
29 * 'user_unenrol_modified' event was renamed to 'user_enrol_modified'
32 === 2.0 ===
34 required changes in code:
35 * enrolment plugins need to be rewritten to use new API - see inline phpdocs and official plugins