网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > 网络知识 > 正文

DedeCms 栏目增加缩略图功能的方法

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/30

以下是网学网为您推荐的网络知识-DedeCms 栏目增加缩略图功能的方法,希望本篇文章对您学习有所帮助。

  此功能添加涉及到以下文件:

  dede/catalog_add.php

  dede/catalog_edit.php

  dede/templets/catalog_add.htm

  dede/templets/catalog_edit.htm

  include/taglib/channel.lib.php

  此升级修改方法,在V5.7,V5.7sp1 测试通过,其他版本未测试,原理基本相同,请大家自行测试是否可行。

  首先给 栏目表(`#@__arctype`)增加一个字段typeimg

alter table `#@__arctype` add `typeimg` varchar(200) NOT NULL default ;

  修改catalog_add.php文件

  打开dede/catalog_add.php

  查找$queryTemplate = “insert into `#@__arctype`

  将

(reid,topid,sortrank,typename,typedir,

  替换为:

(reid,topid,sortrank,typename,typedir,typeimg,

  将

(‘~reid~’,''~topid~’,''~rank~’,''~typename~’,''~typedir~’,

  替换为:

(‘~reid~’,''~topid~’,''~rank~’,''~typename~’,''~typedir~’,''~typeimg~’,

  查找$in_query = “INSERT INTO `#@__arctype`

  将

(reid,topid,sortrank,typename,typedir,

  替换为:

(reid,topid,sortrank,typename,typedir,typeimg,

  将

(‘$reid’,''$topid’,''$sortrank’,''$typename’,''$typedir’,

  替换为:

(‘$reid’,''$topid’,''$sortrank’,''$typename’,''$typedir’,''$typeimg’,

  保存catalog_add.php

  下面修改catalog_edit.php文件

  打开dede/catalog_edit.php

  查找$upquery = “Update `#@__arctype` set

  在 typedir=’$typedir’, 其下面增加一行:

`typeimg`=’$typeimg’,

  保存catalog_edit.php

  开始修改栏目添加模板文件

  打开dede/templets/catalog_add.htm

  在最上面找到这个段

<title>栏目管理</title>
<link href=”css/base.css” rel=”stylesheet” type=”text/css”>

  替换为:

<title>栏目管理</title>
<link href=”css/base.css” rel=”stylesheet” type=”text/css”>
<script language=”javascript” src=”../include/js/dedeajax2.js”></script>
<script language=’javascript’ src=”js/main.js”></script>
<script type=”text/javascript” src=”js/calendar/calendar.js”></script>

  列表命名规则:

<tr>
<td height="26" style="padding-left:10px;">列表命名规则:</td>
<td>
<input name="namerule2" type="text" id="namerule2" value="{typedir}/list_{tid}_{page}.html" class="pubinputs" style="width:250px" />
<img src=/uploadfile/201406/30/94144815658.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer" onClick="ShowHide(''helpvar3'')"/></td>
</tr>

  在标签下面增加一行:

<!--增加栏目缩略图-->
<tr>
<td width="90" style="padding-left:10px;">栏目图片:</td>
<td width="560">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td height="30">
<input name="typeimg" type="text" id="typeimg" style="width:240px" />
<input type="button" value="本地上传" style="width:70px;cursor:pointer;display:none" />
<iframe name=''uplitpicfra'' id=''uplitpicfra'' src='''' style=''display:none''></iframe>
<span class="litpic_span"><input name="litpic" type="file" id="litpic" onChange="SeePicNew(this, ''divpicview'', ''uplitpicfra'', 165, ''archives_add.php'');" size="1" class=''np coolbg''/></span>
<input type="button" name="Submit2" value="选择图片" style="margin-left:8px;" onClick="SelectImage(''form1.typeimg'',''small'');" class=''np coolbg''/>
<input type="button" name="Submit2" value="裁剪" style="margin-left:8px;" onClick="imageCut(''typeimg'');" class=''np coolbg''/>
<input type=''checkbox'' class=''np'' name=''ddisremote'' value=''1'' id=''ddisremote''/>远程<br />(栏目模板里用{dede:field.typeimg /}调用
</td>
</tr>
</table>
</td>
<td width="150" align="center">
<div id=''divpicview'' class=''divpre''></div>
</td>
</tr>
<!--增加栏目缩略图-->

  保存catalog_add.htm

  开始修改栏目编辑模板文件

  打开dede/templets/catalog_edit.htm

  在最上面找到这个段

<title>栏目管理</title>
<link href=”css/base.css” rel=”stylesheet” type=”text/css”>

  替换为:

<title>栏目管理</title>
<link href=”css/base.css” rel=”stylesheet” type=”text/css”>
<script language=”javascript” src=”../include/js/dedeajax2.js”></script>
<script language=”javascript” src=”js/main.js”></script>
<script type=”text/javascript” src=”js/calendar/calendar.js”></script>

  查找

<tr>
<td height="26" style="padding-left:10px;">列表命名规则:</td>
<td> <input name="namerule2" type="text" id="namerule2" value="<?php echo $myrow[''namerule2'']?>" size="40" class="iptxt" />
<img src=/uploadfile/201406/30/94144815658.gif" alt="帮助" width="16" height="16" border="0" style="cursor:pointer" onClick="ShowHide(''helpvar3'')"/></td>
</tr>

  在其下面增加一行:

<!--增加栏目缩略图-->
<tr>
<td width="90" height="81" style="padding-left:10px;">栏目图片:</td></td>
<td width="500">
<input name="typeimg" type="text" id="typeimg" style="width:300px" value="<?php echo $myrow[''typeimg'']?>"><input type="button" name="Submit" value="浏览..." style="width:70px" onClick="SelectImage(''form1.typeimg'','''');">
<input type="button" name="Submit2" value="裁剪" style="margin-left:8px;" onClick="imageCut(''typeimg'');" class=''np coolbg''/>
<input type=''checkbox'' class=''np'' name=''ddisremote'' value=''1''>
远程<br />(栏目模板里用{dede:field.typeimg /}调用)
</td>
<td align="center">
<img src="<?php if($myrow[''typeimg'']!="") echo $myrow[''typeimg'']; else echo "images/pview.gif";?>" width="150" height="100" id="picview" name="picview">
</td>
</tr>
<!--增加栏目缩略图-->

  保存catalog_edit.htm

  至此已经修改完成!

  栏目图片的添加或修改图片时在 (栏目管理>高级选项)里面就会自动出现栏目图片添加的选择,点击选择图片,弹出窗口内选择浏览上传就OK

  注意:前台栏目标签调用的时候,还需要改一个文件,才能实现栏目图片显示,否则只能通过sql语句才能显示图片。

  打开:include/taglib/channel.lib.php

  找到

if($type==''top'')
{
$sql = "Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description
From `#@__arctype` where reid=0 And ishidden<>1 order by sortrank asc limit 0,$row";
}
else if($type=="son")
{
//if( DedeCms 栏目增加缩略图功能的方法_网学
当前位置: 网学 > 编程文档 > 网络知识 > 正文

DedeCms 栏目增加缩略图功能的方法

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/30
content
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
sys_globals[''typeid'']>0) $typeid = DedeCms 栏目增加缩略图功能的方法_网学
当前位置: 网学 > 编程文档 > 网络知识 > 正文

DedeCms 栏目增加缩略图功能的方法

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/30
content
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
sys_globals[''typeid''];
if($typeid==0) {
return '''';
}
$sql = "Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description
From `#@__arctype` where reid=''$typeid'' And ishidden<>1 order by sortrank asc limit 0,$row";
}
else if($type=="self")
{
if($reid==0) {
return '''';
}
$sql = "Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description
From `#@__arctype` where reid=''$reid'' And ishidden<>1 order by sortrank asc limit 0,$row";
}

  替换成下面的:

if($type==''top'')
{
$sql = "Select id,typename,typeimg,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description
From `#@__arctype` where reid=0 And ishidden<>1 order by sortrank asc limit 0,$row";
}
else if($type=="son")
{
//if( DedeCms 栏目增加缩略图功能的方法_网学
当前位置: 网学 > 编程文档 > 网络知识 > 正文

DedeCms 栏目增加缩略图功能的方法

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/30
content
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
sys_globals[''typeid'']>0) $typeid = DedeCms 栏目增加缩略图功能的方法_网学
当前位置: 网学 > 编程文档 > 网络知识 > 正文

DedeCms 栏目增加缩略图功能的方法

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/06/30
content
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号
sys_globals[''typeid''];
if($typeid==0) {
return '''';
}
$sql = "Select id,typename,typeimg,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description
From `#@__arctype` where reid=''$typeid'' And ishidden<>1 order by sortrank asc limit 0,$row";
}
else if($type=="self")
{
if($reid==0) {
return '''';
}
$sql = "Select id,typename,typeimg,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description
From `#@__arctype` where reid=''$reid'' And ishidden<>1 order by sortrank asc limit 0,$row";
}

  调用方法:

<img src=”[field:typeimg /]” />

  最近有很多网友问到修改的方法,现在我把已经修改好的后台文件分享出来,下载下来直接覆盖到后台就可以了。http://115.com/file/anqwqyi0

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

  查找

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

  将

$query = “Select arc.*,tp.reid,tp.typedir,ch.addtable
from `#@__archives` arc
left join #@__arctype tp on tp.id=arc.typeid
left join #@__channeltype as ch on arc.channel = ch.id
where arc.id=’$aid’ “;
$this->Fields = $this->dsql->GetOne($query);

  替换为: 

$query = “Select arc.*,tp.reid,tp.typedir,tp.typeimg,ch.addtable
from `#@__archives` arc
left join #@__arctype tp on tp.id=arc.typeid
left join #@__channeltype as ch on arc.channel = ch.id
where arc.id=’$aid’ “;
$this->Fields = $this->dsql->GetOne($query);

  保存文件即可。

  原文地址:http://www.xueleilei.com/internet/423.html

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号