首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

织梦dedecms程序如何给栏目增加缩略图

2013-12-21 
织梦dedecms程序怎么给栏目增加缩略图此功能添加涉及到以下文件:dede/catalog_add.phpdede/catalog_edit.p

织梦dedecms程序怎么给栏目增加缩略图

此功能添加涉及到以下文件:
dede/catalog_add.php
dede/catalog_edit.php
dede/templets/catalog_add.htm
dede/templets/catalog_edit.htm
打开文件夹templets这个目录,在里面新建一个文件夹typeimg,用于独立存放栏目缩略图,必须要建立此文件夹。

首先给 栏目表(`dede_arctype`)增加一个字段typeimg
可以在后台执行SQL:



在其下面增加一行:



保存catalog_add.htm

开始修改栏目编辑模板文件
打开dede/templets/catalog_edit.htm
查找



在其下面增加一行:



保存catalog_edit.htm

至此已经修改完成!
栏目图片的添加或修改图片时在 (栏目管理>高级选项)

如果想同时在文章内容页调用栏目图片打开,修改includearc.archives.class.php
查找

if($this->ChannelUnit->ChannelInfos['issystem']!=-1)



$query = "Select arc.*,tp.reid,tp.typedir,ch.addtablefrom `dede_archives` arcleft join dede_arctype tp on tp.id=arc.typeidleft join dede_channeltype as ch on arc.channel = ch.idwhere arc.id='$aid' ";$this->Fields = $this->dsql->GetOne($query);



替换为:

$query = "Select arc.*,tp.reid,tp.typedir,tp.typeimg,ch.addtablefrom `dede_archives` arcleft join dede_arctype tp on tp.id=arc.typeidleft join dede_channeltype as ch on arc.channel = ch.idwhere arc.id='$aid' ";$this->Fields = $this->dsql->GetOne($query);



保存文件即可。

完成上述内容后,还需要修改 include/dialog/ 目录下的?select_templets.php ?和?select_templets_post.php 文件。

在?select_templets.php 增加如下代码:

在 ? $cfg_txttype = ‘htm|html|tpl|txt|dtp’; 后增加,

if ($_GET[img] == 'yes') { $cfg_txttype .= '|jpg|gif|png|jpeg';;}



修改 select_templets_post.php , 将 第二行 $cfg_txttype = ‘”htm|html|tpl|txt’;

替换为:

$cfg_txttype = "htm|html|tpl|txt|jpg|gif|png|jpeg";



并注释掉如下代码:

//if(!ereg("^text",$uploadfile_type))//{ //ShowMsg("你上传的不是文本类型附件!","-1"); //exit();//}



至此,就可以再后台添加栏目是上传栏目图片了。

http://php86.com/2012/7559.html

热点排行