Log in

View Full Version : Showing results 1 to x (Navigation)


elricstorm
05-09-2007, 11:05 AM
Which template controls the small bar at the top of the page when you wish to view the next ## results etc.? It's the bar that says:

Page 1 of 1178 (1 2 3 4 11 51 101 501 1001) > Last ยป

..Where you can click the numbers to navigate per page or go to the last page or use the go to page drop down feature. I want to incorporate this bar into one of my pages and can't figure out where the template/code is located at so I can review it.

Any idea?

I found it.

It was in forumdisplay.php and it was $pagenav.

WetWired
05-09-2007, 01:42 PM
A pagenav is constructed like this:
sanitize_pageresults($resultcount,$pagenumber,$per page,$maxperpage,$defaultperpage);
$pagenav=construct_page_nav($pagenumber,$perpage,$ resultcount,$pagebaseurl);
sanitize_pageresults will change the pagenumber and perpage variables to sane values, so do this before the code that uses them.