如何在magento中获得Store徽标和图像alt

时间:2014-12-08 05:07:11

标签: magento magento-1.9

我想通过商店ID获取商店标识和商标alt标签以及商店的主页URL。我使用下面的代码,但它不适合我。

            $storeid=1;

            $store['id']=$collections->getStore_id();   
            $store['image']=Mage::app()->getStore($storeid)->getLogoSrc();
            $store['alt']=Mage::app()->getStore($storeid)->getLogoAlt();
            $store['storeurl']=Mage::app()->getStore($storeid)->getHomeUrl();

作为回报我正在

            [id] => 1
            [name] => Default Store View
            [image] => 
            [alt] => 
            [storeurl] => 

让我知道我在哪里做错了或如何从商店ID获取商店徽标和徽标alt标签和主页网址。

1 个答案:

答案 0 :(得分:2)

我找到了解决方法。我们可以用下面的代码得到这个,所有细节都存储在表core_config_data中,所以你使用这个

  $logo_src =   Mage::getStoreConfig('design/header/logo_src', $store_id)


  $logo_alt =   Mage::getStoreConfig('design/header/logo_alt', $store_id)