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

	return ($object ? $this->assembler::constructCustomSectionFromEntityObject($object) : null);
}