正如我在summernote github问题上的帖子所见。https://github.com/summernote/summernote/issues/1203
这就是我将 elFinder 文件管理器与 Summernote 集成的方法。
在编辑器中创建按钮
(function (factory) {
/* global define */
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['jquery'], factory);
} else {
// Browser globals: jQuery
factory(window.jQuery);
}
}(function ($){
// template, editor
var tmpl = $.summernote.renderer.getTemplate();
// add plugin
$.summernote.addPlugin({
name: 'genixcms', // name of plugin
buttons: { // buttons
readmore: function () {
return tmpl.iconButton('fa fa-long-arrow-right', {
event: 'readmore',
title: 'Read more',
hide: false
});
},
elfinder: function () {
return tmpl.iconButton('fa fa-list-alt', {
event: 'elfinder',
title: 'File Manager',
hide: false
});
},
},
events: { // events
readmore: function (event, editor, layoutInfo) {
layoutInfo.holder().summernote("insertText", "[[--readmore--]]");
},
elfinder: function (event, editor, layoutInfo) {
elfinderDialog();
},
}
});
}));
我为我的 cms 制作了两个按钮。查看elfinder
文件管理器的按钮。elfinder 事件运行elfinderDialog() 函数,之后我们必须创建该函数。
之后,在summernote config 中添加按钮。
$('.editor').summernote({
height: 300,
toolbar: [
['style', ['style']],
['style', ['bold', 'italic', 'underline', 'strikethrough', 'superscript', 'subscript', 'clear']],
['fontname', ['fontname']],
['fontsize', ['fontsize']],
['color', ['color']],
['para', ['ul', 'ol', 'paragraph']],
['height', ['height']],
['table', ['table']],
['insert', ['link', 'picture', 'video', 'hr', 'readmore']],
['genixcms', ['elfinder']],
['view', ['fullscreen', 'codeview']],
['help', ['help']]
],
onImageUpload: function(files, editor, welEditable) {
sendFile(files[0],editor,welEditable);
}
});
看到这个标签['genixcms', ['elfinder']]
,它将与其他按钮分开显示,因为它有自己的部门。Summernote 图片按钮默认上传图片。并且可以上传到服务器。我让它工作并且运行良好。问题是有时我们需要进行修改并且我们需要文件管理器。
添加 elFinder javascript 函数
在所有summernote 要求都准备好加载按钮之后。我们需要创建在单击按钮时将执行的函数。请参阅下面的代码。
function elfinderDialog(){
var fm = $('<div/>').dialogelfinder({
url : 'http://localhost/genixcms/inc/lib/Vendor/studio-42/elfinder/php/connector.minimal.php',
lang : 'en',
width : 840,
height: 450,
destroyOnClose : true,
getFileCallback : function(files, fm) {
console.log(files);
$('.editor').summernote('editor.insertImage',files.url);
},
commandsOptions : {
getfile : {
oncomplete : 'close',
folders : false
}
}
}).dialogelfinder('instance');
}
插入图像很容易,只需双击图像,图像就会在编辑器中插入。
我希望这个小片段可以帮助任何需要文件管理器并希望使用 elFinder 作为文件管理器的人。
谢谢