src build elFinder-2.1-6944da4

This commit is contained in:
nao-pon
2017-11-10 20:40:31 +09:00
parent 05cf2ff3ed
commit 27c6c48f12
7 changed files with 42 additions and 13 deletions
@@ -1122,6 +1122,21 @@ class elFinderVolumeLocalFileSystem extends elFinderVolumeDriver {
return $this->rmdirRecursive($localpath);
}
/**
* Return fileinfo based on filename
* For item ID based path file system
* Please override if needed on each drivers
*
* @param string $path file cache
* @return array
*/
protected function isNameExists($path) {
$res = file_exists($this->convEncIn($path));
// restore locale
$this->convEncOut();
return $res;
}
/******************** Over write (Optimized) functions *************************/
/**