Skip to content

Instantly share code, notes, and snippets.

@karpovets
Created December 3, 2015 08:46
Show Gist options
  • Save karpovets/6b6a30af07acfaac9da3 to your computer and use it in GitHub Desktop.
Save karpovets/6b6a30af07acfaac9da3 to your computer and use it in GitHub Desktop.
Битрикс, получить ID Раздела, и вывести его название
$arResult['SECTION_ID'] = CIBlockFindTools::GetSectionID( $arResult['VARIABLES']['SECTION_ID'], $arResult['VARIABLES']['SECTION_CODE'], array('IBLOCK_ID' => $arParams['IBLOCK_ID']) );
$res = CIBlockSection::GetByID($arResult['SECTION_ID']);
if($ar_res = $res->GetNext())
echo $ar_res['NAME'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment