• Модуль: catalog
  • Путь к файлу: ~/bitrix/modules/catalog/lib/component/storeamount.php
  • Класс: BitrixCatalogComponentStoreAmount
  • Вызов: StoreAmount::getStoresInfo
protected function getStoresInfo(array $storeIds): array
{
	if (count($storeIds) > 0)
	{
		return StoreTable::getList([
				'select' => ['ID', 'TITLE'],
				'filter' => [
					'=ID' => $storeIds,
					'ACTIVE' => 'Y',
				],
			])
			->fetchAll()
		;
	}

	return [];
}