dz中添加后台管理菜单

dz中后台菜单的管理是通过关联数组的方式进行管理,存在于文件中,以下是后台添加查看统计的操作(文件名为admin/extends.inc.php):

1、admincp.php这个文件中添加后台允许访问的文件如下(红色部分为增加的文件名)

if(in_array($action, array('home', 'settings', 'members', 'profilefields', 'admingroups', 'usergroups', 'ranks', 'forums', 'threadtypes', 'threads', 'moderate', 'attach', 'smilies', 'recyclebin', 'prune', 'styles', 'plugins', 'tasks', 'magics', 'medals', 'google', 'qihoo', 'video', 'announce', 'faq', 'ec', 'tradelog', 'creditwizard', 'jswizard', 'project', 'counter', 'misc', 'adv', 'insenz', 'logs', 'tools', 'checktools', 'search', 'upgrade', 'extends')) || ($isfounder && in_array($action, array('runwizard', 'templates', 'db'))))

2、admin/menu.inc.php在调用showmenu处需求添加的地方增加相应的值

3、admin/menu.lang.inc.php增加相应的语言值

 

你可能感兴趣的:(search,action,plugins,tools,templates,styles)