Код |
---|
<?if(is_array($arProperty["DISPLAY_VALUE"])):?> <?=implode("/", $arProperty["DISPLAY_VALUE"]);?> <?else:?> <?=$arProperty["DISPLAY_VALUE"];?> <?endif?> |
Код |
---|
<?foreach($arResult["ITEMS"] as $arElement):?> <table> <?foreach($arElement["DISPLAY_PROPERTIES"] as $pid=>$arProperty):?> <?if($arProperty["DISPLAY_VALUE"]):?> <tr> <td> <?=$arProperty["NAME"]?> </td> <td> <?if(is_array($arProperty["DISPLAY_VALUE"])):?> <?=implode("/", $arProperty["DISPLAY_VALUE"]);?> <?else:?> <?=$arProperty["DISPLAY_VALUE"];?> <?endif?> </td> </tr> <?endif?> <?endforeach;?> </table> <?endforeach;?> |