Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Web services API Changes: Difference between revisions

From MoodleDocs
(Created page with "In this page list all API changes that happened in Moodle web service API. When this page has been created, Moodle 2.5 work was already started for a while. So take in considerat...")
 
No edit summary
Line 1: Line 1:
In this page list all API changes that happened in Moodle web service API. When this page has been created, Moodle 2.5 work was already started for a while. So take in consideration that this API changes listing will be much more accurate starting from 2.6.
In this page list all API changes that happened in Moodle web service API. When this page has been created, Moodle 2.5 work was already started for a while. So take in consideration that this API changes listing will be much more accurate starting from 2.6. This list focus on existing functions (modified/deprecated). For the list of newly added function, see the [[Web services Roadmap]].


==2.4 to 2.5==
==2.4 to 2.5==
Line 9: Line 9:
</code>
</code>
<br/>
<br/>
Added return value:
Added optional return value:
<br/>
<br/>
<code php>
<code php>

Revision as of 02:35, 20 February 2013

In this page list all API changes that happened in Moodle web service API. When this page has been created, Moodle 2.5 work was already started for a while. So take in consideration that this API changes listing will be much more accurate starting from 2.6. This list focus on existing functions (modified/deprecated). For the list of newly added function, see the Web services Roadmap.

2.4 to 2.5

  • MDL-36541 - get_groupings can now return groups related to the grouping.

Added optional parameter:
'returngroups' => new external_value(PARAM_BOOL, 'return associated groups', VALUE_DEFAULT, 0)
Added optional return value:
'groups' => new external_multiple_structure(

 new external_single_structure(
   array(
     'id' => new external_value(PARAM_INT, 'group record id'),
     'courseid' => new external_value(PARAM_INT, 'id of course'),
     'name' => new external_value(PARAM_TEXT, 'multilang compatible name, course unique'),
     'description' => new external_value(PARAM_RAW, 'group description text'),
     'descriptionformat' => new external_format_value('description'),
     'enrolmentkey' => new external_value(PARAM_RAW, 'group enrol secret phrase')
 )

),