So I've been following this tutorial on JPagination and on the section about with JDatabase it has a variable $option on line 2 "$option.limit". (It hasn't been referenced anywhere else on the page, I'm unsure on where this value is being declared/initialized).
$db =& JFactory::getDBO();
$lim = $mainframe->getUserStateFromRequest("$option.limit", 'limit', 14, 'int'); //I guess getUserStateFromRequest is for session or different reasons
$lim0 = JRequest::getVar('limitstart', 0, '', 'int');
$db->setQuery('SELECT SQL_CALC_FOUND_ROWS x, y, z FROM jos_content WHERE x',$lim0, $lim);
$rL=&$db->loadAssocList();
if (empty($rL)) {$jAp->enqueueMessage($db->getErrorMsg(),'error'); return;}
else {
////Here the beauty starts
$db->setQuery('SELECT FOUND_ROWS();'); //no reloading the query! Just asking for total without limit
jimport('joomla.html.pagination');
$pageNav = new JPagination( $db->loadResult(), $lim0, $lim );
foreach($rL as $r) {
//your display code here
}
echo $pageNav->getListFooter( ); //Displays a nice footer
I've had a look around joomla docs on pages such as this to see if the $option variable is relevant to the limitBox, because the limitbox
is what is setting the amount things to be displayed. But I haven't had much luck.
Therefore I'm wondering how are you meant to obtain the information from the variable $option and/or the current selection from the LimitBox in JPagination.
Pastebin link to my implementation [expires in 24 hours]