class Helper_Page{
/**メッセージの総数*/
var $infoCount;
/**総ページ数*/
var $pageCount;
/**ページごとに表示されるアイテムの数*/
var $items;
/**現在のページ番号*/
var $pageNo;
/**クエリの開始位置*/
var $startPos;
/**次のページ*/
var $nextPageNo;
/**前のページ*/
var $prevPageNo;
function Helper_Page($infoCount, $items, $pageNo)
{
$this->infoCount = $infoCount;
$this->items = $items;
$this->ページ番号 = $ページ番号;
$this->pageCount = $this->GetPageCount();
$this->AdjustPageNo();
$this->startPos = $this->GetStartPos();
}
function AdjustPageNo()
{
if($this->pageNo == '' || $this->pageNo $this->pageNo = 1;
if ($this->pageNo > $this->pageCount)
$this->pageNo = $this->pageCount;
}
/**
*次のページ
*/
function GoToNextPage()
{
$nextPageNo = $this->pageNo + 1;
if ($nextPageNo > $this->pageCount)
{
$this->nextPageNo = $this->pageCount;
false を返します。
}
$this->nextPageNo = $nextPageNo;
true を返します。
}
/**
* 前のページ
*/
function GotoPrevPage()
{
$prevPageNo = $this->pageNo - 1;
if ($prevPageNo {
$this->prevPageNo = 1;
false を返します。
}
$this->prevPageNo = $prevPageNo;
true を返します。
}
function GetPageCount()
{
return ceil($this->infoCount / $this->items);
}
function GetStartPos()
{
return ($this->pageNo - 1) * $this->items;
}
}