12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: table_forum_forum_threadtable.php 27819 2012-02-15 05:12:23Z svn_project_zhangjie $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class table_forum_forum_threadtable extends discuz_table
- {
- public function __construct() {
- $this->_table = 'forum_forum_threadtable';
- $this->_pk = '';
- parent::__construct();
- }
- public function count_by_fid($fids) {
- if(empty($fids)) {
- return 0;
- }
- return DB::result_first('SELECT COUNT(*) FROM %t WHERE '.DB::field('fid', $fids), array($this->_table));
- }
- public function fetch_all_by_fid($fids) {
- if(empty($fids)) {
- return array();
- }
- return DB::fetch_all('SELECT * FROM %t WHERE '.DB::field('fid', $fids), array($this->_table));
- }
- public function update($fid, $threadtableid, $data, $unbuffered = false, $low_priority = false) {
- if(empty($data)) {
- return false;
- }
- return DB::update($this->_table, $data, array('fid' => $fid, 'threadtableid' => $threadtableid), $unbuffered, $low_priority);
- }
- public function update_by_threadtableid($threadtableid, $data, $unbuffered = false, $low_priority = false) {
- if(empty($data)) {
- return false;
- }
- return DB::update($this->_table, $data, DB::field('threadtableid', $threadtableid), $unbuffered, $low_priority);
- }
- public function delete($fid, $threadtableid, $unbuffered = false) {
- return DB::delete($this->_table, array('fid' => dintval($fid), 'threadtableid' => dintval($threadtableid)), null, $unbuffered);
- }
- public function delete_none_threads() {
- return DB::delete($this->_table, "threads='0'");
- }
- }
- ?>
|