Fully Qualified Name: | Zend\XmlRpc\Server\System |
XML-RPC system.* methods
Name | Description | Defined By |
---|---|---|
__construct() | Constructor | System |
listMethods() | List all available XMLRPC methods | System |
methodHelp() | Display help message for an XMLRPC method | System |
methodSignature() | Return a method signature | System |
multicall() | Multicall - boxcar feature of XML-RPC for calling multiple methods in a single request. | System |
Constructor
Parameter Name | Type | Description |
---|---|---|
$server | \Zend\XmlRpc\Server |
Returns:
List all available XMLRPC methods
Returns an array of methods.
Returns: array
Display help message for an XMLRPC method
Parameter Name | Type | Description |
---|---|---|
$method | string |
Returns: string
Return a method signature
Parameter Name | Type | Description |
---|---|---|
$method | string |
Returns: array
Multicall - boxcar feature of XML-RPC for calling multiple methods in a single request.
Expects an array of structs representing method calls, each element having the keys:
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.
Parameter Name | Type | Description |
---|---|---|
$methods | array |
Returns: array