elFinder:设置当前上传目录

时间:2015-04-05 16:57:12

标签: elfinder

我的目标是在elFinder初始化时设置当前上传目录。例如,我的“上传文件”链接具有所需的工作目录,该目录是动态生成的。如何将目录传递给elFinder?

3 个答案:

答案 0 :(得分:2)

elFinder 2.1可以直接打开任何带有URL哈希的文件夹。

离。

答案 1 :(得分:1)

  

是的,我想动态获取哈希值。

这个怎么样。

$encode_func = function ($path, $root) {
    $p = $path == $root ? '' : substr($path, strlen($root)+1)
    if ($p === '')  {
        $p = DIRECTORY_SEPARATOR;
    }
    $hash = $this->crypt($p);
    $hash = strtr(base64_encode($hash), '+/=', '-_.');
    $hash = rtrim($hash, '.'); 
    return $hash;
};
$id   = '[uniqueId]_'; You must set same id into root option
$root = realpath('../image/data/');
$path = realpath('../image/data/product');
$hash = $id.$encode($path, $root);
$url_hash = '#elf_'.$hash;

答案 2 :(得分:0)

基于nao-pon和elfinder类的简单。

第1步: //在php中从你的文件路径中创建哈希,例如目录名("根/图像/ iphone / iphone-6S.jpg&#34)。 它主要只是base64_encode

function elfinder_hash_path($path)
{
        if ($path == '')
            $path = DIRECTORY_SEPARATOR;
        $hash = substr($path, strlen("root-name")+1);
        // hash is used as id in HTML that means it must contain vaild chars
        // make base64 html safe and append prefix in begining
        $hash = strtr(base64_encode($hash), '+/=', '-_.');
        // remove dots '.' at the end, before it was '=' in base64
        $hash = rtrim($hash, '.');
        // append volume id to make hash unique
        return "l1_". $hash;
}

" LI"是elfinder中第一个本地文件系统的自动卷ID。 否则,您可以在connector.php选项" id"中设置您的卷ID。 => "本身份识别码",

第2步: 如果你从JS调用elfinder窗口,那么在elfinder初始化之后, 绑定elfinder onload事件以跳转到您想要的目录。 在这种情况下,保存在JS变量hasher中,来自php。

var elf = $('#elfinder').elfinder({
    url : 'elfinder/php/connector.php',  // connector URL (REQUIRED)
    lang: 'sk',
    height: okno_vyska
}).elfinder('instance');

elf.bind('load', function(event) { elf.exec('open', hasher); });

更新:
如果在此js会话中尚未打开散列子子目录​​,则elf.exec(' open',hasher)不起作用,因此它不在缓存中,并且elfinder不执行任何操作。
解决方法:使用
window.location.hash = hasher;
或者在elf init之前更新本地存储中最后使用的目录

localStorage.setItem('elfinder-lastdirelfinder', hasher);