• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/integration/view/base.php
  • Класс: BitrixRestIntegrationViewBase
  • Вызов: Base::externalizeDateTimeValue
protected function externalizeDateTimeValue($value): Result
{
	$r = new Result();

	$time = strtotime($value);
	$value = ($time) ? BitrixMainTypeDateTime::createFromTimestamp($time):'';

	if($r->isSuccess())
	{
		$r->setData([$value]);
	}

	return $r;
}