X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/130231b1c611644b68b8a6635589dcfff457b5c3..2bed41fd9817049d5f8822e381c4f70cc3bf33c8:/foto/index.php diff --git a/foto/index.php b/foto/index.php index cd939f3..0acd44e 100644 --- a/foto/index.php +++ b/foto/index.php @@ -1,41 +1,44 @@ link; -$rootdir = $Page . $Args; - -if (!empty($User['admin'])) { - $access = '🔓 Openbaar'; - if (isset($PageAccess)) { - $access = "🔒 Bewoners"; - if ($PageAccess != $rootdir) { +if ($User->admin('foto')) { + if ($Page->restricted) { + $access = '🔒 Bewoners'; + if ($Page->restricted != $rootdir) { $access .= sprintf(' vanaf %s', - "/$PageAccess", pathinfo($PageAccess, PATHINFO_FILENAME) + "/{$Page->restricted}", pathinfo($Page->restricted, PATHINFO_FILENAME) ); } } + else { + $access = '🔓 Openbaar'; + } print "\n\n"; } $nav = explode('/', $rootdir); $nav[0] = "Foto's"; # override of root 'foto' $title = array_pop($nav); +$Page->title = ($nav ? implode(' ', $nav) . ': ' : '') . $title; $link = ''; print "

"; foreach ($nav as $i => $linktitle) { - $link .= '/' . ($i ? $linktitle : $Page); + $link .= '/' . ($i ? $linktitle : $Page->handler); printf('%s →'."\n", $link, $linktitle); } print $title; print "

\n\n"; -print $intro; +if (isset($Page->raw)) { + print $Page->raw; # page intro +} function showthumb($path) { // assume all album entries are symlinks to archive originals $target = preg_replace('{^(\.\./)*}', '', readlink($path)); - $thumb = 'thumb/200/' . $target; + $thumb = 'thumb/262/' . $target; @list ($order, $size, $title) = explode(':', pathinfo($path, PATHINFO_FILENAME), 3); $imgtag = 'img src="/'.$thumb.'"'; @@ -63,8 +66,8 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { $html = ''; $html .= "
$album
"; - if (empty($User) and file_exists("$path/.private")) { - $html = ''.$html.''; + if (!$User->login and file_exists("$path/.private")) { + $html = ''.$html.''; } $html = "
$html
"; @@ -76,7 +79,11 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { if ($imgs = glob("$rootdir/*.jpg")) { print '