Magento的多店铺功能非常强大,通过多店铺功能,我们可以在一个Magento应用当中创建在外观上看来完全不相关联的多个店铺,并且可以绑定不同的域名。在Magento的开发当中,经常需要获取当前所在店铺的一些相关信息,例如店铺id,店铺名称及当前店铺所属Website的ID值。通过Magento的Mage类,我们可以获取到关于店铺的所有信息。 //获取店铺对象 Mage::app()->getStore(); //获取当前店铺ID Mage::app()->getStore()->getStoreId(); //获取当前店铺Code,该Code在创建店铺时填写 Mage::app()->getStore()->getCode(); //获取当前店铺所属的Website ID Mage::app()->getStore()->getWebsiteId(); //获取当前店铺的Name Mage::app()->getStore()->getName(); //获取当前店铺的状态 Mage::app()->getStore()->getIsActive(); //获取当前店铺的URL Mage::app()->getStore()->getHomeUrl();(责任编辑:最模板) |