diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-05 20:51:35 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-05 20:51:35 +0000 |
commit | 60b6594fad70d2d49676e02b6123385173bcdae3 (patch) | |
tree | 797c9f570b62a437741fa8c919c5d0cf53aabbeb /phpfspot.class.php | |
parent | bbf969dc87143266abb170ec1334fcc444b33fb7 (diff) |
some first draft of an working photo index page
git-svn-id: file:///var/lib/svn/phpfspot/trunk@20 fa6a889d-dae6-447d-9e79-4ba9a3039384
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r-- | phpfspot.class.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php index 379ad98..20ab36d 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -186,6 +186,16 @@ class PHPFSPOT { } // resetTags() + public function showPhotoIndex() + { + + foreach($this->avail_photos as $photo) + { + print "<img src=\"phpfspot_img.php?idx=". $photo ."&width=". $this->cfg->thumb_width ."\" /><br />\n"; + } + + } // showPhotoIndex() + } ?> |