
Backend/Func/DynamicBbCode.pm - Dynamic BbCode
This function parses several Dynamic bbCodes and returns a HTML string of the parsed content. Some bbCodes cannot be pre-parsed - they are instead parsed on the actual page load, here in DynamicBbCode.pm. This function should only be called when the user is actually viewing the content - not when storing the content.
my $html = $self->DynamicBbCode($string);
Example
my $cont = "[time=1234567890]";
$ret .= $self->DynamicBbCode($cont);
|