2013-08-17 15:07:18 +04:00
|
|
|
<div class="crumb home">
|
2013-03-07 16:48:02 +04:00
|
|
|
<a href="<?php print_unescaped($_['home']); ?>">
|
|
|
|
<img src="<?php print_unescaped(OCP\image_path('core', 'places/home.svg'));?>" class="svg" />
|
|
|
|
</a>
|
|
|
|
</div>
|
2013-12-13 15:17:10 +04:00
|
|
|
<div class="crumb svg"
|
|
|
|
data-dir='/'>
|
2013-03-07 16:48:02 +04:00
|
|
|
<a href="<?php p($_['baseURL']); ?>"><?php p($l->t("Deleted Files")); ?></a>
|
2013-12-13 15:17:10 +04:00
|
|
|
</div>
|
|
|
|
<?php if(count($_["breadcrumb"])):?>
|
2013-03-07 16:48:02 +04:00
|
|
|
<?php endif;?>
|
|
|
|
<?php for($i=0; $i<count($_["breadcrumb"]); $i++):
|
|
|
|
$crumb = $_["breadcrumb"][$i];
|
2013-07-04 20:23:31 +04:00
|
|
|
$dir = \OCP\Util::encodePath($crumb["dir"]); ?>
|
2013-04-18 20:28:03 +04:00
|
|
|
<div class="crumb <?php if($i === count($_["breadcrumb"])-1) p('last');?> svg"
|
2013-03-07 16:48:02 +04:00
|
|
|
data-dir='<?php p($dir);?>'>
|
|
|
|
<a href="<?php p($_['baseURL'].$dir); ?>"><?php p($crumb["name"]); ?></a>
|
|
|
|
</div>
|
|
|
|
<?php endfor;
|