nextcloud/apps/files_publiclink/templates/breadcrumb.php

4 lines
394 B
PHP
Raw Normal View History

2011-06-02 05:00:20 +04:00
<a href="<?php echo link_to("files_publiclink", "get.php?token=".$_['token']); ?>"><img src="<?php echo image_path("", "actions/go-home.png"); ?>" alt="Root" /></a>
<?php foreach($_["breadcrumb"] as $crumb): ?>
2011-06-02 05:00:20 +04:00
<a href="<?php echo link_to("files_publiclink", "get.php?token=".$_['token']."&path=".$crumb["dir"]); ?>"><?php echo htmlspecialchars($crumb["name"]); ?></a>
<?php endforeach; ?>