function 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
Code
function xmlrpc_server_method_help($method) {
$xmlrpc_server = xmlrpc_server_get();
return $xmlrpc_server->help[$method];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.