diff --git a/public_html/deployment/pages/act_setup.php b/public_html/deployment/pages/act_setup.php index b231c42b0508915c5375d61aff3675a16813a8fd..701ee29ab20649dbc6207b100b296681d25ccf1b 100644 --- a/public_html/deployment/pages/act_setup.php +++ b/public_html/deployment/pages/act_setup.php @@ -66,6 +66,8 @@ if ($aParams["prj"] == "all") { $sOut.= '<pre>'.print_r($aTmp, 1).'</pre>'; // print_r($aConfig); + + // ----- from HERE: generate form (experimental) $i = 0; require_once ("./classes/formgen.class.php"); @@ -154,7 +156,7 @@ if ($aParams["prj"] == "all") { $sOut.=$oHtml->getBox("error", '<ul>'.$sError.'</ul>'); } else { $oForm = new formgen($aForms); - // TODO: unhide after checkin + // TODO to enable form uncomment the next line // $sOut.=$oForm->renderHtml("setup"); } @@ -271,7 +273,6 @@ if ($aParams["prj"] == "all") { // ------------------------------------------------------------ // logoanalyzer // ------------------------------------------------------------ - // TODO if ($aParams["par3"]=="actionlog") { // $oPrj = new project(); require_once("./classes/actionlog.class.php"); @@ -280,6 +281,20 @@ if ($aParams["prj"] == "all") { $sOut.=$oLog->renderLogs(array(), true); } + // ------------------------------------------------------------ + // stats + // ------------------------------------------------------------ + // + if ($aParams["par3"]=="stats") { + // $oPrj = new project(); + require_once("./classes/actionlog.class.php"); + $oLog=new Actionlog(''); + + $sOut.='TODO' + //. $oLog->renderStats(array(), true) + ; + + } }