织梦的专题模板应用分析及解决方案

废话不多说了,自己在网上看到的,现在转过来,提供给织梦爱好者研究吧。

  废话不多说了,自己在网上看到的,现在转过来,提供给织梦爱好者研究吧。

在官方的版本上有这样的一段话:
  
  1、文章列表用ID1,ID2,ID3这样形式分开,系统会自动排除不同节点的相同文章;
  
  2、关于单条记录模板里的[field:fieldname /]标记的使用,请参考关于系统帮助关于 arclist 标记的说明;
  
  3、节点ID是节点的唯一标识,允许在专题模板中用{dede:specnote id='标识'/}这样来表示单个节点。
  
  4、正常的情况下,每个节点显示的是“节点文章列表”里的文档,如果你指定为“自动获取模式”,那么必须指定关键字和栏目ID。
  
  可是经测试{dede:specnote id='标识'/}这个并没有升效;因此开始解决这个,以替换掉原来比较死板{dede:field name='note'/}标签;
  
  举例说明:
  
  我要分两栏显示不同节点的文章,目前用"note"就不能实现,只能是同一节点分栏,难免就显得有些捌扭,不够灵活。
  
  下面我就把自己解决方案写下供同学们参考,首先得申明一点,只能是实现了功能,可算法不一定是最好的,因为我不太熟悉DEDECMS代码且没有认真的研究过,希望大家海涵!
  
  步骤1:
  
  文件位置:{include/inc_archives_view.php}
  
  //广告标记
  
  //-----------------------
  
  else if($ctag->GetName()=="myad"){
  
  $this->dtp->Assign($tagid,$this->PartView->GetMyAd($typeid,$ctag->GetAtt("name")));
  
  }
  
  // 专题标识
  
  // by phpfans
  
  else if($ctag->GetName()=="specnote"){
  
  $this->dtp->Assign($tagid,$this->ChannelUnit->GetSpecList('',$this->ChannelUnit->specrule,$ctag->GetAtt("id")));
  
  }
  
  介绍:{在广告标记下增加专题标识}这样专题文章列表页就可以识别specnote标签了
  
  步骤2:
  
  文件位置:{include/inc_channel_unit.php}
  
  var $specrule;
  
  //-------------
  
  //php5构造函数
  
  //-------------
  
  介绍:增加了对$pecrule变量的定义
  
  步骤3:
  
  文件位置:{include/inc_channel_unit.php}
  
  else if($ftype=="specialtopic"){
  
  $this->specrule = $fvalue;
  
  $fvalue = $this->GetSpecList($fname,$fvalue);
  
  }
  
  介绍:这儿增加了$this->specrule = $fvalue;这句,以便获取addonspec表的note字段数据;
  
  步骤4:
  
  文件位置:{include/inc_channel_unit.php}
  
  //获得专题文章的列表
  
  //--------------------------------
  
  function GetSpecList($fname,$noteinfo,$noteid="")
  
  {
  
  if(!isset($GLOBALS['__SpGetArcList'])) require_once(dirname(__FILE__)."/inc/inc_fun_SpGetArcList.php");
  
  if($noteinfo=="") return "";
  
  $rvalue = "";
  
  $tempStr = GetSysTemplets("channel/channel_spec_note.htm");
  
  $dtp = new DedeTagParse();
  
  $dtp->LoadSource($noteinfo);
  
  if(is_array($dtp->CTags))
  
  {
  
  foreach($dtp->CTags as $k=>$ctag){
  
  $notename = $ctag->GetAtt("name");
  
  if($noteid!="" && $ctag->GetAtt("noteid")!=$noteid){ continue; } //指定名称的专题节点
  
  if($noteid!="" && $ctag->GetAtt("noteid")===$noteid) {
  
  $isauto = $ctag->GetAtt("isauto");
  
  $idlist = trim($ctag->GetAtt("idlist"));
  
  $rownum = trim($ctag->GetAtt("rownum"));
  
  if(empty($rownum)) $rownum = 40;
  
  $keywords = "";
  
  $stypeid = 0;
  
  if($isauto==1){
  
  $idlist = "";
  
  $keywords = trim($ctag->GetAtt("keywords"));
  
  $stypeid = $ctag->GetAtt("typeid");
  
  }
  
  if(trim($ctag->GetInnerText())!="") $listTemplet = $ctag->GetInnerText();
  
  else $listTemplet = GetSysTemplets("spec_arclist.htm");
  
  $idvalue = SpGetArcList($this->dsql,
  
  $stypeid,$rownum,$ctag->GetAtt("col"),
  
  $ctag->GetAtt("titlelen"),$ctag->GetAtt("infolen"),
  
  $ctag->GetAtt("imgwidth"),$ctag->GetAtt("imgheight"),
  
  "all","default",$keywords,$listTemplet,100,0,$idlist);
  
  $notestr = str_replace("~notename~",$notename,$tempStr);
  
  $notestr = str_replace("~spec_arclist~",$idvalue,$notestr);
  
  $rvalue .= $notestr;
  
  if($noteid!="" && $ctag->GetAtt("noteid")==$noteid){ break; }
  
  }
  
  }
  
  }
  
  $dtp->Clear();
  
  return $rvalue;
  
  }
  
  介绍:有些小改动,自己对比一下就清楚了,这儿就不再哆嗦了
  
  步骤5:
  
  说明: 原{dede:field name='note'/}标签失效了,如果要用的朋友请自行修改步骤四部份。。
  
  很简单的;完工!
 

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DEDE图片本地化失效的主要原因: 服务器上的运行环境中禁用了fsockopen()函数 解决方案一: 在用fsockopen()的地方用stream_socket_client()函数代替。 具体修改地方是 /include/dedehttpdown.class.php 第507行 $this-m_fp = @fsockopen($this-m_host, $thi
使用织梦DedeCMS的朋友,一直有一个头疼的问题,就是织梦DedeCMS的安全性。No牛网在以前的很多文章中,都有对织梦安全的相关说明,这些织梦安全设置的文章,一般都是针对没有被挂马的情况。如果自己的织梦DedeCMS被挂马了,应该怎么解决呢?
我在百度站长平台发现了这篇文章,教大家如何发现网站是否被黑和解决方案。 原文如下: 如何判断网站被黑 如果存在下列问题,则您的网站可能已经被黑客攻击: 1、通过Site语法查询站点,显示搜索引擎收录了大量非本站应有的页面。 2、从百度搜索结果中点击站
有很多站长网站数据需要用到火车头采集器,那么如果DEDECMS中包含自定义字段,我们应该如何来采集呢?是不是傻眼了,不知道如何是好了? 下面,作者亲测利用火车头采集器发发布dedecms自定义字段完美解决方案,分享给大家。 1.打开dedecms编辑模块,在弹出的
这篇文章主要介绍了织梦DeDeCMS 5.6 升级 5.7 SP1版本完美解决方案教程,本文为小编原创,根据实际升级过程总结而,资料珍贵,请务必珍惜~,需要的朋友可以参考下
如下标签: 代码如下: {dede:listpagesize=6} liahref=/plus/jobs.php?lang={dede:global.user_lang/}jobid=[field:id/][field:jobname/]/a/li {/dede:list} 当运行的时候,发现{dede:global.user_lang/}居然原封不动的被展示了出来而未被解析,我很纳闷,于