App/bin/navi.php
2020-11-25 17:28:45 +01:00

21 lines
511 B
PHP

<?php #bin/navi.php
$output["navi"] = tplExtrSection(tplLoadFile("res/nav.html"), "###NAVLINE###");
$nent = tplExtrSection($output["navi"], "###NAVENTRY###");
$nsep = tplExtrSection($output["navi"], "###NAVSEPERATOR###");
$nout = "";
$x = false;
foreach ($pages as $key => $val)
{
if ($x) {
$nout.= $nsep;
}
$fill = pgsCreatePage($val["name"], "?main=".$val["ID"], $val["ID"]==$page["main"] ? " current" : "");
$nout.= tplReplMarkerArray($nent, $fill);
$x = true;
}
$output["navi"] = $nout;
?>