87 lines
2.3 KiB
PHP
87 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: table_forum_threadcalendar.php 31913 2012-10-24 06:52:26Z zhengqingpeng $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
class table_forum_threadcalendar extends discuz_table {
|
|
|
|
public function __construct() {
|
|
|
|
$this->_table = 'forum_threadcalendar';
|
|
$this->_pk = 'cid';
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
public function fetch_by_fid_dateline($fid, $dateline = 0, $order = 'dateline', $sort = 'DESC') {
|
|
$parameter = array($this->_table);
|
|
$wherearr = array();
|
|
$wheresql = '';
|
|
if($fid) {
|
|
$wherearr[] = 'fid=%d';
|
|
$parameter[] = $fid;
|
|
}
|
|
if($dateline) {
|
|
$wherearr[] = 'dateline=%d';
|
|
$parameter[] = $dateline;
|
|
}
|
|
if($wherearr) {
|
|
$wheresql = ' WHERE '.implode(' AND ', $wherearr);
|
|
}
|
|
return DB::fetch_first('SELECT * FROM %t '.$wheresql.' ORDER BY '.DB::order($order, $sort), $parameter, $this->_pk);
|
|
}
|
|
|
|
public function fetch_all_by_dateline($dateline) {
|
|
$dateline = dintval($dateline);
|
|
if($dateline) {
|
|
return DB::fetch_all('SELECT * FROM %t WHERE dateline=%d', array($this->_table, $dateline), 'fid');
|
|
} else {
|
|
return array();
|
|
}
|
|
}
|
|
|
|
public function fetch_all_by_fid_dateline($fids, $dateline = 0) {
|
|
$parameter = array($this->_table);
|
|
$wherearr = array();
|
|
$wheresql = '';
|
|
$fids = dintval($fids, true);
|
|
if($fids) {
|
|
$wherearr[] = is_array($fids) ? 'fid IN(%n)' : 'fid=%d';
|
|
$parameter[] = $fids;
|
|
}
|
|
$dateline = dintval($dateline);
|
|
if($dateline) {
|
|
$wherearr[] = 'dateline=%d';
|
|
$parameter[] = $dateline;
|
|
}
|
|
if($wherearr) {
|
|
$wheresql = ' WHERE '.implode(' AND ', $wherearr);
|
|
}
|
|
return DB::fetch_all('SELECT * FROM %t '.$wheresql, $parameter, 'fid');
|
|
}
|
|
|
|
public function insert_multiterm($dataarr) {
|
|
$allkey = array('fid', 'dateline', 'hotnum');
|
|
$sql = array();
|
|
foreach($dataarr as $key => $value) {
|
|
if(is_array($value)) {
|
|
$fid = dintval($value['fid']);
|
|
$dateline = dintval($value['dateline']);
|
|
$hotnum = dintval($value['hotnum']);
|
|
$sql[] = "($fid, $dateline, $hotnum)";
|
|
}
|
|
}
|
|
if($sql) {
|
|
return DB::query('INSERT INTO '.DB::table($this->_table)." (`fid`, `dateline`, `hotnum`) VALUES ".implode(',', $sql), true);
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
|
|
?>
|