mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Create add_to_map function, to later be used to add bo functions on the fly
This commit is contained in:
parent
a08ce25d51
commit
647723ccd8
@ -26,18 +26,22 @@
|
||||
{
|
||||
var $dmap = array();
|
||||
|
||||
function xmlrpc_server($dispMap, $serviceNow=1)
|
||||
function xmlrpc_server($dispMap='', $serviceNow=0)
|
||||
{
|
||||
global $HTTP_RAW_POST_DATA;
|
||||
|
||||
// dispMap is a despatch array of methods
|
||||
// mapped to function names and signatures
|
||||
// if a method
|
||||
// doesn't appear in the map then an unknown
|
||||
// method error is generated
|
||||
$this->dmap = $dispMap;
|
||||
if ($serviceNow)
|
||||
if($dispMap)
|
||||
{
|
||||
$this->service();
|
||||
$this->dmap = $dispMap;
|
||||
if ($serviceNow)
|
||||
{
|
||||
$this->service();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -56,12 +60,26 @@
|
||||
|
||||
function service()
|
||||
{
|
||||
global $HTTP_RAW_POST_DATA;
|
||||
|
||||
$r = $this->parseRequest();
|
||||
$payload = "<?xml version=\"1.0\"?>\n" . $this->serializeDebug() . $r->serialize();
|
||||
Header("Content-type: text/xml\r\nContent-length: " . strlen($payload));
|
||||
print $payload;
|
||||
}
|
||||
|
||||
/*
|
||||
add a method to the dispatch map
|
||||
*/
|
||||
function add_to_map($methodname,$function,$sig,$doc)
|
||||
{
|
||||
$this->dmap[$methodname] = array(
|
||||
'function' => $function,
|
||||
'signature' => $sig,
|
||||
'docstring' => $doc
|
||||
);
|
||||
}
|
||||
|
||||
function verifySignature($in, $sig)
|
||||
{
|
||||
for($i=0; $i<sizeof($sig); $i++)
|
||||
|
Loading…
Reference in New Issue
Block a user