total = intval( $total ); $this->limitstart = max( intval($limitstart), 0 ); $this->limit = max( intval($limit), 0 ); } /** * Returns the html limit # input box * @param string The basic link to include in the href * @return string */ function getLimitBox ( $link ) { $limits = array(); for ($i=5; $i <= 30; $i+=5) { $limits[] = mosHTML::makeOption( "$i" ); } $limits[] = mosHTML::makeOption( "50" ); // build the html select list $link = sefRelToAbs($link.'&limit=\' + this.options[selectedIndex].value + \'&limitstart='.$this->limitstart); return mosHTML::selectList( $limits, 'limit', 'class="inputbox" size="1" onchange="document.location.href=\''.$link.'\';"', 'value', 'text', $this->limit ); } /** * Writes the html limit # input box * @param string The basic link to include in the href */ function writeLimitBox ( $link ) { echo mosPageNav::getLimitBox( $link ); } /** * Writes the html for the pages counter, eg, Results 1-10 of x */ function writePagesCounter() { $txt = ''; $from_result = $this->limitstart+1; if ($this->limitstart + $this->limit < $this->total) { $to_result = $this->limitstart + $this->limit; } else { $to_result = $this->total; } if ($this->total > 0) { $txt .= sprintf(T_('Results %d - %d of %d'), $from_result, $to_result, $this->total); } return $txt; } /** * Writes the html for the leafs counter, eg, Page 1 of x */ function writeLeafsCounter() { $txt = ''; $page = $this->limitstart+1; if ($this->total > 0) { $txt .= sprintf(T_('Page %d of %d'), $page, $this->total); } return $txt; } /** * Writes the html links for pages, eg, previous, next, 1 2 3 ... x * @param string The basic link to include in the href */ function writePagesLinks( $link ) { // clean link - could be better filtered in rewrite // stops XSS require_once(mamboCore::get('mosConfig_absolute_path').'/includes/phpInputFilter/class.inputfilter.php'); $iFilter = new InputFilter( null, null, 1, 1 ); $link = trim( $iFilter->process( $link ) ); // Removing task breaks nagivation - temporarily removed for 4.6.2 release // For more information, See FS#127, alwarren // $link = preg_replace("/(task.*?)&/i", "", $link); $txt = ''; $displayed_pages = 10; $total_pages = ceil( $this->total / $this->limit ); $this_page = ceil( ($this->limitstart+1) / $this->limit ); $start_loop = (floor(($this_page-1)/$displayed_pages))*$displayed_pages+1; if ($start_loop + $displayed_pages - 1 < $total_pages) { $stop_loop = $start_loop + $displayed_pages - 1; } else { $stop_loop = $total_pages; } $link .= '&limit='. $this->limit; if ($this_page > 1) { $page = ($this_page - 2) * $this->limit; $txt .= '<< '. T_('Start') .' '; $txt .= '< '. T_('Previous') .' '; } else { $txt .= '<< '. T_('Start') .' '; $txt .= '< '. T_('Previous') .' '; } for ($i=$start_loop; $i <= $stop_loop; $i++) { $page = ($i - 1) * $this->limit; if ($i == $this_page) { $txt .= ''. $i .' '; } else { $txt .= ''. $i .' '; } } if ($this_page < $total_pages) { $page = $this_page * $this->limit; $end_page = ($total_pages-1) * $this->limit; $txt .= ''. T_('Next') .' > '; $txt .= ''. T_('End') .' >>'; } else { $txt .= ''. T_('Next') .' > '; $txt .= ''. T_('End') .' >>'; } return $txt; } } ?>