Home > php教程 > php手册 > destoon实现商铺管理主页设置增加新菜单的方法

destoon实现商铺管理主页设置增加新菜单的方法

WBOY
Release: 2016-06-06 20:21:02
Original
1463 people have browsed it

这篇文章主要介绍了destoon实现商铺管理主页设置增加新菜单的方法,需要的朋友可以参考下

1.打开/lang/zh-cn/home.inc.php,,找到9,10行替换如下:

$HMENU = $DMENU = array('公司介绍', '供应产品', '采购清单', '新闻中心', '荣誉资质', '人才招聘', '联系方式', '公司相册', '招商代理', '品牌展示', '公司视频', '友情链接', '自定义页', '新菜单'); $MFILE = array('introduce', 'sell', 'buy', 'news', 'credit', 'job', 'contact', 'photo', 'info', 'brand', 'video', 'link', 'page', 'page2', 'homepage');

2.打开/module/member/home.inc.php找到66行:

} else { $_menu_show = '1,1,1,1,1,1,1,1,0,0,0,0,0,1'; } $_menu_order = '0,10,20,30,40,50,60,70,80,90,100,110,120,130'; $_menu_num = '1,16,30,30,10,30,1,12,12,12,12,30,1,1'; $_menu_file = implode(',' , $MFILE); $_menu_name = implode(',' , $HMENU);

3.复制 module/company/page.inc.php 为page2.inc.php

4.打开module/company/init.inc.php找到109行:

$_menu_show = '1,1,1,1,1,1,1,1,0,0,0,0,0,1'; } $_menu_order = '0,10,20,30,40,50,60,70,80,90,100,110,120,130'; $_menu_num = '1,16,30,30,10,30,1,12,12,12,12,30,1,1'; $_menu_file = implode(',' , $MFILE); $_menu_name = implode(',' , $HMENU);

5.复制template/default/homepage/page.htm 为page2.htm

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template