• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_webservice.php
  • Класс: CCalendarWebService
  • Вызов: CCalendarWebService::__makeDateTime
function __makeDateTime($ts = null)
{
	if (null === $ts)
		$ts = time();

	return date('Y-m-d', $ts).'T'.date('H:i:s', $ts).'Z';
}