table_forum_debatepost.php
1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_forum_debatepost.php 32145 2012-11-15 09:38:42Z liulanbo $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_forum_debatepost extends discuz_table
{
public function __construct() {
$this->_table = 'forum_debatepost';
$this->_pk = 'pid';
parent::__construct();
}
public function update_voters($pid, $uid) {
DB::query("UPDATE %t SET voters=voters+1, voterids=CONCAT(voterids, '%d\t') WHERE pid=%d", array($this->_table, $uid, $pid));
}
public function fetch_all_voters($tid, $number) {
return DB::fetch_all("SELECT SUM(voters) as voters, stand, uid FROM %t WHERE tid=%d AND stand>'0' GROUP BY uid ORDER BY voters DESC LIMIT %d", array($this->_table, $tid, $number));
}
public function get_stand_by_bestuid($tid, $bestuid, $excludeuids) {
if(!$excludeuids) {
return;
}
return DB::result_first("SELECT stand FROM %t WHERE tid=%d AND uid=%d AND stand>'0' AND %i LIMIT 1", array($this->_table, $tid, $bestuid, DB::field('uid', $excludeuids,'notin')));
}
public function get_numbers_by_bestuid($tid, $bestuid) {
$return = DB::fetch_first("SELECT SUM(voters) AS voters, COUNT(*) AS replies FROM %t WHERE tid=%d AND uid=%d", array($this->_table, $tid, $bestuid));
return array($return['voters'], $return['replies']);
}
public function count_by_tid_stand($tid, $stand) {
return DB::result_first("SELECT COUNT(*) FROM %t WHERE tid=%d AND stand=%d", array($this->_table, $tid, $stand));
}
public function get_firststand($tid, $uid) {
return DB::result_first("SELECT stand FROM %t WHERE tid=%d AND uid=%d AND stand>'0' ORDER BY dateline LIMIT 1", array($this->_table, $tid, $uid));
}
public function delete_by_tid($tids) {
if(!$tids) {
return;
}
return DB::delete($this->_table, DB::field('tid', $tids));
}
}
?>