• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/repository/departmentrepository.php
  • Класс: BitrixTimemanRepositoryDepartmentRepository
  • Вызов: DepartmentRepository::getBaseDepartmentId
public function getBaseDepartmentId()
{
	if (!empty(CIntranetUtils::GetStructure()['TREE'][0]))
	{
		$depId = reset(CIntranetUtils::GetStructure()['TREE'][0]);
		if ($depId > 0)
		{
			return (int)$depId;
		}
	}
	return null;
}