试图在谷歌上找到如何将elfinder与CKeditor集成,但不起作用。 有一条指令here 但是,它不起作用。它能够打开elfinder。但是,当我双击图像时,它不会将URL传递给图像文件,而是打开图片查看器。
再试一次,找到这个link 但是,它也没有帮助。有些人说github上的编码可用于版本1.现在,elfinder使用的是版本2.0 rc1。
那么,有没有人能帮助我与CKeditor整合?这将会非常棒。 谢谢。
答案 0 :(得分:4)
<!-- elFinder initialization (REQUIRED) -->
<script type="text/javascript" charset="utf-8">
$().ready(function() {
var elf = $('#elfinder').elfinder({
url : 'php/connector.php' // connector URL (REQUIRED)
// lang: 'ru', // language (OPTIONAL)
}).elfinder('instance');
});
</script>
使用wiki的代码:
<script type="text/javascript" charset="utf-8">
// Helper function to get parameters from the query string.
function getUrlParam(paramName) {
var reParam = new RegExp('(?:[\?&]|&)' + paramName + '=([^&]+)', 'i') ;
var match = window.location.search.match(reParam) ;
return (match && match.length > 1) ? match[1] : '' ;
}
$().ready(function() {
var funcNum = getUrlParam('CKEditorFuncNum');
var elf = $('#elfinder').elfinder({
url : 'php/connector.php',
getFileCallback : function(file) {
window.opener.CKEDITOR.tools.callFunction(funcNum, file);
window.close();
},
resizable: false
}).elfinder('instance');
});</script>
教程不是那么明显但工作正常..