You are here

function drd_server_xmlrpc in Drupal Remote Dashboard Server 6

Same name and namespace in other branches
  1. 6.2 drd_server.module \drd_server_xmlrpc()
  2. 7.2 drd_server.module \drd_server_xmlrpc()
  3. 7 drd_server.module \drd_server_xmlrpc()

Implementation of hook_xmlrpc().

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

File

./drd_server.module, line 19

Code

function drd_server_xmlrpc() {
  include_once 'drd_server.domain.inc';
  include_once 'drd_server.server.inc';
  return array(
    'drd.api' => 'drd_server_check_api',
    'drd.connect' => 'drd_server_connect',
    'drd.session.valid' => 'drd_server_check_session',
    'drd.info' => 'drd_server_domain_info',
    'drd.cache.flush' => 'drd_server_domain_flush_cache',
    'drd.run.cron' => 'drd_server_domain_run_cron',
    'drd.switch.maintenance' => 'drd_server_domain_switch_maintenance',
    'drd.list.updates' => 'drd_server_domain_list_updates',
    'drd.run.update' => 'drd_server_domain_run_update',
    'drd.update.translation' => 'drd_server_domain_update_translation',
    'drd.server.domains' => 'drd_server_server_domains',
    'drd.server.svn.status' => 'drd_server_server_svn_status',
    'drd.server.svn.update' => 'drd_server_server_svn_update',
    'drd.server.php.error.log' => 'drd_server_server_php_error_log',
  );
}