edit: static edit link
[minimedit.git] / page.inc.php
index 2c1fc6c7e201f160dbc4642a8e8d1b8fc09a0dc2..9d49fad2df8050b4ac7daa86bf903080a9b34bb9 100644 (file)
@@ -1,26 +1,49 @@
 <?php
-include_once './head.inc.php';
+$body = ob_get_clean();
+
+include_once DOCROOT.'head.inc.php';
 
 print "<header>\n";
 ob_start();
-include './menu.html';
-$nav = ob_get_clean();
+include DOCROOT.'menu.html';
+ob_start();
+if (isset($User)) {
+       print '<div class="login"><p>';
+       printf('<span>Ingelogd: <b>%s</b></span>', $User['name']);
+       if ($User['admin']) {
+               print ' <a href="#edit">Wijzig</a>';
+       }
+       print "</p></div>\n";
+}
+$nav = getoutput(['login' => 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);
+if (isset($User)) {
+       $nav = preg_replace('{\s*<li class="logout">.*?</li>}', '', $nav);
+}
+else {
+       $nav = preg_replace('{\s*<li class="login">.*?</li>}', '', $nav);
+}
 print $nav;
 print "</header>\n\n";
 
+print $body;
+
 register_shutdown_function(function () {
-       include 'foot.inc.php';
-       print "</body></html>\n";
-});
+       print '<footer>';
+       @include DOCROOT.'footer.html';
+       print "</footer>\n";
 
-print '<div class="article">'."\n\n";
-include "./$Page.html";
-print "</div>\n\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";
+       }
 
-if (file_exists("$Page.php")) include_once("./$Page.php");
+       print "</body></html>\n";
+});