• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/format/date.php
  • Класс: Bitrix\Crm\Format\Date
  • Вызов: Date::getDateFormat
public function getDateFormat(?string $type)
{
	$lang = 'ru';
	if (LANGUAGE_ID === 'de' || LANGUAGE_ID === 'en')
	{
		$lang = LANGUAGE_ID;
	}

	return ($type === null ? $this->dateFormats : $this->dateFormats[$type][$lang]);
}