X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/9de683f8c399ee4a78fbc86b5ee96ce5662acf97..f547127c637332119b42329ca78d0e1a659d9739:/page.inc.php diff --git a/page.inc.php b/page.inc.php index b3fa5f7..17e7c80 100644 --- a/page.inc.php +++ b/page.inc.php @@ -1,10 +1,45 @@ admin("edit {$Page->link}")) { + $ckesrc = '/lib/ckeditor'; # local install + if (!file_exists(DOCROOT . $ckesrc)) { + $ckesrc = '//cdn.ckeditor.com/4.15.1/full-all'; # remote fallback + } + ob_start(); + printf("\n", "$ckesrc/ckeditor.js"); + print ''."\n"; + $Page->head = ob_get_clean(); +} + +include_once 'head.inc.php'; print "
\n"; +$menu = new ArchiveArticle('menu.inc.html'); ob_start(); -include './menu.html'; -$nav = ob_get_clean(); +if ($User and property_exists($User, 'login') and $User->login) { + print '

'; + printf('%s %s', + '👤', + '/login', $User->login + ); + if ($User->admin("edit {$Page->link}")) { + $editpage = $Page->link; + if (is_dir($editpage)) { + if (file_exists("$editpage/index.html")) { + $editpage .= '/index.html'; + } + } + else { + $editpage .= '.html'; + } + if (!file_exists($editpage) or is_writable($editpage)) { + print ' '; + } + } + print "

\n"; +} +$menu->place['login'] = ob_get_clean(); +$nav = $menu->render(); + $nav = preg_replace_callback('{(.*?)}', function ($m) { $request = $_SERVER['REQUEST_URI']; $html = $request == $m[1] ? $m[2] : $m[0]; # text or full link @@ -13,16 +48,12 @@ $nav = preg_replace_callback('{(.*?)}', function ($m) { print $nav; print "
\n\n"; -print '
'."\n\n"; - -include_once 'auth.inc.php'; +print $Page->render(); register_shutdown_function(function () { - print "
\n\n"; - include 'foot.inc.php'; + print '\n"; print "\n"; }); -include "./$Page.html"; -if (file_exists("$Page.php")) include_once("./$Page.php"); -