https://www.prestashop.com/forums/topic/283321-how...
здесь есть ответ на вопрос как создать кастомную странее в меню в админкеицу и добавить
create controllers/admin/AdminPageController.php with the follwing content:
class AdminPageController extends AdminController
{
public function initContent()
{
parent::initContent();
$smarty = $this->context->smarty;
$smarty->assign('test', 'test1');
}
}
Delete: /cache/class_index.php
Create: 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.