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

  • 相关阅读:
    打印出1-10000之间的所有对称数(如121,1331,2442)
    代码块
    javascript判断数据类型
    块和内嵌
    xhtml+css基础知识2
    xhtml+css基础知识1
    清除浮动
    margin注意问题
    javascirpt 闭包
    css3 box-sizing属性
  • 原文地址:https://www.cnblogs.com/djiz/p/6414190.html
Copyright © 2011-2022 走看看