• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/CustomSection/Manager.php
  • Класс: BitrixIntranetCustomSectionManager
  • Вызов: Manager::getCustomSections
protected function getCustomSections(): array
{
	$collection = $this->dataManager::getList([
		'select' => ['*', 'PAGES']
	])->fetchCollection();

	$sections = [];
	foreach ($collection as $entityObject)
	{
		$sections[] = $this->assembler::constructCustomSectionFromEntityObject($entityObject);
	}

	return $sections;
}