class bbcode_firstpass extends bbcode

BBCODE FIRSTPASS BBCODE first pass class (functions for parsing messages for db storage)

Properties

$bbcode_uid from  bbcode
$bbcode_bitfield from  bbcode
$bbcode_cache from  bbcode
$bbcode_template from  bbcode
$bbcodes from  bbcode
$template_bitfield from  bbcode
$message
$warn_msg
$parsed_items
$mode

Methods

__construct($bitfield = '')

Constructor

from  bbcode
bbcode_set_bitfield(string $bitfield = '')

Init bbcode cache entries if bitfield is specified

from  bbcode
bbcode_second_pass($message, $bbcode_uid = '', $bbcode_bitfield = false)

Second pass bbcodes

from  bbcode
bbcode_cache_init()

Init bbcode cache

from  bbcode
bbcode_tpl($tpl_name, $bbcode_id = -1, $skip_bitfield_check = false)

Return bbcode template

from  bbcode
bbcode_tpl_replace($tpl_name, $tpl)

Return bbcode template replacement

from  bbcode
bbcode_list($type)

Second parse list bbcode

from  bbcode
bbcode_second_pass_quote($username, $quote)

Second parse quote tag

from  bbcode
bbcode_second_pass_code($type, $code)

Second parse code tag

from  bbcode
mixed
bbcode_second_pass_by_extension() deprecated

Function to perform custom bbcode second pass by extensions can be used to assign bbcode pattern replacement Example: '#[list=([^[]+):$uid]#e' => "\$this->bbcode_second_pass_by_extension('\$1')"

from  bbcode
parse_bbcode()

Parse BBCode

prepare_bbcodes()

Prepare some bbcodes for better parsing

bbcode_init($allow_custom_bbcode = true)

Init bbcode data for later parsing

check_bbcode($bbcode, $in)

Making some pre-checks for bbcodes as well as increasing the number of parsed items

bbcode_specialchars($text)

Transform some characters in valid bbcodes

bbcode_size($stx, $in)

Parse size tag

bbcode_color($stx, $in)

Parse color tag

bbcode_underline($in)

Parse u tag

bbcode_strong($in)

Parse b tag

bbcode_italic($in)

Parse i tag

bbcode_img($in)

Parse img tag

bbcode_flash($width, $height, $in)

Parse flash tag

bbcode_attachment($stx, $in)

Parse inline attachments [ia]

bbcode_code($stx, $in)

Parse code tag Expects the argument to start right after the opening [code] tag and to end with [/code]

bbcode_parse_list($in)

Parse list bbcode Expects the argument to start with a tag

bbcode_quote($in)

Parse quote bbcode Expects the argument to start with a tag

validate_email($var1, $var2)

Validate email

validate_url(string $var1, string $var2)

Validate url

Details

in bbcode at line 39
__construct($bitfield = '')

Constructor

Parameters

$bitfield

in bbcode at line 49
bbcode_set_bitfield(string $bitfield = '')

Init bbcode cache entries if bitfield is specified

Parameters

string $bitfield

The bbcode bitfield

in bbcode at line 61
bbcode_second_pass($message, $bbcode_uid = '', $bbcode_bitfield = false)

Second pass bbcodes

Parameters

$message
$bbcode_uid
$bbcode_bitfield

in bbcode at line 150
bbcode_cache_init()

Init bbcode cache

requires: $this->bbcode_bitfield sets: $this->bbcode_cache with bbcode templates needed for bbcode_bitfield

in bbcode at line 468
bbcode_tpl($tpl_name, $bbcode_id = -1, $skip_bitfield_check = false)

Return bbcode template

Parameters

$tpl_name
$bbcode_id
$skip_bitfield_check

in bbcode at line 533
bbcode_tpl_replace($tpl_name, $tpl)

Return bbcode template replacement

Parameters

$tpl_name
$tpl

in bbcode at line 562
bbcode_list($type)

Second parse list bbcode

Parameters

$type

in bbcode at line 611
bbcode_second_pass_quote($username, $quote)

Second parse quote tag

Parameters

$username
$quote

in bbcode at line 632
bbcode_second_pass_code($type, $code)

Second parse code tag

Parameters

$type
$code

in bbcode at line 685
mixed bbcode_second_pass_by_extension() deprecated

deprecated 3.2.10 (To be removed 4.0.0)

Function to perform custom bbcode second pass by extensions can be used to assign bbcode pattern replacement Example: '#[list=([^[]+):$uid]#e' => "\$this->bbcode_second_pass_by_extension('\$1')"

Accepts variable number of parameters

Return Value

mixed

Second pass result

at line 54
parse_bbcode()

Parse BBCode

at line 107
prepare_bbcodes()

Prepare some bbcodes for better parsing

at line 128
bbcode_init($allow_custom_bbcode = true)

Init bbcode data for later parsing

Parameters

$allow_custom_bbcode

at line 268
check_bbcode($bbcode, $in)

Making some pre-checks for bbcodes as well as increasing the number of parsed items

Parameters

$bbcode
$in

at line 288
bbcode_specialchars($text)

Transform some characters in valid bbcodes

Parameters

$text

at line 299
bbcode_size($stx, $in)

Parse size tag

Parameters

$stx
$in

at line 327
bbcode_color($stx, $in)

Parse color tag

Parameters

$stx
$in

at line 340
bbcode_underline($in)

Parse u tag

Parameters

$in

at line 353
bbcode_strong($in)

Parse b tag

Parameters

$in

at line 366
bbcode_italic($in)

Parse i tag

Parameters

$in

at line 379
bbcode_img($in)

Parse img tag

Parameters

$in

at line 416
bbcode_flash($width, $height, $in)

Parse flash tag

Parameters

$width
$height
$in

at line 470
bbcode_attachment($stx, $in)

Parse inline attachments [ia]

Parameters

$stx
$in

at line 553
bbcode_code($stx, $in)

Parse code tag Expects the argument to start right after the opening [code] tag and to end with [/code]

Parameters

$stx
$in

at line 646
bbcode_parse_list($in)

Parse list bbcode Expects the argument to start with a tag

Parameters

$in

at line 774
bbcode_quote($in)

Parse quote bbcode Expects the argument to start with a tag

Parameters

$in

at line 943
validate_email($var1, $var2)

Validate email

Parameters

$var1
$var2

at line 983
validate_url(string $var1, string $var2)

Validate url

Parameters

string $var1

optional url parameter for url bbcode: [url(=$var1)]$var2[/url]

string $var2

url bbcode content: [url(=$var1)]$var2[/url]