<?if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();?>
<div class="catalog-section-list">
<div class="menu-sitemap-tree">
<ul>
<?
$CURRENT_DEPTH=$arResult["SECTION"]["DEPTH_LEVEL"]+1;
$strTitle = "";
<?$previousLevel = 0;foreach($arResult["SECTIONS"] as $arSection):?>
<?if ($previousLevel && $arItem["DEPTH_LEVEL"] < $previousLevel):?>
<?=str_repeat("</ul></li>", ($previousLevel - $arSection["DEPTH_LEVEL"]));?>
<?endif?>
<li class="close">
<div class="folder" onClick="OpenMenuNode(this)"></div>
<div class="item-text"<?$link = '<a href="'.$arSection["SECTION_PAGE_URL"].'">'.$arSection["NAME"].$count.'</a>';?></div>
<ul>
<?if ($arSection["DEPTH_LEVEL"] > "0"):?>
<li>
<div class="page"></div>
<div class="item-text"><?$link = '<a href="'.$arSection["SECTION_PAGE_URL"].'">'.$arSection["NAME"].$count.'</a>';?></div>
</li>
<?endif?>
<?endif?>
<?$previousLevel = $arSection["DEPTH_LEVEL"];?>
<?endforeach?>
<?if ($previousLevel > 1)://close last item tags?>
<?=str_repeat("</ul></li>", ($previousLevel-1) );?>
<?endif?>
</ul>
</div>
<?endif?> |