mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
8643c576c7
- New site setting to define the default course duration (used to set the default end date for some course formats) - End date setting out of restore - Fix tool_uploadcourse - Other fixes here and there
18 lines
1.1 KiB
Plaintext
18 lines
1.1 KiB
Plaintext
This files describes API changes in /course/*,
|
|
information provided here is intended especially for developers.
|
|
|
|
=== 3.2 ===
|
|
|
|
* External function core_course_external::get_course_contents now returns the section's number in the course (new section field).
|
|
* 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.
|
|
* 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
|
|
* 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.
|