DEDECMS中怎么获取无限栏目子分类

来源:undefined 2025-01-01 09:43:42 1002

dedecms中怎么获取无限栏目子分类?

做企业网站大部分是使用DEDECMS,今天在给客户设计网站时,把DEDE自动内链和URL全拼格式搞定后,又遇到了个小问题,因为产品分类最多有四级,客户要求在左侧有个弹出式菜单调用各级子分类出来,而DEDECMS默认只能调用一级分类。经过努力,百度+GOOGLE+自己脑袋,终于搞定了这个东西,不敢独享,发出来给有需要的朋友分享。 

推荐学习:织梦cms

首先要把/include/taglib/channerl.lib.php 文件的代码修改成以下的:

代码如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

<?php 

function lib_channel(&$ctag,&$refObj)

{

global $_sys_globals,$envs,$dsql;

$attlist = “typeid|0,reid|0,row|100,col|1,type|son,currentstyle|”;

FillAttsDefault($ctag->CAttribute-&gt;Items,$attlist); 

extract($ctag-&gt;CAttribute-&gt;Items, EXTR_SKIP); 

$innertext = $ctag-&gt;GetInnerText(); 

if(empty($typeid) &amp;&amp; $envs[typeid]!=0) 

$typeid = $envs[typeid]; 

$reid = $envs[reid]; 

}else{ 

$reid=0; 

if($type==”||$type==’sun’) $type=”son”; 

if($innertext==”) $innertext = GetSysTemplets(“channel_list.htm”); 

if($reid==0 &amp;&amp; $typeid&gt;0) 

$dbrow = $dsql-&gt;GetOne(“Select reid From ying_arctype where id=’$typeid’ “); 

if(is_array($dbrow)) $reid = $dbrow[reid]; 

$likeType = ”; 

if($type==’top’) 

$sql = “Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description 

From ying_arctype where reid=0 And ishidden1 order by sortrank asc limit 0,$row”; 

else if($type==”son”) 

//if($_sys_globals[typeid]&gt;0) $typeid = $_sys_globals[typeid]; 

if($typeid==0) { 

return ”; 

$sql = “Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description 

From ying_arctype where reid=’$typeid’ And ishidden1 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 ‘ying_arctype’ where reid=’$reid’ And ishidden1 order by sortrank asc limit 0,$row”; 

//And id’$typeid’ 

$dtp2 = new DedeTagParse(); 

$dtp2-&gt;SetNameSpace(“field”,”[","]“); 

$dtp2-&gt;LoadSource($innertext); 

$dsql2 = clone $dsql; 

$dsql-&gt;SetQuery($sql); 

$dsql-&gt;Execute(); 

$line = $row; 

$GLOBALS[autoindex] = 0; 

for($i=0;$i 1) $likeType .= “

登录后复制
”;  for($j=0;$j1) $likeType .= “ ”;  if($row=$dsql->GetArray())  {  if($type==’self’ && $row[id]==$typeid) //处理同级栏目中,当前栏目的样式  {  if($currentstyle!=”)  {  $linkOkstr = $currentstyle;  $row[typelink] = GetOneTypeUrlA($row);  $linkOkstr = str_replace(“~typelink~”,$row[typelink],$linkOkstr);  $linkOkstr = str_replace(“~typename~”,$row[typename],$linkOkstr);  $likeType .= $linkOkstr;  }  }else  {  $row[typelink] = $row[typeurl] = GetOneTypeUrlA($row);  if(is_array($dtp2->CTags))  {  foreach($dtp2->CTags as $tagid=>$ctag){  if(isset($row[$ctag->GetName()]))  {  $dtp2->Assign($tagid,$row[$ctag->GetName()]);  }  elseif (preg_match(‘/^sonchannel[0-9]*$/’,$ctag->GetName()))  {  $dtp2->Assign($tagid,lib_channel_son($ctag,$row[id],$dsql2));  }  }  }  $likeType .= $dtp2->GetResult();  }  }  if($col>1) $likeType .= “ ”;  $GLOBALS[autoindex]++;  }//Loop Col  if($col>1)  {  $i += $col – 1;  $likeType .= ”  ”;  }  }//Loop for $i  reset($dsql2);  $dsql->FreeResult();  return $likeType;  }  function lib_channel_son($ctag,$typeid = 0,$dsql2)  {  $attlist = “row|100,col|1,currentstyle|”;  FillAttsDefault($ctag->CAttribute->Items,$attlist);  extract($ctag->CAttribute->Items, EXTR_SKIP);  $innertext = $ctag->GetInnerText();  $dsql3 = clone $dsql2;  $likeType = ”;  //if($_sys_globals[typeid]>0) $typeid = $_sys_globals[typeid];  if($typeid==0) {  return ”;  }  $sql = “Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath,description  From ying_arctype where reid=’$typeid’ And ishidden1 order by sortrank asc limit 0,$row”;  //And id’$typeid’  $dtp2 = new DedeTagParse();  $dtp2->SetNameSpace(“field”,”[","]“);  $dtp2->LoadSource($innertext);  $dsql2->SetQuery($sql);  $dsql2->Execute();  $line = $row;  for($i=0;$i 1) $likeType .= “ ”;  for($j=0;$j1) $likeType .= “ ”;  if($row=$dsql2->GetArray())  {  $row[typelink] = $row[typeurl] = GetOneTypeUrlA($row);  if(is_array($dtp2->CTags))  {  foreach($dtp2->CTags as $tagid=>$ctag){  if(isset($row[$ctag->GetName()]))  {  $dtp2->Assign($tagid,$row[$ctag->GetName()]);  }  elseif (preg_match(‘/^sonchannel[0-9]*$/’,$ctag->GetName()))  {  $dtp2->Assign($tagid,lib_channel_son($ctag,$row[id],$dsql3));  }  }  }  $likeType .= $dtp2->GetResult();  }  if($col>1) $likeType .= “ ”;  }//Loop Col  if($col>1)  {  $i += $col – 1;  $likeType .= ”  ”;  }  }//Loop for $i  reset($dsql3);  $dsql2->FreeResult();  return $likeType;  }  ?>

在模板里面用 [field:sonchannel0] [/field:sonchannel0] 调用,这个是用来取子栏目用得(使用【sonchannel+数字】作为标签名是为了防止嵌套的时候无法正确解析标签),这个的作用就是当你的栏目有很多子栏目无限分级的时候方便你取子栏目的。实例一下: 

代码如下:

1

登录后复制
  {dede:channel type=son typeid=16}  [field:typename/]    [field:sonchannel0]  [field:typename/]    [field:sonchannel1]  [field:typename/]    [field:sonchannel2]  [field:typename/]    [field:sonchannel3]  [field:typename/]  [/field:sonchannel3]      [/field:sonchannel2]      [/field:sonchannel1]      [/field:sonchannel0]      {/dede:channel} 

以上typeid中的数字改成你的大分类的ID即可,因为在DEDE官方论坛没找到,所以这里发上来,希望能方便有用者。

注意:未免出错修改文件前请做好备份,以上代码可能有些引号又被自动转成全角的了,请修改成半角的,或者可以找萧涵索取此修改后的文件。

以上就是DEDECMS中怎么获取无限栏目子分类的详细内容,更多请关注php中文网其它相关文章!

最新文章