Files
web-discuz/source/class/table/table_forum_threadprofile.php
2025-06-27 21:04:18 +08:00

44 lines
1.0 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_threadprofile.php 31607 2012-09-13 08:38:40Z monkey $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_forum_threadprofile extends discuz_table
{
public function __construct() {
$this->_table = 'forum_threadprofile';
$this->_pk = 'id';
parent::__construct();
}
public function fetch_all($ids = null, $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_threadprofile();
}
}
public function fetch_all_threadprofile() {
return DB::fetch_all('SELECT * FROM %t', array($this->table), $this->_pk);
}
public function reset_default($tpid) {
DB::query("UPDATE %t SET `global`=0", array($this->table));
DB::query("UPDATE %t SET `global`=1 WHERE id=%d", array($this->table, $tpid));
}
}
?>