Source for file stats.php
Documentation is available at stats.php
* @copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
* Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details
* @author Luis Argerich (lrargerich@yahoo.com)
require_once( '../kernel/setup_inc.php' );
include_once( SEARCH_PKG_PATH. 'searchstats_lib.php');
$gBitSystem->verifyFeature( 'search_stats' );
if (isset ($_REQUEST["clear"])) {
$searchstatslib->clear_search_stats();
if ( empty( $_REQUEST["sort_mode"] ) ) {
$sort_mode = 'hits_desc';
$sort_mode = $_REQUEST["sort_mode"];
if (!isset ($_REQUEST["offset"])) {
$offset = $_REQUEST["offset"];
if (isset ($_REQUEST['page'])) {
$page = &$_REQUEST['page'];
$offset = ($page - 1) * $max_records;
$gBitSmarty->assign_by_ref('offset', $offset);
if (isset ($_REQUEST["find"])) {
$find = $_REQUEST["find"];
$gBitSmarty->assign('find', $find);
$gBitSmarty->assign_by_ref('sort_mode', $sort_mode);
$channels = $searchstatslib->list_search_stats($offset, $max_records, $sort_mode, $find);
$cant_pages = ceil($channels["cant"] / $max_records);
$gBitSmarty->assign_by_ref('cant_pages', $cant_pages);
$gBitSmarty->assign('actual_page', 1 + ($offset / $max_records));
if ($channels["cant"] > ($offset + $max_records)) {
$gBitSmarty->assign('next_offset', $offset + $max_records);
$gBitSmarty->assign('next_offset', - 1);
// If offset is > 0 then prev_offset
$gBitSmarty->assign('prev_offset', $offset - $max_records);
$gBitSmarty->assign('prev_offset', - 1);
$gBitSmarty->assign_by_ref('channels', $channels["data"]);
$gBitSystem->display( 'bitpackage:stats/search_stats.tpl', NULL, array( 'display_mode' => 'display' ));
|