17 $dropdownSectionItems = [];
21 $dropdownSectionItems[] = [
22 'NAME' => Loc::getMessage(
'IBLOCK_GRID_PANEL_UI_ACTIONS_ITEM_ELEMENT_GROUP_SECTION_TREE_TOP_LEVEL_NAME'),
27 if (!isset($this->sectionTree))
29 $this->sectionTree = [];
31 $rows = CIBlockSection::getTreeList(
41 while ($row =
$rows->Fetch())
43 $margin = max((
int)$row[
'DEPTH_LEVEL'], 1);
44 $this->sectionTree[] = [
45 'NAME' => str_repeat(
' . ',
$margin) . $row[
'NAME'],
46 'VALUE' => (int)$row[
'ID'],
52 array_push($dropdownSectionItems, ...$this->sectionTree);
55 'TYPE' => Types::DROPDOWN,
57 'NAME' =>
'section_id',
58 'ITEMS' => $dropdownSectionItems,