主頁(yè) > 知識(shí)庫(kù) > thinkPHP5.1框架使用SemanticUI實(shí)現(xiàn)分頁(yè)功能示例

thinkPHP5.1框架使用SemanticUI實(shí)現(xiàn)分頁(yè)功能示例

熱門標(biāo)簽:仁和怎么申請(qǐng)400開(kāi)頭的電話 高德地圖標(biāo)注家 哪里辦理400電話 江西手機(jī)自動(dòng)外呼防封系統(tǒng)是什么 怎么向銷售公司推銷外呼系統(tǒng) 長(zhǎng)春人工外呼系統(tǒng)服務(wù)商 廣州防封卡外呼系統(tǒng)多少錢一個(gè)月 外呼系統(tǒng)撥打暫時(shí)無(wú)法接通 廣東地市地圖標(biāo)注

本文實(shí)例講述了thinkPHP5.1框架使用SemanticUI實(shí)現(xiàn)分頁(yè)功能。分享給大家供大家參考,具體如下:

1、config目錄下新建paginate.php,下面是文件的內(nèi)容

?php
//分頁(yè)配置
return
  [
    'type' => 'Semantic',
    'var_page' => 'page',
  ];

2、thinkphp\library\think\paginator\driver\下新建Semantic.php,下面是文件的內(nèi)容

?php
/**
 * Created by alic(AlicFeng) on 17-6-15 下午9:17 from PhpStorm.
 * Email is alic@samego.com
 */
namespace think\paginator\driver;
use think\Paginator;
class Semantic extends Paginator
{
  private static $previousButtonHtml = 'i class="icon left arrow">/i>';
  private static $nextButtonHtml = 'i class="icon right arrow">/i>';
  /**
   * 上一頁(yè)按鈕
   * @return string
   */
  protected function getPreviousButton() {
    if ($this->currentPage() = 1) {
      return $this->getDisabledTextWrapper(Semantic::$previousButtonHtml);
    }
    $url = $this->url(
      $this->currentPage() - 1
    );
    return $this->getPageLinkWrapper($url, Semantic::$previousButtonHtml);
  }
  /**
   * 下一頁(yè)按鈕
   * @return string
   */
  protected function getNextButton() {
    if (!$this->hasMore) {
      return $this->getDisabledTextWrapper(Semantic::$nextButtonHtml);
    }
    $url = $this->url($this->currentPage() + 1);
    return $this->getPageLinkWrapper($url, Semantic::$nextButtonHtml);
  }
  /**
   * 頁(yè)碼按鈕
   * @return string
   */
  protected function getLinks() {
    $block = [
      'first' => null,
      'slider' => null,
      'last'  => null
    ];
    $side  = 3;
    $window = $side * 2;
    if ($this->lastPage  $window + 6) {
      $block['first'] = $this->getUrlRange(1, $this->lastPage);
    } elseif ($this->currentPage = $window) {
      $block['first'] = $this->getUrlRange(1, $window + 2);
      $block['last'] = $this->getUrlRange($this->lastPage - 1, $this->lastPage);
    } elseif ($this->currentPage > ($this->lastPage - $window)) {
      $block['first'] = $this->getUrlRange(1, 2);
      $block['last'] = $this->getUrlRange($this->lastPage - ($window + 2), $this->lastPage);
    } else {
      $block['first'] = $this->getUrlRange(1, 2);
      $block['slider'] = $this->getUrlRange($this->currentPage - $side, $this->currentPage + $side);
      $block['last']  = $this->getUrlRange($this->lastPage - 1, $this->lastPage);
    }
    $html = '';
    if (is_array($block['first'])) {
      $html .= $this->getUrlLinks($block['first']);
    }
    if (is_array($block['slider'])) {
      $html .= $this->getDots();
      $html .= $this->getUrlLinks($block['slider']);
    }
    if (is_array($block['last'])) {
      $html .= $this->getDots();
      $html .= $this->getUrlLinks($block['last']);
    }
    return $html;
  }
  /**
   * 渲染分頁(yè)html
   * @return mixed
   */
  public function render() {
    if ($this->hasPages()) {
      if ($this->simple){
        return sprintf(
          'div style="text-align: center">div class="ui pagination menu">%s %s/div>/div>',
          $this->getPreviousButton(),
          $this->getNextButton()
        );
      }else{
        return sprintf(
          'div style="text-align: center">div class="ui pagination menu">%s %s %s/div>/div>',
          $this->getPreviousButton(),
          $this->getLinks(),
          $this->getNextButton()
        );
      }
    }
    return null;
  }
  /**
   * 生成一個(gè)可點(diǎn)擊的按鈕
   *
   * @param string $url
   * @param int $page
   * @return string
   */
  protected function getAvailablePageWrapper($url, $page) {
    return 'a href="' . htmlentities($url) . '" rel="external nofollow" class="item">' . $page . '/a>';
  }
  /**
   * 生成一個(gè)禁用的按鈕
   *
   * @param string $text
   * @return string
   */
  protected function getDisabledTextWrapper($text) {
    return 'a class="disabled item">' . $text . '/a>';
  }
  /**
   * 生成一個(gè)激活的按鈕
   *
   * @param string $text
   * @return string
   */
  protected function getActivePageWrapper($text) {
    return 'a class="active item">' . $text . '/a>';
  }
  /**
   * 生成省略號(hào)按鈕
   *
   * @return string
   */
  protected function getDots() {
    return $this->getDisabledTextWrapper('...');
  }
  /**
   * 批量生成頁(yè)碼按鈕.
   *
   * @param array $urls
   * @return string
   */
  protected function getUrlLinks(array $urls) {
    $html = '';
    foreach ($urls as $page => $url) {
      $html .= $this->getPageLinkWrapper($url, $page);
    }
    return $html;
  }
  /**
   * 生成普通頁(yè)碼按鈕
   *
   * @param string $url
   * @param int $page
   * @return string
   */
  protected function getPageLinkWrapper($url, $page) {
    if ($page == $this->currentPage()) {
      return $this->getActivePageWrapper($page);
    }
    return $this->getAvailablePageWrapper($url, $page);
  }
}

