imageid = $info['ID']; $this->filename = $info['FILENAME']; $this->thumbname = $info['THUMB']; $this->tagline = $info['TAGLINE']; $this->display = $info['DISPLAY']; $this->upload_date = mysql2date('U', $info['UPLOAD_DATE']); $size = unserialize($info['SIZE']); $this->w = $size['w']; $this->h = $size['h']; $this->tw = $size['tw']; $this->th = $size['th']; $this->filelink = $config['image_url'].$info['FILENAME']; $this->thumblink = $config['image_url'].$info['THUMB']; $this->filepath = $config['image_path'].$info['FILENAME']; $this->thumbpath = $config['image_path'].$info['THUMB']; return true; return true; } return false; } function image_html($percent = 100, $class="", $style=""){ $w = $this->w; $h = $this->h; if($percent) { $w = (int)($this->w * (float)($percent/100)); $h = (int)($this->h * (float)($percent/100)); } echo ''.$this->tagline.''; } function thumb_html($percent = 100, $class="", $style=""){ $w = $this->tw; $h = $this->th; if($percent) { $w = (int)($this->tw * (float)($percent/100)); $h = (int)($this->th * (float)($percent/100)); } echo ''.$this->tagline.''; } function link_html() { echo ''; echo ''.$this->tagline.''; echo ''; echo ''; } function sq_html($link="") { $thumbsize = vjinfo('thumb_max'); if(!$thumbsize) $thumbsize = 100; if($link) { echo '
tw > $this->th) { $top = (int)(($this->tw - $this->th) /2) + 10; echo ' style="width: '.$thumbsize.'px; height: '.$thumbsize.'px; padding-top:'.$top.'px;text-align: center;"'; } else { echo ' style="width: '.$thumbsize.'px; height: '.$thumbsize.'x; text-align: center;"'; } echo '>'; echo''.$this->tagline.''; if($link) echo ''; echo '
'; } function post_thumb_html($more="") { $thumbsize = vjinfo('thumb_max'); if(!$thumbsize) $thumbsize = 100; echo '
'; if($more) echo $more; echo 'tw > $this->th) { $top = (int)(($this->tw - $this->th) /2) + 10; echo ' style="width: '.$thumbsize.'px; height: '.$thumbsize.'px; padding-top:'.$top.'px;text-align: center;"'; } else { echo ' style="width: '.$thumbsize.'px; height: '.$thumbsize.'x; text-align: center;"'; } echo ' href="'.vjinfo('url').'viewimg.php?imgurl='.$this->filelink.'&width='.$this->w.'&height='.$this->h.'&tagline='.urlencode($this->tagline).'">'; echo ''.$this->tagline.''; echo ''; echo '
'; } function image_edit_html() { echo '
'; echo '

編輯圖說|'; echo '刪除

'; echo ''; echo ''.$this->tagline.''; echo ''; echo '
'; } } // class ends here function post_imagelist() { global $vjdb, $post; $images = $post->post_images; if(empty($images)) return; $count = count($images); if($count < vjinfo('isalbum')) { echo '
'; } else { echo '
'; } foreach($images as $image){ $myimage = new image(); $myimage->get_imageinfo($image); $myimage->post_thumb_html(); } if($count >= vjinfo('isalbum')) { echo '
'; } echo '
'; } ?>