在Elfinder中阻止mkdir

时间:2014-03-16 02:44:36

标签: elfinder

我试图在elfinder中禁用mkdir-option。我只想在我的(root)文件夹中上传。 以下解决方案不会禁用mkdir选项(即使我删除了mkdir)。任何提示?

tinyMCE.activeEditor.windowManager.open({
file : 'elfinder/elfinder.html',
        title : 'elFinder 2.0',
        width : 950,  
        height : 630,
        resizable : "yes",

    uiOptions: {
        toolbar : [
            // toolbar configuration
            ['open'],
            ['back', 'forward'],
            ['reload'],
            ['home', 'up'],
            ['mkfile', 'upload'],
            ['info'],
            ['quicklook'],
            ['copy', 'cut', 'paste'],
            ['rm'],
            ['duplicate', 'rename', 'edit'],
            ['extract', 'archive'],
            ['search'],
            ['view'],
            ['help']
        ]
    },

   commands : [
    'open', 'reload', 'home', 'up', 'back', 'forward', 'getfile', 'quicklook',
    'download', 'rm', 'duplicate', 'rename', 'mkfile', 'upload', 'copy',
    'cut', 'paste', 'edit', 'extract', 'archive', 'search', 'info', 'view', 'help'
   ],                       
}

2 个答案:

答案 0 :(得分:2)

编辑connector.php文件并添加名为“disabled”的键

    'roots' => array(
            array(
                    'driver'     => 'LocalFileSystem',
                    'path'       => '../../ava/externo/',
                    'startPath'  => '../../ava/externo/',
                    'URL'        => dirname($_SERVER['PHP_SELF']) . '/../../ava/externo',
                    'tmbPath'    => '.tmb',
                    'utf8fix'    => true,
                    'tmbCrop'    => false,
                    'tmbBgColor' => 'transparent',
                    'accessControl' => 'access',
                    'acceptedName'    => '/^[^\.].*$/',
                    'disabled' => array('extract', 'archive', 'mkdir'),
                    'tmbSize' => 128,
                    'attributes' => array(
                            array(
                                    'pattern' => '/^\/icons$/',
                                    'read' => true,
                                    'write' => false
                            ),
                            array(
                                    'pattern' => '/\.php$/',
                                    'hidden' => true,
                                    'read' => false
                            ),
                            array(
                                    'pattern' => '/\.zip$/',
                                    'read' => true,
                                    'write' => true
                            )
                    ),
                    'uploadDeny' => array('text/php')

答案 1 :(得分:0)

请注意,此时,使用disabled时,不会在通过快捷键(热键)执行时禁用该命令。例如,当您禁用上传时,Ctrl-u仍然允许用户上传文件。

您可以在初始配置中使用allowShortcuts:false禁用所有热键。您还可以使用以下命令禁用特定命令的快捷方式:

commandsOptions: {
   upload : {shortcuts : []},
   rm : {shortcuts : []},
   download : {shortcuts : []}
},

Unfortunately, I haven't found a way do this in the connector.