如何将kcfinder整合到tinymce 4中?

时间:2013-11-15 04:39:27

标签: tinymce tinymce-4 kcfinder

有没有人成功地将kcfinder整合到tinymce 4?

下面的链接中有一个解决方案,但它不包含所需的所有源代码。

http://www.tinymce.com/forum/viewtopic.php?id=30896

2 个答案:

答案 0 :(得分:0)

你应该在服务器中复制kcfinder文件夹,然后设置config.php文件 设置uploadURL和uploadDIR

 'uploadURL' => "http://localhost/smartytest/upload/",
 'uploadDir' => "k:\xampp\htdocs\smartytest\upload\",

答案 1 :(得分:0)

使用它:

tinyMCE.init({mode:"exact",
skin:"o2k7",           
mode: "exact",
width : "650",
height:"200",
paste_text_use_dialog : true,
skin_variant:"silver",
relative_urls : true,
convert_urls : false,
elements:"contents",
theme:"advanced",
content_css : "javascript/tinymce/custom_css.css",

plugins:"pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,safari,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",

theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect, cut,copy,paste,pastetext",

theme_advanced_buttons2:"link,unlink,image,cleanup,code,|,forecolor,backcolor, table,advhr,|,sub,sup,|,fullscreen,|,bullist,numlist,outdent,indent,undo,redo",

// theme_advanced_buttons3:"table,advhr,|,sub,sup,|,fullscreen",
theme_advanced_toolbar_location :"top",
theme_advanced_toolbar_align        :"left",
theme_advanced_statusbar_location :"none",
theme_advanced_path                 : false,
paste_retain_style_properties   :"all",
theme_advanced_resizing         :false,
file_browser_callback:"openKCFinder"});

function openKCFinder(c,a,b,d){tinyMCE.activeEditor.windowManager.open({file:"javascript/kcfinder/browse.php?opener=tinymce&type="+b+"&dir="+b+"/public",title:"KCFinder",width:700,height:500,resizable:"yes",inline:true,close_previous:"no",popup_css:false},{window:d,input:c});return false};