You are here

function drd_server_config_domain_read in Drupal Remote Dashboard Server 7.2

Same name and namespace in other branches
  1. 6.2 drd_server.module \drd_server_config_domain_read()

Callback to retrieve a (sub-)form for Domain configuration.

Return value

string The result string to be sent back to DRD.

1 string reference to 'drd_server_config_domain_read'
drd_server_xmlrpc in ./drd_server.module
Implementation of hook_xmlrpc().

File

./drd_server.module, line 730
Provides XMLRPC implementation to respond to requests from DRD.

Code

function drd_server_config_domain_read() {
  $args = func_get_args();
  $valid = _drd_server_validate_request($args);
  if ($valid !== TRUE) {
    return $valid;
  }
  $form = module_invoke_all('drd_config_domain');
  return drd_server_result('drd.config.read.domain', $form);
}