
07-27-2005, 11:46 PM
|
 |
|
|
Join Date: Feb 2004
Location: I LOVE New York!
Posts: 2,886
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by KirbyDE
Hookname: bbcode_create
PHP Code:
$this->tag_list['no_option']['url']['callback'] = 'handle_external';
$this->tag_list['no_option']['url']['external_callback'] = 'handle_bbcode_secure_url';
$this->tag_list['option']['url']['callback'] = 'handle_external';
$this->tag_list['option']['url']['external_callback'] = 'handle_bbcode_secure_url';
if (!function_exists('handle_bbcode_secure_url'))
{
function handle_bbcode_secure_url(&$parser, $text, $link = null)
{
$rightlink = trim($link);
if (empty($rightlink))
{
// no option -- use param
$rightlink = trim($text);
}
$rightlink = str_replace(array('`', '"', "'", '['), array('`', '"', ''', '['), $parser->strip_smilies($rightlink));
if (!preg_match('#^[a-z0-9]+://#si', $rightlink))
{
$rightlink = "http://$rightlink";
}
if (!trim($link) OR $text == $rightlink)
{
$tmp = unhtmlspecialchars($rightlink);
if (vbstrlen($tmp) > 55 AND $this->is_wysiwyg() == false)
{
$text = htmlspecialchars_uni(substr($tmp, 0, 36) . '...' . substr($tmp, -14));
}
}
// remove double spaces -- fixes issues with wordwrap
$rightlink = str_replace(' ', '', $rightlink);
// standard URL hyperlink
return "<a href=\"links.php?url=$rightlink\" target=\"_blank\">$text</a>";
}
}
|
Looking at this code, I had to take a double look. What the hell is this? Then I figured it out. Your a clown!
I just started looking though the code for a way to do it. Your sounds great but too easy. I'll look around a drop more before releasing something.
|