當咱們一個欄目列表都用縮略圖來表示產,而不單單只是文字,若是沒有這項功能會很是麻煩,網上有不少這方面的資料,可是都試過了有不少問題,本身研究一下,測試基本經過。須要新加字段 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
同理,能夠以此添加副欄目標題等。