ILIAS
eassessment Revision 61809
|
Public Member Functions | |
__construct ($className, $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 | |
$_className |
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() |
XML_RPC2_Server_Callhandler_Class::__construct | ( | $className, | |
$defaultPrefix | |||
) |
XML_RPC2_Server_Callhandler_Class Constructor.
Creates a new call handler exporting the give static class' 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.
string | The Target class. Calls will be made on this class |
string | Default prefix to prepend to all exported methods (defaults to '') |
Definition at line 115 of file Class.php.
References XML_RPC2_Server_CallHandler\addMethod().
XML_RPC2_Server_Callhandler_Class::__call | ( | $methodName, | |
$parameters | |||
) |
__call catchall.
Delegate the method call to the target class, and return its result
string | Name of method to call |
array | Array of parameters for call |
Definition at line 138 of file Class.php.
References XML_RPC2_Server_CallHandler\getMethod(), and XML_RPC2_Server_CallHandler\getMethods().