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