function xmlrpc_server_list_methods
Lists the methods available on this XML-RPC server.
XML-RPC method system.listMethods maps to this function.
Return value
array Array of the names of methods available on this server.
1 string reference to 'xmlrpc_server_list_methods'
- xmlrpc_server in includes/
xmlrpcs.inc - Invokes XML-RPC methods on this server.
File
-
includes/
xmlrpcs.inc, line 312
Code
function xmlrpc_server_list_methods() {
$xmlrpc_server = xmlrpc_server_get();
return array_keys($xmlrpc_server->callbacks);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.