2015-12-05 11:09:31 +08:00
|
|
|
|
<?php
|
2016-11-10 11:26:52 +08:00
|
|
|
|
if (!defined('__ACCESS_PLUGIN_ROOT__')) {
|
|
|
|
|
throw new Exception('Boostrap file not found');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Access_Page
|
2015-12-05 11:09:31 +08:00
|
|
|
|
{
|
|
|
|
|
private $each_disNums; //每页显示的条目数
|
|
|
|
|
private $nums; //总条目数
|
|
|
|
|
private $current_page; //当前被选中的页
|
|
|
|
|
private $sub_pages; //每次显示的页数
|
|
|
|
|
private $pageNums; //总页数
|
|
|
|
|
private $page_array = array(); //用来构造分页的数组
|
2016-11-10 11:26:52 +08:00
|
|
|
|
private $otherParams = array();
|
2015-12-05 11:09:31 +08:00
|
|
|
|
/**
|
|
|
|
|
*
|
|
|
|
|
* __construct是SubPages的构造函数,用来在创建类的时候自动运行.
|
|
|
|
|
* @$each_disNums 每页显示的条目数
|
|
|
|
|
* @nums 总条目数
|
|
|
|
|
* @current_num 当前被选中的页
|
|
|
|
|
* @sub_pages 每次显示的页数
|
|
|
|
|
* @subPage_type 显示分页的类型
|
|
|
|
|
*
|
|
|
|
|
* 当@subPage_type=1的时候为普通分页模式
|
|
|
|
|
* example: 共4523条记录,每页显示10条,当前第1/453页 [首页] [上页] [下页] [尾页]
|
|
|
|
|
* 当@subPage_type=2的时候为经典分页样式
|
|
|
|
|
* example: 当前第1/453页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页]
|
|
|
|
|
*/
|
2016-11-10 11:26:52 +08:00
|
|
|
|
public function __construct($each_disNums, $nums, $current_page, $sub_pages, $otherParams)
|
2015-12-05 11:09:31 +08:00
|
|
|
|
{
|
|
|
|
|
$this->each_disNums = intval($each_disNums);
|
2016-03-28 14:45:00 +08:00
|
|
|
|
$this->nums = intval($nums);
|
2016-11-10 11:26:52 +08:00
|
|
|
|
if (!$current_page) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$this->current_page = 1;
|
2016-11-10 11:26:52 +08:00
|
|
|
|
} else {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$this->current_page = intval($current_page);
|
|
|
|
|
}
|
2016-03-28 14:45:00 +08:00
|
|
|
|
$this->sub_pages = intval($sub_pages);
|
|
|
|
|
$this->pageNums = ceil($nums / $each_disNums);
|
2016-11-10 11:26:52 +08:00
|
|
|
|
$this->otherParams = $otherParams;
|
2016-03-28 14:45:00 +08:00
|
|
|
|
|
2015-12-05 11:09:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
用来给建立分页的数组初始化的函数。
|
|
|
|
|
*/
|
|
|
|
|
public function initArray()
|
|
|
|
|
{
|
2016-11-10 11:26:52 +08:00
|
|
|
|
for ($i = 0; $i < $this->sub_pages; $i++) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$this->page_array[$i] = $i;
|
|
|
|
|
}
|
|
|
|
|
return $this->page_array;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
construct_num_Page该函数使用来构造显示的条目
|
|
|
|
|
即使:[1][2][3][4][5][6][7][8][9][10]
|
|
|
|
|
*/
|
|
|
|
|
public function construct_num_Page()
|
|
|
|
|
{
|
2016-11-10 11:26:52 +08:00
|
|
|
|
if ($this->pageNums < $this->sub_pages) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$current_array = array();
|
2016-11-10 11:26:52 +08:00
|
|
|
|
for ($i = 0; $i < $this->pageNums; $i++) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$current_array[$i] = $i + 1;
|
|
|
|
|
}
|
2016-11-10 11:26:52 +08:00
|
|
|
|
} else {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$current_array = $this->initArray();
|
2016-11-10 11:26:52 +08:00
|
|
|
|
if ($this->current_page <= 3) {
|
|
|
|
|
for ($i = 0; $i < count($current_array); $i++) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$current_array[$i] = $i + 1;
|
|
|
|
|
}
|
2016-11-10 11:26:52 +08:00
|
|
|
|
} elseif ($this->current_page <= $this->pageNums && $this->current_page > $this->pageNums - $this->sub_pages + 1) {
|
|
|
|
|
for ($i = 0; $i < count($current_array); $i++) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$current_array[$i] = ($this->pageNums) - ($this->sub_pages) + 1 + $i;
|
|
|
|
|
}
|
2016-11-10 11:26:52 +08:00
|
|
|
|
} else {
|
|
|
|
|
for ($i = 0; $i < count($current_array); $i++) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$current_array[$i] = $this->current_page - 2 + $i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $current_array;
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
构造经典模式的分页
|
|
|
|
|
当前第1/453页 [首页] [上页] 1 2 3 4 5 6 7 8 9 10 [下页] [尾页]
|
|
|
|
|
*/
|
|
|
|
|
public function show()
|
|
|
|
|
{
|
|
|
|
|
$str = "";
|
2016-11-10 11:26:52 +08:00
|
|
|
|
if ($this->current_page > 1) {
|
2016-03-28 14:45:00 +08:00
|
|
|
|
$firstPageUrl = $this->buildUrl(1);
|
|
|
|
|
$prevPageUrl = $this->buildUrl($this->current_page - 1);
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$str .= '<li><a href="' . $prevPageUrl . '">«</a></li>';
|
2016-11-10 11:26:52 +08:00
|
|
|
|
} else {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$str .= '';
|
|
|
|
|
}
|
|
|
|
|
$a = $this->construct_num_Page();
|
2016-03-28 14:45:00 +08:00
|
|
|
|
|
2016-11-10 11:26:52 +08:00
|
|
|
|
for ($i = 0; $i < count($a); $i++) {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$s = $a[$i];
|
2016-11-10 11:26:52 +08:00
|
|
|
|
if ($s == $this->current_page) {
|
2016-03-28 14:45:00 +08:00
|
|
|
|
$url = Typecho_Request::getInstance()->getRequestUrl();
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$str .= '<li class="current"><a href="' . $url . '">' . $s . '</a></li>';
|
2016-11-10 11:26:52 +08:00
|
|
|
|
} else {
|
2016-03-28 14:45:00 +08:00
|
|
|
|
$url = $this->buildUrl($s);
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$str .= '<li><a href="' . $url . '">' . $s . '</a></li>';
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-10 11:26:52 +08:00
|
|
|
|
if ($this->current_page < $this->pageNums) {
|
2016-03-28 14:45:00 +08:00
|
|
|
|
$lastPageUrl = $this->buildUrl($this->pageNums);
|
|
|
|
|
$nextPageUrl = $this->buildUrl($this->current_page + 1);
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$str .= '<li><a href="' . $nextPageUrl . '">»</a></li>';
|
2016-11-10 11:26:52 +08:00
|
|
|
|
} else {
|
2015-12-05 11:09:31 +08:00
|
|
|
|
$str .= '';
|
|
|
|
|
}
|
|
|
|
|
return $str;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-28 14:45:00 +08:00
|
|
|
|
private function buildUrl($page)
|
|
|
|
|
{
|
2016-11-10 11:26:52 +08:00
|
|
|
|
$url = Typecho_Common::url('extending.php?' . http_build_query(array_merge($this->otherParams,
|
|
|
|
|
array(
|
|
|
|
|
'page' => $page,
|
|
|
|
|
))),
|
|
|
|
|
Typecho_Widget::widget('Widget_Options')->adminUrl);
|
2016-03-28 14:45:00 +08:00
|
|
|
|
return $url;
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-05 11:09:31 +08:00
|
|
|
|
}
|