2013-07-31 85 views
1

如何安裝裝配CKEditor的4.2版到YII framwork?如何安裝裝配CKEditor的4.2版到警予

Istructions這樣的:不工作,因爲在4.2版本沒有ckeditor.php文件。如果我使用這說明我有這個錯誤:

include(CKEditor.php) [function.include]: failed to open stream: No such file or directory

,所以我會再次重複我的問題: 如何安裝裝配CKEditor的4.2版到YII framwork?

謝謝。

+0

請注意,CKEditor不包含在此擴展中,您可以從其官方網站下載CKEditor,並在您的應用程序中使用此擴展。 –

+0

我知道,謝謝 –

回答

-1

爲什麼特別CKEditor Version 4.2?隨機問題。

如果你可以使用其他豐富的文本編輯器,那麼我想建議tinyMCE

下面的代碼我使用實現了tinyMCE。

<script type="text/javascript"> 
tinyMCE.init({ 
    // General options 
    mode : "exact", 
    elements : "ta1", 
    theme : "advanced", 
    plugins : "autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist", 
    inlinepopups_skin: "themepixels", 

    // Theme options 
    theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,outdent,indent,blockquote,formatselect,fontselect,fontsizeselect", 
    theme_advanced_buttons2 : "pastetext,pasteword,|,bullist,numlist,|,undo,redo,|,link,unlink,image,help,code,|,preview,|,forecolor,backcolor,removeformat,|,charmap,media,|,fullscreen", 
    theme_advanced_buttons3 : "", 
    theme_advanced_toolbar_location : "top", 
    theme_advanced_toolbar_align : "left", 
    theme_advanced_statusbar_location : "bottom", 
    theme_advanced_resizing : true, 

    skin : "themepixels", 

    // Example content CSS (should be your site CSS) 
    content_css : "<?php echo $this->module->assetsUrl; ?>/css/plugins/tinymce.css", 

    // Drop lists for link/image/media/template dialogs 
    template_external_list_url : "js/template_list.js", 
    external_link_list_url : "js/link_list.js", 
    external_image_list_url : "js/image_list.js", 
    media_external_list_url : "js/media_list.js", 

    // Replace values for the template plugin 
    template_replace_values : { 
      username : "Some User", 
      staffid : "991234" 
    } 
}); 
</script> 

請點擊此鏈接瞭解更多詳情。

+0

4.2是Ckeditor的最新版本。我決定使用它,因爲我喜歡它。 TinyMCE也不錯。 –