X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/c5d71935bf920cae82c602ff3d644d2e4bb6df47..v4.5-6-g50f9b29cc2:/page.inc.php?ds=sidebyside diff --git a/page.inc.php b/page.inc.php index 0ca6589..8eba91b 100644 --- a/page.inc.php +++ b/page.inc.php @@ -2,9 +2,33 @@ 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 +37,23 @@ $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"; + + global $User, $Page; + if ($User and $User->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 + } + printf("\n", "$ckesrc/ckeditor.js"); + print ''."\n"; + } + print "\n"; }); -include "$Page.html"; -if (file_exists("$Page.php")) include_once("$Page.php"); -