From 588923cbaafe421b32ec55e2dd4c4bb04df625dd Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Thu, 7 Jun 2007 15:30:35 +0000 Subject: some nice credit page git-svn-id: file:///var/lib/svn/phpfspot/trunk@44 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'phpfspot.class.php') diff --git a/phpfspot.class.php b/phpfspot.class.php index ab5cb9e..5df3115 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -98,9 +98,11 @@ class PHPFSPOT { } } - if(isset($photo)) { - $this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $photo ."&width=". $this->cfg->photo_width); - } + + $details = $this->get_photo_details($photo); + + $this->tmpl->assign('image_name', $details['name']); + $this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $photo ."&width=". $this->cfg->photo_width); if($previous_img) { $this->tmpl->assign('previous_url', "javascript:showImage(". $previous_img .");"); @@ -263,7 +265,15 @@ class PHPFSPOT { $this->tmpl->assign('image_url', $image_url); $this->tmpl->show("bubble_details.tpl"); - } + } // showBubbleDetails() + + public function showCredits() + { + $this->tmpl->assign('version', $this->cfg->version); + $this->tmpl->assign('product', $this->cfg->product); + $this->tmpl->show("credits.tpl"); + + } // showCredits() } -- cgit v1.2.3-18-g5258