page: save document root for includes during shutdown
[minimedit.git] / page.inc.php
index 4cc693942f09a1659d0c20a2ec58c196265e7f13..c0282eea341fcec090015953950f7c601c504c8f 100644 (file)
@@ -1,11 +1,11 @@
 <?php
 $body = ob_get_clean();
 
-include_once './head.inc.php';
+include_once DOCROOT.'head.inc.php';
 
 print "<header>\n";
 ob_start();
-include './menu.html';
+include DOCROOT.'menu.html';
 $nav = ob_get_clean();
 $nav = preg_replace_callback('{<a href="([^"]+)">(.*?)</a>}', function ($m) {
        $request = $_SERVER['REQUEST_URI'];
@@ -25,7 +25,16 @@ print "</header>\n\n";
 print $body;
 
 register_shutdown_function(function () {
-       include 'foot.inc.php';
+       print '<footer>';
+       @include DOCROOT.'footer.html';
+       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";
 });