PDA

View Full Version : php bbcodes.


fdsafdsa
08-16-2007, 06:28 PM
I am working on a mod for vBulletin I have written a script in php that works, I just need to use it in a post. Any ideas on an alternate way, or know how to use php in a bbcode, custom bbcodes only do html to my knowledge.

Eikinskjaldi
08-16-2007, 08:23 PM
I am working on a mod for vBulletin I have written a script in php that works, I just need to use it in a post. Any ideas on an alternate way, or know how to use php in a bbcode, custom bbcodes only do html to my knowledge.

complex custom bbcodes can be made by editing class_bbbcode.php (it can probably be done with hooks/plugins, but not being a fan of that system means I cannot tell you which ones)

You need to write a handle_bbcode_custom_tag method, and also add the appropriate information to fetch_tag_list()

If you want a tag that acts outside of the stack parser, you will have to write your own function which regex searches for your tag.

This is how we have implemented a dice roller and tags which call data from a database table and dislpay it in the post.

fdsafdsa
08-16-2007, 08:30 PM
Alright, I'll look into it and post updates.

Eikinskjaldi
08-16-2007, 08:33 PM
have a look here

https://vborg.vbsupport.ru/showthread.php?t=155410


thats basically what you need to do, though as I said I prefer putting the tag_list info in the fetch_taglist function.