table_common_diy_data.php
2.35 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
59
60
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_common_diy_data.php 27827 2012-02-15 07:03:43Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_common_diy_data extends discuz_table
{
public function __construct() {
$this->_table = 'common_diy_data';
$this->_pk = '';
parent::__construct();
}
public function fetch($targettplname, $tpldirectory) {
return !empty($targettplname) ? DB::fetch_first('SELECT * FROM '.DB::table($this->_table).' WHERE '.DB::field('targettplname', $targettplname).' AND '.DB::field('tpldirectory', $tpldirectory)) : array();
}
public function delete($targettplname, $tpldirectory = null) {
foreach($this->fetch_all($targettplname, $tpldirectory) as $value) {
$file = ($value['tpldirectory'] ? $value['tpldirectory'].'/' : '').$value['targettplname'];
@unlink(DISCUZ_ROOT.'./data/diy/'.$file.'.htm');
@unlink(DISCUZ_ROOT.'./data/diy/'.$file.'.htm.bak');
@unlink(DISCUZ_ROOT.'./data/diy/'.$file.'_diy_preview.htm');
}
return DB::delete($this->_table, DB::field('targettplname', $targettplname).($tpldirectory !== null ? ' AND '.DB::field('tpldirectory', $tpldirectory) : ''));
}
public function update($targettplname, $tpldirectory, $data) {
if(!empty($targettplname) && !empty($data) && is_array($data)) {
return DB::update($this->_table, $data, DB::field('targettplname', $targettplname).' AND '.DB::field('tpldirectory', $tpldirectory));
}
return false;
}
public function fetch_all($targettplname, $tpldirectory = null) {
return !empty($targettplname) ? DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' WHERE '.DB::field('targettplname', $targettplname).($tpldirectory !== null ? ' AND '.DB::field('tpldirectory', $tpldirectory) : '')) : array();
}
public function count_by_where($wheresql) {
$wheresql = $wheresql ? ' WHERE '.$wheresql : '';
return DB::result_first('SELECT COUNT(*) FROM '.DB::table($this->_table).$wheresql);
}
public function fetch_all_by_where($wheresql, $ordersql, $start, $limit) {
$wheresql = $wheresql ? ' WHERE '.$wheresql : '';
return DB::fetch_all('SELECT * FROM '.DB::table($this->_table).$wheresql.' '.$ordersql.DB::limit($start, $limit), null, $this->_pk ? $this->_pk : '');
}
}
?>