mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
MDL-12886 the param and return descriptions will be in static methods together with the implementation :-)
This commit is contained in:
parent
2896b96c49
commit
8adaba4258
@ -32,48 +32,36 @@ $functions = array(
|
||||
'classname' => 'moodle_group_external',
|
||||
'methodname' => 'create_groups',
|
||||
'classpath' => 'group/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
'moodle_group_get_groups' => array(
|
||||
'classname' => 'moodle_group_external',
|
||||
'methodname' => 'get_groups',
|
||||
'classpath' => 'group/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
'moodle_group_delete_groups' => array(
|
||||
'classname' => 'moodle_group_external',
|
||||
'methodname' => 'delete_groups',
|
||||
'classpath' => 'group/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
'moodle_group_get_groupmembers' => array(
|
||||
'classname' => 'moodle_group_external',
|
||||
'methodname' => 'get_groupmembers',
|
||||
'classpath' => 'group/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
'moodle_group_add_groupmembers' => array(
|
||||
'classname' => 'moodle_group_external',
|
||||
'methodname' => 'add_groupmembers',
|
||||
'classpath' => 'group/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
'moodle_group_delete_groupmembers' => array(
|
||||
'classname' => 'moodle_group_external',
|
||||
'methodname' => 'delete_groupmembers',
|
||||
'classpath' => 'group/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
// === user related functions ===
|
||||
@ -82,32 +70,24 @@ $functions = array(
|
||||
'classname' => 'moodle_user_external',
|
||||
'methodname' => 'create_users',
|
||||
'classpath' => 'user/externallib.php',
|
||||
'params' => 'create_users_params',
|
||||
'returns' => 'create_users_returns'
|
||||
),
|
||||
|
||||
'moodle_user_get_users' => array(
|
||||
'classname' => 'moodle_user_external',
|
||||
'methodname' => 'get_users',
|
||||
'classpath' => 'user/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
'moodle_user_delete_users' => array(
|
||||
'classname' => 'moodle_user_external',
|
||||
'methodname' => 'delete_users',
|
||||
'classpath' => 'user/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
'moodle_user_update_users' => array(
|
||||
'classname' => 'moodle_user_external',
|
||||
'methodname' => 'update_users',
|
||||
'classpath' => 'user/externallib.php',
|
||||
'params' => null, //TODO
|
||||
'returns' => null, //TODO
|
||||
),
|
||||
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user