• Модуль: market
  • Путь к файлу: ~/bitrix/modules/market/lib/ListTemplates/Category.php
  • Класс: BitrixMarketListTemplatesCategory
  • Вызов: Category::getAppsCount
private function getAppsCount(): int
{
	if (!isset(Categories::get()['ITEMS'])) {
		return 0;
	}

	foreach (Categories::get()['ITEMS'] as $item) {
		if ($item['CODE'] === $this->categoryCode) {
			return (int)$item['CNT'];
		}
	}

	return 0;
}