zoukankan      html  css  js  c++  java
  • destoon 后台管理左侧新增菜单项

    destoon 后台菜单设置在对应模块的admin/menu.inc.php

    例如要在后台会员管理里增加会员承包和股东管理

    $menu = array(
    
    array('添加会员', '?moduleid=2&action=add'),
    
    array('会员列表', '?moduleid=2'),
    
    array('审核会员', '?moduleid=2&action=check'),
    
    array(VIP.'管理', '?moduleid=4&file=vip'),
    
    array('资料审核', '?moduleid=2&file=validate'),
    
    array('联系会员', '?moduleid=2&file=contact'),
    
    array('在线会员', '?moduleid=2&file=online'),
    
    array('在线对话', '?moduleid=2&file=chat'),
    
    array('一键登录', '?moduleid=2&file=oauth'),
    
    array('微信管理', '?moduleid=2&file=weixin'),
    
    array('会员升级', '?moduleid=2&file=grade&action=check'),
    
    array('会员组管理', '?moduleid=2&file=group'),
    
    array('模块设置', '?moduleid=2&file=setting'),
    
    array('承包管理', '?moduleid=2&file=chengbao'),
    
    array('股东管理', '?moduleid=2&file=gudong'),
    
    );
    View Code


    1、承包管理  

         在对用module目录下 /module/member/admin/ 目录新建 chengbao.inc.php

         在  /module/member/admin/ template/  新建模板  chengbao.tpl.php

  • 相关阅读:
    git 同步远程分支
    git tag 打标签
    EJS 语法
    从零开始制作 Hexo 主题
    博客灵感
    java编译做了哪些事?
    java+内存分配及变量存储位置的区别[转]
    用android模拟器Genymotion定位元素
    利用securecrt在linux与windows之间传输文件
    eclipse引入tomcat
  • 原文地址:https://www.cnblogs.com/djiz/p/6414190.html
Copyright © 2011-2022 走看看