summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 5b18be5..ab5cb9e 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -239,6 +239,32 @@ class PHPFSPOT {
} // showPhotoIndex()
+ public function showBubbleDetails($photo, $direction)
+ {
+ if($direction == "up")
+ $direction = "bubbleimg_up";
+ else
+ $direction = "bubbleimg_down";
+
+ $details = $this->get_photo_details($photo);
+
+ $image_url = "phpfspot_img.php?idx=". $photo ."&width=200";
+
+ $filesize = filesize($this->translate_path($details['directory_path']) ."/". $details['name']);
+ $filesize = rand($filesize/1024, 2);
+
+ $img = getimagesize($this->translate_path($details['directory_path']) ."/". $details['name']);
+
+ $this->tmpl->assign('file_size', $filesize);
+ $this->tmpl->assign('width', $img[0]);
+ $this->tmpl->assign('height', $img[1]);
+ $this->tmpl->assign('file_name', $details['name']);
+ $this->tmpl->assign('image_id', $direction);
+ $this->tmpl->assign('image_url', $image_url);
+ $this->tmpl->show("bubble_details.tpl");
+
+ }
+
}
?>