帝国CMS搜索模板不支持灵动标签和万能标签的解决方法

  帝国cms采用了模板分离功能:把内容与界面完全分离,灵活的标签+用户自定义标签,使之能实现各式各样的网站页面与风格。但大家有没有发现,帝国CMS7.5至搜索模板始终不支持动态标签调用,这很不方便,即便是升级到7.5,仍然不支持。如下图。

blob.png 帝国CMS搜索模板不支持灵动标签和万能标签的解决方法 帝国笔记 第1张

  这里用的是灵动标签。灵动标签是什么?,万能标签是什么?帝国cms 万能标签和灵动标签功能是一样的吗?

  两者有相同之处,也有所区别。灵动标签是这样的:[e:loop={栏目ID/专题ID,显示条数,操作类型,只显示有标题图片,附加SQL条件,显示排序}] 模板代码内容[/e:loop]。万能标签是这样的:[ecmsinfo]栏目ID/专题ID, 显示条数, 标题截取数, 是否显示栏目名, 操作类型, 模板ID, 只显示有标题图片[/ecmsinfo],举例说明:[ecmsinfo]2,3,14,1,0,5,1[/ecmsinfo],栏目ID为2,显示条数为3,标题截取数为14个字符,是否显示栏目名 1为显示,操作类型为0,模板ID为5,只显示有标题图片。

  那么,解决帝国CMS搜索模板不支持灵动标签和万能标签的方法是什么?

  方法很简单,只需两步。

  一、打开 /e/search/result/index.php 文件

blob.png 帝国CMS搜索模板不支持灵动标签和万能标签的解决方法 帝国笔记 第2张

  查找下面代码:

require("../../class/connect.php");require("../../class/db_sql.php");require("../../data/dbcache/class.php");require("../../class/q_functions.php");require "../".LoadLang("pub/fun.php");

  修改成下面代码:

require('../../class/connect.php');require('../../class/db_sql.php');require('../../class/functions.php');require('../../class/t_functions.php');require('../../data/dbcache/class.php');require "../".LoadLang("pub/fun.php");

  二、查找下面代码:

//替换公共模板变量$listtemp=$tempr[temptext];

  在以上代码上面添加下面代码:

//页面支持标签$tempr[temptext]=DtNewsBq('list'.$tempid,$tempr[temptext],0);

  修改后效果:

blob.png 帝国CMS搜索模板不支持灵动标签和万能标签的解决方法 帝国笔记 第3张

  完整代码以下所示:

fetch1("select searchid,keyboard,result_num,orderby,myorder,tbname,tempid,andsql,trueclassid from {$dbtbpre}enewssearch where searchid='$searchid'");if(empty($search_r['searchid'])||InfoIsInTable($search_r[tbname])){    printerror("SearchNotRecord",$getfrom,1);}$page=(int)$_GET['page'];$page=RepPIntvar($page);$start=0;$page_line=$public_r['search_pagenum'];//每页显示链接数$line=$public_r['search_num'];//每页显示记录数$offset=$page*$line;//总偏移量$search="&searchid=".$searchid;$myorder=$search_r[orderby];if(empty($search_r[myorder])){    $myorder.=" desc";}$add=stripSlashes($search_r['andsql']);$num=$search_r[result_num];if(strstr($add,"//")){    exit();}$query="select * from {$dbtbpre}ecms_".$search_r[tbname].($add?' where '.substr($add,5):'');$query.=" order by ".$myorder." limit $offset,$line";$sql=$empire->query($query);$listpage=page1($num,$line,$page_line,$start,$page,$search);//取得模板if($search_r['tempid']){    $tempr=$empire->fetch1("select temptext,subnews,listvar,rownum,showdate,modid,subtitle,docode from ".GetTemptb("enewssearchtemp")." where tempid='".$search_r['tempid']."' limit 1");}elseif(empty($class_r[$search_r[trueclassid]][searchtempid])){    $tempr=$empire->fetch1("select temptext,subnews,listvar,rownum,showdate,modid,subtitle,docode from ".GetTemptb("enewssearchtemp")." where isdefault=1 limit 1");}else{    $tempr=$empire->fetch1("select temptext,subnews,listvar,rownum,showdate,modid,subtitle,docode from ".GetTemptb("enewssearchtemp")." where tempid='".$class_r[$search_r[trueclassid]][searchtempid]."' limit 1");}$have_class=1;//页面支持标签$tempr[temptext]=DtNewsBq('list'.$tempid,$tempr[temptext],0);//替换公共模板变量$listtemp=$tempr[temptext];if($public_r['searchtempvar']){    $listtemp=ReplaceTempvar($listtemp);}$search_r[keyboard]=ehtmlspecialchars($search_r[keyboard]);$listtemp=str_replace("[!--show.page--]",$listpage,$listtemp);$listtemp=str_replace("[!--keyboard--]",$search_r[keyboard],$listtemp);$listtemp=str_replace("[!--ecms.num--]",$num,$listtemp);$url="".$fun_r['index']." > ".$fun_r['adsearch'];$pagetitle=$fun_r['adsearch']." ".$search_r[keyboard];$listtemp=ReplaceSvars($listtemp,$url,0,$pagetitle,$pagetitle,$pagetitle,$addr,0);$rownum=$tempr[rownum];if(empty($rownum)){    $rownum=1;}$formatdate=$tempr[showdate];$subnews=$tempr[subnews];$subtitle=$tempr[subtitle];$docode=$tempr[docode];$modid=$tempr[modid];$listvar=str_replace('[!--news.url--]',$public_r[newsurl],$tempr[listvar]);//字段$ret_r=ReturnReplaceListF($tempr[modid]);//取得列表模板$list_exp="[!--empirenews.listtemp--]";$list_r=explode($list_exp,$listtemp);$listtext=$list_r[1];$no=$offset+1;$changerow=1;while($r=$empire->fetch($sql)){    //替换列表变量    $repvar=ReplaceListVars($no,$listvar,$subnews,$subtitle,$formatdate,$url,$have_class,$r,$ret_r,$docode);    $listtext=str_replace("",$repvar,$listtext);    $changerow+=1;    //超过行数    if($changerow>$rownum)    {        $changerow=1;        $string.=$listtext;        $listtext=$list_r[1];    }    $no++;}db_close();$empire=null;//多余数据if($changerow<=$rownum&&$listtext<>$list_r[1]){    $string.=$listtext;}$string=$list_r[0].$string.$list_r[2];echo stripSlashes($string);?>


转载请注明: » 帝国CMS搜索模板不支持灵动标签和万能标签的解决方法