XML-RPC system.* methods

category Zend
package Zend_XmlRpc
subpackage Server
copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
license New BSD License

 Methods

Constructor

__construct(\Zend_XmlRpc_Server $server) : void

Parameters

$server

\Zend_XmlRpc_Server

List all available XMLRPC methods

listMethods() : array

Returns an array of methods.

Returns

array

Display help message for an XMLRPC method

methodHelp(string $method) : string

Parameters

$method

string

Returns

string

Return a method signature

methodSignature(string $method) : array

Parameters

$method

string

Returns

array

Multicall - boxcar feature of XML-RPC for calling multiple methods in a single request.

multicall(array $methods) : array

Expects a an array of structs representing method calls, each element having the keys:

  • methodName
  • params

Returns an array of responses, one for each method called, with the value returned by the method. If an error occurs for a given method, returns a struct with a fault response.

see

Parameters

$methods

array

Returns

array

 Properties

 

$_server

$_server : \Zend_XmlRpc_Server

Default