Skip to content

Instantly share code, notes, and snippets.

@andresams
Created November 30, 2015 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andresams/77f00c80e8fa6e60447f to your computer and use it in GitHub Desktop.
Save andresams/77f00c80e8fa6e60447f to your computer and use it in GitHub Desktop.
Gets current store information from Magento. Store ID, store name, store status, store code, website id, store group id, store sort order, store locale, store home url
<?php
// Gets the current store's details
$store = Mage::app()->getStore();
// Gets the current store's id
$storeId = Mage::app()->getStore()->getStoreId();
// Gets the current store's code
$storeCode = Mage::app()->getStore()->getCode();
// Gets the current website's id
$websiteId = Mage::app()->getStore()->getWebsiteId();
// Gets the current store's group id
$storeGroupId = Mage::app()->getStore()->getGroupId();
// Gets the current store's name
$storeName = Mage::app()->getStore()->getName();
// Gets the current store's sort order
$storeSortOrder = Mage::app()->getStore()->getSortOrder();
// Gets the current store's status
$storeIsActive = Mage::app()->getStore()->getIsActive();
// Gets the current store's locale
$storeLocaleCode = Mage::app()->getStore()->getLocaleCode();
// Gets the current store's home url
$storeHomeUrl = Mage::app()->getStore()->getHomeUrl();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment