如何将CKEditor 4.2版安装到YII


How to instal CKEditor Version 4.2 to YII

如何将CKEditor 4.2版安装到YII框架?

像这样的指令:http://www.yiiframework.com/extension/ckeditor-integration/不起作用,因为4.2版本中没有ckeditor.php文件。如果我使用此指令,我会出现以下错误:

include(CKEditor.php)[function.include]:无法打开流:没有这样的文件或目录

因此,我将再次重复我的问题:如何将CKEditor 4.2版安装到YII框架?

谢谢。

为什么特别是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>

点击链接了解更多详细信息。