0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
hotwords
/
[
Home
]
File: hotwordlib.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: hotwordlib.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 HotwordsLib extends TikiLib { /** * @param int $offset * @param $maxRecords * @param string $sort_mode * @param string $find * @return array */ function list_hotwords($offset = 0, $maxRecords = -1, $sort_mode = 'word_desc', $find = '') { if ($find) { $findesc = '%' . $find . '%'; $mid = " where `word` like ?"; $bindvars = array($findesc); } else { $mid = ''; $bindvars = array(); } $query = "select * from `tiki_hotwords` $mid order by ".$this->convertSortMode($sort_mode); $query_cant = "select count(*) from `tiki_hotwords` $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; } /** * @param $word * @param $url * @return bool */ function add_hotword($word, $url) { // $word = addslashes($word); $url = addslashes($url); $query = "delete from `tiki_hotwords` where `word`=?"; $result = $this->query($query, array($word)); $query = "insert into `tiki_hotwords`(`word`,`url`) values(?,?)"; $result = $this->query($query, array($word,$url)); return true; } /** * @param $word */ function remove_hotword($word) { $query = "delete from `tiki_hotwords` where `word`=?"; $result = $this->query($query, array($word)); } } $hotwordlib = new HotwordsLib;