<?
if (is_array($arResult['DISPLAY_PROPERTIES']) && count($arResult['DISPLAY_PROPERTIES']) > 0):
?>
<div class="catalog-detail-properties">
<h4><?=GetMessage('CATALOG_PROPERTIES')?></h4>
<div class="catalog-detail-line"></div>
<?foreach($arResult["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?>
<div class="catalog-detail-property">
<span><?=$arProperty["NAME"]?></span>
<b>
<?
if(is_array($arProperty["DISPLAY_VALUE"])):
echo implode(" / ", $arProperty["DISPLAY_VALUE"]);
elseif($pid=="MANUAL"):
?>
<a href="<?=$arProperty["VALUE"]?>"><?=GetMessage("CATALOG_DOWNLOAD")?></a>
<?
else:
echo $arProperty["DISPLAY_VALUE"];
endif;
?>
</b>
</div>
<?endforeach;?>
</div>
<?endif;?> |