diff --git a/admin/communication.php b/admin/communication.php index 4e9ce014..a179b552 100644 --- a/admin/communication.php +++ b/admin/communication.php @@ -22,9 +22,259 @@ */ ?> + + + + +
:
:
:
+
+
+ + + + + + + 'committee_main.php', @@ -254,19 +504,29 @@ if(!$from && $config['fairmanageremail']) $from="Fair Manager <".$config['fairmanageremail'].">"; - echo ""; - echo "\n"; - echo "
".i18n("Email Name")."
".i18n("Email Key").""; + echo ""; + echo "\n"; + echo "\n"; - echo "\n"; + echo "\n"; echo ""; - echo "\n"; - echo "\n"; - echo ""; + echo "\n"; + echo "\n"; +// echo ""; + echo ""; + echo ""; echo "
".i18n("Email Name").":
".i18n("Email Key").":"; if($r->type=="system") echo $val; else echo " (must be unique)"; echo "
".i18n("Email Description")."
".i18n("Email Description").":

".i18n("Email Subject")."
".i18n("Email From")."
".i18n("Email Body")."
".i18n("Email Subject").":
".i18n("Email From").":
".i18n("Email Body")."
".i18n("Email Body").":"; + require_once("../fckeditor/fckeditor.php"); + $oFCKeditor = new FCKeditor("body") ; + $oFCKeditor->BasePath = "../fckeditor/"; + $oFCKeditor->Value = $body; + $oFCKeditor->Width="100%"; + $oFCKeditor->Height=300; + $oFCKeditor->Create(); + echo "
"; echo ""; diff --git a/admin/fundraising_campaigns.php b/admin/fundraising_campaigns.php index 660be69a..a9f9d0c7 100644 --- a/admin/fundraising_campaigns.php +++ b/admin/fundraising_campaigns.php @@ -664,6 +664,7 @@ function prospect_removeall() { //key is initial or followup //start is either 'new' to start with a blank, or 'existing' to load an existing email to start from function opencommunicationeditor(key,id) { + $("#dialog").empty(); if(id) { $("#dialog").load("communication.php?action=dialog_edit&id="+id,null,function() { }); @@ -674,6 +675,7 @@ function opencommunicationeditor(key,id) { } function opencommunicationchooser() { + $("#dialog").empty(); $("#dialog").load("communication.php?action=dialog_choose&type=fundraising",null,function() { }); } @@ -688,8 +690,7 @@ function removecommunication(id) { function comm_dialog_choose_select(id) { alert('im back with email id: '+id); //get rid of hte html - $("#dialog").html(""); - + $("#dialog").empty(); $("#dialog").load("communication.php?action=dialog_edit&cloneid="+id,null,function() { }); } diff --git a/fckeditor/fckconfig.js b/fckeditor/fckconfig.js index 89a92b17..dbd3356c 100644 --- a/fckeditor/fckconfig.js +++ b/fckeditor/fckconfig.js @@ -112,13 +112,28 @@ FCKConfig.ToolbarSets["Default"] = [ '/', ['Style','FontFormat','FontName','FontSize'], ['TextColor','BGColor'], - ['FitWindow','ShowBlocks','-','About'] // No comma for the last row. + ['FitWindow','ShowBlocks'] // No comma for the last row. ] ; FCKConfig.ToolbarSets["Basic"] = [ ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About'] ] ; +FCKConfig.ToolbarSets["sfiab"] = [ + ['Cut','Copy','Paste'], + ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], + ['Source'], + '/', + ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'], + ['OrderedList','UnorderedList','-','Outdent','Indent'], + ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'], + ['Link','Unlink'], + ['TextColor','BGColor'], + ['Image','Table'], + ['Style','FontFormat','FontName','FontSize'] +] ; + + FCKConfig.EnterMode = 'p' ; // p | div | br FCKConfig.ShiftEnterMode = 'br' ; // p | div | br