Skip to content

Instantly share code, notes, and snippets.

@theory-of-soul
Created January 25, 2016 19:40
Show Gist options
  • Save theory-of-soul/5d1934bb61f9571b5f8c to your computer and use it in GitHub Desktop.
Save theory-of-soul/5d1934bb61f9571b5f8c to your computer and use it in GitHub Desktop.
bitrix file-img
<?if (!empty($arResult["PROPERTIES"]["ANOTHER_LINKS"]["VALUE"])):?>
<?foreach($arResult["PROPERTIES"]["ANOTHER_LINKS"]["VALUE"] as $photo):
$arFileTmp = CFile::ResizeImageGet(
$photo,
array(
"width" => 280,
"height" => 180),
BX_RESIZE_IMAGE_EXACT,
false,
array()
);?>
<a href="<?=($arPhoto["DETAIL"]['DESCRIPTION'] ? $arPhoto["DETAIL"]['DESCRIPTION'] : $arResult["NAME"]) ?>">
<img src="<?=$arFileTmp["src"]?>" alt="<?=($arPhoto["DETAIL"]['DESCRIPTION'] ? $arPhoto["DETAIL"]['DESCRIPTION'] : $arResult["NAME"])?>"/>
</a>
<?endforeach?>
<?endif?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment