Code: Alles auswählen
[color=red][/color]
Code: Alles auswählen
[color=red][/color]
Code: Alles auswählen
#
#-----[ ÖFFNEN ]------------------------------------------
#
# includes/bbcode.php
#
#-----[ FINDE ]------------------------------------------
#
// [i] and [/i] for italicizing text.
$text = str_replace("[i:$uid]", $bbcode_tpl['i_open'], $text);
$text = str_replace("[/i:$uid]", $bbcode_tpl['i_close'], $text);
#
#-----[ DARUNTER EINFÜGEN ]--------------------------------------------------
#
// [center] and [/center] for centered text.
$text = str_replace("[center:$uid]", $bbcode_tpl['center_open'], $text);
$text = str_replace("[/center:$uid]", $bbcode_tpl['center_close'], $text);
#
#-----[ FINDE ]------------------------------------------
#
// [i] and [/i] for italicizing text.
$text = preg_replace("#\[i\](.*?)\[/i\]#si", "[i:$uid]\\1[/i:$uid]", $text);
#
#-----[ DARUNTER EINFÜGEN ]--------------------------------------------------
#
// [center] and [/center] for centered text.
$text = preg_replace("#\[center\](.*?)\[/center\]#si", "[center:$uid]\\1[/center:$uid]", $text);
#
#-----[ ÖFFNEN ]------------------------------------------
#
# templates/xxx/bbcode.tpl
#
#-----[ FINDE ]------------------------------------------
#
<!-- BEGIN i_open --><span style="font-style: italic"><!-- END i_open -->
<!-- BEGIN i_close --></span><!-- END i_close -->
#
#-----[ DARUNTER EINFÜGEN ]--------------------------------------------------
#
<!-- BEGIN center_open --><div align="center"><!-- END center_open -->
<!-- BEGIN center_close --></div><!-- END center_close -->
Code: Alles auswählen
[color=12]TEXT[/color]
Code: Alles auswählen
[color=red]TEXT[/color]