• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_sync.php
  • Класс: CCalendarSync
  • Вызов: CCalendarSync::getTimestampWithUserOffset
static function getTimestampWithUserOffset($userId): Closure
{
	$offset = CTimeZone::GetOffset($userId, true);
	return static function($date) use ($offset) {
		return $date
			? CCalendar::Timestamp($date, false, true) - $offset
			: null;
	};
}