If you want to get store information in Magento? To get information about the current store from anywhere in Magento, follow the below steps get store information:
1 2 | <?php $store = Mage::app()->getStore(); |
This will give you a Mage_Core_Model_Store object, which has some of the information you need:
1 2 | <?php $name = $store->getName(); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.