prestashopでカスタムモジュールを作成したいのですが、バックオフィスのmodules-tabに表示されません。
非常に基本的なテストモジュールを作成しましたが、これでもバックオフィスに表示されません。
フォルダに単一の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());
}
}
私が理解している限り、これは基本モジュールがバックオフィスのモジュールタブに表示されるのに十分です。
何が間違っているのでしょうか?