I'm currently writing a Prestashop module, and I'm trying to create a configuration page.
Following the docs and reading another modules, I've ended trying this snippet to test:
<?php
public function getContent() {
return '<h1>Config</h1>';
}
If I install the module, Prestashop redirects me to a page like this
Which is correct. But in the admin Prestashop does not generate the configuration link.
The question is: what the heck I need to do to show that link?