table_common_grouppm.php
1.45 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
<?php
/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: table_common_grouppm.php 27876 2012-02-16 04:28:02Z zhengqingpeng $
 */
if(!defined('IN_DISCUZ')) {
	exit('Access Denied');
}
class table_common_grouppm extends discuz_table
{
	private $_uids = array();
	public function __construct() {
		$this->_table = 'common_grouppm';
		$this->_pk    = 'id';
		parent::__construct();
	}
	public function fetch_all_by_id_authorid($id = 0, $authorid = 0) {
		$wherearr = $data = array();
		$parameter = array($this->_table);
		if($id) {
			$id = is_array($id) ? array_map('intval', (array)$id) : dintval($id);
			$wherearr[] = is_array($id) ? 'id IN(%n)' : 'id=%d';
			$parameter[] = $id;
		}
		if($authorid) {
			$authorid = dintval($authorid);
			$wherearr[] = 'authorid=%d';
			$parameter[] = $authorid;
		}
		$wheresql = !empty($wherearr) ? ' WHERE '.implode(' AND ', $wherearr) : '';
		$query = DB::query("SELECT * FROM %t $wheresql ORDER BY id DESC", $parameter);
		while($row = DB::fetch($query)) {
			$data[$row['id']] = $row;
			$this->_uids[$row['authorid']] = $row['authorid'];
		}
		return $data;
	}
	public function count_by_id_authorid($id, $authorid) {
		return DB::result_first('SELECT COUNT(*) FROM %t WHERE id=%d AND authorid=%d', array($this->_table, $id, $authorid));
	}
	public function get_uids() {
		return $this->_uids;
	}
}
?>