function xmlrpc_server_method_help
Same name and namespace in other branches
- 6.x drupal-6.x/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 drupal-7.x/
includes/ xmlrpcs.inc - Invokes XML-RPC methods on this server.
Archivo
- drupal-7.x/
includes/ xmlrpcs.inc, line 381 - Provides API for defining and handling XML-RPC requests.
Código
function xmlrpc_server_method_help($method) {
$xmlrpc_server = xmlrpc_server_get();
return $xmlrpc_server->help[$method];
}