Код |
---|
<?foreach($arResult["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?> <?=$arProperty["NAME"]?>: <?if(is_array($arProperty["DISPLAY_VALUE"])):?> <?=implode(" / ", $arProperty["DISPLAY_VALUE"]);?> <?else:?> <?if($arProperty["CODE"]=="codemail"):?> <a href="mailto:<?=$arProperty["DISPLAY_VALUE"];?>"><?=$arProperty["DISPLAY_VALUE"];?></a> <?else:?> <?=$arProperty["DISPLAY_VALUE"];?> <?endif?> <?endif?> <br /> <?endforeach;?> |