• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/grid/panel/ui/actions/item/elementgroup/addtosectiongroupchild.php
  • Класс: BitrixIblockGridPanelUIActionsItemElementGroupAddToSectionGroupChild
  • Вызов: AddToSectionGroupChild::getElementSectionsIds
private function getElementSectionsIds(int $elementId): array
{
	$result = [];

	$rows = CIBlockElement::GetElementGroups($elementId, true, ['ID']);
	while ($row = $rows->Fetch())
	{
		$result[] = (int)$row['ID'];
	}

	return $result;
}