ILIAS
eassessment Revision 61809
|
Public Member Functions | |
__construct ($instance, $defaultPrefix) | |
XML_RPC2_Server_Callhandler_Class Constructor. | |
__call ($methodName, $parameters) | |
__call catchall. | |
Public Member Functions inherited from XML_RPC2_Server_CallHandler | |
getMethods () | |
methods getter | |
getMethod ($name) | |
method getter |
Private Attributes | |
$_instance |
Additional Inherited Members | |
Protected Member Functions inherited from XML_RPC2_Server_CallHandler | |
addMethod (XML_RPC2_Server_Method $method) | |
method appender | |
Protected Attributes inherited from XML_RPC2_Server_CallHandler | |
$methods = array() |
Definition at line 88 of file Instance.php.
XML_RPC2_Server_Callhandler_Instance::__construct | ( | $instance, | |
$defaultPrefix | |||
) |
XML_RPC2_Server_Callhandler_Class Constructor.
Creates a new call handler exporting the given object methods
Before using this constructor, take a look at XML_RPC2_Server::create. The factory method is usually a quicker way of instantiating the server and its call handler.
object | The Target object. Calls will be made on this instance |
string | Default prefix to prepend to all exported methods (defaults to '') |
Definition at line 113 of file Instance.php.
References XML_RPC2_Server_CallHandler\addMethod().
XML_RPC2_Server_Callhandler_Instance::__call | ( | $methodName, | |
$parameters | |||
) |
__call catchall.
Delegate the method call to the target object, and return its result
string | Name of method to call |
array | Array of parameters for call |
Definition at line 136 of file Instance.php.
References XML_RPC2_Server_CallHandler\getMethod(), and XML_RPC2_Server_CallHandler\getMethods().
|
private |
Definition at line 98 of file Instance.php.