add_block( new Block(
"Link to Image",
"
".
"".
"",
"main",
50));
}
private function url ($url,$content,$type) {
if ($content == NULL) {$content=$url;}
switch ($type) {
case "html":
$text = "".$content."";
break;
case "ubb":
$text = "[url=".$url."]".$content."[/url]";
break;
default:
$text = $link." - ".$content;
}
return $text;
}
private function img ($src,$type) {
switch ($type) {
case "html":
$text = "";
break;
case "ubb":
$text = "[img]".$src."[/img]";
break;
default:
$text = $src;
}
return $text;
}
private function link_code($label,$content,$id=NULL) {
return "\n".
"\n
\n";
}
}
?>