table_home_feed_app.php
1.38 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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_home_feed_app.php 27903 2012-02-16 08:06:10Z zhengqingpeng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_home_feed_app extends discuz_table
{
public function __construct() {
$this->_table = 'home_feed_app';
$this->_pk = 'feedid';
parent::__construct();
}
public function fetch_all_by_uid_icon($uids = null, $icon = '', $start = 0, $limit = 0) {
$parameter = array($this->_table);
$wherearr = array();
if($uids !== null) {
$uids = dintval($uids, true);
$wherearr[] = is_array($uids) ? 'uid IN(%n)' : 'uid=%d';
$parameter[] = $uids;
}
if(!empty($icon)) {
$wherearr[] = 'icon=%s';
$parameter[] = $icon;
}
$wheresql = !empty($wherearr) && is_array($wherearr) ? ' WHERE '.implode(' AND ', $wherearr) : '';
return DB::fetch_all("SELECT * FROM %t $wheresql ORDER BY dateline DESC ".DB::limit($start, $limit), $parameter, $this->_pk);
}
public function optimize_table() {
return DB::query("OPTIMIZE TABLE %t", array($this->_table), true);
}
public function delete_by_dateline($dateline) {
$dateline = dintval($dateline);
if($dateline) {
return DB::delete($this->_table, DB::field('dateline', $dateline, '<'));
}
return 0;
}
}
?>