From fc6e5bd8a8230ae1a8c27c093c7b5339bd4fa49c Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 7 Jun 2018 07:14:41 +0400 Subject: Registers external functions Signed-off-by: Valentin Popov --- db/services.php | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 db/services.php diff --git a/db/services.php b/db/services.php new file mode 100644 index 0000000..da355b3 --- /dev/null +++ b/db/services.php @@ -0,0 +1,67 @@ +. + +/** + * Registers external functions. + * + * @copyright 2018 "Valentin Popov" + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + * @package tool_apisiteadmins + */ + +defined("MOODLE_INTERNAL") || die(); + +$functions = array( + "tool_apisiteadmins_add_to_administrators" => array( + "classname" => "tool_apisiteadmins_external", + "classpath" => "admin/tool/apisiteadmins/externallib.php", + "description" => "Adds a user to the list of administrators.", + "methodname" => "add_to_administrators", + "type" => "write" + ), + + "tool_apisiteadmins_remove_from_administrators" => array( + "classname" => "tool_apisiteadmins_external", + "classpath" => "admin/tool/apisiteadmins/externallib.php", + "description" => "Removes a user from the list of administrators.", + "methodname" => "remove_from_administrators", + "type" => "write" + ), + + "tool_apisiteadmins_change_main_administrator" => array( + "classname" => "tool_apisiteadmins_external", + "classpath" => "admin/tool/apisiteadmins/externallib.php", + "description" => "Registers the user as the primary administrator.", + "methodname" => "change_main_administrator", + "type" => "write" + ), + + "tool_apisiteadmins_get_list_administrators" => array( + "classname" => "tool_apisiteadmins_external", + "classpath" => "admin/tool/apisiteadmins/externallib.php", + "description" => "Gets the list of administrators in the system.", + "methodname" => "get_list_administrators", + "type" => "read" + ), + + "tool_apisiteadmins_get_main_administrator" => array( + "classname" => "tool_apisiteadmins_external", + "classpath" => "admin/tool/apisiteadmins/externallib.php", + "description" => "Gets information about the main administrator.", + "methodname" => "get_main_administrator", + "type" => "read" + ) +); -- cgit v1.2.3