You are here

function drd_server_svn_xmlrpc in Drupal Remote Dashboard Server 7.2

Same name and namespace in other branches
  1. 6.2 drd_server_svn.module \drd_server_svn_xmlrpc()

Implementation of hook_xmlrpc().

This function provides Drupal with an array to map XML-RPC callbacks to the functions implemented by this module.

Return value

array An array of key/value pairs where key is the action name and value the corresponding function.

File

./drd_server_svn.module, line 22
Provides subversion functionality as an addition to drd_server.

Code

function drd_server_svn_xmlrpc() {
  return array(
    'drd.config.svn.read' => 'drd_server_svn_config_read',
  );
}