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

32 lines
570 B
PHP
Executable File

<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: table_forum_pollvoter.php 27737 2012-02-13 09:46:21Z monkey $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class table_forum_pollvoter extends discuz_table
{
public function __construct() {
$this->_table = 'forum_pollvoter';
$this->_pk = '';
parent::__construct();
}
public function delete_by_tid($tids) {
if(!$tids) {
return;
}
return DB::delete($this->_table, DB::field('tid', $tids));
}
}
?>