page: replace global variables by $Page object
[minimedit.git] / foto / index.php
index 27482a484134b72485ed0dc8e5d298112631d563..0acd44e7ab701aa6bfb091ed5c4a96ac08221521 100644 (file)
@@ -1,12 +1,12 @@
 <?php
-$rootdir = $Page . $Args;
+$rootdir = $Page->link;
 
 if ($User->admin('foto')) {
-       if (!empty($PageAccess)) {
+       if ($Page->restricted) {
                $access = '<span class="icon icon-locked">&#x1F512;</span> Bewoners';
-               if ($PageAccess != $rootdir) {
+               if ($Page->restricted != $rootdir) {
                        $access .= sprintf(' vanaf <a href="%s">%s</a>',
-                               "/$PageAccess", pathinfo($PageAccess, PATHINFO_FILENAME)
+                               "/{$Page->restricted}", pathinfo($Page->restricted, PATHINFO_FILENAME)
                        );
                }
        }
@@ -19,19 +19,19 @@ if ($User->admin('foto')) {
 $nav = explode('/', $rootdir);
 $nav[0] = "Foto's"; # override of root 'foto'
 $title = array_pop($nav);
-$Article->title = ($nav ? implode(' ', $nav) . ': ' : '') . $title;
+$Page->title = ($nav ? implode(' ', $nav) . ': ' : '') . $title;
 
 $link = '';
 print "<h2>";
 foreach ($nav as $i => $linktitle) {
-       $link .= '/' . ($i ? $linktitle : $Page);
+       $link .= '/' . ($i ? $linktitle : $Page->handler);
        printf('<a href="%s">%s</a> →'."\n", $link, $linktitle);
 }
 print $title;
 print "</h2>\n\n";
 
-if (isset($Article->raw)) {
-       print $Article->raw;  # page intro
+if (isset($Page->raw)) {
+       print $Page->raw;  # page intro
 }
 
 function showthumb($path)
@@ -81,7 +81,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;