PDA

View Full Version : How to change(replace) class_bbcode.php file via plugin


ReQueM
12-18-2008, 01:21 PM
Hi. How to replace IMG bb code via plugin.

I want replace this.

class_bbcode.php line 1983 (vb 3.8 rc2)
return '<img src="' . $link . '" border="0" alt="" />';

Lynne
12-18-2008, 01:53 PM
Why not just do it in the code? That is a more efficient way to do it.

ReQueM
12-18-2008, 02:10 PM
I resizing images via CSS
This need put class="xx" and <span> code in this code

I don't want change this file later upgrade :D

Sorry for my bad english :o

Dismounted
12-19-2008, 03:00 AM
You can do this via plugins by changing the BB Code's callback (see the only "normal" function in that file). Use the method "handle_callback" (<-- see the code of this method as well).

ReQueM
12-19-2008, 08:16 AM
Any sample?

Dismounted
12-19-2008, 08:50 AM
I can only assume you have not even bothered to look at the file.

Have a look at one of my "URL rewriting" modifications. Same concept.