Log in

View Full Version : PHP-processed custom bbcode


Pod
07-06-2007, 07:04 PM
Greetings,

I'm interested to create a custom bbcode that is processed by php, instead of just substituted with some html like the control panel lets me to do.

I was inspired by this mod:

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

I thought i could just go and edit the functions_bbcodeparse.php file add a line like this one:

$bbcode = custom_processing_function($bbcode);

But looks like that file doesn't exist anymore? I'm used a new 3.6.7 PL1 install, that is unmoded (yet). I'm guessing that file has been changed since that mod was released.

Could you please tell me where I can find information on how to do this now, either by modding the code or creating a plugin?

Eikinskjaldi
07-06-2007, 11:40 PM
includes/class_bbcode.php


They way I do it is

1) put a function anywhere in the file

function handle_bbcode_mything($text, $display='') {
//display is the tag options, text is whats in the tag
}


2) modify fetch_tag_list


$tag_list['option']['mything'] = array(
'callback' => 'handle_bbcode_mything',
'strip_empty' => true or false,
'strip_space_after' => number of space to strip,
);

$tag_list['nooption']['mything'] = array(



note the option /no option is whethere there is any display value, ie is yor tag stuff or stuff

Pod
07-07-2007, 12:00 AM
Thank you very much! Exactly what I was looking for ;) :up: