0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
hotwords
/
[
Home
]
File: hotwordlib.php
<?php // (c) Copyright 2002-2011 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 33195 2011-03-02 17:43:40Z changi67 $ //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 { 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; } 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; } function remove_hotword($word) { $query = "delete from `tiki_hotwords` where `word`=?"; $result = $this->query($query,array($word)); } } $hotwordlib = new HotwordsLib;