Class System

Summary

Fully Qualified Name: Zend\XmlRpc\Server\System

Description

XML-RPC system.* methods

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

Method Details

__construct()

Constructor

Parameter Name Type Description
$server \Zend\XmlRpc\Server

Returns:

listMethods()

List all available XMLRPC methods

Returns an array of methods.

Returns: array

methodHelp()

Display help message for an XMLRPC method

Parameter Name Type Description
$method string

Returns: string

methodSignature()

Return a method signature

Parameter Name Type Description
$method string

Returns: array

multicall()

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

Top