5 min read

Magento get store by storecode

Magento get store by storecode

Last modified

function _getStoreByCode($storeCode)
{
    $stores = array_keys(Mage::app()->getStores());
    foreach ($stores as $id)
    {
        $store = Mage::app()->getStore($id);
        if ($store->getCode() == $storeCode)
        {
            return $store;
        }
    }
    return false;
}