destoon版本7.0
新增模块名secondhand(旧物),复制buy(求购)
一、复制根目录下的buy这个文件夹,粘贴然后重命名为secondhand。
在该文件夹下找到index.php
将$moduleid修改为新建模块的id;
二、复制里面的module/buy文件夹,重命名为secondhand,
1.将module/secondhand/buy.class.php重命名为secondhand.class.php
2.打开这个新文件夹内的admin/config.inc.php这个文件,里面的代码这样修改
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
做完这一步就可以在后台新建模块了:
登录后台,在 我的面板-》模块管理 里面选择添加模块,然后填入模块名‘旧物’,所属模型也选 ‘旧物’,就可以看到它的moduleid;把它填入上述需要的地方(如图)
三、复制 template/default/buy/ 为 template/default/secondhand/ //默认商城该页面模板
四、复制 template/default/member/my_buy.htm 为 template/default/member/my_secondhand.htm // 商城前端的该模块管理页面
复制 template/default/tag/list-buy.htm 为 template/default/tag/list-secondhand.htm // tag页面,若无则忽略
复制 template/default/homapage/buy.htm 为 template/default/homepage/secondhand.htm
复制 template/mobile/buy 为 template/mobile/secondhand
// 有mobile的都是与手机有关的,若不需要手机端不需要复制
复制 skin/default/buy.css 为 skin/default/secondhand.css
复制 lang/zh-cn/buy.inc.php 为 lang/zh-cn/secondhand.inc.php
复制 company/buy/ 为 company/secondhand/
复制 module/company/buy.inc.php 为 module/company/secondhand.inc.php
复制 mobile/buy为 mobile/secondhand
复制 file/setting/buy.csv 为 file/setting/secondhand.csv // 数据库相关文件
复制 file/setting/buy.sql 为 file/setting/secondhand.sql
并将secondhand.sql中的destoon_buy_6改为destoon_secondhand_23;还有destoon_buy_data_6改为destoon_secondhand_data_23(根据自己的模块名和id修改)
完成之后登录后台,在 我的面板-》模块管理 里面选择添加模块,然后填入模块名‘旧物’,在所属模型这个下拉选项中你会发现多出来一个名为’旧物‘的选项,就可以看到它的moduleid;
将刚新复制的文件夹中的buy全部改为secondhand,moduleid改为新的id。
到这里就可以在前台看到你新增的模块啦,接着就是自己根据业务需求修改里面的代码啦