在Magento中添加管理配置选项卡图像

时间:2013-04-11 16:13:12

标签: image magento configuration magento-1.7 configurationsection

我想在

中添加图片

管理员面板 - >系统 - >配置 - > “左侧菜单选项卡”(此处)

看看下面的图片我想做什么:

enter image description here

任何解决方案.. ??

先谢谢。

2 个答案:

答案 0 :(得分:6)

在system.xml中

<?xml version="1.0"?>
<config>
    <tabs>
        <magepal translate="label" module="magepal">
            <label><![CDATA[<div style="position: absolute;"><img id="magepal_block" src="" alt="" border="0" /></div>&nbsp;<script>$('magepal_block').src = SKIN_URL + "images/magepal/magepal.png";</script>]]></label>
            <sort_order>400</sort_order>
        </magepal>
    </tabs>

将图像放入(尺寸158 x 18)

  

/skin/adminhtml/default/default/images/magepal/magepal.png

答案 1 :(得分:3)

一个更清洁的解决方案是将css类添加到选项卡,然后使用adminhtml布局定义中定义的css文件进行样式化。

<?xml version="1.0"?>
<config>
    <tabs>
        <magepal translate="label" module="magepal">
            <label>MagePal</label>
            <sort_order>400</sort_order>
            <class>admin-system-config-magepal</class>
        </magepal>
    </tabs>
    ....