花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來到素材無憂網(wǎng),按 + 收藏我們
登錄 注冊 退出 找回密碼

織夢 只調(diào)用 上一頁下一頁或者 上一篇 下一篇的 鏈接

時(shí)間: 2017-10-15 21:01 閱讀: 作者:素材無憂網(wǎng)

在我們做程序開發(fā)的時(shí)候,dede織夢內(nèi)頁的時(shí)候,往往上一頁下頁 用不到默認(rèn)的樣式,我們只需要用到上一頁 下一頁的鏈接

常見   點(diǎn)擊箭頭 翻頁 織夢無憂來給大家提供一個(gè)詳細(xì)的處理教程


首先我們找到織夢的內(nèi)核文件:
//打開織夢系統(tǒng)文件 /include/arc.archives.class.php 找到GetPreNext函數(shù)  

把默認(rèn)的用以下內(nèi)容替換掉就可以了
function GetPreNext($gtype='')  
   {  
       $rs = '';  
       if(count($this->PreNext)<2)  
       {  
           $aid = $this->ArcID;  
           $preR =  $this->dsql->GetOne("Select id From `dede_arctiny` where id<$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id desc");  
           $nextR = $this->dsql->GetOne("Select id From `dede_arctiny` where id>$aid And arcrank>-1 And typeid='{$this->Fields['typeid']}' order by id asc");  
           $next = (is_array($nextR) ? " where arc.id={$nextR['id']} " : ' where 1>2 ');  
           $pre = (is_array($preR) ? " where arc.id={$preR['id']} " : ' where 1>2 ');  
           $query = "Select arc.id,arc.title,arc.shorttitle,arc.typeid,arc.ismake,arc.senddate,arc.arcrank,arc.money,arc.filename,arc.litpic,  
                       t.typedir,t.typename,t.namerule,t.namerule2,t.ispart,t.moresite,t.siteurl,t.sitepath  
                       from `dede_archives` arc left join dede_arctype t on arc.typeid=t.id  ";  
           $nextRow = $this->dsql->GetOne($query.$next);  
           $preRow = $this->dsql->GetOne($query.$pre);  
           if(is_array($preRow))  
           {  
               $mlink = GetFileUrl($preRow['id'],$preRow['typeid'],$preRow['senddate'],$preRow['title'],$preRow['ismake'],$preRow['arcrank'],  
               $preRow['namerule'],$preRow['typedir'],$preRow['money'],$preRow['filename'],$preRow['moresite'],$preRow['siteurl'],$preRow['sitepath']);  
               $this->PreNext['pre'] = "<a href='$mlink'>{$preRow['title']}</a> ";  
            $this->PreNext['preurl']=$mlink;  
               $this->PreNext['preimg'] = "<a href='$mlink'><img src=\"{$preRow['litpic']}\" alt=\"{$preRow['title']}\"/></a> ";   
           }  
           else  
           {  
               $this->PreNext['pre'] = "沒有了 ";  
            $this->PreNext['preurl'] = "javascript:void:";  
               $this->PreNext['preimg'] ="<img src=\"/templets/default/images/nophoto.jpg\" alt=\"對不起,沒有上一圖集了!\"/>";  
           }  
           if(is_array($nextRow))  
           {  
               $mlink = GetFileUrl($nextRow['id'],$nextRow['typeid'],$nextRow['senddate'],$nextRow['title'],$nextRow['ismake'],$nextRow['arcrank'],  
               $nextRow['namerule'],$nextRow['typedir'],$nextRow['money'],$nextRow['filename'],$nextRow['moresite'],$nextRow['siteurl'],$nextRow['sitepath']);  
               $this->PreNext['next'] = "下一篇:<a href='$mlink'>{$nextRow['title']}</a> ";  
            $this->PreNext['nexturl']=$mlink;  
               $this->PreNext['nextimg'] = "<a href='$mlink'><img src=\"{$nextRow['litpic']}\" alt=\"{$nextRow['title']}\"/></a> ";  
           }  
           else  
           {  
               $this->PreNext['next'] = "下一篇:沒有了 ";  
            $this->PreNext['nexturl'] = "javascript:void:";  
               $this->PreNext['nextimg'] ="<a href='javascript:void(0)' alt=\"\"><img src=\"/templets/default/images/nophoto.jpg\" alt=\"對不起,沒有下一圖集了!\"/></a>";  
           }  
       }  
       if($gtype=='pre')  
       {  
           $rs =  $this->PreNext['pre'];  
       }  
       else if($gtype=='preimg'){  
             
           $rs =  $this->PreNext['preimg'];  
       }  
       else if($gtype=='next')  
       {  
           $rs =  $this->PreNext['next'];  
       }  
       else if($gtype=='nextimg'){  
             
           $rs =  $this->PreNext['nextimg'];  
       }  
       else if($gtype=='preurl'){  
        $rs = $this->PreNext['preurl'];  
    }else if($gtype=='nexturl'){  
        $rs = $this->PreNext['nexturl'];  
    }  
      
       else{  
           $rs =  $this->PreNext['pre']."   ".$this->PreNext['next'];  
       }  
       return $rs;  
   }  

調(diào)用方法:
<li><a href="{dede:prenext get='preurl'/}" class="pr"><</a></li>  
<li><a href="{dede:prenext get='nexturl'/}" class="pr">></a></li>  

版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!

轉(zhuǎn)載請注明: 織夢 只調(diào)用 上一頁下一頁或者 上一篇 下一篇的 鏈接

標(biāo)簽: 織夢  
相關(guān)文章
模板推薦