*** empty log message ***

This commit is contained in:
sebastian 2005-03-06 20:20:16 +00:00
parent 855ae6dcd4
commit 50f493d4d2
7 changed files with 550 additions and 11 deletions

View file

@ -31,14 +31,19 @@ class uiScheduler extends uiCalendar
}
function uploadPL($gunid)
function displaySchedule()
{
require_once dirname(__FILE__).'ui_xmlrpcwrapper.class.php';
include_once dirname(__FILE__).'/SchedulerPhpClient.class.php';
// scheduler client instantiation:
$spc =& SchedulerPhpClient::factory($this->Base->dbc, $mdefs, $this->Base->config);
// call of chosen function by name according to key values in $mdefs array:
// (for testing on storageServer XMLRPC I've changes confPrefix in
// SchedulerPhpClient constructor from 'scheduler' to 'storage' value)
$r = $spc->DisplayScheduleMethod($this->Base->sessid, '2005-01-01 00:00:00.000000', '2005-02-01 00:00:00.000000');
var_dump($r);
}
}
?>