True, 'nonavbar' => True, 'currentapp' => 'home', 'noapi' => True ); include('./inc/functions.inc.php'); include('./inc/xml_functions.inc.php'); $tpl_root = $phpgw_setup->setup_tpl_dir('setup'); $setup_tpl = CreateObject('phpgwapi.Template',$tpl_root); $setup_tpl->set_file(array('T_footer' => 'footer.tpl')); $setup_tpl->set_block('T_footer','footer','footer'); $f = CreateObject('phpgwapi.xmlrpcmsg','system.listApps',array(CreateObject('phpgwapi.xmlrpcval',0, "int"))); print "
" . htmlentities($f->serialize()) . "
\n"; $c = CreateObject('phpgwapi.xmlrpc_client',"/phpgroupware/xmlrpc.php", $HTTP_HOST, 80); $c->setDebug(1); $r = $c->send($f); if (!$r) { die('send failed'); } $v = $r->value(); if (!$r->faultCode()) { // print "
I got this value back
" .
	//	htmlentities($r->serialize()). "

\n"; } else { print 'Fault: '; print 'Code: ' . $r->faultCode() . " Reason '" .$r->faultString()."'
"; } $phpgw_setup->show_footer(); ?>