PDA

View Full Version : What Hook for custom bbcode?


Somani
12-14-2008, 12:36 PM
Hello community

I'm currently working on an addon for vbulletin (ofc).. now i have a question:
What Hook can I use for adding the parsing of my own bbcode.

The Code is something like:
$input_text = my_parsing_function($input_text);
Any ideas?

TigerC10
12-14-2008, 04:35 PM
The hook you're looking for is probably
bbcode_parse_start
and/or
bbcode_parse_complete

What you really need to do is look at /includes/class_bbcode.php and look for the hooks yourself - then once you find the hooks look at the code surrounding the hooks and see what is going on in that code. That way you can try and stick with convention as far as what you're doing and when you're doing it in the code.