From 8adaba4258ae0d4c14e08e14a7276667b6a9e3d0 Mon Sep 17 00:00:00 2001 From: skodak Date: Wed, 16 Sep 2009 17:44:28 +0000 Subject: [PATCH] MDL-12886 the param and return descriptions will be in static methods together with the implementation :-) --- lib/db/services.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/lib/db/services.php b/lib/db/services.php index b3fd4edb1d..568031640f 100644 --- a/lib/db/services.php +++ b/lib/db/services.php @@ -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 ), ); -- 2.39.5