magento get current variable 获取当前的通用变量

来源:互联网 发布:淘宝精选怎么进去 编辑:程序博客网 时间:2024/05/29 03:42
// 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();
//得到当前category id
$layer = Mage::getSingleton('catalog/layer');
$_category = $layer->getCurrentCategory();
$currentCategoryId= $_category->getId();


//根据儿子找到父亲
$parentIds = Mage::getResourceSingleton('catalog/product_type_configurable')->getParentIdsByChild($_product->getId());
$_product = Mage::getModel('catalog/product')->load($parentIds[0]);
0 0
原创粉丝点击