table_security_eviluser.php
1.32 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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_security_eviluser.php 33944 2013-09-04 07:33:32Z nemohou $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_security_eviluser extends discuz_table {
public function __construct() {
$this->_table = 'security_eviluser';
$this->_pk = 'uid';
parent::__construct();
}
public function fetch_all_report($limit = 20) {
return DB::fetch_all("SELECT * FROM %t WHERE isreported = 0 AND operateresult > 0 LIMIT %d", array($this->_table, $limit));
}
public function range_by_operateresult($operateresult, $start, $limit) {
return DB::fetch_all('SELECT * FROM %t WHERE ' . DB::field('operateresult', $operateresult) . ' ' . DB::limit($start, $limit), array($this->_table), $this->_pk);
}
public function fetch_range($start, $perPage = '20', $orderBy = 'createtime') {
$orderSql = " ORDER BY $orderBy DESC ";
$limitSql = DB::limit($start, $perPage);
return DB::fetch_all("SELECT * FROM %t $orderSql $limitSql", array($this->_table));
}
public function count_by_day($days = 1) {
return DB::result_first('SELECT COUNT(*) FROM %t WHERE operateresult = 0 AND createtime > %d', array($this->_table, TIMESTAMP - 86400 * $days));
}
}