mod-chat MDL-21534 Fixed very minor error
[moodle.git] / lib / db / services.php
CommitLineData
9a0df45a 1<?php
2
3// This file is part of Moodle - http://moodle.org/
4//
5// Moodle is free software: you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// Moodle is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17
18/**
19 * Core external functions and service definitions.
20 *
21 * @package moodlecore
22 * @subpackage webservice
23 * @copyright 2009 Petr Skoda (http://skodak.org)
24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 */
26
27$functions = array(
ef22c1b6 28
29 // === group related functions ===
f5072177 30
9a0df45a 31 'moodle_group_create_groups' => array(
32 'classname' => 'moodle_group_external',
33 'methodname' => 'create_groups',
34 'classpath' => 'group/externallib.php',
f5072177 35 'description' => 'Creates new groups.',
36 'type' => 'write',
9a0df45a 37 ),
f5072177 38
9a0df45a 39 'moodle_group_get_groups' => array(
40 'classname' => 'moodle_group_external',
41 'methodname' => 'get_groups',
42 'classpath' => 'group/externallib.php',
cfb99b75 43 'description' => 'Returns group details.',
f5072177 44 'type' => 'read',
9a0df45a 45 ),
246f6da2 46
47 'moodle_group_get_course_groups' => array(
48 'classname' => 'moodle_group_external',
49 'methodname' => 'get_course_groups',
50 'classpath' => 'group/externallib.php',
51 'description' => 'Returns all groups in specified course.',
52 'type' => 'read',
53 ),
2cb1ee78 54
9a0df45a 55 'moodle_group_delete_groups' => array(
56 'classname' => 'moodle_group_external',
57 'methodname' => 'delete_groups',
58 'classpath' => 'group/externallib.php',
0f4e72de
PS
59 'description' => 'Deletes all specified groups.',
60 'type' => 'delete',
9a0df45a 61 ),
c863dc38 62
9a0df45a 63 'moodle_group_get_groupmembers' => array(
64 'classname' => 'moodle_group_external',
65 'methodname' => 'get_groupmembers',
66 'classpath' => 'group/externallib.php',
0f4e72de
PS
67 'description' => 'Returns group members.',
68 'type' => 'read',
9a0df45a 69 ),
4efa2483 70
9a0df45a 71 'moodle_group_add_groupmembers' => array(
72 'classname' => 'moodle_group_external',
73 'methodname' => 'add_groupmembers',
74 'classpath' => 'group/externallib.php',
0f4e72de
PS
75 'description' => 'Adds group members.',
76 'type' => 'write',
9a0df45a 77 ),
78
79 'moodle_group_delete_groupmembers' => array(
80 'classname' => 'moodle_group_external',
81 'methodname' => 'delete_groupmembers',
82 'classpath' => 'group/externallib.php',
0f4e72de
PS
83 'description' => 'Deletes group members.',
84 'type' => 'delete',
9a0df45a 85 ),
4efa2483 86
ef22c1b6 87 // === user related functions ===
ef22c1b6 88 'moodle_user_create_users' => array(
89 'classname' => 'moodle_user_external',
90 'methodname' => 'create_users',
91 'classpath' => 'user/externallib.php',
fb79269b 92 'description' => 'Create users.',
93 'type' => 'write',
ef22c1b6 94 ),
95
fb79269b 96 'moodle_user_get_users_by_id' => array(
ef22c1b6 97 'classname' => 'moodle_user_external',
fb79269b 98 'methodname' => 'get_users_by_id',
ef22c1b6 99 'classpath' => 'user/externallib.php',
fb79269b 100 'description' => 'Get users by id.',
101 'type' => 'read',
ef22c1b6 102 ),
103
104 'moodle_user_delete_users' => array(
105 'classname' => 'moodle_user_external',
106 'methodname' => 'delete_users',
107 'classpath' => 'user/externallib.php',
fb79269b 108 'description' => 'Delete users.',
109 'type' => 'write',
ef22c1b6 110 ),
111
112 'moodle_user_update_users' => array(
113 'classname' => 'moodle_user_external',
114 'methodname' => 'update_users',
115 'classpath' => 'user/externallib.php',
fb79269b 116 'description' => 'Update users.',
117 'type' => 'write',
ef22c1b6 118 ),
9a0df45a 119);