• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/service/worktime/notification/worktimenotificationservice.php
  • Класс: BitrixTimemanServiceWorktimeNotificationWorktimeNotificationService
  • Вызов: WorktimeNotificationService::getUser
private function getUser($userId)
{
	if (!array_key_exists($userId, $this->users))
	{
		$user = $this->findUser($userId);
		$this->users[$userId] = $user === false ? [] : $user;
	}
	return $this->users[$userId];
}