صفحة 1 من 1
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الثلاثاء يوليو 29, 2008 1:10 am
بواسطة wisammo
?????...
????? ??? ?????? ?? ??? ?????? ??????? hoteditor ??? ???????? ??? ??????? ???? ????...
???? ??? ?? ??? ????? ??:
1]. ????? ???? BBCodeToHTML() ?? ??? common.php
2]. ?? ??? includes/bbcode.php ??? ?? ??? ??? ??? ????? ???? bbcode_second_pass() ??? ?????? ?????...
?? ?? ??? ???? ?????...
??? ?????? ??? ???? ????? ?????
?? ????? [strike] ???????? ?? ???? ?????? BBCodeToHTML() ??????..
?????? ??? ???? ??? ???????? ?? ??? ????? ??? ??????? ??? ?? ??? ?????? ???????? ??? ??? ???? ?????....
????? ?????:
?? ??? ????? ????? ?? ??? ??????.
كود: تحديد الكل
[b]test[/b]
[center]Hi every body!!![/center]
??? ??? ????? ???? ???????... ???? ??????? ??? ???? ????? (??????? ?? phpbb3)...
??????: ?? ???? ??????? ???????? ??? ??????? ??? ????? ??????? ???? ???? ??? ?? ?????...
?????? ?????...
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الثلاثاء يوليو 29, 2008 9:09 pm
بواسطة saanina
???? ????? ..
?? ???? ????? ????? ?????? ???? ..
??? ?????? ?? ??????? ?????? ??? ??????? ?????? ????? ?? ???? ??????
??? ???
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الأربعاء يوليو 30, 2008 5:52 pm
بواسطة wisammo
???? ?? saanina ??? ??????...
????? ???? ??? ???? ??? ???????...
???? ?? ??????? ?? ???? ?? ??? ?????...
??? ??? ?????????...
??????? ?? ??? ?? ????? ??? ??? ???????? ??? ???? ?????? bbcode_second_pass()...
?? ???? ????? ???? ???????...
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الأربعاء يوليو 30, 2008 7:42 pm
بواسطة Garebooo
??? ???? ?? ????? ????? ????? ...
??? ????? ???? ?? ??? ? ?? ???? ?? ??? ??? !
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الأحد أغسطس 03, 2008 7:26 pm
بواسطة wisammo
???? ???? ??? ???????? ?????????...
??? ?????? ???? ?? ??? ?? ????? ????? ????? ???? ????...
??? ?? ??? ????? ???? ???????? ??? ???????... ????? ???? ??? ???....
??? ??? common.php ??? ???:
???? ??:
??? ????:
كود: تحديد الكل
function BBCodeToHTML($text){
Global $user;
$patterns[] = "# #si";
$replacements[] = ' ';
$patterns[] = "#\t#si";
$replacements[] = ' ';
//Support Table here
$patterns[] = "#\[table\]\n*#si";
$replacements[] = '<table style="border-collapse: collapse;border-spacing: 0px;border: 1px solid #6CAFF7;background-color: #F4F4F4;width:98%;font-family:Verdana,Arial,Sans-Serif,Tahoma;font-size:12px;color: black;">';
$patterns[] = "#\[\/table\]#si";
$replacements[] = '</table>';
$patterns[] = "#\[tr\]\n*#si";
$replacements[] = '<tr>';
$patterns[] = "#\[\/tr\]\n*#si";
$replacements[] = '</tr>';
$patterns[] = "#\[td\]\n*#si";
$replacements[] = '<td style="height:25px; border: 1px solid #6CAFF7">';
$patterns[] = "#\[\/td\]\n*#si";
$replacements[] = '</td>';
$patterns[] = "#\[blockquote\]\n*#si";
$replacements[] = '<span style="margin-left:40px">';
$patterns[] = "#\[\/blockquote\]#si";
$replacements[] = '</span>';
$patterns[] = "#\[highlight=(.*?)\]#si";
$replacements[] = '<span style="background-color:$1;">';
$patterns[] = "#\[\/(font|highlight)(.*?)\]#si";
$replacements[] = '</span>';
$patterns[] = "#\[(sub|sup|strike)(.*?)\]#si";
$replacements[] = '<$1>';
$patterns[] = "#\[\/(sub|sup|strike)(.*?)\]#si";
$replacements[] = '</$1>';
$patterns[] = "#\[hr\]#si";
$replacements[] = '<hr class=HR_Color>';
$patterns[] = "#\[(left|center|right|justify)\]#si";
$replacements[] = '<div align="$1">';
$patterns[] = "#\[\/(left|center|right|justify)\]#si";
$replacements[] = '</div>';
$patterns[] = "#\[(rtl|ltr)\]#si";
$replacements[] = '<div dir="$1">';
$patterns[] = "#\[\/(rtl|ltr)\]#si";
$replacements[] = '</div>';
$text = preg_replace($patterns, $replacements, $text);
return $text;
}
???? ?????? ???? ????? ????? ?? ?? ??? ???????.
???? ??? ??? includes/bbcode.php ??? ???:
???? ??:
كود: تحديد الكل
function bbcode_second_pass(&$message, $bbcode_uid = '', $bbcode_bitfield = false)
{
??? ????:
كود: تحديد الكل
$message = BBCodeToHTML($message);
??????? ??????? ????? ?? ???? ??????... ?????...
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الأحد أغسطس 03, 2008 10:17 pm
بواسطة saanina
??? ???? ???????? ..
????? ?? ??????? ???? ???????? ???? ?????? ..
?? .. ???..
???? ??? includes/function_posting.php
? includes/functions_privmsgs.php
? ???? ???? ???? ???? ????? ?? ??????? ????? ???????? ..
???? :
كود: تحديد الكل
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
??? ?????
كود: تحديد الكل
function BBCodeToHTML($text){
Global $user;
$patterns[] = "# #si";
$replacements[] = ' ';
$patterns[] = "#\t#si";
$replacements[] = ' ';
//Support Table here
$patterns[] = "#\[table\]\n*#si";
$replacements[] = '<table style="border-collapse: collapse;border-spacing: 0px;border: 1px solid #6CAFF7;background-color: #F4F4F4;width:98%;font-family:Verdana,Arial,Sans-Serif,Tahoma;font-size:12px;color: black;">';
$patterns[] = "#\[\/table\]#si";
$replacements[] = '</table>';
$patterns[] = "#\[tr\]\n*#si";
$replacements[] = '<tr>';
$patterns[] = "#\[\/tr\]\n*#si";
$replacements[] = '</tr>';
$patterns[] = "#\[td\]\n*#si";
$replacements[] = '<td style="height:25px; border: 1px solid #6CAFF7">';
$patterns[] = "#\[\/td\]\n*#si";
$replacements[] = '</td>';
$patterns[] = "#\[blockquote\]\n*#si";
$replacements[] = '<span style="margin-left:40px">';
$patterns[] = "#\[\/blockquote\]#si";
$replacements[] = '</span>';
$patterns[] = "#\[highlight=(.*?)\]#si";
$replacements[] = '<span style="background-color:$1;">';
$patterns[] = "#\[\/(font|highlight)(.*?)\]#si";
$replacements[] = '</span>';
$patterns[] = "#\[(sub|sup|strike)(.*?)\]#si";
$replacements[] = '<$1>';
$patterns[] = "#\[\/(sub|sup|strike)(.*?)\]#si";
$replacements[] = '</$1>';
$patterns[] = "#\[hr\]#si";
$replacements[] = '<hr class=HR_Color>';
$patterns[] = "#\[(left|center|right|justify)\]#si";
$replacements[] = '<div align="$1">';
$patterns[] = "#\[\/(left|center|right|justify)\]#si";
$replacements[] = '</div>';
$patterns[] = "#\[(rtl|ltr)\]#si";
$replacements[] = '<div dir="$1">';
$patterns[] = "#\[\/(rtl|ltr)\]#si";
$replacements[] = '</div>';
$text = preg_replace($patterns, $replacements, $text);
return $text;
}
???? ?? :
??? ???? ?? ????
كود: تحديد الكل
$message = BBCodeToHTML($message);
?? ??? ????? .. ?? ???? ???? ??? ??????? ?? ??????? ?????? ???? ????? .. ????? ?????? ..
??? ?? ???? ?????? ??? ..
??? ???
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الاثنين أغسطس 04, 2008 12:31 am
بواسطة wisammo
???? ?? saanina ??? ???????...
??? ????? ??????? ???? ???????? ?? ????...
??? ?? ??? ????? ?? ?????? ???? ?????? bbcode_nl2br ????? ?? ???? ?? ???? ?????? ????? ????? BB ??????? ?? ?????:
???? ???????:
??? ????? ??????? ????? ?????? ??? ?????... ?? ???????:
???? ??? ??? includes/functions_content.php
???? ??:
كود: تحديد الكل
$text = str_replace(array("\n", "\r"), array('<br />', "\n"), $text);
??? ????:
??? ????? ????? ?????...
?? ???? ????? ?? ????? ?????,, ???? ???? ????????...
???? ??? ??????? ?????? ????? ?????? ??? ?? ?????? ???? ?? ???????, ???? ???? ??? ??? ???? ??????? ?????, ???? ????????? ????..
????? ??? ????????...
[?????] hoteditor / ?? ???? ??????? ?????? ???? ?????? BBcod
مرسل: الاثنين أغسطس 04, 2008 11:37 am
بواسطة saanina
wisammo
??? ?????? .. ?? ??? ??? ???????? .. ????? ??? ?????? !
???????? ..