• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/reportproductlist.php
  • Класс: BitrixCatalogComponentReportProductList
  • Вызов: ReportProductList::checkModules
protected function checkModules(): bool
{
	if (!Loader::includeModule('catalog'))
	{
		$this->arResult['ERROR_MESSAGES'][] = 'Module Catalog is not installed';

		return false;
	}

	if (!Loader::includeModule('report'))
	{
		$this->arResult['ERROR_MESSAGES'][] = 'Module Report is not installed';

		return false;
	}

	return true;
}