thinkPHP5.1框架使用SemanticUI實(shí)現(xiàn)分頁(yè)功能示例
本文實(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框架無刷新分頁(yè)實(shí)現(xiàn)方法分析
- tp5框架內(nèi)使用tp3.2分頁(yè)的方法分析
- ThinkPHP5.1+Ajax實(shí)現(xiàn)的無刷新分頁(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è)樣式的方法示例
相關(guān)文章
詳解PHP函數(shù) strip_tags 處理字符串缺陷bug
這篇文章主要介紹了詳解PHP函數(shù) strip_tags 處理字符串缺陷bug的相關(guān)資料,需要的朋友可以參考下2017-06-06
ThinkPHP實(shí)現(xiàn)將SESSION存入MYSQL的方法
這篇文章主要介紹了ThinkPHP實(shí)現(xiàn)將SESSION存入MYSQL的方法,需要的朋友可以參考下2014-07-07
PHP中trait的使用和同時(shí)引入多個(gè)trait時(shí)同名方法沖突的處理方法
這篇文章主要介紹了PHP中trait的使用和同時(shí)引入多個(gè)trait時(shí)同名方法沖突的處理,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-04-04
yii2實(shí)現(xiàn)Ueditor百度編輯器的示例代碼
這篇文章主要介紹了yii2實(shí)現(xiàn)Ueditor百度編輯器的示例代碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-11-11
Thinkphp 框架基礎(chǔ)之源碼獲取、環(huán)境要求與目錄結(jié)構(gòu)分析
這篇文章主要介紹了Thinkphp 框架基礎(chǔ)之源碼獲取、環(huán)境要求與目錄結(jié)構(gòu),簡(jiǎn)單分析了Thinkphp源碼的獲取方法、下載地址、安裝環(huán)境要求以及目錄結(jié)構(gòu),需要的朋友可以參考下2020-04-04
php操作xml并將其插入數(shù)據(jù)庫(kù)的實(shí)現(xiàn)方法
下面小編就為大家?guī)硪黄猵hp操作xml并將其插入數(shù)據(jù)庫(kù)的實(shí)現(xiàn)方法。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2016-09-09
ThinkPHP連接數(shù)據(jù)庫(kù)操作示例【基于DSN方式和數(shù)組傳參的方式】
這篇文章主要介紹了ThinkPHP連接數(shù)據(jù)庫(kù)操作,結(jié)合實(shí)例形式分析了thinkPHP基于DSN方式和數(shù)組傳參的方式進(jìn)行數(shù)據(jù)庫(kù)連接的實(shí)現(xiàn)步驟與屬性設(shè)置、控制器、模板使用等相關(guān)操作技巧,需要的朋友可以參考下2018-03-03

