• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/mailinvitation/helper.php
  • Класс: BitrixCalendarICalMailInvitationHelper
  • Вызов: Helper::getDateByParserProperty
static function getDateByParserProperty(?ParserPropertyType $date): ?Date
{
	if ($date !== null)
	{
		return $date->getParameterValueByName('tzid') !== null
			? self::getIcalDateTime($date->getValue(), $date->getParameterValueByName('tzid'))
			: self::getIcalDate($date->getValue())
		;
	}

	return null;
}