新加字段 typeimg
后台执行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
打开dede/catalog_add.php
查找$queryTemplate = “insert into `dede_arctype`
将
(reid,topid,sortrank,typename,typedir,
替换为
(reid,topid,sortrank,typename,typedir,typeimg,
打开dede/catalog_edit.php
查找
$upquery = “Update `dede_arctype` set
在其下面新加一行
`typeimg`=’$typeimg’,
打开dede/templets/catalog_add.htm
查找
<tr>
<td height=”26″>列表命名规则:</td>
<td>
<input name=”namerule2″ type=”text” id=”namerule2″ value=”{typedir}/list_{tid}_{page}.html” style=”width:250px” />
<img src=”img/help.gif” alt=”帮助” width=”16″ height=”16″ border=”0″ style=”cursor:pointer” onClick=”ShowHide(‘helpvar3′)”/></td>
</tr>
在其下面增加以下内容
<tr>
<td height=”65″ style=”padding-left:10px;”>栏目图片:</td>
<td>
<input name=”typeimg” type=”text” style=”width:250px” id=”typeimg” 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” 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>
在模板中数据调用跟调用栏目名称形式相同