wcf.regNote.message
This post has been edited 1 times, last edit by "Hexo" (Mar 7th 2008, 12:53pm)
|
|
PHP Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
function formaturl($url, $title = '', $maxwidth = 60, $width1 = 40, $width2 = -15) {
global $boardurls;
$test = str_replace("http://", "", $boardurls);
$test = preg_replace('!\/(.*)!', '', $test);
$this->boardurls = explode("\n",$test);
if (!wbb_trim($title)) {
$title = rehtmlconverter($url);
if (!preg_match("/[a-z]:\/\//si", $url)) $url = "http://$url";
$host = parse_url($url);
$host = $host['host'];
if ($this->cuturls == 1 && wbb_strlen($title) > $maxwidth) $title = wbb_substr($title, 0, $width1)."...".wbb_substr($title, $width2);
if (in_array($host, $this->boardurls)) {
return "<a href=\"$url\" target=\"_blank\"><table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr><td align=\"center\"><img src=\"http://images.websnapr.com/?size=S&key=XXXXXX&url=$url\"></td></tr><tr><td align=\"center\">".htmlconverter(str_replace("\\\"", "\"", $title))."</td></tr></table></a>";
} else {
return "<a href=\"http://anonym.to/?".urlencode($url)."\" target=\"_blank\"><table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr><td align=\"center\"><img src=\"http://images.websnapr.com/?size=S&key=XXXXXX&url=$url\"></td></tr><tr><td align=\"center\">".htmlconverter(str_replace("\\\"", "\"", $title))."</td></tr></table></a>";
}
} else {
if (!preg_match("/[a-z]:\/\//si", $url)) $url = "http://$url";
$host = parse_url($url);
$host = $host['host'];
if (in_array($host, $this->boardurls)) {
return "<a href=\"$url\" target=\"_blank\"><table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr><td align=\"center\"><img src=\"http://images.websnapr.com/?size=S&key=XXXXXX&url=$url\"></td></tr><tr><td align=\"center\">".$title."</td></tr></table></a>";
} else {
return "<a href=\"http://anonym.to/?".urlencode($url)."\" target=\"_blank\"><table border=\"0\" cellspacing=\"1\" cellpadding=\"1\"><tr><td align=\"center\"><img src=\"http://images.websnapr.com/?size=S&key=XXXXXXl&url=$url\"></td></tr><tr><td align=\"center\">".$title."</td></tr></table></a>";
}
}
}
|