1
如何在前端顯示自定義選擇器,以便它可以像存儲切換器和/或語言切換器一樣工作。 在左側這裏類似「面板工具」選項: http://demoleotheme.com/casper/index.php/?___store=defaultMagento - 在前端顯示自定義選擇器
主類
class Tm_StoreSettings_Model_Source_Types_Producttype
{
public function toOptionArray()
{
return array(
array('value' => 'layout_1', 'label'=>Mage::helper('adminhtml')->__('Layout 1')),
array('value' => 'layout_2', 'label'=>Mage::helper('adminhtml')->__('Layout 2')),
array('value' => 'layout_3', 'label'=>Mage::helper('adminhtml')->__('Layout 3'))
);
}
}