Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Created November 5, 2015 18:26
Show Gist options
  • Save d1i1m1o1n/403d4f5209db62eb11f2 to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/403d4f5209db62eb11f2 to your computer and use it in GitHub Desktop.
Bitrix template with rows
<?foreach($arResult["ITEMS"] as $cell=>$arItem):?>
<?
$this->AddEditAction($arItem['ID'], $arItem['EDIT_LINK'], CIBlock::GetArrayByID($arItem["IBLOCK_ID"], "ELEMENT_EDIT"));
$this->AddDeleteAction($arItem['ID'], $arItem['DELETE_LINK'], CIBlock::GetArrayByID($arItem["IBLOCK_ID"], "ELEMENT_DELETE"), array("CONFIRM" => GetMessage('CT_BNL_ELEMENT_DELETE_CONFIRM')));
?>
<?if($cell%$arParams["LINE_ELEMENT_COUNT"] == 0):?>
<p>
<?endif;?>
<img id="<?=$this->GetEditAreaId($arItem['ID']);?>" src="<?=$arItem["PREVIEW_PICTURE"]["SRC"]?>" alt="<?=$arItem["NAME"]?>"/>
<?$cell++;
if($cell%$arParams["LINE_ELEMENT_COUNT"] == 0):?>
</p>
<?endif?>
<?endforeach;?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment