我需要将elFinder集成到CKEditor。我遵循这个:
https://github.com/Studio-42/elFinder/wiki/Integration-with-CKEditor它正在工作,但打开图像选择弹出窗口不是很好,所以我想在模式对话框中打开elFinder。
对于"模态集成",我遵循这个线程:http://bxuulgygd9.tal.ki/20110728/integration-with-ckeditor-759177/
最后一个帖子在那里部分工作。它打开了elfinder的模式。但是:当我想在CKFinder中插入图像URL到URL字段时,我必须知道它的确切ID。它也不填充图像分辨率和带来一些其他问题。最好的解决方案是运行在"普通弹出"集成中调用的函数,它处理所有事情:
window.opener.CKEDITOR.tools.callFunction(funcNum, file);
但在"弹出式集成"中,funcNum回调被注册,在模态集成它不是所以我无法调用它。你有什么建议来运行elfinder(或任何其他图像管理器-它将是相同的)在模态窗口?我绝望。
我自己解决了。这段代码是几个教程的组合,并允许在模态窗口中完全集成elFinder。也许有人会认为它有用。
CKEDITOR.on('dialogDefinition', function(event) {
var editor = event.editor;
var dialogDefinition = event.data.definition;
console.log(event.editor);
var dialogName = event.data.name;
var tabCount = dialogDefinition.contents.length;
for (var i = 0; i < tabCount; i++) {
var browseButton = dialogDefinition.contents[i].get('browse');
if (browseButton !== null) {
browseButton.hidden = false;
browseButton.onClick = function(dialog, i) {
editor._.filebrowserSe = this;
jQuery('<div >').dialog({modal: true, width: "80%", title: "Insert image", zIndex: 99999,
create: function(event, ui) {
jQuery(this).elfinder({
resizable: false,
url: "/path/to/connector.php",
getFileCallback: function(url) {
CKEDITOR.tools.callFunction(editor._.filebrowserFn, url);
jQuery('a.ui-dialog-titlebar-close[role="button"]').click()
}
}).elfinder('instance')
}
})
}
}
}
});