|
|
|
@ -22,6 +22,7 @@ class Helper |
|
|
|
|
public static function determineIcon($file) { |
|
|
|
|
if($file['type'] === 'dir') { |
|
|
|
|
$dir = $file['directory']; |
|
|
|
|
$icon = \OC_Helper::mimetypeIcon('dir'); |
|
|
|
|
$absPath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir.'/'.$file['name']); |
|
|
|
|
$mount = \OC\Files\Filesystem::getMountManager()->find($absPath); |
|
|
|
|
if (!is_null($mount)) { |
|
|
|
@ -29,14 +30,13 @@ class Helper |
|
|
|
|
if (!is_null($sid)) { |
|
|
|
|
$sid = explode(':', $sid); |
|
|
|
|
if ($sid[0] === 'shared') { |
|
|
|
|
return \OC_Helper::mimetypeIcon('dir-shared'); |
|
|
|
|
$icon = \OC_Helper::mimetypeIcon('dir-shared'); |
|
|
|
|
} |
|
|
|
|
if ($sid[0] !== 'local' and $sid[0] !== 'home') { |
|
|
|
|
return \OC_Helper::mimetypeIcon('dir-external'); |
|
|
|
|
$icon = \OC_Helper::mimetypeIcon('dir-external'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
$icon = \OC_Helper::mimetypeIcon('dir'); |
|
|
|
|
}else{ |
|
|
|
|
if($file['isPreviewAvailable']) { |
|
|
|
|
$pathForPreview = $file['directory'] . '/' . $file['name']; |
|
|
|
|