Show the name of the shared folder in the breadcrumb when viewing a publicly shared folder
This commit is contained in:
parent
d1f3f121d6
commit
d279ddd9a2
2 changed files with 7 additions and 1 deletions
|
@ -1,6 +1,10 @@
|
||||||
<div class="crumb <?php if(!count($_["breadcrumb"])) p('last');?>" data-dir=''>
|
<div class="crumb <?php if(!count($_["breadcrumb"])) p('last');?>" data-dir=''>
|
||||||
<a href="<?php print_unescaped($_['baseURL']); ?>">
|
<a href="<?php print_unescaped($_['baseURL']); ?>">
|
||||||
|
<?php if(isset($_['rootBreadCrumb'])):
|
||||||
|
echo $_['rootBreadCrumb'];
|
||||||
|
else:?>
|
||||||
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
|
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
|
||||||
|
<?php endif;?>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
||||||
|
|
|
@ -111,6 +111,7 @@ if (isset($path)) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$basePath = $path;
|
$basePath = $path;
|
||||||
|
$rootName = basename($path);
|
||||||
if (isset($_GET['path']) && \OC\Files\Filesystem::isReadable($basePath . $_GET['path'])) {
|
if (isset($_GET['path']) && \OC\Files\Filesystem::isReadable($basePath . $_GET['path'])) {
|
||||||
$getPath = \OC\Files\Filesystem::normalizePath($_GET['path']);
|
$getPath = \OC\Files\Filesystem::normalizePath($_GET['path']);
|
||||||
$path .= $getPath;
|
$path .= $getPath;
|
||||||
|
@ -216,6 +217,7 @@ if (isset($path)) {
|
||||||
$list->assign('sharingroot', $basePath);
|
$list->assign('sharingroot', $basePath);
|
||||||
$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '');
|
$breadcrumbNav = new OCP\Template('files', 'part.breadcrumb', '');
|
||||||
$breadcrumbNav->assign('breadcrumb', $breadcrumb);
|
$breadcrumbNav->assign('breadcrumb', $breadcrumb);
|
||||||
|
$breadcrumbNav->assign('rootBreadCrumb', $rootName);
|
||||||
$breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path=');
|
$breadcrumbNav->assign('baseURL', OCP\Util::linkToPublic('files') . $urlLinkIdentifiers . '&path=');
|
||||||
$maxUploadFilesize=OCP\Util::maxUploadFilesize($path);
|
$maxUploadFilesize=OCP\Util::maxUploadFilesize($path);
|
||||||
$fileHeader = (!isset($files) or count($files) > 0);
|
$fileHeader = (!isset($files) or count($files) > 0);
|
||||||
|
|
Loading…
Reference in a new issue