Domanda

I want to get store list sort by sort order. How to get it?

I just use this code. Which code i need to add ?

$stores = $this->storeManager->getStores();
È stato utile?

Soluzione

$stores = $this->storeManager->getStores();
uasort(
    $stores,
    function (\Magento\Store\Model\Store $storeA, \Magento\Store\Model\Store $storeB) {
        return $storeA->getSortOrder() <=> $storeB->getSortOrder();
    }    
);

Now the variable $stores should contain all your stores sorted by sort_order.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top