仔细观察dedecms的页面构造

来源:爱站网时间:2020-06-18编辑:网友分享
dedecms的页面构造新手可以完成的,但是很多页面都需要进行改进,下文是爱站技术频道小编带给大家的仔细观察dedecms的页面构造,我们一起看看下文的详解吧!

dedecms的页面构造新手可以完成的,但是很多页面都需要进行改进,下文是爱站技术频道小编带给大家的仔细观察dedecms的页面构造,我们一起看看下文的详解吧!

dede的分页如果有两个页码显示的话,无法显示出总的文章数,举个例子:

在普通文章模型下面,列表的分页是这样的:

但是在独立模型中就成了这样了

最后面的共*页*条的信息不见了,相信遇到这个问题的同学首先想到的是自己哪里用错了,其实不是,dede独立模型这里的代码是偷工减料了的。处理独立模型列表的代码在arc.sglistview.class.php中,我们比较下同样负责显示分页的代码段,独立模型和普通模型中有什么区别:

普通文章模型:

/**
* 获取动态的分页列表
*
* @access public
* @param string $list_len 列表宽度
* @param string $list_len 列表样式
* @return string
*/
function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
{
global $cfg_rewrite;
$prepage = $nextpage = '';
$prepagenum = $this->PageNo-1;
$nextpagenum = $this->PageNo+1;
if($list_len=='' || preg_match("/[^0-9]/", $list_len))
{
$list_len=3;
}
$totalpage = ceil($this->TotalResult/$this->PageSize);
if($totalpageTotalResult>0)
{
return "
  • 共 1 页/".$this->TotalResult." 条记录
  • \r\n"; } if($this->TotalResult == 0) { return "
  • 共 0 页/".$this->TotalResult." 条记录
  • \r\n"; } $maininfo = "
  • {$totalpage}".$this->TotalResult."
  • \r\n"; $purl = $this->GetCurUrl(); // 如果开启为静态,则对规则进行替换 if($cfg_rewrite == 'Y') { $nowurls = preg_replace("/\-/", ".php?", $purl); $nowurls = explode("?", $nowurls); $purl = $nowurls[0]; } $geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&"; $purl .= '?'.$geturl; $optionlist = ''; //$hidenform = "\r\n"; //$hidenform .= "\r\n"; //获得上一页和下一页的链接 if($this->PageNo != 1) { $prepage.="
  • 上一页
  • \r\n"; $indexpage="
  • 首页
  • \r\n"; } else { $indexpage="
  • 首页
  • \r\n"; } if($this->PageNo!=$totalpage && $totalpage>1) { $nextpage.="
  • 下一页
  • \r\n"; $endpage="
  • 末页
  • \r\n"; } else { $endpage="
  • 末页
  • \r\n"; } //获得数字链接 $listdd=""; $total_list = $list_len * 2 + 1; if($this->PageNo >= $total_list) { $j = $this->PageNo-$list_len; $total_list = $this->PageNo+$list_len; if($total_list>$totalpage) { $total_list=$totalpage; } } else { $j=1; if($total_list>$totalpage) { $total_list=$totalpage; } } for($j;$jPageNo) { $listdd.= "
  • $j
  • \r\n"; } else { $listdd.="
  • ".$j."
  • \r\n"; } } $plist = ''; if(preg_match('/index/i', $listitem)) $plist .= $indexpage; if(preg_match('/pre/i', $listitem)) $plist .= $prepage; if(preg_match('/pageno/i', $listitem)) $plist .= $listdd; if(preg_match('/next/i', $listitem)) $plist .= $nextpage; if(preg_match('/end/i', $listitem)) $plist .= $endpage; if(preg_match('/option/i', $listitem)) $plist .= $optionlist; if(preg_match('/info/i', $listitem)) $plist .= $maininfo; if($cfg_rewrite == 'Y') { $plist = str_replace('.php?tid=', '-', $plist); $plist = str_replace('&TotalResult=', '-', $plist); $plist = preg_replace("/&PageNo=(\d+)/i",'-\\1.html',$plist); } return $plist; }

    独立模型:

    /**
    * 获取动态的分页列表
    *
    * @access public
    * @param int $list_len 列表宽度
    * @param string $listitem 列表样式
    * @return string
    */
    function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
    {
    global $nativeplace,$infotype,$keyword;
    if(empty($nativeplace)) $nativeplace = 0;
    if(empty($infotype)) $infotype = 0;
    if(empty($keyword)) $keyword = '';
    $prepage = $nextpage = '';
    $prepagenum = $this->PageNo - 1;
    $nextpagenum = $this->PageNo + 1;
    if($list_len=="" || preg_match("/[^0-9]/", $list_len))
    {
    $list_len=3;
    }
    $totalpage = ceil($this->TotalResult / $this->PageSize);
    if($totalpageTotalResult>0)
    {
    return "共1页/".$this->TotalResult."条记录";
    }
    if($this->TotalResult == 0)
    {
    return "共0页/".$this->TotalResult."条记录";
    }
    $purl = $this->GetCurUrl();
    $geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&nativeplace=$nativeplace&infotype=$infotype&keyword=".urlencode($keyword)."&";
    $hidenform = "\r\n";
    $hidenform = "\r\n";
    $hidenform = "\r\n";
    $hidenform = "\r\n";
    $hidenform .= "\r\n";
    $purl .= "?".$geturl;
    //获得上一页和下一页的链接
    if($this->PageNo != 1)
    {
    $prepage.="
  • 上一页
  • \r\n"; $indexpage="
  • 首页
  • \r\n"; } else { $indexpage="
  • 首页
  • \r\n"; } if($this->PageNo!=$totalpage && $totalpage>1) { $nextpage.="
  • 下一页
  • \r\n"; $endpage="
  • 末页
  • \r\n"; } else { $endpage="
  • 末页
  • "; } //获得数字链接 $listdd=""; $total_list = $list_len * 2 + 1; if($this->PageNo >= $total_list) { $j = $this->PageNo - $list_len; $total_list = $this->PageNo + $list_len; if($total_list > $totalpage) { $total_list = $totalpage; } } else { $j=1; if($total_list > $totalpage) { $total_list = $totalpage; } } for($j; $j PageNo) { $listdd.= "
  • $j
  • \r\n"; } else { $listdd.="
  • ".$j."
  • \r\n"; } } $plist = $indexpage.$prepage.$listdd.$nextpage.$endpage; return $plist; }

    仔细观察 普通模型中在28行左右的位置多了句$maininfo = "

  • {$totalpage}".$this->TotalResult."
  • \r\n";而在独立模型中则没有。

    而且在最后,普通模型中将$maininfo的值加入了$plist字符串中。(更细节的地方是普通模型还判断了标签中是否有info属性来决定是否加入:

    if(preg_match('/info/i', $listitem)) $plist .= $maininfo;

    )独立模型中这些都省了。

    要将独立模型修改过来很简单,不过“普通模型还判断了标签中是否有info属性来决定是否加入”这点我就不去实现了,这里不判断直接再任何情况下都加入maininfo:

    /**
    * 获取动态的分页列表
    *
    * @access public
    * @param int $list_len 列表宽度
    * @param string $listitem 列表样式
    * @return string
    */
    function GetPageListDM($list_len,$listitem="index,end,pre,next,pageno")
    {
    global $nativeplace,$infotype,$keyword;
    if(empty($nativeplace)) $nativeplace = 0;
    if(empty($infotype)) $infotype = 0;
    if(empty($keyword)) $keyword = '';
    $prepage = $nextpage = '';
    $prepagenum = $this->PageNo - 1;
    $nextpagenum = $this->PageNo + 1;
    if($list_len=="" || preg_match("/[^0-9]/", $list_len))
    {
    $list_len=3;
    }
    $totalpage = ceil($this->TotalResult / $this->PageSize);
    if($totalpageTotalResult>0)
    {
    return "共1页/".$this->TotalResult."条记录";
    }
    if($this->TotalResult == 0)
    {
    return "共0页/".$this->TotalResult."条记录";
    }
    $maininfo = "
  • {$totalpage}".$this->TotalResult."
  • \r\n"; $purl = $this->GetCurUrl(); $geturl = "tid=".$this->TypeID."&TotalResult=".$this->TotalResult."&nativeplace=$nativeplace&infotype=$infotype&keyword=".urlencode($keyword)."&"; $hidenform = "\r\n"; $hidenform = "\r\n"; $hidenform = "\r\n"; $hidenform = "\r\n"; $hidenform .= "\r\n"; $purl .= "?".$geturl; //获得上一页和下一页的链接 if($this->PageNo != 1) { $prepage.="
  • 上一页
  • \r\n"; $indexpage="
  • 首页
  • \r\n"; } else { $indexpage="
  • 首页
  • \r\n"; } if($this->PageNo!=$totalpage && $totalpage>1) { $nextpage.="
  • 下一页
  • \r\n"; $endpage="
  • 末页
  • \r\n"; } else { $endpage="
  • 末页
  • "; } //获得数字链接 $listdd=""; $total_list = $list_len * 2 + 1; if($this->PageNo >= $total_list) { $j = $this->PageNo - $list_len; $total_list = $this->PageNo + $list_len; if($total_list > $totalpage) { $total_list = $totalpage; } } else { $j=1; if($total_list > $totalpage) { $total_list = $totalpage; } } for($j; $j PageNo) { $listdd.= "
  • $j
  • \r\n"; } else { $listdd.="
  • ".$j."
  • \r\n"; } } $plist = $indexpage.$prepage.$listdd.$nextpage.$endpage;; return $plist; }

    以上内容就是爱站技术频道小编分享的仔细观察dedecms的页面构造,详细看完的朋友一定都有所了解,为了帮助更多朋友,我们还整理了更加齐全的知识。

    上一篇:织梦之tag标签显示相应文章的修改方法

    下一篇:实现织梦DedeCMS点击“在本页阅读全文”的具体方法

    您可能感兴趣的文章

    相关阅读

    热门软件源码

    最新软件源码下载