groupRepository = $groupRepository; $this->storeRepository = $storeRepository; } /** * {@inheritdoc} */ public function getAllowedStoreIds($scopeCode) { $stores = []; foreach ($this->storeRepository->getList() as $store) { if ($store->isActive() && (int) $store->getGroupId() === $scopeCode) { $stores[] = $store->getId(); } } return $stores; } /** * {@inheritdoc} */ public function getDefaultStoreId($scopeCode) { return $this->groupRepository->get($scopeCode)->getDefaultStoreId(); } }