Hi,
I need to display a combo box while uploading the logo images of products,this is so that I can upload different images according to the store language or store view.So that different image is displayed while selecting different language.
I tried using :
$lang= Mage::app()->getWebsite()->getStores();
$languages = array();
foreach ($lang as $store) {
$languages[$store->getId()] = $store->getCode();
}
return $languages;
which works fine while displaying in home page,in any template file, but not in the admin part where I need it.
