我正在使用magento admin中的模块,我希望在管理产品,管理类别,网格编辑表单的系统配置中显示scope selector
。
任何人都可以帮助我如何添加和store values in database specific to the scope selected
?
答案 0 :(得分:1)
通过搜索商店切换器,您可以看到Magento通过在布局文件中添加它来添加它:
<your_layout_handle_here>
<reference name="left">
<block type="adminhtml/store_switcher" name="store_switcher" template="store/switcher.phtml" />
</reference>
</your_layout_handle_here>
答案 1 :(得分:0)
如果不显示确认警报,请在此块中添加操作,如核心
<block type="adminhtml/store_switcher" name="store_switcher" before="-">
<action method="setUseConfirm"><params>0</params></action>
</block>