From 8f3e27ca1aea300a47d35b9474c8f5fd588460da Mon Sep 17 00:00:00 2001 From: Andreas Unterkircher Date: Fri, 6 Jul 2007 16:53:10 +0000 Subject: issue21, reordered photo index and added some nice mouseover effect git-svn-id: file:///var/lib/svn/phpfspot/trunk@166 fa6a889d-dae6-447d-9e79-4ba9a3039384 --- phpfspot.class.php | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'phpfspot.class.php') diff --git a/phpfspot.class.php b/phpfspot.class.php index 818aca6..d6d3e69 100644 --- a/phpfspot.class.php +++ b/phpfspot.class.php @@ -112,6 +112,14 @@ class PHPFSPOT { } // get_photo_details + public function getPhotoName($idx) + { + $details = $this->get_photo_details($idx); + + return $details['name']; + + } // getPhotoName() + public function translate_path($path, $width = 0) { return str_replace($this->cfg->path_replace_from, $this->cfg->path_replace_to, $path); @@ -439,11 +447,13 @@ class PHPFSPOT { $img_height[$rows] = Array(); $img_width[$rows] = Array(); $img_id[$rows] = Array(); + $img_name[$rows] = Array(); for($i = $begin_with; $i < $end_with; $i++) { $images[$rows][$cols] = $photos[$i]; $img_id[$rows][$cols] = $i; + $img_name[$rows][$cols] = $this->getPhotoName($photos[$i]); $thumb_path = $this->cfg->base_path ."/thumbs/". $this->cfg->thumb_width ."_". $this->getMD5($photos[$i]); @@ -544,6 +554,7 @@ class PHPFSPOT { $this->tmpl->assign('img_width', $img_width); $this->tmpl->assign('img_height', $img_height); $this->tmpl->assign('img_id', $img_id); + $this->tmpl->assign('img_name', $img_name); $this->tmpl->assign('rows', $rows); $this->tmpl->assign('columns', $this->cfg->thumbs_per_row); -- cgit v1.2.3-18-g5258