This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/file/file_list.tpl
2008-11-26 14:50:40 -08:00

19 lines
555 B
Smarty

{ $method->exe("file","category_list")}
{ if ($method->result == FALSE) } { $block->display("core:method_error") }
{/if}
{if $file_category_display == true}
{foreach from=$file_category_results item=record key=key}
<table width="90%" border="0" cellpadding="0">
<tr>
<td>
{assign var="desc" value=$record.description}
<font face="Verdana, Arial, Helvetica, sans-serif" size="2">
<a href="{$URL}?_page=file:list&id={$record.id}">
<u>{$record.name}
</u></a>
</font></td>
</tr>
</table>
{/foreach}
<br>
{/if}