page: .private to restrict access to subdirectories
[minimedit.git] / page.inc.php
index bc2c57d5de5df8ad8f92138e234d8d8d2803cab7..654f37fa7ebeee2a412b2348fc3bab61d1ac4d88 100644 (file)
@@ -12,13 +12,30 @@ $nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
        $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);
+if (isset($User)) {
+       $nav = preg_replace('{\s*<li class="logout">.*?</li>}', '', $nav);
+       $nav = str_replace('[[login]]', $User['name'], $nav);
+}
+else {
+       $nav = preg_replace('{\s*<li class="login">.*?</li>}', '', $nav);
+}
 print $nav;
 print "</header>\n\n";
 
 print $body;
 
+$footinc = realpath('footer.html'); # cwd lost during shutdown
 register_shutdown_function(function () {
-       include 'foot.inc.php';
+       print '<footer>';
+       @include $GLOBALS['footinc'];
+       print "</footer>\n";
+
+       global $User;
+       if (isset($User) and $User['admin']) {
+               print '<script src="//cdn.ckeditor.com/4.7.3/full-all/ckeditor.js"></script>'."\n";
+               print '<script src="/edit.js"></script>'."\n";
+       }
+
        print "</body></html>\n";
 });