dedeCMS如何给频道页添加缩略图

当咱们一个栏目列表都用缩略图来表示产,而不单单只是文字,若是没有这项功能会很是麻烦,网上有不少这方面的资料,可是都试过了有不少问题,本身研究一下,测试基本经过。须要新加字段 typeimg
后台执行SQL:javascript

1   alter table `80php_arctype` add `typeimg` char(100) NOT NULL default '';php

涉及到文件:
dede/catalog_add.php
dede/catalog_edit.php
dede/templets/catalog_add.htm
dede/templets/catalog_edit.htm
 html

打开dede/catalog_add.php
查找$queryTemplate = "insert into `80php_arctype`
java

2         (reid,topid,sortrank,typename,typedir,sql

替换为ide

3         (reid,topid,sortrank,typename,typedir,typeimg,测试

url

4         ('~reid~','~topid~','~rank~','~typename~','~typedir~',spa

替换为orm

5         ('~reid~','~topid~','~rank~','~typename~','~typedir~','~typeimg~',

打开dede/catalog_edit.php
查找

6         $upquery = "Update `80php_arctype` set

在其下面新加一行
`typeimg`='$typeimg',   (14ohang  mei you tianjia )
 

打开dede/templets/catalog_add.htm
查找

 

7         <tr>

8         <td height="26">列表命名规则:</td>

9         <td>

10     <input name="namerule2" type="text" id="namerule2" value="{typedir}/list_{tid}_{page}.html" class="pubinputs" style="width:250px" />

11     <img src="img/help.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer" onClick="ShowHide('helpvar3')"/></td>

12     </tr>

在其下面增长如下内容
<tr>
< td height="65" style="padding-left:10px;">栏目图片:</td>
< td>
< 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>
并在文件的head增长如下内容
<script language='javascript' src="js/main.js"></script>


打开dede/templets/catalog_edit.htm
在刚前面的位置加入:
<tr>
< td height="65" style="padding-left:10px;">栏目图片:</td>
< td>
< input name="typeimg" type="text" style="width:250px" id="typeimg" class="alltxt" value="<?php echo $myrow['typeimg']?>" />
< input type="button" name="set9" value="浏览... "class="coolbg np" style="width:60px" onClick="SelectImage('form1.typeimg','');" />
< /td>
< /tr>
说明:下面这句会调用出已添加的路片路径。
< ?php echo $myrow['typeimg']?>

并在文件的head增长如下内容
<script language='javascript' src="js/main.js"></script>

我试了一下在模版里用:{dede:field.typeimg /} 是调不出数据的。

修改channel.lib.php

在全部 $sql = "SELECT id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,content的后面

添加,typeimg

 

同理,能够以此添加副栏目标题等。

相关文章
相关标签/搜索