• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/integration/report/handler/base.php
  • Класс: BitrixVoximplantIntegrationReportHandlerBase
  • Вызов: Base::getDateFormatForGrid
protected function getDateFormatForGrid(): ?string
{
	switch ($this->getDateGrouping())
	{
		case static::GROUP_DAY:
			return Context::getCurrent()->getCulture()->getShortDateFormat();
		case static::GROUP_MONTH:
			return "f Y";
		default:
			return Context::getCurrent()->getCulture()->getLongDateFormat();
	}
}