Fix svg icons for public shares and external/shared files
This commit is contained in:
parent
609a91a9b1
commit
f33d35cd07
|
@ -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'];
|
||||
|
|
|
@ -32,7 +32,8 @@ function determineIcon($file, $sharingRoot, $sharingToken) {
|
|||
if($file['isPreviewAvailable']) {
|
||||
return OCP\publicPreview_icon($relativePath, $sharingToken) . '&c=' . $file['etag'];
|
||||
}
|
||||
return OCP\mimetype_icon($file['mimetype']);
|
||||
$icon = OCP\mimetype_icon($file['mimetype']);
|
||||
return substr($icon, 0, -3) . 'svg';
|
||||
}
|
||||
|
||||
if (isset($_GET['t'])) {
|
||||
|
|
Loading…
Reference in New Issue