Модуль Prestashop не отображается в списке - PullRequest
0 голосов
/ 14 марта 2019

Я использую Prestashop 1.7.5.2.
Это мой код:

<?php
if (!defined('_PS_VERSION_')) {
    exit;
}

class plugin extends Module {
    public function __construct()
    {
        $this->name = 'plugin';
        $this->tab = 'front_office_features';
        $this->version = 1.0;
        $this->author = 'Firstname Lastname';
        $this->need_instance = 1;


        $this->displayName = $this->l('Module');
        $this->description = $this->l('ASDFGHJKL');
        parent::__construct();
    }

    public function install()
    {
        if (parent::install() == false) {
            return false;
        }
        return true;
    }
    public function uninstall()
    {
        if (!parent::uninstall()) {
            Db::getInstance()->Execute('DELETE FROM `'._DB_PREFIX_.'mymodule`');
        }
        parent::uninstall();
    }
}
?>

Файл называется plugin.php и находится в /modules/plugin.

.

Когда я открываю диспетчер модулей, модуль не появляется. В любой категории.

Чего мне не хватает?

1 Ответ

0 голосов
/ 15 марта 2019

Решил это.Помните, что вам нужно установить плагин в разделе модули -> модуль -> каталог модулей и нажать кнопку установки

...