|
На първо място искам кажа че мода е преведен и е тестван.
С този мод ще ви добави бутонче при писане на пост с което вие ще можете да центрирате даден текст. Файлове за редактиране: 6 includes/bbcode.php posting.php privmsg.php language/lang_english/lang_main.php templates/xxx/bbcode.tpl templates/xxx/posting_body.tpl Нека да започваме промяната на файловете #-----[ Отвори ]------------------------------------------ #
#-----[ Намери ]------------------------------------------ # // [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); # #-----[ Над него добави ]------------------------------------------ # // [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); # #-----[ Намери ]------------------------------------------ # // [i] and [/i] for italicizing text. $text = preg_replace("#[i\](.*?)[/i\]#si", "[i:$uid]\\1[/i:$uid]", $text); # #-----[ Над него добави ]------------------------------------------ # // [center] and [/center] for centered text. $text = preg_replace("#[center\](.*?)[/center\]#si", "[center:$uid]\\1[/center:$uid]", $text); # #-----[ Отвори ]------------------------------------------ #
#-----[ Намери ]------------------------------------------ # 'L_BBCODE_F_HELP' => $lang['bbcode_f_help'], # #-----[ Над него добави ]------------------------------------------ # 'L_BBCODE_Y_HELP' => $lang['bbcode_y_help'], # #-----[ Отвори ]------------------------------------------ #
#-----[ Намери ]------------------------------------------ # 'L_BBCODE_F_HELP' => $lang['bbcode_f_help'], # #-----[ Над него добави ]------------------------------------------ # 'L_BBCODE_Y_HELP' => $lang['bbcode_y_help'],
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||









