auth: admin permissions per function
[minimedit.git] / foto / index.php
index cd939f3ab2e5e92ba73fbeff02dc0946ef24952a..550e7a3e674870ecf7909aba100a53ccc9fadf57 100644 (file)
@@ -3,7 +3,7 @@ $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 +19,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>";
@@ -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);
        }