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 '';
}
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 '
';
}
function link_html() {
echo '';
echo '
';
echo '';
echo '';
}
function sq_html($link="") {
$thumbsize = vjinfo('thumb_max');
if(!$thumbsize) $thumbsize = 100;
if($link) {
echo '