Skip to content

Commit

Permalink
MDL-12886 the param and return descriptions will be in static methods…
Browse files Browse the repository at this point in the history
… together with the implementation :-)
  • Loading branch information
skodak committed Sep 16, 2009
1 parent 2896b96 commit 8adaba4
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions lib/db/services.php
Expand Up @@ -32,48 +32,36 @@
'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 ===
Expand All @@ -82,32 +70,24 @@
'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
),

);

0 comments on commit 8adaba4

Please sign in to comment.