X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/bb34842b36ded0bbe7e6f51294ad3d20c8d470da..da2d6e5537e9fdcd6f424ea1cc8ab6ef8f45727e:/foto/index.php diff --git a/foto/index.php b/foto/index.php index 27482a4..a6378ef 100644 --- a/foto/index.php +++ b/foto/index.php @@ -1,12 +1,31 @@ link; + +$nav = explode('/', $rootdir); +$nav[0] = "Foto's"; # override of root 'foto' +$title = array_pop($nav); +$Page->title = ($nav ? implode(' ', $nav) . ': ' : '') . $title; + +if ($Page->api) { + $img = "$rootdir/index.jpg"; + if (file_exists($img)) { + # cover image of current album + $Page->image = "/$img"; + } + if (!$Page->path) { + return array_map(function ($dir) { + return new ArchiveArticle($dir . '/index.html'); + }, glob("$rootdir/*", GLOB_ONLYDIR)); #TODO: recurse + } + return; +} if ($User->admin('foto')) { - if (!empty($PageAccess)) { + if ($Page->restricted) { $access = '🔒 Bewoners'; - if ($PageAccess != $rootdir) { + if ($Page->restricted != $rootdir) { $access .= sprintf(' vanaf %s', - "/$PageAccess", pathinfo($PageAccess, PATHINFO_FILENAME) + "/{$Page->restricted}", pathinfo($Page->restricted, PATHINFO_FILENAME) ); } } @@ -16,24 +35,20 @@ if ($User->admin('foto')) { print "\n\n"; } -$nav = explode('/', $rootdir); -$nav[0] = "Foto's"; # override of root 'foto' -$title = array_pop($nav); -$Article->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"; -if (isset($Article->raw)) { - print $Article->raw; # page intro +if (isset($Page->raw)) { + print $Page->raw; # page intro } +if (!function_exists('showthumb')) { function showthumb($path) { // assume all album entries are symlinks to archive originals @@ -51,6 +66,7 @@ function showthumb($path) return sprintf('<%s />'."\n", $target, $imgtag); } +} if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { natsort($imgs); @@ -81,7 +97,7 @@ if ($imgs = glob("$rootdir/*.jpg")) { foreach ($imgs as $img) { if ($img == "$rootdir/index.jpg") { # cover image of current album - $Article->image = "/$img"; + $Page->image = "/$img"; continue; } if (!is_link($img)) continue;