CarlitoBrigante
06-18-2004, 01:18 PM
Hi all!
I hope this isn't too difficult to do. I want to parse images posted in signatures differently from those posted in the post field. For example, let's say I want image in signatures to all have a special IE glow effect (this is just an example).
In functions_bbcodeparse.php, there is this function
// ###################### Start handle_bbcode_img_match #######################
// this is only called by handle_bbcode_img
function handle_bbcode_img_match($link)
{
$link = strip_smilies(str_replace('\\"', '"', $link));
// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);
return '<img src="' . $link . '" border="0" alt="" />';
}
Basically I need some switch to return different html code if the image is going to be displayed in a signature.
Hope I was clear!
I hope this isn't too difficult to do. I want to parse images posted in signatures differently from those posted in the post field. For example, let's say I want image in signatures to all have a special IE glow effect (this is just an example).
In functions_bbcodeparse.php, there is this function
// ###################### Start handle_bbcode_img_match #######################
// this is only called by handle_bbcode_img
function handle_bbcode_img_match($link)
{
$link = strip_smilies(str_replace('\\"', '"', $link));
// remove double spaces -- fixes issues with wordwrap
$link = str_replace(' ', '', $link);
return '<img src="' . $link . '" border="0" alt="" />';
}
Basically I need some switch to return different html code if the image is going to be displayed in a signature.
Hope I was clear!