向elFinder添加自定义上下文菜单项



我正在使用elfinder,我想通过向上下文菜单添加命令来添加新功能。我在项目的github问题跟踪器上找到了解决方案,但我无法让它工作。我是这样做的:

var elf;
jQuery().ready(function() {
    elFinder.prototype._options.commands.push('editimage');
    elFinder.prototype._options.contextmenu.files.push('editimage');
    elFinder.prototype.i18.en.messages['cmdeditimage'] = 'Edit Image';          
    elFinder.prototype.i18.de.messages['cmdeditimage'] = 'Bild bearbeiten';
    elFinder.prototype.commands.editimage = function() {
        this.exec = function(hashes) {
             console.log('hallo');
        }
    }
    elf = jQuery('#elfinder').elfinder({
    ...
    //elfinder initialization

上下文菜单项不显示,在控制台中找不到错误消息。我还尝试将编辑在初始化部分的contextmenu->"文件"下,以防被初始化覆盖。

我找到了解决方案:示例没有显示您需要在elFinder.prototype.commands.yourcommand函数中具有一个称为this.getstate的函数的事实。启用图标时返回0,禁用图标时返回-1。

因此,添加自己的菜单项或上下文菜单项的完整代码如下所示:
var elf;
jQuery().ready(function() {
    elFinder.prototype.i18.en.messages['cmdeditimage'] = 'Edit Image';          
    elFinder.prototype.i18.de.messages['cmdeditimage'] = 'Bild bearbeiten';
    elFinder.prototype._options.commands.push('editimage');
    elFinder.prototype.commands.editimage = function() {
        this.exec = function(hashes) {
             //do whatever
        }
        this.getstate = function() {
            //return 0 to enable, -1 to disable icon access
            return 0;
        }
    }
    ...
    elf = jQuery('#elfinder').elfinder({
        lang: 'de',             // language (OPTIONAL)
        url : '/ext/elfinder-2.0-rc1/php/connector.php',  //connector URL
        width:'100%',
        uiOptions : {
            // toolbar configuration
            toolbar : [
                ...
                ['quicklook', 'editimage'],
                /*['copy', 'cut', 'paste'],*/
                ...
            ]},
        contextmenu : {
            ...
            // current directory file menu
            files  : [
                'getfile', '|','open', 'quicklook', 'editimage', ...
            ]
        }
    }).elfinder('instance');
});

希望这能帮助到有同样问题的人。

谢谢你的回答,太好了!

有一件事不清楚,那就是变量是如何传递的。

所以,如果有人找到这个页面....

elFinder.prototype.commands.editpres = function() {
    this.exec = function(hashes) {
        var file = this.files(hashes);
        var hash = file[0].hash;
        var fm = this.fm;
        var url = fm.url(hash);
        var scope = angular.element("body").scope();
        scope.openEditorEdit(url);
    }
    // Getstate configured to only light up button if a file is selected.
    this.getstate = function() {
        var sel = this.files(sel),
        cnt = sel.length;
        return !this._disabled && cnt ? 0 : -1;
    }
}

要让你的图标显示,添加以下代码到你的css文件:

.elfinder-button-icon-editpres { background:url('../img/icons/editpres.png')  no-repeat; }

相关内容

  • 没有找到相关文章

最新更新