table_home_blogfield.php
945 Bytes
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
<?php
/**
 *      [Discuz!] (C)2001-2099 Comsenz Inc.
 *      This is NOT a freeware, use is subject to license terms
 *
 *      $Id: table_home_blogfield.php 27740 2012-02-13 10:05:22Z chenmengshu $
 */
if(!defined('IN_DISCUZ')) {
	exit('Access Denied');
}
class table_home_blogfield extends discuz_table
{
	public function __construct() {
		$this->_table = 'home_blogfield';
		$this->_pk    = 'blogid';
		parent::__construct();
	}
	public function delete_by_uid($uids) {
		if(!$uids) {
			return null;
		}
		return DB::delete($this->_table, DB::field('uid', $uids));
	}
	public function fetch_targetids_by_blogid($blogid) {
		return DB::fetch_first('SELECT target_ids, hotuser FROM %t WHERE blogid = %d', array($this->_table, $blogid));
	}
	public function fetch_tag_by_blogid($blogid) {
		return DB::result_first('SELECT tag FROM %t WHERE blogid = %d', array($this->_table, $blogid));
	}
}
?>