>_> erm the ones I need requires more parameters, so it kinda needs php plugins >_>' not the html version of that.... (I'll look at the wiki template parsing, because that's how the "type" or whatever I used "|")
--------------- Added [DATE]1197924829[/DATE] at [TIME]1197924829[/TIME] ---------------
um...can't find the coding that makes the templates in wikipedia...
but they do things similar to how I wanted, but dunno how to do it (just know it would require php and plugins
here's the post that has the php plugin for vb to make bbcodes using php:
Quote:
Originally Posted by Analogpoint
Thanks Eikinskjaldi for the comments.
I had already opened up class_bbcode.php and had a look around. I figured out how to achieve this, and will post it here for posterity's sake.
This is a bid hackish, but it works, and uses the vB plugin system. There is no mucking with the *.php files, so upgrading shouldn't ruin it.
How to run PHP code, instead of a simple replacement, on your custom BBCode.
1. Create a custom BBCode in the ACP, so that the description/example will show up on the BBCodes faq page for your forums. Put whatever you want in the "replacement" field, as this is overwritten by the following plugin.
2. Create a plugin using the bbcode_create hook.
3. Add your plugin code, using a format similar to the following:
if (!function_exists ('handle_my_custom_bbcode')) { function handle_my_custom_bbcode (&$theobj, &$value, &$option) {
/* The $value varible now holds whatever was between your tags, and $option holds the option [sometag=option_here]value here[/sometag] */ return 'the html to display your bbcode'; } }
Now, a few notes about that php. Replace the 'xxxxx' with the custom BBCode you want to create. If you are planning on using the option with the BBCode, change 'no_option' to 'option'.
In the function, do whatever manipulations you want to do, and then return the HTML that you want displayed in the actual post.
The $theobj variable is a reference to vB's BBCode parsing object, you probably won't need this.
If you use this method, you don't have to muck in any of vB's php files and the parser engine will correctly parse this and all other BBCodes correctly regardeless of nesting etc.
Hope this helps someone out there.
In closing, I just want to mention that I wish vB had a simple option to choose a simple HTML replacement, or add php code to the "Create a Custom BBCode" section. This hack/plugin shouldn't have been necessary.