• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/component/itemlist.php
  • Класс: Bitrix\Crm\Component\ItemList
  • Вызов: ItemList::getCounterPanelViewHtml
protected function getCounterPanelViewHtml(): ?string
{
	if ($this->counterPanelViewHtml === null)
	{
		ob_start();

		$this->getApplication()->IncludeComponent(
			'bitrix:crm.entity.counter.panel',
			'',
			[
				'ENTITY_TYPE_NAME' => $this->arResult['entityTypeName'],
				'EXTRAS' => $this->arResult['categoryId'] > 0 ? ['CATEGORY_ID' => $this->arResult['categoryId']] : [],
				'PATH_TO_ENTITY_LIST' => '/crm/type/' . $this->entityTypeId,
				'RETURN_AS_HTML_MODE' => true
			]
		);
		$this->counterPanelViewHtml = ob_get_clean();
	}
	return $this->counterPanelViewHtml;
}