サーチ…


現在のストアビューのフロントエンド名を取得する

Mage::app()->getStore()->getFrontendName();

現在の店舗IDを取得する

Mage::app()->getStore()->getStoreId();

現在の店舗コードを取得する

Mage::app()->getStore()->getCode();

これは、店舗コードを返します。たとえば、店頭には 'en'が、英語用に設定され、数字のIDではなく 'en'と呼ばれます。

ストアビューが有効になっているかどうかを判断する

Mage::app()->getStore()->getIsActive();

現在の店舗のウェブサイトIDを取得する

Mage::app()->getStore()->getWebsiteId();

現在の店舗モデルを取得する

Mage::app()->getStore();

Mage_Core_Model_Storeインスタンスを返します。

店舗のグループ名を取得する

Mage::app()->getStore()->getGroup()->getName()

Magentoのすべてのショップを入手する

Mage::app()->getStores();

Mage_Core_Model_Storeモデルの配列を返します。



Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow