예제 #1
0
    exit;
}
// Start Next/Prev Navigation
/*******
 * We cap the navigation at 2000 items because php sometimes acts wierd
 * when sessions get to big.  In most cases, this won't effect anyone.  Note
 * that reportList won't ever return more than max_nav_count by design.
 *******/
if ($query->totalResults < $config['max_nav_count']) {
    $_SESSION['reportList'] = $query->reportList;
} else {
    unset($_SESSION['reportList']);
    $content->assign('notice', 'This query returned too many reports for next/previous navigation to work');
}
$content->assign('column', $query->columnHeaders());
$content->assign('row', $query->outputHTML());
/* this particular continuity_params is for pagination (it doesn't include 'page') */
$content->assign('continuity_params', $query->continuityParams(array('page')));
/* Pagination */
$pages = ceil($query->totalResults / $query->show);
/* These variables are also used for pagination purposes */
$content->assign('count', $query->totalResults);
$content->assign('show', $query->show);
$content->assign('page', $query->page);
$content->assign('pages', $pages);
if ($query->page > 10) {
    $start = $query->page - 10;
}
if ($query->page < 10) {
    $start = 1;
}