function xmlrpc_server_get_capabilities

Same name and namespace in other branches
  1. 7.x drupal-7.x/includes/xmlrpcs.inc \xmlrpc_server_get_capabilities()

XML-RPC method system.getCapabilities maps to this function. See http://groups.yahoo.com/group/xml-rpc/message/2897

1 string reference to 'xmlrpc_server_get_capabilities'
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 258

Código

function xmlrpc_server_get_capabilities() {
  return array(
    'xmlrpc' => array(
      'specUrl' => 'http://www.xmlrpc.com/spec',
      'specVersion' => 1,
    ),
    'faults_interop' => array(
      'specUrl' => 'http://xmlrpc-epi.sourceforge.net/specs/rfc.fault_codes.php',
      'specVersion' => 20010516,
    ),
    'system.multicall' => array(
      'specUrl' => 'http://www.xmlrpc.com/discuss/msgReader$1208',
      'specVersion' => 1,
    ),
    'introspection' => array(
      'specUrl' => 'http://scripts.incutio.com/xmlrpc/introspection.html',
      'specVersion' => 1,
    ),
  );
}