function xmlrpc_server_method_help

xmlrpc_server_method_help($method)

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.

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];
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!xmlrpcs.inc/function/xmlrpc_server_method_help/7.x