作者:薇薇MM81_811 | 来源:互联网 | 2023-10-11 11:42
首先,给栏目分类表dede_arctype表增加缩略图字段typeimg,用phpMyAdmin或其他数据库管理工具,直接在数据表中添加该字段,或者运行下面的SQL语句:alter
- 首先,给栏目分类表
dede_arctype
表增加缩略图字段typeimg
,用phpMyAdmin或其他数据库管理工具,直接在数据表中添加该字段,或者运行下面的SQL语句:
alter table `dede_arctype` add `typeimg` char(100) NOT NULL default '';
- 修改页面,在表单中添加相应的字段,涉及到的页面有:
dede/catalog_add.php
dede/catalog_edit.php
dede/templets/catalog_add.htm
dede/templets/catalog_edit.htm
2.1 打开dede/templets/catalog_add.htm,查找
<tr>
<td class='bline' height="26" style="padding-left:10px;"><font color='red'>栏目名称:font>td>
<td class='bline'><input name="typename" type="text" id="typename" size="30" class="iptxt" />td>
tr>
在其下面加上如下代码:
<tr>
<td class='bline' height="26" style="padding-left:10px;"><font color='red'>栏目图片:font>td>
<td class='bline'>
<input name="typeimg" type="text" style="width:250px" id="typeimg" class="alltxt" value="" />
<input type="button" name="set9" value="浏览... "class="coolbg np" style="width:60px" onClick="SelectImage('form1.typeimg','');" />
td>
tr>
并在之间引入如下js:
<script language="Javascript" src="js/main.js">script>
2.2 打开dede/catalog_add.php页面,保存上传栏目图片的内容,查找
$queryTemplate = "INSERT INTO
在
(reid,topid,sortrank,typename
的后面添加 ,typeimg
字段,再找到
('~reid~','~topid~','~rank~','~typename~',
在其后面添加 ,’~typeimg~’
字段,接着查找
$in_query = "INSERT INTO
在
(reid,topid,sortrank,typename
后面同样添加 ,typeimg
字段,并在
('$reid','$topid','$sortrank','$typename'
后面添加 ,’$typeimg’
字段。
2.3 打开dede/templets/catalog_edit.htm页面,查找
<tr>
<td class='bline' height="26" style="padding-left:10px;"><font color='red'>栏目名称:font>td>
<td class='bline'><input name="typename" type="text" id="typename" size="30" value="" class="iptxt" />td>
tr>
在其下面添加:
<tr>
<td class='bline' height="26" style="padding-left:10px;"><font color='red'>栏目图片:font>td>
<td class='bline'>
<input name="typeimg" type="text" style="width:250px" id="typeimg" class="alltxt" value="" />
<input type="button" name="set9" value="浏览... "class="coolbg np" style="width:60px" onClick="SelectImage('form1.typeimg','');" />
td>
tr>
并在之间引入下面的js文件
<script language='Javascript' src="js/main.js">script>
2.4 打开dede/catalog_edit.php,查找下面的代码(会查询到多条记录,选第一个)
$upquery = "UPDATE `#@__arctype` SET
在
typename='$typename',
的后面添加
typeimg='$typeimg',
然后保存。
注:调用时,栏目页可以直接使用{dede:field.typeimg/}来调用,但在其他标签下,直接用 [field:typeimg/] 是获取不到图片的,最直接的办法是修改“include/taglib/”下的页面(用到哪个标签改哪个页面),把“id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath”这里替换成 * ,这样在模版中直接用 [field:typeimg/] 接口获取到图片。