• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/lib/helper/ui/datetime.php
  • Класс: BitrixSocialnetworkHelperUIDateTime
  • Вызов: DateTime::getHumanDateFormat
static function getHumanDateFormat(int $timestamp): string
{
	$culture = Context::getCurrent()->getCulture();

	if (date('Y') !== date('Y', $timestamp))
	{
		return $culture->getLongDateFormat();
	}

	return $culture->getDayMonthFormat();
}