getContent()在Prestashop模块中没有显示配置链接

时间:2016-06-20 12:10:42

标签: php prestashop

我正在编写一个Prestashop模块,我正在尝试创建配置页。

按照文档和阅读其他模块,我已经结束了尝试此片段进行测试:

crc = crc ^ mask_sign_bit(byte)

如果我安装模块,Prestashop会将我重定向到这样的页面

Config page working

哪个是对的。但是在管理员Prestashop中没有生成配置链接。

configuration link not showing

问题是:显示该链接需要做些什么?

1 个答案:

答案 0 :(得分:1)

在您模块的<?xml version="1.0" encoding="utf-8"?> <resources> <color name="colorPrimary">#f44336</color> <color name="colorSecondary">#2f76b6</color> </resources> 文件中,有一个config.xml选项:

is_configurable

它也可以从模块构造函数配置:

<?xml version="1.0" encoding="UTF-8" ?>
<module>
    <name>blocktopmenu</name>
    <displayName><![CDATA[Top horizontal menu]]></displayName>
    <version><![CDATA[2.2.3]]></version>
    <description><![CDATA[Adds a new horizontal menu to the top of your e-commerce website.]]></description>
    <author><![CDATA[PrestaShop]]></author>
    <tab><![CDATA[front_office_features]]></tab>
    <is_configurable>1</is_configurable>
    <need_instance>1</need_instance>
    <limited_countries></limited_countries>
</module>