Log in

View Full Version : Custom parsing IMG tag in Signatures


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!

CarlitoBrigante
06-19-2004, 09:49 AM
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!
Anyone? Is it difficult to do?

CarlitoBrigante
06-21-2004, 01:53 PM
Anyone? Is it difficult to do?
Bumpity bump!

CarlitoBrigante
06-24-2004, 01:02 PM
Bumpity bump!
I asked to the staff, but they redirected me to vbulletin.org... is it that difficult??

CarlitoBrigante
07-01-2004, 10:00 AM
I asked to the staff, but they redirected me to vbulletin.org... is it that difficult??
Please guys and gals, nobody seems able to do this!!!