_table = 'forum_threadprofile_group'; $this->_pk = 'gid'; 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 delete_by_tpid($tpid) { DB::delete($this->table, "tpid='$tpid'"); } } ?>