Magento检查产品是否在多个站点中可用

时间:2012-04-04 15:00:57

标签: php zend-framework magento

我有一个有多个网站和多个商店的magento设置,我想检查商店是否包含相同的产品程序。因为我正在为它编写模块,所以我重写了产品块,以便我可以毫无问题地访问$this->product()->getid()。我检查了网站的列表($ this-> product()),但我找不到它。知道我是怎么开始的吗?

1 个答案:

答案 0 :(得分:5)

你试过吗?

$this->product()->getWebsiteIds();

它会为您提供一系列产品处于活动状态的网站ID。

您也可以这样做,

$this->product()->getStoreIds();