-1

我正在为 x-cart 创建一个模块。我正在关注本教程

http://kb.x-cart.com/display/XDD/Step+1+-+creating+simplest+module

该模块显示在管理面板的模块列表中,但它说The module is not compatible with your X-Cart version.

我的 x-cart 版本是 5.2.4 。请指教。

4

1 回答 1

2

抱歉,这是文章的问题。您需要将模块的 getMajorVersion() 方法定义为:

public static function getMajorVersion()
{
    return '5.2';
}

不是文章中定义的:

public static function getMajorVersion()
{
    return '5.1';
}

我已经更正了文档,它不应该成为将来参考的问题。

谢谢!

托尼

于 2015-05-19T14:53:42.423 回答