24 lines
533 B
PHP
24 lines
533 B
PHP
<?php
|
|
/**
|
|
* ZenTaoPHP的分页类。
|
|
* The pager class file of ZenTaoPHP framework.
|
|
*
|
|
* The author disclaims copyright to this source code. In place of
|
|
* a legal notice, here is a blessing:
|
|
*
|
|
* May you do good and not evil.
|
|
* May you find forgiveness for yourself and forgive others.
|
|
* May you share freely, never taking more than you give.
|
|
*/
|
|
|
|
helper::import(dirname(dirname(__FILE__)) . '/base/pager/pager.class.php');
|
|
/**
|
|
* pager类.
|
|
* Pager class.
|
|
*
|
|
* @package framework
|
|
*/
|
|
class pager extends basePager
|
|
{
|
|
}
|