table_common_template_block.php
2.41 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
61
62
63
64
65
66
67
68
69
70
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_common_template_block.php 29445 2012-04-12 07:14:40Z zhangguosheng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_common_template_block extends discuz_table
{
public function __construct() {
$this->_table = 'common_template_block';
$this->_pk = '';
parent::__construct();
}
public function delete_by_targettplname($tpl, $tpldirectory = NULL) {
$add = $tpldirectory !== NULL ? ' AND '.DB::field('tpldirectory', $tpldirectory) : '';
return $tpl ? DB::delete($this->_table, DB::field('targettplname', $tpl).$add) : false;
}
public function fetch_targettplname_by_bid($bid) {
return ($bid = dintval($bid)) ? DB::result_first('SELECT targettplname FROM %t WHERE bid=%d', array($this->_table, $bid)) : '';
}
public function fetch_all_bid_by_targettplname_notinherited($tpl, $notinherited) {
$bids = array();
if($tpl) {
$query = DB::query('SELECT tb.bid FROM %t tb LEFT JOIN %t b ON b.bid=tb.bid WHERE '.DB::field('targettplname', $tpl).' AND b.notinherited=%d', array($this->_table, 'common_block', $notinherited));
while($value = DB::fetch($query)) {
$bids[$value['bid']] = $value['bid'];
}
}
return $bids;
}
public function fetch_by_bid($bid) {
return ($bid = dintval($bid)) ? DB::fetch_first('SELECT * FROM '.DB::table($this->_table).' WHERE '.DB::field('bid', $bid)) : array();
}
public function fetch_all_by_bid($bids) {
return ($bids = dintval($bids, true)) ? DB::fetch_all('SELECT * FROM '.DB::table($this->_table).' WHERE '.DB::field('bid', $bids), null, 'bid') : array();
}
public function fetch_all_by_targettplname($targettplname, $tpldirectory = NULL) {
$add = ($tpldirectory !== NULL) ? ' AND '.DB::field('tpldirectory', $tpldirectory) : '';
return DB::fetch_all('SELECT * FROM %t WHERE targettplname=%s'.$add, array($this->_table, $targettplname), 'bid');
}
public function insert_batch($targettplname, $tpldirectory, $bids) {
if($targettplname && ($bids = dintval($bids, true))) {
$values = array();
foreach ($bids as $bid) {
if($bid) {
$values[] = "('$targettplname','$tpldirectory', '$bid')";
}
}
DB::query("INSERT INTO ".DB::table($this->_table)." (targettplname, tpldirectory, bid) VALUES ".implode(',', $values));
}
}
}
?>