mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
Merge branch 'MDL-64656-master' of git://github.com/jleyva/moodle
This commit is contained in:
commit
ff3c8c0e6c
28 changed files with 1091 additions and 18 deletions
|
@ -494,6 +494,10 @@ class core_course_external extends external_api {
|
|||
'userid' => new external_value(PARAM_INT, 'User who added this content to moodle'),
|
||||
'author' => new external_value(PARAM_TEXT, 'Content owner'),
|
||||
'license' => new external_value(PARAM_TEXT, 'Content license'),
|
||||
'tags' => new external_multiple_structure(
|
||||
\core_tag\external\tag_item_exporter::get_read_structure(), 'Tags',
|
||||
VALUE_OPTIONAL
|
||||
),
|
||||
)
|
||||
), VALUE_DEFAULT, array()
|
||||
),
|
||||
|
|
|
@ -6,6 +6,8 @@ information provided here is intended especially for developers.
|
|||
* External function core_course_external::get_course_contents new returns the following additional completiondata field:
|
||||
- valueused (indicates whether the completion state affects the availability of other content)
|
||||
* External function core_course_external::get_course_contents now returns a new contentsinfo field with summary files information.
|
||||
* External function core_course_external::get_course_contents now returns an additional field "tags" returning the content tags.
|
||||
|
||||
|
||||
=== 3.6 ===
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue