Skip to content

Instantly share code, notes, and snippets.

@s2ar
Last active April 23, 2016 08:25
Show Gist options
  • Save s2ar/85b3a967a254b26fa49b to your computer and use it in GitHub Desktop.
Save s2ar/85b3a967a254b26fa49b to your computer and use it in GitHub Desktop.
bitrix.select sections
<?php
$aFilter = Array('IBLOCK_ID'=>9, 'DEPTH_LEVEL'=>1,"UF_SECTION_REF" => $sectionID);
$rSect = CIBlockSection::GetList(Array('SORT'=>'ASC'), $aFilter, false, array('UF_*'));
$aSections = array();
while($aSect = $rSect->GetNext()) {
$aSections[] = $aSect;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment