<?foreach($arItem['DISPLAY_PROPERTIES']['IMAGES']['VALUE'] as $id => $img):?>
<?
if ($img){
$file = CFile::ResizeImageGet(CFile::MakeFileArray($_SERVER["DOCUMENT_ROOT"].'/'.$img), array('width' => '150', 'height' => '100'), BX_RESIZE_IMAGE_PROPORTIONAL_ALT, true);
if ($file):?>
<a href="<?=$arItem['DETAIL_PAGE_URL']?>" title="<?=$arItem["NAME"]?>">
<img src="<?=$file['src']?>" width="<?=$file['width']?>" height="<?=$file['height']?>" alt="" title="<?=$arItem['NAME']?>" />
</a>
<?endif;
}
?>
<?endforeach;?> |