0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
search
/
[
Home
]
File: searchstatslib.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: searchstatslib.php 53803 2015-02-06 00:42:50Z jyhem $ //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"], basename(__FILE__)) !== false) { header("location: index.php"); exit; } /** * */ class SearchStatsLib extends TikiLib { function clear_search_stats() { $query = "delete from tiki_search_stats"; $result = $this->query($query, array()); } function register_term_hit($term) { $term = trim($term); $table = $this->table('tiki_search_stats'); $table->insertOrUpdate( array( 'hits' => $table->increment(1), ), array( 'term' => $term, 'hits' => 1, ) ); } /** * @param $offset * @param $maxRecords * @param $sort_mode * @param $find * @return array */ function list_search_stats($offset, $maxRecords, $sort_mode, $find) { if ($find) { $mid = " where (`term` like ?)"; $bindvars = array("%$find%"); } else { $mid = ""; $bindvars = array(); } $query = "select * from `tiki_search_stats` $mid order by " . $this->convertSortMode($sort_mode); $query_cant = "select count(*) from `tiki_search_stats` $mid"; $result = $this->query($query, $bindvars, $maxRecords, $offset); $cant = $this->getOne($query_cant, $bindvars); $ret = array(); while ($res = $result->fetchRow(DB_FETCHMODE_ASSOC)) { $ret[] = $res; } $retval = array(); $retval["data"] = $ret; $retval["cant"] = $cant; return $retval; } }