当前位置: 首页 > 织梦教程 > 织梦做英文站分页、当前位置设置英文

织梦做英文站分页、当前位置设置英文

365ymw / 2019-09-21
[] [] []

 首页我们上次介绍了<<DEDE织梦如何做中英文多语言站>>,但是有些细节还是无法满足英文站,比如列表分页出现“首页 上一页 下一页 末页”、当前位置:首页>about>,这样的问题改如何解决呢?今天就跟着技术工程师一起来学学吧。


1:列表分页英文设置教程
用arc.listview.class.php覆盖include/arc.listview.class.php

调用方法:
 {dede:pagelist listsize='5'/} 
{dede:pagelist pagelang='en' listsize='5'/}  
pagelang:en为英文,cn为中文,默认语言中文 

扩展阅读:
001 /**
002      *  获取静态的分页列表
003      *
004      * @access    public
005      * @param     string  $list_len  列表宽度
006      * @param     string  $list_len  列表样式
007      * @return    string
008      */
009     function GetPageListST($list_len,$listitem="index,end,pre,next,pageno",$pagelang)
010     {
011                     /*****************************************************************************************/
012                       if($pagelang='cn'){
013                                 $uahome="首页";
014                                $uaprevious="上一页";
015                                $uanext="下一页";
016                                $ualastpage="末页";
017                                $uapage="页";
018                                $uatotal="共";
019                                $uarecords="条记录";
020                             }else{
021                               $uahome=" Home ";
022                                $uaprevious=" Previous ";
023                                $uanext=" Next ";
024                                $ualastpage=" Last Page ";
025                                $uapage=" Page ";
026                                $uatotal=" Total ";
027                                $uarecords=" Records. ";
028                           }
029                      
030         $prepage $nextpage '';
031         $prepagenum $this->PageNo-1;
032         $nextpagenum $this->PageNo+1;
033         if($list_len=='' || ereg("[^0-9]",$list_len))
034         {
035             $list_len=3;
036         }
037         $totalpage ceil($this->TotalResult/$this->PageSize);
038         if($totalpage<=1 && $this->TotalResult>0)
039         {
040            return "<li><span class="pageinfo">".$uatotal." <strong>1</strong> ".$uapage." <strong>".$this->TotalResult."</strong>
041  
042 ".$uarecords."</span></li> ";
043         }
044         if($this->TotalResult == 0)
045         {
046         return "<li><span class="pageinfo">".$uatotal." <strong>0</strong> ".$uapage." <strong>".$this->TotalResult."</strong>
047  
048 ".$uarecords."</span></li> ";
049    
050         }
051         $purl $this->GetCurUrl();
052               $maininfo "<li><span class="pageinfo">".$uatotal." <strong>{$totalpage}</strong> ".$uapage." <strong>".$this->TotalResult."</strong>
053  
054 ".$uarecords."</span></li> ";
055             
056         $tnamerule $this->GetMakeFileRule($this->Fields['id'],"list",$this->Fields['typedir'],$this->Fields['defaultname'],$this->Fields
057  
058 ['namerule2']);
059         $tnamerule ereg_replace('^(.*)/','',$tnamerule);
060  
061         //获得上一页和主页的链接
062         if($this->PageNo != 1)
063         {
064             $prepage.="<li><a href='".str_replace("{page}",$prepagenum,$tnamerule)."'>".$uaprevious."</a></li> ";
065             $indexpage="<li><a href='".str_replace("{page}",1,$tnamerule)."'>".$uahome."</a></li> ";
066         }
067         else
068         {
069             $indexpage="<li>".$uahome."</li> ";
070         }
071  
072         //下一页,未页的链接
073         if($this->PageNo!=$totalpage && $totalpage>1)
074         {
075             $nextpage.="<li><a href='".str_replace("{page}",$nextpagenum,$tnamerule)."'>".$uanext."</a></li> ";
076             $endpage="<li><a href='".str_replace("{page}",$totalpage,$tnamerule)."'>".$ualastpage."</a></li> ";
077         }
078         else
079         {
080             $endpage="<li>".$ualastpage."</li> ";
081         }
082  
083         //option链接
084         $optionlist '';
085  
086         $optionlen strlen($totalpage);
087         $optionlen $optionlen*12 + 18;
088         if($optionlen < 36) $optionlen = 36;
089         if($optionlen > 100) $optionlen = 100;
090         $optionlist "<li><select name='sldd' style='width:{$optionlen}px' onchange='location.href=this.options[this.selectedIndex].value;'> ";
091         for($mjj=1;$mjj<=$totalpage;$mjj++)
092         {
093             if($mjj==$this->PageNo)
094             {
095                 $optionlist .= "<option value='".str_replace("{page}",$mjj,$tnamerule)."' selected>$mjj</option> ";
096             }
097             else
098             {
099                 $optionlist .= "<option value='".str_replace("{page}",$mjj,$tnamerule)."'>$mjj</option> ";
100             }
101         }
102         $optionlist .= "</select></li> ";
103  
104         //获得数字链接
105         $listdd="";
106         $total_list $list_len * 2 + 1;
107         if($this->PageNo >= $total_list)
108         {
109             $j $this->PageNo-$list_len;
110             $total_list $this->PageNo+$list_len;
111             if($total_list>$totalpage)
112             {
113                 $total_list=$totalpage;
114             }
115         }
116         else
117         {
118             $j=1;
119             if($total_list>$totalpage)
120             {
121                 $total_list=$totalpage;
122             }
123         }
124         for($j;$j<=$total_list;$j++)
125         {
126             if($j==$this->PageNo)
127             {
128                 $listdd.= "<li class="thisclass">$j</li> ";
129             }
130             else
131             {
132                 $listdd.="<li><a href='".str_replace("{page}",$j,$tnamerule)."'>".$j."</a></li> ";
133             }
134         }
135         $plist '';
136         if(preg_match('/index/i'$listitem)) $plist .= $indexpage;
137         if(preg_match('/pre/i'$listitem)) $plist .= $prepage;
138         if(preg_match('/pageno/i'$listitem)) $plist .= $listdd;
139         if(preg_match('/next/i'$listitem)) $plist .= $nextpage;
140         if(preg_match('/end/i'$listitem)) $plist .= $endpage;
141         if(preg_match('/option/i'$listitem)) $plist .= $optionlist;
142         if(preg_match('/info/i'$listitem)) $plist .= $maininfo;
143          
144         return $plist;
145     }


2:{dede:field name='position'}中英文双语
替换前面的“首页”两成“Home”就行了,后台的栏目用英文就行
标签:{dede:field name='position'  function='str_replace("首页","Home",Html2Text("@me"))'/}

本文链接:http://www.365ymw.com/article-1408.html 转载请保留出处,谢谢!

中查找“织梦做英文站分页、当前位置设置英文”更多相关内容

用户评论

暂时还没有任何用户评论
用户名: 匿名用户
E-mail:
评价等级:
评论内容:
验证码: captcha

浏览历史

免责条款 | 隐私保护 | 联系我们 | 公司简介 | 报价单 | 积分商城 | 留言板
Copyright © 2010-2024 365ymw.com All Rights Reserved. 365源码商城
免责声明:部分图片素材及板块内容来自网络,如有侵犯您的权益,请联系我们,站长会立即处理!
备案号:鄂ICP备2024039974号-1