forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
87 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
This files describes API changes in /enrol/* - plugins, | ||
information provided here is intended especially for developers. | ||
|
||
|
||
=== 2.2 === | ||
|
||
required changes in code: | ||
* load_temp_role() is deprecated, use load_temp_course_role() instead, temp role not loaded | ||
* remove_temp_role() is deprecated, use remove_temp_course_roles() instead | ||
* 'user_unenrol_modified' event was renamed to 'user_enrol_modified' | ||
|
||
|
||
=== 2.0 === | ||
|
||
required changes in code: | ||
* enrolment plugins need to be rewritten to use new API - see inline phpdocs and official plugins |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
This files describes API changes in core lbraries and APIs, | ||
information provided here is intended especially for developers. | ||
|
||
|
||
=== 2.2 === | ||
|
||
removed unused libraries: | ||
* odbc, base32, CodeSniffer, overlib, apd profiling, kses, Smarty, PEAR Console, swfobject, cssshover.htc, md5.js | ||
|
||
API changes: | ||
* new admin/tool plugin type | ||
* new context API - old API is still available | ||
* removed global search | ||
|
||
|
||
=== 2.1 === | ||
|
||
API changes: | ||
* basic suport for restore from 1.9 | ||
* new mobile devices API | ||
* new questions API | ||
|
||
|
||
=== 2.0 === | ||
|
||
API changes: | ||
* new DML API - http://docs.moodle.org/dev/DML_functions | ||
* new DDL API - http://docs.moodle.org/dev/DDL_functions | ||
* new file API - http://docs.moodle.org/dev/File_API | ||
* new $PAGE and $OUTPUT API | ||
* new navigation API | ||
* new theme API - http://docs.moodle.org/dev/Theme_changes_in_2.0 | ||
* new javascript API - http://docs.moodle.org/dev/JavaScript_usage_guide | ||
* new portfolio API | ||
* new local plugin type | ||
* new translation support - http://lang.moodle.org | ||
* new web service API | ||
* new cohorts API | ||
* new messaging API | ||
* new rating API | ||
* new comment API | ||
* new sessions API | ||
* new enrolment API | ||
* new backup/restore API | ||
* new blocks API | ||
* new filters API | ||
* improved plugin support (aka Frankenstyle) | ||
* new registration and hub API | ||
* new course completion API | ||
* new plagiarism API | ||
* changed blog API | ||
* new text editor API | ||
* new my moodle and profiles API |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
This files describes API changes in /theme/* themes, | ||
information provided here is intended especially for theme designer. | ||
|
||
|
||
=== 2.2 === | ||
|
||
required changes: | ||
* use new page content placeholder "echo $OUTPUT->main_content()" instead of "echo core_renderer::MAIN_CONTENT_TOKEN" | ||
see git commit: 3b3f302855d7621405a8b93e49bd399d67a998d7 | ||
see git commit: 3b3f302855d7621405a8b93e49bd399d67a998d7 | ||
|
||
|
||
=== 2.2 === | ||
|
||
required changes: | ||
* complete rewrite of themes necessary - http://docs.moodle.org/dev/Theme_changes_in_2.0 |