在prestashop 1.7中添加管理导航菜单(Add administration nav menu in prestashop 1.7)

编程入门 行业动态 更新时间:2024-10-08 10:57:00
在prestashop 1.7中添加管理导航菜单(Add administration nav menu in prestashop 1.7)

我正在为PrestaShop 1.7开发一个新模块,我想在主管理员的导航栏中添加一个新菜单,并将其链接到我模块的管理部分。 但文档是海洋中的一滴水,我无法知道如何做到这一点。 有任何想法吗 ? 谢谢!

I'm developing a new module for PrestaShop 1.7 and I want to add a new menu to the main admin's navbar and link it to an admin section of my module. But the documentation is a drop in the ocean and I can't get how to do this. Any ideas ? Thanks!

最满意答案

如果要将左侧菜单的链接添加到模块中的管理控制器,可以使用以下内容:

// for example if you want to create inside the Orders menu or use 0 to create a top menu. $parentTabID = Tab::getIdFromClassName('AdminParentOrders'); $tab = new Tab(); $tab->active = 1; $tab->class_name = "AdminCustom"; // you custom class $tab->name = array(); foreach (Language::getLanguages() as $lang){ $tab->name[$lang['id_lang']] = "Link name"; } $tab->id_parent = $parentTabID; $tab->module = $this->name; $tab->add();

If you want to add a link to the left menu to a admin controller in your module, you can use something like:

// for example if you want to create inside the Orders menu or use 0 to create a top menu. $parentTabID = Tab::getIdFromClassName('AdminParentOrders'); $tab = new Tab(); $tab->active = 1; $tab->class_name = "AdminCustom"; // you custom class $tab->name = array(); foreach (Language::getLanguages() as $lang){ $tab->name[$lang['id_lang']] = "Link name"; } $tab->id_parent = $parentTabID; $tab->module = $this->name; $tab->add();

更多推荐

本文发布于:2023-07-30 15:57:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1338805.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:菜单   prestashop   Add   menu   nav

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!