• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/ui.php
  • Класс: BitrixTasksUI
  • Вызов: UI::getHumanDateTimeFormat
static function getHumanDateTimeFormat(int $timestamp): string
{
	$dateFormat = static::getHumanDateFormat($timestamp);
	$timeFormat = static::getHumanTimeFormat($timestamp);

	return $dateFormat . ($timeFormat ? ", {$timeFormat}" : '');
}