• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/report/handler/salesdynamics/basegraph.php
  • Класс: Bitrix\Crm\Integration\Report\Handler\SalesDynamics\BaseGraph
  • Вызов: BaseGraph::formatDateForTitle
protected function formatDateForTitle(Date $date)
{
	switch ($this->getDateGrouping())
	{
		case static::GROUP_MONTH:
			$format = "f Y";
			break;
		default:
			$format = Context::getCurrent()->getCulture()->getLongDateFormat();
	}

	return FormatDate($format, $date);

}