2009年6月9日 星期二

讓FCKeditor(CKeditor)每日更新fckconfig.js

FCKeditor未來會改名為CKeditor
其實原本新的專案想要使用CKeditor,但是卻發現beta就算了,連文件都少的可憐。
所以建議大家決使用FCKeditor
然而FCKeditor在開發初期,常需要修改fckconfig.js的內容。
為了能確保使用者的fckconfig.js都是最新的,可以在config的路徑加上參數。
如下
$editor = new FCKeditor('content') ;
$editor->BasePath = APP_URL.'/js/fckeditor/' ;
$editor->Value = 'content value';
$editor->Height=300;
$editor->Width=530;
$editor->Config['CustomConfigurationsPath']=$editor->BasePath.'fckconfig.js?'.date("YmdH");
$editor->Create() ;