sintonia/livesupport/modules/htmlUI/var/html/templates/fileBrowse/path.tpl

12 lines
398 B
Smarty
Executable File

{*Smarty template*}
<div id="path">
<a href="{$UI_BROWSER}?act=fileBrowse&id={$structure.id}&tree=Y" class="button">[Tree view]</a>&nbsp;&nbsp;|&nbsp;
{foreach from=$structure.pathdata item=o}
{if $o.type == 'Folder'}
<a href="{$UI_BROWSER}?act=fileBrowse&id={$o.id}">[{$o.name}]</a> /
{else}
{$o.name}
{/if}
{/foreach}
</div>