• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/converter/converter.php
  • Класс: BitrixCalendarSyncOffice365ConverterConverter
  • Вызов: Converter::prepareDateTimezone
private function prepareDateTimezone(Office365DtoDateTimeDto $dateDto, string $originalTZ = null): BitrixCalendarCoreBaseDateTimeZone
{
	if ($originalTZ)
	{
		$original = Util::prepareTimezone($originalTZ);

		return new BitrixCalendarCoreBaseDateTimeZone($original);
	}
	$tz = Util::isTimezoneValid($dateDto->timeZone ?? '')
		? $dateDto->timeZone
		: $this->getDefaultTimezone();

	return new BitrixCalendarCoreBaseDateTimeZone(
		new DateTimeZone($tz)
	);
}