foreach($arISection as $id):
$Res3=CIBlockSection::GetByID($id);
$arRes3=$Res3->GetNext();
$arSection3=Array("ID"=>$arRes3['ID'],"NAME"=>$arRes3['NAME']);
$Res2=CIBlockSection::GetByID($arRes3['IBLOCK_SECTION_ID']);
$arRes2=$Res2->GetNext();
$arSection2=Array("ID"=>$arRes2['ID'],"NAME"=>$arRes2['NAME']);
$arSection2['PARENT'][]=$arSection3;
$Res1=CIBlockSection::GetByID($arRes2['IBLOCK_SECTION_ID']);
$arRes1=$Res1->GetNext();
$arSection1=Array("ID"=>$arRes1['ID'],"NAME"=>$arRes1['NAME'],"PARENT"=>$arSection2);
$arNavSection[]=$arSection1;
endforeach; |