page: replace links to current page in menu include
[minimedit.git] / head.inc.php
index f8435ffb8852c6fb1ec83a61d867884247b9492d..2522ad737ab2ff8794efc2f222476853a3ed9451 100644 (file)
@@ -1,7 +1,18 @@
 <?php
 include_once 'head.inc.html';
 
+print "<header>\n";
+
+ob_start();
 include 'menu.html';
+$nav = ob_get_clean();
+$nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
+       $request = $_SERVER['REQUEST_URI'];
+       $html = $request == $m[1] ? $m[2] : $m[0]; # text or full link
+       return $m[1] == substr($request, 0, strlen($m[1])) ? "<b>$html</b>" : $html;
+}, $nav);
+print $nav;
+print "</header>\n\n";
 
 print '<div class="article">'."\n\n";
 
@@ -12,3 +23,7 @@ register_shutdown_function(function () {
        include 'foot.inc.php';
        print "</body></html>\n";
 });
+
+include "$Page.html";
+if (file_exists("$Page.php")) include_once("$Page.php");
+