https://www.prestashop.com/forums/topic/283321-how...here is the answer to the question how to create a custom stranee menu in adminkit and add
create controllers/admin/AdminPageController.php with the follwing content:
class AdminController extends AdminPageController
{
public function initContent()
{
parent::initContent();
$smarty = $this->context->smarty;
$smarty->assign('test', 'test1');
}
}
Delete: /cache/class_index.php
Create by: admin\\themes\\default\\template\\controllers\\page\\content.tpl
zzz{$test}zzz
At BackOffice -> Administration -> Menus -> [Add New]:
Name: Page
Class: AdminPage
Parent: Catalog
Click the [save] button and the menu item should appear at the "Catalog" menu.