setVar("TITLE",getActiveTitlePrefix()." - Weapons"); $tmpl->setVar("CSS","templates/$TEMPLATE_DIR/include/$TMPL_CFG_CSS"); $tmpl->setVar("IMAGES_DIR","templates/$TEMPLATE_DIR/images/"); $tmpl->setVar("ADMINMODE_LINK","admin/index.php"); $tmpl->setLoop("NAVBAR",getNavBar()); $contextbar = array(); $contextbar = addContextItem($contextbar,getActiveTitlePrefix()."-statistics"); $contextbar = addLinkedContextItem($contextbar,"index.php","Ranking"); $contextbar = addContextItem($contextbar,"Weapons"); $tmpl->setLoop("CONTEXTBAR",$contextbar); //now prepare all datasources $res = SQL_query("select name,datasource_name,id from selectbf_category where type='WEAPON' and collect_data=1"); $datasources = array(); while($cols = SQL_fetchArray($res)) { $name = $cols["name"]; $id = $cols["id"]; $dsname = $cols["datasource_name"]; $data = getDataForWeaponCategory($id); $tmpl->setVar($dsname."_head",$name); $tmpl->setLoop($dsname,$data); array_push($datasources, array("head"=>$name,"data"=>$data)); } $tmpl->setLoop("datasources",$datasources); //now finish the processtime timer $totaltime = timer()- $starttime; $tmpl->setVar("PROCESSTIME",sprintf ("%01.2f seconds",$totaltime)); @$tmpl->pparse(); ?>