我的目标是在初始化elFinder时设置当前上传目录。例如,我的“上传文件”链接有所需的工作目录,它是动态生成的。如何将目录传递给elFinder?
问问题
3080 次
3 回答
2
elFinder 2.1 可以直接打开带有 URL 哈希的任何文件夹。
前任。
于 2015-04-06T06:47:11.963 回答
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;
于 2015-04-13T04:42:33.607 回答
0
基于 nao-pon 和 elfinder 类的一些简单的东西。
第 1 步://在 php 中根据您的文件路径生成哈希,例如 dirname("root/images/iphone/iphone-6S.jpg")。它大多只是 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;
}
“l1”是 elfinder 中第一个本地文件系统的自动卷 ID。否则,您可以在 connector.php 选项“id”=>“myid”中设置您的卷 ID,
第二步:如果你从JS调用elfinder窗口,则在elfinder初始化后,绑定elfinder onload事件跳转到你想跳转的目录。在这种情况下,保存在 JS 变量 hasher 中,从 php.ini 获取。
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); });
更新:
elf.exec('open', hasher) 不起作用,如果在此 js 会话中尚未打开散列子目录,则它不在缓存中,elfinder 什么也不做。
解决方法:在 elf init 之前使用
window.location.hash = hasher;
或更新本地存储中最后使用的目录
localStorage.setItem('elfinder-lastdirelfinder', hasher);
于 2015-06-17T17:46:28.650 回答