function xmlrpc_server_list_methods
Same name and namespace in other branches
- 7.x drupal-7.x/includes/xmlrpcs.inc \xmlrpc_server_list_methods()
XML-RPC method system.listMethods maps to this function.
2 string references to 'xmlrpc_server_list_methods'
- blogapi_xmlrpc in drupal-6.x/
modules/ blogapi/ blogapi.module - Implementation of hook_xmlrpc().
- xmlrpc_server in drupal-6.x/
includes/ xmlrpcs.inc - The main entry point for XML-RPC requests.
Archivo
- drupal-6.x/
includes/ xmlrpcs.inc, line 249
Código
function xmlrpc_server_list_methods() {
$xmlrpc_server = xmlrpc_server_get();
return array_keys($xmlrpc_server->callbacks);
}