• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/ical/icsbuilder.php
  • Класс: BitrixCalendarICalIcsBuilder
  • Вызов: IcsBuilder::formatDateTimeValue
static function formatDateTimeValue($timestamp)
{
	$dt = new DateTime();
	if ($timestamp)
	{
		$dt->setTimestamp($timestamp);
	}
	return $dt->format(self::DATETIME_FORMAT);
}