Today I’m going to show you how to add a custom module quick link to your Prestashop Admin Area.
This tutorial will require you to have a basic understanding of website development.
Please watch the video below and feel free to use the script below in your module controller/admin folder
?php
class returnManagerController extends AdminController {
public function __construct() {
$module_name = "returnmanager";
Tools::redirectAdmin('index.php?controller=AdminModules&configure=' . $module_name . '&token=' . Tools::getAdminTokenLite('AdminModules'));
}
}
0
0
vote
Article Rating