doudunyi3796 2017-05-11 12:29
浏览 77
已采纳

在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!

  • 写回答

1条回答 默认 最新

  • douchen3562 2017-05-11 12:41
    关注

    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();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?