
11-21-2009, 10:48 AM
|
|
|
Join Date: Oct 2006
Posts: 11
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Andreas
If you want to parse BBCodes somewhere in your hacks/scripts (assuming that global.php is already required):
PHP Code:
require_once(DIR . '/includes/class_bbcode.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$parsed_text = $parser->do_parse($text, $do_html, $do_smilies, $do_bbcode, $do_imgcode, $do_nl2br, $cachable);
The parameters for method do_parse() are: - $text = Text to be parsed
- $do_html = Whether to allow HTML or not (Default = false)
- $do_smilies = Whether to parse smilies or not (Default = true)
- $do_bbcode = Whether to parse BB code (Default = true)
- $do_imgcode = Whether to parse the [img] BB code or not, independant of $do_bbcode (Default = true)
- $do_nl2br = Whether to automatically replace new lines with HTML line breaks or not (Default = true)
This should be set to false if you allow HTML.
- $cachable = Whether the post text is cachable or not (Default = false)
All parameters except $text can be omitted and will use the defaults then.
|
Thanks, that was what I needed
|