Common fleaphp method Pager usage

Source: Internet
Author: User

Pager paging Function Copy codeThe Code is as follows :/**
* Constructor
*
* If the $ source parameter is a TableDataGateway object, FLEA_Helper_Pager calls
* The findCount () and findAll () of the TDG object are used to determine the total number of records and return the record set.
*
* If the $ source parameter is a string, it is assumed to be an SQL statement. In this case, FLEA_Helper_Pager
* The calculated paging parameters are not automatically called. The setCount () method must be used for paging calculation.
* Total number of basic records.
*
* If the $ source parameter is a string, the $ conditions and $ sortby parameters are not required.
* You can use the setDBO () method to set the database access object to be used. Otherwise, FLEA_Helper_Pager
* A default database access object will be obtained.
*
* @ Param TableDataGateway | string $ source
* @ Param int $ currentPage
* @ Param int $ pageSize
* @ Param mixed $ conditions
* @ Param string $ sortby
* @ Param int $ basePageIndex
*
* @ Return FLEA_Helper_Pager
*/
Function FLEA_Helper_Pager (& $ source, $ currentPage, $ pageSize = 20, $ conditions = null, $ sortby = null, $ basePageIndex = 0)
{
$ This-> _ basePageIndex = $ basePageIndex;
$ This-> _ currentPage = $ this-> currentPage = $ currentPage;
$ This-> pageSize = $ pageSize;
If (is_object ($ source )){
$ This-> source = & $ source;
$ This-> _ conditions = $ conditions;
$ This-> _ sortby = $ sortby;
$ This-> totalCount = $ this-> count = (int) $ this-> source-> findCount ($ conditions );
$ This-> computingPage ();
} Elseif (! Empty ($ source )){
$ This-> source = $ source;
$ SQL = "SELECT COUNT (*) FROM ($ source) as _ count_table ";
$ This-> dbo = & FLEA: getDBO ();
$ This-> totalCount = $ this-> count = (int) $ this-> dbo-> getOne ($ SQL );
$ This-> computingPage ();
}
}

Pager parameter description
$ Source database operations
$ CurrentPage current page
$ PageSize: number of records displayed per page
$ Conditions query conditions
$ Sortby sorting method
$ BasePageIndex page number base
Example of Pager usage (Instance)Copy codeThe Code is as follows: $ dirname = dirname (_ FILE __);
Define ('app _ dir', $ dirname. '/app ');
Define ('no _ LEGACY_FLEAPHP ', true );
Require ($ dirname. '/FleaPHP/FLEA. php ');
// Set the cache directory
FLEA: setAppInf ('internalcachedir', $ dirname. '/_ cache ');
// Link to the database
$ Dsn = array (
'Driver '=> 'mysql ',
'Host' => 'localhost ',
'Login' => 'root ',
'Password' => '',
'Database' => 'wordpress'
);
FLEA: setAppInf ('dbdsn ', $ dsn );
// Read wp_posts content
FLEA: loadClass ('flea _ Db_TableDataGateway ');
FLEA: loadClass ('flea _ Helper_Pager ');
// FLEA: loadHelper ('pager ');
Class Teble_Class extends FLEA_Db_TableDataGateway {
Var $ tableName = 'wp _ posts ';
Var $ primaryKey = 'id ';
}
$ Tableposts = & new Teble_Class ();
$ Pager = & new FLEA_Helper_Pager ($ tableposts, 2, 5 );
$ Page = $ pager-> getPagerData ();
Print_r ($ page );

GetPagerData returns some data for calling.Copy codeThe Code is as follows: $ data = array (
'Pagesize' => $ this-> pageSize,
'Totalcount' => $ this-> totalCount,
'Count' => $ this-> count,
'Pagecount' => $ this-> pageCount,
'Firstpage' => $ this-> firstPage,
'Firstpagenumber' => $ this-> firstPageNumber,
'Lastpage' => $ this-> lastPage,
'Lastpagenumber' => $ this-> lastPageNumber,
'Prevpage' => $ this-> prevPage,
'Prevpagenumber' => $ this-> prevPageNumber,
'Nextpage' => $ this-> nextPage,
'Nextpagenumber' => $ this-> nextPageNumber,
'Currentpage' => $ this-> currentPage,
'Currentpagenumber' => $ this-> currentPageNumber,
);

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.