当前位置:首页 > CMS教程 > phpcms > 列表

PHPCMS自定义标签无法分页问题解决办法

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-04 11:07:24 浏览: 评论:0 

自定义标签无法分页问题对于很多朋友来讲是一个无法解决的问题了,但今天小编看到一篇比较好的处理办法,下面整理给各位参考。

PHPCMS提供了很多标签方便调用数据,但是在二次开发中,有时要自己写PHPCMS标签,但是遇到分页的时候无法显示分页,本人介绍开发PHPCMS标签分页的正确解决方案。

比如PHPCMS的lists标签,代码如下:

{pc:content  action=”lists” catid=”2″ where=”thumb!=” AND status=99″ order=”id DESC” num=”4″}

通过自带的lists标签,可以很方便调用某个类别的列表,在模板中调用,显示分页直接用{$pages}即可,在/modules/content/classes/content_tag.class.php中自定义了一个PHPCMS列表标签,但是自定义的列表标签,调用{$pages},分页是出不来的,那么如何进行分页呢?代码如下:

  1. if (isset($page)) { 
  2.  $str .= '$pagesize = '.$num.';'
  3.  $str .= '$page = intval('.$page.') ? intval('.$page.') : 1;if($page<=0){$page=1;}'
  4.  $str .= '$offset = ($page - 1) * $pagesize;'
  5.  $datas['limit'] = '$offset.",".$pagesize'
  6.  $datas['action'] = $action
  7.  $str .= '$'.$op.'_total = $'.$op.'_tag->count('.self::arr_to_html($datas).');'
  8.  $str .= '$pages = pages($'.$op.'_total, $page, $pagesize, $urlrule);'

我们要了解PHPCMS标签的原理就明白了,在/libs/classes/template_cache.class.php中定义了模板标签解析类,原来lists标签能够分页,调用了pages函数,我们注意第8行,有个_tag->count()的方法,这个方法返回的参数作为pages的第一个参数,也就是总页数,而自定义列表标签,并没有count这个方法.

在/modules/content/classes/content_tag.class.php中,有个count方法,代码如下:

  1. /** 
  2.  * 分页统计 
  3.  * @param $data 
  4.  */ 
  5. public function count($data) { 
  6.  if($data['action'] == 'lists') { 
  7.   $catid = intval($data['catid']); 
  8.   if(!$this->set_modelid($catid)) return false; 
  9.   if(isset($data['where'])) { 
  10.    $sql = $data['where']; 
  11.   } else { //开源软件:phpfensi.com 
  12.    if($this->category[$catid]['child']) { 
  13.     $catids_str = $this->category[$catid]['arrchildid']; 
  14.     $pos = strpos($catids_str,',')+1; 
  15.     $catids_str = substr($catids_str$pos); 
  16.     $sql = "status=99 AND catid IN ($catids_str)"
  17.    } else { 
  18.     $sql = "status=99 AND catid='$catid'"
  19.    } 
  20.   } 
  21.   return $this->db->count($sql); 
  22.  } 

看到第6行,当标签动作是lists时,进行一系列操作获取总数,因此我们自定义的列表标签,也应该加一个这样的判断,当$data[‘action’]==’自定义的动作名称’时,计算查询条件的总数,代码如下:

  1. elseif ($data['action'] == 'c_lists') { 
  2.  list($catid,$language,$size,$page) = explode('-'$data['search']); 
  3.  //$catid = intval($data['catid']); 
  4.  $catid = $catid+1; 
  5.  $language_setting = getcache('language_setting''commons'); 
  6.  $size_setting = array
  7.      1=>' unit="MB" and size<=10'
  8.      ' unit="MB" and size>=10 and size<=50'
  9.      ' unit="MB" and size>=50 and size<=100'
  10.      ' unit="MB" and size>=100 and size<=200'
  11.      ' unit="MB" and size>=200 and size<=500'
  12.      ' unit="MB" and size>=500 and size<1000'
  13.      ' unit="GB" and size>=1 and size<=2'
  14.      ' unit="GB" and size>=2 and size<=4'
  15.      ' unit="GB" and size>=4'
  16.     ); 
  17.  if(!$this->set_modelid($catid)) return false; 
  18.  if(isset($data['where'])) { 
  19.   $sql = $data['where']; 
  20.  } else { 
  21.   $thumb = intval($data['thumb']) ? " AND thumb != ''" : ''
  22.   if($this->category[$catid]['child']) { 
  23.    $catids_str = $this->category[$catid]['arrchildid']; 
  24.    $pos = strpos($catids_str,',')+1; 
  25.    $catids_str = substr($catids_str$pos); 
  26.    $sql = "status=99 AND catid IN ($catids_str)".$thumb
  27.   } else { 
  28.    $sql = "status=99 AND catid='$catid'".$thumb
  29.   } 
  30.   if ($language) { 
  31.    $sql .= " AND language = '".$language_setting[$language]."'"
  32.   } 
  33.   if ($size) { 
  34.    $sql .= " AND".$size_setting[$size]; 
  35.   } 
  36.  } 
  37.  return $this->db->count($sql); 

代码紧接着上面的,这样,PHPCMS自定义的列表标签也可以使用{$pages}正常显示分页.

PHPCMS不修改程序自定义分页格式,请看源代码:

  1. {if $pages
  2. <div class="pages"
  3. <select name="select_pages" onchange="location.href=this.options[this.selectedIndex].value;"
  4. {str_replace("a href""option value"str_replace(".."""str_replace("</a""</option"str_replace("a class""option class"str_replace("</span>""页</option>"str_replace("<span>""<option selected>第"str_replace("> "">"$pages)))))))}</select>{/pc} 
  5. </div> 
  6. {/if

这里用到了PHP的替换函数str_replace,可以任意的替换默认生成代码,从而实现PHPCMS不修改程序自定义分页格式.

Tags: PHPCMS自定义标签 PHPCMS无法分页

分享到: