<?
$res = CIBlockElement::GetList(
array(),
array("IBLOCK_ID"=>28, "SECTION_ID" => intval($_REQUEST['SECTION_ID'])),
false,
false,
array("ID","NAME", "PREVIEW_TEXT", "PROPERTY_XXX")
);
while($ob = $res->GetNextElement())
{
$arButtons = CIBlock::GetPanelButtons(
$arItem["IBLOCK_ID"],
$arItem["ID"],
0,
array("SECTION_BUTTONS"=>false, "SESSID"=>false)
);
$arItem["EDIT_LINK"] = $arButtons["edit"]["edit_element"]["ACTION_URL"];
$arItem["DELETE_LINK"] = $arButtons["edit"]["delete_element"]["ACTION_URL"];
?>
<div class=audiolist>
<h3><?=$arItem['NAME']?></h3
</div>
<?}?>
|