<?php
namespace ticky;
class page {
public $firstRow; public $totalRows; public $pageRows; public $totalPages; public $nowPage = 1; public $pageParam; public $arguments = []; protected $url;
public function __construct($totalRows, $pageRows) {
$this->pageParam = config::get('http', 'page_param');
$this->nowPage = request::get($this->pageParam, 1);
$this->totalRows = $totalRows; $this->pageRows = $pageRows;
$this->firstRow = $this->pageRows * ($this->nowPage - 1); $this->totalPages = ceil($this->totalRows / $this->pageRows);
if (!empty($this->totalPages) && $this->nowPage > $this->totalPages) {
$this->nowPage = $this->totalPages;
}
return $this;
}
public function url($pageNo) {
$pageNo = $pageNo >= $this->totalPages ? $this->totalPages : intval($pageNo);
if ($pageNo > 0) {
return route::url('', [$this->pageParam => $pageNo], false, '');
} else {
return route::url('', '');
}
}
public function now() {
return $this->url($this->nowPage);
}
public function prev() {
$pageNo = ($this->nowPage - 1) > 0 ? ($this->nowPage - 1) : 1;
return $this->url($pageNo);
}
public function next() {
$pageNo = ($this->nowPage + 1) > $this->totalPages ? $this->totalPages : ($this->nowPage + 1);
return $this->url($pageNo);
}
public function start() {
return $this->url(1);
}
public function end() {
return $this->url($this->totalPages);
}
public function total() {
return $this->totalPages;
}
public function numbers($length = 5) {
$per = floor($length / 2);
$min = $this->nowPage - $per;
if ($length % 2) {
$max = $this->nowPage + ceil($length / 2) - 1;
} else {
$max = $this->nowPage + $per - 1;
}
if ($max > $this->totalPages) {
$min -= $max - $this->totalPages;
}
if ($min < 1) {
$max += 1 - $min;
}
$max > $this->totalPages && $max = $this->totalPages;
$min < 1 && $min = 1;
$numbers = new \stdClass();
foreach (range($min, $max) as $k => $v) {
$numbers->$k->num = $v;
$numbers->$k->url = $this->url($v);
}
return $numbers;
}
public function limit() {
return $this->firstRow . ',' . $this->pageRows;
}
}