• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/reportproductlist.php
  • Класс: BitrixCatalogComponentReportProductList
  • Вызов: ReportProductList::getStoreTitle
protected function getStoreTitle(): string
{
	$storeData = BitrixCatalogStoreTable::getList([
		'select' => ['TITLE'],
		'filter' => ['=ID' => $this->storeId],
		'limit' => 1,
	])->fetch();

	return $storeData['TITLE'] ?? '';
}