• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/DepartmentStructure.php
  • Класс: BitrixIntranetDepartmentStructure
  • Вызов: DepartmentStructure::getInfoblockId
private function getInfoblockId(): ?int
{
	if (($iblockId = MainConfigOption::get('intranet', 'iblock_structure', null)) === null)
	{
		$iblockId = MainConfigOption::get('main', 'wizard_departament', null, $this->siteId);
	}
	return $iblockId ? (int) $iblockId : null;
}