• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/notification/userrepository.php
  • Класс: BitrixTasksInternalsNotificationUserRepository
  • Вызов: UserRepository::getUserTimeZoneOffset
public function getUserTimeZoneOffset(int $userId): int
{
	if (isset($this->timeZoneCache[$userId]))
	{
		return $this->timeZoneCache[$userId];
	}

	$this->timeZoneCache[$userId] = BitrixTasksUtilUser::getTimeZoneOffset($userId);

	return $this->timeZoneCache[$userId];
}