0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
rating
/
[
Home
]
File: configlib.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: configlib.php 33195 2011-03-02 17:43:40Z changi67 $ class RatingConfigLib extends TikiDb_Bridge { function get_configurations() { return $this->fetchAll( 'SELECT * FROM `tiki_rating_configs`' ); } function create_configuration( $name ) { $this->query( 'INSERT INTO `tiki_rating_configs` ( `name`, `formula` ) VALUES( ?, ? )', array( $name, '(rating-average (object type object-id))' ) ); return $this->lastInsertId(); } function update_configuration( $id, $name, $expiry, $formula ) { $this->query( 'UPDATE `tiki_rating_configs` SET `name` = ?, `expiry` = ?, `formula` = ? WHERE `ratingConfigId` = ?', array( $name, $expiry, $formula, $id ) ); } function record_value( $info, $type, $object, $value ) { $now = time() + $info['expiry']; $this->query( 'INSERT INTO `tiki_rating_obtained` ( `ratingConfigId`, `type`, `object`, `value`, `expire` ) VALUES( ?, ?, ?, ?, ? ) ON DUPLICATE KEY UPDATE `value` = ?, `expire` = ?', array( $info['ratingConfigId'], $type, $object, $value, $now, $value, $now ) ); } function get_expired_object_list( $max ) { global $prefs; if( $prefs['feature_wiki'] == 'y' ) { $this->query( 'INSERT IGNORE INTO `tiki_rating_obtained` ( `ratingConfigId`, `type`, `object`, `value`, `expire` ) SELECT `ratingConfigId`, "wiki page", `page_id`, 0, 0 FROM `tiki_pages`, `tiki_rating_configs`' ); } if( $prefs['feature_wiki_comments'] == 'y' || $prefs['feature_forums'] == 'y' ) { $this->query( 'INSERT IGNORE INTO `tiki_rating_obtained` ( `ratingConfigId`, `type`, `object`, `value`, `expire` ) SELECT `ratingConfigId`, "comment", `threadId`, 0, 0 FROM `tiki_comments`, `tiki_rating_configs`' ); } if( $prefs['feature_articles'] == 'y' ) { $this->query( 'INSERT IGNORE INTO `tiki_rating_obtained` ( `ratingConfigId`, `type`, `object`, `value`, `expire` ) SELECT `ratingConfigId`, "article", `articleId`, 0, 0 FROM `tiki_articles`, `tiki_rating_configs`' ); } return $this->fetchAll( 'SELECT `type`, `object` FROM `tiki_rating_obtained` WHERE `expire` < UNIX_TIMESTAMP() GROUP BY `type`, `object` ORDER BY `expire`', array(), $max ); } } global $ratingconfiglib; $ratingconfiglib = new RatingConfigLib;