[BETA] [????] ???? Almsamim WYSIWYG v0.0.8 ??????
مرسل: الاثنين فبراير 16, 2009 1:26 pm
????? ?? ???? ?? ?????? ??? ???????
2- ????? ??? ???? ??????? ??????
2- ????? ??? ???? ??????? ??????
الدعم العربي لمنتديات phpBB
http://www.phpbbarabia.com/community/
sherifadham كتب:
?????? ?????
??? ?????? ??? ??????
1- ???? ?? ??????? ??????? ( ?????? ?????? xlive ??????? ???? ???? ?? ??????? ??? ???????? ???????? )
root/images/editor/*.gif,
root/images/wc.js,
root/adm/style/wysiwyg.html,
root/includes/acp/acp_wysiwyg.php,
root/includes/acp/info/acp_wysiwyg.php,
root/language/en/mods/wysiwyg.php
2-???? ?? ??????? ????????
viewtopic.php,
includes/bbcode.php,
includes/functions_posting.php,
includes/functions.php
3- ???? ??? ??????
Run install.php to install new bbcodes,module and purging cache then remove the file.
4- ?????? ??? ?? ??????? ?????
5- ????? ?? ???? ???? ??????? ?? ????? ????
5- ??? ?? ???? ?????? ? ?? ?? ??? ??? ?????? ????????? ???? ????? ???????
?? ??????? ? ? ?? ????
كود: تحديد الكل
error_reporting(E_ALL ^ E_NOTICE);
كود: تحديد الكل
//HotEditor MOD(and some code add in it)
function BBCodeToHTML($text){
$patterns[] = "# #si";
$replacements[] = ' ';
$patterns[] = "#\t#si";
$replacements[] = ' ';
//Support Table here
$patterns[] = "#\[table\]#si";
$replacements[] = '<table class="tablebg" cellspacing="1" width="100%">';
$patterns[] = "#\[\/table\]#si";
$replacements[] = '</table>';
$patterns[] = "#\[td\]#si";
$replacements[] = '<td class="row2" colspan="2" align="center"><span class="gensmall">';
$patterns[] = "#\[\/td\]#si";
$replacements[] = '</span></td>';
$patterns[] = "#\[tr\]#si";
$replacements[] = '<tr>';
$patterns[] = "#\[\/tr\]#si";
$replacements[] = '</tr>';
$patterns[] = "#\[img(.*?)\](.*?)\[\/img(.*?)\]#si";
$replacements[] = '<img src="$2" alt="" />';
$patterns[] = "#\[(indent|blockquote)\]#si";
$replacements[] = "<blockquote>";
$patterns[] = "#\[\/(indent|blockquote)\]#si";
$replacements[] = "</blockquote>";
$patterns[] = "#\[(sub|sup|strike)(.*?)\]#si";
$replacements[] = '<$1>';
$patterns[] = "#\[\/(sub|sup|strike)(.*?)\]#si";
$replacements[] = '</$1>';
$patterns[] = "#\[size=85(.*?)\]#si";
$replacements[] = '<span style="font-size: 8pt; line-height:125%">';
$patterns[] = "#\[size=100(.*?)\]#si";
$replacements[] = '<span style="font-size: 10pt; line-height:125%">';
$patterns[] = "#\[size=120(.*?)\]#si";
$replacements[] = '<span style="font-size: 12pt; line-height:125%">';
$patterns[] = "#\[size=130(.*?)\]#si";
$replacements[] = '<span style="font-size: 14pt; line-height:125%">';
$patterns[] = "#\[size=150(.*?)\]#si";
$replacements[] = '<span style="font-size: 16pt; line-height:125%">';
$patterns[] = "#\[size=170(.*?)\]#si";
$replacements[] = '<span style="font-size: 18pt; line-height:125%">';
$patterns[] = "#\[size=200(.*?)\]#si";
$replacements[] = '<span style="font-size: 24pt; line-height:125%">';
$patterns[] = "#\[font=(.*?)\]#si";
$replacements[] = '<span style="font-family:$1;">';
$patterns[] = "#\[color=(.*?)\]#si";
$replacements[] = '<span style="color:$1;">';
$patterns[] = "#\[highlight=(.*?)\]#si";
$replacements[] = '<span style="background-color:$1;">';
$patterns[] = "#\[\/(font|highlight|color|size)(.*?)\]#si";
$replacements[] = '</span>';
$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>';
$text = preg_replace($patterns, $replacements, $text);
return $text;
}
كود: تحديد الكل
function bbcode_second_pass(&$message, $bbcode_uid = '', $bbcode_bitfield = false)
{
كود: تحديد الكل
$message=BBCodeToHTML($message);
كود: تحديد الكل
$message = bbcode_nl2br($message);
$message = smiley_text($message);
كود: تحديد الكل
$message=BBCodeToHTML($message);