table_forum_rsscache.php
1.01 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
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_forum_rsscache.php 27775 2012-02-14 06:58:02Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_forum_rsscache extends discuz_table
{
public function __construct() {
$this->_table = 'forum_rsscache';
$this->_pk = 'tid';
parent::__construct();
}
public function fetch_all_by_fid($fid, $limit = 20) {
return $fid ? DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' WHERE '.DB::field('fid', $fid).' ORDER BY dateline DESC LIMIT '.$limit, null, 'tid') : array();
}
public function fetch_all_by_guidetype($type, $limit = 20) {
return DB::fetch_all('SELECT * FROM %t WHERE guidetype=%s ORDER BY dateline DESC LIMIT %d', array($this->_table, $type, $limit));
}
public function delete_by_guidetype($type){
DB::query('DELETE FROM %t WHERE guidetype=%s', array($this->_table, $type));
}
}
?>