• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/reportstorelist.php
  • Класс: BitrixCatalogComponentReportStoreList
  • Вызов: ReportStoreList::getGridId
protected function getGridId(): string;

public function executeComponent()
{
	if (!Loader::includeModule('catalog') || !self::checkDocumentReadRights())
	{
		$this->arResult['ERROR_MESSAGES'][] = Loc::getMessage('CATALOG_REPORT_STORE_LIST_NO_READ_RIGHTS_ERROR');
		$this->includeComponentTemplate();

		return;
	}

	$this->arResult['GRID'] = $this->getGridData();
	$this->arResult['GRID_FILTER'] = $this->getGridFilter();
	$this->arResult['PRODUCT_LIST_SLIDER_URL'] = $this->getProductListComponentUrl();

	$this->includeComponentTemplate();
}