_table = 'forum_threadprofile_group'; $this->_pk = 'gid'; parent::__construct(); } public function fetch_all() { return DB::fetch_all('SELECT * FROM %t', array($this->table), $this->_pk); } public function delete_by_tpid($tpid) { DB::delete($this->table, "tpid='$tpid'"); } } ?>