2016-06-24 13:55:04 +01:00
|
|
|
This files describes API changes in /course/*,
|
|
|
|
information provided here is intended especially for developers.
|
|
|
|
|
2018-09-22 22:54:20 +02:00
|
|
|
=== 3.6 ===
|
|
|
|
|
2018-10-10 12:53:33 +02:00
|
|
|
* External function core_course_external::get_course_public_information now returns the roles and the primary role of course
|
2018-09-22 22:54:20 +02:00
|
|
|
contacts.
|
2018-10-10 12:53:33 +02:00
|
|
|
* External function core_course_external::get_course_contents now return the following additional file fields:
|
|
|
|
- onclick (onclick javascript action code)
|
|
|
|
- afterlink (after link info to be displayed)
|
|
|
|
- customdata (module custom data (JSON encoded))
|
2018-10-10 14:01:57 +02:00
|
|
|
- completion (to indicate if completion is enabled or not)
|
|
|
|
- completiondata (completion status for the current user in the module)
|
2018-10-31 00:22:30 +01:00
|
|
|
* External function core_group_external::get_course_user_groups now can return all user courses group information.
|
2018-09-22 22:54:20 +02:00
|
|
|
|
2018-02-06 08:10:10 +01:00
|
|
|
=== 3.5 ===
|
2018-09-22 22:54:20 +02:00
|
|
|
|
2018-07-31 08:30:55 +02:00
|
|
|
* There is a new capability 'moodle/course:setforcedlanguage' to control which users can force the course
|
2018-02-06 08:10:10 +01:00
|
|
|
language; create_course and update_course functions delegate access control to the caller code; if you
|
2018-07-31 08:30:55 +02:00
|
|
|
are calling those functions you may be interested in checking if the logged in user has 'moodle/course:setforcedlanguage' capability.
|
2018-02-06 08:10:10 +01:00
|
|
|
|
2016-12-27 09:21:02 +01:00
|
|
|
=== 3.3 ===
|
|
|
|
|
|
|
|
* External function core_course_external::get_courses_by_field now returns the course filters list and status.
|
2017-04-20 12:53:10 +02:00
|
|
|
* External function core_course_external::get_courses_by_field now returns the end date of the course.
|
2017-04-05 09:41:15 +02:00
|
|
|
* External function core_course_external::get_course_contents now return the following additional file fields:
|
|
|
|
- mimetype (the file mime type)
|
|
|
|
- isexternalfile (if is a file reference to a external repository)
|
|
|
|
- repositorytype (the repository name in case is a external file)
|
|
|
|
Those fields are VALUE_OPTIONAL for backwards compatibility.
|
2017-04-25 22:25:50 +02:00
|
|
|
* External function core_course_external::get_course_contents now return the following fields for section and modules:
|
|
|
|
- uservisible (whether the section or module is visible by the user)
|
|
|
|
- availabilityinfo (availability information if the course or module has any access restriction set
|
2016-12-27 09:21:02 +01:00
|
|
|
|
2016-06-24 13:55:04 +01:00
|
|
|
=== 3.2 ===
|
|
|
|
|
|
|
|
* External function core_course_external::get_course_contents now returns the section's number in the course (new section field).
|
2016-11-04 11:01:23 +00:00
|
|
|
* External function core_course_external::get_course_contents now returns if a section is hidden in the course format.
|
2016-07-12 16:38:38 +01:00
|
|
|
* External functions that were returning file information now return the following file fields:
|
|
|
|
filename, filepath, mimetype, filesize, timemodified and fileurl.
|
|
|
|
Those fields are now marked as VALUE_OPTIONAL for backwards compatibility.
|
2016-09-01 11:22:34 +08:00
|
|
|
* The modchooser now uses a renderable and a template, thus its associated renderer
|
|
|
|
methods have been deprecated. Note that the call to core_course_render::course_modchooser,
|
|
|
|
is still required. Deprecated methods:
|
|
|
|
- core_course_renderer::course_modchooser_module_types
|
|
|
|
- core_course_renderer::course_modchooser_module
|
|
|
|
- core_course_renderer::course_modchooser_title
|
2016-09-01 13:29:19 +08:00
|
|
|
* You can now specify a course end date when calling core_course_external::create_courses and core_course_external::update_courses
|
|
|
|
external functions. core_course_external::get_courses external function is now returning courses end date values.
|