foto: increase thumbnail height for exceptional rows
[minimedit.git] / foto / index.php
index cd939f3ab2e5e92ba73fbeff02dc0946ef24952a..4b61f37c08a36830db868574cc6ba1984d0bec4d 100644 (file)
@@ -1,9 +1,7 @@
 <?php
-$intro = ob_get_clean();
-
 $rootdir = $Page . $Args;
 
-if (!empty($User['admin'])) {
+if ($User and $User->admin('foto')) {
        $access = '🔓 Openbaar';
        if (isset($PageAccess)) {
                $access = "🔒 Bewoners";
@@ -19,6 +17,7 @@ if (!empty($User['admin'])) {
 $nav = explode('/', $rootdir);
 $nav[0] = "Foto's"; # override of root 'foto'
 $title = array_pop($nav);
+$Article->title = implode(' ', $nav) . ': ' . $title;
 
 $link = '';
 print "<h2>";
@@ -29,13 +28,15 @@ foreach ($nav as $i => $linktitle) {
 print $title;
 print "</h2>\n\n";
 
-print $intro;
+if (isset($Article->raw)) {
+       print $Article->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.'"';
@@ -76,7 +77,11 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) {
 if ($imgs = glob("$rootdir/*.jpg")) {
        print '<ul class="gallery album">'."\n";
        foreach ($imgs as $img) {
-               if ($img == "$rootdir/index.jpg") continue;
+               if ($img == "$rootdir/index.jpg") {
+                       # cover image of current album
+                       $Article->image = "/$img";
+                       continue;
+               }
                if (!is_link($img)) continue;
                print '<li>'.showthumb($img);
        }
@@ -84,3 +89,5 @@ if ($imgs = glob("$rootdir/*.jpg")) {
 
        include 'foto/album.inc.php';
 }
+
+return;