This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/plugins/housekeeper/templates/FolderUsage.smarty

33 lines
1.1 KiB
Plaintext

{literal}
<script>
function cleanupFolder(path)
{
if (confirm('{/literal}{i18n}Are you sure you want to clear{/i18n}{literal} ' + path + '?'))
{
document.location = "{/literal}{$dispatcherURL}{literal}?action=cleanup&folder=" + path;
}
}
</script>
{/literal}
<table border=0 cellspacing="1" cellpadding="1" width="100%">
<tr>
<td ><B>{i18n}Description{/i18n}</td>
<td width="80" align="center"><B># {i18n}Files{/i18n}</td>
<td width="130" align="center"><B>{i18n}Space Used{/i18n}</td>
<td width="80" align="center"><B>{i18n}Action{/i18n}</td>
</tr>
<tr><td colspan=4><hr></tr>
{section name=usage loop=$usages}
{if $usages[usage].folder!= ''}
<tr>
<td><i>{$usages[usage].description}</i><br>({$usages[usage].folder}) </td>
<td align=right>{$usages[usage].files}&nbsp;&nbsp;</td>
<td align=right>{$usages[usage].filesize}&nbsp;&nbsp;</td>
<td align="center">{if $usages[usage].canClean}<a href="javascript:cleanupFolder('{$usages[usage].folder}')">{i18n}cleanup{/i18n}</a>{else}{i18n}N/A{/i18n}{/if}&nbsp;&nbsp;</td>
</tr>
{/if}
{/section}
<tr><td colspan=4><hr></tr>
</table>