全国400电话网上服务平台
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
dedecms在channel标签增加可选择范围的属性
POST TIME:2020-03-30 16:32
changel的作用是调用网站栏目,根据row这个属性可以自定义调出栏目个数。但在有的频道页面需要调用一些指定ID几到几的一些栏目。可能有一些人想直接将链接写死在模版里。后来觉得这样对程序的扩展性不是很好。客户是不懂程序的,你不能指望他也会修改模版。于是就有了做这样一个小功能的想法。
在原来的dede:channel基础上增加了一个limit属性。 limit是起点,row是条数
- {dede:channel type='son' limit='2' typeid='1' reid='1' row='10' "
- <a href='~typelink~' class='thisclass'>~typename~</a> |"}
- <a href="[field:typelink/]">
- <span class="aaa">[field:typename/]</span>
- </a>
- {/dede:channel}
将以下的代码复制到--网站域名/include/taglib/channel.lib.php中进行覆盖:
- function lib_channel(&$ctag,&$refObj)
- {
- global $dsql;
- $attlist = "typeid|0,reid|0,row|100,col|1,type|son,currentstyle|,cacheid|,limit|0";
- FillAttsDefault($ctag->CAttribute->Items,$attlist);
- extract($ctag->CAttribute->Items, EXTR_SKIP);
- $innertext = $ctag->GetInnerText();
- $line = emptyempty($row) ? 100 : $row;
- $likeType = '';
- //读取固定的缓存块
- $cacheid = trim($cacheid);
- if($cacheid !='') {
- $likeType = GetCacheBlock($cacheid);
- if($likeType != '') return $likeType;
- }
- $reid = 0;
- $topid = 0;
- //如果属性里没指定栏目id,从引用类里获取栏目信息
- if(emptyempty($typeid))
- {
- if( isset($refObj->TypeLink->TypeInfos['id']) )
- {
- $typeid = $refObj->TypeLink->TypeInfos['id'];
- $reid = $refObj->TypeLink->TypeInfos['reid'];
- $topid = $refObj->TypeLink->TypeInfos['topid'];
- }
- else {
- $typeid = 0;
- }
- }
- //如果指定了栏目id,从数据库获取栏目信息
- else
- {
- $row2 = $dsql->GetOne("Select * From `dede_arctype` where id='$typeid' ");
- $typeid = $row2['id'];
- $reid = $row2['reid'];
- $topid = $row2['topid'];
- $issetInfos = true;
- }
- if($type=='' || $type=='sun') $type='son';
- if($innertext=='') $innertext = GetSysTemplets("channel_list.htm");
- if($type=='top')
- {
- $sql = "Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath
- From `dede_arctype` where reid=0 And ishidden<>1 order by sortrank asc limit $limit, $line ";
- }
- else if($type=='son')
- {
- if($typeid==0) return '';
- $sql = "Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath From `dede_arctype` where reid='$typeid' And ishidden<>1 order by sortrank asc limit $limit, $line ";
- }
- else if($type=='self')
- {
- if($reid==0) return '';
- $sql = "Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath From `dede_arctype` where reid='$reid' And ishidden<>1 order by sortrank asc limit $limit, $line ";
- }
- //And id<>'$typeid'
- $needRel = false;
- $dtp2 = new DedeTagParse();
- $dtp2->SetNameSpace('field','[',']');
- $dtp2->LoadSource($innertext);
- //检查是否有子栏目,并返回rel提示(用于二级菜单)
- if(ereg(':rel', $innertext)) $needRel = true;
- if(emptyempty($sql)) return '';
- $dsql->SetQuery($sql);
- $dsql->Execute();
- $totalRow = $dsql->GetTotalRow();
- //如果用子栏目模式,当没有子栏目时显示同级栏目
- if($type=='son' && $reid!=0 && $totalRow==0)
- {
- $sql = "Select id,typename,typedir,isdefault,ispart,defaultname,namerule2,moresite,siteurl,sitepath From `dede_arctype` where reid='$reid' And ishidden<>1 order by sortrank asc limit $limit, $line ";
- $dsql->SetQuery($sql);
- $dsql->Execute();
- }
- $GLOBALS['autoindex'] = 0;
- for($i=0;$i < $line;$i++)
- {
- if($col>1) $likeType .= "<dl> ";
- for($j=0; $j<$col; $j++)
- {
- if($col>1) $likeType .= "<dd> ";
- if($row=$dsql->GetArray())
- {
- $row['sonids'] = $row['rel'] = '';
- if($needRel)
- {
- $row['sonids'] = GetSonIds($row['id'], 0, false);
- if($row['sonids']=='') $row['rel'] = '';
- else $row['rel'] = " rel='dropmenu{$row['id']}'";
- }
- //处理同级栏目中,当前栏目的样式
- if( ($row['id']==$typeid || ($topid==$row['id'] && $type=='top') ) && $currentstyle!='' )
- {
- $linkOkstr = $currentstyle;
- $row['typelink'] = GetOneTypeUrlA($row);
- $linkOkstr = str_replace("~rel~",$row['rel'],$linkOkstr);
- $linkOkstr = str_replace("~id~",$row['id'],$linkOkstr);
- $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()]);
- }
- }
- $likeType .= $dtp2->GetResult();
- }
- }
- if($col>1) $likeType .= "</dd> ";
- $GLOBALS['autoindex']++;
- }
- //Loop Col
- if($col>1)
- {
- $i += $col - 1;
- $likeType .= " </dl> ";
- }
- }
- //Loop for $i
- $dsql->FreeResult();
- if($cacheid !='') {
- WriteCacheBlock($cacheid, $likeType);
- }
- return $likeType;
- }
Copyright © 2003-2016
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278
时间:9:00-21:00 (节假日不休)
版权所有:巨人网络(扬州)科技有限公司
总部地址:江苏省信息产业基地11号楼四层
《增值电信业务经营许可证》 苏B2-20120278