• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/statistics/statisticentrymanager.php
  • Класс: Bitrix\Crm\Statistics\StatisticEntryManager
  • Вызов: StatisticEntryManager::getEntries
static function getEntries()
{
	if(self::$entries === null)
	{
		self::$entries = array();

		self::addEntry(DealSumStatisticEntry::getCurrent());
		self::addEntry(LeadSumStatisticEntry::getCurrent());
		self::addEntry(InvoiceSumStatisticEntry::getCurrent());
	}
	return self::$entries;
}