3、搞定

更多關(guān)于thinkPHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《ThinkPHP入門教程》、《thinkPHP模板操作技巧總結(jié)》、《ThinkPHP常用方法總結(jié)》、《codeigniter入門教程》、《CI(CodeIgniter)框架進(jìn)階教程》、《Zend FrameWork框架入門教程》及《PHP模板技術(shù)總結(jié)》。

希望本文所述對(duì)大家基于ThinkPHP框架的PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • tp5框架無(wú)刷新分頁(yè)實(shí)現(xiàn)方法分析
  • tp5框架內(nèi)使用tp3.2分頁(yè)的方法分析
  • ThinkPHP5.1+Ajax實(shí)現(xiàn)的無(wú)刷新分頁(yè)功能示例
  • thinkphp5框架前后端分離項(xiàng)目實(shí)現(xiàn)分頁(yè)功能的方法分析
  • thinkphp5+layui實(shí)現(xiàn)的分頁(yè)樣式示例
  • ThinkPHP5&5.1框架關(guān)聯(lián)模型分頁(yè)操作示例
  • thinkPHP5框架分頁(yè)樣式類完整示例
  • thinkPHP5框架實(shí)現(xiàn)基于ajax的分頁(yè)功能示例
  • thinkPHP5框架實(shí)現(xiàn)分頁(yè)查詢功能的方法示例
  • thinkPHP5使用laypage分頁(yè)插件實(shí)現(xiàn)列表分頁(yè)功能
  • thinkPHP5分頁(yè)功能實(shí)現(xiàn)方法分析
  • TP5框架實(shí)現(xiàn)自定義分頁(yè)樣式的方法示例

標(biāo)簽:梅河口 惠州 廈門 文山 黔東 湘西 濮陽(yáng) 海北

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《thinkPHP5.1框架使用SemanticUI實(shí)現(xiàn)分頁(yè)功能示例》,本文關(guān)鍵詞  thinkPHP5.1,框架,使用,SemanticUI,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《thinkPHP5.1框架使用SemanticUI實(shí)現(xiàn)分頁(yè)功能示例》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于thinkPHP5.1框架使用SemanticUI實(shí)現(xiàn)分頁(yè)功能示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章