table_common_mytask.php
1.89 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
61
62
63
64
65
66
67
68
69
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_common_mytask.php 27777 2012-02-14 07:07:26Z zhengqingpeng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_common_mytask extends discuz_table
{
public function __construct() {
$this->_table = 'common_mytask';
$this->_pk = '';
parent::__construct();
}
public function delete($uid, $taskid) {
$condition = array();
if($uid) {
$condition[] = DB::field('uid', $uid);
}
if($taskid) {
$condition[] = DB::field('taskid', $taskid);
}
DB::delete($this->_table, implode(' AND ', $condition));
}
public function update($uid, $taskid, $data) {
if(!$data || !is_array($data)) {
return;
}
$condition = array();
if($uid) {
$condition[] = DB::field('uid', $uid);
}
if($taskid) {
$condition[] = DB::field('taskid', $taskid);
}
DB::update($this->_table, $data, implode(' AND ', $condition));
}
public function count($uid, $taskid = false, $status = false) {
$taskid = $taskid !== false ? 'AND taskid='.intval($taskid) : '';
$status = $status !== false ? 'AND status='.intval($status) : '';
return DB::result_first("SELECT COUNT(*) FROM %t WHERE uid=%d %i %i", array($this->_table, $uid, $taskid, $status));
}
public function delete_exceed($exceedtime) {
DB::query("DELETE FROM %t WHERE status='-1' AND dateline<%d", array($this->_table, TIMESTAMP - intval($exceedtime)), false, true);
}
public function fetch_all_by_taskid($taskid, $limit) {
return DB::fetch_all("SELECT * FROM %t WHERE taskid=%d ORDER BY dateline DESC LIMIT 0, %d", array($this->_table, $taskid, $limit));
}
public function fetch($uid, $taskid) {
return DB::fetch_first("SELECT * FROM %t WHERE uid=%d AND taskid=%d", array($this->_table, $uid, $taskid));
}
}
?>