Mendapatkan kode dan nama Store di Magento dengan PHP

Kegunaan kode toko atau nama toko di Magento banyak sekali, salah satu contohnya adalah untuk membedakan bahasa dari masing-masing toko yang kita miliki di Magento.
1133  
       

Kegunaan kode toko atau nama toko di Magento banyak sekali, salah satu contohnya adalah untuk membedakan bahasa dari masing-masing toko yang kita miliki di Magento. Biasanya tidak semua alih bahasa di Magento berjalan dengan mulus. Seperti CMS pada umumnya Magento sangat bergantung terhadap Themes yang dijalankan. Ini berarti sedikit banyaknya kita harus melakukan penyesuaian terkait alih bahasa itu.

Untuk mendapatkan kode toko atau nama toko di Magento tidaklah sulit. Cukup panggil saja kode dibawah ini didalam skrip php anda.

// 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();

Demikian.

Mungkin anda juga tertarik:

Leave a Reply

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>