【小编推荐】新增模块后台页面的更改

2015-08-25   |   发布者:梁国芳   |   查看:3320次

destoon
 问题:
新增了一个模块后(复制的文章模块),模块的字段和原有字段完全不一样,修改后台模板,又会影响其他复制过 文章模块的后台模板。

解决办法。
找到 文章模块的后台 文件夹:/module/article/admin/index.inc.php

191 行    include tpl('edit', $module);     //模板在  当前文件夹下 \template 文件夹下 edit.tpl.php 

如果需要用新的模板     if($_GET['moduleid']==24){
include tpl('app_dianhua_edit', $module);
}else{
include tpl('edit', $module);
}