1

I'm using Prestashop 1.7.5.2.
This is my code:

<?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();
    }
}
?>

File is named plugin.php and is located in /modules/plugin.

When I open module manager, the module does not appear. In any category.

What am I missing?

2
  • Which prestashop version are you using?
    – TheDrot
    Commented Mar 14, 2019 at 16:11
  • Updated the question @TheDrot
    – adamski234
    Commented Mar 15, 2019 at 9:26

1 Answer 1

3

Solved it. Remember that you need to actually install the plugin under modules -> module -> module catalog and click install

Not the answer you're looking for? Browse other questions tagged or ask your own question.