MDL-40392 Navigation -> my courses listing tests
[moodle.git] / enrol / upgrade.txt
blobb4364594b45e8e574266711f43d9ebcb07883d37
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
9 * new support for grade recovery in enrol_plugin::enrol_user() method
11 === 2.4 ===
13 required changes in code:
14 * use role_get_name() or role_fix_names() if you need any role names, using role.name
15   directly from database is not correct any more
16 * new restore support: ENROL_RESTORE_EXACT, ENROL_RESTORE_NOUSERS
17   and ENROL_RESTORE_CLASS were removed, implement new restore_* plugin methods instead
19 other changes and new features:
20 * course enrolment manager now works with disabled plugins too
21 * new support for protected group membership linked to enrol instance
22 * new support for expiry notifications - see enrol_plugin::send_expiry_notifications() method
25 === 2.2 ===
27 required changes in code:
28 * load_temp_role() is deprecated, use load_temp_course_role() instead, temp role not loaded
29 * remove_temp_role() is deprecated, use remove_temp_course_roles() instead
30 * 'user_unenrol_modified' event was renamed to 'user_enrol_modified'
33 === 2.0 ===
35 required changes in code:
36 * enrolment plugins need to be rewritten to use new API - see inline phpdocs and official plugins