• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/helper/ui/datetime.php
  • Класс: BitrixSocialnetworkHelperUIDateTime
  • Вызов: DateTime::getDateValue
static function getDateValue(?BitrixMainTypeDateTime $value = null): string
{
	if ($value === null)
	{
		return '';
	}

	$timestamp = static::getDateTimestamp($value);
	$format = static::getHumanDateTimeFormat($timestamp);

	return static::formatDateTime($timestamp, $format);
}