You are here

function xmlrpc_server_method_help in Drupal 7

Same name and namespace in other branches
  1. 4 includes/xmlrpcs.inc \xmlrpc_server_method_help()
  2. 5 includes/xmlrpcs.inc \xmlrpc_server_method_help()
  3. 6 includes/xmlrpcs.inc \xmlrpc_server_method_help()

Returns the help for an XML-RPC method.

XML-RPC method system.methodHelp maps to this function.

Parameters

string $method: Name of method for which we return a help string.

Return value

string Help text for $method.

1 string reference to 'xmlrpc_server_method_help'
xmlrpc_server in includes/xmlrpcs.inc
Invokes XML-RPC methods on this server.

File

includes/xmlrpcs.inc, line 391
Provides API for defining and handling XML-RPC requests.

Code

function xmlrpc_server_method_help($method) {
  $xmlrpc_server = xmlrpc_server_get();
  return $xmlrpc_server->help[$method];
}