36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
|
|
<!--
|
||
|
|
//
|
||
|
|
// Script created by Philip Arkcoll, modified by Rene Kanzler <rk (at) cosmomill (dot) de>
|
||
|
|
// modified by Aart-Jan Boor, Wemag Advisering, www.wemag.nl
|
||
|
|
//
|
||
|
|
-->
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<li class="treenode active">
|
||
|
|
{capture assign=iID}{$oFolder->getId()}{/capture}
|
||
|
|
|
||
|
|
<a class="pathnode" id="{$iID}" onClick="nodeClick(this);" > </a>
|
||
|
|
|
||
|
|
<span class="folderMenu" id="{$iID}"><span class="contenttype folder"><a href="{ktLink base="browse.php" query="fFolderId=`$iID`"}" id="f{$iID}">{$oFolder->getName()}</a></span></span>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<ul>
|
||
|
|
{foreach from=$folders item=oFolderItem}
|
||
|
|
{$context->renderFolder($oFolderItem,false)}
|
||
|
|
{/foreach}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
{foreach from=$documents item=oDocumentItem}
|
||
|
|
{capture assign=iID}{$oDocumentItem->getId()}{/capture}
|
||
|
|
|
||
|
|
<li>
|
||
|
|
<span class="documentMenu" id="{$iID}"><span class="contenttype {$context->_mimeHelper($oDocumentItem->getMimeTypeId())}"><a href="{ktLink base="action.php" query="kt_path_info=ktcore.actions.document.displaydetails&fDocumentId=`$iID`"}" id="d{$iID}">{$oDocumentItem->getName()}</a></span></span></li>
|
||
|
|
{/foreach}
|
||
|
|
</ul>
|
||
|
|
</li>
|