我想在 prestashop 中创建一个自定义模块,但它没有显示在后台的模块选项卡中。
我创建了一个非常基本的测试模块,但即使这样也没有出现在后台。
我在文件夹中有一个 text.php 文件:modules/test 这是文件的代码:
<?php
if (!defined('_PS_VERSION_'))
exit;
class Test extends Module
{
public function __construct()
{
parent::__construct();
$this->name = 'Test';
$this->tab = 'Test';
$this->version = 1.0;
$this->author = 'Test';
$this->need_instance = 0;
$this->displayName = 'TEST';
$this->description = 'TEST';
}
public function install()
{
return (parent::install());
}
}
据我了解,这足以让基本模块显示在后台的模块选项卡中。
知道可能出了什么问题吗?