I'm pretty new to prestashop 1.7, and I've been following all the "getting started" guides trying to get a proper local development environment. The thing is, there's something bugging me hard: the `ps_mbo` module (the one which shows the Module Manager in the admin panel).
This module is not listed in composer.json file, so it ain't installed via composer. Also, there's no "repositories" entry in composer, so it's neither manually added, and it's not registered on packagist, so there's no way to install it through composer (unless I specify a repository entry on the composer.json file).
I've tried git, zip and docker installations (1.7.6.x always), and the results are the same: either it magically appears in the modules folder, or it doesn't appear, making the admin show the button, but obviously it doesn't work when you click on it as there's no module in the system.
So... could anyone explain me:
- How am I supposed to work on a local environment, if there are modules which magically appear on the `modules` folder (which is ignored by .gitignore)?
- When and how is this ps_mbo actually installed?? -as I've been trying to track it with no luck; the only mentions I've been finding to it where mere translations and a minor if in the ps_themecusto module, chosing between ps_mbo and another module manager of which I neither have found any information.
Thanks in advance :_)