• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/integration/ui/entityselector/departmentprovider.php
  • Класс: BitrixIntranetIntegrationUIEntitySelectorDepartmentProvider
  • Вызов: DepartmentProvider::getRootDepartmentId
static function getRootDepartmentId(): int
{
	static $rootDepartmentId = null;

	if ($rootDepartmentId === null)
	{
		$rootDepartmentId = (int)Option::get('main', 'wizard_departament', false, SITE_ID);
	}

	return $rootDepartmentId;
}