X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/621fc2f9638a1a92aa8535310e7852de5542f11e..da2d6e5537e9fdcd6f424ea1cc8ab6ef8f45727e:/foto/index.php diff --git a/foto/index.php b/foto/index.php index a97ec1c..a6378ef 100644 --- a/foto/index.php +++ b/foto/index.php @@ -1,37 +1,54 @@ 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')) { - $access = '🔓 Openbaar'; - if (!empty($PageAccess)) { - $access = "🔒 Bewoners"; - if ($PageAccess != $rootdir) { + 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); -$Article->title = 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 @@ -49,6 +66,7 @@ function showthumb($path) return sprintf('<%s />'."\n", $target, $imgtag); } +} if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { natsort($imgs); @@ -65,7 +83,7 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { $html = ''; $html .= "
$album
"; if (!$User->login and file_exists("$path/.private")) { - $html = ''.$html.''; + $html = ''.$html.''; } $html = "
$html
"; @@ -79,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;