68 lines
1.8 KiB
PHP
Executable File
68 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: table_forum_spacecache.php 27819 2012-02-15 05:12:23Z svn_project_zhangjie $
|
|
*/
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
class table_forum_spacecache extends discuz_table
|
|
{
|
|
public function __construct() {
|
|
|
|
$this->_table = 'forum_spacecache';
|
|
$this->_pk = '';
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
public function fetch($id, $force_from_db = false) {
|
|
if (defined('DISCUZ_DEPRECATED')) {
|
|
throw new Exception('NotImplementedException');
|
|
return parent::fetch($id, $force_from_db);
|
|
} else {
|
|
return $this->fetch_spacecache($id, $force_from_db);
|
|
}
|
|
}
|
|
|
|
public function fetch_all($ids, $force_from_db = false) {
|
|
if (defined('DISCUZ_DEPRECATED')) {
|
|
throw new Exception('NotImplementedException');
|
|
return parent::fetch_all($ids, $force_from_db);
|
|
} else {
|
|
return $this->fetch_all_spacecache($ids, $force_from_db);
|
|
}
|
|
}
|
|
|
|
public function delete($val, $unbuffered = false) {
|
|
if (defined('DISCUZ_DEPRECATED')) {
|
|
throw new Exception('NotImplementedException');
|
|
return parent::delete($val, $unbuffered);
|
|
} else {
|
|
return $this->delete_spacecache($val, $unbuffered);
|
|
}
|
|
}
|
|
|
|
public function fetch_spacecache($uid, $variable) {
|
|
return DB::fetch_first('SELECT * FROM %t WHERE uid=%d AND variable=%s', array($this->_table, $uid, $variable));
|
|
}
|
|
|
|
public function fetch_all_spacecache($uids, $variables) {
|
|
if(empty($uids) || empty($variables)) {
|
|
return array();
|
|
}
|
|
return DB::fetch_all('SELECT * FROM %t WHERE '.DB::field('uid', $uids).' AND '.DB::field('variable', $variables), array($this->_table));
|
|
}
|
|
|
|
public function delete_spacecache($uid, $variable) {
|
|
return DB::query('DELETE FROM %t WHERE uid=%d AND variable=%s', array($this->_table, $uid, $variable));
|
|
}
|
|
|
|
}
|
|
|
|
?>
|